All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-mpc85xx
@ 2010-04-07  7:24 Kumar Gala
  2010-04-07 22:23 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Kumar Gala @ 2010-04-07  7:24 UTC (permalink / raw)
  To: u-boot

The following changes since commit ffa37fc98d71ef930bccd4e9eed37f6ce6b4d6af:
  Wolfgang Denk (1):
        Merge branch 'next'

are available in the git repository at:

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

Dave Liu (2):
      fsl-ddr: Fix the turnaround timing for TIMING_CFG_4
      fsl-ddr: change the default burst mode for DDR3

Jerry Huang (1):
      fsl_esdhc: Add function to reset the eSDHC controller

Kumar Gala (6):
      fsl_esdhc: Always stop clock before changing frequency
      85xx: Add defines for BUCSR bits to make code more readable
      fdt: Add fdt_del_node_and_alias helper
      ppc/8xxx: Delete PCI nodes from device tree if not configured
      85xx: Added various P1012/P1013/P1021/P1022 defines
      ppc/85xx: Use CONFIG_NS16550_MIN_FUNCTIONS to reduce NAND_SPL size

Roy Zang (1):
      fsl_esdhc: Only modify the field we are changing in WML

Sandeep Gopalpet (1):
      85xx: Set HID1[mbdd] on e500v2 rev5.0 or greater

Timur Tabi (2):
      fsl: improve the PIXIS code and fix a few bugs
      p2020ds: add alternate boot bank support using the ngPIXIS FPGA

 board/freescale/common/Makefile               |    1 +
 board/freescale/common/ngpixis.c              |  136 +++++++++++++
 board/freescale/common/ngpixis.h              |   57 ++++++
 board/freescale/common/pixis.c                |  254 ++++++++++++-------------
 board/freescale/common/pixis.h                |   31 ---
 board/freescale/mpc8536ds/mpc8536ds.c         |    1 -
 board/freescale/mpc8544ds/mpc8544ds.c         |    1 -
 board/freescale/mpc8572ds/mpc8572ds.c         |    1 -
 board/freescale/mpc8610hpcd/mpc8610hpcd.c     |    2 -
 board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |    1 -
 board/freescale/mpc8641hpcn/mpc8641hpcn.c     |    2 -
 board/freescale/p2020ds/p2020ds.c             |   56 ++----
 common/fdt_support.c                          |   13 ++
 cpu/mpc512x/diu.c                             |    1 -
 cpu/mpc85xx/Makefile                          |    4 +
 cpu/mpc85xx/release.S                         |   12 +-
 cpu/mpc85xx/start.S                           |   14 +-
 cpu/mpc8xxx/cpu.c                             |   10 +-
 cpu/mpc8xxx/ddr/ctrl_regs.c                   |   26 ++-
 cpu/mpc8xxx/ddr/options.c                     |   14 +-
 cpu/mpc8xxx/pci_cfg.c                         |   30 +++-
 drivers/misc/fsl_law.c                        |    4 +-
 drivers/mmc/fsl_esdhc.c                       |   37 +++--
 drivers/pci/fsl_pci_init.c                    |   18 ++-
 include/asm-ppc/config.h                      |    3 +-
 include/asm-ppc/processor.h                   |   12 ++
 include/configs/MPC8536DS.h                   |    3 +
 include/configs/MPC8569MDS.h                  |    3 +
 include/configs/MPC8610HPCD.h                 |    2 +-
 include/configs/P1_P2_RDB.h                   |    3 +
 include/configs/P2020DS.h                     |   62 +------
 include/fdt_support.h                         |    1 +
 include/fsl_esdhc.h                           |    6 +-
 33 files changed, 517 insertions(+), 304 deletions(-)
 create mode 100644 board/freescale/common/ngpixis.c
 create mode 100644 board/freescale/common/ngpixis.h
 delete mode 100644 board/freescale/common/pixis.h

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

* [U-Boot] Please pull u-boot-mpc85xx
  2010-04-07  7:24 [U-Boot] Please pull u-boot-mpc85xx Kumar Gala
@ 2010-04-07 22:23 ` Wolfgang Denk
  2010-04-08 18:23   ` Timur Tabi
  0 siblings, 1 reply; 29+ messages in thread
From: Wolfgang Denk @ 2010-04-07 22:23 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1004070223390.21930@localhost.localdomain> you wrote:
> The following changes since commit ffa37fc98d71ef930bccd4e9eed37f6ce6b4d6af:
>   Wolfgang Denk (1):
>         Merge branch 'next'
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Dave Liu (2):
>       fsl-ddr: Fix the turnaround timing for TIMING_CFG_4
>       fsl-ddr: change the default burst mode for DDR3
> 
> Jerry Huang (1):
>       fsl_esdhc: Add function to reset the eSDHC controller
> 
> Kumar Gala (6):
>       fsl_esdhc: Always stop clock before changing frequency
>       85xx: Add defines for BUCSR bits to make code more readable
>       fdt: Add fdt_del_node_and_alias helper
>       ppc/8xxx: Delete PCI nodes from device tree if not configured
>       85xx: Added various P1012/P1013/P1021/P1022 defines
>       ppc/85xx: Use CONFIG_NS16550_MIN_FUNCTIONS to reduce NAND_SPL size
> 
> Roy Zang (1):
>       fsl_esdhc: Only modify the field we are changing in WML
> 
> Sandeep Gopalpet (1):
>       85xx: Set HID1[mbdd] on e500v2 rev5.0 or greater
> 
> Timur Tabi (2):
>       fsl: improve the PIXIS code and fix a few bugs
>       p2020ds: add alternate boot bank support using the ngPIXIS FPGA
> 
>  board/freescale/common/Makefile               |    1 +
>  board/freescale/common/ngpixis.c              |  136 +++++++++++++
>  board/freescale/common/ngpixis.h              |   57 ++++++
>  board/freescale/common/pixis.c                |  254 ++++++++++++-------------
>  board/freescale/common/pixis.h                |   31 ---
>  board/freescale/mpc8536ds/mpc8536ds.c         |    1 -
>  board/freescale/mpc8544ds/mpc8544ds.c         |    1 -
>  board/freescale/mpc8572ds/mpc8572ds.c         |    1 -
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c     |    2 -
>  board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |    1 -
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c     |    2 -
>  board/freescale/p2020ds/p2020ds.c             |   56 ++----
>  common/fdt_support.c                          |   13 ++
>  cpu/mpc512x/diu.c                             |    1 -
>  cpu/mpc85xx/Makefile                          |    4 +
>  cpu/mpc85xx/release.S                         |   12 +-
>  cpu/mpc85xx/start.S                           |   14 +-
>  cpu/mpc8xxx/cpu.c                             |   10 +-
>  cpu/mpc8xxx/ddr/ctrl_regs.c                   |   26 ++-
>  cpu/mpc8xxx/ddr/options.c                     |   14 +-
>  cpu/mpc8xxx/pci_cfg.c                         |   30 +++-
>  drivers/misc/fsl_law.c                        |    4 +-
>  drivers/mmc/fsl_esdhc.c                       |   37 +++--
>  drivers/pci/fsl_pci_init.c                    |   18 ++-
>  include/asm-ppc/config.h                      |    3 +-
>  include/asm-ppc/processor.h                   |   12 ++
>  include/configs/MPC8536DS.h                   |    3 +
>  include/configs/MPC8569MDS.h                  |    3 +
>  include/configs/MPC8610HPCD.h                 |    2 +-
>  include/configs/P1_P2_RDB.h                   |    3 +
>  include/configs/P2020DS.h                     |   62 +------
>  include/fdt_support.h                         |    1 +
>  include/fsl_esdhc.h                           |    6 +-
>  33 files changed, 517 insertions(+), 304 deletions(-)
>  create mode 100644 board/freescale/common/ngpixis.c
>  create mode 100644 board/freescale/common/ngpixis.h
>  delete mode 100644 board/freescale/common/pixis.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
All men should freely use those seven words which have the  power  to
make any marriage run smoothly: You know dear, you may be right.

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

* [U-Boot] Please pull u-boot-mpc85xx
  2010-04-07 22:23 ` Wolfgang Denk
@ 2010-04-08 18:23   ` Timur Tabi
  0 siblings, 0 replies; 29+ messages in thread
From: Timur Tabi @ 2010-04-08 18:23 UTC (permalink / raw)
  To: u-boot

On Wed, Apr 7, 2010 at 5:23 PM, Wolfgang Denk <wd@denx.de> wrote:

> Applied, thanks.

Wolfgang, would you also please apply my two print_size() patches?
They're not 85xx-specific, but I posted them to this list around the
same time.

-- 
Timur Tabi
Linux kernel developer at Freescale

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

* [U-Boot] Please pull u-boot-mpc85xx
  2014-11-25 17:36 York Sun
@ 2014-11-26 16:25 ` Tom Rini
  0 siblings, 0 replies; 29+ messages in thread
From: Tom Rini @ 2014-11-26 16:25 UTC (permalink / raw)
  To: u-boot

On Tue, Nov 25, 2014 at 09:36:34AM -0800, York Sun wrote:

> Tom,
> 
> The following changes since commit f196044dfd64745a163773c6c746f9e149ace127:
> 
>   ARM: atmel: add sama5d4 xplained ultra board support (2014-11-17 08:47:18 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 3b4b9a3377d6e7cba6060497b02644f9ff2ac67a:
> 
>   mmc: fsl_esdhc: fix f_max retrieval during init (2014-11-19 18:17:12 -0800)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141126/32a804bd/attachment.pgp>

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2014-11-25 17:36 York Sun
  2014-11-26 16:25 ` Tom Rini
  0 siblings, 1 reply; 29+ messages in thread
From: York Sun @ 2014-11-25 17:36 UTC (permalink / raw)
  To: u-boot

Tom,

The following changes since commit f196044dfd64745a163773c6c746f9e149ace127:

  ARM: atmel: add sama5d4 xplained ultra board support (2014-11-17 08:47:18 -0500)

are available in the git repository at:

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

for you to fetch changes up to 3b4b9a3377d6e7cba6060497b02644f9ff2ac67a:

  mmc: fsl_esdhc: fix f_max retrieval during init (2014-11-19 18:17:12 -0800)

