From patchwork Thu Mar 26 11:49:48 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: andrej@inversepath.com X-Patchwork-Id: 454972 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id F1F531400B7 for ; Thu, 26 Mar 2015 22:50:19 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 515964B624; Thu, 26 Mar 2015 12:50:18 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6jUXHnntxXDb; Thu, 26 Mar 2015 12:50:18 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id EC37F4A04E; Thu, 26 Mar 2015 12:50:17 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4743E4A04E for ; Thu, 26 Mar 2015 12:49:54 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Fgc67sU19pFl for ; Thu, 26 Mar 2015 12:49:54 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from core.inversepath.com (core.inversepath.com [91.121.184.96]) by theia.denx.de (Postfix) with ESMTPS id 079CE4A036 for ; Thu, 26 Mar 2015 12:49:51 +0100 (CET) Received: from stjenka.homenet.telecomitalia.it (localhost.localdomain [127.0.0.1]) by core.inversepath.com (8.14.3/8.14.3) with ESMTP id t2QBnnVB006749; Thu, 26 Mar 2015 12:49:50 +0100 From: andrej@inversepath.com To: u-boot@lists.denx.de Date: Thu, 26 Mar 2015 12:49:48 +0100 Message-Id: <1427370589-11291-2-git-send-email-andrej@inversepath.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1427370589-11291-1-git-send-email-andrej@inversepath.com> References: <1427370589-11291-1-git-send-email-andrej@inversepath.com> Cc: Vagrant Cascadian Subject: [U-Boot] [PATCH v4 1/2] ARM: mx5: move to a standard arch/board approach X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Andrej Rosano Move the MX5 based boards to arch/arm/cpu/armv7/mx5, following the commit: 89ebc82137bebb11a8191f8b9cbf08f2533ae8bc Signed-off-by: Andrej Rosano Cc: Stefano Babic Cc: Vagrant Cascadian Tested-by: Chris Kuethe --- arch/arm/Kconfig | 6 ++++++ arch/arm/cpu/armv7/mx5/Kconfig | 16 ++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 arch/arm/cpu/armv7/mx5/Kconfig diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index c0a0fd8..06b8e58 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -437,6 +437,10 @@ config ARCH_MX6 bool "Freescale MX6" select CPU_V7 +config ARCH_MX5 + bool "Freescale MX5" + select CPU_V7 + config TARGET_M53EVK bool "Support m53evk" select CPU_V7 @@ -741,6 +745,8 @@ source "arch/arm/mach-kirkwood/Kconfig" source "arch/arm/cpu/armv7/mx6/Kconfig" +source "arch/arm/cpu/armv7/mx5/Kconfig" + source "arch/arm/mach-nomadik/Kconfig" source "arch/arm/cpu/armv7/omap3/Kconfig" diff --git a/arch/arm/cpu/armv7/mx5/Kconfig b/arch/arm/cpu/armv7/mx5/Kconfig new file mode 100644 index 0000000..960a718 --- /dev/null +++ b/arch/arm/cpu/armv7/mx5/Kconfig @@ -0,0 +1,16 @@ +if ARCH_MX5 + +config MX5 + bool + default y + +config MX51 + bool + +config MX53 + bool + +config SYS_SOC + default "mx5" + +endif