public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH V2 0/3] Add support for MB86R0x SoCs
@ 2010-06-28 12:04 Matthias Weisser
  2010-06-28 12:04 ` [U-Boot] [PATCH V2 1/3] arm: " Matthias Weisser
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Matthias Weisser @ 2010-06-28 12:04 UTC (permalink / raw)
  To: u-boot

This patchset adds support for MB86R0x SoC familiy from Fujitsu,
its built in lcd controller and a first board using the
MB86R01.

Changes since V2
  - Rebased to current u-boot next branch
  
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 +
 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 +++++++++++
 boards.cfg                                      |    1 +
 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, 1870 insertions(+), 6 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

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [U-Boot] [PATCH V2 0/3] Add support for MB86R0x SoCs
@ 2010-05-05 14:28 Matthias Weisser
  2010-05-05 14:28 ` [U-Boot] [PATCH V2 1/3] arm: " Matthias Weisser
  0 siblings, 1 reply; 8+ messages in thread
From: Matthias Weisser @ 2010-05-05 14:28 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-07-16 22:44 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-28 12:04 [U-Boot] [PATCH V2 0/3] Add support for MB86R0x SoCs Matthias Weisser
2010-06-28 12:04 ` [U-Boot] [PATCH V2 1/3] arm: " Matthias Weisser
2010-06-28 12:04 ` [U-Boot] [PATCH V2 2/3] video: add support for display controller in " Matthias Weisser
2010-07-16 22:38   ` Anatolij Gustschin
2010-06-28 12:04 ` [U-Boot] [PATCH V2 3/3] arm: Add support for jadecpu board based on MB86R01 SoC Matthias Weisser
2010-07-16 22:44   ` Anatolij Gustschin
  -- strict thread matches above, loose matches on Subject: below --
2010-05-05 14:28 [U-Boot] [PATCH V2 0/3] Add support for MB86R0x SoCs Matthias Weisser
2010-05-05 14:28 ` [U-Boot] [PATCH V2 1/3] arm: " Matthias Weisser
2010-05-05 14:28   ` [U-Boot] [PATCH V2 2/3] video: add support for display controller in " Matthias Weisser
2010-05-05 14:28     ` [U-Boot] [PATCH V2 3/3] arm: Add support for jadecpu board based on MB86R01 SoC Matthias Weisser
2010-06-12  9:36       ` Anatolij Gustschin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox