From patchwork Fri Mar 11 23:08:03 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mathieu Poirier X-Patchwork-Id: 516 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:43:16 -0000 Delivered-To: patches@linaro.org Received: by 10.224.67.207 with SMTP id s15cs76498qai; Fri, 11 Mar 2011 15:08:23 -0800 (PST) Received: by 10.91.182.10 with SMTP id j10mr494828agp.115.1299884903063; Fri, 11 Mar 2011 15:08:23 -0800 (PST) Received: from mail-yw0-f50.google.com (mail-yw0-f50.google.com [209.85.213.50]) by mx.google.com with ESMTPS id c21si11834765anc.49.2011.03.11.15.08.22 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 11 Mar 2011 15:08:23 -0800 (PST) Received-SPF: neutral (google.com: 209.85.213.50 is neither permitted nor denied by best guess record for domain of mathieu.poirier@linaro.org) client-ip=209.85.213.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.213.50 is neither permitted nor denied by best guess record for domain of mathieu.poirier@linaro.org) smtp.mail=mathieu.poirier@linaro.org Received: by mail-yw0-f50.google.com with SMTP id 8so1712406ywa.37 for ; Fri, 11 Mar 2011 15:08:22 -0800 (PST) Received: by 10.100.132.16 with SMTP id f16mr1565790and.91.1299884902496; Fri, 11 Mar 2011 15:08:22 -0800 (PST) Received: from localhost.localdomain (S0106002369de4dac.cg.shawcable.net [70.73.24.112]) by mx.google.com with ESMTPS id i10sm5945021anh.32.2011.03.11.15.08.20 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 11 Mar 2011 15:08:21 -0800 (PST) From: mathieu.poirier@linaro.org To: linux-arm-kernel@lists.infradead.org Cc: mathieu.poirier@linaro.org, patches@linaro.org, linus.walleij@stericsson.com Subject: [PATCH 01/10] ux500: Introducing foundation for snowball board. Date: Fri, 11 Mar 2011 16:08:03 -0700 Message-Id: <1299884892-6766-2-git-send-email-mathieu.poirier@linaro.org> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1299884892-6766-1-git-send-email-mathieu.poirier@linaro.org> References: <1299884892-6766-1-git-send-email-mathieu.poirier@linaro.org> From: Mathieu J. Poirier Signed-off-by: Mathieu Poirier --- arch/arm/mach-ux500/Kconfig | 6 ++++++ arch/arm/mach-ux500/include/mach/uncompress.h | 3 ++- arch/arm/tools/mach-types | 1 + 3 files changed, 9 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-ux500/Kconfig b/arch/arm/mach-ux500/Kconfig index 7f8620f..ba5c270 100644 --- a/arch/arm/mach-ux500/Kconfig +++ b/arch/arm/mach-ux500/Kconfig @@ -26,6 +26,12 @@ config MACH_U8500 help Include support for the mop500 development platform. +config MACH_U8500_SNOWBALL + bool "U8500 Snowball platform" + depends on UX500_SOC_DB8500 + help + Include support for the snowball development platform. + config MACH_U5500 bool "U5500 Development platform" depends on UX500_SOC_DB5500 diff --git a/arch/arm/mach-ux500/include/mach/uncompress.h b/arch/arm/mach-ux500/include/mach/uncompress.h index ab0fe14..3b4f6b7 100644 --- a/arch/arm/mach-ux500/include/mach/uncompress.h +++ b/arch/arm/mach-ux500/include/mach/uncompress.h @@ -54,7 +54,8 @@ static inline void arch_decomp_setup(void) if (machine_is_u8500() || machine_is_svp8500v1() || machine_is_svp8500v2() || - machine_is_hrefv60()) + machine_is_hrefv60() || + machine_is_snowball()) ux500_uart_base = U8500_UART2_BASE; else if (machine_is_u5500()) ux500_uart_base = U5500_UART0_BASE; diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types index 9d6feaa..e9f780e 100644 --- a/arch/arm/tools/mach-types +++ b/arch/arm/tools/mach-types @@ -3316,3 +3316,4 @@ rover_g8 MACH_ROVER_G8 ROVER_G8 3335 t5388p MACH_T5388P T5388P 3336 dingo MACH_DINGO DINGO 3337 goflexhome MACH_GOFLEXHOME GOFLEXHOME 3338 +snowball MACH_U8500_SNOWBALL SNOWBALL 3363