mbox

[U-Boot,PULL] u-boot-pxa.git/master

Message ID 201305060311.44958.marex@denx.de
State Accepted
Delegated to: Albert ARIBAUD
Headers show

Pull-request

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

Message

Marek Vasut May 6, 2013, 1:11 a.m. UTC
The following changes since commit 5ed6f447af60aabd2669d913f673793c1ce48f47:

  P1022DS: Set CONFIG_SPL_MAX_SIZE directly (2013-05-03 09:19:43 -0400)

are available in the git repository at:

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

for you to fetch changes up to 66a62ce0dc48d2319938c72f34a562f519c5d5c2:

  h2200: Add board reset support (2013-05-05 23:47:05 +0200)

----------------------------------------------------------------
Mike Dunn (5):
      lib: import bitrev library from the linux kernel
      pxa_lcd: add the ACX544AKN lcd device
      pxa_lcd: make lcd_enable() a weak pointer
      pxa27x_udc: remove call to unimplemented set_GPIO_mode()
      mtd: nand: add driver for diskonchip g4 nand flash

Łukasz Dałek (2):
      pxa: Add weak attribute to reset_cpu() function
      h2200: Add board reset support

 arch/arm/cpu/pxa/pxa2xx.c                |    2 +-
 arch/arm/include/asm/arch-pxa/hardware.h |   11 --
 board/h2200/h2200.c                      |    9 ++
 drivers/mtd/nand/Makefile                |    2 +
 drivers/mtd/nand/docg4.c                 | 1028 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/mtd/nand/docg4_spl.c             |  222 ++++++++++++++++++++++++++++
 drivers/usb/gadget/pxa27x_udc.c          |    4 +-
 drivers/video/pxa_lcd.c                  |   34 ++++-
 include/linux/bitrev.h                   |   23 +++
 include/linux/mtd/docg4.h                |  134 +++++++++++++++++
 lib/Makefile                             |    1 +
 lib/bitrev.c                             |   59 ++++++++
 12 files changed, 1515 insertions(+), 14 deletions(-)
 create mode 100644 drivers/mtd/nand/docg4.c
 create mode 100644 drivers/mtd/nand/docg4_spl.c
 create mode 100644 include/linux/bitrev.h
 create mode 100644 include/linux/mtd/docg4.h
 create mode 100644 lib/bitrev.c

Comments

Tom Rini May 6, 2013, 12:27 p.m. UTC | #1
On Mon, May 06, 2013 at 03:11:44AM +0200, Marek Vasut wrote:

> The following changes since commit 5ed6f447af60aabd2669d913f673793c1ce48f47:
> 
>   P1022DS: Set CONFIG_SPL_MAX_SIZE directly (2013-05-03 09:19:43 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-pxa.git master
> 
> for you to fetch changes up to 66a62ce0dc48d2319938c72f34a562f519c5d5c2:
> 
>   h2200: Add board reset support (2013-05-05 23:47:05 +0200)
> 
> ----------------------------------------------------------------
> Mike Dunn (5):
>       lib: import bitrev library from the linux kernel
>       pxa_lcd: add the ACX544AKN lcd device
>       pxa_lcd: make lcd_enable() a weak pointer
>       pxa27x_udc: remove call to unimplemented set_GPIO_mode()
>       mtd: nand: add driver for diskonchip g4 nand flash
> 
> ??ukasz Da??ek (2):
>       pxa: Add weak attribute to reset_cpu() function
>       h2200: Add board reset support
> 
>  arch/arm/cpu/pxa/pxa2xx.c                |    2 +-
>  arch/arm/include/asm/arch-pxa/hardware.h |   11 --
>  board/h2200/h2200.c                      |    9 ++
>  drivers/mtd/nand/Makefile                |    2 +
>  drivers/mtd/nand/docg4.c                 | 1028 
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/mtd/nand/docg4_spl.c             |  222 ++++++++++++++++++++++++++++
>  drivers/usb/gadget/pxa27x_udc.c          |    4 +-
>  drivers/video/pxa_lcd.c                  |   34 ++++-
>  include/linux/bitrev.h                   |   23 +++
>  include/linux/mtd/docg4.h                |  134 +++++++++++++++++
>  lib/Makefile                             |    1 +
>  lib/bitrev.c                             |   59 ++++++++
>  12 files changed, 1515 insertions(+), 14 deletions(-)
>  create mode 100644 drivers/mtd/nand/docg4.c
>  create mode 100644 drivers/mtd/nand/docg4_spl.c
>  create mode 100644 include/linux/bitrev.h
>  create mode 100644 include/linux/mtd/docg4.h
>  create mode 100644 lib/bitrev.c

Ahem, this is for Albert :)
Marek Vasut May 6, 2013, 12:59 p.m. UTC | #2
Dear Tom Rini,

