public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PULL] u-boot-pxa next
@ 2010-07-06  1:23 Marek Vasut
  2010-07-14 19:17 ` Wolfgang Denk
  0 siblings, 1 reply; 9+ messages in thread
From: Marek Vasut @ 2010-07-06  1:23 UTC (permalink / raw)
  To: u-boot

Hey, these are some new boards with PXA cpus. This is against u-boot.git master 
branch. Please pull, thanks.

-------------------------------------------------------------------------------

The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:

  Make sure that argv[] argument pointers are not modified. (2010-07-04 23:55:42 
+0200)

are available in the git repository at:
  git://git.denx.de/u-boot-pxa.git next-plat

Marek Vasut (5):
      Voipac PXA270 LCD Support
      PXA: Add support for LMS285GF05 into pxafb
      PXA: Voipac PXA270 Support
      PXA: Toradex Colibri PXA270 support
      PXA: ZipitZ2 support

 MAKEALL                                      |    4 +
 Makefile                                     |    9 +
 arch/arm/cpu/pxa/pxafb.c                     |   67 ++++++
 board/colibri_pxa270/Makefile                |   45 ++++
 board/colibri_pxa270/colibri_pxa270.c        |  118 +++++++++
 board/colibri_pxa270/config.mk               |    1 +
 board/colibri_pxa270/lowlevel_init.S         |   36 +++
 board/vpac270/Makefile                       |   48 ++++
 board/vpac270/config.mk                      |    1 +
 board/vpac270/lowlevel_init.S                |   40 +++
 board/vpac270/u-boot.lds                     |   55 +++++
 board/vpac270/vpac270.c                      |  127 ++++++++++
 board/zipitz2/Makefile                       |   54 +++++
 board/zipitz2/config.mk                      |    1 +
 board/zipitz2/lowlevel_init.S                |   40 +++
 board/zipitz2/u-boot.lds                     |   56 +++++
 board/zipitz2/zipitz2.c                      |  213 +++++++++++++++++
 boards.cfg                                   |    2 +
 include/configs/colibri_pxa270.h             |  283 ++++++++++++++++++++++
 include/configs/vpac270.h                    |  328 ++++++++++++++++++++++++++
 include/configs/zipitz2.h                    |  259 ++++++++++++++++++++
 onenand_ipl/board/vpac270/Makefile           |   83 +++++++
 onenand_ipl/board/vpac270/config.mk          |    1 +
 onenand_ipl/board/vpac270/lowlevel_init.S    |   34 +++
 onenand_ipl/board/vpac270/u-boot.onenand.lds |   51 ++++
 onenand_ipl/board/vpac270/vpac270.c          |   42 ++++
 26 files changed, 1998 insertions(+), 0 deletions(-)
 create mode 100644 board/colibri_pxa270/Makefile
 create mode 100644 board/colibri_pxa270/colibri_pxa270.c
 create mode 100644 board/colibri_pxa270/config.mk
 create mode 100644 board/colibri_pxa270/lowlevel_init.S
 create mode 100644 board/vpac270/Makefile
 create mode 100644 board/vpac270/config.mk
 create mode 100644 board/vpac270/lowlevel_init.S
 create mode 100644 board/vpac270/u-boot.lds
 create mode 100644 board/vpac270/vpac270.c
 create mode 100644 board/zipitz2/Makefile
 create mode 100644 board/zipitz2/config.mk
 create mode 100644 board/zipitz2/lowlevel_init.S
 create mode 100644 board/zipitz2/u-boot.lds
 create mode 100644 board/zipitz2/zipitz2.c
 create mode 100644 include/configs/colibri_pxa270.h
 create mode 100644 include/configs/vpac270.h
 create mode 100644 include/configs/zipitz2.h
 create mode 100644 onenand_ipl/board/vpac270/Makefile
 create mode 100644 onenand_ipl/board/vpac270/config.mk
 create mode 100644 onenand_ipl/board/vpac270/lowlevel_init.S
 create mode 100644 onenand_ipl/board/vpac270/u-boot.onenand.lds
 create mode 100644 onenand_ipl/board/vpac270/vpac270.c

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

* [U-Boot] [PULL] u-boot-pxa next
@ 2010-07-06  1:23 Marek Vasut
  2010-07-14 19:18 ` Wolfgang Denk
  0 siblings, 1 reply; 9+ messages in thread
From: Marek Vasut @ 2010-07-06  1:23 UTC (permalink / raw)
  To: u-boot

Hey, these are some additions and fixes. This is against u-boot.git master 
branch. Please pull, thanks.

-------------------------------------------------------------------------------

