From patchwork Wed Aug 17 07:02:31 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3478 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 8378423F71 for ; Wed, 17 Aug 2011 07:04:57 +0000 (UTC) Received: from mail-ew0-f52.google.com (mail-ew0-f52.google.com [209.85.215.52]) by fiordland.canonical.com (Postfix) with ESMTP id 7335AA188D6 for ; Wed, 17 Aug 2011 07:04:57 +0000 (UTC) Received: by ewy28 with SMTP id 28so386908ewy.11 for ; Wed, 17 Aug 2011 00:04:57 -0700 (PDT) Received: by 10.213.3.155 with SMTP id 27mr1132264ebn.18.1313564697122; Wed, 17 Aug 2011 00:04:57 -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.213.102.5 with SMTP id e5cs1917ebo; Wed, 17 Aug 2011 00:04:57 -0700 (PDT) Received: from mr.google.com ([10.91.142.20]) by 10.91.142.20 with SMTP id u20mr905371agn.91.1313564696882 (num_hops = 1); Wed, 17 Aug 2011 00:04:56 -0700 (PDT) Received: by 10.91.142.20 with SMTP id u20mr668513agn.91.1313564696309; Wed, 17 Aug 2011 00:04:56 -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 s16si1184923wff.117.2011.08.17.00.04.54 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 17 Aug 2011 00:04:55 -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 33so804853pzk.32 for ; Wed, 17 Aug 2011 00:04:54 -0700 (PDT) Received: by 10.142.59.21 with SMTP id h21mr300789wfa.404.1313564694123; Wed, 17 Aug 2011 00:04:54 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id e6sm395460pbm.7.2011.08.17.00.04.51 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 17 Aug 2011 00:04:53 -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: Enable system MMU support on Origen Date: Wed, 17 Aug 2011 12:32:31 +0530 Message-Id: <1313564551-1196-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos4/Kconfig | 1 + arch/arm/mach-exynos4/mach-origen.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos4/Kconfig b/arch/arm/mach-exynos4/Kconfig index 3ab0f18..bdb76e2 100644 --- a/arch/arm/mach-exynos4/Kconfig +++ b/arch/arm/mach-exynos4/Kconfig @@ -192,6 +192,7 @@ config MACH_ORIGEN select S3C_DEV_RTC select S3C_DEV_WDT select S3C_DEV_HSMMC2 + select EXYNOS4_DEV_SYSMMU select EXYNOS4_SETUP_SDHCI help Machine support for ORIGEN based on Samsung EXYNOS4210 diff --git a/arch/arm/mach-exynos4/mach-origen.c b/arch/arm/mach-exynos4/mach-origen.c index ed59f86..d04f7ee 100644 --- a/arch/arm/mach-exynos4/mach-origen.c +++ b/arch/arm/mach-exynos4/mach-origen.c @@ -83,6 +83,7 @@ static struct platform_device *origen_devices[] __initdata = { &s3c_device_hsmmc2, &s3c_device_rtc, &s3c_device_wdt, + &exynos4_device_sysmmu, }; static void __init origen_map_io(void)