From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jon Loeliger Date: Tue, 29 Aug 2006 12:41:24 -0500 Subject: [U-Boot-Users] [PATCH 00/03] Add MPC8641HPCN board port 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 Wolfgang, This set of patches adds the MPC8641HPCN board port. Booting using the Flat Device Tree assumes that Matthew McClintock's patches of June 27 have been applied. All of these patches can be inspected in plain text and downloaded here: http://www.jdl.com/software/patches Furthermore these patches plus Matthew's, can be obtained directly from the u-boot-86xx.git tree found on jdl.com: Browse it: http://www.jdl.com/git_repos Clone it: git://www.jdl.com/software/u-boot-86xx.git http://www.jdl.com/software/u-boot-86xx.git Thanks, jdl CHANGELOG: * Add MPC8641HPCN board port - Add base level mpc86xx CPU support - Add MPC8641 HPCN board support - Support Flat Device Tree booting via downloaded DTB file - Add AHCI S-ATA and PCI-Express - Supports reset into alternate flash bank MAINTAINERS | 2 Makefile | 11 board/mpc8641hpcn/Makefile | 49 + board/mpc8641hpcn/config.mk | 31 + board/mpc8641hpcn/init.S | 180 +++++ board/mpc8641hpcn/mpc8641hpcn.c | 426 ++++++++++++ board/mpc8641hpcn/pixis.c | 321 +++++++++ board/mpc8641hpcn/pixis.h | 33 + board/mpc8641hpcn/sys_eeprom.c | 256 +++++++ board/mpc8641hpcn/u-boot.lds | 148 ++++ common/Makefile | 2 common/cmd_boot.c | 2 common/cmd_mac.c | 66 ++ common/cmd_scsi.c | 7 cpu/mpc86xx/Makefile | 48 + cpu/mpc86xx/cache.S | 374 +++++++++++ cpu/mpc86xx/config.mk | 26 + cpu/mpc86xx/cpu.c | 307 +++++++++ cpu/mpc86xx/cpu_init.c | 117 +++ cpu/mpc86xx/i2c.c | 269 ++++++++ cpu/mpc86xx/interrupts.c | 204 ++++++ cpu/mpc86xx/pci.c | 146 ++++ cpu/mpc86xx/pcie_indirect.c | 199 ++++++ cpu/mpc86xx/resetvec.S | 2 cpu/mpc86xx/spd_sdram.c | 1332 ++++++++++++++++++++++++++++++++++++++ cpu/mpc86xx/speed.c | 127 ++++ cpu/mpc86xx/start.S | 1227 +++++++++++++++++++++++++++++++++++ cpu/mpc86xx/traps.c | 226 ++++++ doc/README.mpc8641hpcn | 123 ++++ drivers/Makefile | 2 drivers/ahci.c | 702 ++++++++++++++++++++ drivers/rtl8139.c | 1 drivers/tsec.c | 71 ++ drivers/tsec.h | 20 + include/ahci.h | 190 +++++ include/asm-ppc/immap_86xx.h | 1364 +++++++++++++++++++++++++++++++++++++++ include/asm-ppc/mmu.h | 15 include/asm-ppc/processor.h | 18 - include/asm-ppc/u-boot.h | 2 include/common.h | 14 include/configs/MPC8641HPCN.h | 641 ++++++++++++++++++ include/mpc86xx.h | 116 +++ include/pci_ids.h | 3 lib_ppc/board.c | 6 net/eth.c | 16 45 files changed, 9424 insertions(+), 18 deletions(-)