mbox

[U-Boot,GIT,PULL] MIPS patch

Message ID 4E95AB8A.2050901@pobox.com
State Accepted
Headers show

Pull-request

git://git.denx.de/u-boot-mips.git master

Message

Shinya Kuribayashi Oct. 12, 2011, 3 p.m. UTC
Hi Wolfgang,

please pull the following patchset from Xiangfu introducing NanoNote
initial support.  The device is one of most easy-to-get MIPS devices
and active people and communities are there in the world.  The Linux
kernel also has been supporting it since v2.6.36.  It's about time to
support in U-Boot.

  Shinya


The following changes since commit 0841ca90f22d73b0ea4642ef1ce33d879bb2f3ff:

  arm920t/s3c24x0/usb_ohci.c: fix warning: variable ... set but not used (2011-10-09 23:24:50 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-mips.git master

Xiangfu Liu (3):
      MIPS: Ingenic XBurst Jz4740 processor support
      MIPS: Jz4740: Add NAND driver
      MIPS: Jz4740: Add qi_lb60 board support

 MAINTAINERS                         |    4 +
 MAKEALL                             |    4 +-
 README                              |    1 +
 arch/mips/cpu/xburst/Makefile       |   49 ++
 arch/mips/cpu/xburst/config.mk      |   24 +
 arch/mips/cpu/xburst/cpu.c          |  152 +++++
 arch/mips/cpu/xburst/jz4740.c       |  248 ++++++++
 arch/mips/cpu/xburst/jz_serial.c    |  114 ++++
 arch/mips/cpu/xburst/start.S        |  171 ++++++
 arch/mips/cpu/xburst/timer.c        |  162 +++++
 arch/mips/include/asm/global_data.h |   11 +
 arch/mips/include/asm/jz4740.h      | 1150 +++++++++++++++++++++++++++++++++++
 board/qi/qi_lb60/Makefile           |   45 ++
 board/qi/qi_lb60/config.mk          |   31 +
 board/qi/qi_lb60/qi_lb60.c          |  104 ++++
 board/qi/qi_lb60/u-boot.lds         |   61 ++
 boards.cfg                          |    1 +
 drivers/mtd/nand/Makefile           |    1 +
 drivers/mtd/nand/jz4740_nand.c      |  261 ++++++++
 include/configs/qi_lb60.h           |  211 +++++++
 20 files changed, 2804 insertions(+), 1 deletions(-)
 create mode 100644 arch/mips/cpu/xburst/Makefile
 create mode 100644 arch/mips/cpu/xburst/config.mk
 create mode 100644 arch/mips/cpu/xburst/cpu.c
 create mode 100644 arch/mips/cpu/xburst/jz4740.c
 create mode 100644 arch/mips/cpu/xburst/jz_serial.c
 create mode 100644 arch/mips/cpu/xburst/start.S
 create mode 100644 arch/mips/cpu/xburst/timer.c
 create mode 100644 arch/mips/include/asm/jz4740.h
 create mode 100644 board/qi/qi_lb60/Makefile
 create mode 100644 board/qi/qi_lb60/config.mk
 create mode 100644 board/qi/qi_lb60/qi_lb60.c
 create mode 100644 board/qi/qi_lb60/u-boot.lds
 create mode 100644 drivers/mtd/nand/jz4740_nand.c
 create mode 100644 include/configs/qi_lb60.h

Comments

Wolfgang Denk Oct. 12, 2011, 8:48 p.m. UTC | #1
Dear Shinya Kuribayashi,

In message <4E95AB8A.2050901@pobox.com> you wrote:
> Hi Wolfgang,
> 
> please pull the following patchset from Xiangfu introducing NanoNote
> initial support.  The device is one of most easy-to-get MIPS devices
> and active people and communities are there in the world.  The Linux
> kernel also has been supporting it since v2.6.36.  It's about time to
> support in U-Boot.
> 
>   Shinya
> 
> 
> The following changes since commit 0841ca90f22d73b0ea4642ef1ce33d879bb2f3ff:
> 
>   arm920t/s3c24x0/usb_ohci.c: fix warning: variable ... set but not used (2011-10-09 23:24:50 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mips.git master
> 
> Xiangfu Liu (3):
>       MIPS: Ingenic XBurst Jz4740 processor support
>       MIPS: Jz4740: Add NAND driver
>       MIPS: Jz4740: Add qi_lb60 board support
> 
>  MAINTAINERS                         |    4 +
>  MAKEALL                             |    4 +-
>  README                              |    1 +
>  arch/mips/cpu/xburst/Makefile       |   49 ++
>  arch/mips/cpu/xburst/config.mk      |   24 +
>  arch/mips/cpu/xburst/cpu.c          |  152 +++++
>  arch/mips/cpu/xburst/jz4740.c       |  248 ++++++++
>  arch/mips/cpu/xburst/jz_serial.c    |  114 ++++
>  arch/mips/cpu/xburst/start.S        |  171 ++++++
>  arch/mips/cpu/xburst/timer.c        |  162 +++++
>  arch/mips/include/asm/global_data.h |   11 +
>  arch/mips/include/asm/jz4740.h      | 1150 +++++++++++++++++++++++++++++++++++
>  board/qi/qi_lb60/Makefile           |   45 ++
>  board/qi/qi_lb60/config.mk          |   31 +
>  board/qi/qi_lb60/qi_lb60.c          |  104 ++++
>  board/qi/qi_lb60/u-boot.lds         |   61 ++
>  boards.cfg                          |    1 +
>  drivers/mtd/nand/Makefile           |    1 +
>  drivers/mtd/nand/jz4740_nand.c      |  261 ++++++++
>  include/configs/qi_lb60.h           |  211 +++++++
>  20 files changed, 2804 insertions(+), 1 deletions(-)
>  create mode 100644 arch/mips/cpu/xburst/Makefile
>  create mode 100644 arch/mips/cpu/xburst/config.mk
>  create mode 100644 arch/mips/cpu/xburst/cpu.c
>  create mode 100644 arch/mips/cpu/xburst/jz4740.c
>  create mode 100644 arch/mips/cpu/xburst/jz_serial.c
>  create mode 100644 arch/mips/cpu/xburst/start.S
>  create mode 100644 arch/mips/cpu/xburst/timer.c
>  create mode 100644 arch/mips/include/asm/jz4740.h
>  create mode 100644 board/qi/qi_lb60/Makefile
>  create mode 100644 board/qi/qi_lb60/config.mk
>  create mode 100644 board/qi/qi_lb60/qi_lb60.c
>  create mode 100644 board/qi/qi_lb60/u-boot.lds
>  create mode 100644 drivers/mtd/nand/jz4740_nand.c
>  create mode 100644 include/configs/qi_lb60.h

Applied, thanks.

Best regards,

Wolfgang Denk