All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
@ 2011-07-11 18:25 Kumar Gala
  2011-07-11 20:12 ` Wolfgang Denk
  0 siblings, 1 reply; 20+ messages in thread
From: Kumar Gala @ 2011-07-11 18:25 UTC (permalink / raw)
  To: u-boot

The following changes since commit 810cb19003ffe0115d10700fc512a2a743916f20:

  MPC83XX: Fix PCI express clock setup (2011-07-06 19:09:28 -0500)

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

Felix Radensky (1):
      powerpc/85xx: Fix pin muxing for second USB controller

Kumar Gala (4):
      powerpc/85xx: Fix compile errors if CONFIG_SYS_{B,Q}MAN_MEM_PHYS aren't set
      powerpc/85xx: Fix compile errors if CONFIG_SYS_{BR,OR}0_PRELIM aren't set
      powerpc/85xx: Fix compile errors if CONFIG_SYS_DPAA_QBMAN isn't set
      powerpc/85xx: Add P2041 processor support

Mingkai Hu (1):
      powerpc/p2040: Add various p2040 specific information

Ramneek Mehresh (5):
      qoriq/p1_p2_rdb: Add Dual Role USB support macro for P1020RDB
      powerpc/8xxx: Update USB mode device tree fixup
      powerpc/85xx: Specify hwconfig usage for USB controller
      qoriq/p1_p2_rdb: USB device-tree fixups for P1020
      powerpc/85xx: Add default usb mode and phy type to hwconfig

Roy Zang (1):
      powerpc/85xx: Add basic support for P1023RDS board

Shaohui Xie (1):
      powerpc/85xx: Add NAND boot support for P3041/P5020DS

Timur Tabi (2):
      powerpc/86xx: display boot device and bank on the MPC8610 HPCD
      powerpc/85xx: remove SERDES4 soft-reset work-around

York Sun (11):
      powerpc/mpc8xxx: adjust DDR burst length and chop accroding to sdram width
      powerpc/mpc8xxx: check SPD length before using part number
      powerpc/mpc8xxx: Add 16-bit support for DDR3
      Adding more SPD registers
      powerpc/mpc8xxx: Enable calculation for fixed DDR chips
      powerpc/mpc8xxx: Adding fallback to raw timing on supported boards
      powerpc/mpc8xxx: fix DDR data width checking
      powerpc/corenet_ds: Fix RCW overriding for RDIMM
      powerpc/mpc85xx: Display a warning for unsupported DDR data rates
      powerpc/mpc8xxx: Allow override DDR read-to-write turnaround time
      powerpc/corenet_ds: add back buffer write for NOR flash

 MAINTAINERS                                     |    1 +
 README                                          |    6 +
 arch/powerpc/cpu/mpc85xx/Makefile               |    6 +
 arch/powerpc/cpu/mpc85xx/cpu.c                  |    4 +-
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c   |   71 ++-
 arch/powerpc/cpu/mpc85xx/p2040_ids.c            |  109 +++++
 arch/powerpc/cpu/mpc85xx/p2040_serdes.c         |   24 +
 arch/powerpc/cpu/mpc85xx/p3041_ids.c            |   11 +-
 arch/powerpc/cpu/mpc85xx/p4080_ids.c            |   13 +-
 arch/powerpc/cpu/mpc85xx/p5020_ids.c            |   11 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c                  |    2 +
 arch/powerpc/cpu/mpc8xxx/ddr/Makefile           |   13 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c        |    3 +
 arch/powerpc/cpu/mpc8xxx/ddr/ddr.h              |    7 +
 arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c |    3 +-
 arch/powerpc/cpu/mpc8xxx/ddr/main.c             |   34 ++-
 arch/powerpc/cpu/mpc8xxx/ddr/options.c          |   44 ++-
 arch/powerpc/cpu/mpc8xxx/fdt.c                  |   77 +++-
 arch/powerpc/cpu/mpc8xxx/fsl_lbc.c              |    2 +
 arch/powerpc/include/asm/config_mpc85xx.h       |   16 +
 arch/powerpc/include/asm/fsl_ddr_sdram.h        |    6 +
 arch/powerpc/include/asm/immap_85xx.h           |    2 +-
 arch/powerpc/include/asm/processor.h            |    2 +
 board/freescale/corenet_ds/corenet_ds.c         |    2 +
 board/freescale/corenet_ds/ddr.c                |    8 +-
 board/freescale/corenet_ds/law.c                |    4 +
 board/freescale/corenet_ds/tlb.c                |    4 +
 board/freescale/mpc8572ds/ddr.c                 |    8 +-
 board/freescale/mpc8610hpcd/mpc8610hpcd.c       |   25 +-
 board/freescale/mpc8641hpcn/ddr.c               |    5 +
 board/freescale/p1023rds/Makefile               |   38 ++
 board/freescale/p1023rds/bcsr.h                 |   53 +++
 board/freescale/p1023rds/law.c                  |   35 ++
 board/freescale/p1023rds/p1023rds.c             |  162 +++++++
 board/freescale/p1023rds/tlb.c                  |  118 +++++
 board/freescale/p1_p2_rdb/p1_p2_rdb.c           |   47 ++
 board/freescale/p2020ds/ddr.c                   |    6 +
 board/xes/xpedite550x/ddr.c                     |    6 +
 boards.cfg                                      |    4 +
 doc/README.fsl-hwconfig                         |   25 +
 doc/README.p1023rds                             |  101 ++++
 include/configs/MPC8536DS.h                     |    3 +-
 include/configs/P1023RDS.h                      |  562 +++++++++++++++++++++++
 include/configs/P1_P2_RDB.h                     |    3 +-
 include/configs/P2020DS.h                       |    3 +-
 include/configs/corenet_ds.h                    |   39 ++-
 include/ddr_spd.h                               |    4 +-
 nand_spl/board/freescale/p1023rds/Makefile      |  132 ++++++
 nand_spl/board/freescale/p1023rds/nand_boot.c   |   99 ++++
 49 files changed, 1888 insertions(+), 75 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/p2040_ids.c
 create mode 100644 board/freescale/p1023rds/Makefile
 create mode 100644 board/freescale/p1023rds/bcsr.h
 create mode 100644 board/freescale/p1023rds/law.c
 create mode 100644 board/freescale/p1023rds/p1023rds.c
 create mode 100644 board/freescale/p1023rds/tlb.c
 create mode 100644 doc/README.p1023rds
 create mode 100644 include/configs/P1023RDS.h
 create mode 100644 nand_spl/board/freescale/p1023rds/Makefile
 create mode 100644 nand_spl/board/freescale/p1023rds/nand_boot.c

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
  2011-07-11 18:25 [U-Boot] [GIT pull] Please pull u-boot-mpc85xx Kumar Gala
@ 2011-07-11 20:12 ` Wolfgang Denk
  0 siblings, 0 replies; 20+ messages in thread
From: Wolfgang Denk @ 2011-07-11 20:12 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1107111324480.27526@right.am.freescale.net> you wrote:
> The following changes since commit 810cb19003ffe0115d10700fc512a2a743916f20:
> 
>   MPC83XX: Fix PCI express clock setup (2011-07-06 19:09:28 -0500)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Felix Radensky (1):
>       powerpc/85xx: Fix pin muxing for second USB controller
> 
> Kumar Gala (4):
>       powerpc/85xx: Fix compile errors if CONFIG_SYS_{B,Q}MAN_MEM_PHYS aren't set
>       powerpc/85xx: Fix compile errors if CONFIG_SYS_{BR,OR}0_PRELIM aren't set
>       powerpc/85xx: Fix compile errors if CONFIG_SYS_DPAA_QBMAN isn't set
>       powerpc/85xx: Add P2041 processor support
> 
> Mingkai Hu (1):
>       powerpc/p2040: Add various p2040 specific information
> 
> Ramneek Mehresh (5):
>       qoriq/p1_p2_rdb: Add Dual Role USB support macro for P1020RDB
>       powerpc/8xxx: Update USB mode device tree fixup
>       powerpc/85xx: Specify hwconfig usage for USB controller
>       qoriq/p1_p2_rdb: USB device-tree fixups for P1020
>       powerpc/85xx: Add default usb mode and phy type to hwconfig
> 
> Roy Zang (1):
>       powerpc/85xx: Add basic support for P1023RDS board
> 
> Shaohui Xie (1):
>       powerpc/85xx: Add NAND boot support for P3041/P5020DS
> 
> Timur Tabi (2):
>       powerpc/86xx: display boot device and bank on the MPC8610 HPCD
>       powerpc/85xx: remove SERDES4 soft-reset work-around
> 
> York Sun (11):
>       powerpc/mpc8xxx: adjust DDR burst length and chop accroding to sdram width
>       powerpc/mpc8xxx: check SPD length before using part number
>       powerpc/mpc8xxx: Add 16-bit support for DDR3
>       Adding more SPD registers
>       powerpc/mpc8xxx: Enable calculation for fixed DDR chips
>       powerpc/mpc8xxx: Adding fallback to raw timing on supported boards
>       powerpc/mpc8xxx: fix DDR data width checking
>       powerpc/corenet_ds: Fix RCW overriding for RDIMM
>       powerpc/mpc85xx: Display a warning for unsupported DDR data rates
>       powerpc/mpc8xxx: Allow override DDR read-to-write turnaround time
>       powerpc/corenet_ds: add back buffer write for NOR flash
> 
>  MAINTAINERS                                     |    1 +
>  README                                          |    6 +
>  arch/powerpc/cpu/mpc85xx/Makefile               |    6 +
>  arch/powerpc/cpu/mpc85xx/cpu.c                  |    4 +-
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c   |   71 ++-
>  arch/powerpc/cpu/mpc85xx/p2040_ids.c            |  109 +++++
>  arch/powerpc/cpu/mpc85xx/p2040_serdes.c         |   24 +
>  arch/powerpc/cpu/mpc85xx/p3041_ids.c            |   11 +-
>  arch/powerpc/cpu/mpc85xx/p4080_ids.c            |   13 +-
>  arch/powerpc/cpu/mpc85xx/p5020_ids.c            |   11 +-
>  arch/powerpc/cpu/mpc8xxx/cpu.c                  |    2 +
>  arch/powerpc/cpu/mpc8xxx/ddr/Makefile           |   13 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c        |    3 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr.h              |    7 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c |    3 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c             |   34 ++-
>  arch/powerpc/cpu/mpc8xxx/ddr/options.c          |   44 ++-
>  arch/powerpc/cpu/mpc8xxx/fdt.c                  |   77 +++-
>  arch/powerpc/cpu/mpc8xxx/fsl_lbc.c              |    2 +
>  arch/powerpc/include/asm/config_mpc85xx.h       |   16 +
>  arch/powerpc/include/asm/fsl_ddr_sdram.h        |    6 +
>  arch/powerpc/include/asm/immap_85xx.h           |    2 +-
>  arch/powerpc/include/asm/processor.h            |    2 +
>  board/freescale/corenet_ds/corenet_ds.c         |    2 +
>  board/freescale/corenet_ds/ddr.c                |    8 +-
>  board/freescale/corenet_ds/law.c                |    4 +
>  board/freescale/corenet_ds/tlb.c                |    4 +
>  board/freescale/mpc8572ds/ddr.c                 |    8 +-
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c       |   25 +-
>  board/freescale/mpc8641hpcn/ddr.c               |    5 +
>  board/freescale/p1023rds/Makefile               |   38 ++
>  board/freescale/p1023rds/bcsr.h                 |   53 +++
>  board/freescale/p1023rds/law.c                  |   35 ++
>  board/freescale/p1023rds/p1023rds.c             |  162 +++++++
>  board/freescale/p1023rds/tlb.c                  |  118 +++++
>  board/freescale/p1_p2_rdb/p1_p2_rdb.c           |   47 ++
>  board/freescale/p2020ds/ddr.c                   |    6 +
>  board/xes/xpedite550x/ddr.c                     |    6 +
>  boards.cfg                                      |    4 +
>  doc/README.fsl-hwconfig                         |   25 +
>  doc/README.p1023rds                             |  101 ++++
>  include/configs/MPC8536DS.h                     |    3 +-
>  include/configs/P1023RDS.h                      |  562 +++++++++++++++++++++++
>  include/configs/P1_P2_RDB.h                     |    3 +-
>  include/configs/P2020DS.h                       |    3 +-
>  include/configs/corenet_ds.h                    |   39 ++-
>  include/ddr_spd.h                               |    4 +-
>  nand_spl/board/freescale/p1023rds/Makefile      |  132 ++++++
>  nand_spl/board/freescale/p1023rds/nand_boot.c   |   99 ++++
>  49 files changed, 1888 insertions(+), 75 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p2040_ids.c
>  create mode 100644 board/freescale/p1023rds/Makefile
>  create mode 100644 board/freescale/p1023rds/bcsr.h
>  create mode 100644 board/freescale/p1023rds/law.c
>  create mode 100644 board/freescale/p1023rds/p1023rds.c
>  create mode 100644 board/freescale/p1023rds/tlb.c
>  create mode 100644 doc/README.p1023rds
>  create mode 100644 include/configs/P1023RDS.h
>  create mode 100644 nand_spl/board/freescale/p1023rds/Makefile
>  create mode 100644 nand_spl/board/freescale/p1023rds/nand_boot.c

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
We are all agreed that your  theory  is  crazy.  The  question  which
divides  us  is  whether it is crazy enough to have a chance of being
correct. My own feeling is that it is not crazy enough.  - Niels Bohr

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

* [U-Boot] [GIT PULL] please pull u-boot-mpc85xx
  2012-01-16 19:14   ` Tabi Timur-B04825
@ 2012-01-16 19:15     ` Timur Tabi
  0 siblings, 0 replies; 20+ messages in thread
From: Timur Tabi @ 2012-01-16 19:15 UTC (permalink / raw)
  To: u-boot

 wrote:
> The reason I ask is that you're missing some of my patches.
> 
> http://patchwork.ozlabs.org/project/uboot/list/?submitter=timur

Ok, technically you're only missing ONE of my patches.

http://patchwork.ozlabs.org/patch/118367/

-- 
Timur Tabi
Linux kernel developer at Freescale

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

* [U-Boot] [GIT PULL] please pull u-boot-mpc85xx
       [not found] ` <CAOZdJXU3bskH=-UH7hb8LkgrRHiimUmKqBC1=Gya9dWNw8ZEJQ@mail.gmail.com>
@ 2012-01-16 19:14   ` Tabi Timur-B04825
  2012-01-16 19:15     ` Timur Tabi
  0 siblings, 1 reply; 20+ messages in thread
From: Tabi Timur-B04825 @ 2012-01-16 19:14 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 12, 2012 at 5:49 PM, Tabi Timur-B04825 <b04825@freescale.com> wrote:

> Are you going to make another pull request before the window closes?

The reason I ask is that you're missing some of my patches.

http://patchwork.ozlabs.org/project/uboot/list/?submitter=timur

-- 
Timur Tabi
Linux kernel developer at Freescale

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

* [U-Boot] [GIT PULL] please pull u-boot-mpc85xx
  2012-01-12 20:08 [U-Boot] [GIT PULL] please " Kumar Gala
  2012-01-13 16:24 ` Paul Gortmaker
@ 2012-01-13 19:40 ` Wolfgang Denk
       [not found] ` <CAOZdJXU3bskH=-UH7hb8LkgrRHiimUmKqBC1=Gya9dWNw8ZEJQ@mail.gmail.com>
  2 siblings, 0 replies; 20+ messages in thread
From: Wolfgang Denk @ 2012-01-13 19:40 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1201121408060.21297@right.am.freescale.net> you wrote:
> The following changes since commit 9a420986cccc9bd2c37affd931d627b3c3e72952:
>   Rob Herring (1):
>         ARM: highbank: enable networking and pxe
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kyle Moffett (2):
>       eXMeritus HWW-1U-1A: Minor environment variable tweaks
>       eXMeritus HWW-1U-1A: Add support for the AT24C128N I2C EEPROM
> 
> Paul Gortmaker (9):
>       MPC85xxCDS: Fix missing LCRR_DBYP bits for 66-133MHz LBC
>       Revert "SBC8548: fix address mask to allow 64M flash"
>       sbc8548: relocate 64MB user flash to sane boundary
>       sbc8548: enable ability to boot from alternate flash
>       sbc8548: Fix LBC SDRAM initialization settings
>       sbc8548: Make enabling SPD RAM configuration work
>       sbc8548: relocate fixed ddr init code to ddr.c file
>       sbc8548: enable support for hardware SPD errata workaround
>       sbc8548: Fix up local bus init to be frequency aware
> 
>  board/freescale/mpc8541cds/mpc8541cds.c |    2 +-
>  board/freescale/mpc8555cds/mpc8555cds.c |    2 +-
>  board/sbc8548/ddr.c                     |   77 ++++++++++++++++
>  board/sbc8548/law.c                     |   16 +++-
>  board/sbc8548/sbc8548.c                 |  111 +++++++++++------------
>  board/sbc8548/tlb.c                     |   24 ++++-
>  doc/README.sbc8548                      |   79 +++++++++++++++-
>  include/configs/HWW1U1A.h               |   36 +++++++-
>  include/configs/sbc8548.h               |  151 ++++++++++++++++++++++++-------
>  9 files changed, 389 insertions(+), 109 deletions(-)

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
"What if" is a trademark of Hewlett Packard, so stop using it in your
sentences without permission, or risk being sued.

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

* [U-Boot] [GIT PULL] please pull u-boot-mpc85xx
  2012-01-13 16:24 ` Paul Gortmaker
@ 2012-01-13 18:53   ` Kumar Gala
  0 siblings, 0 replies; 20+ messages in thread
From: Kumar Gala @ 2012-01-13 18:53 UTC (permalink / raw)
  To: u-boot


On Jan 13, 2012, at 10:24 AM, Paul Gortmaker wrote:

