public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PULL] u-boot-pxa.git/master
@ 2013-05-06  1:11 Marek Vasut
  2013-05-06 12:27 ` Tom Rini
  2013-05-11  6:14 ` Albert ARIBAUD
  0 siblings, 2 replies; 4+ messages in thread
From: Marek Vasut @ 2013-05-06  1:11 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PULL] u-boot-pxa.git/master
  2013-05-06  1:11 [U-Boot] [PULL] u-boot-pxa.git/master Marek Vasut
@ 2013-05-06 12:27 ` Tom Rini
  2013-05-06 12:59   ` Marek Vasut
  2013-05-11  6:14 ` Albert ARIBAUD
  1 sibling, 1 reply; 4+ messages in thread
From: Tom Rini @ 2013-05-06 12:27 UTC (permalink / raw)
  To: u-boot

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 :)

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130506/6380a7ad/attachment.pgp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PULL] u-boot-pxa.git/master
  2013-05-06 12:27 ` Tom Rini
@ 2013-05-06 12:59   ` Marek Vasut
  0 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2013-05-06 12:59 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PULL] u-boot-pxa.git/master
  2013-05-06  1:11 [U-Boot] [PULL] u-boot-pxa.git/master Marek Vasut
  2013-05-06 12:27 ` Tom Rini
@ 2013-05-11  6:14 ` Albert ARIBAUD
  1 sibling, 0 replies; 4+ messages in thread
From: Albert ARIBAUD @ 2013-05-11  6:14 UTC (permalink / raw)
  To: u-boot

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 at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

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

Amicalement,
-- 
Albert.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-05-11  6:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-06  1:11 [U-Boot] [PULL] u-boot-pxa.git/master Marek Vasut
2013-05-06 12:27 ` Tom Rini
2013-05-06 12:59   ` Marek Vasut
2013-05-11  6:14 ` Albert ARIBAUD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox