diff options
author | wdenk <wdenk> | 2005-02-27 23:46:58 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-02-27 23:46:58 +0000 |
commit | e58cf2a0cfeb357faa134af1e12b96f4109af360 (patch) | |
tree | d4ae4a1a09bc83bf09558258bce672fccf24fcea | |
parent | 1968e615d4092f728f4732a0b148ded6d1caa731 (diff) | |
download | u-boot-e58cf2a0cfeb357faa134af1e12b96f4109af360.zip u-boot-e58cf2a0cfeb357faa134af1e12b96f4109af360.tar.gz u-boot-e58cf2a0cfeb357faa134af1e12b96f4109af360.tar.bz2 |
Add support for SRAM and 2 x Quad UARTs on INKA4x0 boardLABEL_2005_02_28_0050
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | include/configs/inka4x0.h | 10 |
2 files changed, 12 insertions, 0 deletions
@@ -2,6 +2,8 @@ Changes for U-Boot 1.1.3: ====================================================================== +* Add support for SRAM and 2 x Quad UARTs on INKA4x0 board + * Cleanup USB and partition defines * Add support for ext2 filesystems and image timestamps to TQM5200 board diff --git a/include/configs/inka4x0.h b/include/configs/inka4x0.h index e272f71..15b124a 100644 --- a/include/configs/inka4x0.h +++ b/include/configs/inka4x0.h @@ -259,6 +259,16 @@ #define CFG_CS0_START CFG_FLASH_BASE #define CFG_CS0_SIZE CFG_FLASH_SIZE +/* 32Mbit SRAM @0x30000000 */ +#define CFG_CS1_START 0x30000000 +#define CFG_CS1_SIZE 0x00400000 +#define CFG_CS1_CFG 0x31800 /* for pci_clk = 33 MHz */ + +/* 2 quad UART @0x80000000 (MBAR is relocated to 0xF0000000) */ +#define CFG_CS2_START 0x80000000 +#define CFG_CS2_SIZE 0x0001000 +#define CFG_CS2_CFG 0x21800 /* for pci_clk = 33 MHz */ + #define CFG_CS_BURST 0x00000000 #define CFG_CS_DEADCYCLE 0x33333333 |