> Hi Kumar,
> 
> Was there a problem with my "add printout of LCRR" patch:
> 
> http://patchwork.ozlabs.org/patch/131707/
> 
> or did it just get lost over the usual holiday period chaos?
> 
> Thanks for merging the others, as they were the more
> important ones anyway.
> 
> Paul.

was just over looked, will take a look at it now.

- k

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

* [U-Boot] [GIT PULL] please pull u-boot-mpc85xx
  2012-01-12 20:08 [U-Boot] [GIT PULL] please " Kumar Gala
@ 2012-01-13 16:24 ` Paul Gortmaker
  2012-01-13 18:53   ` Kumar Gala
  2012-01-13 19:40 ` Wolfgang Denk
       [not found] ` <CAOZdJXU3bskH=-UH7hb8LkgrRHiimUmKqBC1=Gya9dWNw8ZEJQ@mail.gmail.com>
  2 siblings, 1 reply; 20+ messages in thread
From: Paul Gortmaker @ 2012-01-13 16:24 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 12, 2012 at 3:08 PM, Kumar Gala <galak@kernel.crashing.org> wrote:
> The following changes since commit 9a420986cccc9bd2c37affd931d627b3c3e72952:
> ?Rob Herring (1):
> ? ? ? ?ARM: highbank: enable networking and pxe
>
> are available in the git repository at:
>
> ?git://git.denx.de/u-boot-mpc85xx.git master
>
> Kyle Moffett (2):
> ? ? ?eXMeritus HWW-1U-1A: Minor environment variable tweaks
> ? ? ?eXMeritus HWW-1U-1A: Add support for the AT24C128N I2C EEPROM
>
> Paul Gortmaker (9):
> ? ? ?MPC85xxCDS: Fix missing LCRR_DBYP bits for 66-133MHz LBC
> ? ? ?Revert "SBC8548: fix address mask to allow 64M flash"
> ? ? ?sbc8548: relocate 64MB user flash to sane boundary
> ? ? ?sbc8548: enable ability to boot from alternate flash
> ? ? ?sbc8548: Fix LBC SDRAM initialization settings
> ? ? ?sbc8548: Make enabling SPD RAM configuration work
> ? ? ?sbc8548: relocate fixed ddr init code to ddr.c file
> ? ? ?sbc8548: enable support for hardware SPD errata workaround
> ? ? ?sbc8548: Fix up local bus init to be frequency aware

Hi Kumar,

Was there a problem with my "add printout of LCRR" patch:

http://patchwork.ozlabs.org/patch/131707/

or did it just get lost over the usual holiday period chaos?

Thanks for merging the others, as they were the more
important ones anyway.

Paul.


> ?board/freescale/mpc8541cds/mpc8541cds.c | ? ?2 +-
> ?board/freescale/mpc8555cds/mpc8555cds.c | ? ?2 +-
> ?board/sbc8548/ddr.c ? ? ? ? ? ? ? ? ? ? | ? 77 ++++++++++++++++
> ?board/sbc8548/law.c ? ? ? ? ? ? ? ? ? ? | ? 16 +++-
> ?board/sbc8548/sbc8548.c ? ? ? ? ? ? ? ? | ?111 +++++++++++------------
> ?board/sbc8548/tlb.c ? ? ? ? ? ? ? ? ? ? | ? 24 ++++-
> ?doc/README.sbc8548 ? ? ? ? ? ? ? ? ? ? ?| ? 79 +++++++++++++++-
> ?include/configs/HWW1U1A.h ? ? ? ? ? ? ? | ? 36 +++++++-
> ?include/configs/sbc8548.h ? ? ? ? ? ? ? | ?151 ++++++++++++++++++++++++-------
> ?9 files changed, 389 insertions(+), 109 deletions(-)
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

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

* [U-Boot] [GIT PULL] please pull u-boot-mpc85xx
@ 2012-01-12 20:08 Kumar Gala
  2012-01-13 16:24 ` Paul Gortmaker
                   ` (2 more replies)
  0 siblings, 3 replies; 20+ messages in thread
From: Kumar Gala @ 2012-01-12 20:08 UTC (permalink / raw)
  To: u-boot

The following changes since commit 9a420986cccc9bd2c37affd931d627b3c3e72952:
  Rob Herring (1):
        ARM: highbank: enable networking and pxe

are available in the git repository at:

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

Kyle Moffett (2):
      eXMeritus HWW-1U-1A: Minor environment variable tweaks
      eXMeritus HWW-1U-1A: Add support for the AT24C128N I2C EEPROM

Paul Gortmaker (9):
      MPC85xxCDS: Fix missing LCRR_DBYP bits for 66-133MHz LBC
      Revert "SBC8548: fix address mask to allow 64M flash"
      sbc8548: relocate 64MB user flash to sane boundary
      sbc8548: enable ability to boot from alternate flash
      sbc8548: Fix LBC SDRAM initialization settings
      sbc8548: Make enabling SPD RAM configuration work
      sbc8548: relocate fixed ddr init code to ddr.c file
      sbc8548: enable support for hardware SPD errata workaround
      sbc8548: Fix up local bus init to be frequency aware

 board/freescale/mpc8541cds/mpc8541cds.c |    2 +-
 board/freescale/mpc8555cds/mpc8555cds.c |    2 +-
 board/sbc8548/ddr.c                     |   77 ++++++++++++++++
 board/sbc8548/law.c                     |   16 +++-
 board/sbc8548/sbc8548.c                 |  111 +++++++++++------------
 board/sbc8548/tlb.c                     |   24 ++++-
 doc/README.sbc8548                      |   79 +++++++++++++++-
 include/configs/HWW1U1A.h               |   36 +++++++-
 include/configs/sbc8548.h               |  151 ++++++++++++++++++++++++-------
 9 files changed, 389 insertions(+), 109 deletions(-)

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

* [U-Boot] [GIT PULL] please pull u-boot-mpc85xx
  2011-12-09 14:51 Kumar Gala
