From patchwork Mon Aug 22 12:01:58 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3601 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 D616A23FA3 for ; Mon, 22 Aug 2011 12:04:41 +0000 (UTC) Received: from mail-gx0-f180.google.com (mail-gx0-f180.google.com [209.85.161.180]) by fiordland.canonical.com (Postfix) with ESMTP id A4C46A1816D for ; Mon, 22 Aug 2011 12:04:41 +0000 (UTC) Received: by gxk10 with SMTP id 10so5084835gxk.11 for ; Mon, 22 Aug 2011 05:04:41 -0700 (PDT) Received: by 10.150.2.16 with SMTP id 16mr2347604ybb.333.1314014681144; Mon, 22 Aug 2011 05:04:41 -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 f17cs193825ybe; Mon, 22 Aug 2011 05:04:40 -0700 (PDT) Received: by 10.42.132.72 with SMTP id c8mr2499525ict.505.1314014680514; Mon, 22 Aug 2011 05:04:40 -0700 (PDT) Received: from mail-pz0-f45.google.com (mail-pz0-f45.google.com [209.85.210.45]) by mx.google.com with ESMTPS id ug1si9168760icb.32.2011.08.22.05.04.39 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 22 Aug 2011 05:04:40 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.210.45 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.210.45; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.45 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by pzk33 with SMTP id 33so11840181pzk.32 for ; Mon, 22 Aug 2011 05:04:39 -0700 (PDT) Received: by 10.68.63.101 with SMTP id f5mr38497pbs.529.1314014679146; Mon, 22 Aug 2011 05:04:39 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id f8sm4189023pbk.38.2011.08.22.05.04.35 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 22 Aug 2011 05:04:38 -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 Origen board Date: Mon, 22 Aug 2011 17:31:58 +0530 Message-Id: <1314014518-10516-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 Origen board. Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos4/Kconfig | 4 ++++ arch/arm/mach-exynos4/mach-origen.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..a3d92a8 100644 --- a/arch/arm/mach-exynos4/Kconfig +++ b/arch/arm/mach-exynos4/Kconfig @@ -227,6 +227,10 @@ config MACH_NURI config MACH_ORIGEN bool "ORIGEN" select CPU_EXYNOS4210 + select S5P_DEV_FIMC0 + select S5P_DEV_FIMC1 + select S5P_DEV_FIMC2 + select S5P_DEV_FIMC3 select S3C_DEV_RTC select S3C_DEV_WDT select S3C_DEV_HSMMC2 diff --git a/arch/arm/mach-exynos4/mach-origen.c b/arch/arm/mach-exynos4/mach-origen.c index ed59f86..4a2ac49 100644 --- a/arch/arm/mach-exynos4/mach-origen.c +++ b/arch/arm/mach-exynos4/mach-origen.c @@ -80,6 +80,10 @@ static struct s3c_sdhci_platdata origen_hsmmc2_pdata __initdata = { }; static struct platform_device *origen_devices[] __initdata = { + &s5p_device_fimc0, + &s5p_device_fimc1, + &s5p_device_fimc2, + &s5p_device_fimc3, &s3c_device_hsmmc2, &s3c_device_rtc, &s3c_device_wdt,