From patchwork Tue Oct 18 12:41:47 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Harkin X-Patchwork-Id: 120416 X-Patchwork-Delegate: trini@ti.com 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 141661007D1 for ; Tue, 18 Oct 2011 23:47:21 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0E51028E0B; Tue, 18 Oct 2011 14:47:18 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 ZXIz0wekPRmD; Tue, 18 Oct 2011 14:47:17 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0235328CB8; Tue, 18 Oct 2011 14:47:16 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B2F9C28C80 for ; Tue, 18 Oct 2011 14:47:13 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 AkSF-84F+r6U for ; Tue, 18 Oct 2011 14:47:12 +0200 (CEST) X-Greylist: delayed 302 seconds by postgrey-1.27 at theia; Tue, 18 Oct 2011 14:47:11 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 anakin.london.02.net (anakin.london.02.net [87.194.255.134]) by theia.denx.de (Postfix) with ESMTP id 961F728C74 for ; Tue, 18 Oct 2011 14:47:11 +0200 (CEST) Received: from quietpc (188.220.45.96) by anakin.london.02.net (8.5.140) id 4E1D604002F0FC28; Tue, 18 Oct 2011 13:42:03 +0100 Received: from ryan by quietpc with local (Exim 4.74) (envelope-from ) id 1RG8za-0005OZ-TS; Tue, 18 Oct 2011 13:42:02 +0100 From: Ryan Harkin To: ryan.harkin@linaro.org, albert.u.boot@aribaud.net, matt.waddel@linaro.org, u-boot@lists.denx.de, john.rigby@linaro.org Date: Tue, 18 Oct 2011 13:41:47 +0100 Message-Id: <1318941709-20701-2-git-send-email-ryan.harkin@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1318941709-20701-1-git-send-email-ryan.harkin@linaro.org> References: <1318941709-20701-1-git-send-email-ryan.harkin@linaro.org> Subject: [U-Boot] [PATCH 1/3] ARM: vexpress: move files in preparation for adding a new platform X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de The current ca9x4_ct_vxp platform contains support for a Versatile Express motherboard with a quad core A9 core tile. This patch is the first stage of making separating the Versatile Express motherboard code and the A9 specific code, before adding support for the dual core A5 core tile. Signed-off-by: Ryan Harkin --- MAINTAINERS | 2 +- board/armltd/vexpress/Makefile | 2 +- .../vexpress/{ca9x4_ct_vxp.c => vexpress_common.c} | 0 boards.cfg | 2 +- .../configs/{ca9x4_ct_vxp.h => vexpress_common.h} | 0 5 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/ca9x4_ct_vxp.h b/include/configs/vexpress_common.h similarity index 100% rename from include/configs/ca9x4_ct_vxp.h rename to include/configs/vexpress_common.h diff --git a/MAINTAINERS b/MAINTAINERS index dc5a913..bc89a4e 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -858,7 +858,7 @@ Hugo Villeneuve Matt Waddel - ca9x4_ct_vxp ARM ARMV7 (Quad Core) + vexpress_common ARM ARMV7 (Quad Core) Prafulla Wadaskar diff --git a/board/armltd/vexpress/Makefile b/board/armltd/vexpress/Makefile index 49c4b81..cdfe70e 100644 --- a/board/armltd/vexpress/Makefile +++ b/board/armltd/vexpress/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).o -COBJS := ca9x4_ct_vxp.o +COBJS := vexpress_common.o SRCS := $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) diff --git a/board/armltd/vexpress/ca9x4_ct_vxp.c b/board/armltd/vexpress/vexpress_common.c similarity index 100% rename from board/armltd/vexpress/ca9x4_ct_vxp.c rename to board/armltd/vexpress/vexpress_common.c diff --git a/boards.cfg b/boards.cfg index fb4c1b7..31202b8 100644 --- a/boards.cfg +++ b/boards.cfg @@ -154,7 +154,7 @@ edminiv2 arm arm926ejs - LaCie dkb arm arm926ejs - Marvell pantheon integratorap_cm946es arm arm946es integrator armltd - integratorap integratorcp_cm946es arm arm946es integrator armltd - integratorcp -ca9x4_ct_vxp arm armv7 vexpress armltd +vexpress_common arm armv7 vexpress armltd highbank arm armv7 highbank - highbank efikamx arm armv7 efikamx - mx5 efikamx:IMX_CONFIG=board/efikamx/imximage.cfg mx51evk arm armv7 mx51evk freescale mx5 mx51evk:IMX_CONFIG=board/freescale/mx51evk/imximage.cfg