From patchwork Mon Jan 2 08:25:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 6022 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 255A923E0C for ; Mon, 2 Jan 2012 08:28:53 +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 03044A18507 for ; Mon, 2 Jan 2012 08:28:52 +0000 (UTC) Received: by eaac11 with SMTP id c11so14464825eaa.11 for ; Mon, 02 Jan 2012 00:28:52 -0800 (PST) Received: by 10.205.120.14 with SMTP id fw14mr10660033bkc.53.1325492932688; Mon, 02 Jan 2012 00:28: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.205.82.144 with SMTP id ac16cs307604bkc; Mon, 2 Jan 2012 00:28:52 -0800 (PST) Received: by 10.50.156.138 with SMTP id we10mr37029548igb.10.1325492931173; Mon, 02 Jan 2012 00:28:51 -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 hv9si13090029icc.48.2012.01.02.00.28.50 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 02 Jan 2012 00:28:51 -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 f6so34025427iag.37 for ; Mon, 02 Jan 2012 00:28:50 -0800 (PST) Received: by 10.50.77.129 with SMTP id s1mr56462716igw.25.1325492930368; Mon, 02 Jan 2012 00:28:50 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id py9sm81901775igc.2.2012.01.02.00.28.47 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 02 Jan 2012 00:28:49 -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] ARM: EXYNOS: Enable G2D on SMDKV310 Date: Mon, 2 Jan 2012 13:55:11 +0530 Message-Id: <1325492711-15012-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 This patch enables G2D support on SMDKV310 board. Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/Kconfig | 1 + arch/arm/mach-exynos/mach-smdkv310.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig index bd4600e..a673d0d 100644 --- a/arch/arm/mach-exynos/Kconfig +++ b/arch/arm/mach-exynos/Kconfig @@ -183,6 +183,7 @@ config MACH_SMDKV310 select S5P_DEV_FIMC1 select S5P_DEV_FIMC2 select S5P_DEV_FIMC3 + select S5P_DEV_G2D select S5P_DEV_I2C_HDMIPHY select S5P_DEV_MFC select S5P_DEV_TV diff --git a/arch/arm/mach-exynos/mach-smdkv310.c b/arch/arm/mach-exynos/mach-smdkv310.c index b2c5557..8a5c23b 100644 --- a/arch/arm/mach-exynos/mach-smdkv310.c +++ b/arch/arm/mach-exynos/mach-smdkv310.c @@ -270,6 +270,7 @@ static struct platform_device *smdkv310_devices[] __initdata = { &s5p_device_fimc1, &s5p_device_fimc2, &s5p_device_fimc3, + &s5p_device_g2d, &exynos4_device_ac97, &exynos4_device_i2s0, &exynos4_device_ohci,