[U-Boot] Pull request: u-boot-sh

Wolfgang Denk wd at denx.de
Mon Sep 1 00:04:04 CEST 2008


Dear Nobuhiro Iwamatsu,

In message <20080830095157.247fdb2b.iwamatsu at nigauri.org> you wrote:
> Dear Wolfgang,
> 
> The following changes since commit 33aa4eac66b71c797bbc13b3afe432a2132947d4:
>   Wolfgang Denk (1):
>         Merge branch 'master' of /home/wd/git/u-boot/custodians
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-sh.git master
> 
> Nobuhiro Iwamatsu (8):
>       sh: Add support SH2/SH2A which is CPU of Renesas Technology
>       sh: Add support Renesas SH7203 processor
>       sh: Renesas RSK+ 7203 board support
>       sh: add support Renesas SH7723
>       sh: Renesas Solutions AP325RXA board support
>       sh: Fix compile error sh7785lcr board
>       sh: Fix compile error rsk7203 board
>       sh: Add support sh2 to MAKEALL
> 
> Yoshihiro Shimoda (2):
>       sh: add support for SH7785
>       sh: Renesas R0P7785LC0011RL board support
> 
>  MAINTAINERS                     |    8 +
>  MAKEALL                         |    8 +-
>  Makefile                        |   18 ++
>  board/ap325rxa/Makefile         |   51 ++++++
>  board/ap325rxa/ap325rxa.c       |  162 ++++++++++++++++++
>  board/ap325rxa/config.mk        |   26 +++
>  board/ap325rxa/cpld-ap325rxa.c  |  206 +++++++++++++++++++++++
>  board/ap325rxa/lowlevel_init.S  |  243 +++++++++++++++++++++++++++
>  board/ap325rxa/u-boot.lds       |  106 ++++++++++++
>  board/rsk7203/Makefile          |   45 +++++
>  board/rsk7203/config.mk         |   28 +++
>  board/rsk7203/lowlevel_init.S   |  265 +++++++++++++++++++++++++++++
>  board/rsk7203/rsk7203.c         |   50 ++++++
>  board/rsk7203/u-boot.lds        |  102 ++++++++++++
>  board/sh7785lcr/Makefile        |   42 +++++
>  board/sh7785lcr/config.mk       |   26 +++
>  board/sh7785lcr/lowlevel_init.S |  318 +++++++++++++++++++++++++++++++++++
>  board/sh7785lcr/rtl8169.h       |   58 +++++++
>  board/sh7785lcr/rtl8169_mac.c   |  349 +++++++++++++++++++++++++++++++++++++++
>  board/sh7785lcr/selfcheck.c     |  173 +++++++++++++++++++
>  board/sh7785lcr/sh7785lcr.c     |   51 ++++++
>  board/sh7785lcr/u-boot.lds      |   97 +++++++++++
>  cpu/sh2/Makefile                |   46 +++++
>  cpu/sh2/cache.c                 |  112 +++++++++++++
>  cpu/sh2/config.mk               |   29 ++++
>  cpu/sh2/cpu.c                   |   98 +++++++++++
>  cpu/sh2/interrupts.c            |   39 +++++
>  cpu/sh2/start.S                 |   84 ++++++++++
>  cpu/sh2/time.c                  |  111 +++++++++++++
>  cpu/sh2/watchdog.c              |   33 ++++
>  doc/README.sh7785lcr            |   83 +++++++++
>  drivers/serial/serial_sh.c      |   49 ++++--
>  examples/Makefile               |    3 +
>  include/asm-sh/cpu_sh2.h        |   40 +++++
>  include/asm-sh/cpu_sh4.h        |    4 +
>  include/asm-sh/cpu_sh7203.h     |   41 +++++
>  include/asm-sh/cpu_sh7723.h     |  209 +++++++++++++++++++++++
>  include/asm-sh/cpu_sh7785.h     |  156 +++++++++++++++++
>  include/asm-sh/processor.h      |    5 +-
>  include/configs/ap325rxa.h      |  177 ++++++++++++++++++++
>  include/configs/rsk7203.h       |  107 ++++++++++++
>  include/configs/sh7785lcr.h     |  167 +++++++++++++++++++
>  42 files changed, 4010 insertions(+), 15 deletions(-)
>  create mode 100644 board/ap325rxa/Makefile
>  create mode 100644 board/ap325rxa/ap325rxa.c
>  create mode 100644 board/ap325rxa/config.mk
>  create mode 100644 board/ap325rxa/cpld-ap325rxa.c
>  create mode 100644 board/ap325rxa/lowlevel_init.S
>  create mode 100644 board/ap325rxa/u-boot.lds
>  create mode 100644 board/rsk7203/Makefile
>  create mode 100644 board/rsk7203/config.mk
>  create mode 100644 board/rsk7203/lowlevel_init.S
>  create mode 100644 board/rsk7203/rsk7203.c
>  create mode 100644 board/rsk7203/u-boot.lds
>  create mode 100644 board/sh7785lcr/Makefile
>  create mode 100644 board/sh7785lcr/config.mk
>  create mode 100644 board/sh7785lcr/lowlevel_init.S
>  create mode 100644 board/sh7785lcr/rtl8169.h
>  create mode 100644 board/sh7785lcr/rtl8169_mac.c
>  create mode 100644 board/sh7785lcr/selfcheck.c
>  create mode 100644 board/sh7785lcr/sh7785lcr.c
>  create mode 100644 board/sh7785lcr/u-boot.lds
>  create mode 100644 cpu/sh2/Makefile
>  create mode 100644 cpu/sh2/cache.c
>  create mode 100644 cpu/sh2/config.mk
>  create mode 100644 cpu/sh2/cpu.c
>  create mode 100644 cpu/sh2/interrupts.c
>  create mode 100644 cpu/sh2/start.S
>  create mode 100644 cpu/sh2/time.c
>  create mode 100644 cpu/sh2/watchdog.c
>  create mode 100644 doc/README.sh7785lcr
>  create mode 100644 include/asm-sh/cpu_sh2.h
>  create mode 100644 include/asm-sh/cpu_sh7203.h
>  create mode 100644 include/asm-sh/cpu_sh7723.h
>  create mode 100644 include/asm-sh/cpu_sh7785.h
>  create mode 100644 include/configs/ap325rxa.h
>  create mode 100644 include/configs/rsk7203.h
>  create mode 100644 include/configs/sh7785lcr.h

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
No, I'm not going to explain it. If you  can't  figure  it  out,  you
didn't want to know anyway... :-)
                   - Larry Wall in <1991Aug7.180856.2854 at netlabs.com>


More information about the U-Boot mailing list