[U-Boot] [PATCH 0/2] ARMV7: Add support for the Versatile Express Quad Cortex A9 platform

Adds support for the ARM quad-core Cortex-A9 processor. This system includes a motherboard(Versatile Express), daughterboard(Coretile), and an SOC(Cortex-A9 quad core). The serial port, ethernet, and flash systems work with these additions.
Fixes a bug in the "set baudrate xxx" functionality.
Matt Waddel (2): ARMV7: Versatile Express Coretile quad-core Cortex-A9 support ARMV7: Fix baudrate change capabilities
MAINTAINERS | 4 + MAKEALL | 1 + arch/arm/cpu/armv7/ca9x4/Makefile | 45 ++++++ arch/arm/cpu/armv7/ca9x4/lowlevel_init.S | 50 +++++++ arch/arm/cpu/armv7/config.mk | 4 + arch/arm/include/asm/arch-ca9x4/sysctrl.h | 68 +++++++++ arch/arm/include/asm/arch-ca9x4/systimer.h | 50 +++++++ arch/arm/include/asm/arch-ca9x4/wdt.h | 55 +++++++ board/armltd/vexpress/Makefile | 50 +++++++ board/armltd/vexpress/ca9x4_ct_vxp.c | 220 ++++++++++++++++++++++++++++ board/armltd/vexpress/config.mk | 26 ++++ board/armltd/vexpress/u-boot.lds | 50 +++++++ boards.cfg | 1 + drivers/serial/serial_pl01x.c | 5 +- include/configs/ca9x4_ct_vxp.h | 186 +++++++++++++++++++++++ 15 files changed, 814 insertions(+), 1 deletions(-) create mode 100644 arch/arm/cpu/armv7/ca9x4/Makefile create mode 100644 arch/arm/cpu/armv7/ca9x4/lowlevel_init.S create mode 100644 arch/arm/include/asm/arch-ca9x4/sysctrl.h create mode 100644 arch/arm/include/asm/arch-ca9x4/systimer.h create mode 100644 arch/arm/include/asm/arch-ca9x4/wdt.h create mode 100644 board/armltd/vexpress/Makefile create mode 100644 board/armltd/vexpress/ca9x4_ct_vxp.c create mode 100644 board/armltd/vexpress/config.mk create mode 100644 board/armltd/vexpress/u-boot.lds create mode 100644 include/configs/ca9x4_ct_vxp.h
participants (2)
-
Matt Waddel
-
Paulraj, Sandeep