[U-Boot] Please pull u-boot-mpc85xx (updated)

This includes Paul's updates for sbc85xx and p4080 updates. I have not fixed the immap line issue, but will do that as a follow on patch.
- k
The following changes since commit 30d7aae7e82dacf9ae2983fbbf3567515266968b: Wolfgang Denk (1): Merge branch 'master' of /home/wd/git/u-boot/custodians
are available in the git repository at:
git://git.denx.de/u-boot-mpc85xx.git master
Kumar Gala (16): 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/85xx: Fix enabling of L2 cache 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 (13): 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: cosmetic line re-wrap 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 | 80 +++++--- 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 | 49 +++++- cpu/mpc85xx/cpu_init.c | 21 ++- cpu/mpc85xx/cpu_init_early.c | 72 +++++-- cpu/mpc85xx/cpu_init_nand.c | 63 ++++++ cpu/mpc85xx/fdt.c | 15 +- cpu/mpc85xx/mp.c | 68 ++++++- cpu/mpc85xx/release.S | 3 +- cpu/mpc85xx/speed.c | 86 ++++++++ cpu/mpc85xx/u-boot-nand_spl.lds | 67 +++++++ cpu/mpc8xxx/cpu.c | 4 + doc/README.sbc8548 | 189 ++++++++++++++++-- drivers/misc/fsl_law.c | 128 +++++++++++- 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 | 147 ++++++++++----- include/configs/sbc8560.h | 17 ++- include/e500.h | 6 + 57 files changed, 1559 insertions(+), 774 deletions(-) create mode 100644 cpu/mpc85xx/cpu_init_nand.c create mode 100644 cpu/mpc85xx/u-boot-nand_spl.lds

Dear Kumar Gala,
In message Pine.LNX.4.64.0909241206140.30130@localhost.localdomain you wrote:
This includes Paul's updates for sbc85xx and p4080 updates. I have not fixed the immap line issue, but will do that as a follow on patch.
- k
The following changes since commit 30d7aae7e82dacf9ae2983fbbf3567515266968b: Wolfgang Denk (1): Merge branch 'master' of /home/wd/git/u-boot/custodians
are available in the git repository at:
git://git.denx.de/u-boot-mpc85xx.git master
Kumar Gala (16): 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/85xx: Fix enabling of L2 cache 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 (13): 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: cosmetic line re-wrap 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
Ummm... I rejected this patch!!
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 | 80 +++++--- 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 | 49 +++++- cpu/mpc85xx/cpu_init.c | 21 ++- cpu/mpc85xx/cpu_init_early.c | 72 +++++-- cpu/mpc85xx/cpu_init_nand.c | 63 ++++++ cpu/mpc85xx/fdt.c | 15 +- cpu/mpc85xx/mp.c | 68 ++++++- cpu/mpc85xx/release.S | 3 +- cpu/mpc85xx/speed.c | 86 ++++++++ cpu/mpc85xx/u-boot-nand_spl.lds | 67 +++++++ cpu/mpc8xxx/cpu.c | 4 + doc/README.sbc8548 | 189 ++++++++++++++++-- drivers/misc/fsl_law.c | 128 +++++++++++- 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 | 147 ++++++++++----- include/configs/sbc8560.h | 17 ++- include/e500.h | 6 + 57 files changed, 1559 insertions(+), 774 deletions(-) create mode 100644 cpu/mpc85xx/cpu_init_nand.c create mode 100644 cpu/mpc85xx/u-boot-nand_spl.lds
Applied, but please be careful not to apply rejected patches (the one above needs to be cleaned up). [And please re-check if there were other rejected patches in your list.]
Best regards,
Wolfgang Denk

On Thu, Sep 24, 2009 at 5:40 PM, Wolfgang Denk wd@denx.de wrote:
Dear Kumar Gala,
In message Pine.LNX.4.64.0909241206140.30130@localhost.localdomain you wrote:
This includes Paul's updates for sbc85xx and p4080 updates. I have not fixed the immap line issue, but will do that as a follow on patch.
- k
[...]
Paul Gortmaker (13): 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: cosmetic line re-wrap 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
Ummm... I rejected this patch!!
I believe that if you check, you will find that the patch that you have got from this pull request from Kumar has the long line issue that you wanted fixed already in it. If there is something else that I should have fixed, but missed then let me know.
Thanks, Paul.
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 | 80 +++++--- 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 | 49 +++++- cpu/mpc85xx/cpu_init.c | 21 ++- cpu/mpc85xx/cpu_init_early.c | 72 +++++-- cpu/mpc85xx/cpu_init_nand.c | 63 ++++++ cpu/mpc85xx/fdt.c | 15 +- cpu/mpc85xx/mp.c | 68 ++++++- cpu/mpc85xx/release.S | 3 +- cpu/mpc85xx/speed.c | 86 ++++++++ cpu/mpc85xx/u-boot-nand_spl.lds | 67 +++++++ cpu/mpc8xxx/cpu.c | 4 + doc/README.sbc8548 | 189 ++++++++++++++++-- drivers/misc/fsl_law.c | 128 +++++++++++- 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 | 147 ++++++++++----- include/configs/sbc8560.h | 17 ++- include/e500.h | 6 + 57 files changed, 1559 insertions(+), 774 deletions(-) create mode 100644 cpu/mpc85xx/cpu_init_nand.c create mode 100644 cpu/mpc85xx/u-boot-nand_spl.lds
Applied, but please be careful not to apply rejected patches (the one above needs to be cleaned up). [And please re-check if there were other rejected patches in your list.]
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@denx.de Computers are not intelligent. They only think they are. _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
participants (3)
-
Kumar Gala
-
Paul Gortmaker
-
Wolfgang Denk