@ 2011-12-10 21:44 ` Wolfgang Denk
  0 siblings, 0 replies; 20+ messages in thread
From: Wolfgang Denk @ 2011-12-10 21:44 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1112090850440.21621@right.am.freescale.net> you wrote:
> The following changes since commit c4eba6ec5c58083b38340724c006294c7a4fe2eb:
> 
>   common/usb_kbd.c: fix bug introduced in commit 00b7d6e (2011-12-09 12:09:35 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kyle Moffett (1):
>       mpc85xx: Add board support for the eXMeritus HWW-1U-1A devices
> 
>  MAINTAINERS                       |    4 +
>  board/exmeritus/hww1u1a/Makefile  |   48 ++++
>  board/exmeritus/hww1u1a/ddr.c     |   34 +++
>  board/exmeritus/hww1u1a/gpios.h   |   69 ++++++
>  board/exmeritus/hww1u1a/hww1u1a.c |  277 +++++++++++++++++++++++
>  board/exmeritus/hww1u1a/law.c     |   34 +++
>  board/exmeritus/hww1u1a/tlb.c     |  106 +++++++++
>  boards.cfg                        |    1 +
>  include/configs/HWW1U1A.h         |  451 +++++++++++++++++++++++++++++++++++++
>  9 files changed, 1024 insertions(+), 0 deletions(-)
>  create mode 100644 board/exmeritus/hww1u1a/Makefile
>  create mode 100644 board/exmeritus/hww1u1a/ddr.c
>  create mode 100644 board/exmeritus/hww1u1a/gpios.h
>  create mode 100644 board/exmeritus/hww1u1a/hww1u1a.c
>  create mode 100644 board/exmeritus/hww1u1a/law.c
>  create mode 100644 board/exmeritus/hww1u1a/tlb.c
>  create mode 100644 include/configs/HWW1U1A.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
I will not say that women have no character;  rather, they have a new
one every day.                                               -- Heine

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

* [U-Boot] [GIT PULL] please pull u-boot-mpc85xx
@ 2011-12-09 14:51 Kumar Gala
  2011-12-10 21:44 ` Wolfgang Denk
  0 siblings, 1 reply; 20+ messages in thread
From: Kumar Gala @ 2011-12-09 14:51 UTC (permalink / raw)
  To: u-boot

The following changes since commit c4eba6ec5c58083b38340724c006294c7a4fe2eb:

  common/usb_kbd.c: fix bug introduced in commit 00b7d6e (2011-12-09 12:09:35 +0100)

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

Kyle Moffett (1):
      mpc85xx: Add board support for the eXMeritus HWW-1U-1A devices

 MAINTAINERS                       |    4 +
 board/exmeritus/hww1u1a/Makefile  |   48 ++++
 board/exmeritus/hww1u1a/ddr.c     |   34 +++
 board/exmeritus/hww1u1a/gpios.h   |   69 ++++++
 board/exmeritus/hww1u1a/hww1u1a.c |  277 +++++++++++++++++++++++
 board/exmeritus/hww1u1a/law.c     |   34 +++
 board/exmeritus/hww1u1a/tlb.c     |  106 +++++++++
 boards.cfg                        |    1 +
 include/configs/HWW1U1A.h         |  451 +++++++++++++++++++++++++++++++++++++
 9 files changed, 1024 insertions(+), 0 deletions(-)
 create mode 100644 board/exmeritus/hww1u1a/Makefile
 create mode 100644 board/exmeritus/hww1u1a/ddr.c
 create mode 100644 board/exmeritus/hww1u1a/gpios.h
 create mode 100644 board/exmeritus/hww1u1a/hww1u1a.c
 create mode 100644 board/exmeritus/hww1u1a/law.c
 create mode 100644 board/exmeritus/hww1u1a/tlb.c
 create mode 100644 include/configs/HWW1U1A.h

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
  2011-07-29 13:05 [U-Boot] [GIT pull] Please " Kumar Gala
@ 2011-07-29 23:35 ` Wolfgang Denk
  0 siblings, 0 replies; 20+ messages in thread
From: Wolfgang Denk @ 2011-07-29 23:35 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1107290746400.28906@right.am.freescale.net> you wrote:
> The following changes since commit 85f3df1c3a6e8f8f0c7a1daa0cdc3714daf967d7:
> 
>   Fix build error causes by "unify version_string" (2011-07-28 22:16:57 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Bhaskar Upadhaya (1):
>       powerpc/85xx: Fix up clock_freq property in CAN node of dts
> 
> Kumar Gala (6):
>       powerpc/85xx: Fix setting of EPAPR_MAGIC value
>       powerpc/85xx: Rename P2040 id & SERDES to P2041
>       powerpc/85xx: Add support for P2041[e] XAUI in SERDES
>       powerpc/85xx: Handle the lack of L2 cache on P2040/P2040E
>       powerpc/85xx: Cleanup handling of PVR detection for e500/e500mc/e5500
>       powerpc/85xx: Fix build failure for P1023RDS
> 
> Matthew McClintock (1):
>       powerpc/85xx: provide 85xx flush_icache for cmd_cache
> 
> Mingkai Hu (2):
>       powerpc/p2041rdb: Enable backside L2 cache support
>       powerpc/p2041rdb: Enable SATA support
> 
> Stephen George (1):
>       powerpc/85xx: Adding configuration for DCSRCR to enable 32M access
> 
> Timur Tabi (1):
>       powerpc/85xx: verify the device tree before booting Linux
> 
> Wolfgang Denk (2):
>       85xx: enable FDT support for STX SSA board
>       MPC8xxx: drop redundant boot messages
> 
>  arch/powerpc/cpu/mpc85xx/Makefile                  |    6 +-
>  arch/powerpc/cpu/mpc85xx/cpu.c                     |   34 +++----
>  arch/powerpc/cpu/mpc85xx/cpu_init.c                |   19 ++++
>  arch/powerpc/cpu/mpc85xx/fdt.c                     |   98 ++++++++++++++++++--
>  .../cpu/mpc85xx/{p2040_ids.c => p2041_ids.c}       |    0
>  .../cpu/mpc85xx/{p2040_serdes.c => p2041_serdes.c} |   26 ++++-
>  arch/powerpc/cpu/mpc85xx/release.S                 |   15 +++-
>  arch/powerpc/cpu/mpc85xx/start.S                   |    2 +
>  arch/powerpc/include/asm/immap_85xx.h              |    7 +-
>  arch/powerpc/include/asm/processor.h               |    4 +
>  arch/powerpc/lib/bootm.c                           |   23 +++++-
>  board/freescale/corenet_ds/ddr.c                   |    2 +-
>  board/freescale/corenet_ds/law.c                   |    3 +-
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c          |    2 +-
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c          |    2 +-
>  board/freescale/p2041rdb/ddr.c                     |    2 +-
>  board/sbc8641d/sbc8641d.c                          |    2 +-
>  board/stx/stxssa/stxssa.c                          |    8 ++
>  include/configs/P1023RDS.h                         |    6 +-
>  include/configs/P2041RDB.h                         |   22 +++++
>  include/configs/stxssa.h                           |    7 +-
>  21 files changed, 241 insertions(+), 49 deletions(-)
>  rename arch/powerpc/cpu/mpc85xx/{p2040_ids.c => p2041_ids.c} (100%)
>  rename arch/powerpc/cpu/mpc85xx/{p2040_serdes.c => p2041_serdes.c} (83%)

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
"I dislike companies that have a we-are-the-high-priests-of-hardware-
so-you'll-like-what-we-give-you attitude. I like commodity markets in
which iron-and-silicon hawkers know that they exist to  provide  fast
toys for software types like me to play with..."    - Eric S. Raymond

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
@ 2011-07-29 13:05 Kumar Gala
  2011-07-29 23:35 ` Wolfgang Denk
  0 siblings, 1 reply; 20+ messages in thread
