From patchwork Mon Aug 22 12:01:29 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3600 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 337FC23FA3 for ; Mon, 22 Aug 2011 12:04:10 +0000 (UTC) Received: from mail-gw0-f52.google.com (mail-gw0-f52.google.com [74.125.83.52]) by fiordland.canonical.com (Postfix) with ESMTP id D1F7FA1816D for ; Mon, 22 Aug 2011 12:04:09 +0000 (UTC) Received: by gwj15 with SMTP id 15so4290540gwj.11 for ; Mon, 22 Aug 2011 05:04:09 -0700 (PDT) Received: by 10.150.68.26 with SMTP id q26mr2137948yba.276.1314014649237; Mon, 22 Aug 2011 05:04:09 -0700 (PDT) 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.150.157.17 with SMTP id f17cs193808ybe; Mon, 22 Aug 2011 05:04:08 -0700 (PDT) Received: by 10.236.187.74 with SMTP id x50mr13562945yhm.76.1314014648440; Mon, 22 Aug 2011 05:04:08 -0700 (PDT) Received: from mail-gy0-f178.google.com (mail-gy0-f178.google.com [209.85.160.178]) by mx.google.com with ESMTPS id j48si18896833yhe.23.2011.08.22.05.04.08 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 22 Aug 2011 05:04:08 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.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 gyh3 with SMTP id 3so3747715gyh.37 for ; Mon, 22 Aug 2011 05:04:07 -0700 (PDT) Received: by 10.68.12.39 with SMTP id v7mr40618pbb.62.1314014647437; Mon, 22 Aug 2011 05:04:07 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id q3sm900864pbo.23.2011.08.22.05.04.05 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 22 Aug 2011 05:04:06 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, linaro-dev@lists.linaro.org, patches@linaro.org, sachin.kamat@linaro.org Subject: [PATCH] ARM: EXYNOS4: Add FIMC device on SMDKV310 board Date: Mon, 22 Aug 2011 17:31:29 +0530 Message-Id: <1314014489-10479-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 This patch adds definitions to enable support for s5p-fimc driver on SMDKV310 board. Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos4/Kconfig | 4 ++++ arch/arm/mach-exynos4/mach-smdkv310.c | 4 ++++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos4/Kconfig b/arch/arm/mach-exynos4/Kconfig index e6925de..95f778e 100644 --- a/arch/arm/mach-exynos4/Kconfig +++ b/arch/arm/mach-exynos4/Kconfig @@ -135,6 +135,10 @@ config MACH_SMDKC210 config MACH_SMDKV310 bool "SMDKV310" select CPU_EXYNOS4210 + select S5P_DEV_FIMC0 + select S5P_DEV_FIMC1 + select S5P_DEV_FIMC2 + select S5P_DEV_FIMC3 select S5P_DEV_FIMD0 select S3C_DEV_RTC select S3C_DEV_WDT diff --git a/arch/arm/mach-exynos4/mach-smdkv310.c b/arch/arm/mach-exynos4/mach-smdkv310.c index 5f62b2b..4380b02 100644 --- a/arch/arm/mach-exynos4/mach-smdkv310.c +++ b/arch/arm/mach-exynos4/mach-smdkv310.c @@ -168,6 +168,10 @@ static struct i2c_board_info i2c_devs1[] __initdata = { }; static struct platform_device *smdkv310_devices[] __initdata = { + &s5p_device_fimc0, + &s5p_device_fimc1, + &s5p_device_fimc2, + &s5p_device_fimc3, &s3c_device_hsmmc0, &s3c_device_hsmmc1, &s3c_device_hsmmc2,