From patchwork Mon Dec 26 10:00:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 5971 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 219EC23F73 for ; Mon, 26 Dec 2011 10:03:45 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 1A21CA180FE for ; Mon, 26 Dec 2011 10:03:42 +0000 (UTC) Received: by mail-ey0-f180.google.com with SMTP id c11so8899900eaa.11 for ; Mon, 26 Dec 2011 02:03:42 -0800 (PST) Received: by 10.205.120.11 with SMTP id fw11mr697227bkc.89.1324893821927; Mon, 26 Dec 2011 02:03:41 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.82.144 with SMTP id ac16cs144111bkc; Mon, 26 Dec 2011 02:03:41 -0800 (PST) Received: by 10.182.42.37 with SMTP id k5mr21464903obl.40.1324893819960; Mon, 26 Dec 2011 02:03:39 -0800 (PST) Received: from mail-tul01m020-f178.google.com (mail-tul01m020-f178.google.com [209.85.214.178]) by mx.google.com with ESMTPS id ze10si6472585obb.133.2011.12.26.02.03.39 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 26 Dec 2011 02:03:39 -0800 (PST) Received-SPF: neutral (google.com: 209.85.214.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.214.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.214.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by obcuy5 with SMTP id uy5so8164563obc.37 for ; Mon, 26 Dec 2011 02:03:39 -0800 (PST) Received: by 10.50.108.140 with SMTP id hk12mr25800172igb.18.1324893819085; Mon, 26 Dec 2011 02:03:39 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id cv10sm54134033igc.0.2011.12.26.02.03.36 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 26 Dec 2011 02:03:38 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: sachin.kamat@linaro.org, kgene.kim@samsung.com, patches@linaro.org Subject: [PATCH 2/4] ARM: S5PV210: Enable MFC on SMDKC110 Date: Mon, 26 Dec 2011 15:30:11 +0530 Message-Id: <1324893613-5469-3-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1324893613-5469-1-git-send-email-sachin.kamat@linaro.org> References: <1324893613-5469-1-git-send-email-sachin.kamat@linaro.org> This patch adds MFC support on SMDKC110 board. Signed-off-by: Sachin Kamat --- arch/arm/mach-s5pv210/Kconfig | 1 + arch/arm/mach-s5pv210/mach-smdkc110.c | 11 +++++++++++ 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig index 251491d..32893c7 100644 --- a/arch/arm/mach-s5pv210/Kconfig +++ b/arch/arm/mach-s5pv210/Kconfig @@ -113,6 +113,7 @@ config MACH_SMDKC110 select S3C_DEV_I2C2 select S3C_DEV_RTC select S3C_DEV_WDT + select S5P_DEV_MFC select SAMSUNG_DEV_IDE select S5PV210_SETUP_I2C1 select S5PV210_SETUP_I2C2 diff --git a/arch/arm/mach-s5pv210/mach-smdkc110.c b/arch/arm/mach-s5pv210/mach-smdkc110.c index f7266bb..0087c7b 100644 --- a/arch/arm/mach-s5pv210/mach-smdkc110.c +++ b/arch/arm/mach-s5pv210/mach-smdkc110.c @@ -31,6 +31,7 @@ #include #include #include +#include /* Following are default values for UCON, ULCON and UFCON UART registers */ #define SMDKC110_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ @@ -92,6 +93,9 @@ static struct platform_device *smdkc110_devices[] __initdata = { &s3c_device_i2c2, &s3c_device_rtc, &s3c_device_wdt, + &s5p_device_mfc, + &s5p_device_mfc_l, + &s5p_device_mfc_r, }; static struct i2c_board_info smdkc110_i2c_devs0[] __initdata = { @@ -115,6 +119,12 @@ static void __init smdkc110_map_io(void) s5p_set_timer_source(S5P_PWM3, S5P_PWM4); } +static void __init smdkc110_reserve(void) +{ + s5p_mfc_reserve_mem(0x43000000, 8 << 20, 0x51000000, 8 << 20); +} + + static void __init smdkc110_machine_init(void) { s3c_pm_init(); @@ -141,4 +151,5 @@ MACHINE_START(SMDKC110, "SMDKC110") .map_io = smdkc110_map_io, .init_machine = smdkc110_machine_init, .timer = &s5p_timer, + .reserve = &smdkc110_reserve, MACHINE_END