linkstation.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  1. /*
  2. * Copyright (C) 2006 Mihai Georgian <u-boot@linuxnotincluded.org.uk>
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  17. * MA 02111-1307 USA
  18. */
  19. #ifndef __CONFIG_H
  20. #define __CONFIG_H
  21. /*
  22. * Valid values for CONFIG_SYS_TEXT_BASE are:
  23. *
  24. * Standard configuration - all models
  25. * 0xFFF00000 boot from flash
  26. *
  27. * Test configuration (boot from RAM using uloader.o)
  28. * LinkStation HD-HLAN and KuroBox Standard
  29. * 0x03F00000 boot from RAM
  30. * LinkStation HD-HGLAN and KuroBox HG
  31. * 0x07F00000 boot from RAM
  32. */
  33. #ifndef CONFIG_SYS_TEXT_BASE
  34. #define CONFIG_SYS_TEXT_BASE 0xFFF00000
  35. #endif
  36. #if 0
  37. #define DEBUG
  38. #endif
  39. #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
  40. /*-----------------------------------------------------------------------
  41. * User configurable settings:
  42. * Mandatory settings:
  43. * CONFIG_IPADDR_LS - the IP address of the LinkStation
  44. * CONFIG_SERVERIP_LS - the address of the server for NFS/TFTP/DHCP/BOOTP
  45. * Optional settins:
  46. * CONFIG_NCIP_LS - the adress of the computer running net console
  47. * if not configured, it will be set to
  48. * CONFIG_SERVERIP_LS
  49. */
  50. #define CONFIG_IPADDR_LS 192.168.11.150
  51. #define CONFIG_SERVERIP_LS 192.168.11.149
  52. #if !defined(CONFIG_IPADDR_LS) || !defined(CONFIG_SERVERIP_LS)
  53. #error Both CONFIG_IPADDR_LS and CONFIG_SERVERIP_LS must be defined
  54. #endif
  55. #if !defined(CONFIG_NCIP_LS)
  56. #define CONFIG_NCIP_LS CONFIG_SERVERIP_LS
  57. #endif
  58. /*----------------------------------------------------------------------
  59. * DO NOT CHANGE ANYTHING BELOW, UNLESS YOU KNOW WHAT YOU ARE DOING
  60. *---------------------------------------------------------------------*/
  61. #define CONFIG_MPC8245 1
  62. #define CONFIG_LINKSTATION 1
  63. /*---------------------------------------
  64. * Supported models
  65. *
  66. * LinkStation HDLAN /KuroBox Standard (CONFIG_HLAN)
  67. * LinkStation old model (CONFIG_LAN) - totally untested
  68. * LinkStation HGLAN / KuroBox HG (CONFIG_HGLAN)
  69. *
  70. * Models not supported yet
  71. * TeraStatin (CONFIG_HTGL)
  72. */
  73. #if defined(CONFIG_HLAN) || defined(CONFIG_LAN)
  74. #define CONFIG_IDENT_STRING " LinkStation / KuroBox"
  75. #elif defined(CONFIG_HGLAN)
  76. #define CONFIG_IDENT_STRING " LinkStation HG / KuroBox HG"
  77. #elif defined(CONFIG_HTGL)
  78. #define CONFIG_IDENT_STRING " TeraStation"
  79. #else
  80. #error No LinkStation model defined
  81. #endif
  82. #define CONFIG_BOOTDELAY 5
  83. #define CONFIG_ZERO_BOOTDELAY_CHECK
  84. #undef CONFIG_BOOT_RETRY_TIME
  85. #define CONFIG_AUTOBOOT_KEYED
  86. #define CONFIG_AUTOBOOT_PROMPT \
  87. "Boot in %02d seconds ('s' to stop)...", bootdelay
  88. #define CONFIG_AUTOBOOT_STOP_STR "s"
  89. #define CONFIG_CMD_IDE
  90. #define CONFIG_CMD_PCI
  91. #define CONFIG_CMD_DHCP
  92. #define CONFIG_CMD_PING
  93. #define CONFIG_CMD_EXT2
  94. #define CONFIG_BOOTP_MASK CONFIG_BOOTP_ALL
  95. #define CONFIG_OF_LIBFDT 1
  96. #define OF_STDOUT_PATH "/soc10x/serial@80004600"
  97. /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
  98. #include <config_cmd_default.h>
  99. /*
  100. * Miscellaneous configurable options
  101. */
  102. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  103. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  104. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  105. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  106. #define CONFIG_SYS_MAXARGS 16 /* Max number of command args */
  107. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  108. #define CONFIG_SYS_LOAD_ADDR 0x00800000 /* Default load address: 8 MB */
  109. #define CONFIG_BOOTCOMMAND "run bootcmd1"
  110. #define CONFIG_BOOTARGS "root=/dev/sda1 console=ttyS1,57600 netconsole=@192.168.1.7/eth0,@192.168.1.1/00:50:BF:A4:59:71 rtc-rs5c372.probe=0,0x32 debug"
  111. #define CONFIG_NFSBOOTCOMMAND "bootp;run nfsargs;bootm"
  112. #define CONFIG_SYS_CONSOLE_IS_IN_ENV
  113. #define XMK_STR(x) #x
  114. #define MK_STR(x) XMK_STR(x)
  115. #if defined(CONFIG_HLAN) || defined(CONFIG_LAN)
  116. #define UBFILE "share/u-boot/u-boot-hd.flash.bin"
  117. #elif defined(CONFIG_HGLAN)
  118. #define UBFILE "share/u-boot/u-boot-hg.flash.bin"
  119. #elif defined(CONFIG_HTGL)
  120. #define UBFILE "share/u-boot/u-boot-ht.flash.bin"
  121. #else
  122. #error No LinkStation model defined
  123. #endif
  124. #define CONFIG_EXTRA_ENV_SETTINGS \
  125. "autoload=no\0" \
  126. "stdin=nc\0" \
  127. "stdout=nc\0" \
  128. "stderr=nc\0" \
  129. "ipaddr="MK_STR(CONFIG_IPADDR_LS)"\0" \
  130. "netmask=255.255.255.0\0" \
  131. "serverip="MK_STR(CONFIG_SERVERIP_LS)"\0" \
  132. "ncip="MK_STR(CONFIG_NCIP_LS)"\0" \
  133. "netretry=no\0" \
  134. "nc=setenv stdin nc;setenv stdout nc;setenv stderr nc\0" \
  135. "ser=setenv stdin serial;setenv stdout serial;setenv stderr serial\0" \
  136. "ldaddr=800000\0" \
  137. "hdpart=0:1\0" \
  138. "hdfile=boot/uImage\0" \
  139. "hdload=echo Loading ${hdpart}:${hdfile};ext2load ide ${hdpart} ${ldaddr} ${hdfile};ext2load ide ${hdpart} 7f0000 boot/kuroboxHG.dtb\0" \
  140. "boothd=setenv bootargs " CONFIG_BOOTARGS ";bootm ${ldaddr} - 7f0000\0" \
  141. "hdboot=run hdload;run boothd\0" \
  142. "flboot=setenv bootargs root=/dev/hda1;bootm ffc00000\0" \
  143. "emboot=setenv bootargs root=/dev/ram0;bootm ffc00000\0" \
  144. "nfsargs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath} " \
  145. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off\0" \
  146. "bootretry=30\0" \
  147. "bootcmd1=run hdboot;run flboot\0" \
  148. "bootcmd2=run flboot\0" \
  149. "bootcmd3=run emboot\0" \
  150. "writeng=protect off fff70000 fff7ffff;era fff70000 fff7ffff;mw.l 800000 4e474e47 1;cp.b 800000 fff70000 4\0" \
  151. "writeok=protect off fff70000 fff7ffff;era fff70000 fff7ffff;mw.l 800000 4f4b4f4b 1;cp.b 800000 fff70000 4\0" \
  152. "ubpart=0:3\0" \
  153. "ubfile="UBFILE"\0" \
  154. "ubload=echo Loading ${ubpart}:${ubfile};ext2load ide ${ubpart} ${ldaddr} ${ubfile}\0" \
  155. "ubsaddr=fff00000\0" \
  156. "ubeaddr=fff2ffff\0" \
  157. "ubflash=protect off ${ubsaddr} ${ubeaddr};era ${ubsaddr} ${ubeaddr};cp.b ${ldaddr} ${ubsaddr} ${filesize};cmp.b ${ldaddr} ${ubsaddr} ${filesize}\0" \
  158. "upgrade=run ubload ubflash\0"
  159. /*-----------------------------------------------------------------------
  160. * PCI stuff
  161. */
  162. #define CONFIG_PCI
  163. /* Verified: CONFIG_PCI_PNP doesn't work */
  164. #undef CONFIG_PCI_PNP
  165. #define CONFIG_PCI_SCAN_SHOW
  166. #ifndef CONFIG_PCI_PNP
  167. /* Keep the following defines in sync with the BAT mappings */
  168. #define PCI_ETH_IOADDR 0xbfff00
  169. #define PCI_ETH_MEMADDR 0xbffffc00
  170. #define PCI_IDE_IOADDR 0xbffed0
  171. #define PCI_IDE_MEMADDR 0xbffffb00
  172. #define PCI_USB0_IOADDR 0
  173. #define PCI_USB0_MEMADDR 0xbfffe000
  174. #define PCI_USB1_IOADDR 0
  175. #define PCI_USB1_MEMADDR 0xbfffd000
  176. #define PCI_USB2_IOADDR 0
  177. #define PCI_USB2_MEMADDR 0xbfffcf00
  178. #endif
  179. /*-----------------------------------------------------------------------
  180. * Ethernet stuff
  181. */
  182. #if defined(CONFIG_LAN) || defined(CONFIG_HLAN)
  183. #define CONFIG_TULIP
  184. #define CONFIG_TULIP_USE_IO
  185. #elif defined(CONFIG_HGLAN) || defined(CONFIG_HTGL)
  186. #define CONFIG_RTL8169
  187. #endif
  188. #define CONFIG_NET_RETRY_COUNT 5
  189. #define CONFIG_NETCONSOLE
  190. /*-----------------------------------------------------------------------
  191. * Start addresses for the final memory configuration
  192. * (Set up by the startup code)
  193. * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
  194. */
  195. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  196. #define CONFIG_SYS_FLASH_BASE 0xFFC00000
  197. #define CONFIG_SYS_FLASH_SIZE 0x00400000
  198. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
  199. #define CONFIG_SYS_RESET_ADDRESS 0xFFF00100
  200. #define CONFIG_SYS_EUMB_ADDR 0x80000000
  201. #define CONFIG_SYS_PCI_MEM_ADDR 0xB0000000
  202. #define CONFIG_SYS_MISC_REGION_ADDR 0xFE000000
  203. #define CONFIG_SYS_MONITOR_LEN 0x00040000 /* 256 kB */
  204. #define CONFIG_SYS_MALLOC_LEN (512 << 10) /* Reserve some kB for malloc() */
  205. #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
  206. #define CONFIG_SYS_MEMTEST_END 0x00800000 /* 1M ... 8M in DRAM */
  207. /* Maximum amount of RAM */
  208. #if defined(CONFIG_HLAN) || defined(CONFIG_LAN)
  209. #define CONFIG_SYS_MAX_RAM_SIZE 0x04000000 /* 64MB of SDRAM */
  210. #elif defined(CONFIG_HGLAN) || defined(CONFIG_HTGL)
  211. #define CONFIG_SYS_MAX_RAM_SIZE 0x08000000 /* 128MB of SDRAM */
  212. #else
  213. #error Unknown LinkStation type
  214. #endif
  215. /*-----------------------------------------------------------------------
  216. * Change CONFIG_SYS_TEXT_BASE in bord/linkstation/config.mk to get a RAM build
  217. *
  218. * RAM based builds are for testing purposes. A Linux module, uloader.o,
  219. * exists to load U-Boot and pass control to it
  220. *
  221. * Always do "make clean" after changing the build type
  222. */
  223. #if CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE
  224. #define CONFIG_SYS_RAMBOOT
  225. #endif
  226. /*-----------------------------------------------------------------------
  227. * Definitions for initial stack pointer and data area
  228. */
  229. #if 1 /* RAM is available when the first C function is called */
  230. #define CONFIG_SYS_INIT_RAM_ADDR (CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_MAX_RAM_SIZE - 0x1000)
  231. #else
  232. #define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
  233. #endif
  234. #define CONFIG_SYS_INIT_RAM_SIZE 0x1000
  235. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  236. /*----------------------------------------------------------------------
  237. * Serial configuration
  238. */
  239. #define CONFIG_CONS_INDEX 1
  240. #define CONFIG_BAUDRATE 57600
  241. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  242. #define CONFIG_SYS_NS16550
  243. #define CONFIG_SYS_NS16550_SERIAL
  244. #define CONFIG_SYS_NS16550_REG_SIZE 1
  245. #define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
  246. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_EUMB_ADDR + 0x4600) /* Console port */
  247. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_EUMB_ADDR + 0x4500) /* AVR port */
  248. /*
  249. * Low Level Configuration Settings
  250. * (address mappings, register initial values, etc.)
  251. * You should know what you are doing if you make changes here.
  252. * For the detail description refer to the MPC8245 user's manual.
  253. *
  254. * Unless indicated otherwise, the values are
  255. * taken from the orignal Linkstation boot code
  256. *
  257. * Most of the low level configuration setttings are normally used
  258. * in arch/powerpc/cpu/mpc824x/cpu_init.c which is NOT used by this implementation.
  259. * Low level initialisation is done in board/linkstation/early_init.S
  260. * The values below are included for reference purpose only
  261. */
  262. /* FIXME: 32.768 MHz is the crystal frequency but */
  263. /* the real frequency is lower by about 0.75% */
  264. #define CONFIG_SYS_CLK_FREQ 32768000
  265. #define CONFIG_SYS_HZ 1000
  266. /* Bit-field values for MCCR1. */
  267. #define CONFIG_SYS_ROMNAL 0
  268. #define CONFIG_SYS_ROMFAL 11
  269. #define CONFIG_SYS_BANK0_ROW 2 /* Only bank 0 used: 13 x n x 4 */
  270. #define CONFIG_SYS_BANK1_ROW 0
  271. #define CONFIG_SYS_BANK2_ROW 0
  272. #define CONFIG_SYS_BANK3_ROW 0
  273. #define CONFIG_SYS_BANK4_ROW 0
  274. #define CONFIG_SYS_BANK5_ROW 0
  275. #define CONFIG_SYS_BANK6_ROW 0
  276. #define CONFIG_SYS_BANK7_ROW 0
  277. /* Bit-field values for MCCR2. */
  278. #define CONFIG_SYS_TSWAIT 0
  279. #if defined(CONFIG_LAN) || defined(CONFIG_HLAN)
  280. #define CONFIG_SYS_REFINT 0x15e0
  281. #elif defined(CONFIG_HGLAN) || defined(CONFIG_HTGL)
  282. #define CONFIG_SYS_REFINT 0x1580
  283. #endif
  284. /* Burst To Precharge. Bits of this value go to MCCR3 and MCCR4. */
  285. #define CONFIG_SYS_BSTOPRE 0x91c
  286. /* Bit-field values for MCCR3. */
  287. #define CONFIG_SYS_REFREC 7
  288. /* Bit-field values for MCCR4. */
  289. #define CONFIG_SYS_PRETOACT 2
  290. #define CONFIG_SYS_ACTTOPRE 2 /* Original value was 2 */
  291. #define CONFIG_SYS_ACTORW 2
  292. #if defined(CONFIG_LAN) || defined(CONFIG_HLAN)
  293. #define CONFIG_SYS_SDMODE_CAS_LAT 2 /* For 100MHz bus */
  294. /*#define CONFIG_SYS_SDMODE_BURSTLEN 3*/
  295. #elif defined(CONFIG_HGLAN) || defined(CONFIG_HTGL)
  296. #define CONFIG_SYS_SDMODE_CAS_LAT 3 /* For 133MHz bus */
  297. /*#define CONFIG_SYS_SDMODE_BURSTLEN 2*/
  298. #endif
  299. #define CONFIG_SYS_REGISTERD_TYPE_BUFFER 1
  300. #define CONFIG_SYS_EXTROM 1 /* Original setting but there is no EXTROM */
  301. #define CONFIG_SYS_REGDIMM 0
  302. #define CONFIG_SYS_DBUS_SIZE2 1
  303. #define CONFIG_SYS_SDMODE_WRAP 0
  304. #define CONFIG_SYS_PGMAX 0x32 /* All boards use this setting. Original 0x92 */
  305. #define CONFIG_SYS_SDRAM_DSCD 0x30
  306. /* Memory bank settings.
  307. * Only bits 20-29 are actually used from these vales to set the
  308. * start/end addresses. The upper two bits will always be 0, and the lower
  309. * 20 bits will be 0x00000 for a start address, or 0xfffff for an end
  310. * address. Refer to the MPC8240 book.
  311. */
  312. #define CONFIG_SYS_BANK0_START 0x00000000
  313. #define CONFIG_SYS_BANK0_END (CONFIG_SYS_MAX_RAM_SIZE - 1)
  314. #define CONFIG_SYS_BANK0_ENABLE 1
  315. #define CONFIG_SYS_BANK1_START 0x3ff00000
  316. #define CONFIG_SYS_BANK1_END 0x3fffffff
  317. #define CONFIG_SYS_BANK1_ENABLE 0
  318. #define CONFIG_SYS_BANK2_START 0x3ff00000
  319. #define CONFIG_SYS_BANK2_END 0x3fffffff
  320. #define CONFIG_SYS_BANK2_ENABLE 0
  321. #define CONFIG_SYS_BANK3_START 0x3ff00000
  322. #define CONFIG_SYS_BANK3_END 0x3fffffff
  323. #define CONFIG_SYS_BANK3_ENABLE 0
  324. #define CONFIG_SYS_BANK4_START 0x3ff00000
  325. #define CONFIG_SYS_BANK4_END 0x3fffffff
  326. #define CONFIG_SYS_BANK4_ENABLE 0
  327. #define CONFIG_SYS_BANK5_START 0x3ff00000
  328. #define CONFIG_SYS_BANK5_END 0x3fffffff
  329. #define CONFIG_SYS_BANK5_ENABLE 0
  330. #define CONFIG_SYS_BANK6_START 0x3ff00000
  331. #define CONFIG_SYS_BANK6_END 0x3fffffff
  332. #define CONFIG_SYS_BANK6_ENABLE 0
  333. #define CONFIG_SYS_BANK7_START 0x3ff00000
  334. #define CONFIG_SYS_BANK7_END 0x3fffffff
  335. #define CONFIG_SYS_BANK7_ENABLE 0
  336. #define CONFIG_SYS_ODCR 0x15
  337. /*----------------------------------------------------------------------
  338. * Initial BAT mappings
  339. */
  340. /* NOTES:
  341. * 1) GUARDED and WRITETHROUGH not allowed in IBATS
  342. * 2) CACHEINHIBIT and WRITETHROUGH not allowed together in same BAT
  343. */
  344. /* SDRAM */
  345. #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  346. #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_128M | BATU_VS | BATU_VP)
  347. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
  348. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
  349. /* EUMB: 1MB of address space */
  350. #define CONFIG_SYS_IBAT1L (CONFIG_SYS_EUMB_ADDR | BATL_PP_10 | BATL_CACHEINHIBIT)
  351. #define CONFIG_SYS_IBAT1U (CONFIG_SYS_EUMB_ADDR | BATU_BL_1M | BATU_VS | BATU_VP)
  352. #define CONFIG_SYS_DBAT1L (CONFIG_SYS_IBAT1L | BATL_GUARDEDSTORAGE)
  353. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  354. /* PCI Mem: 256MB of address space */
  355. #define CONFIG_SYS_IBAT2L (CONFIG_SYS_PCI_MEM_ADDR | BATL_PP_10 | BATL_CACHEINHIBIT)
  356. #define CONFIG_SYS_IBAT2U (CONFIG_SYS_PCI_MEM_ADDR | BATU_BL_256M | BATU_VS | BATU_VP)
  357. #define CONFIG_SYS_DBAT2L (CONFIG_SYS_IBAT2L | BATL_GUARDEDSTORAGE)
  358. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  359. /* PCI and local ROM/Flash: last 32MB of address space */
  360. #define CONFIG_SYS_IBAT3L (CONFIG_SYS_MISC_REGION_ADDR | BATL_PP_10 | BATL_CACHEINHIBIT)
  361. #define CONFIG_SYS_IBAT3U (CONFIG_SYS_MISC_REGION_ADDR | BATU_BL_32M | BATU_VS | BATU_VP)
  362. #define CONFIG_SYS_DBAT3L (CONFIG_SYS_IBAT3L | BATL_GUARDEDSTORAGE)
  363. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  364. /*
  365. * For booting Linux, the board info and command line data
  366. * have to be in the first 8 MB of memory, since this is
  367. * the maximum mapped by the Linux kernel during initialization.
  368. *
  369. * FIXME: This doesn't appear to be true for the newer kernels
  370. * which map more that 8 MB
  371. */
  372. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  373. /*-----------------------------------------------------------------------
  374. * FLASH organization
  375. */
  376. #define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */
  377. #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */
  378. #undef CONFIG_SYS_FLASH_PROTECTION
  379. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
  380. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max number of flash banks */
  381. #define CONFIG_SYS_MAX_FLASH_SECT 72 /* Max number of sectors per flash */
  382. #define CONFIG_SYS_FLASH_ERASE_TOUT 12000
  383. #define CONFIG_SYS_FLASH_WRITE_TOUT 1000
  384. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */
  385. #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
  386. #define CONFIG_SYS_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash */
  387. #define CONFIG_ENV_IS_IN_FLASH
  388. /*
  389. * The original LinkStation flash organisation uses
  390. * 448 kB (0xFFF00000 - 0xFFF6FFFF) for the boot loader
  391. * We use the last sector of this area to store the environment
  392. * which leaves max. 384 kB for the U-Boot itself
  393. */
  394. #define CONFIG_ENV_ADDR 0xFFF60000
  395. #define CONFIG_ENV_SIZE 0x00010000
  396. #define CONFIG_ENV_SECT_SIZE 0x00010000
  397. /*-----------------------------------------------------------------------
  398. * Cache Configuration
  399. */
  400. #define CONFIG_SYS_CACHELINE_SIZE 32
  401. #ifdef CONFIG_CMD_KGDB
  402. #define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
  403. #endif
  404. /*-----------------------------------------------------------------------
  405. * IDE/ATA definitions
  406. */
  407. #undef CONFIG_IDE_LED /* No IDE LED */
  408. #define CONFIG_IDE_RESET /* no reset for ide supported */
  409. #define CONFIG_IDE_PREINIT /* check for units */
  410. #define CONFIG_LBA48 /* 48 bit LBA supported */
  411. #if defined(CONFIG_LAN) || defined(CONFIG_HLAN) || defined(CONFIG_HGLAN)
  412. #define CONFIG_SYS_IDE_MAXBUS 1 /* Scan only 1 IDE bus */
  413. #define CONFIG_SYS_IDE_MAXDEVICE 1 /* Only 1 drive per IDE bus */
  414. #elif defined(CONFIG_HGTL)
  415. #define CONFIG_SYS_IDE_MAXBUS 2 /* Max. 2 IDE busses */
  416. #define CONFIG_SYS_IDE_MAXDEVICE 2 /* max. 2 drives per IDE bus */
  417. #else
  418. #error Config IDE: Unknown LinkStation type
  419. #endif
  420. #define CONFIG_SYS_ATA_BASE_ADDR 0
  421. #define CONFIG_SYS_ATA_DATA_OFFSET 0 /* Offset for data I/O */
  422. #define CONFIG_SYS_ATA_REG_OFFSET 0 /* Offset for normal registers */
  423. #define CONFIG_SYS_ATA_ALT_OFFSET 0 /* Offset for alternate registers */
  424. /*-----------------------------------------------------------------------
  425. * Partitions and file system
  426. */
  427. #define CONFIG_DOS_PARTITION
  428. #endif /* __CONFIG_H */