All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-mpc85xx.git (updated)
@ 2009-04-01 20:33 Kumar Gala
  2009-04-01 20:45 ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Kumar Gala @ 2009-04-01 20:33 UTC (permalink / raw)
  To: u-boot

(for got to add include/asm-ppc/mp.h, now fixed)

The following changes since commit 2344bb8de2354101a8264c2123303c9d8d2aed3c:
  Detlev Zundel (1):
        inka4x0: Use proper accessor macros for memory mapped registers.

are available in the git repository at:

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

Becky Bruce (1):
      mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves

Dave Liu (2):
      fsl-ddr: Fix two bugs in the ddr infrastructure
      fsl-ddr: add the DDR3 SPD infrastructure

Haiying Wang (3):
      MPC85xx: Load and enable QE microcode patch in IRAM
      MPC85xx: Add MPC8569 CPU support
      MPC85xx: Add MPC8569MDS board support

Kumar Gala (7):
      Add LSDMR (SDRAM Mode Register) definition on localbus
      85xx: Use common LSDMR defines from asm/fsl_lbc.h
      83xx: Use common LSDMR defines from asm/fsl_lbc.h
      85xx: Add support for additional e500mc features
      86xx: Cleanup MP support
      85xx: Introduce determine_mp_bootpg() helper.
      85xx/86xx: Ensure MP boot page is not used

 MAKEALL                                   |    1 +
 Makefile                                  |    3 +
 board/freescale/mpc8541cds/mpc8541cds.c   |   14 +-
 board/freescale/mpc8548cds/mpc8548cds.c   |   10 +-
 board/freescale/mpc8555cds/mpc8555cds.c   |   14 +-
 board/freescale/mpc8560ads/mpc8560ads.c   |    1 +
 board/freescale/mpc8568mds/mpc8568mds.c   |   10 +-
 board/freescale/mpc8569mds/Makefile       |   55 ++++
 board/freescale/mpc8569mds/bcsr.c         |   49 +++
 board/freescale/mpc8569mds/bcsr.h         |   82 ++++++
 board/freescale/mpc8569mds/config.mk      |   30 ++
 board/freescale/mpc8569mds/ddr.c          |   84 ++++++
 board/freescale/mpc8569mds/law.c          |   59 ++++
 board/freescale/mpc8569mds/mpc8569mds.c   |  329 +++++++++++++++++++++
 board/freescale/mpc8569mds/tlb.c          |  103 +++++++
 board/freescale/mpc8569mds/u-boot.lds     |  143 +++++++++
 board/freescale/mpc8641hpcn/mpc8641hpcn.c |    9 +
 board/sbc8548/sbc8548.c                   |   10 +-
 board/sbc8641d/sbc8641d.c                 |    9 +
 common/ddr_spd.c                          |   53 ++++
 cpu/mpc85xx/Makefile                      |    1 +
 cpu/mpc85xx/cpu.c                         |    2 +
 cpu/mpc85xx/cpu_init.c                    |   13 +
 cpu/mpc85xx/ddr-gen3.c                    |    6 +-
 cpu/mpc85xx/fdt.c                         |   73 ++++-
 cpu/mpc85xx/mp.c                          |   26 +-
 cpu/mpc85xx/mp.h                          |    4 +-
 cpu/mpc85xx/release.S                     |   16 +
 cpu/mpc85xx/start.S                       |   51 ++++
 cpu/mpc86xx/Makefile                      |   25 +-
 cpu/mpc86xx/cpu_init.c                    |    2 +-
 cpu/mpc86xx/fdt.c                         |   14 +-
 cpu/mpc86xx/mp.c                          |   51 ++--
 cpu/mpc86xx/mp.h                          |    7 -
 cpu/mpc86xx/release.S                     |    2 -
 cpu/mpc8xxx/ddr/Makefile                  |    4 +
 cpu/mpc8xxx/ddr/ctrl_regs.c               |  383 ++++++++++++++++++++++---
 cpu/mpc8xxx/ddr/ddr3_dimm_params.c        |  314 ++++++++++++++++++++
 cpu/mpc8xxx/ddr/lc_common_dimm_params.c   |   74 +++++-
 cpu/mpc8xxx/ddr/options.c                 |   28 ++-
 drivers/misc/fsl_law.c                    |    2 +-
 drivers/qe/qe.c                           |    9 +
 drivers/qe/qe.h                           |    1 +
 include/asm-ppc/fsl_ddr_dimm_params.h     |    7 +
 include/asm-ppc/fsl_ddr_sdram.h           |   31 ++-
 include/asm-ppc/fsl_lbc.h                 |   27 ++
 include/asm-ppc/immap_85xx.h              |   13 +-
 include/asm-ppc/immap_qe.h                |    8 +-
 include/asm-ppc/mp.h                      |   31 ++
 include/asm-ppc/processor.h               |    2 +
 include/configs/MPC8323ERDB.h             |   26 --
 include/configs/MPC832XEMDS.h             |   26 --
 include/configs/MPC8349EMDS.h             |   62 +---
 include/configs/MPC8360EMDS.h             |   27 +--
 include/configs/MPC8540ADS.h              |   59 +---
 include/configs/MPC8541CDS.h              |   37 +--
 include/configs/MPC8548CDS.h              |   37 +--
 include/configs/MPC8555CDS.h              |   37 +--
 include/configs/MPC8560ADS.h              |   59 +---
 include/configs/MPC8568MDS.h              |   37 +--
 include/configs/MPC8569MDS.h              |  454 +++++++++++++++++++++++++++++
 include/configs/MPC8641HPCN.h             |    1 +
 include/configs/sbc8349.h                 |   62 +---
 include/configs/sbc8548.h                 |   37 +--
 include/configs/sbc8641d.h                |    1 +
 include/ddr_spd.h                         |   13 +-
 lib_ppc/board.c                           |   15 +
 67 files changed, 2711 insertions(+), 574 deletions(-)
 create mode 100644 board/freescale/mpc8569mds/Makefile
 create mode 100644 board/freescale/mpc8569mds/bcsr.c
 create mode 100644 board/freescale/mpc8569mds/bcsr.h
 create mode 100644 board/freescale/mpc8569mds/config.mk
 create mode 100644 board/freescale/mpc8569mds/ddr.c
 create mode 100644 board/freescale/mpc8569mds/law.c
 create mode 100644 board/freescale/mpc8569mds/mpc8569mds.c
 create mode 100644 board/freescale/mpc8569mds/tlb.c
 create mode 100644 board/freescale/mpc8569mds/u-boot.lds
 delete mode 100644 cpu/mpc86xx/mp.h
 create mode 100644 cpu/mpc8xxx/ddr/ddr3_dimm_params.c
 create mode 100644 include/asm-ppc/mp.h
 create mode 100644 include/configs/MPC8569MDS.h

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