The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:

  Make sure that argv[] argument pointers are not modified. (2010-07-04 23:55:42 
+0200)

are available in the git repository at:
  git://git.denx.de/u-boot-pxa.git next

Compulab uboot (1):
      PXA: PXA3xx NAND Driver

Marek Vasut (4):
      Enable PXAFB for PXA27X and PXA3XX
      PXA: Add hardware init helper macros
      PXA: Add PWM2 and PWM3 regs to pxa-regs.h
      PXA: Add OneNAND booting support to start.S

 arch/arm/cpu/pxa/pxafb.c                 |    9 +-
 arch/arm/cpu/pxa/start.S                 |   48 ++-
 arch/arm/include/asm/arch-pxa/macro.h    |  324 ++++++++++++
 arch/arm/include/asm/arch-pxa/pxa-regs.h |   10 +-
 common/lcd.c                             |   12 +-
 drivers/mtd/nand/Makefile                |    1 +
 drivers/mtd/nand/pxa3xx_nand.c           |  848 ++++++++++++++++++++++++++++++
 include/lcd.h                            |    2 +-
 8 files changed, 1240 insertions(+), 14 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-pxa/macro.h
 create mode 100644 drivers/mtd/nand/pxa3xx_nand.c

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

* [U-Boot] [PULL] u-boot-pxa next
  2010-07-06  1:23 [U-Boot] [PULL] u-boot-pxa next Marek Vasut
@ 2010-07-14 19:17 ` Wolfgang Denk
  0 siblings, 0 replies; 9+ messages in thread
From: Wolfgang Denk @ 2010-07-14 19:17 UTC (permalink / raw)
  To: u-boot

Dear Marek Vasut,

In message <201007060323.39074.marek.vasut@gmail.com> you wrote:
> Hey, these are some new boards with PXA cpus. This is against u-boot.git master 
> branch. Please pull, thanks.
> 
> -------------------------------------------------------------------------------
> 
> The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
> 
>   Make sure that argv[] argument pointers are not modified. (2010-07-04 23:55:42 
> +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-pxa.git next-plat

OK, and what am I supposed to do with that now?

I have no idea what "next-plat" might be, and the subject line refers
to a "next" branch whhich we don;t have at this time of the release
schedule.

Please see http://www.denx.de/wiki/U-Boot/CustodianGitTrees :

... Branch usage convention:

    * master - Changes that the repository owner wishes to be pulled
      into the master u-boot repository. 

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 journaling file system can recover your data if the disk dies.
                                 - Steve Rago in <D4Cw1p.L9E@plc.com>

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

* [U-Boot] [PULL] u-boot-pxa next
  2010-07-06  1:23 Marek Vasut
@ 2010-07-14 19:18 ` Wolfgang Denk
  2010-07-14 19:31   ` Scott Wood
  0 siblings, 1 reply; 9+ messages in thread
From: Wolfgang Denk @ 2010-07-14 19:18 UTC (permalink / raw)
  To: u-boot

Dear Marek Vasut,

In message <201007060323.45787.marek.vasut@gmail.com> you wrote:
> Hey, these are some additions and fixes. This is against u-boot.git master 
> branch. Please pull, thanks.
> 
> -------------------------------------------------------------------------------
> 
> The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
> 
>   Make sure that argv[] argument pointers are not modified. (2010-07-04 23:55:42 
> +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-pxa.git next

I cannot make head nor tail of the next/next branch references.

What am I supposed to do with that? There is no next branch ATM.

> Compulab uboot (1):
>       PXA: PXA3xx NAND Driver

This has to go through the NAND custodian.

> Marek Vasut (4):
>       Enable PXAFB for PXA27X and PXA3XX
>       PXA: Add hardware init helper macros
>       PXA: Add PWM2 and PWM3 regs to pxa-regs.h
>       PXA: Add OneNAND booting support to start.S

Ditto.

>  arch/arm/cpu/pxa/pxafb.c                 |    9 +-
>  arch/arm/cpu/pxa/start.S                 |   48 ++-
>  arch/arm/include/asm/arch-pxa/macro.h    |  324 ++++++++++++
>  arch/arm/include/asm/arch-pxa/pxa-regs.h |   10 +-
>  common/lcd.c                             |   12 +-
>  drivers/mtd/nand/Makefile                |    1 +
>  drivers/mtd/nand/pxa3xx_nand.c           |  848 ++++++++++++++++++++++++++++++
>  include/lcd.h                            |    2 +-
>  8 files changed, 1240 insertions(+), 14 deletions(-)
>  create mode 100644 arch/arm/include/asm/arch-pxa/macro.h
>  create mode 100644 drivers/mtd/nand/pxa3xx_nand.c
> 

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
CAUTION:  The Mass of This Product Contains the Energy Equivalent  of
85 Million Tons of TNT per Net Ounce of Weight.

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

* [U-Boot] [PULL] u-boot-pxa next
  2010-07-14 19:18 ` Wolfgang Denk
