From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v5 0/4] arm64 patch
Date: Wed, 28 Aug 2013 13:22:45 +0200 [thread overview]
Message-ID: <201308281322.45451.marex@denx.de> (raw)
In-Reply-To: <1377306389-25369-1-git-send-email-fenghua@phytium.com.cn>
Dear fenghua at phytium.com.cn,
> From: David Feng <fenghua@phytium.com.cn>
>
> The porting has been merged with arm architecture.
> Most architecture codes are placed in arch/arm/cpu/armv8 directory.
> Generic board is also supported after a few bugs are fixed.
>
> Changes for v4:
> - fix the generic board_f.c, remove zero_global_data from init_sequence_f
> array and move it to board_init_f() function with CONFIG_X86 switch. The
> previous fixup is inaccurate.
> - Replace __ARMEB__ with __AARCH64EB__ in byteorder.h and unaligned.h,
> gcc for aarch64 use __AARCH64EB__ and __AARCH64EL__ to identify endian.
> - Some modification to README.armv8
>
> David Feng (4):
> core support of arm64
> board support of arm64
> generic board patch of manual reloc and zero gd_t
> 64bit initrd start address support
>
> arch/arm/config.mk | 4 +
> arch/arm/cpu/armv8/Makefile | 56 ++++
> arch/arm/cpu/armv8/cache.S | 145 ++++++++++
> arch/arm/cpu/armv8/cache_v8.c | 291 ++++++++++++++++++++
> arch/arm/cpu/armv8/config.mk | 31 +++
> arch/arm/cpu/armv8/cpu.c | 68 +++++
> arch/arm/cpu/armv8/crt0.S | 130 +++++++++
> arch/arm/cpu/armv8/exceptions.S | 182 +++++++++++++
> arch/arm/cpu/armv8/interrupts.c | 116 ++++++++
> arch/arm/cpu/armv8/relocate.S | 71 +++++
> arch/arm/cpu/armv8/start.S | 200 ++++++++++++++
> arch/arm/cpu/armv8/timer.c | 95 +++++++
> arch/arm/cpu/armv8/tlb.S | 38 +++
> arch/arm/cpu/armv8/u-boot.lds | 83 ++++++
> arch/arm/include/asm/arch-armv8/armv8.h | 44 ++++
> arch/arm/include/asm/arch-armv8/gpio.h | 26 ++
> arch/arm/include/asm/arch-armv8/mmu.h | 117 ++++++++
> arch/arm/include/asm/byteorder.h | 12 +
> arch/arm/include/asm/config.h | 10 +
> arch/arm/include/asm/global_data.h | 6 +-
> arch/arm/include/asm/io.h | 12 +-
> arch/arm/include/asm/macro.h | 26 ++
> arch/arm/include/asm/posix_types.h | 31 +++
> arch/arm/include/asm/proc-armv/ptrace.h | 38 +++
> arch/arm/include/asm/proc-armv/system.h | 58 +++-
> arch/arm/include/asm/types.h | 14 +
> arch/arm/include/asm/u-boot.h | 4 +
> arch/arm/include/asm/unaligned.h | 14 +
> arch/arm/lib/Makefile | 8 +
> arch/arm/lib/board.c | 18 ++
> arch/arm/lib/bootm.c | 16 ++
> board/armltd/dts/vexpress64.dts | 439
> +++++++++++++++++++++++++++++++ board/armltd/vexpress64/Makefile |
> 43 +++
> board/armltd/vexpress64/vexpress64.c | 79 ++++++
> boards.cfg | 1 +
> common/board_f.c | 19 +-
> common/board_r.c | 17 ++
> common/fdt_support.c | 66 ++---
> common/image.c | 1 +
> doc/README.armv8 | 14 +
> examples/standalone/stubs.c | 15 ++
> include/configs/vexpress_aemv8a.h | 203 ++++++++++++++
> include/image.h | 1 +
> 43 files changed, 2816 insertions(+), 46 deletions(-)
> create mode 100644 arch/arm/cpu/armv8/Makefile
> create mode 100644 arch/arm/cpu/armv8/cache.S
> create mode 100644 arch/arm/cpu/armv8/cache_v8.c
> create mode 100644 arch/arm/cpu/armv8/config.mk
> create mode 100644 arch/arm/cpu/armv8/cpu.c
> create mode 100644 arch/arm/cpu/armv8/crt0.S
> create mode 100644 arch/arm/cpu/armv8/exceptions.S
> create mode 100644 arch/arm/cpu/armv8/interrupts.c
> create mode 100644 arch/arm/cpu/armv8/relocate.S
> create mode 100644 arch/arm/cpu/armv8/start.S
> create mode 100644 arch/arm/cpu/armv8/timer.c
> create mode 100644 arch/arm/cpu/armv8/tlb.S
> create mode 100644 arch/arm/cpu/armv8/u-boot.lds
> create mode 100644 arch/arm/include/asm/arch-armv8/armv8.h
> create mode 100644 arch/arm/include/asm/arch-armv8/gpio.h
> create mode 100644 arch/arm/include/asm/arch-armv8/mmu.h
> create mode 100644 board/armltd/dts/vexpress64.dts
> create mode 100644 board/armltd/vexpress64/Makefile
> create mode 100644 board/armltd/vexpress64/vexpress64.c
> create mode 100644 doc/README.armv8
> create mode 100644 include/configs/vexpress_aemv8a.h
Quick skim over the patches seems rather OK.
Best regards,
Marek Vasut
prev parent reply other threads:[~2013-08-28 11:22 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-24 1:06 [U-Boot] [PATCH v5 0/4] arm64 patch fenghua at phytium.com.cn
2013-08-24 1:06 ` fenghua at phytium.com.cn
2013-08-24 1:06 ` [U-Boot] [PATCH v5 1/4] core support of arm64 fenghua at phytium.com.cn
2013-09-06 20:31 ` Scott Wood
2013-09-07 14:56 ` FengHua
2013-09-09 17:19 ` Scott Wood
2013-09-11 14:13 ` FengHua
2013-09-12 0:16 ` Scott Wood
2013-08-24 1:06 ` fenghua at phytium.com.cn
2013-08-24 1:06 ` [U-Boot] [PATCH v5 2/4] board " fenghua at phytium.com.cn
2013-08-24 1:06 ` fenghua at phytium.com.cn
2013-08-24 1:06 ` [U-Boot] [PATCH v5 3/4] generic board patch of manual reloc and zero gd_t fenghua at phytium.com.cn
2013-08-24 1:06 ` fenghua at phytium.com.cn
2013-08-24 1:06 ` [U-Boot] [PATCH v5 4/4] 64bit initrd start address support fenghua at phytium.com.cn
2013-08-24 1:06 ` fenghua at phytium.com.cn
2013-08-27 16:40 ` [U-Boot] [PATCH v5 0/4] arm64 patch Ian Campbell
2013-08-28 14:03 ` FengHua
2013-08-28 11:22 ` Marek Vasut [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201308281322.45451.marex@denx.de \
--to=marex@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox