From patchwork Wed Dec 28 10:59:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 5991 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 55B0023F72 for ; Wed, 28 Dec 2011 11:03:48 +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 3E970A18250 for ; Wed, 28 Dec 2011 11:03:48 +0000 (UTC) Received: by eaac11 with SMTP id c11so10707673eaa.11 for ; Wed, 28 Dec 2011 03:03:48 -0800 (PST) Received: by 10.204.156.219 with SMTP id y27mr6947621bkw.71.1325070227994; Wed, 28 Dec 2011 03:03:47 -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 ac16cs195168bkc; Wed, 28 Dec 2011 03:03:47 -0800 (PST) Received: by 10.50.158.193 with SMTP id ww1mr34895031igb.26.1325070225592; Wed, 28 Dec 2011 03:03:45 -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 aa7si14888449igc.61.2011.12.28.03.03.44 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Dec 2011 03:03:45 -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 f6so25960921iag.37 for ; Wed, 28 Dec 2011 03:03:44 -0800 (PST) Received: by 10.43.43.197 with SMTP id ud5mr6683810icb.27.1325070224743; Wed, 28 Dec 2011 03:03:44 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id g34sm101354565ibk.10.2011.12.28.03.03.35 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Dec 2011 03:03:43 -0800 (PST) From: Sachin Kamat To: sachin.kamat@linaro.org Cc: patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Enable G2D on Origen Date: Wed, 28 Dec 2011 16:29:54 +0530 Message-Id: <1325069994-15306-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 This patch enables G2D support on Origen board. Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/Kconfig | 1 + arch/arm/mach-exynos/mach-origen.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig index e931924..febfd53 100644 --- a/arch/arm/mach-exynos/Kconfig +++ b/arch/arm/mach-exynos/Kconfig @@ -303,6 +303,7 @@ config MACH_ORIGEN select S5P_DEV_FIMC2 select S5P_DEV_FIMC3 select S5P_DEV_FIMD0 + 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-origen.c b/arch/arm/mach-exynos/mach-origen.c index a0116036..0ec2a63 100644 --- a/arch/arm/mach-exynos/mach-origen.c +++ b/arch/arm/mach-exynos/mach-origen.c @@ -632,6 +632,7 @@ static struct platform_device *origen_devices[] __initdata = { &s5p_device_fimc2, &s5p_device_fimc3, &s5p_device_fimd0, + &s5p_device_g2d, &s5p_device_hdmi, &s5p_device_i2c_hdmiphy, &s5p_device_mfc,