From patchwork Mon Jun 9 12:38:53 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4321671 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id CA657BEEAA for ; Mon, 9 Jun 2014 12:36:51 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F1FDF20270 for ; Mon, 9 Jun 2014 12:36:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0D19B2026C for ; Mon, 9 Jun 2014 12:36:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754217AbaFIMgt (ORCPT ); Mon, 9 Jun 2014 08:36:49 -0400 Received: from mail-pb0-f49.google.com ([209.85.160.49]:41959 "EHLO mail-pb0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752662AbaFIMgt (ORCPT ); Mon, 9 Jun 2014 08:36:49 -0400 Received: by mail-pb0-f49.google.com with SMTP id jt11so4813844pbb.8 for ; Mon, 09 Jun 2014 05:36:49 -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=KY2Kbj2rpFnNsZnq/GeFUrigoM09a1atWgAOlooghXw=; b=L1kiJWz2RnwsIxcl9q0cvCwuxXOTc3gv4aEo5nNs7I37iAfu/whzL3SRJjipw4LVCP oaY/Dv+iB6B63cB/SKtrK36H2xXgERIb+PBlcxSjDyLJt+pfX7HH+ee68bxaH9vcCWhh qYLYflV3KMNf3YZwqzcFNbv73k6CmrgI4donXR1nToinDITlMEYyElp+g3dzFd9Dy2wF nDDWNP9ZGBw/1z5CikXryf/VltCxNF+ciPMTuLb6ge+LV0oi0OEzpvKmuVLovgy+cZak khPHIMP6NlAdANY0RKV9IYCnfVJtDhNJk3LSr5XRCbpnD12vlxSZUzbPk+XwVUR0ZpIv sg3A== X-Received: by 10.66.189.226 with SMTP id gl2mr4265866pac.65.1402317408984; Mon, 09 Jun 2014 05:36:48 -0700 (PDT) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by mx.google.com with ESMTPSA id tl3sm11958504pac.41.2014.06.09.05.36.46 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 09 Jun 2014 05:36:47 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Mon, 09 Jun 2014 21:38:53 +0900 Message-Id: <20140609123853.31532.58407.sendpatchset@w520> In-Reply-To: <20140609123837.31532.85914.sendpatchset@w520> References: <20140609123837.31532.85914.sendpatchset@w520> Subject: [PATCH 02/02] ARM: shmobile: Enable R-Car Gen2 CMA code in board files Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-7.4 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 Hook in the R-Car Gen2 CMA reservation code in the board files for Lager and Koelsch. Both the DT-reference code and the legacy code is modified. Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/board-koelsch-reference.c | 1 + arch/arm/mach-shmobile/board-koelsch.c | 1 + arch/arm/mach-shmobile/board-lager-reference.c | 1 + arch/arm/mach-shmobile/board-lager.c | 1 + 4 files changed, 4 insertions(+) -- 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/board-koelsch-reference.c +++ work/arch/arm/mach-shmobile/board-koelsch-reference.c 2014-06-09 21:06:57.000000000 +0900 @@ -113,5 +113,6 @@ DT_MACHINE_START(KOELSCH_DT, "koelsch") .init_time = rcar_gen2_timer_init, .init_machine = koelsch_add_standard_devices, .init_late = shmobile_init_late, + .reserve = rcar_gen2_reserve, .dt_compat = koelsch_boards_compat_dt, MACHINE_END --- 0001/arch/arm/mach-shmobile/board-koelsch.c +++ work/arch/arm/mach-shmobile/board-koelsch.c 2014-06-09 21:06:49.000000000 +0900 @@ -526,5 +526,6 @@ DT_MACHINE_START(KOELSCH_DT, "koelsch") .init_time = rcar_gen2_timer_init, .init_machine = koelsch_init, .init_late = shmobile_init_late, + .reserve = rcar_gen2_reserve, .dt_compat = koelsch_boards_compat_dt, MACHINE_END --- 0001/arch/arm/mach-shmobile/board-lager-reference.c +++ work/arch/arm/mach-shmobile/board-lager-reference.c 2014-06-09 21:06:39.000000000 +0900 @@ -119,5 +119,6 @@ DT_MACHINE_START(LAGER_DT, "lager") .init_time = rcar_gen2_timer_init, .init_machine = lager_add_standard_devices, .init_late = shmobile_init_late, + .reserve = rcar_gen2_reserve, .dt_compat = lager_boards_compat_dt, MACHINE_END --- 0001/arch/arm/mach-shmobile/board-lager.c +++ work/arch/arm/mach-shmobile/board-lager.c 2014-06-09 21:06:22.000000000 +0900 @@ -890,5 +890,6 @@ DT_MACHINE_START(LAGER_DT, "lager") .init_time = rcar_gen2_timer_init, .init_machine = lager_init, .init_late = shmobile_init_late, + .reserve = rcar_gen2_reserve, .dt_compat = lager_boards_compat_dt, MACHINE_END