diff options
author | wdenk <wdenk> | 2004-10-10 20:23:57 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-10-10 20:23:57 +0000 |
commit | cf33678e51e02143ed67850b3f13646fd51fb489 (patch) | |
tree | 68d8c425710d63d266395181eb592ec61ba3c734 /include | |
parent | 08b6aa61545d74afd4a9646adb469cf1320f4d8f (diff) | |
download | u-boot-imx-cf33678e51e02143ed67850b3f13646fd51fb489.zip u-boot-imx-cf33678e51e02143ed67850b3f13646fd51fb489.tar.gz u-boot-imx-cf33678e51e02143ed67850b3f13646fd51fb489.tar.bz2 |
* Patch by Jon Loeliger, 24 Aug 2004:
- Fix PCI window on MPC85xx; remove unneeded PCI initialization
from board_early_init_f()
- Provide SW workaround for PCI initialization on 85xx CDS
- Convert MPC85xxADS to use common CFI flash driver
* Cleanup: avoid compiler warnings
* Add CMC PU2 board to MAKEALL script
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/MPC8540ADS.h | 6 | ||||
-rw-r--r-- | include/configs/MPC8560ADS.h | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/include/configs/MPC8540ADS.h b/include/configs/MPC8540ADS.h index 74e15c7..a53b963 100644 --- a/include/configs/MPC8540ADS.h +++ b/include/configs/MPC8540ADS.h @@ -137,13 +137,15 @@ #define CFG_MONITOR_BASE TEXT_BASE /* start of monitor */ - #if (CFG_MONITOR_BASE < CFG_FLASH_BASE) #define CFG_RAMBOOT #else #undef CFG_RAMBOOT #endif +#define CFG_FLASH_CFI_DRIVER +#define CFG_FLASH_CFI +#define CFG_FLASH_EMPTY_INFO #undef CONFIG_CLOCKS_IN_MHZ @@ -262,7 +264,7 @@ #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE) #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET -#define CFG_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Mon */ +#define CFG_MONITOR_LEN (512 * 1024) /* Reserve 256 kB for Mon */ #define CFG_MALLOC_LEN (128 * 1024) /* Reserved for malloc */ /* Serial Port */ diff --git a/include/configs/MPC8560ADS.h b/include/configs/MPC8560ADS.h index 3876747..2a31dd7 100644 --- a/include/configs/MPC8560ADS.h +++ b/include/configs/MPC8560ADS.h @@ -140,13 +140,15 @@ #define CFG_MONITOR_BASE TEXT_BASE /* start of monitor */ - #if (CFG_MONITOR_BASE < CFG_FLASH_BASE) #define CFG_RAMBOOT #else #undef CFG_RAMBOOT #endif +#define CFG_FLASH_CFI_DRIVER +#define CFG_FLASH_CFI +#define CFG_FLASH_EMPTY_INFO #undef CONFIG_CLOCKS_IN_MHZ @@ -265,7 +267,7 @@ #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE) #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET -#define CFG_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Mon */ +#define CFG_MONITOR_LEN (512 * 1024) /* Reserve 256 kB for Mon */ #define CFG_MALLOC_LEN (128 * 1024) /* Reserved for malloc */ /* Serial Port */ |