* [U-Boot] Please pull u-boot-mpc85xx.git (updated)
  2009-04-01 20:33 [U-Boot] Please pull u-boot-mpc85xx.git (updated) Kumar Gala
@ 2009-04-01 20:45 ` Wolfgang Denk
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfgang Denk @ 2009-04-01 20:45 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.0904011531570.27439@blarg.am.freescale.net> you wrote:
> (for got to add include/asm-ppc/mp.h, now fixed)
> 
> The following changes since commit 2344bb8de2354101a8264c2123303c9d8d2aed3c:
>   Detlev Zundel (1):
>         inka4x0: Use proper accessor macros for memory mapped registers.
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Becky Bruce (1):
>       mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
> 
> Dave Liu (2):
>       fsl-ddr: Fix two bugs in the ddr infrastructure
>       fsl-ddr: add the DDR3 SPD infrastructure
> 
> Haiying Wang (3):
>       MPC85xx: Load and enable QE microcode patch in IRAM
>       MPC85xx: Add MPC8569 CPU support
>       MPC85xx: Add MPC8569MDS board support
> 
> Kumar Gala (7):
>       Add LSDMR (SDRAM Mode Register) definition on localbus
>       85xx: Use common LSDMR defines from asm/fsl_lbc.h
>       83xx: Use common LSDMR defines from asm/fsl_lbc.h
>       85xx: Add support for additional e500mc features
>       86xx: Cleanup MP support
>       85xx: Introduce determine_mp_bootpg() helper.
>       85xx/86xx: Ensure MP boot page is not used
> 
>  MAKEALL                                   |    1 +
>  Makefile                                  |    3 +
>  board/freescale/mpc8541cds/mpc8541cds.c   |   14 +-
>  board/freescale/mpc8548cds/mpc8548cds.c   |   10 +-
>  board/freescale/mpc8555cds/mpc8555cds.c   |   14 +-
>  board/freescale/mpc8560ads/mpc8560ads.c   |    1 +
>  board/freescale/mpc8568mds/mpc8568mds.c   |   10 +-
>  board/freescale/mpc8569mds/Makefile       |   55 ++++
>  board/freescale/mpc8569mds/bcsr.c         |   49 +++
>  board/freescale/mpc8569mds/bcsr.h         |   82 ++++++
>  board/freescale/mpc8569mds/config.mk      |   30 ++
>  board/freescale/mpc8569mds/ddr.c          |   84 ++++++
>  board/freescale/mpc8569mds/law.c          |   59 ++++
>  board/freescale/mpc8569mds/mpc8569mds.c   |  329 +++++++++++++++++++++
>  board/freescale/mpc8569mds/tlb.c          |  103 +++++++
>  board/freescale/mpc8569mds/u-boot.lds     |  143 +++++++++
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c |    9 +
>  board/sbc8548/sbc8548.c                   |   10 +-
>  board/sbc8641d/sbc8641d.c                 |    9 +
>  common/ddr_spd.c                          |   53 ++++
>  cpu/mpc85xx/Makefile                      |    1 +
>  cpu/mpc85xx/cpu.c                         |    2 +
>  cpu/mpc85xx/cpu_init.c                    |   13 +
>  cpu/mpc85xx/ddr-gen3.c                    |    6 +-
>  cpu/mpc85xx/fdt.c                         |   73 ++++-
>  cpu/mpc85xx/mp.c                          |   26 +-
>  cpu/mpc85xx/mp.h                          |    4 +-
>  cpu/mpc85xx/release.S                     |   16 +
>  cpu/mpc85xx/start.S                       |   51 ++++
>  cpu/mpc86xx/Makefile                      |   25 +-
>  cpu/mpc86xx/cpu_init.c                    |    2 +-
>  cpu/mpc86xx/fdt.c                         |   14 +-
>  cpu/mpc86xx/mp.c                          |   51 ++--
>  cpu/mpc86xx/mp.h                          |    7 -
>  cpu/mpc86xx/release.S                     |    2 -
>  cpu/mpc8xxx/ddr/Makefile                  |    4 +
>  cpu/mpc8xxx/ddr/ctrl_regs.c               |  383 ++++++++++++++++++++++---
>  cpu/mpc8xxx/ddr/ddr3_dimm_params.c        |  314 ++++++++++++++++++++
>  cpu/mpc8xxx/ddr/lc_common_dimm_params.c   |   74 +++++-
>  cpu/mpc8xxx/ddr/options.c                 |   28 ++-
>  drivers/misc/fsl_law.c                    |    2 +-
>  drivers/qe/qe.c                           |    9 +
>  drivers/qe/qe.h                           |    1 +
>  include/asm-ppc/fsl_ddr_dimm_params.h     |    7 +
>  include/asm-ppc/fsl_ddr_sdram.h           |   31 ++-
>  include/asm-ppc/fsl_lbc.h                 |   27 ++
>  include/asm-ppc/immap_85xx.h              |   13 +-
>  include/asm-ppc/immap_qe.h                |    8 +-
>  include/asm-ppc/mp.h                      |   31 ++
>  include/asm-ppc/processor.h               |    2 +
>  include/configs/MPC8323ERDB.h             |   26 --
>  include/configs/MPC832XEMDS.h             |   26 --
>  include/configs/MPC8349EMDS.h             |   62 +---
>  include/configs/MPC8360EMDS.h             |   27 +--
>  include/configs/MPC8540ADS.h              |   59 +---
>  include/configs/MPC8541CDS.h              |   37 +--
>  include/configs/MPC8548CDS.h              |   37 +--
>  include/configs/MPC8555CDS.h              |   37 +--
>  include/configs/MPC8560ADS.h              |   59 +---
>  include/configs/MPC8568MDS.h              |   37 +--
>  include/configs/MPC8569MDS.h              |  454 +++++++++++++++++++++++++++++
>  include/configs/MPC8641HPCN.h             |    1 +
>  include/configs/sbc8349.h                 |   62 +---
>  include/configs/sbc8548.h                 |   37 +--
>  include/configs/sbc8641d.h                |    1 +
>  include/ddr_spd.h                         |   13 +-
>  lib_ppc/board.c                           |   15 +
>  67 files changed, 2711 insertions(+), 574 deletions(-)
>  create mode 100644 board/freescale/mpc8569mds/Makefile
>  create mode 100644 board/freescale/mpc8569mds/bcsr.c
>  create mode 100644 board/freescale/mpc8569mds/bcsr.h
>  create mode 100644 board/freescale/mpc8569mds/config.mk
>  create mode 100644 board/freescale/mpc8569mds/ddr.c
>  create mode 100644 board/freescale/mpc8569mds/law.c
>  create mode 100644 board/freescale/mpc8569mds/mpc8569mds.c
>  create mode 100644 board/freescale/mpc8569mds/tlb.c
>  create mode 100644 board/freescale/mpc8569mds/u-boot.lds
>  delete mode 100644 cpu/mpc86xx/mp.h
>  create mode 100644 cpu/mpc8xxx/ddr/ddr3_dimm_params.c
>  create mode 100644 include/asm-ppc/mp.h
>  create mode 100644 include/configs/MPC8569MDS.h

Done, 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's the sound a name makes when it's dropped?

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

* [U-Boot] Please pull u-boot-mpc85xx.git (updated)
  2011-03-29 12:44 [U-Boot] Please pull u-boot-mpc85xx.git (updated) Kumar Gala
@ 2011-03-31  7:02 ` Wolfgang Denk
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfgang Denk @ 2011-03-31  7:02 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1103290743460.6465@right.am.freescale.net> you wrote:
> [ Pull in one other HW / SoC related fix in for v2011.03 ]
> 
> The following changes since commit cb815e5ff979e36d68df130a810d34de4bf93289:
> 
>   Prepare v (2011-03-27 21:50:07 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Jiang Yutang (1):
>       powerpc/85xx: Enable various errata on P1022/P1013 SoCs
> 
> Prabhakar Kushwaha (1):
>       powerpc/85xx: Handle PCIe initialization requires for P1021 class SoCs
> 
>  arch/powerpc/cpu/mpc85xx/p1021_serdes.c   |   49 ++++++++++++++++++++++++++++-
>  arch/powerpc/include/asm/config_mpc85xx.h |   10 ++++++
>  drivers/pci/fsl_pci_init.c                |    7 ++++
>  include/configs/P1022DS.h                 |    1 +
>  include/pci.h                             |    1 +
>  5 files changed, 67 insertions(+), 1 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
You're dead, Jim.
	-- McCoy, "The Tholian Web", stardate unknown

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

* [U-Boot] Please pull u-boot-mpc85xx.git (updated)
@ 2011-03-29 12:44 Kumar Gala
  2011-03-31  7:02 ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Kumar Gala @ 2011-03-29 12:44 UTC (permalink / raw)
  To: u-boot

[ Pull in one other HW / SoC related fix in for v2011.03 ]

The following changes since commit cb815e5ff979e36d68df130a810d34de4bf93289:

  Prepare v (2011-03-27 21:50:07 +0200)

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

Jiang Yutang (1):
      powerpc/85xx: Enable various errata on P1022/P1013 SoCs

Prabhakar Kushwaha (1):
      powerpc/85xx: Handle PCIe initialization requires for P1021 class SoCs

 arch/powerpc/cpu/mpc85xx/p1021_serdes.c   |   49 ++++++++++++++++++++++++++++-
 arch/powerpc/include/asm/config_mpc85xx.h |   10 ++++++
 drivers/pci/fsl_pci_init.c                |    7 ++++
 include/configs/P1022DS.h                 |    1 +
 include/pci.h                             |    1 +
 5 files changed, 67 insertions(+), 1 deletions(-)

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

* [U-Boot] Please pull u-boot-mpc85xx.git (Updated)
  2010-12-13 18:45 ` [U-Boot] Please pull u-boot-mpc85xx.git (Updated) Kumar Gala
@ 2010-12-13 23:05   ` Wolfgang Denk
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfgang Denk @ 2010-12-13 23:05 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <19A172F6-414E-4F31-90AA-F50A047FC996@kernel.crashing.org> you wrote:
> [Added Timur's P1022 patch fix]
>
> The following changes since commit ac8983bcba75576c50307b5e8dc8fb848740ee61:
>
>   Merge branch 'master' of git://git.denx.de/u-boot-imx (2010-12-09 20:52:44 +0100)
>
> are available in the git repository at:
>
>   git://git.denx.de/u-boot-mpc85xx master
>
> John Schmoller (1):
>       fsl_upm: Add MxMR/MDR synchronization
>
> Kumar Gala (1):
>       tsec: Revert to setting TBICR_ANEG_ENABLE by default for SGMII
>
> P.V.Suresh (1):
>       fsl_esdhc: Set the eSHDC DMACTL[SNOOP] bit after resetting the controller
>
> Timur Tabi (1):
>       p1022ds: fix switching of DIU/LBC signals
>
>  board/freescale/p1022ds/diu.c |   67 > ++++++++++++++++++++++++++++++++++------
>  drivers/mmc/fsl_esdhc.c       |    8 ++--
>  drivers/mtd/nand/fsl_upm.c    |    2 +
>  drivers/net/tsec.c            |    9 ++---
>  include/configs/P1_P2_RDB.h   |    8 -----
>  include/configs/xpedite537x.h |   10 ++++++
>  include/configs/xpedite550x.h |   10 ++++++
>  7 files changed, 87 insertions(+), 27 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
"How is this place run - is it an anarchy?"
"No, I wouldn't say so; it is not that well organised..."

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

* [U-Boot] Please pull u-boot-mpc85xx.git (Updated)
  2010-12-13 15:44 [U-Boot] Please pull u-boot-mpc85xx.git Kumar Gala
@ 2010-12-13 18:45 ` Kumar Gala
  2010-12-13 23:05   ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Kumar Gala @ 2010-12-13 18:45 UTC (permalink / raw)
  To: u-boot

[Added Timur's P1022 patch fix]

The following changes since commit ac8983bcba75576c50307b5e8dc8fb848740ee61:

  Merge branch 'master' of git://git.denx.de/u-boot-imx (2010-12-09 20:52:44 +0100)

are available in the git repository at:

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

John Schmoller (1):
      fsl_upm: Add MxMR/MDR synchronization

Kumar Gala (1):
      tsec: Revert to setting TBICR_ANEG_ENABLE by default for SGMII

P.V.Suresh (1):
      fsl_esdhc: Set the eSHDC DMACTL[SNOOP] bit after resetting the controller

Timur Tabi (1):
      p1022ds: fix switching of DIU/LBC signals

 board/freescale/p1022ds/diu.c |   67 ++++++++++++++++++++++++++++++++++------
 drivers/mmc/fsl_esdhc.c       |    8 ++--
 drivers/mtd/nand/fsl_upm.c    |    2 +
 drivers/net/tsec.c            |    9 ++---
 include/configs/P1_P2_RDB.h   |    8 -----
 include/configs/xpedite537x.h |   10 ++++++
 include/configs/xpedite550x.h |   10 ++++++
 7 files changed, 87 insertions(+), 27 deletions(-)

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

* [U-Boot] Please pull u-boot-mpc85xx.git (updated)
  2010-11-12 15:49 Kumar Gala
  2010-11-12 15:55 ` Timur Tabi
@ 2010-11-12 23:37 ` Wolfgang Denk
  1 sibling, 0 replies; 10+ messages in thread
From: Wolfgang Denk @ 2010-11-12 23:37 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1011120948290.17327@localhost.localdomain> you wrote:
> The following changes since commit 0c0892be0d93a5a892b93739c5eb3bf692fed4ff:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-marvell (2010-10-29 22:03:00 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Becky Bruce (1):
>       TQM85xx: Fix bug introduced by 83xx/85xx/86xx: LBC register cleanup
> 
> Haiying Wang (3):
>       powerpc/85xx: Fix lds for nand build
>       powerpc/85xx: rename CONFIG_SYS_TEXT_BASE to CONFIG_SYS_MONITOR_BASE
>       powerpc/85xx: add CONFIG_SYS_TEXT_BASE_SPL for 85xx nand spl build
> 
> Kumar Gala (5):
>       powerpc/8xxx: Fix merge issue with P2020DS DDR2 build config
>       powerpc/8xxx: Enable e1000 driver on some FSL boards
>       powerpc/corenet_ds: Enable DHCP suport
>       powerpc/corenet_ds: Move CONFIG_SYS_TEXT_BASE into corenet_ds.h
>       powerpc/p4080ds: Move ICS refclk define into P4080DS.h
> 
> Priyanka Jain (1):
>       p1_p2_rdb: to set SQW/INT pin of RTC as INT line
> 
> Timur Tabi (1):
>       powerpc/corenet_ds: display the RCW at boot
> 
>  arch/powerpc/cpu/mpc85xx/start.S             |   18 +++++-----
>  arch/powerpc/cpu/mpc85xx/u-boot-nand.lds     |   49 +++++---------------------
>  arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds |   12 +++---
>  board/freescale/corenet_ds/corenet_ds.c      |   15 ++++++++
>  board/freescale/p1_p2_rdb/p1_p2_rdb.c        |    4 ++-
>  board/tqc/tqm85xx/tqm85xx.c                  |    2 +-
>  boards.cfg                                   |    2 +-
>  include/configs/MPC8536DS.h                  |   11 +++++-
>  include/configs/MPC8569MDS.h                 |   12 +++++-
>  include/configs/MPC8572DS.h                  |    1 +
>  include/configs/P1022DS.h                    |    1 +
>  include/configs/P1_P2_RDB.h                  |   14 ++++++--
>  include/configs/P4080DS.h                    |    6 +--
>  include/configs/corenet_ds.h                 |    6 +++-
>  nand_spl/board/freescale/mpc8536ds/Makefile  |    4 +-
>  nand_spl/board/freescale/mpc8569mds/Makefile |    4 +-
>  nand_spl/board/freescale/p1_p2_rdb/Makefile  |    4 +-
>  17 files changed, 89 insertions(+), 76 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
Pain is a thing of the mind.  The mind can be controlled.
	-- Spock, "Operation -- Annihilate!" stardate 3287.2

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

* [U-Boot] Please pull u-boot-mpc85xx.git (updated)
  2010-11-12 15:55 ` Timur Tabi
@ 2010-11-12 15:59   ` Kumar Gala
  0 siblings, 0 replies; 10+ messages in thread
From: Kumar Gala @ 2010-11-12 15:59 UTC (permalink / raw)
  To: u-boot


On Nov 12, 2010, at 9:55 AM, Timur Tabi wrote:

> On Fri, Nov 12, 2010 at 9:49 AM, Kumar Gala <galak@kernel.crashing.org> wrote:
> 
>>      powerpc/8xxx: Enable e1000 driver on some FSL boards
> 
> I have an objection to this patch that I asked you about earlier, and
> you never answered my question.

I'm enabling it so we can use e1000 cards to test PCI.  I hear your objection and overrule it as maintainer.

- k

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

* [U-Boot] Please pull u-boot-mpc85xx.git (updated)
  2010-11-12 15:49 Kumar Gala
@ 2010-11-12 15:55 ` Timur Tabi
  2010-11-12 15:59   ` Kumar Gala
  2010-11-12 23:37 ` Wolfgang Denk
  1 sibling, 1 reply; 10+ messages in thread
From: Timur Tabi @ 2010-11-12 15:55 UTC (permalink / raw)
  To: u-boot

On Fri, Nov 12, 2010 at 9:49 AM, Kumar Gala <galak@kernel.crashing.org> wrote:

> ? ? ?powerpc/8xxx: Enable e1000 driver on some FSL boards

I have an objection to this patch that I asked you about earlier, and
you never answered my question.

-- 
Timur Tabi
Linux kernel developer at Freescale

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

* [U-Boot] Please pull u-boot-mpc85xx.git (updated)
@ 2010-11-12 15:49 Kumar Gala
  2010-11-12 15:55 ` Timur Tabi
  2010-11-12 23:37 ` Wolfgang Denk
  0 siblings, 2 replies; 10+ messages in thread
From: Kumar Gala @ 2010-11-12 15:49 UTC (permalink / raw)
  To: u-boot

The following changes since commit 0c0892be0d93a5a892b93739c5eb3bf692fed4ff:

  Merge branch 'master' of git://git.denx.de/u-boot-marvell (2010-10-29 22:03:00 +0200)

are available in the git repository at:

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

Becky Bruce (1):
      TQM85xx: Fix bug introduced by 83xx/85xx/86xx: LBC register cleanup

Haiying Wang (3):
      powerpc/85xx: Fix lds for nand build
      powerpc/85xx: rename CONFIG_SYS_TEXT_BASE to CONFIG_SYS_MONITOR_BASE
      powerpc/85xx: add CONFIG_SYS_TEXT_BASE_SPL for 85xx nand spl build

Kumar Gala (5):
      powerpc/8xxx: Fix merge issue with P2020DS DDR2 build config
      powerpc/8xxx: Enable e1000 driver on some FSL boards
      powerpc/corenet_ds: Enable DHCP suport
      powerpc/corenet_ds: Move CONFIG_SYS_TEXT_BASE into corenet_ds.h
      powerpc/p4080ds: Move ICS refclk define into P4080DS.h

Priyanka Jain (1):
      p1_p2_rdb: to set SQW/INT pin of RTC as INT line

Timur Tabi (1):
      powerpc/corenet_ds: display the RCW at boot

 arch/powerpc/cpu/mpc85xx/start.S             |   18 +++++-----
 arch/powerpc/cpu/mpc85xx/u-boot-nand.lds     |   49 +++++---------------------
 arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds |   12 +++---
 board/freescale/corenet_ds/corenet_ds.c      |   15 ++++++++
 board/freescale/p1_p2_rdb/p1_p2_rdb.c        |    4 ++-
 board/tqc/tqm85xx/tqm85xx.c                  |    2 +-
 boards.cfg                                   |    2 +-
 include/configs/MPC8536DS.h                  |   11 +++++-
 include/configs/MPC8569MDS.h                 |   12 +++++-
 include/configs/MPC8572DS.h                  |    1 +
 include/configs/P1022DS.h                    |    1 +
 include/configs/P1_P2_RDB.h                  |   14 ++++++--
 include/configs/P4080DS.h                    |    6 +--
 include/configs/corenet_ds.h                 |    6 +++-
 nand_spl/board/freescale/mpc8536ds/Makefile  |    4 +-
 nand_spl/board/freescale/mpc8569mds/Makefile |    4 +-
 nand_spl/board/freescale/p1_p2_rdb/Makefile  |    4 +-
 17 files changed, 89 insertions(+), 76 deletions(-)

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

end of thread, other threads:[~2011-03-31  7:02 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-01 20:33 [U-Boot] Please pull u-boot-mpc85xx.git (updated) Kumar Gala
2009-04-01 20:45 ` Wolfgang Denk
2010-11-12 15:49 Kumar Gala
2010-11-12 15:55 ` Timur Tabi
2010-11-12 15:59   ` Kumar Gala
2010-11-12 23:37 ` Wolfgang Denk
2010-12-13 15:44 [U-Boot] Please pull u-boot-mpc85xx.git Kumar Gala
2010-12-13 18:45 ` [U-Boot] Please pull u-boot-mpc85xx.git (Updated) Kumar Gala
2010-12-13 23:05   ` Wolfgang Denk
2011-03-29 12:44 [U-Boot] Please pull u-boot-mpc85xx.git (updated) Kumar Gala
2011-03-31  7:02 ` 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.