From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Tyser Date: Fri, 22 May 2009 10:26:31 -0500 Subject: [U-Boot] [PATCH 0/7] Initial support for the XPedite5170 Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Initial support for Extreme Engineering Solutions XPedite5170 - a MPC8640-based 3U VPX single board computer with a PMC/XMC site. http://www.xes-inc.com/Products/XPedite5170/XPedite5170.html Peter Tyser (6): 85xx: Add PORBMSR and PORDEVSR shift defines 86xx: Unlock l1 cache unconditionally xes: Update Freescale PCI code to work with 86xx processors xes: Update Freescale DDR code to work with 86xx processors xes: Update Freescale clock code to work with 86xx processors XPedite5170 board support Zach LeRoy (1): tsec: Add support for BCM5482S PHY MAINTAINERS | 1 + MAKEALL | 1 + Makefile | 3 + board/xes/common/Makefile | 7 +- .../xes/common/{fsl_8572_clk.c => fsl_8xxx_clk.c} | 8 + .../xes/common/{fsl_85xx_ddr.c => fsl_8xxx_ddr.c} | 8 +- .../xes/common/{fsl_85xx_pci.c => fsl_8xxx_pci.c} | 81 ++- board/xes/xpedite5170/Makefile | 52 ++ board/xes/xpedite5170/config.mk | 32 + board/xes/xpedite5170/ddr.c | 168 +++++ board/xes/xpedite5170/law.c | 52 ++ board/xes/xpedite5170/u-boot.lds | 132 ++++ board/xes/xpedite5170/xpedite5170.c | 111 +++ drivers/net/tsec.c | 41 ++ include/asm-ppc/immap_85xx.h | 2 + include/configs/XPEDITE5170.h | 758 ++++++++++++++++++++ include/tsec.h | 2 + lib_ppc/board.c | 8 +- lib_ppc/bootm.c | 3 +- 19 files changed, 1453 insertions(+), 17 deletions(-) rename board/xes/common/{fsl_8572_clk.c => fsl_8xxx_clk.c} (86%) rename board/xes/common/{fsl_85xx_ddr.c => fsl_8xxx_ddr.c} (92%) rename board/xes/common/{fsl_85xx_pci.c => fsl_8xxx_pci.c} (79%) create mode 100644 board/xes/xpedite5170/Makefile create mode 100644 board/xes/xpedite5170/config.mk create mode 100644 board/xes/xpedite5170/ddr.c create mode 100644 board/xes/xpedite5170/law.c create mode 100644 board/xes/xpedite5170/u-boot.lds create mode 100644 board/xes/xpedite5170/xpedite5170.c create mode 100644 include/configs/XPEDITE5170.h