From: Kumar Gala @ 2011-07-29 13:05 UTC (permalink / raw)
  To: u-boot

The following changes since commit 85f3df1c3a6e8f8f0c7a1daa0cdc3714daf967d7:

  Fix build error causes by "unify version_string" (2011-07-28 22:16:57 +0200)

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

Bhaskar Upadhaya (1):
      powerpc/85xx: Fix up clock_freq property in CAN node of dts

Kumar Gala (6):
      powerpc/85xx: Fix setting of EPAPR_MAGIC value
      powerpc/85xx: Rename P2040 id & SERDES to P2041
      powerpc/85xx: Add support for P2041[e] XAUI in SERDES
      powerpc/85xx: Handle the lack of L2 cache on P2040/P2040E
      powerpc/85xx: Cleanup handling of PVR detection for e500/e500mc/e5500
      powerpc/85xx: Fix build failure for P1023RDS

Matthew McClintock (1):
      powerpc/85xx: provide 85xx flush_icache for cmd_cache

Mingkai Hu (2):
      powerpc/p2041rdb: Enable backside L2 cache support
      powerpc/p2041rdb: Enable SATA support

Stephen George (1):
      powerpc/85xx: Adding configuration for DCSRCR to enable 32M access

Timur Tabi (1):
      powerpc/85xx: verify the device tree before booting Linux

Wolfgang Denk (2):
      85xx: enable FDT support for STX SSA board
      MPC8xxx: drop redundant boot messages

 arch/powerpc/cpu/mpc85xx/Makefile                  |    6 +-
 arch/powerpc/cpu/mpc85xx/cpu.c                     |   34 +++----
 arch/powerpc/cpu/mpc85xx/cpu_init.c                |   19 ++++
 arch/powerpc/cpu/mpc85xx/fdt.c                     |   98 ++++++++++++++++++--
 .../cpu/mpc85xx/{p2040_ids.c => p2041_ids.c}       |    0
 .../cpu/mpc85xx/{p2040_serdes.c => p2041_serdes.c} |   26 ++++-
 arch/powerpc/cpu/mpc85xx/release.S                 |   15 +++-
 arch/powerpc/cpu/mpc85xx/start.S                   |    2 +
 arch/powerpc/include/asm/immap_85xx.h              |    7 +-
 arch/powerpc/include/asm/processor.h               |    4 +
 arch/powerpc/lib/bootm.c                           |   23 +++++-
 board/freescale/corenet_ds/ddr.c                   |    2 +-
 board/freescale/corenet_ds/law.c                   |    3 +-
 board/freescale/mpc8610hpcd/mpc8610hpcd.c          |    2 +-
 board/freescale/mpc8641hpcn/mpc8641hpcn.c          |    2 +-
 board/freescale/p2041rdb/ddr.c                     |    2 +-
 board/sbc8641d/sbc8641d.c                          |    2 +-
 board/stx/stxssa/stxssa.c                          |    8 ++
 include/configs/P1023RDS.h                         |    6 +-
 include/configs/P2041RDB.h                         |   22 +++++
 include/configs/stxssa.h                           |    7 +-
 21 files changed, 241 insertions(+), 49 deletions(-)
 rename arch/powerpc/cpu/mpc85xx/{p2040_ids.c => p2041_ids.c} (100%)
 rename arch/powerpc/cpu/mpc85xx/{p2040_serdes.c => p2041_serdes.c} (83%)

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
  2011-07-22  7:55 Kumar Gala
  2011-07-25 20:16 ` Wolfgang Denk
@ 2011-07-27 21:52 ` Tabi Timur-B04825
  1 sibling, 0 replies; 20+ messages in thread
From: Tabi Timur-B04825 @ 2011-07-27 21:52 UTC (permalink / raw)
  To: u-boot

On Fri, Jul 22, 2011 at 2:55 AM, Kumar Gala <galak@kernel.crashing.org> wrote:
> The following changes since commit 74fac70084bb040342fafc3b0d2ef50fbe35646f:
>
> ?Merge branch 'master' of git://git.denx.de/u-boot-mmc (2011-07-19 22:27:07 +0200)
>
> are available in the git repository at:
>
> ?git://git.denx.de/u-boot-mpc85xx.git master

What about this patch:

http://patchwork.ozlabs.org/patch/93875/

-- 
Timur Tabi
Linux kernel developer at Freescale

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
  2011-07-22  7:55 Kumar Gala
@ 2011-07-25 20:16 ` Wolfgang Denk
  2011-07-27 21:52 ` Tabi Timur-B04825
  1 sibling, 0 replies; 20+ messages in thread
