[U-Boot-Users] [SH] Pull Request: git://www.denx.de/git/u-boot-sh.git
Nobuhiro Iwamatsu
iwamatsu at nigauri.org
Wed Nov 28 18:05:04 CET 2007
Dear Wolfgang,
This is the first pull request of the SH tree.
Please pull SH updates.
regards,
Nobuhiro
--
Nobuhiro Iwamatsu
iwamatsu at nigauri.org
iwamatsu at debian.or.jp
GPG ID : 3170EBE9
The following changes since commit 0b135cfc2e524dc249b75057b55dd4cc09842e27:
Nobuhiro Iwamatsu (1):
sh: First support code of SuperH.
are available in the git repository at:
git://www.denx.de/git/u-boot-sh.git
Jean-Christophe PLAGNIOL-VILLARD (1):
sh: Add sh3 and sh4 support in MAKEALL
Nobuhiro Iwamatsu (14):
sh: MS7750SE support.
Merge git://www.denx.de/git/u-boot
sh: Update core code of SuperH.
sh: Remove comment out code from include/asm-sh/cpu_sh4.h
sh: Update MS7750SE01 platform
sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
sh: Update Makefile
sh: Add support command of ide with sh
Merge git://www.denx.de/git/u-boot
sh: Update SuperH SCIF driver
sh: Add marubun's pcmcia driver
sh: Add document for SuperH.
sh: Add ms7750se support in MAKEALL
sh: Add SuperH boards maintainer to MAINTAINERS file
CREDITS | 11 +-
MAINTAINERS | 12 +
MAKEALL | 21 +-
Makefile | 20 +
board/ms7722se/Makefile | 48 ++
board/ms7722se/config.mk | 32 +
board/ms7722se/lowlevel_init.S | 296 +++++++++
board/ms7722se/ms7722se.c | 60 ++
board/ms7722se/u-boot.lds | 106 ++++
board/ms7750se/Makefile | 43 ++
board/ms7750se/config.mk | 23 +
board/ms7750se/lowlevel_init.S | 180 ++++++
board/ms7750se/ms7750se.c | 51 ++
board/ms7750se/u-boot.lds | 106 ++++
common/cmd_bootm.c | 2 +
common/cmd_ide.c | 4 +-
cpu/sh4/Makefile | 46 ++
cpu/sh4/cache.c | 108 ++++
cpu/sh4/config.mk | 28 +
cpu/sh4/cpu.c | 83 +++
cpu/sh4/interrupts.c | 39 ++
cpu/sh4/start.S | 75 +++
cpu/sh4/time.c | 98 +++
cpu/sh4/watchdog.c | 52 ++
doc/README.marubun-pcmcia | 65 ++
doc/README.sh | 62 ++
drivers/Makefile | 2 +
drivers/marubun_pcmcia.c | 113 ++++
drivers/serial_sh.c | 177 ++++++
examples/Makefile | 5 +
examples/stubs.c | 16 +
include/asm-sh/bitops.h | 166 +++++
include/asm-sh/byteorder.h | 31 +
include/asm-sh/cpu_sh4.h | 41 ++
include/asm-sh/cpu_sh7722.h | 1337 ++++++++++++++++++++++++++++++++++++++++
include/asm-sh/cpu_sh7750.h | 196 ++++++
include/asm-sh/errno.h | 156 +++++
include/asm-sh/global_data.h | 50 ++
include/asm-sh/io.h | 231 +++++++
include/asm-sh/irqflags.h | 126 ++++
include/asm-sh/posix_types.h | 123 ++++
include/asm-sh/processor.h | 8 +
include/asm-sh/ptrace.h | 112 ++++
include/asm-sh/string.h | 162 +++++
include/asm-sh/system.h | 275 ++++++++
include/asm-sh/types.h | 59 ++
include/asm-sh/u-boot.h | 44 ++
include/configs/ms7722se.h | 137 ++++
include/configs/ms7750se.h | 108 ++++
lib_sh/Makefile | 42 ++
lib_sh/board.c | 210 +++++++
lib_sh/sh_linux.c | 75 +++
lib_sh/time.c | 75 +++
sh_config.mk | 24 +
54 files changed, 5766 insertions(+), 6 deletions(-)
create mode 100644 board/ms7722se/Makefile
create mode 100644 board/ms7722se/config.mk
create mode 100644 board/ms7722se/lowlevel_init.S
create mode 100644 board/ms7722se/ms7722se.c
create mode 100644 board/ms7722se/u-boot.lds
create mode 100644 board/ms7750se/Makefile
create mode 100644 board/ms7750se/config.mk
create mode 100644 board/ms7750se/lowlevel_init.S
create mode 100644 board/ms7750se/ms7750se.c
create mode 100644 board/ms7750se/u-boot.lds
create mode 100644 cpu/sh4/Makefile
create mode 100644 cpu/sh4/cache.c
create mode 100644 cpu/sh4/config.mk
create mode 100644 cpu/sh4/cpu.c
create mode 100644 cpu/sh4/interrupts.c
create mode 100644 cpu/sh4/start.S
create mode 100644 cpu/sh4/time.c
create mode 100644 cpu/sh4/watchdog.c
create mode 100644 doc/README.marubun-pcmcia
create mode 100644 doc/README.sh
create mode 100644 drivers/marubun_pcmcia.c
create mode 100644 drivers/serial_sh.c
create mode 100644 include/asm-sh/bitops.h
create mode 100644 include/asm-sh/byteorder.h
create mode 100644 include/asm-sh/cpu_sh4.h
create mode 100644 include/asm-sh/cpu_sh7722.h
create mode 100644 include/asm-sh/cpu_sh7750.h
create mode 100644 include/asm-sh/errno.h
create mode 100644 include/asm-sh/global_data.h
create mode 100644 include/asm-sh/io.h
create mode 100644 include/asm-sh/irqflags.h
create mode 100644 include/asm-sh/posix_types.h
create mode 100644 include/asm-sh/processor.h
create mode 100644 include/asm-sh/ptrace.h
create mode 100644 include/asm-sh/string.h
create mode 100644 include/asm-sh/system.h
create mode 100644 include/asm-sh/types.h
create mode 100644 include/asm-sh/u-boot.h
create mode 100644 include/configs/ms7722se.h
create mode 100644 include/configs/ms7750se.h
create mode 100644 lib_sh/Makefile
create mode 100644 lib_sh/board.c
create mode 100644 lib_sh/sh_linux.c
create mode 100644 lib_sh/time.c
create mode 100644 sh_config.mk
More information about the U-Boot
mailing list