From patchwork Wed Apr 8 16:56:29 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: 459357 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 AC8DB1400A0 for ; Thu, 9 Apr 2015 02:56:50 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 01D0AA7458; Wed, 8 Apr 2015 18:56:46 +0200 (CEST) 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 d2b2DRh2gnkN; Wed, 8 Apr 2015 18:56:45 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DB89DA745A; Wed, 8 Apr 2015 18:56:41 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6CF16A743B for ; Wed, 8 Apr 2015 18:56:37 +0200 (CEST) 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 6Vq8c2rTaTE6 for ; Wed, 8 Apr 2015 18:56:37 +0200 (CEST) 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 33C0FA7421 for ; Wed, 8 Apr 2015 18:56:33 +0200 (CEST) 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 t38GuVLM030599; Wed, 8 Apr 2015 18:56:32 +0200 From: andrej@inversepath.com To: u-boot@lists.denx.de Date: Wed, 8 Apr 2015 18:56:29 +0200 Message-Id: <1428512190-23679-2-git-send-email-andrej@inversepath.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1428512190-23679-1-git-send-email-andrej@inversepath.com> References: <1428512190-23679-1-git-send-email-andrej@inversepath.com> Cc: Vagrant Cascadian Subject: [U-Boot] [PATCH v5 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