From patchwork Mon Feb 13 05:18:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 6763 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 15A2023EB0 for ; Mon, 13 Feb 2012 05:24:53 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id CCF95A1808C for ; Mon, 13 Feb 2012 05:24:52 +0000 (UTC) Received: by mail-iy0-f180.google.com with SMTP id z7so4908215iab.11 for ; Sun, 12 Feb 2012 21:24:52 -0800 (PST) Received: by 10.50.189.137 with SMTP id gi9mr24348918igc.29.1329110692619; Sun, 12 Feb 2012 21:24:52 -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.231.66.135 with SMTP id n7cs45931ibi; Sun, 12 Feb 2012 21:24:52 -0800 (PST) Received: by 10.68.189.65 with SMTP id gg1mr43528150pbc.66.1329110691891; Sun, 12 Feb 2012 21:24:51 -0800 (PST) Received: from mail-pz0-f50.google.com (mail-pz0-f50.google.com [209.85.210.50]) by mx.google.com with ESMTPS id j9si20538945pbh.88.2012.02.12.21.24.51 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 12 Feb 2012 21:24:51 -0800 (PST) Received-SPF: neutral (google.com: 209.85.210.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.210.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pz0-f50.google.com with SMTP id p19so4749268dad.37 for ; Sun, 12 Feb 2012 21:24:51 -0800 (PST) MIME-Version: 1.0 Received: by 10.68.191.165 with SMTP id gz5mr32745466pbc.59.1329110691431; Sun, 12 Feb 2012 21:24:51 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id i10sm37409742pbg.10.2012.02.12.21.24.45 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 12 Feb 2012 21:24:50 -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-RESEND 4/4] ARM: S5PV210: Enable FIMC on SMDKC110 Date: Mon, 13 Feb 2012 10:48:51 +0530 Message-Id: <1329110331-12746-5-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1329110331-12746-1-git-send-email-sachin.kamat@linaro.org> References: <1329110331-12746-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQlBl+K/PeC3vtdcV1RSh8sy1lLGangLBMIWNo4JzwvbIkMkmIpZvSHfiiQRjJdx5yn4QcII Enable FIMC 0,1,2 and media device (md) on SMDKC110 board. Signed-off-by: Sachin Kamat --- arch/arm/mach-s5pv210/Kconfig | 3 +++ arch/arm/mach-s5pv210/mach-smdkc110.c | 4 ++++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig index cf3be3b..c338b86 100644 --- a/arch/arm/mach-s5pv210/Kconfig +++ b/arch/arm/mach-s5pv210/Kconfig @@ -118,6 +118,9 @@ config MACH_SMDKC110 select S3C_DEV_I2C2 select S3C_DEV_RTC select S3C_DEV_WDT + select S5P_DEV_FIMC0 + select S5P_DEV_FIMC1 + select S5P_DEV_FIMC2 select S5P_DEV_MFC select SAMSUNG_DEV_IDE select S5PV210_SETUP_I2C1 diff --git a/arch/arm/mach-s5pv210/mach-smdkc110.c b/arch/arm/mach-s5pv210/mach-smdkc110.c index 7100f7e..dfc2923 100644 --- a/arch/arm/mach-s5pv210/mach-smdkc110.c +++ b/arch/arm/mach-s5pv210/mach-smdkc110.c @@ -95,6 +95,10 @@ static struct platform_device *smdkc110_devices[] __initdata = { &s3c_device_i2c2, &s3c_device_rtc, &s3c_device_wdt, + &s5p_device_fimc0, + &s5p_device_fimc1, + &s5p_device_fimc2, + &s5p_device_fimc_md, &s5p_device_mfc, &s5p_device_mfc_l, &s5p_device_mfc_r,