@ 2010-07-14 19:31   ` Scott Wood
  2010-07-14 20:43     ` Wolfgang Denk
  2010-07-14 20:54     ` Marek Vasut
  0 siblings, 2 replies; 9+ messages in thread
From: Scott Wood @ 2010-07-14 19:31 UTC (permalink / raw)
  To: u-boot

On Wed, 14 Jul 2010 21:18:48 +0200
Wolfgang Denk <wd@denx.de> wrote:

> Dear Marek Vasut,
> 
> In message <201007060323.45787.marek.vasut@gmail.com> you wrote:
> > Hey, these are some additions and fixes. This is against u-boot.git master 
> > branch. Please pull, thanks.
> > 
> > -------------------------------------------------------------------------------
> > 
> > The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
> > 
> >   Make sure that argv[] argument pointers are not modified. (2010-07-04 23:55:42 
> > +0200)
> > 
> > are available in the git repository at:
> >   git://git.denx.de/u-boot-pxa.git next
> 
> I cannot make head nor tail of the next/next branch references.
> 
> What am I supposed to do with that? There is no next branch ATM.
> 
> > Compulab uboot (1):
> >       PXA: PXA3xx NAND Driver
> 
> This has to go through the NAND custodian.

I've provided comments on this patch.

> > Marek Vasut (4):
> >       Enable PXAFB for PXA27X and PXA3XX
> >       PXA: Add hardware init helper macros
> >       PXA: Add PWM2 and PWM3 regs to pxa-regs.h
> >       PXA: Add OneNAND booting support to start.S
> 
> Ditto.

This one is just touching ARM init code.  It isn't really NAND stuff
(or OneNAND, for that matter), NAND boot (or other such multistage
booting) is just the motivation for it.

-Scott

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

* [U-Boot] [PULL] u-boot-pxa next
  2010-07-14 19:31   ` Scott Wood
@ 2010-07-14 20:43     ` Wolfgang Denk
  2010-07-14 20:51       ` Scott Wood
  2010-07-14 20:54     ` Marek Vasut
  1 sibling, 1 reply; 9+ messages in thread
From: Wolfgang Denk @ 2010-07-14 20:43 UTC (permalink / raw)
  To: u-boot

Dear Scott Wood,

In message <20100714143151.3cea3468@schlenkerla.am.freescale.net> you wrote:
>
> > This has to go through the NAND custodian.
> 
> I've provided comments on this patch.

Sorry if I missed this.

> This one is just touching ARM init code.  It isn't really NAND stuff
> (or OneNAND, for that matter), NAND boot (or other such multistage
> booting) is just the motivation for it.

OK. But then, I do not see your Acked-By: message in Marex' tree...

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
If you think the problem is bad now, just wait until we've solved it.
                                                        Epstein's Law

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

* [U-Boot] [PULL] u-boot-pxa next
  2010-07-14 20:43     ` Wolfgang Denk
