[U-Boot-Users] [GIT PULL][SH] Please pull git://www.denx.de/git/u-boot-sh.git/

Dear Wolfgang,
Please pull git://www.denx.de/git/u-boot-sh.git/.
The following changes since commit 74d1e66d22dac91388bc538b2fe19f735edc5b82: Bartlomiej Sieka (1): Fix host tool build breakage, take two
are available in the git repository at:
git://www.denx.de/git/u-boot-sh master
Mark Jonas (2): sh: Added support for SH7720 based board MPR2. sh: Removed warning when compiling drivers/serial/serial_sh.c.
Nobuhiro Iwamatsu (9): sh: Fix receive FIFO level register of SH4A sh: Add support SuperH SH7751/SH7751R sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci sh: Add support PCI host driver for SH7751/SH7751R sh: Add support SH4 cache control sh: Add support Renesas Solutions R2D plus board sh: Add maintainer of R7780MP to MAINTAINER file sh: Remove disable_ctrlc function from R7780MP sh: Add support stat structure and stat.h
Yusuke Goda (3): sh: Add support SH7780 sh: Add support PCI of SuperH and SH7780 sh: Add support Renesas Solutions R7780MP
goda.yusuke (1): sh: Add support Renesas Solutions Migo-R board
CREDITS | 4 + MAINTAINERS | 12 +- MAKEALL | 4 + Makefile | 20 ++ board/MigoR/Makefile | 48 ++++ board/MigoR/config.mk | 32 +++ board/MigoR/lowlevel_init.S | 269 ++++++++++++++++++++++ board/MigoR/migo_r.c | 54 +++++ board/MigoR/u-boot.lds | 106 +++++++++ board/mpr2/Makefile | 54 +++++ board/mpr2/config.mk | 37 +++ board/mpr2/lowlevel_init.S | 148 ++++++++++++ board/mpr2/mpr2.c | 162 +++++++++++++ board/mpr2/u-boot.lds | 109 +++++++++ board/r2dplus/Makefile | 43 ++++ board/r2dplus/config.mk | 23 ++ board/r2dplus/lowlevel_init.S | 154 +++++++++++++ board/r2dplus/r2dplus.c | 76 ++++++ board/r2dplus/u-boot.lds | 105 +++++++++ board/r7780mp/Makefile | 44 ++++ board/r7780mp/config.mk | 27 +++ board/r7780mp/lowlevel_init.S | 428 +++++++++++++++++++++++++++++++++++ board/r7780mp/r7780mp.c | 81 +++++++ board/r7780mp/r7780mp.h | 54 +++++ board/r7780mp/u-boot.lds | 105 +++++++++ cpu/sh4/cpu.c | 3 +- doc/README.sh | 51 ++++- drivers/pci/Makefile | 3 + drivers/pci/pci_sh4.c | 76 ++++++ drivers/pci/pci_sh7751.c | 199 ++++++++++++++++ drivers/pci/pci_sh7780.c | 107 +++++++++ drivers/serial/serial_sh.c | 70 +++--- include/asm-sh/cache.h | 35 +++ include/asm-sh/cpu_sh4.h | 13 +- include/asm-sh/cpu_sh7720.h | 25 ++- include/asm-sh/cpu_sh7750.h | 4 +- include/asm-sh/cpu_sh7780.h | 503 +++++++++++++++++++++++++++++++++++++++++ include/asm-sh/pci.h | 47 ++++ include/asm-sh/processor.h | 3 +- include/configs/MigoR.h | 151 ++++++++++++ include/configs/mpr2.h | 92 ++++++++ include/configs/r2dplus.h | 150 ++++++++++++ include/configs/r7780mp.h | 165 ++++++++++++++ include/linux/stat.h | 4 +- lib_sh/board.c | 13 +- 45 files changed, 3863 insertions(+), 50 deletions(-) create mode 100644 board/MigoR/Makefile create mode 100644 board/MigoR/config.mk create mode 100644 board/MigoR/lowlevel_init.S create mode 100644 board/MigoR/migo_r.c create mode 100644 board/MigoR/u-boot.lds create mode 100644 board/mpr2/Makefile create mode 100644 board/mpr2/config.mk create mode 100644 board/mpr2/lowlevel_init.S create mode 100644 board/mpr2/mpr2.c create mode 100644 board/mpr2/u-boot.lds create mode 100644 board/r2dplus/Makefile create mode 100644 board/r2dplus/config.mk create mode 100644 board/r2dplus/lowlevel_init.S create mode 100644 board/r2dplus/r2dplus.c create mode 100644 board/r2dplus/u-boot.lds create mode 100644 board/r7780mp/Makefile create mode 100644 board/r7780mp/config.mk create mode 100644 board/r7780mp/lowlevel_init.S create mode 100644 board/r7780mp/r7780mp.c create mode 100644 board/r7780mp/r7780mp.h create mode 100644 board/r7780mp/u-boot.lds create mode 100644 drivers/pci/pci_sh4.c create mode 100644 drivers/pci/pci_sh7751.c create mode 100644 drivers/pci/pci_sh7780.c create mode 100644 include/asm-sh/cache.h create mode 100644 include/asm-sh/cpu_sh7780.h create mode 100644 include/asm-sh/pci.h create mode 100644 include/configs/MigoR.h create mode 100644 include/configs/mpr2.h create mode 100644 include/configs/r2dplus.h create mode 100644 include/configs/r7780mp.h

In message 20080330103237.2ba75346.iwamatsu@nigauri.org you wrote:
Please pull git://www.denx.de/git/u-boot-sh.git/.
The following changes since commit 74d1e66d22dac91388bc538b2fe19f735edc5b82: Bartlomiej Sieka (1): Fix host tool build breakage, take two
are available in the git repository at:
git://www.denx.de/git/u-boot-sh master
Mark Jonas (2): sh: Added support for SH7720 based board MPR2. sh: Removed warning when compiling drivers/serial/serial_sh.c.
Nobuhiro Iwamatsu (9): sh: Fix receive FIFO level register of SH4A sh: Add support SuperH SH7751/SH7751R sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci sh: Add support PCI host driver for SH7751/SH7751R sh: Add support SH4 cache control sh: Add support Renesas Solutions R2D plus board sh: Add maintainer of R7780MP to MAINTAINER file sh: Remove disable_ctrlc function from R7780MP sh: Add support stat structure and stat.h
Yusuke Goda (3): sh: Add support SH7780 sh: Add support PCI of SuperH and SH7780 sh: Add support Renesas Solutions R7780MP
goda.yusuke (1): sh: Add support Renesas Solutions Migo-R board
Merged, thanks.
Best regards,
Wolfgang Denk
participants (2)
-
Nobuhiro Iwamatsu
-
Wolfgang Denk