CRAYL1.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /*
  2. * (C) Copyright 2000-2004
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. * David Updegraff, Cray, Inc. dave@cray.com: our 405 is walnut-lite..
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. /*
  25. * board/config.h - configuration options, board specific
  26. */
  27. #ifndef __CONFIG_H
  28. #define __CONFIG_H
  29. #define CONFIG_CRAYL1
  30. /*
  31. * High Level Configuration Options
  32. * (easy to change)
  33. */
  34. #define CONFIG_405GP 1 /* This is a PPC405 CPU */
  35. #define CONFIG_4xx 1 /* ...member of PPC405 family */
  36. #define CONFIG_SYS_CLK_FREQ 25000000
  37. #define CONFIG_BAUDRATE 9600
  38. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  39. #define CONFIG_PPC4xx_EMAC
  40. #define CONFIG_MII 1 /* MII PHY management */
  41. #define CONFIG_PHY_ADDR 1 /* PHY address; handling of ENET */
  42. #define CONFIG_BOARD_EARLY_INIT_F 1 /* early setup for 405gp */
  43. #define CONFIG_MISC_INIT_R 1 /* so that a misc_init_r() is called */
  44. #define CONFIG_NET_MULTI
  45. #define CONFIG_CONS_INDEX 1 /* Use UART0 */
  46. #define CONFIG_SYS_NS16550
  47. #define CONFIG_SYS_NS16550_SERIAL
  48. #define CONFIG_SYS_NS16550_REG_SIZE 1
  49. #define CONFIG_SYS_NS16550_CLK get_serial_clock()
  50. /* set PRAM to keep U-Boot out, mem= to keep linux out, and initrd_hi to
  51. * keep possible initrd ramdisk decompression out. This is in k (1024 bytes)
  52. #define CONFIG_PRAM 16
  53. */
  54. #define CONFIG_LOADADDR 0x100000 /* where TFTP images go */
  55. #undef CONFIG_BOOTARGS
  56. /* Bootcmd is overridden by the bootscript in board/cray/L1
  57. */
  58. #define CONFIG_SYS_AUTOLOAD "no"
  59. #define CONFIG_BOOTCOMMAND "dhcp"
  60. /*
  61. * ..during experiments..
  62. #define CONFIG_SERVERIP 10.0.0.1
  63. #define CONFIG_ETHADDR 00:40:a6:80:14:5
  64. */
  65. #define CONFIG_HARD_I2C 1 /* hardware support for i2c */
  66. #define CONFIG_PPC4XX_I2C /* use PPC4xx driver */
  67. #define CONFIG_SDRAM_BANK0 1
  68. #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
  69. #define CONFIG_SYS_I2C_SLAVE 0x7F
  70. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x57
  71. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
  72. #define CONFIG_IDENT_STRING "Cray L1"
  73. #define CONFIG_ENV_OVERWRITE 1
  74. #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
  75. #define CONFIG_SYS_HUSH_PARSER 1
  76. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  77. #define CONFIG_SOURCE 1
  78. /*
  79. * Command line configuration.
  80. */
  81. #define CONFIG_CMD_ASKENV
  82. #define CONFIG_CMD_BDI
  83. #define CONFIG_CMD_CONSOLE
  84. #define CONFIG_CMD_DATE
  85. #define CONFIG_CMD_DHCP
  86. #define CONFIG_CMD_DIAG
  87. #define CONFIG_CMD_ECHO
  88. #define CONFIG_CMD_EEPROM
  89. #define CONFIG_CMD_FLASH
  90. #define CONFIG_CMD_I2C
  91. #define CONFIG_CMD_IMI
  92. #define CONFIG_CMD_IMMAP
  93. #define CONFIG_CMD_MEMORY
  94. #define CONFIG_CMD_NET
  95. #define CONFIG_CMD_REGINFO
  96. #define CONFIG_CMD_RUN
  97. #define CONFIG_CMD_SAVEENV
  98. #define CONFIG_CMD_SETGETDCR
  99. #define CONFIG_CMD_SOURCE
  100. /*
  101. * BOOTP options
  102. */
  103. #define CONFIG_BOOTP_SUBNETMASK
  104. #define CONFIG_BOOTP_GATEWAY
  105. #define CONFIG_BOOTP_HOSTNAME
  106. #define CONFIG_BOOTP_BOOTPATH
  107. #define CONFIG_BOOTP_VENDOREX
  108. #define CONFIG_BOOTP_DNS
  109. #define CONFIG_BOOTP_BOOTFILESIZE
  110. /*
  111. * how many time to fail & restart a net-TFTP before giving up & resetting
  112. * the board hoping that a reset of net interface might help..
  113. */
  114. #define CONFIG_NET_RESET 5
  115. /*
  116. * bauds. Just to make it compile; in our case, I read the base_baud
  117. * from the DCR anyway, so its kinda-tied to the above ref. clock which in turn
  118. * drives the system clock.
  119. */
  120. #define CONFIG_SYS_BASE_BAUD 403225
  121. #define CONFIG_SYS_BAUDRATE_TABLE \
  122. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
  123. /*
  124. * Miscellaneous configurable options
  125. */
  126. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  127. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  128. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  129. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
  130. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  131. #define CONFIG_SYS_LOAD_ADDR 0x100000 /* where to load what we get from TFTP */
  132. #define CONFIG_SYS_TFTP_LOADADDR CONFIG_SYS_LOAD_ADDR
  133. #define CONFIG_SYS_EXTBDINFO 1 /* To use extended board_into (bd_t) */
  134. #define CONFIG_SYS_DRAM_TEST 1
  135. /*-----------------------------------------------------------------------
  136. * Start addresses for the final memory configuration
  137. * (Set up by the startup code)
  138. * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
  139. */
  140. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  141. #define CONFIG_SYS_FLASH_BASE 0xFFC00000
  142. #define CONFIG_SYS_MONITOR_BASE TEXT_BASE
  143. #define CONFIG_SYS_MONITOR_LEN (192 * 1024) /* Reserve 192 kB for Monitor */
  144. /*
  145. * For booting Linux, the board info and command line data
  146. * have to be in the first 8 MB of memory, since this is
  147. * the maximum mapped by the Linux kernel during initialization.
  148. */
  149. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  150. /*-----------------------------------------------------------------------
  151. * FLASH organization
  152. */
  153. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  154. #define CONFIG_SYS_MAX_FLASH_SECT 64 /* max number of sectors on one chip */
  155. #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  156. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  157. /* BEG ENVIRONNEMENT FLASH: needs to be a whole FlashSector */
  158. #define CONFIG_ENV_OFFSET 0x3c8000
  159. #define CONFIG_ENV_IS_IN_FLASH 1 /* use FLASH for environment vars */
  160. #define CONFIG_ENV_SIZE 0x1000 /* Total Size of Environment area */
  161. #define CONFIG_ENV_SECT_SIZE 0x10000 /* see README - env sector total size */
  162. /* Memory tests: U-BOOT relocates itself to the top of Ram, so its at
  163. * 32meg-(128k+some_malloc_space+copy-of-ENV sector)..
  164. */
  165. #define CONFIG_SYS_SDRAM_SIZE 32 /* megs of ram */
  166. #define CONFIG_SYS_MEMTEST_START 0x2000 /* memtest works from the end of */
  167. /* the exception vector table */
  168. /* to the end of the DRAM */
  169. /* less monitor and malloc area */
  170. #define CONFIG_SYS_STACK_USAGE 0x10000 /* Reserve 64k for the stack usage */
  171. #define CONFIG_SYS_MALLOC_LEN (128 << 10) /* 128k for malloc space */
  172. #define CONFIG_SYS_MEM_END_USAGE ( CONFIG_SYS_MONITOR_LEN \
  173. + CONFIG_SYS_MALLOC_LEN \
  174. + CONFIG_ENV_SECT_SIZE \
  175. + CONFIG_SYS_STACK_USAGE )
  176. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_SIZE * 1024 * 1024 - CONFIG_SYS_MEM_END_USAGE)
  177. /* END ENVIRONNEMENT FLASH */
  178. /*
  179. * Init Memory Controller:
  180. *
  181. * BR0/1 and OR0/1 (FLASH)
  182. */
  183. #define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE /* FLASH bank #0 */
  184. /*-----------------------------------------------------------------------
  185. * Definitions for initial stack pointer and data area (in OnChipMem )
  186. */
  187. #if 1
  188. /* On Chip Memory location */
  189. #define CONFIG_SYS_TEMP_STACK_OCM 1
  190. #define CONFIG_SYS_OCM_DATA_ADDR 0xF0000000
  191. #define CONFIG_SYS_OCM_DATA_SIZE 0x1000
  192. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_DATA_ADDR /* inside of SDRAM */
  193. #define CONFIG_SYS_INIT_RAM_END CONFIG_SYS_OCM_DATA_SIZE /* End of used area in RAM */
  194. #define CONFIG_SYS_GBL_DATA_SIZE 256 /* size in bytes reserved for initial data */
  195. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  196. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  197. #else
  198. #define CONFIG_SYS_OCM_DATA_ADDR 0xF0000000
  199. #define CONFIG_SYS_OCM_DATA_SIZE 0x1000
  200. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_DATA_ADDR /* inside of On Chip SRAM */
  201. #define CONFIG_SYS_INIT_RAM_END CONFIG_SYS_OCM_DATA_SIZE /* End of On Chip SRAM */
  202. #define CONFIG_SYS_GBL_DATA_SIZE 64 /* size in bytes reserved for initial data */
  203. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  204. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  205. #endif
  206. /*-----------------------------------------------------------------------
  207. * Definitions for Serial Presence Detect EEPROM address
  208. */
  209. #define EEPROM_WRITE_ADDRESS 0xA0
  210. #define EEPROM_READ_ADDRESS 0xA1
  211. /*
  212. * Internal Definitions
  213. *
  214. * Boot Flags
  215. */
  216. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  217. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  218. #endif /* __CONFIG_H */