@ 2010-07-14 20:51       ` Scott Wood
  0 siblings, 0 replies; 9+ messages in thread
From: Scott Wood @ 2010-07-14 20:51 UTC (permalink / raw)
  To: u-boot

On Wed, 14 Jul 2010 22:43:49 +0200
Wolfgang Denk <wd@denx.de> wrote:

> Dear Scott Wood,
> 
> In message <20100714143151.3cea3468@schlenkerla.am.freescale.net> you wrote:
> >
> > > This has to go through the NAND custodian.
> > 
> > I've provided comments on this patch.
> 
> Sorry if I missed this.

http://lists.denx.de/pipermail/u-boot/2010-July/073761.html

> > This one is just touching ARM init code.  It isn't really NAND stuff
> > (or OneNAND, for that matter), NAND boot (or other such multistage
> > booting) is just the motivation for it.
> 
> OK. But then, I do not see your Acked-By: message in Marex' tree...

OK, here it is:
Acked-by: Scott Wood <scottwood@freescale.com>

-Scott

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

* [U-Boot] [PULL] u-boot-pxa next
  2010-07-14 19:31   ` Scott Wood
  2010-07-14 20:43     ` Wolfgang Denk
@ 2010-07-14 20:54     ` Marek Vasut
  2010-07-14 20:57       ` Marek Vasut
  1 sibling, 1 reply; 9+ messages in thread
From: Marek Vasut @ 2010-07-14 20:54 UTC (permalink / raw)
  To: u-boot

Dne St 14. ?ervence 2010 21:31:51 Scott Wood napsal(a):
> On Wed, 14 Jul 2010 21:18:48 +0200
> 
> Wolfgang Denk <wd@denx.de> wrote:
> > Dear Marek Vasut,
> > 
> > In message <201007060323.45787.marek.vasut@gmail.com> you wrote:
> > > Hey, these are some additions and fixes. This is against u-boot.git
> > > master branch. Please pull, thanks.
> > > 
> > > -----------------------------------------------------------------------
> > > --------
> > > 
> > > The following changes since commit 
54841ab50c20d6fa6c9cc3eb826989da3a22d934:
> > >   Make sure that argv[] argument pointers are not modified. (2010-07-04
> > >   23:55:42
> > > 
> > > +0200)
> > > 
> > > are available in the git repository at:
> > >   git://git.denx.de/u-boot-pxa.git next
> > 
> > I cannot make head nor tail of the next/next branch references.
> > 
> > What am I supposed to do with that? There is no next branch ATM.
> > 
> > > Compulab uboot (1):
> > >       PXA: PXA3xx NAND Driver
> > 
> > This has to go through the NAND custodian.
> 
> I've provided comments on this patch.
> 
> > > Marek Vasut (4):
> > >       Enable PXAFB for PXA27X and PXA3XX
> > >       PXA: Add hardware init helper macros
> > >       PXA: Add PWM2 and PWM3 regs to pxa-regs.h
> > >       PXA: Add OneNAND booting support to start.S
> > 
> > Ditto.
> 
> This one is just touching ARM init code.  It isn't really NAND stuff
> (or OneNAND, for that matter), NAND boot (or other such multistage
> booting) is just the motivation for it.

Can I get a formal Ack on this then? Thanks
> 
> -Scott

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

* [U-Boot] [PULL] u-boot-pxa next
  2010-07-14 20:54     ` Marek Vasut
@ 2010-07-14 20:57       ` Marek Vasut
  0 siblings, 0 replies; 9+ messages in thread
From: Marek Vasut @ 2010-07-14 20:57 UTC (permalink / raw)
  To: u-boot

Dne St 14. ?ervence 2010 22:54:55 Marek Vasut napsal(a):
> Dne St 14. ?ervence 2010 21:31:51 Scott Wood napsal(a):
> > On Wed, 14 Jul 2010 21:18:48 +0200
> > 
> > Wolfgang Denk <wd@denx.de> wrote:
> > > Dear Marek Vasut,
> > > 
> > > In message <201007060323.45787.marek.vasut@gmail.com> you wrote:
> > > > Hey, these are some additions and fixes. This is against u-boot.git
> > > > master branch. Please pull, thanks.
> > > > 
> > > > ---------------------------------------------------------------------
> > > > -- --------
> > > > 
> > > > The following changes since commit
> 
> 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
> > > >   Make sure that argv[] argument pointers are not modified.
> > > >   (2010-07-04 23:55:42
> > > > 
> > > > +0200)
> > > > 
> > > > are available in the git repository at:
> > > >   git://git.denx.de/u-boot-pxa.git next
> > > 
> > > I cannot make head nor tail of the next/next branch references.
> > > 
> > > What am I supposed to do with that? There is no next branch ATM.
> > > 
> > > > Compulab uboot (1):
> > > >       PXA: PXA3xx NAND Driver
> > > 
> > > This has to go through the NAND custodian.
> > 
> > I've provided comments on this patch.
> > 
> > > > Marek Vasut (4):
> > > >       Enable PXAFB for PXA27X and PXA3XX
> > > >       PXA: Add hardware init helper macros
> > > >       PXA: Add PWM2 and PWM3 regs to pxa-regs.h
> > > >       PXA: Add OneNAND booting support to start.S
> > > 
> > > Ditto.
> > 
> > This one is just touching ARM init code.  It isn't really NAND stuff
> > (or OneNAND, for that matter), NAND boot (or other such multistage
> > booting) is just the motivation for it.
> 
> Can I get a formal Ack on this then? Thanks

please ignore this
> 
> > -Scott

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

end of thread, other threads:[~2010-07-14 20:57 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-06  1:23 [U-Boot] [PULL] u-boot-pxa next Marek Vasut
2010-07-14 19:17 ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2010-07-06  1:23 Marek Vasut
2010-07-14 19:18 ` Wolfgang Denk
2010-07-14 19:31   ` Scott Wood
2010-07-14 20:43     ` Wolfgang Denk
2010-07-14 20:51       ` Scott Wood
2010-07-14 20:54     ` Marek Vasut
2010-07-14 20:57       ` Marek Vasut

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