From: Wolfgang Denk @ 2011-07-25 20:16 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1107220254550.8851@right.am.freescale.net> you wrote:
> The following changes since commit 74fac70084bb040342fafc3b0d2ef50fbe35646f:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mmc (2011-07-19 22:27:07 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Becky Bruce (2):
>       powerpc/mpc85xx: Add clear_ddr_tlbs function
>       board/tqm85xx: Create and tear down TLB for get_ram_size()
> 
> Timur Tabi (2):
>       powerpc/85xx: add support the ePAPR "phandle" property
>       fman: insert the Fman firmware into the device tree
> 
>  arch/powerpc/cpu/mpc85xx/cpu.c     |   14 +---
>  arch/powerpc/cpu/mpc85xx/fdt.c     |  119 ++++++++++++++++++++++++++++++++++++
>  arch/powerpc/cpu/mpc85xx/portals.c |    6 +-
>  arch/powerpc/cpu/mpc85xx/tlb.c     |   29 +++++++++
>  arch/powerpc/include/asm/mmu.h     |    1 +
>  board/tqc/tqm85xx/sdram.c          |    7 ++
>  include/configs/TQM85xx.h          |    6 ++
>  include/configs/corenet_ds.h       |    8 +--
>  8 files changed, 171 insertions(+), 19 deletions(-)

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
If at first you don't succeed, you are running about average.

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
@ 2011-07-22  7:55 Kumar Gala
  2011-07-25 20:16 ` Wolfgang Denk
  2011-07-27 21:52 ` Tabi Timur-B04825
  0 siblings, 2 replies; 20+ messages in thread
From: Kumar Gala @ 2011-07-22  7:55 UTC (permalink / raw)
  To: u-boot

The following changes since commit 74fac70084bb040342fafc3b0d2ef50fbe35646f:

  Merge branch 'master' of git://git.denx.de/u-boot-mmc (2011-07-19 22:27:07 +0200)

are available in the git repository at:

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

Becky Bruce (2):
      powerpc/mpc85xx: Add clear_ddr_tlbs function
      board/tqm85xx: Create and tear down TLB for get_ram_size()

Timur Tabi (2):
      powerpc/85xx: add support the ePAPR "phandle" property
      fman: insert the Fman firmware into the device tree

 arch/powerpc/cpu/mpc85xx/cpu.c     |   14 +---
 arch/powerpc/cpu/mpc85xx/fdt.c     |  119 ++++++++++++++++++++++++++++++++++++
 arch/powerpc/cpu/mpc85xx/portals.c |    6 +-
 arch/powerpc/cpu/mpc85xx/tlb.c     |   29 +++++++++
 arch/powerpc/include/asm/mmu.h     |    1 +
 board/tqc/tqm85xx/sdram.c          |    7 ++
 include/configs/TQM85xx.h          |    6 ++
 include/configs/corenet_ds.h       |    8 +--
 8 files changed, 171 insertions(+), 19 deletions(-)

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
  2011-07-18 13:24 Kumar Gala
@ 2011-07-18 19:04 ` Wolfgang Denk
  0 siblings, 0 replies; 20+ messages in thread
From: Wolfgang Denk @ 2011-07-18 19:04 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1107180824330.24307@right.am.freescale.net> you wrote:
> The following changes since commit 68d4230c3ccce96a72c5b99e48399bf1796fe3c6:
> 
>   powerpc/85xx: Add default usb mode and phy type to hwconfig (2011-07-11 13:24:21 -0500)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Becky Bruce (1):
>       powerpc/mpc8548cds: Remove incorrect DDR_MSYNC_IN erratum define
> 
> Kumar Gala (1):
>       powerpc/85xx: Fix detection of P1017E
> 
> Mingkai Hu (1):
>       powerpc/p2041rdb: Add p2041rdb board support
> 
>  arch/powerpc/cpu/mpc8xxx/cpu.c      |    2 +-
>  board/freescale/p2041rdb/Makefile   |   56 ++++
>  board/freescale/p2041rdb/cpld.c     |  171 ++++++++++
>  board/freescale/p2041rdb/cpld.h     |   53 +++
>  board/freescale/p2041rdb/ddr.c      |  115 +++++++
>  board/freescale/p2041rdb/law.c      |   37 ++
>  board/freescale/p2041rdb/p2041rdb.c |  203 ++++++++++++
>  board/freescale/p2041rdb/pci.c      |   39 +++
>  board/freescale/p2041rdb/tlb.c      |  119 +++++++
>  boards.cfg                          |    3 +
>  doc/README.p2041rdb                 |  123 +++++++
>  include/configs/MPC8548CDS.h        |    1 -
>  include/configs/P2041RDB.h          |  624 +++++++++++++++++++++++++++++++++++
>  13 files changed, 1544 insertions(+), 2 deletions(-)
>  create mode 100644 board/freescale/p2041rdb/Makefile
>  create mode 100644 board/freescale/p2041rdb/cpld.c
>  create mode 100644 board/freescale/p2041rdb/cpld.h
>  create mode 100644 board/freescale/p2041rdb/ddr.c
>  create mode 100644 board/freescale/p2041rdb/law.c
>  create mode 100644 board/freescale/p2041rdb/p2041rdb.c
>  create mode 100644 board/freescale/p2041rdb/pci.c
>  create mode 100644 board/freescale/p2041rdb/tlb.c
>  create mode 100644 doc/README.p2041rdb
>  create mode 100644 include/configs/P2041RDB.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
In C we had to code our own bugs, in C++ we can inherit them.

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
@ 2011-07-18 13:24 Kumar Gala
  2011-07-18 19:04 ` Wolfgang Denk
  0 siblings, 1 reply; 20+ messages in thread
From: Kumar Gala @ 2011-07-18 13:24 UTC (permalink / raw)
  To: u-boot

The following changes since commit 68d4230c3ccce96a72c5b99e48399bf1796fe3c6:

  powerpc/85xx: Add default usb mode and phy type to hwconfig (2011-07-11 13:24:21 -0500)

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

Becky Bruce (1):
      powerpc/mpc8548cds: Remove incorrect DDR_MSYNC_IN erratum define

Kumar Gala (1):
      powerpc/85xx: Fix detection of P1017E

Mingkai Hu (1):
      powerpc/p2041rdb: Add p2041rdb board support

 arch/powerpc/cpu/mpc8xxx/cpu.c      |    2 +-
 board/freescale/p2041rdb/Makefile   |   56 ++++
 board/freescale/p2041rdb/cpld.c     |  171 ++++++++++
 board/freescale/p2041rdb/cpld.h     |   53 +++
 board/freescale/p2041rdb/ddr.c      |  115 +++++++
 board/freescale/p2041rdb/law.c      |   37 ++
 board/freescale/p2041rdb/p2041rdb.c |  203 ++++++++++++
 board/freescale/p2041rdb/pci.c      |   39 +++
 board/freescale/p2041rdb/tlb.c      |  119 +++++++
 boards.cfg                          |    3 +
 doc/README.p2041rdb                 |  123 +++++++
 include/configs/MPC8548CDS.h        |    1 -
 include/configs/P2041RDB.h          |  624 +++++++++++++++++++++++++++++++++++
 13 files changed, 1544 insertions(+), 2 deletions(-)
 create mode 100644 board/freescale/p2041rdb/Makefile
 create mode 100644 board/freescale/p2041rdb/cpld.c
 create mode 100644 board/freescale/p2041rdb/cpld.h
 create mode 100644 board/freescale/p2041rdb/ddr.c
 create mode 100644 board/freescale/p2041rdb/law.c
 create mode 100644 board/freescale/p2041rdb/p2041rdb.c
 create mode 100644 board/freescale/p2041rdb/pci.c
 create mode 100644 board/freescale/p2041rdb/tlb.c
 create mode 100644 doc/README.p2041rdb
 create mode 100644 include/configs/P2041RDB.h

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
  2011-06-09 20:57 Kumar Gala
  2011-06-15 23:16 ` Kumar Gala
@ 2011-06-21 19:20 ` Wolfgang Denk
  1 sibling, 0 replies; 20+ messages in thread
From: Wolfgang Denk @ 2011-06-21 19:20 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1106091556160.27161@right.am.freescale.net> you wrote:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-arm (2011-06-08 23:29:04 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Timur Tabi (1):
>       powerpc/p1022ds: set the clock-frequency prop only if the clock is enabled
> 
>  board/freescale/p1022ds/p1022ds.c |   16 ++++++++++------
>  1 files changed, 10 insertions(+), 6 deletions(-)

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
Es ist nicht genug zu wissen, man mu? auch anwenden; es ist nicht ge-
nug zu wollen, man mu? auch tun.   -- Goethe, Maximen und Reflexionen

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
  2011-06-09 20:57 Kumar Gala
@ 2011-06-15 23:16 ` Kumar Gala
  2011-06-21 19:20 ` Wolfgang Denk
  1 sibling, 0 replies; 20+ messages in thread
From: Kumar Gala @ 2011-06-15 23:16 UTC (permalink / raw)
  To: u-boot


On Jun 10, 2011, at 4:57 AM, Kumar Gala wrote:

> The following changes since commit 9571865e0d32b1bcf8a6625497d1cd5d4bbad354:
> 
>  Merge branch 'master' of git://git.denx.de/u-boot-arm (2011-06-08 23:29:04 +0200)
> 
> are available in the git repository at:
> 
>  git://git.denx.de/u-boot-mpc85xx master
> 
> Timur Tabi (1):
>      powerpc/p1022ds: set the clock-frequency prop only if the clock is enabled
> 
> board/freescale/p1022ds/p1022ds.c |   16 ++++++++++------
> 1 files changed, 10 insertions(+), 6 deletions(-)
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

poke.

- k

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

* [U-Boot] [GIT pull] Please pull u-boot-mpc85xx
@ 2011-06-09 20:57 Kumar Gala
  2011-06-15 23:16 ` Kumar Gala
  2011-06-21 19:20 ` Wolfgang Denk
  0 siblings, 2 replies; 20+ messages in thread
From: Kumar Gala @ 2011-06-09 20:57 UTC (permalink / raw)
  To: u-boot

The following changes since commit 9571865e0d32b1bcf8a6625497d1cd5d4bbad354:

  Merge branch 'master' of git://git.denx.de/u-boot-arm (2011-06-08 23:29:04 +0200)

are available in the git repository at:

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

Timur Tabi (1):
      powerpc/p1022ds: set the clock-frequency prop only if the clock is enabled

 board/freescale/p1022ds/p1022ds.c |   16 ++++++++++------
 1 files changed, 10 insertions(+), 6 deletions(-)

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

end of thread, other threads:[~2012-01-16 19:15 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-11 18:25 [U-Boot] [GIT pull] Please pull u-boot-mpc85xx Kumar Gala
2011-07-11 20:12 ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2012-01-12 20:08 [U-Boot] [GIT PULL] please " Kumar Gala
2012-01-13 16:24 ` Paul Gortmaker
2012-01-13 18:53   ` Kumar Gala
2012-01-13 19:40 ` Wolfgang Denk
     [not found] ` <CAOZdJXU3bskH=-UH7hb8LkgrRHiimUmKqBC1=Gya9dWNw8ZEJQ@mail.gmail.com>
2012-01-16 19:14   ` Tabi Timur-B04825
2012-01-16 19:15     ` Timur Tabi
2011-12-09 14:51 Kumar Gala
2011-12-10 21:44 ` Wolfgang Denk
2011-07-29 13:05 [U-Boot] [GIT pull] Please " Kumar Gala
2011-07-29 23:35 ` Wolfgang Denk
2011-07-22  7:55 Kumar Gala
2011-07-25 20:16 ` Wolfgang Denk
2011-07-27 21:52 ` Tabi Timur-B04825
2011-07-18 13:24 Kumar Gala
2011-07-18 19:04 ` Wolfgang Denk
2011-06-09 20:57 Kumar Gala
2011-06-15 23:16 ` Kumar Gala
2011-06-21 19:20 ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.