svm_sc8xx.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. /*
  2. * (C) Copyright 2000, 2001, 2002
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * board/config.h - configuration options, board specific,
  25. * for SinoVee Microsystems SC8xx series SBC
  26. * http://www.fel.com.cn (Chinese)
  27. * http://www.sinovee.com (English)
  28. */
  29. #ifndef __CONFIG_H
  30. #define __CONFIG_H
  31. #define CONFIG_SYS_TEXT_BASE 0x40000000
  32. /* Custom configuration */
  33. /* SC823,SC850,SC860SAR, FEL8xx-AT(823/850/860) */
  34. /* SC85T,SC860T, FEL8xx-AT(855T/860T) */
  35. /*#define CONFIG_FEL8xx_AT */
  36. /*#define CONFIG_LCD */
  37. /* if core > 50MHz , un-comment CONFIG_BUS_DIV2 */
  38. /* #define CONFIG_50MHz */
  39. /* #define CONFIG_66MHz */
  40. /* #define CONFIG_75MHz */
  41. #define CONFIG_80MHz
  42. /*#define CONFIG_100MHz */
  43. /* #define CONFIG_BUS_DIV2 1 */
  44. /* for BOOT device port size */
  45. /* #define CONFIG_BOOT_8B */
  46. #define CONFIG_BOOT_16B
  47. /* #define CONFIG_BOOT_32B */
  48. /* #define CONFIG_CAN_DRIVER */
  49. /* #define DEBUG */
  50. #define CONFIG_FEC_ENET
  51. /* #define CONFIG_SDRAM_16M */
  52. #define CONFIG_SDRAM_32M
  53. /* #define CONFIG_SDRAM_64M */
  54. #define CONFIG_SYS_RESET_ADDRESS 0xffffffff
  55. /*
  56. * High Level Configuration Options
  57. * (easy to change)
  58. */
  59. /* #define CONFIG_MPC823 1 */
  60. /* #define CONFIG_MPC850 1 */
  61. #define CONFIG_MPC855 1
  62. /* #define CONFIG_MPC860 1 */
  63. /* #define CONFIG_MPC860T 1 */
  64. #undef CONFIG_WATCHDOG /* watchdog */
  65. #define CONFIG_SVM_SC8xx 1 /* ...on SVM SC8xx series */
  66. #ifdef CONFIG_LCD /* with LCD controller ? */
  67. /* #define CONFIG_NEC_NL6448BC20 1 / * use NEC NL6448BC20 display */
  68. #endif
  69. #define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */
  70. #undef CONFIG_8xx_CONS_SMC2
  71. #undef CONFIG_8xx_CONS_NONE
  72. #define CONFIG_BAUDRATE 19200 /* console baudrate = 115kbps */
  73. #if 0
  74. #define CONFIG_BOOTDELAY -1 /* autoboot disabled */
  75. #else
  76. #define CONFIG_BOOTDELAY 1 /* autoboot after 5 seconds */
  77. #endif
  78. #define CONFIG_CLOCKS_IN_MHZ 1 /* clocks passsed to Linux in MHz */
  79. #define CONFIG_BOARD_TYPES 1 /* support board types */
  80. #define CONFIG_PREBOOT "echo;echo Welcome to U-Boot SVM port;echo;echo Type \"? or help\" to get on-line help;echo"
  81. #undef CONFIG_BOOTARGS
  82. #define CONFIG_EXTRA_ENV_SETTINGS \
  83. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  84. "nfsroot=${serverip}:${rootpath}\0" \
  85. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  86. "addip=setenv bootargs ${bootargs} " \
  87. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  88. ":${hostname}:${netdev}:off panic=1\0" \
  89. "flash_nfs=run nfsargs addip;" \
  90. "bootm ${kernel_addr}\0" \
  91. "flash_self=run ramargs addip;" \
  92. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  93. "net_nfs=tftp 0x210000 ${bootfile};run nfsargs addip;bootm\0" \
  94. "rootpath=/opt/sinovee/ppc8xx-linux-2.0/target\0" \
  95. "bootfile=pImage-sc855t\0" \
  96. "kernel_addr=48000000\0" \
  97. "ramdisk_addr=48100000\0" \
  98. ""
  99. #define CONFIG_BOOTCOMMAND \
  100. "setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath} " \
  101. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off; " \
  102. "tftpboot 0x210000 pImage-sc855t;bootm 0x210000"
  103. #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
  104. #undef CONFIG_SYS_LOADS_BAUD_CHANGE /* don't allow baudrate change */
  105. #ifdef CONFIG_LCD
  106. # undef CONFIG_STATUS_LED /* disturbs display */
  107. #else
  108. # define CONFIG_STATUS_LED 1 /* Status LED enabled */
  109. #endif /* CONFIG_LCD */
  110. #undef CONFIG_CAN_DRIVER /* CAN Driver support disabled */
  111. /*
  112. * BOOTP options
  113. */
  114. #define CONFIG_BOOTP_SUBNETMASK
  115. #define CONFIG_BOOTP_GATEWAY
  116. #define CONFIG_BOOTP_HOSTNAME
  117. #define CONFIG_BOOTP_BOOTPATH
  118. #define CONFIG_BOOTP_BOOTFILESIZE
  119. #define CONFIG_MAC_PARTITION
  120. #define CONFIG_DOS_PARTITION
  121. #define CONFIG_RTC_MPC8xx /* use internal RTC of MPC8xx */
  122. /*
  123. * Command line configuration.
  124. */
  125. #include <config_cmd_default.h>
  126. #define CONFIG_CMD_ASKENV
  127. #define CONFIG_CMD_DHCP
  128. #define CONFIG_CMD_DATE
  129. /*
  130. * Miscellaneous configurable options
  131. */
  132. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  133. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  134. #ifdef CONFIG_SYS_HUSH_PARSER
  135. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  136. #endif
  137. #if defined(CONFIG_CMD_KGDB)
  138. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  139. #else
  140. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  141. #endif
  142. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
  143. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  144. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  145. #define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
  146. #define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
  147. #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
  148. #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
  149. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  150. /*
  151. * Low Level Configuration Settings
  152. * (address mappings, register initial values, etc.)
  153. * You should know what you are doing if you make changes here.
  154. */
  155. /*-----------------------------------------------------------------------
  156. * Internal Memory Mapped Register
  157. */
  158. #define CONFIG_SYS_IMMR 0xFF000000
  159. /*-----------------------------------------------------------------------
  160. * Definitions for initial stack pointer and data area (in DPRAM)
  161. */
  162. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR
  163. #define CONFIG_SYS_INIT_RAM_SIZE 0x2F00 /* Size of used area in DPRAM */
  164. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  165. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  166. /*-----------------------------------------------------------------------
  167. * Start addresses for the final memory configuration
  168. * (Set up by the startup code)
  169. * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
  170. */
  171. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  172. #define CONFIG_SYS_FLASH_BASE 0x40000000
  173. #define CONFIG_SYS_MONITOR_LEN (384 << 10) /* Reserve 192 kB for Monitor */
  174. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  175. #define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */
  176. /*
  177. * For booting Linux, the board info and command line data
  178. * have to be in the first 8 MB of memory, since this is
  179. * the maximum mapped by the Linux kernel during initialization.
  180. */
  181. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  182. /*-----------------------------------------------------------------------
  183. * FLASH organization
  184. */
  185. #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of memory banks */
  186. #define CONFIG_SYS_MAX_FLASH_SECT 67 /* max number of sectors on one chip */
  187. #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  188. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  189. #define CONFIG_ENV_IS_IN_FLASH 1
  190. #ifdef CONFIG_BOOT_8B
  191. #define CONFIG_ENV_OFFSET 0x10000 /* Offset of Environment Sector */
  192. #define CONFIG_ENV_SIZE 0x10000 /* Total Size of Environment Sector */
  193. #elif defined (CONFIG_BOOT_16B)
  194. #define CONFIG_ENV_OFFSET 0x10000 /* Offset of Environment Sector */
  195. #define CONFIG_ENV_SIZE 0x10000 /* Total Size of Environment Sector */
  196. #elif defined (CONFIG_BOOT_32B)
  197. #define CONFIG_ENV_OFFSET 0x8000 /* Offset of Environment Sector */
  198. #define CONFIG_ENV_SIZE 0x4000 /* Total Size of Environment Sector */
  199. #endif
  200. /* Address and size of Redundant Environment Sector */
  201. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET+CONFIG_ENV_SIZE)
  202. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  203. /*-----------------------------------------------------------------------
  204. * Hardware Information Block
  205. */
  206. #define CONFIG_SYS_HWINFO_OFFSET 0x0003FFC0 /* offset of HW Info block */
  207. #define CONFIG_SYS_HWINFO_SIZE 0x00000040 /* size of HW Info block */
  208. #define CONFIG_SYS_HWINFO_MAGIC 0x46454C38 /* 'SVM8' */
  209. /*-----------------------------------------------------------------------
  210. * Cache Configuration
  211. */
  212. #define CONFIG_SYS_CACHELINE_SIZE 16 /* For all MPC8xx CPUs */
  213. #if defined(CONFIG_CMD_KGDB)
  214. #define CONFIG_SYS_CACHELINE_SHIFT 4 /* log base 2 of the above value */
  215. #endif
  216. /*-----------------------------------------------------------------------
  217. * SYPCR - System Protection Control 11-9
  218. * SYPCR can only be written once after reset!
  219. *-----------------------------------------------------------------------
  220. * Software & Bus Monitor Timer max, Bus Monitor enable, SW Watchdog freeze
  221. */
  222. #if defined(CONFIG_WATCHDOG)
  223. /*#define CONFIG_SYS_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | \
  224. SYPCR_SWE | SYPCR_SWRI| SYPCR_SWP)
  225. */
  226. #define CONFIG_SYS_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_SWF | \
  227. SYPCR_SWE | SYPCR_SWRI| SYPCR_SWP)
  228. #else
  229. #define CONFIG_SYS_SYPCR 0xffffff88
  230. #endif
  231. /*-----------------------------------------------------------------------
  232. * SIUMCR - SIU Module Configuration 11-6
  233. *-----------------------------------------------------------------------
  234. * PCMCIA config., multi-function pin tri-state
  235. */
  236. #ifndef CONFIG_CAN_DRIVER
  237. /*#define CONFIG_SYS_SIUMCR 0x00610c00 */
  238. #define CONFIG_SYS_SIUMCR 0x00000000
  239. #else /* we must activate GPL5 in the SIUMCR for CAN */
  240. #define CONFIG_SYS_SIUMCR (SIUMCR_DBGC11 | SIUMCR_DBPC00 | SIUMCR_MLRC01)
  241. #endif /* CONFIG_CAN_DRIVER */
  242. /*-----------------------------------------------------------------------
  243. * TBSCR - Time Base Status and Control 11-26
  244. *-----------------------------------------------------------------------
  245. * Clear Reference Interrupt Status, Timebase freezing enabled
  246. */
  247. #define CONFIG_SYS_TBSCR 0x0001
  248. /*-----------------------------------------------------------------------
  249. * RTCSC - Real-Time Clock Status and Control Register 11-27
  250. *-----------------------------------------------------------------------
  251. */
  252. #define CONFIG_SYS_RTCSC 0x00c3
  253. /*-----------------------------------------------------------------------
  254. * PISCR - Periodic Interrupt Status and Control 11-31
  255. *-----------------------------------------------------------------------
  256. * Clear Periodic Interrupt Status, Interrupt Timer freezing enabled
  257. */
  258. #define CONFIG_SYS_PISCR 0x0000
  259. /*-----------------------------------------------------------------------
  260. * PLPRCR - PLL, Low-Power, and Reset Control Register 15-30
  261. *-----------------------------------------------------------------------
  262. * Reset PLL lock status sticky bit, timer expired status bit and timer
  263. * interrupt status bit
  264. */
  265. #if defined (CONFIG_100MHz)
  266. #define CONFIG_SYS_PLPRCR 0x06301000
  267. #define CONFIG_8xx_GCLK_FREQ 100000000
  268. #elif defined (CONFIG_80MHz)
  269. #define CONFIG_SYS_PLPRCR 0x04f01000
  270. #define CONFIG_8xx_GCLK_FREQ 80000000
  271. #elif defined(CONFIG_75MHz)
  272. #define CONFIG_SYS_PLPRCR 0x04a00100
  273. #define CONFIG_8xx_GCLK_FREQ 75000000
  274. #elif defined(CONFIG_66MHz)
  275. #define CONFIG_SYS_PLPRCR 0x04101000
  276. #define CONFIG_8xx_GCLK_FREQ 66000000
  277. #elif defined(CONFIG_50MHz)
  278. #define CONFIG_SYS_PLPRCR 0x03101000
  279. #define CONFIG_8xx_GCLK_FREQ 50000000
  280. #endif
  281. /*-----------------------------------------------------------------------
  282. * SCCR - System Clock and reset Control Register 15-27
  283. *-----------------------------------------------------------------------
  284. * Set clock output, timebase and RTC source and divider,
  285. * power management and some other internal clocks
  286. */
  287. #define SCCR_MASK SCCR_EBDF11
  288. #ifdef CONFIG_BUS_DIV2
  289. #define CONFIG_SYS_SCCR 0x02020000 | SCCR_RTSEL
  290. #else /* up to 50 MHz we use a 1:1 clock */
  291. #define CONFIG_SYS_SCCR 0x02000000 | SCCR_RTSEL
  292. #endif
  293. /*-----------------------------------------------------------------------
  294. * PCMCIA stuff
  295. *-----------------------------------------------------------------------
  296. *
  297. */
  298. #define CONFIG_SYS_PCMCIA_MEM_ADDR (0xE0000000)
  299. #define CONFIG_SYS_PCMCIA_MEM_SIZE ( 64 << 20 )
  300. #define CONFIG_SYS_PCMCIA_DMA_ADDR (0xE4000000)
  301. #define CONFIG_SYS_PCMCIA_DMA_SIZE ( 64 << 20 )
  302. #define CONFIG_SYS_PCMCIA_ATTRB_ADDR (0xE8000000)
  303. #define CONFIG_SYS_PCMCIA_ATTRB_SIZE ( 64 << 20 )
  304. #define CONFIG_SYS_PCMCIA_IO_ADDR (0xEC000000)
  305. #define CONFIG_SYS_PCMCIA_IO_SIZE ( 64 << 20 )
  306. /*-----------------------------------------------------------------------
  307. * IDE/ATA stuff (Supports IDE harddisk on PCMCIA Adapter)
  308. *-----------------------------------------------------------------------
  309. */
  310. #undef CONFIG_IDE_8xx_PCCARD /* Use IDE with PC Card Adapter */
  311. #define CONFIG_IDE_8xx_DIRECT 1 /* Direct IDE not supported */
  312. #undef CONFIG_IDE_LED /* LED for ide not supported */
  313. #undef CONFIG_IDE_RESET /* reset for ide not supported */
  314. #define CONFIG_SYS_IDE_MAXBUS 1 /* max. 1 IDE bus */
  315. #define CONFIG_SYS_IDE_MAXDEVICE 1 /* max. 1 drive per IDE bus */
  316. #define CONFIG_SYS_ATA_BASE_ADDR 0xFE100010
  317. #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
  318. /*#define CONFIG_SYS_ATA_IDE1_OFFSET 0x0C00 */
  319. #define CONFIG_SYS_ATA_DATA_OFFSET 0x0000 /* Offset for data I/O
  320. */
  321. #define CONFIG_SYS_ATA_REG_OFFSET 0x0200 /* Offset for normal register accesses
  322. */
  323. #define CONFIG_SYS_ATA_ALT_OFFSET 0x0210 /* Offset for alternate registers
  324. */
  325. #define CONFIG_ATAPI
  326. #define CONFIG_SYS_PIO_MODE 0
  327. /*-----------------------------------------------------------------------
  328. *
  329. *-----------------------------------------------------------------------
  330. *
  331. */
  332. /*#define CONFIG_SYS_DER 0x2002000F*/
  333. #define CONFIG_SYS_DER 0x0
  334. /*
  335. * Init Memory Controller:
  336. *
  337. * BR0/1 and OR0/1 (FLASH)
  338. */
  339. #define FLASH_BASE0_PRELIM 0x40000000 /* FLASH bank #0 */
  340. #define FLASH_BASE1_PRELIM 0x60000000 /* FLASH bank #0 */
  341. /* used to re-map FLASH both when starting from SRAM or FLASH:
  342. * restrict access enough to keep SRAM working (if any)
  343. * but not too much to meddle with FLASH accesses
  344. */
  345. #define CONFIG_SYS_REMAP_OR_AM 0x80000000 /* OR addr mask */
  346. #define CONFIG_SYS_PRELIM_OR_AM 0xE0000000 /* OR addr mask */
  347. /*
  348. * FLASH timing:
  349. */
  350. #if defined(CONFIG_100MHz)
  351. #define CONFIG_SYS_OR_TIMING_FLASH 0x000002f4
  352. #define CONFIG_SYS_OR_TIMING_DOC 0x000002f4
  353. #define CONFIG_SYS_MxMR_PTx 0x61000000
  354. #define CONFIG_SYS_MPTPR 0x400
  355. #elif defined(CONFIG_80MHz)
  356. #define CONFIG_SYS_OR_TIMING_FLASH 0x00000ff4
  357. #define CONFIG_SYS_OR_TIMING_DOC 0x000001f4
  358. #define CONFIG_SYS_MxMR_PTx 0x4e000000
  359. #define CONFIG_SYS_MPTPR 0x400
  360. #elif defined(CONFIG_75MHz)
  361. #define CONFIG_SYS_OR_TIMING_FLASH 0x000008f4
  362. #define CONFIG_SYS_OR_TIMING_DOC 0x000002f4
  363. #define CONFIG_SYS_MxMR_PTx 0x49000000
  364. #define CONFIG_SYS_MPTPR 0x400
  365. #elif defined(CONFIG_66MHz)
  366. #define CONFIG_SYS_OR_TIMING_FLASH (OR_ACS_DIV1 | OR_TRLX | OR_CSNT_SAM | \
  367. OR_SCY_3_CLK | OR_EHTR | OR_BI)
  368. /*#define CONFIG_SYS_OR_TIMING_FLASH 0x000001f4 */
  369. #define CONFIG_SYS_OR_TIMING_DOC 0x000003f4
  370. #define CONFIG_SYS_MxMR_PTx 0x40000000
  371. #define CONFIG_SYS_MPTPR 0x400
  372. #else /* 50 MHz */
  373. #define CONFIG_SYS_OR_TIMING_FLASH 0x00000ff4
  374. #define CONFIG_SYS_OR_TIMING_DOC 0x000001f4
  375. #define CONFIG_SYS_MxMR_PTx 0x30000000
  376. #define CONFIG_SYS_MPTPR 0x400
  377. #endif /*CONFIG_??MHz */
  378. #if defined (CONFIG_BOOT_8B) /* 512K X 8 ,29F040 , 2MB space */
  379. #define CONFIG_SYS_OR0_PRELIM (0xffe00000 | CONFIG_SYS_OR_TIMING_FLASH)
  380. #define CONFIG_SYS_BR0_PRELIM ((FLASH_BASE0_PRELIM & BR_BA_MSK) | BR_V | BR_PS_8)
  381. #elif defined (CONFIG_BOOT_16B) /* 29lv160 X 16 , 4MB space */
  382. #define CONFIG_SYS_OR0_PRELIM (0xffc00000 | CONFIG_SYS_OR_TIMING_FLASH)
  383. #define CONFIG_SYS_BR0_PRELIM ((FLASH_BASE0_PRELIM & BR_BA_MSK) | BR_V | BR_PS_16)
  384. #elif defined( CONFIG_BOOT_32B ) /* 29lv160 X 2 X 32, 4/8/16MB , 64MB space */
  385. #define CONFIG_SYS_OR0_PRELIM (0xfc000000 | CONFIG_SYS_OR_TIMING_FLASH)
  386. #define CONFIG_SYS_BR0_PRELIM ((FLASH_BASE0_PRELIM & BR_BA_MSK) | BR_V )
  387. #else
  388. #error Boot device port size missing.
  389. #endif
  390. /*
  391. * Disk-On-Chip configuration
  392. */
  393. #define CONFIG_SYS_DOC_SHORT_TIMEOUT
  394. #define CONFIG_SYS_MAX_DOC_DEVICE 1 /* Max number of DOC devices */
  395. #define CONFIG_SYS_DOC_SUPPORT_2000
  396. #define CONFIG_SYS_DOC_SUPPORT_MILLENNIUM
  397. #define CONFIG_SYS_DOC_BASE 0x80000000
  398. #endif /* __CONFIG_H */