----------------------------------------------------------------
Chunhe Lan (2):
      P1023RDB: Update default environment
      powerpc/t4rdb: Fix CPLD timing

Markus Niebel (1):
      mmc: fsl_esdhc: fix f_max retrieval during init

Nikhil Badola (1):
      config: MPC837X : Add complete USB EHCI support

Shaohui Xie (2):
      powerpc/t2080qds: fixup dtb for 10g-kr
      powerpc/t2080qds: fix for 1000BASE-KX

Shengzhou Liu (2):
      board/t2080qds: add readme for t2080qds
      net/fm: add 2.5G SGMII support

 arch/powerpc/include/asm/fsl_serdes.h   |   16 ++
 board/freescale/t208xqds/README         |  274 +++++++++++++++++++++++++++++++
 board/freescale/t208xqds/eth_t208xqds.c |  173 ++++++++++++++++++-
 drivers/mmc/fsl_esdhc.c                 |    2 +-
 drivers/net/fm/eth.c                    |   16 +-
 include/configs/MPC837XEMDS.h           |    5 +
 include/configs/MPC837XERDB.h           |    5 +
 include/configs/P1023RDB.h              |   43 +++++
 include/configs/T4240RDB.h              |    2 +-
 include/phy.h                           |    2 +
 10 files changed, 523 insertions(+), 15 deletions(-)
 create mode 100755 board/freescale/t208xqds/README

Thanks.

York

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

* [U-Boot] Please pull u-boot-mpc85xx
  2014-09-25 16:27 York Sun
@ 2014-09-27 11:36 ` Tom Rini
  0 siblings, 0 replies; 29+ messages in thread
From: Tom Rini @ 2014-09-27 11:36 UTC (permalink / raw)
  To: u-boot

On Thu, Sep 25, 2014 at 09:27:52AM -0700, York Sun wrote:

> Tom,
> 
> The following changes since commit 47d3debe1ab8315dc9ade22279e02f60eceda25b:
> 
>   Merge git://git.denx.de/u-boot-dm (2014-09-23 15:21:43 -0400)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 039b77396abb0ed78af34dadbd0786dfaf0e6aa9:
> 
>   powerpc: add --bss-plt to LDFLAGS (2014-09-25 09:22:37 -0700)
> 
> ----------------------------------------------------------------
> Chris Packham (1):
>       powerpc: add --bss-plt to LDFLAGS
> 
> Ebony Zhu (1):
>       powerpc/mpc85xx: Serdes protocol "00" is supported
> 
> Priyanka Jain (2):
>       powerpc/t104xrdb: Set DDR ODT to 75ohm
>       board/t1040qds: Add sgmii ports support in 0xA7 protocol
> 
> Shaveta Leekha (2):
>       powerpc/b4860: Updated default hwconfig to enable only cpc2
>       B4860QDS: Enable mac command support
> 
> ramneek mehresh (1):
>       powerpc/8xxx: Fix in USB device-tree fixup
> 
> vijay rai (2):
>       powerpc/t104xrdb: Add Support of rcw for T1042RDB in u-boot
>       powerpc/t104xrdb: Add T1042RDB board support
> 
>  arch/powerpc/config.mk                         |    1 +
>  arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c |    5 -----
>  arch/powerpc/cpu/mpc8xxx/fdt.c                 |   20 +++++++++-----------
>  board/freescale/t1040qds/eth.c                 |    4 ++++
>  board/freescale/t104xrdb/MAINTAINERS           |    1 +
>  board/freescale/t104xrdb/README                |   23 ++++++++++++++++++-----
>  board/freescale/t104xrdb/ddr.c                 |    4 ++--
>  board/freescale/t104xrdb/eth.c                 |   10 ++++++++++
>  board/freescale/t104xrdb/t1042_pi_rcw.cfg      |    7 +++++++
>  board/freescale/t104xrdb/t1042_rcw.cfg         |    8 ++++----
>  configs/T1042RDB_defconfig                     |    4 ++++
>  drivers/net/fm/t1040.c                         |    2 --
>  include/configs/B4860QDS.h                     |   12 ++++++++++--
>  include/configs/T104xRDB.h                     |   20 ++++++++++++--------
>  14 files changed, 82 insertions(+), 39 deletions(-)
>  create mode 100644 board/freescale/t104xrdb/t1042_pi_rcw.cfg
>  create mode 100644 configs/T1042RDB_defconfig

Applied to u-boot/master, thanks!

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

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2014-09-25 16:27 York Sun
  2014-09-27 11:36 ` Tom Rini
  0 siblings, 1 reply; 29+ messages in thread
From: York Sun @ 2014-09-25 16:27 UTC (permalink / raw)
  To: u-boot

Tom,

The following changes since commit 47d3debe1ab8315dc9ade22279e02f60eceda25b:

  Merge git://git.denx.de/u-boot-dm (2014-09-23 15:21:43 -0400)

are available in the git repository at:


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

for you to fetch changes up to 039b77396abb0ed78af34dadbd0786dfaf0e6aa9:

  powerpc: add --bss-plt to LDFLAGS (2014-09-25 09:22:37 -0700)

----------------------------------------------------------------
Chris Packham (1):
      powerpc: add --bss-plt to LDFLAGS

Ebony Zhu (1):
      powerpc/mpc85xx: Serdes protocol "00" is supported

Priyanka Jain (2):
      powerpc/t104xrdb: Set DDR ODT to 75ohm
      board/t1040qds: Add sgmii ports support in 0xA7 protocol

Shaveta Leekha (2):
      powerpc/b4860: Updated default hwconfig to enable only cpc2
      B4860QDS: Enable mac command support

ramneek mehresh (1):
      powerpc/8xxx: Fix in USB device-tree fixup

vijay rai (2):
      powerpc/t104xrdb: Add Support of rcw for T1042RDB in u-boot
      powerpc/t104xrdb: Add T1042RDB board support

 arch/powerpc/config.mk                         |    1 +
 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c |    5 -----
 arch/powerpc/cpu/mpc8xxx/fdt.c                 |   20 +++++++++-----------
 board/freescale/t1040qds/eth.c                 |    4 ++++
 board/freescale/t104xrdb/MAINTAINERS           |    1 +
 board/freescale/t104xrdb/README                |   23 ++++++++++++++++++-----
 board/freescale/t104xrdb/ddr.c                 |    4 ++--
 board/freescale/t104xrdb/eth.c                 |   10 ++++++++++
 board/freescale/t104xrdb/t1042_pi_rcw.cfg      |    7 +++++++
 board/freescale/t104xrdb/t1042_rcw.cfg         |    8 ++++----
 configs/T1042RDB_defconfig                     |    4 ++++
 drivers/net/fm/t1040.c                         |    2 --
 include/configs/B4860QDS.h                     |   12 ++++++++++--
 include/configs/T104xRDB.h                     |   20 ++++++++++++--------
 14 files changed, 82 insertions(+), 39 deletions(-)
 create mode 100644 board/freescale/t104xrdb/t1042_pi_rcw.cfg
 create mode 100644 configs/T1042RDB_defconfig

Thanks,

York

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

* [U-Boot] Please pull u-boot-mpc85xx
  2014-01-22 17:45 York Sun
@ 2014-01-24 16:19 ` Tom Rini
  0 siblings, 0 replies; 29+ messages in thread
From: Tom Rini @ 2014-01-24 16:19 UTC (permalink / raw)
  To: u-boot

On Wed, Jan 22, 2014 at 09:45:53AM -0800, York Sun wrote:

> Tom,
> 
> The following changes since commit e222b1f36fedb0363dbc21e0add7dc3848bae553:
> 
>   powerpc/mpc85xx:Increase binary size for P, B & T series boards. (2014-01-21
> 14:06:30 -0800)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to f28bea0003536976ebe2fb299cfc140702fec489:
> 
>   eSDHC: Calculate envaddr accroding to the address format (2014-01-22 08:56:44
> -0800)
> 
> ----------------------------------------------------------------
> Haijun.Zhang (3):
>       esdhc: Workaround for card can't be detected on T4240QDS
>       esdhc: Detecting 8 bit width before mmc initialization
>       eSDHC: Calculate envaddr accroding to the address format
> 
>  arch/powerpc/include/asm/config_mpc85xx.h |    3 +++
>  board/freescale/common/sdhc_boot.c        |   29 +++++++++++++++++++++++++++++
>  drivers/mmc/fsl_esdhc.c                   |    9 +++++++++
>  include/configs/T4240QDS.h                |    8 ++++++++
>  4 files changed, 49 insertions(+)

Applied to u-boot/master, thanks!

-- 
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/20140124/76ed939b/attachment.pgp>

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2014-01-22 17:45 York Sun
  2014-01-24 16:19 ` Tom Rini
  0 siblings, 1 reply; 29+ messages in thread
From: York Sun @ 2014-01-22 17:45 UTC (permalink / raw)
  To: u-boot

Tom,

The following changes since commit e222b1f36fedb0363dbc21e0add7dc3848bae553:

  powerpc/mpc85xx:Increase binary size for P, B & T series boards. (2014-01-21
14:06:30 -0800)

are available in the git repository at:

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

for you to fetch changes up to f28bea0003536976ebe2fb299cfc140702fec489:

  eSDHC: Calculate envaddr accroding to the address format (2014-01-22 08:56:44
-0800)

----------------------------------------------------------------
Haijun.Zhang (3):
      esdhc: Workaround for card can't be detected on T4240QDS
      esdhc: Detecting 8 bit width before mmc initialization
      eSDHC: Calculate envaddr accroding to the address format

 arch/powerpc/include/asm/config_mpc85xx.h |    3 +++
 board/freescale/common/sdhc_boot.c        |   29 +++++++++++++++++++++++++++++
 drivers/mmc/fsl_esdhc.c                   |    9 +++++++++
 include/configs/T4240QDS.h                |    8 ++++++++
 4 files changed, 49 insertions(+)

Thanks,

York

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

* [U-Boot] Please pull u-boot-mpc85xx
  2012-04-25  5:11 Andy Fleming
@ 2012-04-30 14:51 ` Wolfgang Denk
  0 siblings, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2012-04-30 14:51 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1335330687-19925-1-git-send-email-afleming@freescale.com> you wrote:
> 
> The following changes since commit 61ddce07f8b96c5df7d00466b4da9edaecb0eff1:
> 
>   sandbox: Use the new run_command() (2012-04-23 22:53:54 +0200)
> 
> are available in the git repository at:
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Chunhe Lan (1):
>       powerpc/p1023rds: Disable nor flash node and enable nand flash node
> 
> Jerry Huang (1):
>       PowerPC: correct the SATA for p1/p2 rdb-pc platform
> 
> Liu Gang (8):
>       powerpc/srio: Rewrite the struct ccsr_rio
>       powerpc/corenet_ds: Correct the compilation errors about ENV
>       powerpc/corenet_ds: Document for the boot from SRIO
>       powerpc/corenet_ds: Master module for boot from SRIO
>       powerpc/corenet_ds: Slave module for boot from SRIO
>       powerpc/corenet_ds: Slave uploads ucode when boot from SRIO
>       powerpc/corenet_ds: Slave reads ENV from master when boot from SRIO
>       powerpc/corenet_ds: Slave core in holdoff when boot from SRIO
> 
> Prabhakar Kushwaha (4):
>       powerpc/85xx:Avoid hardcoded vector address for IVORs
>       powerpc/85xx:Fix IVORs addr after vector table relocation
>       powerpc/85xx:Avoid vector table compilation for nand_spl
>       powerpc/85xx:Fix lds for nand boot debug info
> 
> Shaohui Xie (2):
>       powerpc/p2041rdb: add NAND and NAND boot support
>       powerpc/p2041rdb: add env in NAND support
> 
> Timur Tabi (3):
>       cmd_bdinfo: display the address map size (32-bit vs. 36-bit)
>       powerpc/85xx: don't display address map size (32-bit vs. 36-bit) during boot
>       powerpc/85xx: don't touch MAS7 on e500v1 when relocating CCSR
> 
> York Sun (1):
>       powerpc/mpc8xxx: Fix CONFIG_DDR_RAW_TIMING for two boards
> 
>  README                                      |   24 ++
>  arch/powerpc/cpu/mpc85xx/cpu_init.c         |    9 +-
>  arch/powerpc/cpu/mpc85xx/start.S            |  112 ++++++---
>  arch/powerpc/cpu/mpc85xx/u-boot-nand.lds    |    4 +-
>  arch/powerpc/cpu/mpc8xxx/srio.c             |  210 +++++++++++++++
>  arch/powerpc/include/asm/config_mpc85xx.h   |   46 ++++
>  arch/powerpc/include/asm/fsl_srio.h         |   64 +++++
>  arch/powerpc/include/asm/immap_85xx.h       |  387 ++++++++++++++++-----------
>  board/freescale/common/p_corenet/law.c      |   13 +
>  board/freescale/common/p_corenet/tlb.c      |   19 ++
>  board/freescale/corenet_ds/corenet_ds.c     |    4 -
>  board/freescale/mpc8536ds/mpc8536ds.c       |    7 +-
>  board/freescale/mpc8572ds/mpc8572ds.c       |    6 +-
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c   |    3 -
>  board/freescale/p1010rdb/ddr.c              |    6 +-
>  board/freescale/p1010rdb/p1010rdb.c         |    6 +-
>  board/freescale/p1022ds/p1022ds.c           |    8 +-
>  board/freescale/p1023rds/p1023rds.c         |    6 +
>  board/freescale/p1_p2_rdb/p1_p2_rdb.c       |    4 +-
>  board/freescale/p1_p2_rdb_pc/ddr.c          |    4 +-
>  board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c |    8 +-
>  board/freescale/p2020ds/p2020ds.c           |    8 +-
>  board/freescale/p2041rdb/p2041rdb.c         |    4 -
>  board/freescale/p3060qds/p3060qds.c         |    3 -
>  boards.cfg                                  |    7 +
>  common/Makefile                             |    1 +
>  common/cmd_bdinfo.c                         |    8 +
>  common/cmd_nvedit.c                         |    3 +-
>  common/env_remote.c                         |   79 ++++++
>  doc/README.srio-boot-corenet                |  103 +++++++
>  drivers/net/fm/fm.c                         |    2 +
>  include/configs/P1010RDB.h                  |    2 +-
>  include/configs/P2041RDB.h                  |   59 ++++-
>  include/configs/corenet_ds.h                |   75 +++++
>  include/configs/p1_p2_rdb_pc.h              |    4 +-
>  35 files changed, 1047 insertions(+), 261 deletions(-)
>  create mode 100644 arch/powerpc/include/asm/fsl_srio.h
>  create mode 100644 common/env_remote.c
>  create mode 100644 doc/README.srio-boot-corenet

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
Premature optimization is the root of all evil.         -- D.E. Knuth

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2012-04-25  5:11 Andy Fleming
  2012-04-30 14:51 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Andy Fleming @ 2012-04-25  5:11 UTC (permalink / raw)
  To: u-boot


The following changes since commit 61ddce07f8b96c5df7d00466b4da9edaecb0eff1:

  sandbox: Use the new run_command() (2012-04-23 22:53:54 +0200)

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

Chunhe Lan (1):
      powerpc/p1023rds: Disable nor flash node and enable nand flash node

Jerry Huang (1):
      PowerPC: correct the SATA for p1/p2 rdb-pc platform

Liu Gang (8):
      powerpc/srio: Rewrite the struct ccsr_rio
      powerpc/corenet_ds: Correct the compilation errors about ENV
      powerpc/corenet_ds: Document for the boot from SRIO
      powerpc/corenet_ds: Master module for boot from SRIO
      powerpc/corenet_ds: Slave module for boot from SRIO
      powerpc/corenet_ds: Slave uploads ucode when boot from SRIO
      powerpc/corenet_ds: Slave reads ENV from master when boot from SRIO
      powerpc/corenet_ds: Slave core in holdoff when boot from SRIO

Prabhakar Kushwaha (4):
      powerpc/85xx:Avoid hardcoded vector address for IVORs
      powerpc/85xx:Fix IVORs addr after vector table relocation
      powerpc/85xx:Avoid vector table compilation for nand_spl
      powerpc/85xx:Fix lds for nand boot debug info

Shaohui Xie (2):
      powerpc/p2041rdb: add NAND and NAND boot support
      powerpc/p2041rdb: add env in NAND support

Timur Tabi (3):
      cmd_bdinfo: display the address map size (32-bit vs. 36-bit)
      powerpc/85xx: don't display address map size (32-bit vs. 36-bit) during boot
      powerpc/85xx: don't touch MAS7 on e500v1 when relocating CCSR

York Sun (1):
      powerpc/mpc8xxx: Fix CONFIG_DDR_RAW_TIMING for two boards

 README                                      |   24 ++
 arch/powerpc/cpu/mpc85xx/cpu_init.c         |    9 +-
 arch/powerpc/cpu/mpc85xx/start.S            |  112 ++++++---
 arch/powerpc/cpu/mpc85xx/u-boot-nand.lds    |    4 +-
 arch/powerpc/cpu/mpc8xxx/srio.c             |  210 +++++++++++++++
 arch/powerpc/include/asm/config_mpc85xx.h   |   46 ++++
 arch/powerpc/include/asm/fsl_srio.h         |   64 +++++
 arch/powerpc/include/asm/immap_85xx.h       |  387 ++++++++++++++++-----------
 board/freescale/common/p_corenet/law.c      |   13 +
 board/freescale/common/p_corenet/tlb.c      |   19 ++
 board/freescale/corenet_ds/corenet_ds.c     |    4 -
 board/freescale/mpc8536ds/mpc8536ds.c       |    7 +-
 board/freescale/mpc8572ds/mpc8572ds.c       |    6 +-
 board/freescale/mpc8641hpcn/mpc8641hpcn.c   |    3 -
 board/freescale/p1010rdb/ddr.c              |    6 +-
 board/freescale/p1010rdb/p1010rdb.c         |    6 +-
 board/freescale/p1022ds/p1022ds.c           |    8 +-
 board/freescale/p1023rds/p1023rds.c         |    6 +
 board/freescale/p1_p2_rdb/p1_p2_rdb.c       |    4 +-
 board/freescale/p1_p2_rdb_pc/ddr.c          |    4 +-
 board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c |    8 +-
 board/freescale/p2020ds/p2020ds.c           |    8 +-
 board/freescale/p2041rdb/p2041rdb.c         |    4 -
 board/freescale/p3060qds/p3060qds.c         |    3 -
 boards.cfg                                  |    7 +
 common/Makefile                             |    1 +
 common/cmd_bdinfo.c                         |    8 +
 common/cmd_nvedit.c                         |    3 +-
 common/env_remote.c                         |   79 ++++++
 doc/README.srio-boot-corenet                |  103 +++++++
 drivers/net/fm/fm.c                         |    2 +
 include/configs/P1010RDB.h                  |    2 +-
 include/configs/P2041RDB.h                  |   59 ++++-
 include/configs/corenet_ds.h                |   75 +++++
 include/configs/p1_p2_rdb_pc.h              |    4 +-
 35 files changed, 1047 insertions(+), 261 deletions(-)
 create mode 100644 arch/powerpc/include/asm/fsl_srio.h
 create mode 100644 common/env_remote.c
 create mode 100644 doc/README.srio-boot-corenet

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

* [U-Boot] Please pull u-boot-mpc85xx
  2011-09-09 14:57 Kumar Gala
@ 2011-09-09 22:19 ` Wolfgang Denk
  0 siblings, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2011-09-09 22:19 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1109090956050.9395@right.am.freescale.net> you wrote:
> The following changes since commit 49ea2e342b6b9c35623915125e4e0af734cfa594:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-mmc
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Zhao Chenhui (3):
>       powerpc/mpc8568mds: set pci1_hose.config_table after fsl_setup_hose
>       powerpc/mpc8548cds: set pci1_hose.config_table after fsl_setup_hose
>       powerpc/mpc8610hpcd: set pci1_hose.config_table after fsl_setup_hose
> 
>  board/freescale/mpc8548cds/mpc8548cds.c   |    6 +++---
>  board/freescale/mpc8568mds/mpc8568mds.c   |   11 +++++------
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c |   11 +++++------
>  3 files changed, 13 insertions(+), 15 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
An Ada exception is when a routine gets in trouble and says
'Beam me up, Scotty'.

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2011-09-09 14:57 Kumar Gala
  2011-09-09 22:19 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Kumar Gala @ 2011-09-09 14:57 UTC (permalink / raw)
  To: u-boot

The following changes since commit 49ea2e342b6b9c35623915125e4e0af734cfa594:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-mmc

are available in the git repository at:

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

Zhao Chenhui (3):
      powerpc/mpc8568mds: set pci1_hose.config_table after fsl_setup_hose
      powerpc/mpc8548cds: set pci1_hose.config_table after fsl_setup_hose
      powerpc/mpc8610hpcd: set pci1_hose.config_table after fsl_setup_hose

 board/freescale/mpc8548cds/mpc8548cds.c   |    6 +++---
 board/freescale/mpc8568mds/mpc8568mds.c   |   11 +++++------
 board/freescale/mpc8610hpcd/mpc8610hpcd.c |   11 +++++------
 3 files changed, 13 insertions(+), 15 deletions(-)

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

* [U-Boot] Please pull u-boot-mpc85xx
  2010-07-08 14:26 Kumar Gala
@ 2010-07-14 19:42 ` Wolfgang Denk
  0 siblings, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2010-07-14 19:42 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1007080925590.17911@localhost.localdomain> you wrote:
> The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
>   Wolfgang Denk (1):
>         Make sure that argv[] argument pointers are not modified.
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Becky Bruce (8):
>       powerpc: Update configs to properly set FSL_ELBC
>       83xx/85xx/86xx: LBC register cleanup
>       mpc85xx: tlb.c cleanups
>       mpc85xx: Add print_tlbcam() function
>       drivers/misc/fsl_law.c: Rearrange code to avoid duplication
>       fsl_law.c: Add print_laws() for FSL_CORENET platforms.
>       mpc85xx: Add reginfo command
>       powerpc 83xx/85xx: Merge lbc upmconfig code
> 
> Kim Phillips (3):
>       fdt: move fsl specific code from common fdt area to mpc8xxx/fdt.c
>       powerpc/8xxx: Distinguish between incompatible SEC h/w types
>       powerpc/8xxx: Add base support for the SEC4
> 
> Kumar Gala (9):
>       powerpc/85xx: Add additional p4080 related defines/structs

I have not seen this patch on the list ???

>       mpc8xxx: Remove cpu-handles for cpus we delete
>       powerpc/8xxx: Add is_core_disabled to remove disabled cores from dtb
>       powerpc/85xx: Add command to report errata workarounds

Sorry, just NAKed.

>       powerpc/85xx: Report workaround of errata SATA-A001

Ditto.

>       ppc/85xx: Add a structure defn for PIXIS registers
>       Move ICS CLK chip frequenty calculation code into a common board library

s/frequenty/frequency/ ?

>       powerpc/85xx: Add recognition of e5500 core

Please see question on ML.

>       powerpc/85xx: Add support for link stack & STAC on e5500
> 
> Poonam Aggrwal (2):
>       85xx/p1_p2_rdb: enable hwconfig
>       85xx/p1_p2_rdb: PCIe E1000 card support added.
> 
> Timur Tabi (2):
>       fsl: add LAW target to fsl_pci_info structure
>       powerpc: add support for the Freescale P1022DS reference board

Review comment sent.



Sorry, not pulled yet.

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
Don't tell me how hard you work.  Tell me how much you get done.
                                                     -- James J. Ling

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2010-07-08 14:26 Kumar Gala
  2010-07-14 19:42 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Kumar Gala @ 2010-07-08 14:26 UTC (permalink / raw)
  To: u-boot

The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
  Wolfgang Denk (1):
        Make sure that argv[] argument pointers are not modified.

are available in the git repository at:

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

Becky Bruce (8):
      powerpc: Update configs to properly set FSL_ELBC
      83xx/85xx/86xx: LBC register cleanup
      mpc85xx: tlb.c cleanups
      mpc85xx: Add print_tlbcam() function
      drivers/misc/fsl_law.c: Rearrange code to avoid duplication
      fsl_law.c: Add print_laws() for FSL_CORENET platforms.
      mpc85xx: Add reginfo command
      powerpc 83xx/85xx: Merge lbc upmconfig code

Kim Phillips (3):
      fdt: move fsl specific code from common fdt area to mpc8xxx/fdt.c
      powerpc/8xxx: Distinguish between incompatible SEC h/w types
      powerpc/8xxx: Add base support for the SEC4

Kumar Gala (9):
      powerpc/85xx: Add additional p4080 related defines/structs
      mpc8xxx: Remove cpu-handles for cpus we delete
      powerpc/8xxx: Add is_core_disabled to remove disabled cores from dtb
      powerpc/85xx: Add command to report errata workarounds
      powerpc/85xx: Report workaround of errata SATA-A001
      ppc/85xx: Add a structure defn for PIXIS registers
      Move ICS CLK chip frequenty calculation code into a common board library
      powerpc/85xx: Add recognition of e5500 core
      powerpc/85xx: Add support for link stack & STAC on e5500

Poonam Aggrwal (2):
      85xx/p1_p2_rdb: enable hwconfig
      85xx/p1_p2_rdb: PCIe E1000 card support added.

Timur Tabi (2):
      fsl: add LAW target to fsl_pci_info structure
      powerpc: add support for the Freescale P1022DS reference board

 MAINTAINERS                                    |    1 +
 MAKEALL                                        |    1 +
 Makefile                                       |    1 +
 arch/powerpc/cpu/mpc83xx/cpu.c                 |   66 ----
 arch/powerpc/cpu/mpc83xx/cpu_init.c            |   53 +---
 arch/powerpc/cpu/mpc83xx/nand_init.c           |    4 +-
 arch/powerpc/cpu/mpc83xx/speed.c               |    2 +-
 arch/powerpc/cpu/mpc85xx/Makefile              |    2 +
 arch/powerpc/cpu/mpc85xx/cmd_errata.c          |   49 +++
 arch/powerpc/cpu/mpc85xx/cpu.c                 |   98 ++----
 arch/powerpc/cpu/mpc85xx/cpu_init.c            |   58 +---
 arch/powerpc/cpu/mpc85xx/cpu_init_nand.c       |    6 +-
 arch/powerpc/cpu/mpc85xx/fdt.c                 |    4 +-
 arch/powerpc/cpu/mpc85xx/mp.c                  |   23 ++
 arch/powerpc/cpu/mpc85xx/p1022_serdes.c        |  166 +++++++++
 arch/powerpc/cpu/mpc85xx/speed.c               |    5 +-
 arch/powerpc/cpu/mpc85xx/tlb.c                 |   70 +++--
 arch/powerpc/cpu/mpc86xx/cpu.c                 |   15 +-
 arch/powerpc/cpu/mpc86xx/cpu_init.c            |   55 +---
 arch/powerpc/cpu/mpc86xx/fdt.c                 |    5 +-
 arch/powerpc/cpu/mpc86xx/mp.c                  |   17 +
 arch/powerpc/cpu/mpc86xx/speed.c               |    5 +-
 arch/powerpc/cpu/mpc8xxx/Makefile              |    8 +-
 arch/powerpc/cpu/mpc8xxx/fdt.c                 |  178 +++++++++-
 arch/powerpc/cpu/mpc8xxx/fsl_lbc.c             |  134 +++++++
 arch/powerpc/include/asm/config.h              |   15 +
 arch/powerpc/include/asm/fsl_law.h             |    4 +-
 arch/powerpc/include/asm/fsl_lbc.h             |  112 ++++---
 arch/powerpc/include/asm/fsl_pci.h             |   19 +-
 arch/powerpc/include/asm/fsl_serdes.h          |    2 +
 arch/powerpc/include/asm/immap_83xx.h          |   13 +-
 arch/powerpc/include/asm/immap_85xx.h          |  128 ++++---
 arch/powerpc/include/asm/immap_86xx.h          |   49 +---
 arch/powerpc/include/asm/mmu.h                 |    2 +
 arch/powerpc/include/asm/mp.h                  |    3 +-
 arch/powerpc/include/asm/processor.h           |    4 +-
 board/atum8548/atum8548.c                      |    2 +-
 board/esd/vme8349/vme8349.c                    |    2 +-
 board/freescale/common/Makefile                |    2 +
 board/freescale/common/ics307_clk.c            |   88 +++++
 board/freescale/common/ics307_clk.h            |   30 ++
 board/freescale/common/ngpixis.h               |    2 +-
 board/freescale/common/pixis.h                 |  182 +++++++++
 board/freescale/mpc8313erdb/sdram.c            |    2 +-
 board/freescale/mpc8349emds/mpc8349emds.c      |    2 +-
 board/freescale/mpc8349itx/mpc8349itx.c        |    7 +-
 board/freescale/mpc8360emds/mpc8360emds.c      |    6 +-
 board/freescale/mpc8360erdk/nand.c             |    6 +-
 board/freescale/mpc8540ads/mpc8540ads.c        |    8 +-
 board/freescale/mpc8541cds/mpc8541cds.c        |   13 +-
 board/freescale/mpc8544ds/mpc8544ds.c          |    2 +-
 board/freescale/mpc8548cds/mpc8548cds.c        |   13 +-
 board/freescale/mpc8555cds/mpc8555cds.c        |   12 +-
 board/freescale/mpc8560ads/mpc8560ads.c        |    8 +-
 board/freescale/mpc8568mds/mpc8568mds.c        |   11 +-
 board/freescale/mpc8569mds/mpc8569mds.c        |    2 +-
 board/freescale/p1022ds/Makefile               |   39 ++
 board/freescale/p1022ds/config.mk              |   14 +
 board/freescale/p1022ds/ddr.c                  |  106 ++++++
 board/freescale/p1022ds/law.c                  |   21 +
 board/freescale/p1022ds/p1022ds.c              |  285 ++++++++++++++
 board/freescale/p1022ds/tlb.c                  |   76 ++++
 board/freescale/p2020ds/p2020ds.c              |  149 --------
 board/mpc8540eval/mpc8540eval.c                |    6 +-
 board/pm854/pm854.c                            |    2 +-
 board/pm856/pm856.c                            |    2 +-
 board/sbc8349/sbc8349.c                        |    2 +-
 board/sbc8548/sbc8548.c                        |   20 +-
 board/sbc8560/sbc8560.c                        |    6 +-
 board/sheldon/simpc8313/sdram.c                |    2 +-
 board/sheldon/simpc8313/simpc8313.c            |    2 +-
 board/socrates/socrates.c                      |   31 +-
 board/tqc/tqm834x/tqm834x.c                    |    8 +-
 board/tqc/tqm85xx/nand.c                       |   12 +-
 board/tqc/tqm85xx/tqm85xx.c                    |   35 +-
 board/xes/xpedite5170/xpedite5170.c            |   10 +-
 board/xes/xpedite5200/xpedite5200.c            |   11 +-
 board/xes/xpedite5370/xpedite5370.c            |    9 +-
 boards.cfg                                     |    1 +
 common/cmd_reginfo.c                           |    5 +
 common/fdt_support.c                           |  129 -------
 drivers/misc/fsl_law.c                         |  131 +++----
 drivers/mtd/nand/fsl_elbc_nand.c               |   18 +-
 include/configs/MPC8313ERDB.h                  |    1 +
 include/configs/MPC8315ERDB.h                  |    1 +
 include/configs/MPC837XEMDS.h                  |    1 +
 include/configs/MPC837XERDB.h                  |    1 +
 include/configs/MPC8536DS.h                    |    1 +
 include/configs/MPC8540EVAL.h                  |    1 +
 include/configs/MPC8541CDS.h                   |    1 +
 include/configs/MPC8544DS.h                    |    1 +
 include/configs/MPC8548CDS.h                   |    1 +
 include/configs/MPC8555CDS.h                   |    1 +
 include/configs/MPC8560ADS.h                   |    1 +
 include/configs/MPC8568MDS.h                   |    1 +
 include/configs/MPC8569MDS.h                   |    1 +
 include/configs/MPC8572DS.h                    |    1 +
 include/configs/P1022DS.h                      |  470 ++++++++++++++++++++++++
 include/configs/P1_P2_RDB.h                    |    4 +
 include/configs/P2020DS.h                      |   17 +-
 include/configs/PM854.h                        |    1 +
 include/configs/PM856.h                        |    1 +
 include/configs/SBC8540.h                      |    1 +
 include/configs/SIMPC8313.h                    |    1 +
 include/configs/TQM85xx.h                      |    1 +
 include/configs/XPEDITE5200.h                  |    1 +
 include/configs/XPEDITE5370.h                  |    2 +
 include/configs/sbc8548.h                      |    1 +
 include/configs/sbc8560.h                      |    1 +
 include/configs/socrates.h                     |    1 +
 include/configs/stxgp3.h                       |    1 +
 include/configs/stxssa.h                       |    1 +
 include/fdt_support.h                          |    2 +-
 include/mpc85xx.h                              |    2 -
 nand_spl/board/freescale/mpc8536ds/nand_boot.c |    5 +-
 nand_spl/nand_boot_fsl_elbc.c                  |    4 +-
 116 files changed, 2391 insertions(+), 1049 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/cmd_errata.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p1022_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc8xxx/fsl_lbc.c
 create mode 100644 board/freescale/common/ics307_clk.c
 create mode 100644 board/freescale/common/ics307_clk.h
 create mode 100644 board/freescale/common/pixis.h
 create mode 100644 board/freescale/p1022ds/Makefile
 create mode 100644 board/freescale/p1022ds/config.mk
 create mode 100644 board/freescale/p1022ds/ddr.c
 create mode 100644 board/freescale/p1022ds/law.c
 create mode 100644 board/freescale/p1022ds/p1022ds.c
 create mode 100644 board/freescale/p1022ds/tlb.c
 create mode 100644 include/configs/P1022DS.h

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

* [U-Boot] Please pull u-boot-mpc85xx
  2010-04-27  3:42 Kumar Gala
@ 2010-04-27 21:01 ` Wolfgang Denk
  0 siblings, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2010-04-27 21:01 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1004262242320.2178@localhost.localdomain> you wrote:
