diff options
author | wdenk <wdenk> | 2004-10-10 23:27:33 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-10-10 23:27:33 +0000 |
commit | e1599e83d643c1667a4157d03609c6e29928fb2e (patch) | |
tree | 5de7676c2c02bdddb3f01251d14bfdd43454cde0 /include | |
parent | c15f3120eca5359ed7ec1a359085312bbafca169 (diff) | |
download | u-boot-imx-e1599e83d643c1667a4157d03609c6e29928fb2e.zip u-boot-imx-e1599e83d643c1667a4157d03609c6e29928fb2e.tar.gz u-boot-imx-e1599e83d643c1667a4157d03609c6e29928fb2e.tar.bz2 |
* Patch by Gridish Shlomi, 30 Aug 2004:
- Add support to revA version of PQ27 and PQ27E.
- Reverted MPC8260ADS baudrate back to original 115200
* Patch by Hojin, 17 Sep 2004:
Fix typo in cfi_flash.c
* Patch by Mark Jonas, 09 September 2004:
mtest's data line test (with CFG_ALT_MEMTEST set) returned a wrong
error message
* Patch by Mark Jonas, 31 August 2004:
Added option CFG_XLB_PIPELINING to enable XLB pipelining. This
improves FTP performance for MPC5200 systems. Enabled for IceCube
by default.
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ppc/processor.h | 1 | ||||
-rw-r--r-- | include/configs/IceCube.h | 2 | ||||
-rw-r--r-- | include/configs/MPC8260ADS.h | 2 | ||||
-rw-r--r-- | include/image.h | 2 |
4 files changed, 5 insertions, 2 deletions
diff --git a/include/asm-ppc/processor.h b/include/asm-ppc/processor.h index f7d90f4..15bfae8 100644 --- a/include/asm-ppc/processor.h +++ b/include/asm-ppc/processor.h @@ -764,6 +764,7 @@ #define PVR_8260_HIP4 0x80811014 #define PVR_8260_HIP7 0x80822011 #define PVR_8260_HIP7R1 0x80822013 +#define PVR_8260_HIP7RA 0x80822014 /* diff --git a/include/configs/IceCube.h b/include/configs/IceCube.h index 3c1b2ab..3752eb4 100644 --- a/include/configs/IceCube.h +++ b/include/configs/IceCube.h @@ -68,6 +68,8 @@ #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS #define CONFIG_PCI_IO_SIZE 0x01000000 +#define CFG_XLB_PIPELINING 1 + #define CONFIG_NET_MULTI 1 #define CONFIG_EEPRO100 1 #define CFG_RX_ETH_BUFFER 8 /* use 8 rx buffer on eepro100 */ diff --git a/include/configs/MPC8260ADS.h b/include/configs/MPC8260ADS.h index 626f23b..0d5b05a 100644 --- a/include/configs/MPC8260ADS.h +++ b/include/configs/MPC8260ADS.h @@ -175,7 +175,7 @@ #endif #endif -#define CONFIG_BAUDRATE 38400 +#define CONFIG_BAUDRATE 115200 #define CFG_EXCLUDE CFG_CMD_BEDBUG | \ CFG_CMD_BMP | \ diff --git a/include/image.h b/include/image.h index 55210d5..4c23f0e 100644 --- a/include/image.h +++ b/include/image.h @@ -96,7 +96,7 @@ * byte order. This list is terminated by an "(uint32_t)0". * Immediately after the terminating 0 follow the images, one by * one, all aligned on "uint32_t" boundaries (size rounded up to - * a multiple of 4 bytes). + * a multiple of 4 bytes - except for the last file). * * "Firmware Images" are binary images containing firmware (like * U-Boot or FPGA images) which usually will be programmed to |