From patchwork Mon Dec 26 10:00:12 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 5970 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 F3C0323F72 for ; Mon, 26 Dec 2011 10:03:44 +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 EBDEBA18343 for ; Mon, 26 Dec 2011 10:03:44 +0000 (UTC) Received: by mail-ey0-f180.google.com with SMTP id c11so8899900eaa.11 for ; Mon, 26 Dec 2011 02:03:44 -0800 (PST) Received: by 10.205.138.136 with SMTP id is8mr5942924bkc.35.1324893824771; Mon, 26 Dec 2011 02:03:44 -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 ac16cs144115bkc; Mon, 26 Dec 2011 02:03:44 -0800 (PST) Received: by 10.50.189.194 with SMTP id gk2mr25341434igc.0.1324893822713; Mon, 26 Dec 2011 02:03:42 -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 x9si12216560ica.97.2011.12.26.02.03.42 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 26 Dec 2011 02:03:42 -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 mail-iy0-f178.google.com with SMTP id f6so22226462iag.37 for ; Mon, 26 Dec 2011 02:03:42 -0800 (PST) Received: by 10.50.100.164 with SMTP id ez4mr5744420igb.12.1324893821981; Mon, 26 Dec 2011 02:03:41 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id cv10sm54134033igc.0.2011.12.26.02.03.39 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 26 Dec 2011 02:03:41 -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 3/4] ARM: S5PV210: Enable FIMC on SMDKV210 Date: Mon, 26 Dec 2011 15:30:12 +0530 Message-Id: <1324893613-5469-4-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 support for FIMC 0, 1 and 2 on SMDKV210 board. Signed-off-by: Sachin Kamat --- arch/arm/mach-s5pv210/Kconfig | 3 +++ arch/arm/mach-s5pv210/mach-smdkv210.c | 3 +++ 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig index 32893c7..66e1b3d 100644 --- a/arch/arm/mach-s5pv210/Kconfig +++ b/arch/arm/mach-s5pv210/Kconfig @@ -138,6 +138,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 S5P_DEV_MFC select SAMSUNG_DEV_ADC select SAMSUNG_DEV_BACKLIGHT diff --git a/arch/arm/mach-s5pv210/mach-smdkv210.c b/arch/arm/mach-s5pv210/mach-smdkv210.c index d50cacd..038fc5f 100644 --- a/arch/arm/mach-s5pv210/mach-smdkv210.c +++ b/arch/arm/mach-s5pv210/mach-smdkv210.c @@ -226,6 +226,9 @@ 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_mfc, &s5p_device_mfc_l, &s5p_device_mfc_r,