> The following changes since commit 6e5fb4eec3702a13770769a5a48a9423aa68ee9c:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-mmc
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Dave Liu (6):
>       ppc/p4080: Extend the GUTS memory map
>       fsl-ddr: add the macro for Rtt_Nom definition
>       fsl-ddr: Add extra cycle to turnaround times
>       fsl_sata: Add the workaround for errata SATA-A001
>       fsl_sata: Move the snoop bit to another place
>       85xx: clean up the io_sel for PCI express of P1022
> 
> Detlev Zundel (1):
>       85xx/socrates: Remove NFS support to fit image size.
> 
> Kumar Gala (5):
>       ppc/85xx: Fixup PCI nodes for P1_P2_RDB
>       ppc/p4080: Add p4080 DEVDISR2 & SRDS_PLLCR0 defines
>       85xx: Convert cpu_init_f code to use out_be32 for LBC registers
>       85xx: Fix compile warning
>       ppc: Split MPC83xx SERDES code from MPC85xx/MPC86xx/QorIQ
> 
> Lan Chunhe (1):
>       mpc85xx: Add the ability to set LCRR[CLKDIV] to improve R/W speed of flash
> 
> Srikanth Srinivasan (1):
>       ppc/p4080: Fix synchronous frequency calculations
> 
>  arch/powerpc/cpu/mpc83xx/serdes.c             |    2 +-
>  arch/powerpc/cpu/mpc85xx/cpu.c                |   16 +++----
>  arch/powerpc/cpu/mpc85xx/cpu_init.c           |   51 +++++++++++++++--------
>  arch/powerpc/cpu/mpc85xx/speed.c              |   28 ++++++++-----
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c      |    2 +
>  arch/powerpc/cpu/mpc8xxx/pci_cfg.c            |   13 +++---
>  arch/powerpc/include/asm/fsl_ddr_sdram.h      |    8 +++-
>  arch/powerpc/include/asm/fsl_lbc.h            |    6 ++-
>  arch/powerpc/include/asm/fsl_mpc83xx_serdes.h |   36 +++++++++++++++++
>  arch/powerpc/include/asm/immap_85xx.h         |   53 ++++++++++++++++++++++---
>  board/freescale/mpc837xemds/mpc837xemds.c     |    2 +-
>  board/freescale/mpc837xemds/pci.c             |    2 +-
>  board/freescale/mpc837xerdb/mpc837xerdb.c     |    2 +-
>  board/freescale/p1_p2_rdb/p1_p2_rdb.c         |    4 ++
>  drivers/block/fsl_sata.c                      |   22 ++++++++++
>  drivers/block/fsl_sata.h                      |    8 +++-
>  include/configs/socrates.h                    |    8 ++--
>  17 files changed, 201 insertions(+), 62 deletions(-)
>  create mode 100644 arch/powerpc/include/asm/fsl_mpc83xx_serdes.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
The human mind ordinarily operates at only ten percent of its capaci-
ty - the rest is overhead for the operating system.

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2010-04-27  3:42 Kumar Gala
  2010-04-27 21:01 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Kumar Gala @ 2010-04-27  3:42 UTC (permalink / raw)
  To: u-boot

The following changes since commit 6e5fb4eec3702a13770769a5a48a9423aa68ee9c:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-mmc

are available in the git repository at:

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

Dave Liu (6):
      ppc/p4080: Extend the GUTS memory map
      fsl-ddr: add the macro for Rtt_Nom definition
      fsl-ddr: Add extra cycle to turnaround times
      fsl_sata: Add the workaround for errata SATA-A001
      fsl_sata: Move the snoop bit to another place
      85xx: clean up the io_sel for PCI express of P1022

Detlev Zundel (1):
      85xx/socrates: Remove NFS support to fit image size.

Kumar Gala (5):
      ppc/85xx: Fixup PCI nodes for P1_P2_RDB
      ppc/p4080: Add p4080 DEVDISR2 & SRDS_PLLCR0 defines
      85xx: Convert cpu_init_f code to use out_be32 for LBC registers
      85xx: Fix compile warning
      ppc: Split MPC83xx SERDES code from MPC85xx/MPC86xx/QorIQ

Lan Chunhe (1):
      mpc85xx: Add the ability to set LCRR[CLKDIV] to improve R/W speed of flash

Srikanth Srinivasan (1):
      ppc/p4080: Fix synchronous frequency calculations

 arch/powerpc/cpu/mpc83xx/serdes.c             |    2 +-
 arch/powerpc/cpu/mpc85xx/cpu.c                |   16 +++----
 arch/powerpc/cpu/mpc85xx/cpu_init.c           |   51 +++++++++++++++--------
 arch/powerpc/cpu/mpc85xx/speed.c              |   28 ++++++++-----
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c      |    2 +
 arch/powerpc/cpu/mpc8xxx/pci_cfg.c            |   13 +++---
 arch/powerpc/include/asm/fsl_ddr_sdram.h      |    8 +++-
 arch/powerpc/include/asm/fsl_lbc.h            |    6 ++-
 arch/powerpc/include/asm/fsl_mpc83xx_serdes.h |   36 +++++++++++++++++
 arch/powerpc/include/asm/immap_85xx.h         |   53 ++++++++++++++++++++++---
 board/freescale/mpc837xemds/mpc837xemds.c     |    2 +-
 board/freescale/mpc837xemds/pci.c             |    2 +-
 board/freescale/mpc837xerdb/mpc837xerdb.c     |    2 +-
 board/freescale/p1_p2_rdb/p1_p2_rdb.c         |    4 ++
 drivers/block/fsl_sata.c                      |   22 ++++++++++
 drivers/block/fsl_sata.h                      |    8 +++-
 include/configs/socrates.h                    |    8 ++--
 17 files changed, 201 insertions(+), 62 deletions(-)
 create mode 100644 arch/powerpc/include/asm/fsl_mpc83xx_serdes.h

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