> On Mon, May 06, 2013 at 03:11:44AM +0200, Marek Vasut wrote:
> > The following changes since commit 5ed6f447af60aabd2669d913f673793c1ce48f47:
> >   P1022DS: Set CONFIG_SPL_MAX_SIZE directly (2013-05-03 09:19:43 -0400)
> > 
> > are available in the git repository at:
> >   git://git.denx.de/u-boot-pxa.git master
> > 
> > for you to fetch changes up to 66a62ce0dc48d2319938c72f34a562f519c5d5c2:
> >   h2200: Add board reset support (2013-05-05 23:47:05 +0200)
> > 
> > ----------------------------------------------------------------
> > 
> > Mike Dunn (5):
> >       lib: import bitrev library from the linux kernel
> >       pxa_lcd: add the ACX544AKN lcd device
> >       pxa_lcd: make lcd_enable() a weak pointer
> >       pxa27x_udc: remove call to unimplemented set_GPIO_mode()
> >       mtd: nand: add driver for diskonchip g4 nand flash
> > 
> > ??ukasz Da??ek (2):
> >       pxa: Add weak attribute to reset_cpu() function
> >       h2200: Add board reset support
> >  
> >  arch/arm/cpu/pxa/pxa2xx.c                |    2 +-
> >  arch/arm/include/asm/arch-pxa/hardware.h |   11 --
> >  board/h2200/h2200.c                      |    9 ++
> >  drivers/mtd/nand/Makefile                |    2 +
> >  drivers/mtd/nand/docg4.c                 | 1028
> > 
> > +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> > +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> > 
> >  drivers/mtd/nand/docg4_spl.c             |  222
> >  ++++++++++++++++++++++++++++ drivers/usb/gadget/pxa27x_udc.c          |
> >     4 +-
> >  drivers/video/pxa_lcd.c                  |   34 ++++-
> >  include/linux/bitrev.h                   |   23 +++
> >  include/linux/mtd/docg4.h                |  134 +++++++++++++++++
> >  lib/Makefile                             |    1 +
> >  lib/bitrev.c                             |   59 ++++++++
> >  12 files changed, 1515 insertions(+), 14 deletions(-)
> >  create mode 100644 drivers/mtd/nand/docg4.c
> >  create mode 100644 drivers/mtd/nand/docg4_spl.c
> >  create mode 100644 include/linux/bitrev.h
> >  create mode 100644 include/linux/mtd/docg4.h
> >  create mode 100644 lib/bitrev.c
> 
> Ahem, this is for Albert :)

Yes it is, my bad.

Best regards,
Marek Vasut
Albert ARIBAUD May 11, 2013, 6:14 a.m. UTC | #3
Hi Marek,

On Mon, 6 May 2013 03:11:44 +0200, Marek Vasut <marex@denx.de> wrote:

> The following changes since commit 5ed6f447af60aabd2669d913f673793c1ce48f47:
> 
>   P1022DS: Set CONFIG_SPL_MAX_SIZE directly (2013-05-03 09:19:43 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-pxa.git master
> 
> for you to fetch changes up to 66a62ce0dc48d2319938c72f34a562f519c5d5c2:
> 
>   h2200: Add board reset support (2013-05-05 23:47:05 +0200)
> 
> ----------------------------------------------------------------
> Mike Dunn (5):
>       lib: import bitrev library from the linux kernel
>       pxa_lcd: add the ACX544AKN lcd device
>       pxa_lcd: make lcd_enable() a weak pointer
>       pxa27x_udc: remove call to unimplemented set_GPIO_mode()
>       mtd: nand: add driver for diskonchip g4 nand flash
> 
> Łukasz Dałek (2):
>       pxa: Add weak attribute to reset_cpu() function
>       h2200: Add board reset support
> 
>  arch/arm/cpu/pxa/pxa2xx.c                |    2 +-
>  arch/arm/include/asm/arch-pxa/hardware.h |   11 --
>  board/h2200/h2200.c                      |    9 ++
>  drivers/mtd/nand/Makefile                |    2 +
>  drivers/mtd/nand/docg4.c                 | 1028 
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/mtd/nand/docg4_spl.c             |  222 ++++++++++++++++++++++++++++
>  drivers/usb/gadget/pxa27x_udc.c          |    4 +-
>  drivers/video/pxa_lcd.c                  |   34 ++++-
>  include/linux/bitrev.h                   |   23 +++
>  include/linux/mtd/docg4.h                |  134 +++++++++++++++++
>  lib/Makefile                             |    1 +
>  lib/bitrev.c                             |   59 ++++++++
>  12 files changed, 1515 insertions(+), 14 deletions(-)
>  create mode 100644 drivers/mtd/nand/docg4.c
>  create mode 100644 drivers/mtd/nand/docg4_spl.c
>  create mode 100644 include/linux/bitrev.h
>  create mode 100644 include/linux/mtd/docg4.h
>  create mode 100644 lib/bitrev.c
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

Applied to u-boot-arm/master, thanks!

Amicalement,