DB64460.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. /*
  2. * (C) Copyright 2001
  3. * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
  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. */
  26. #ifndef __CONFIG_H
  27. #define __CONFIG_H
  28. /* This define must be before the core.h include */
  29. #define CONFIG_DB64460 1 /* this is an DB64460 board */
  30. #ifndef __ASSEMBLY__
  31. #include "../board/Marvell/include/core.h"
  32. #endif
  33. /*-----------------------------------------------------*/
  34. /* #include "../board/db64460/local.h" */
  35. #ifndef __LOCAL_H
  36. #define __LOCAL_H
  37. #define CONFIG_ETHADDR 64:46:00:00:00:01
  38. #define CONFIG_HAS_ETH1
  39. #define CONFIG_ETH1ADDR 64:46:00:00:00:02
  40. #define CONFIG_HAS_ETH2
  41. #define CONFIG_ETH2ADDR 64:46:00:00:00:03
  42. #define CONFIG_ENV_OVERWRITE
  43. #endif /* __CONFIG_H */
  44. /*
  45. * High Level Configuration Options
  46. * (easy to change)
  47. */
  48. #define CONFIG_74xx /* we have a 750FX (override local.h) */
  49. #define CONFIG_DB64460 1 /* this is an DB64460 board */
  50. #define CONFIG_BAUDRATE 115200 /* console baudrate = 115000 */
  51. /*ronen - we don't use the global CONFIG_ECC, since in the global ecc we initialize the
  52. DRAM for ECC in the phase we are relocating to it, which isn't so sufficient.
  53. so we will define our ECC CONFIG and initilize the DRAM for ECC in the DRAM initialization phase,
  54. see sdram_init.c */
  55. #undef CONFIG_ECC /* enable ECC support */
  56. #define CONFIG_MV64460_ECC
  57. /* which initialization functions to call for this board */
  58. #define CONFIG_MISC_INIT_R /* initialize the icache L1 */
  59. #define CONFIG_BOARD_EARLY_INIT_F
  60. #define CFG_BOARD_NAME "DB64460"
  61. #define CONFIG_IDENT_STRING "Marvell DB64460 (1.0)"
  62. /*#define CFG_HUSH_PARSER */
  63. #undef CFG_HUSH_PARSER
  64. #define CFG_PROMPT_HUSH_PS2 "> "
  65. /*
  66. * The following defines let you select what serial you want to use
  67. * for your console driver.
  68. *
  69. * what to do:
  70. * to use the DUART, undef CONFIG_MPSC. If you have hacked a serial
  71. * cable onto the second DUART channel, change the CFG_DUART port from 1
  72. * to 0 below.
  73. *
  74. * to use the MPSC, #define CONFIG_MPSC. If you have wired up another
  75. * mpsc channel, change CONFIG_MPSC_PORT to the desired value.
  76. */
  77. #define CONFIG_MPSC_PORT 0
  78. /* to change the default ethernet port, use this define (options: 0, 1, 2) */
  79. #define CONFIG_NET_MULTI
  80. #define MV_ETH_DEVS 3
  81. /* #undef CONFIG_ETHER_PORT_MII */
  82. #if 0
  83. #define CONFIG_BOOTDELAY -1 /* autoboot disabled */
  84. #else
  85. #define CONFIG_BOOTDELAY 3 /* autoboot after 5 seconds */
  86. #endif
  87. #define CONFIG_ZERO_BOOTDELAY_CHECK
  88. #undef CONFIG_BOOTARGS
  89. /*#define CONFIG_PREBOOT "echo;echo Type \"run flash_nfs\" to mount root filesystem over NFS;echo" */
  90. /* ronen - autoboot using tftp */
  91. #if (CONFIG_BOOTDELAY >= 0)
  92. #define CONFIG_BOOTCOMMAND "tftpboot 0x400000 uImage;\
  93. setenv bootargs ${bootargs} ${bootargs_root} nfsroot=${serverip}:${rootpath} \
  94. ip=${ipaddr}:${serverip}${bootargs_end}; bootm 0x400000; "
  95. #define CONFIG_BOOTARGS "console=ttyS0,115200"
  96. #endif
  97. /* ronen - the u-boot.bin should be ~0x30000 bytes */
  98. #define CONFIG_EXTRA_ENV_SETTINGS \
  99. "burn_uboot_sep= tftp 100000 u-boot.bin;protect off all;era FFF00000 FFF4ffff; \
  100. cp.b 100000 FFF00000 0x40000;protect on 1:0-4;\0" \
  101. "burn_uboot_dep= tftp 100000 u-boot.bin;protect off all;era FFF00000 FFF7ffff; \
  102. cp.b 100000 FFF00000 0x40000;protect on 1:0-7;\0" \
  103. "bootargs_root=root=/dev/nfs rw\0" \
  104. "bootargs_end=:::DB64460:eth0:none \0"\
  105. "ethprime=mv_enet0\0"\
  106. "standalone=fsload 0x400000 uImage;setenv bootargs ${bootargs} root=/dev/mtdblock/0 rw \
  107. ip=${ipaddr}:${serverip}${bootargs_end}; bootm 0x400000;\0"
  108. /* --------------------------------------------------------------------------------------------------------------- */
  109. /* New bootcommands for Marvell DB64460 c 2002 Ingo Assmus */
  110. #define CONFIG_IPADDR 10.2.40.90
  111. #define CONFIG_SERIAL "No. 1"
  112. #define CONFIG_SERVERIP 10.2.1.126
  113. #define CONFIG_ROOTPATH /mnt/yellow_dog_mini
  114. #define CONFIG_TESTDRAMDATA y
  115. #define CONFIG_TESTDRAMADDRESS n
  116. #define CONFIG_TESETDRAMWALK n
  117. /* --------------------------------------------------------------------------------------------------------------- */
  118. #define CONFIG_LOADS_ECHO 0 /* echo off for serial download */
  119. #define CFG_LOADS_BAUD_CHANGE /* allow baudrate changes */
  120. #undef CONFIG_WATCHDOG /* watchdog disabled */
  121. #undef CONFIG_ALTIVEC /* undef to disable */
  122. /*
  123. * BOOTP options
  124. */
  125. #define CONFIG_BOOTP_SUBNETMASK
  126. #define CONFIG_BOOTP_GATEWAY
  127. #define CONFIG_BOOTP_HOSTNAME
  128. #define CONFIG_BOOTP_BOOTPATH
  129. #define CONFIG_BOOTP_BOOTFILESIZE
  130. /*
  131. * JFFS2 partitions
  132. *
  133. */
  134. /* No command line, one static partition, whole device */
  135. #undef CONFIG_JFFS2_CMDLINE
  136. #define CONFIG_JFFS2_DEV "nor1"
  137. #define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
  138. #define CONFIG_JFFS2_PART_OFFSET 0x00000000
  139. /* mtdparts command line support */
  140. /* Use first bank for JFFS2, second bank contains U-Boot.
  141. *
  142. * Note: fake mtd_id's used, no linux mtd map file.
  143. */
  144. /*
  145. #define CONFIG_JFFS2_CMDLINE
  146. #define MTDIDS_DEFAULT "nor1=db64460-1"
  147. #define MTDPARTS_DEFAULT "mtdparts=db64460-1:-(jffs2)"
  148. */
  149. /*
  150. * Command line configuration.
  151. */
  152. #include <config_cmd_default.h>
  153. #define CONFIG_CMD_ASKENV
  154. #define CONFIG_CMD_I2C
  155. #define CONFIG_CMD_EEPROM
  156. #define CONFIG_CMD_CACHE
  157. #define CONFIG_CMD_JFFS2
  158. #define CONFIG_CMD_PCI
  159. #define CONFIG_CMD_NET
  160. /*
  161. * Miscellaneous configurable options
  162. */
  163. #define CFG_I2C_EEPROM_ADDR_LEN 1
  164. #define CFG_I2C_MULTI_EEPROMS
  165. #define CFG_I2C_SPEED 40000 /* I2C speed default */
  166. /* #define CFG_GT_DUAL_CPU also for JTAG even with one cpu */
  167. #define CFG_LONGHELP /* undef to save memory */
  168. #define CFG_PROMPT "=> " /* Monitor Command Prompt */
  169. #if defined(CONFIG_CMD_KGDB)
  170. #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
  171. #else
  172. #define CFG_CBSIZE 256 /* Console I/O Buffer Size */
  173. #endif
  174. #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
  175. #define CFG_MAXARGS 16 /* max number of command args */
  176. #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
  177. /*#define CFG_MEMTEST_START 0x00400000 memtest works on */
  178. /*#define CFG_MEMTEST_END 0x00C00000 4 ... 12 MB in DRAM */
  179. /*#define CFG_MEMTEST_END 0x07c00000 4 ... 124 MB in DRAM */
  180. /*
  181. #define CFG_DRAM_TEST
  182. * DRAM tests
  183. * CFG_DRAM_TEST - enables the following tests.
  184. *
  185. * CFG_DRAM_TEST_DATA - Enables test for shorted or open data lines
  186. * Environment variable 'test_dram_data' must be
  187. * set to 'y'.
  188. * CFG_DRAM_TEST_DATA - Enables test to verify that each word is uniquely
  189. * addressable. Environment variable
  190. * 'test_dram_address' must be set to 'y'.
  191. * CFG_DRAM_TEST_WALK - Enables test a 64-bit walking ones pattern test.
  192. * This test takes about 6 minutes to test 64 MB.
  193. * Environment variable 'test_dram_walk' must be
  194. * set to 'y'.
  195. */
  196. #define CFG_DRAM_TEST
  197. #if defined(CFG_DRAM_TEST)
  198. #define CFG_MEMTEST_START 0x00400000 /* memtest works on */
  199. /* #define CFG_MEMTEST_END 0x00C00000 4 ... 12 MB in DRAM */
  200. #define CFG_MEMTEST_END 0x07c00000 /* 4 ... 124 MB in DRAM */
  201. #define CFG_DRAM_TEST_DATA
  202. #define CFG_DRAM_TEST_ADDRESS
  203. #define CFG_DRAM_TEST_WALK
  204. #endif /* CFG_DRAM_TEST */
  205. #undef CONFIG_DISPLAY_MEMMAP /* at the end of the bootprocess show the memory map */
  206. #undef CFG_DISPLAY_DIMM_SPD_CONTENT /* show SPD content during boot */
  207. #define CFG_LOAD_ADDR 0x00400000 /* default load address */
  208. #define CFG_HZ 1000 /* decr freq: 1ms ticks */
  209. /*ronen - this the Sys clock (cpu bus,internal dram and SDRAM) */
  210. #define CFG_BUS_HZ 133000000 /* 133 MHz (CPU = 5*Bus = 666MHz) */
  211. #define CFG_BUS_CLK CFG_BUS_HZ
  212. #define CFG_DDR_SDRAM_CYCLE_COUNT_LOP 7 /* define the SDRAM cycle count */
  213. #define CFG_DDR_SDRAM_CYCLE_COUNT_ROP 50 /* for 200MHZ -> 5.0 ns, 166MHZ -> 6.0, 133MHZ -> 7.50 ns */
  214. /*ronen - this is the Tclk (MV64460 core) */
  215. #define CFG_TCLK 133000000
  216. #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
  217. #define CFG_750FX_HID0 0x8000c084
  218. #define CFG_750FX_HID1 0x54800000
  219. #define CFG_750FX_HID2 0x00000000
  220. /*
  221. * Low Level Configuration Settings
  222. * (address mappings, register initial values, etc.)
  223. * You should know what you are doing if you make changes here.
  224. */
  225. /*-----------------------------------------------------------------------
  226. * Definitions for initial stack pointer and data area
  227. */
  228. /*
  229. * When locking data in cache you should point the CFG_INIT_RAM_ADDRESS
  230. * To an unused memory region. The stack will remain in cache until RAM
  231. * is initialized
  232. */
  233. #define CFG_INIT_RAM_LOCK
  234. #define CFG_INIT_RAM_ADDR 0x40000000 /* unused memory region */
  235. #define CFG_INIT_RAM_END 0x1000
  236. #define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for init data */
  237. #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
  238. #define RELOCATE_INTERNAL_RAM_ADDR
  239. #ifdef RELOCATE_INTERNAL_RAM_ADDR
  240. #define CFG_INTERNAL_RAM_ADDR 0xf8000000
  241. #endif
  242. /*-----------------------------------------------------------------------
  243. * Start addresses for the final memory configuration
  244. * (Set up by the startup code)
  245. * Please note that CFG_SDRAM_BASE _must_ start at 0
  246. */
  247. #define CFG_SDRAM_BASE 0x00000000
  248. /* Dummies for BAT 4-7 */
  249. #define CFG_SDRAM1_BASE 0x10000000 /* each 256 MByte */
  250. #define CFG_SDRAM2_BASE 0x20000000
  251. #define CFG_SDRAM3_BASE 0x30000000
  252. #define CFG_SDRAM4_BASE 0x40000000
  253. #define CFG_FLASH_BASE 0xfff00000
  254. #define CFG_DFL_BOOTCS_BASE 0xff800000
  255. #define CONFIG_VERY_BIG_RAM /* we will use up to 256M memory for cause we are short of BATS*/
  256. #define BRIDGE_REG_BASE_BOOTM 0xfbe00000 /* this paramaters are used when booting the linux kernel */
  257. #define UART_BASE_BOOTM 0xfbb00000 /* in order to be sync with the kernel parameters. */
  258. #define PCI0_IO_BASE_BOOTM 0xfd000000
  259. #define CFG_RESET_ADDRESS 0xfff00100
  260. #define CFG_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
  261. #define CFG_MONITOR_BASE CFG_FLASH_BASE
  262. #define CFG_MALLOC_LEN (256 << 10) /* Reserve 256 kB for malloc */
  263. /* areas to map different things with the GT in physical space */
  264. #define CFG_DRAM_BANKS 4
  265. /* What to put in the bats. */
  266. #define CFG_MISC_REGION_BASE 0xf0000000
  267. /* Peripheral Device section */
  268. /*******************************************************/
  269. /* We have on the db64460 Board : */
  270. /* GT-Chipset Register Area */
  271. /* GT-Chipset internal SRAM 256k */
  272. /* SRAM on external device module */
  273. /* Real time clock on external device module */
  274. /* dobble UART on external device module */
  275. /* Data flash on external device module */
  276. /* Boot flash on external device module */
  277. /*******************************************************/
  278. #define CFG_DFL_GT_REGS 0x14000000 /* boot time GT_REGS */
  279. #define CFG_DB64460_RESET_ADDR 0x14000000 /* After power on Reset the DB64460 is here */
  280. /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  281. #define CFG_GT_REGS 0xf1000000 /* GT Registers will be mapped here */
  282. #define CFG_DEV_BASE 0xfc000000 /* GT Devices CS start here */
  283. #define CFG_DEV0_SPACE CFG_DEV_BASE /* DEV_CS0 device modul sram */
  284. #define CFG_DEV1_SPACE (CFG_DEV0_SPACE + CFG_DEV0_SIZE) /* DEV_CS1 device modul real time clock (rtc) */
  285. #define CFG_DEV2_SPACE (CFG_DEV1_SPACE + CFG_DEV1_SIZE) /* DEV_CS2 device modul doubel uart (duart) */
  286. #define CFG_DEV3_SPACE (CFG_DEV2_SPACE + CFG_DEV2_SIZE) /* DEV_CS3 device modul large flash */
  287. #define CFG_DEV0_SIZE _8M /* db64460 sram @ 0xfc00.0000 */
  288. #define CFG_DEV1_SIZE _8M /* db64460 rtc @ 0xfc80.0000 */
  289. #define CFG_DEV2_SIZE _16M /* db64460 duart @ 0xfd00.0000 */
  290. #define CFG_DEV3_SIZE _16M /* db64460 flash @ 0xfe00.0000 */
  291. /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  292. /* Reset values for Port behavior (8bit/ 32bit, etc.) only corrected by device width */
  293. #define CFG_DEV0_PAR 0x8FEFFFFF /* 32Bit sram */
  294. #define CFG_DEV1_PAR 0x8FCFFFFF /* 8Bit rtc */
  295. #define CFG_DEV2_PAR 0x8FCFFFFF /* 8Bit duart */
  296. #define CFG_8BIT_BOOT_PAR 0x8FCFFFFF /* 8Bit flash */
  297. #define CFG_32BIT_BOOT_PAR 0x8FEFFFFF /* 32Bit flash */
  298. /* c 4 a 8 2 4 1 c */
  299. /* 33 22|2222|22 22|111 1|11 11|1 1 | | */
  300. /* 10 98|7654|32 10|987 6|54 32|1 098|7 654|3 210 */
  301. /* 11|00|0100|10 10|100|0 00|10 0|100 0|001 1|100 */
  302. /* 3| 0|.... ..| 2| 4 | 0 | 4 | 8 | 3 | 4 */
  303. /* ronen - update MPP Control MV64460*/
  304. #define CFG_MPP_CONTROL_0 0x02222222
  305. #define CFG_MPP_CONTROL_1 0x11333011
  306. #define CFG_MPP_CONTROL_2 0x40431111
  307. #define CFG_MPP_CONTROL_3 0x00000044
  308. /*# define CFG_SERIAL_PORT_MUX 0x00000102 0=hiZ 1=MPSC0 2=ETH 0 and 2 RMII */
  309. # define CFG_GPP_LEVEL_CONTROL 0x2c600000 /* 1111 1001 0000 1111 1100 0000 0000 0000*/
  310. /* gpp[31] gpp[30] gpp[29] gpp[28] */
  311. /* gpp[27] gpp[24]*/
  312. /* gpp[19:14] */
  313. /* setup new config_value for MV64460 DDR-RAM !! */
  314. # define CFG_SDRAM_CONFIG 0x58200400 /* 0x1400 copied from Dink32 bzw. VxWorks*/
  315. #define CFG_DUART_IO CFG_DEV2_SPACE
  316. #define CFG_DUART_CHAN 1 /* channel to use for console */
  317. #define CFG_INIT_CHAN1
  318. #define CFG_INIT_CHAN2
  319. #define SRAM_BASE CFG_DEV0_SPACE
  320. #define SRAM_SIZE 0x00100000 /* 1 MB of sram */
  321. /*-----------------------------------------------------------------------
  322. * PCI stuff
  323. *-----------------------------------------------------------------------
  324. */
  325. #define PCI_HOST_ADAPTER 0 /* configure ar pci adapter */
  326. #define PCI_HOST_FORCE 1 /* configure as pci host */
  327. #define PCI_HOST_AUTO 2 /* detected via arbiter enable */
  328. #define CONFIG_PCI /* include pci support */
  329. #define CONFIG_PCI_HOST PCI_HOST_FORCE /* select pci host function */
  330. #define CONFIG_PCI_PNP /* do pci plug-and-play */
  331. #define CONFIG_EEPRO100 /* ronen - Support for Intel 82557/82559/82559ER chips */
  332. /* PCI MEMORY MAP section */
  333. #define CFG_PCI0_MEM_BASE 0x80000000
  334. #define CFG_PCI0_MEM_SIZE _128M
  335. #define CFG_PCI1_MEM_BASE 0x88000000
  336. #define CFG_PCI1_MEM_SIZE _128M
  337. #define CFG_PCI0_0_MEM_SPACE (CFG_PCI0_MEM_BASE)
  338. #define CFG_PCI1_0_MEM_SPACE (CFG_PCI1_MEM_BASE)
  339. /* PCI I/O MAP section */
  340. #define CFG_PCI0_IO_BASE 0xfa000000
  341. #define CFG_PCI0_IO_SIZE _16M
  342. #define CFG_PCI1_IO_BASE 0xfb000000
  343. #define CFG_PCI1_IO_SIZE _16M
  344. #define CFG_PCI0_IO_SPACE (CFG_PCI0_IO_BASE)
  345. #define CFG_PCI0_IO_SPACE_PCI (CFG_PCI0_IO_BASE) /* ronen we want phy=bus 0x00000000 */
  346. #define CFG_PCI1_IO_SPACE (CFG_PCI1_IO_BASE)
  347. #define CFG_PCI1_IO_SPACE_PCI (CFG_PCI1_IO_BASE) /* ronen we want phy=bus 0x00000000 */
  348. #if defined (CONFIG_750CX)
  349. #define CFG_PCI_IDSEL 0x0
  350. #else
  351. #define CFG_PCI_IDSEL 0x30
  352. #endif
  353. /*----------------------------------------------------------------------
  354. * Initial BAT mappings
  355. */
  356. /* NOTES:
  357. * 1) GUARDED and WRITE_THRU not allowed in IBATS
  358. * 2) CACHEINHIBIT and WRITETHROUGH not allowed together in same BAT
  359. */
  360. /* SDRAM */
  361. #define CFG_IBAT0L (CFG_SDRAM_BASE | BATL_PP_RW | BATL_CACHEINHIBIT)
  362. #define CFG_IBAT0U (CFG_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  363. #define CFG_DBAT0L (CFG_SDRAM_BASE | BATL_PP_RW | BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  364. #define CFG_DBAT0U CFG_IBAT0U
  365. /* init ram */
  366. #define CFG_IBAT1L (CFG_INIT_RAM_ADDR | BATL_PP_RW | BATL_MEMCOHERENCE)
  367. #define CFG_IBAT1U (CFG_INIT_RAM_ADDR | BATU_BL_256K | BATU_VS | BATU_VP)
  368. #define CFG_DBAT1L CFG_IBAT1L
  369. #define CFG_DBAT1U CFG_IBAT1U
  370. /* PCI0, PCI1 in one BAT */
  371. #define CFG_IBAT2L BATL_NO_ACCESS
  372. #define CFG_IBAT2U CFG_DBAT2U
  373. #define CFG_DBAT2L (CFG_PCI0_MEM_BASE | BATL_CACHEINHIBIT | BATL_PP_RW | BATL_GUARDEDSTORAGE)
  374. #define CFG_DBAT2U (CFG_PCI0_MEM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  375. /* GT regs, bootrom, all the devices, PCI I/O */
  376. #define CFG_IBAT3L (CFG_MISC_REGION_BASE | BATL_CACHEINHIBIT | BATL_PP_RW)
  377. #define CFG_IBAT3U (CFG_MISC_REGION_BASE | BATU_VS | BATU_VP | BATU_BL_256M)
  378. #define CFG_DBAT3L (CFG_MISC_REGION_BASE | BATL_CACHEINHIBIT | BATL_PP_RW | BATL_GUARDEDSTORAGE)
  379. #define CFG_DBAT3U CFG_IBAT3U
  380. /* I2C addresses for the two DIMM SPD chips */
  381. #define DIMM0_I2C_ADDR 0x56
  382. #define DIMM1_I2C_ADDR 0x54
  383. /*
  384. * For booting Linux, the board info and command line data
  385. * have to be in the first 8 MB of memory, since this is
  386. * the maximum mapped by the Linux kernel during initialization.
  387. */
  388. #define CFG_BOOTMAPSZ (8<<20) /* Initial Memory map for Linux */
  389. /*-----------------------------------------------------------------------
  390. * FLASH organization
  391. */
  392. #define CFG_MAX_FLASH_BANKS 2 /* max number of memory banks */
  393. #define CFG_MAX_FLASH_SECT 67 /* max number of sectors on one chip */
  394. #define CFG_EXTRA_FLASH_DEVICE DEVICE3 /* extra flash at device 3 */
  395. #define CFG_EXTRA_FLASH_WIDTH 4 /* 32 bit */
  396. #define CFG_BOOT_FLASH_WIDTH 1 /* 8 bit */
  397. #define CFG_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  398. #define CFG_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  399. #define CFG_FLASH_LOCK_TOUT 500 /* Timeout for Flash Lock (in ms) */
  400. #define CFG_FLASH_CFI 1
  401. #define CFG_ENV_IS_IN_FLASH 1
  402. #define CFG_ENV_SIZE 0x1000 /* Total Size of Environment Sector */
  403. #define CFG_ENV_SECT_SIZE 0x10000
  404. #define CFG_ENV_ADDR 0xFFF78000 /* Marvell 8-Bit Bootflash last sector */
  405. /* #define CFG_ENV_ADDR (CFG_FLASH_BASE+CFG_MONITOR_LEN-CFG_ENV_SECT_SIZE) */
  406. /*-----------------------------------------------------------------------
  407. * Cache Configuration
  408. */
  409. #define CFG_CACHELINE_SIZE 32 /* For all MPC74xx CPUs */
  410. #if defined(CONFIG_CMD_KGDB)
  411. #define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */
  412. #endif
  413. /*-----------------------------------------------------------------------
  414. * L2CR setup -- make sure this is right for your board!
  415. * look in include/mpc74xx.h for the defines used here
  416. */
  417. #define CFG_L2
  418. #if defined (CONFIG_750CX) || defined (CONFIG_750FX)
  419. #define L2_INIT 0
  420. #else
  421. #define L2_INIT 0
  422. /*
  423. #define L2_INIT (L2CR_L2SIZ_2M | L2CR_L2CLK_3 | L2CR_L2RAM_BURST | \
  424. L2CR_L2OH_5 | L2CR_L2CTL | L2CR_L2WT)
  425. */
  426. #endif
  427. #define L2_ENABLE (L2_INIT | L2CR_L2E)
  428. /*
  429. * Internal Definitions
  430. *
  431. * Boot Flags
  432. */
  433. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  434. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  435. #define CFG_BOARD_ASM_INIT 1
  436. #endif /* __CONFIG_H */