* [U-Boot] Please pull u-boot-mpc85xx
  2010-01-26  4:38 Kumar Gala
@ 2010-01-26 21:32 ` Wolfgang Denk
  0 siblings, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2010-01-26 21:32 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1001252237490.598@localhost.localdomain> you wrote:
> The following changes since commit 2903ad33a71251a3a87485b5b185852c8998f209:
>   Mike Frysinger (1):
>         jffs2: fix hangs/crashs when not using CONFIG_JFFS2_PART_SIZE
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Dave Liu (1):
>       Fix the local bus divider mapping
> 
> James Yang (1):
>       ppc/p4080: Fix mask width of RCW fields MEM_PLL_RAT, SYS_PLL_RAT
> 
> Kumar Gala (1):
>       Revert "ppc/p4080: Fix reporting of PME & FM clock frequencies"
> 
> Li Yang (1):
>       fsl_esdhc: fix wrong clock mask
> 
> Liu Yu (3):
>       ppc/85xx: Add PIB/ATM support for MPC8569mds
>       ppc/85xx: Add ATM config for MPC8569MDS
>       qe: fixup the snum for MPC8569 Rev2.0
> 
> Vivek Mahajan (1):
>       85xx/p1_p2_rdb: enable hwconfig
> 
>  MAKEALL                                 |    1 +
>  Makefile                                |    3 ++-
>  board/freescale/common/pq-mds-pib.c     |    2 +-
>  board/freescale/mpc8569mds/mpc8569mds.c |    7 +++++++
>  cpu/mpc85xx/fdt.c                       |   18 ++++++++++++++++++
>  cpu/mpc85xx/speed.c                     |   23 ++++++++++++++---------
>  include/configs/MPC8569MDS.h            |    5 +++++
>  include/configs/P1_P2_RDB.h             |    1 +
>  include/fsl_esdhc.h                     |    2 +-
>  9 files changed, 50 insertions(+), 12 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
No user-servicable parts inside. Refer to qualified service personnel.

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2010-01-26  4:38 Kumar Gala
  2010-01-26 21:32 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Kumar Gala @ 2010-01-26  4:38 UTC (permalink / raw)
  To: u-boot

The following changes since commit 2903ad33a71251a3a87485b5b185852c8998f209:
  Mike Frysinger (1):
        jffs2: fix hangs/crashs when not using CONFIG_JFFS2_PART_SIZE

are available in the git repository at:

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

Dave Liu (1):
      Fix the local bus divider mapping

James Yang (1):
      ppc/p4080: Fix mask width of RCW fields MEM_PLL_RAT, SYS_PLL_RAT

Kumar Gala (1):
      Revert "ppc/p4080: Fix reporting of PME & FM clock frequencies"

Li Yang (1):
      fsl_esdhc: fix wrong clock mask

Liu Yu (3):
      ppc/85xx: Add PIB/ATM support for MPC8569mds
      ppc/85xx: Add ATM config for MPC8569MDS
      qe: fixup the snum for MPC8569 Rev2.0

Vivek Mahajan (1):
      85xx/p1_p2_rdb: enable hwconfig

 MAKEALL                                 |    1 +
 Makefile                                |    3 ++-
 board/freescale/common/pq-mds-pib.c     |    2 +-
 board/freescale/mpc8569mds/mpc8569mds.c |    7 +++++++
 cpu/mpc85xx/fdt.c                       |   18 ++++++++++++++++++
 cpu/mpc85xx/speed.c                     |   23 ++++++++++++++---------
 include/configs/MPC8569MDS.h            |    5 +++++
 include/configs/P1_P2_RDB.h             |    1 +
 include/fsl_esdhc.h                     |    2 +-
 9 files changed, 50 insertions(+), 12 deletions(-)

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

* [U-Boot] Please pull u-boot-mpc85xx
  2009-09-22 17:06 Kumar Gala
@ 2009-09-23 22:14 ` Wolfgang Denk
  0 siblings, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2009-09-23 22:14 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.0909221206300.5780@localhost.localdomain> you wrote:
> The following changes since commit 3b6a9267f0de7b85d387fa4123d0b58379363447:
>   Wolfgang Denk (1):
>         board/flagadm/flash.c: fix compile warning
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kumar Gala (15):
>       ppc/85xx: Fix LCRR_CLKDIV defines
>       ppc/85xx: Simplify the top makefile for 36-bit config for MPC8572DS
>       ppc/85xx: Simplify the top makefile for 36-bit config for P2020DS
>       ppc/85xx: Simplify the top makefile for P1_P2_RDB boards
>       ppc/85xx: Clean up p1_p2_rdb PCI setup
>       ppc/85xx: Clean up p2020ds PCI setup code
>       ppc/85xx: Clean up mpc8572DS PCI setup code
>       ppc/85xx: Clean up use of LAWAR defines
>       ppc/p4080: Add p4080 platform immap definitions
>       ppc/p4080: Add support for CoreNet style platform LAWs
>       ppc/p4080: CoreNet platfrom style CCSRBAR setting
>       ppc/p4080: CoreNet platfrom style secondary core release
>       ppc/p4080: Add various p4080 related defines (and p4040)
>       ppc/p4080: Handle timebase enabling and frequency reporting
>       ppc/p4080: Determine various chip frequencies on CoreNet platforms
> 
> Mingkai Hu (4):
>       ppc/85xx: simplify the top makefile for 36-bit config for mpc8536ds
>       ppc/85xx: add ld script file for boot from NAND
>       immap_85xx: add porpllsr's plat ratio definition
>       ppc/85xx: add cpu init config file for boot from NAND
> 
> Paul Gortmaker (12):
>       sbc8548: replace README with completely new document
>       sbc8548: enable use of PCI network cards
>       sbc8548: delete unused MPC8548CDS info carried over from port
>       sbc8548: get_clock_freq is not valid for this board
>       sbc8548: enable access to second bank of flash
>       sbc8548: remove eTSEC3/4 voltage hack
>       sbc8548: use I/O accessors
>       sbc8548: correct local bus SDRAM size from 64M to 128M
>       fsl_pci: create a SET_STD_PCI_INFO() helper wrapper
>       sbc8548: update PCI/PCI-e support code
>       sbc8548: allow enabling PCI via a make config option
>       sbc85x0: tidy up Makefile to use new configuration script.
> 
> Peter Tyser (1):
>       mpc8610hpcd: Use common 86xx fdt fixup code
> 
> Poonam Aggrwal (1):
>       ppc/85xx: 32bit DDR changes for P1020/P1011
> 
> Vivek Mahajan (1):
>       85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ

There have been a few changes requested to some of these patches. I
guess you will send an updated pull request when this has been cleaned
up?

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're all sorry for the other guy when he loses his job to a machine.
But when it comes to your job -- that's different. And it always will
be different.
	-- McCoy, "The Ultimate Computer", stardate 4729.4

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2009-09-22 17:06 Kumar Gala
  2009-09-23 22:14 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Kumar Gala @ 2009-09-22 17:06 UTC (permalink / raw)
  To: u-boot

The following changes since commit 3b6a9267f0de7b85d387fa4123d0b58379363447:
  Wolfgang Denk (1):
        board/flagadm/flash.c: fix compile warning

are available in the git repository at:

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

Kumar Gala (15):
      ppc/85xx: Fix LCRR_CLKDIV defines
      ppc/85xx: Simplify the top makefile for 36-bit config for MPC8572DS
      ppc/85xx: Simplify the top makefile for 36-bit config for P2020DS
      ppc/85xx: Simplify the top makefile for P1_P2_RDB boards
      ppc/85xx: Clean up p1_p2_rdb PCI setup
      ppc/85xx: Clean up p2020ds PCI setup code
      ppc/85xx: Clean up mpc8572DS PCI setup code
      ppc/85xx: Clean up use of LAWAR defines
      ppc/p4080: Add p4080 platform immap definitions
      ppc/p4080: Add support for CoreNet style platform LAWs
      ppc/p4080: CoreNet platfrom style CCSRBAR setting
      ppc/p4080: CoreNet platfrom style secondary core release
      ppc/p4080: Add various p4080 related defines (and p4040)
      ppc/p4080: Handle timebase enabling and frequency reporting
      ppc/p4080: Determine various chip frequencies on CoreNet platforms

Mingkai Hu (4):
      ppc/85xx: simplify the top makefile for 36-bit config for mpc8536ds
      ppc/85xx: add ld script file for boot from NAND
      immap_85xx: add porpllsr's plat ratio definition
      ppc/85xx: add cpu init config file for boot from NAND

Paul Gortmaker (12):
      sbc8548: replace README with completely new document
      sbc8548: enable use of PCI network cards
      sbc8548: delete unused MPC8548CDS info carried over from port
      sbc8548: get_clock_freq is not valid for this board
      sbc8548: enable access to second bank of flash
      sbc8548: remove eTSEC3/4 voltage hack
      sbc8548: use I/O accessors
      sbc8548: correct local bus SDRAM size from 64M to 128M
      fsl_pci: create a SET_STD_PCI_INFO() helper wrapper
      sbc8548: update PCI/PCI-e support code
      sbc8548: allow enabling PCI via a make config option
      sbc85x0: tidy up Makefile to use new configuration script.

Peter Tyser (1):
      mpc8610hpcd: Use common 86xx fdt fixup code

Poonam Aggrwal (1):
      ppc/85xx: 32bit DDR changes for P1020/P1011

