diff options
author | wdenk <wdenk> | 2004-03-23 20:18:25 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-03-23 20:18:25 +0000 |
commit | efa329cb892c8b9a5e453638b3ca57c94b71e9a2 (patch) | |
tree | b8c5361b7054e21662e619100c1a7f53e6d8de0a /board/cpu86/flash.c | |
parent | 7d7ce4125f769a21a321c3df972272c5854d54f7 (diff) |
* Add start-up delay to make sure power has stabilized before
attempting to switch on USB on SX1 board.
* Patch by Josef Wagner, 18 Mar 2004:
- Add support for MicroSys XM250 board (PXA255)
- Add support for MicroSys PM828 board (MPC8280)
- Add support for 32 MB Flash on PM825/826
- new SDRAM refresh rate for PM825/PM826
- added support for MicroSys PM520 (MPC5200)
- replaced Query by Identify command in CPU86/flash.c
to support 28F160F3B
* Fix wrap around problem with udelay() on ARM920T
* Add support for Macronix flash on TRAB board
Diffstat (limited to 'board/cpu86/flash.c')
-rw-r--r-- | board/cpu86/flash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/cpu86/flash.c b/board/cpu86/flash.c index 0769dc5c626..1535a6b48fc 100644 --- a/board/cpu86/flash.c +++ b/board/cpu86/flash.c @@ -41,10 +41,10 @@ ulong flash_int_get_size (volatile unsigned long *baseaddr, info->sector_count = info->size = 0; info->flash_id = FLASH_UNKNOWN; - /* Write query command sequence and test FLASH answer + /* Write identify command sequence and test FLASH answer */ - baseaddr[0] = 0x00980098; - baseaddr[1] = 0x00980098; + baseaddr[0] = 0x00900090; + baseaddr[1] = 0x00900090; flashtest_h = baseaddr[0]; /* manufacturer ID */ flashtest_l = baseaddr[1]; |