From patchwork Thu Dec 29 04:35:36 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 5993 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 1840E23E10 for ; Thu, 29 Dec 2011 04:39:07 +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 07437A182F7 for ; Thu, 29 Dec 2011 04:39:07 +0000 (UTC) Received: by eaac11 with SMTP id c11so11434264eaa.11 for ; Wed, 28 Dec 2011 20:39:06 -0800 (PST) Received: by 10.205.141.78 with SMTP id jd14mr8053677bkc.107.1325133546755; Wed, 28 Dec 2011 20:39:06 -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 ac16cs215247bkc; Wed, 28 Dec 2011 20:39:06 -0800 (PST) Received: by 10.50.219.225 with SMTP id pr1mr39421213igc.21.1325133544332; Wed, 28 Dec 2011 20:39:04 -0800 (PST) Received: from mail-iy0-f178.google.com (mail-iy0-f178.google.com [209.85.210.178]) by mx.google.com with ESMTPS id ff10si24651617igc.70.2011.12.28.20.39.03 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Dec 2011 20:39:04 -0800 (PST) Received-SPF: neutral (google.com: 209.85.210.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.210.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.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 iagf6 with SMTP id f6so27331289iag.37 for ; Wed, 28 Dec 2011 20:39:03 -0800 (PST) Received: by 10.50.202.105 with SMTP id kh9mr37795988igc.3.1325133543579; Wed, 28 Dec 2011 20:39:03 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id r18sm110387663ibh.4.2011.12.28.20.39.00 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Dec 2011 20:39:02 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH] ARM: S5PV210: Enable FIMC on SMDKV210 Date: Thu, 29 Dec 2011 10:05:36 +0530 Message-Id: <1325133336-11395-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 This patch enables FIMC 0,1,2 and media device(md) on SMDKV210 board. Signed-off-by: Sachin Kamat --- arch/arm/mach-s5pv210/Kconfig | 3 +++ arch/arm/mach-s5pv210/mach-smdkv210.c | 4 ++++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig index 2cdc42e..faa94e6 100644 --- a/arch/arm/mach-s5pv210/Kconfig +++ b/arch/arm/mach-s5pv210/Kconfig @@ -142,6 +142,9 @@ config MACH_SMDKV210 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 SAMSUNG_DEV_ADC select SAMSUNG_DEV_BACKLIGHT select SAMSUNG_DEV_IDE diff --git a/arch/arm/mach-s5pv210/mach-smdkv210.c b/arch/arm/mach-s5pv210/mach-smdkv210.c index 513db92..511f807 100644 --- a/arch/arm/mach-s5pv210/mach-smdkv210.c +++ b/arch/arm/mach-s5pv210/mach-smdkv210.c @@ -221,6 +221,10 @@ static struct platform_device *smdkv210_devices[] __initdata = { &s3c_device_rtc, &s3c_device_ts, &s3c_device_wdt, + &s5p_device_fimc0, + &s5p_device_fimc1, + &s5p_device_fimc2, + &s5p_device_fimc_md, &s5pv210_device_ac97, &s5pv210_device_iis0, &s5pv210_device_spdif,