Vivek Mahajan (1):
      85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ

 MAKEALL                                   |    4 +
 Makefile                                  |   66 ++-----
 board/atum8548/law.c                      |    2 +-
 board/freescale/mpc8536ds/law.c           |    6 +-
 board/freescale/mpc8540ads/law.c          |    2 +-
 board/freescale/mpc8544ds/law.c           |    6 +-
 board/freescale/mpc8560ads/law.c          |    2 +-
 board/freescale/mpc8572ds/law.c           |    6 +-
 board/freescale/mpc8572ds/mpc8572ds.c     |  230 +++++++---------------
 board/freescale/mpc8610hpcd/mpc8610hpcd.c |   14 +--
 board/freescale/p1_p2_rdb/ddr.c           |   29 +++-
 board/freescale/p1_p2_rdb/law.c           |    4 +-
 board/freescale/p1_p2_rdb/pci.c           |   42 ++--
 board/freescale/p2020ds/law.c             |    6 +-
 board/freescale/p2020ds/p2020ds.c         |  150 +++-----------
 board/pm854/law.c                         |    2 +-
 board/pm856/law.c                         |    2 +-
 board/sbc8548/Makefile                    |    4 +-
 board/sbc8548/law.c                       |   12 +-
 board/sbc8548/sbc8548.c                   |  305 ++++++++++-------------------
 board/sbc8548/tlb.c                       |   64 ++++--
 board/socrates/law.c                      |    4 +-
 board/stx/stxgp3/law.c                    |    2 +-
 board/stx/stxssa/law.c                    |    2 +-
 board/xes/xpedite5200/law.c               |    2 +-
 cpu/mpc85xx/Makefile                      |    1 +
 cpu/mpc85xx/cpu.c                         |   33 +++
 cpu/mpc85xx/cpu_init.c                    |   12 ++
 cpu/mpc85xx/cpu_init_early.c              |   29 +++
 cpu/mpc85xx/cpu_init_nand.c               |   63 ++++++
 cpu/mpc85xx/fdt.c                         |   15 +-
 cpu/mpc85xx/mp.c                          |   68 +++++++-
 cpu/mpc85xx/speed.c                       |   85 ++++++++
 cpu/mpc85xx/u-boot-nand_spl.lds           |   67 +++++++
 cpu/mpc8xxx/cpu.c                         |    4 +
 doc/README.sbc8548                        |  189 ++++++++++++++++--
 drivers/misc/fsl_law.c                    |   98 +++++++++-
 drivers/pci/fsl_pci_init.c                |    2 +-
 include/asm-ppc/config.h                  |    6 +-
 include/asm-ppc/fsl_law.h                 |   31 +++
 include/asm-ppc/fsl_lbc.h                 |   12 ++
 include/asm-ppc/fsl_pci.h                 |   12 ++
 include/asm-ppc/immap_85xx.h              |  289 +++++++++++++++++++++++++--
 include/asm-ppc/mmu.h                     |    9 +-
 include/asm-ppc/processor.h               |    4 +
 include/configs/MPC8536DS.h               |    2 +-
 include/configs/MPC8572DS.h               |    4 +
 include/configs/P1_P2_RDB.h               |   13 ++
 include/configs/P2020DS.h                 |    4 +
 include/configs/SBC8540.h                 |   19 +-
 include/configs/XPEDITE5170.h             |    2 +-
 include/configs/XPEDITE5200.h             |    2 +-
 include/configs/XPEDITE5370.h             |    2 +-
 include/configs/sbc8548.h                 |  146 ++++++++++-----
 include/configs/sbc8560.h                 |   17 ++-
 include/e500.h                            |    6 +
 56 files changed, 1480 insertions(+), 734 deletions(-)
 create mode 100644 cpu/mpc85xx/cpu_init_nand.c
 create mode 100644 cpu/mpc85xx/u-boot-nand_spl.lds

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

* [U-Boot] Please pull u-boot-mpc85xx
  2009-09-16  3:20 Kumar Gala
  2009-09-16  3:27 ` Anton Vorontsov
@ 2009-09-16 20:50 ` Wolfgang Denk
  1 sibling, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2009-09-16 20:50 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.0909152219420.17590@localhost.localdomain> you wrote:
> The following changes since commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b:
>   Marcel Ziswiler (1):
>         mpc8260: remove Ethernet node fixup to use generic FDT code.
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kumar Gala (7):
>       ppc/8xxx: Misc DDR related fixes
>       ppc/85xx: Introduce low level write_tlb function
>       ppc/85xx: Repack tlb_table to save space
>       ppc/85xx: Move code around to prep for NAND_SPL
>       ppc/85xx: Change cpu_init_early_f so we can use with NAND SPL
>       ppc/85xx: Split out cpu_init_early into its own file for NAND_SPL
>       ppc/85xx: Disable all async interrupt sources when we boot
> 
> Mingkai Hu (2):
>       ppc/85xx: add boot from NAND/eSDHC/eSPI support
>       NAND boot: change NAND loader's relocate SP to CONFIG param
> 
> Roy Zang (1):
>       ppc/85xx: Enable usb ehci support for p2020ds board
> 
> Scott Wood (3):
>       ppc/85xx: Don't enable interrupts before we're ready
>       ppc/85xx: Ensure that MAS8 is zero when writing TLB entries.
>       ppc/85xx: Remove some bogus code from external interrupt handler.
> 
>  board/freescale/mpc8313erdb/mpc8313erdb.c |    2 +-
>  board/sheldon/simpc8313/simpc8313.c       |    2 +-
>  cpu/mpc85xx/Makefile                      |    1 +
>  cpu/mpc85xx/cpu_init.c                    |   67 +++++++--------
>  cpu/mpc85xx/cpu_init_early.c              |   76 ++++++++++++++++
>  cpu/mpc85xx/start.S                       |   55 +++++++++++-
>  cpu/mpc85xx/tlb.c                         |   60 ++++++-------
>  cpu/mpc85xx/traps.c                       |    9 +--
>  cpu/mpc85xx/u-boot-nand.lds               |  138 +++++++++++++++++++++++++++++
>  cpu/mpc8xxx/ddr/ctrl_regs.c               |   10 +-
>  cpu/mpc8xxx/ddr/ddr3_dimm_params.c        |    4 +-
>  drivers/misc/fsl_law.c                    |    2 +
>  include/asm-ppc/mmu.h                     |   25 +++---
>  include/asm-ppc/processor.h               |    2 +
>  include/configs/MPC8313ERDB.h             |    1 +
>  include/configs/P2020DS.h                 |    9 ++
>  include/configs/SIMPC8313.h               |    1 +
>  17 files changed, 364 insertions(+), 100 deletions(-)
>  create mode 100644 cpu/mpc85xx/cpu_init_early.c
>  create mode 100644 cpu/mpc85xx/u-boot-nand.lds

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
e-credibility: the non-guaranteeable likelihood that  the  electronic
data you're seeing is genuine rather than somebody's made-up crap.
- Karl Lehenbauer

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

* [U-Boot] Please pull u-boot-mpc85xx
  2009-09-16  3:27 ` Anton Vorontsov
@ 2009-09-16  4:20   ` Kumar Gala
  0 siblings, 0 replies; 29+ messages in thread
From: Kumar Gala @ 2009-09-16  4:20 UTC (permalink / raw)
  To: u-boot


On Sep 15, 2009, at 10:27 PM, Anton Vorontsov wrote:

> Hello Kumar,
>
> On Tue, Sep 15, 2009 at 10:20:01PM -0500, Kumar Gala wrote:
>> The following changes since commit  
>> 3ca55bce9c8bf00df06a20487fafc16fa2f8084b:
>>  Marcel Ziswiler (1):
>>        mpc8260: remove Ethernet node fixup to use generic FDT code.
>>
>> are available in the git repository at:
>>
>>  git://git.denx.de/u-boot-mpc85xx.git master
>
> What about these patches (MPC8569)?
>
> http://lists.denx.de/pipermail/u-boot/2009-August/thread.html#58930

Reviewed, see my comments.  (Please rebase, sorry for taking so long  
to get to them).

- k

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

* [U-Boot] Please pull u-boot-mpc85xx
  2009-09-16  3:20 Kumar Gala
@ 2009-09-16  3:27 ` Anton Vorontsov
  2009-09-16  4:20   ` Kumar Gala
  2009-09-16 20:50 ` Wolfgang Denk
  1 sibling, 1 reply; 29+ messages in thread
From: Anton Vorontsov @ 2009-09-16  3:27 UTC (permalink / raw)
  To: u-boot

Hello Kumar,

On Tue, Sep 15, 2009 at 10:20:01PM -0500, Kumar Gala wrote:
> The following changes since commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b:
>   Marcel Ziswiler (1):
>         mpc8260: remove Ethernet node fixup to use generic FDT code.
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master

What about these patches (MPC8569)?

http://lists.denx.de/pipermail/u-boot/2009-August/thread.html#58930

Thanks!

-- 
Anton Vorontsov
email: cbouatmailru at gmail.com
irc://irc.freenode.net/bd2

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2009-09-16  3:20 Kumar Gala
  2009-09-16  3:27 ` Anton Vorontsov
  2009-09-16 20:50 ` Wolfgang Denk
  0 siblings, 2 replies; 29+ messages in thread
From: Kumar Gala @ 2009-09-16  3:20 UTC (permalink / raw)
  To: u-boot

The following changes since commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b:
  Marcel Ziswiler (1):
        mpc8260: remove Ethernet node fixup to use generic FDT code.

are available in the git repository at:

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

Kumar Gala (7):
      ppc/8xxx: Misc DDR related fixes
      ppc/85xx: Introduce low level write_tlb function
      ppc/85xx: Repack tlb_table to save space
      ppc/85xx: Move code around to prep for NAND_SPL
      ppc/85xx: Change cpu_init_early_f so we can use with NAND SPL
      ppc/85xx: Split out cpu_init_early into its own file for NAND_SPL
      ppc/85xx: Disable all async interrupt sources when we boot

Mingkai Hu (2):
      ppc/85xx: add boot from NAND/eSDHC/eSPI support
      NAND boot: change NAND loader's relocate SP to CONFIG param

Roy Zang (1):
      ppc/85xx: Enable usb ehci support for p2020ds board

Scott Wood (3):
      ppc/85xx: Don't enable interrupts before we're ready
      ppc/85xx: Ensure that MAS8 is zero when writing TLB entries.
      ppc/85xx: Remove some bogus code from external interrupt handler.

 board/freescale/mpc8313erdb/mpc8313erdb.c |    2 +-
 board/sheldon/simpc8313/simpc8313.c       |    2 +-
 cpu/mpc85xx/Makefile                      |    1 +
 cpu/mpc85xx/cpu_init.c                    |   67 +++++++--------
 cpu/mpc85xx/cpu_init_early.c              |   76 ++++++++++++++++
 cpu/mpc85xx/start.S                       |   55 +++++++++++-
 cpu/mpc85xx/tlb.c                         |   60 ++++++-------
 cpu/mpc85xx/traps.c                       |    9 +--
 cpu/mpc85xx/u-boot-nand.lds               |  138 +++++++++++++++++++++++++++++
 cpu/mpc8xxx/ddr/ctrl_regs.c               |   10 +-
 cpu/mpc8xxx/ddr/ddr3_dimm_params.c        |    4 +-
 drivers/misc/fsl_law.c                    |    2 +
 include/asm-ppc/mmu.h                     |   25 +++---
 include/asm-ppc/processor.h               |    2 +
 include/configs/MPC8313ERDB.h             |    1 +
 include/configs/P2020DS.h                 |    9 ++
 include/configs/SIMPC8313.h               |    1 +
 17 files changed, 364 insertions(+), 100 deletions(-)
 create mode 100644 cpu/mpc85xx/cpu_init_early.c
 create mode 100644 cpu/mpc85xx/u-boot-nand.lds

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

* [U-Boot] Please pull u-boot-mpc85xx
  2009-08-14 22:49 Kumar Gala
@ 2009-08-18 11:57 ` Wolfgang Denk
  0 siblings, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2009-08-18 11:57 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.0908141748540.3728@localhost.localdomain> you wrote:
