From patchwork Mon Jul 13 06:15:02 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 6774371 X-Patchwork-Delegate: horms@verge.net.au Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 3B35A9F380 for ; Mon, 13 Jul 2015 06:11:50 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 615B4205F9 for ; Mon, 13 Jul 2015 06:11:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7AAFD205F3 for ; Mon, 13 Jul 2015 06:11:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751180AbbGMGLs (ORCPT ); Mon, 13 Jul 2015 02:11:48 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:33426 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751114AbbGMGLr (ORCPT ); Mon, 13 Jul 2015 02:11:47 -0400 Received: by padck2 with SMTP id ck2so37074430pad.0 for ; Sun, 12 Jul 2015 23:11:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:in-reply-to:references:subject; bh=rM2fGJW+JDfU/rTMV53+2ZAWRFdtff5FtubZ5HBniSg=; b=oYNqDCRfOHkmzAJE/gYmh0CNA8d7+7EBuDOTuDuphiKBgQE4i91JAti0Qgz6dGq9gm azliNZqTHNV16mLrU84Yx1A4TfDClwrJeAlU7s5WqRjSG1kYI1gtDzBnRpMcKu33c7rM U6VlnaJrjatJGyhm2CkExVJotTjNYk9uve+aBlPLbrxGIuUcueDZMcVUvoNQ2HeF0zYG 3dIZilwY7I3OT6c313qPRiU0OXneGpDAdyN2viCbCDfzqpIK7wMxswcnaXDP6wAFLndx Hh4E+uHoIU52kv4Ateunio8++rWSWq64SYg3PieWbO8SFBPNmFTM1H0HSiLU9uJ64zla yU2Q== X-Received: by 10.67.8.40 with SMTP id dh8mr112458pad.129.1436767907367; Sun, 12 Jul 2015 23:11:47 -0700 (PDT) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by smtp.gmail.com with ESMTPSA id fy5sm17436279pdb.93.2015.07.12.23.11.43 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 12 Jul 2015 23:11:45 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au, laurent.pinchart+renesas@ideasonboard.com, geert+renesas@glider.be Date: Mon, 13 Jul 2015 15:15:02 +0900 Message-Id: <20150713061502.25534.94700.sendpatchset@little-apple> In-Reply-To: <20150713061450.25534.96315.sendpatchset@little-apple> References: <20150713061450.25534.96315.sendpatchset@little-apple> Subject: [PATCH v3 01/04] ARM: shmobile: r8a7779: Generic SMP ops Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-8.2 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Magnus Damm Add a r8a7779-specific SMP operation pointer to support all 4 CPU cores through SMP on r8a7779 without C board code. Signed-off-by: Magnus Damm Acked-by: Geert Uytterhoeven --- Changes since V2: - None arch/arm/mach-shmobile/setup-r8a7779.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0001/arch/arm/mach-shmobile/setup-r8a7779.c +++ work/arch/arm/mach-shmobile/setup-r8a7779.c 2015-07-13 14:19:04.000000000 +0900 @@ -772,6 +772,7 @@ static const char *r8a7779_compat_dt[] _ }; DT_MACHINE_START(R8A7779_DT, "Generic R8A7779 (Flattened Device Tree)") + .smp = smp_ops(r8a7779_smp_ops), .map_io = r8a7779_map_io, .init_early = shmobile_init_delay, .init_time = r8a7779_init_time,