[U-Boot] [PATCH V2 0/3] Add support for MB86R0x SoCs
Matthias Weisser
weisserm at arcor.de
Wed May 5 16:28:50 CEST 2010
This patchset adds support for MB86R0x SoC familiy from Fujitsu,
its built in lcd controller and a first board using the
MB86R01.
Changes since V1
- Used C structs for addressing instead of base + offset
- Moved offsets for assmebler code to asm-offsets.h
- Moved some dublicated sections of code to functions
Matthias Weisser (3):
arm: Add support for MB86R0x SoCs
video: add support for display controller in MB86R0x SoCs
arm: Add support for jadecpu board based on MB86R01 SoC
MAINTAINERS | 4 +
MAKEALL | 1 +
Makefile | 4 +
arch/arm/cpu/arm926ejs/mb86r0x/Makefile | 47 ++
arch/arm/cpu/arm926ejs/mb86r0x/reset.c | 40 ++
arch/arm/cpu/arm926ejs/mb86r0x/timer.c | 139 ++++++
arch/arm/include/asm/arch-mb86r0x/asm-offsets.h | 74 +++
arch/arm/include/asm/arch-mb86r0x/hardware.h | 31 ++
arch/arm/include/asm/arch-mb86r0x/mb86r0x.h | 561 +++++++++++++++++++++++
board/syteco/jadecpu/Makefile | 55 +++
board/syteco/jadecpu/config.mk | 1 +
board/syteco/jadecpu/jadecpu.c | 171 +++++++
board/syteco/jadecpu/lowlevel_init.S | 266 +++++++++++
common/serial.c | 6 +-
drivers/video/Makefile | 1 +
drivers/video/mb86r0xgdc.c | 186 ++++++++
include/configs/jadecpu.h | 283 ++++++++++++
include/serial.h | 6 +-
tools/Makefile | 3 +
tools/logos/syteco.bmp | Bin 0 -> 11414 bytes
20 files changed, 1875 insertions(+), 4 deletions(-)
create mode 100644 arch/arm/cpu/arm926ejs/mb86r0x/Makefile
create mode 100644 arch/arm/cpu/arm926ejs/mb86r0x/reset.c
create mode 100644 arch/arm/cpu/arm926ejs/mb86r0x/timer.c
create mode 100644 arch/arm/include/asm/arch-mb86r0x/asm-offsets.h
create mode 100644 arch/arm/include/asm/arch-mb86r0x/hardware.h
create mode 100644 arch/arm/include/asm/arch-mb86r0x/mb86r0x.h
create mode 100644 board/syteco/jadecpu/Makefile
create mode 100644 board/syteco/jadecpu/config.mk
create mode 100644 board/syteco/jadecpu/jadecpu.c
create mode 100644 board/syteco/jadecpu/lowlevel_init.S
create mode 100644 drivers/video/mb86r0xgdc.c
create mode 100644 include/configs/jadecpu.h
create mode 100644 tools/logos/syteco.bmp
More information about the U-Boot
mailing list