> This fixes an issue that cropped in v2009.08-rc testing.
> 
> The following changes since commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030:
>   John Schmoller (1):
>         flash: Fix CFI buffer size bug
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kumar Gala (1):
>       85xx: Fix addrmap to include memory
> 
>  cpu/mpc85xx/tlb.c |   28 ++++++++++++++++++++++------
>  1 files changed, 22 insertions(+), 6 deletions(-)

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
"Out of register space (ugh)"
- vi

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2009-08-14 22:49 Kumar Gala
  2009-08-18 11:57 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Kumar Gala @ 2009-08-14 22:49 UTC (permalink / raw)
  To: u-boot

This fixes an issue that cropped in v2009.08-rc testing.

The following changes since commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030:
  John Schmoller (1):
        flash: Fix CFI buffer size bug

are available in the git repository at:

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

Kumar Gala (1):
      85xx: Fix addrmap to include memory

 cpu/mpc85xx/tlb.c |   28 ++++++++++++++++++++++------
 1 files changed, 22 insertions(+), 6 deletions(-)

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

* [U-Boot] Please pull u-boot-mpc85xx
  2009-07-21 14:36 Kumar Gala
@ 2009-07-22 22:56 ` Wolfgang Denk
  0 siblings, 0 replies; 29+ messages in thread
From: Wolfgang Denk @ 2009-07-22 22:56 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.0907210935500.5851@localhost.localdomain> you wrote:
> The following changes since commit d4abc757c26c531293f5bbc4262ade44a317eec9:
>   Peter Tyser (1):
>         Move api_examples to examples/api
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kumar Gala (3):
>       85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
>       85xx: Report which "bank" of NOR flash we are booting from on FSL boards
>       86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
> 
> Peter Tyser (6):
>       86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
>       xes: Remove 8xxx board_add_ram_info() function
>       tqm85xx: Remove board_add_ram_info()
>       85xx, 86xx: Add common board_add_ram_info()
>       xpedite5200,5370: Use buffered NOR flash writes
>       xpedite5370: Fix I2C GPIO initialization typo
> 
> Roy Zang (1):
>       85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
> 
>  board/freescale/mpc8536ds/mpc8536ds.c     |   18 +++++-
>  board/freescale/mpc8544ds/mpc8544ds.c     |   11 +++-
>  board/freescale/mpc8572ds/mpc8572ds.c     |   21 ++++++-
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c |    4 +-
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c |   19 ++++--
>  board/freescale/p2020ds/p2020ds.c         |   12 +++-
>  board/sbc8641d/sbc8641d.c                 |   12 ++--
>  board/tqc/tqm85xx/sdram.c                 |   33 +---------
>  board/xes/common/fsl_8xxx_ddr.c           |   53 ----------------
>  board/xes/xpedite5370/xpedite5370.c       |    4 +-
>  cpu/mpc86xx/ddr-8641.c                    |    4 +-
>  cpu/mpc8xxx/ddr/main.c                    |   43 +------------
>  cpu/mpc8xxx/ddr/util.c                    |   96 +++++++++++++++++++++++++++++
>  include/asm-ppc/immap_86xx.h              |    4 +-
>  include/configs/MPC8536DS.h               |    5 +-
>  include/configs/MPC8540ADS.h              |    4 +-
>  include/configs/MPC8541CDS.h              |    4 +-
>  include/configs/MPC8544DS.h               |    5 +-
>  include/configs/MPC8548CDS.h              |    4 +-
>  include/configs/MPC8555CDS.h              |    4 +-
>  include/configs/MPC8560ADS.h              |    4 +-
>  include/configs/MPC8568MDS.h              |    4 +-
>  include/configs/MPC8569MDS.h              |    4 +-
>  include/configs/MPC8572DS.h               |    4 +-
>  include/configs/P2020DS.h                 |    4 +-
>  include/configs/XPEDITE5200.h             |    1 +
>  include/configs/XPEDITE5370.h             |    1 +
>  27 files changed, 211 insertions(+), 171 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
Hiring experienced unix people is  like  a  built-in  filter  against
idiots. Hiring experienced NT people provides no such guarantee.
            -- Miguel Cruz in WgL96.349$CC.122704 at typhoon2.ba-dsg.net

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

* [U-Boot] Please pull u-boot-mpc85xx
@ 2009-07-21 14:36 Kumar Gala
  2009-07-22 22:56 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Kumar Gala @ 2009-07-21 14:36 UTC (permalink / raw)
  To: u-boot

The following changes since commit d4abc757c26c531293f5bbc4262ade44a317eec9:
  Peter Tyser (1):
        Move api_examples to examples/api

are available in the git repository at:

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

Kumar Gala (3):
      85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
      85xx: Report which "bank" of NOR flash we are booting from on FSL boards
      86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN

Peter Tyser (6):
      86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
      xes: Remove 8xxx board_add_ram_info() function
      tqm85xx: Remove board_add_ram_info()
      85xx, 86xx: Add common board_add_ram_info()
      xpedite5200,5370: Use buffered NOR flash writes
      xpedite5370: Fix I2C GPIO initialization typo

Roy Zang (1):
      85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards

 board/freescale/mpc8536ds/mpc8536ds.c     |   18 +++++-
 board/freescale/mpc8544ds/mpc8544ds.c     |   11 +++-
 board/freescale/mpc8572ds/mpc8572ds.c     |   21 ++++++-
 board/freescale/mpc8610hpcd/mpc8610hpcd.c |    4 +-
 board/freescale/mpc8641hpcn/mpc8641hpcn.c |   19 ++++--
 board/freescale/p2020ds/p2020ds.c         |   12 +++-
 board/sbc8641d/sbc8641d.c                 |   12 ++--
 board/tqc/tqm85xx/sdram.c                 |   33 +---------
 board/xes/common/fsl_8xxx_ddr.c           |   53 ----------------
 board/xes/xpedite5370/xpedite5370.c       |    4 +-
 cpu/mpc86xx/ddr-8641.c                    |    4 +-
 cpu/mpc8xxx/ddr/main.c                    |   43 +------------
 cpu/mpc8xxx/ddr/util.c                    |   96 +++++++++++++++++++++++++++++
 include/asm-ppc/immap_86xx.h              |    4 +-
 include/configs/MPC8536DS.h               |    5 +-
 include/configs/MPC8540ADS.h              |    4 +-
 include/configs/MPC8541CDS.h              |    4 +-
 include/configs/MPC8544DS.h               |    5 +-
 include/configs/MPC8548CDS.h              |    4 +-
 include/configs/MPC8555CDS.h              |    4 +-
 include/configs/MPC8560ADS.h              |    4 +-
 include/configs/MPC8568MDS.h              |    4 +-
 include/configs/MPC8569MDS.h              |    4 +-
 include/configs/MPC8572DS.h               |    4 +-
 include/configs/P2020DS.h                 |    4 +-
 include/configs/XPEDITE5200.h             |    1 +
 include/configs/XPEDITE5370.h             |    1 +
 27 files changed, 211 insertions(+), 171 deletions(-)

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

end of thread, other threads:[~2014-11-26 16:25 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-07  7:24 [U-Boot] Please pull u-boot-mpc85xx Kumar Gala
2010-04-07 22:23 ` Wolfgang Denk
2010-04-08 18:23   ` Timur Tabi
  -- strict thread matches above, loose matches on Subject: below --
2014-11-25 17:36 York Sun
2014-11-26 16:25 ` Tom Rini
2014-09-25 16:27 York Sun
2014-09-27 11:36 ` Tom Rini
2014-01-22 17:45 York Sun
2014-01-24 16:19 ` Tom Rini
2012-04-25  5:11 Andy Fleming
2012-04-30 14:51 ` Wolfgang Denk
2011-09-09 14:57 Kumar Gala
2011-09-09 22:19 ` Wolfgang Denk
2010-07-08 14:26 Kumar Gala
2010-07-14 19:42 ` Wolfgang Denk
2010-04-27  3:42 Kumar Gala
2010-04-27 21:01 ` Wolfgang Denk
2010-01-26  4:38 Kumar Gala
2010-01-26 21:32 ` Wolfgang Denk
2009-09-22 17:06 Kumar Gala
2009-09-23 22:14 ` Wolfgang Denk
2009-09-16  3:20 Kumar Gala
2009-09-16  3:27 ` Anton Vorontsov
2009-09-16  4:20   ` Kumar Gala
2009-09-16 20:50 ` Wolfgang Denk
2009-08-14 22:49 Kumar Gala
2009-08-18 11:57 ` Wolfgang Denk
2009-07-21 14:36 Kumar Gala
2009-07-22 22:56 ` 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.