From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bamvor Jian Zhang Subject: [PATCH V2 0/2] xen: arm: assemble support for Allwinner A31 Date: Tue, 2 Jul 2013 21:11:52 +0800 Message-ID: <1372770714-1657-1-git-send-email-bjzhang@suse.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org Cc: andre.przywara@calxeda.com, ian.campbell@citrix.com, Stefano.Stabellini@eu.citrix.com, julien.grall@linaro.org, bjzhang@suse.com, baozich@gmail.com List-Id: xen-devel@lists.xenproject.org These series patch enable Allwinner A31(code name sun6i) support in assemble. with these patches, the cpu 0 of sun6i SOC could successful boot into the c environment. Bamvor Jian Zhang (2): xen: arm: introduce Cortex-A7 support xen: arm: implement early prink for 8250 uart docs/misc/arm/early-printk.txt | 1 + xen/arch/arm/Rules.mk | 5 ++++ xen/arch/arm/arm32/Makefile | 2 ++ xen/arch/arm/arm32/asm-offsets.c | 5 ++++ xen/arch/arm/arm32/debug-8250.inc | 48 +++++++++++++++++++++++++++++++++++ xen/arch/arm/arm32/head.S | 29 +++++++++++++++++---- xen/arch/arm/arm32/proc-ca15.S | 12 +++++---- xen/arch/arm/arm32/proc-ca7.S | 38 +++++++++++++++++++++++++++ xen/arch/arm/arm32/proc-v7.S | 36 ++++++++++++++++++++++++++ xen/arch/arm/xen.lds.S | 5 ++++ xen/include/asm-arm/arm32/processor.h | 2 ++ xen/include/asm-arm/arm32/procinfo.h | 30 ++++++++++++++++++++++ xen/include/asm-arm/processor-ca15.h | 4 --- xen/include/asm-arm/processor-ca7.h | 19 ++++++++++++++ 14 files changed, 222 insertions(+), 14 deletions(-) create mode 100644 xen/arch/arm/arm32/debug-8250.inc create mode 100644 xen/arch/arm/arm32/proc-ca7.S create mode 100644 xen/arch/arm/arm32/proc-v7.S create mode 100644 xen/include/asm-arm/arm32/procinfo.h create mode 100644 xen/include/asm-arm/processor-ca7.h -- 1.8.1.4