bubinga.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*
  2. * (C) Copyright 2000-2005
  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. */
  26. #ifndef __CONFIG_H
  27. #define __CONFIG_H
  28. /*
  29. * High Level Configuration Options
  30. * (easy to change)
  31. */
  32. #define CONFIG_405EP 1 /* This is a PPC405 CPU */
  33. #define CONFIG_4xx 1 /* ...member of PPC4xx family */
  34. #define CONFIG_BUBINGA 1 /* ...on a BUBINGA board */
  35. #define CONFIG_SYS_TEXT_BASE 0xFFFC0000
  36. /*
  37. * Include common defines/options for all AMCC eval boards
  38. */
  39. #define CONFIG_HOSTNAME bubinga
  40. #include "amcc-common.h"
  41. #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
  42. #define CONFIG_SYS_CLK_FREQ 33333333 /* external frequency to pll */
  43. #define CONFIG_NO_SERIAL_EEPROM
  44. /*#undef CONFIG_NO_SERIAL_EEPROM*/
  45. /*----------------------------------------------------------------------------*/
  46. #ifdef CONFIG_NO_SERIAL_EEPROM
  47. /*
  48. !-------------------------------------------------------------------------------
  49. ! Defines for entry options.
  50. ! Note: Because the 405EP SDRAM controller does not support ECC, ECC DIMMs that
  51. ! are plugged in the board will be utilized as non-ECC DIMMs.
  52. !-------------------------------------------------------------------------------
  53. */
  54. #define AUTO_MEMORY_CONFIG
  55. #define DIMM_READ_ADDR 0xAB
  56. #define DIMM_WRITE_ADDR 0xAA
  57. /*
  58. !-------------------------------------------------------------------------------
  59. ! PLL settings for 266MHz CPU, 133MHz PLB/SDRAM, 66MHz EBC, 33MHz PCI,
  60. ! assuming a 33MHz input clock to the 405EP from the C9531.
  61. !-------------------------------------------------------------------------------
  62. */
  63. #define PLLMR0_DEFAULT PLLMR0_266_133_66
  64. #define PLLMR1_DEFAULT PLLMR1_266_133_66
  65. #endif
  66. /*----------------------------------------------------------------------------*/
  67. /*
  68. * Define here the location of the environment variables (FLASH or NVRAM).
  69. * Note: DENX encourages to use redundant environment in FLASH. NVRAM is only
  70. * supported for backward compatibility.
  71. */
  72. #if 1
  73. #define CONFIG_ENV_IS_IN_FLASH 1 /* use FLASH for environment vars */
  74. #else
  75. #define CONFIG_ENV_IS_IN_NVRAM 1 /* use NVRAM for environment vars */
  76. #endif
  77. /*
  78. * Default environment variables
  79. */
  80. #define CONFIG_EXTRA_ENV_SETTINGS \
  81. CONFIG_AMCC_DEF_ENV \
  82. CONFIG_AMCC_DEF_ENV_PPC \
  83. CONFIG_AMCC_DEF_ENV_NOR_UPD \
  84. "kernel_addr=fff80000\0" \
  85. "ramdisk_addr=fff90000\0" \
  86. ""
  87. #define CONFIG_PHY_ADDR 1 /* PHY address */
  88. #define CONFIG_HAS_ETH0
  89. #define CONFIG_HAS_ETH1
  90. #define CONFIG_PHY1_ADDR 2 /* EMAC1 PHY address */
  91. #define CONFIG_RTC_DS174x 1 /* use DS1743 RTC in Bubinga */
  92. /*
  93. * Commands additional to the ones defined in amcc-common.h
  94. */
  95. #define CONFIG_CMD_DATE
  96. #define CONFIG_CMD_PCI
  97. #define CONFIG_CMD_SDRAM
  98. #define CONFIG_CMD_SNTP
  99. #define CONFIG_SPD_EEPROM 1 /* use SPD EEPROM for setup */
  100. /*
  101. * If CONFIG_SYS_EXT_SERIAL_CLOCK, then the UART divisor is 1.
  102. * If CONFIG_SYS_405_UART_ERRATA_59, then UART divisor is 31.
  103. * Otherwise, UART divisor is determined by CPU Clock and CONFIG_SYS_BASE_BAUD value.
  104. * The Linux BASE_BAUD define should match this configuration.
  105. * baseBaud = cpuClock/(uartDivisor*16)
  106. * If CONFIG_SYS_405_UART_ERRATA_59 and 200MHz CPU clock,
  107. * set Linux BASE_BAUD to 403200.
  108. */
  109. #define CONFIG_CONS_INDEX 1 /* Use UART0 */
  110. #undef CONFIG_SYS_EXT_SERIAL_CLOCK /* external serial clock */
  111. #undef CONFIG_SYS_405_UART_ERRATA_59 /* 405GP/CR Rev. D silicon */
  112. #define CONFIG_SYS_BASE_BAUD 691200
  113. /*-----------------------------------------------------------------------
  114. * I2C stuff
  115. *-----------------------------------------------------------------------
  116. */
  117. #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
  118. #define CONFIG_SYS_I2C_NOPROBES { 0x69 } /* avoid i2c probe hangup (why?) */
  119. #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 6 /* 24C02 requires 5ms delay */
  120. #if defined(CONFIG_CMD_EEPROM)
  121. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* I2C boot EEPROM (24C02W) */
  122. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 /* Bytes of address */
  123. #endif
  124. /*-----------------------------------------------------------------------
  125. * PCI stuff
  126. *-----------------------------------------------------------------------
  127. */
  128. #define PCI_HOST_ADAPTER 0 /* configure ar pci adapter */
  129. #define PCI_HOST_FORCE 1 /* configure as pci host */
  130. #define PCI_HOST_AUTO 2 /* detected via arbiter enable */
  131. #define CONFIG_PCI /* include pci support */
  132. #define CONFIG_PCI_HOST PCI_HOST_FORCE /* select pci host function */
  133. #define CONFIG_PCI_PNP /* do pci plug-and-play */
  134. /* resource configuration */
  135. #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  136. #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x10e8 /* AMCC */
  137. #define CONFIG_SYS_PCI_SUBSYS_DEVICEID 0xcafe /* Whatever */
  138. #define CONFIG_SYS_PCI_CLASSCODE 0x0600 /* PCI Class Code: bridge/host */
  139. #define CONFIG_SYS_PCI_PTM1LA 0x00000000 /* point to sdram */
  140. #define CONFIG_SYS_PCI_PTM1MS 0x80000001 /* 2GB, enable hard-wired to 1 */
  141. #define CONFIG_SYS_PCI_PTM1PCI 0x00000000 /* Host: use this pci address */
  142. #define CONFIG_SYS_PCI_PTM2LA 0x00000000 /* disabled */
  143. #define CONFIG_SYS_PCI_PTM2MS 0x00000000 /* disabled */
  144. #define CONFIG_SYS_PCI_PTM2PCI 0x04000000 /* Host: use this pci address */
  145. /*-----------------------------------------------------------------------
  146. * External peripheral base address
  147. *-----------------------------------------------------------------------
  148. */
  149. #define CONFIG_SYS_KEY_REG_BASE_ADDR 0xF0100000
  150. #define CONFIG_SYS_IR_REG_BASE_ADDR 0xF0200000
  151. #define CONFIG_SYS_FPGA_REG_BASE_ADDR 0xF0300000
  152. /*-----------------------------------------------------------------------
  153. * Start addresses for the final memory configuration
  154. * (Set up by the startup code)
  155. */
  156. #define CONFIG_SYS_SRAM_BASE 0xFFF00000
  157. #define CONFIG_SYS_SRAM_SIZE (256 << 10)
  158. #define CONFIG_SYS_FLASH_BASE 0xFFF80000
  159. /*-----------------------------------------------------------------------
  160. * FLASH organization
  161. */
  162. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  163. #define CONFIG_SYS_MAX_FLASH_SECT 256 /* max number of sectors on one chip */
  164. #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  165. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  166. #define CONFIG_SYS_FLASH_ADDR0 0x5555
  167. #define CONFIG_SYS_FLASH_ADDR1 0x2aaa
  168. #define CONFIG_SYS_FLASH_WORD_SIZE unsigned char
  169. #ifdef CONFIG_ENV_IS_IN_FLASH
  170. #define CONFIG_ENV_SECT_SIZE 0x10000 /* size of one complete sector */
  171. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE-CONFIG_ENV_SECT_SIZE)
  172. #define CONFIG_ENV_SIZE 0x4000 /* Total Size of Environment Sector */
  173. /* Address and size of Redundant Environment Sector */
  174. #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR-CONFIG_ENV_SECT_SIZE)
  175. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  176. #endif /* CONFIG_ENV_IS_IN_FLASH */
  177. /*-----------------------------------------------------------------------
  178. * NVRAM organization
  179. */
  180. #define CONFIG_SYS_NVRAM_BASE_ADDR 0xf0000000 /* NVRAM base address */
  181. #define CONFIG_SYS_NVRAM_SIZE 0x1ff8 /* NVRAM size */
  182. #ifdef CONFIG_ENV_IS_IN_NVRAM
  183. #define CONFIG_ENV_SIZE 0x0ff8 /* Size of Environment vars */
  184. #define CONFIG_ENV_ADDR \
  185. (CONFIG_SYS_NVRAM_BASE_ADDR+CONFIG_SYS_NVRAM_SIZE-CONFIG_ENV_SIZE) /* Env */
  186. #endif
  187. /*
  188. * Init Memory Controller:
  189. *
  190. * BR0/1 and OR0/1 (FLASH)
  191. */
  192. #define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE /* FLASH bank #0 */
  193. #define FLASH_BASE1_PRELIM 0 /* FLASH bank #1 */
  194. /*-----------------------------------------------------------------------
  195. * Definitions for initial stack pointer and data area (in data cache)
  196. */
  197. /* use on chip memory ( OCM ) for temperary stack until sdram is tested */
  198. #define CONFIG_SYS_TEMP_STACK_OCM 1
  199. /* On Chip Memory location */
  200. #define CONFIG_SYS_OCM_DATA_ADDR 0xF8000000
  201. #define CONFIG_SYS_OCM_DATA_SIZE 0x1000
  202. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_DATA_ADDR /* inside of SDRAM */
  203. #define CONFIG_SYS_INIT_RAM_SIZE CONFIG_SYS_OCM_DATA_SIZE /* Size of used area in RAM */
  204. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  205. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  206. /*-----------------------------------------------------------------------
  207. * External Bus Controller (EBC) Setup
  208. */
  209. /* Memory Bank 0 (Flash/SRAM) initialization */
  210. #define CONFIG_SYS_EBC_PB0AP 0x04006000
  211. #define CONFIG_SYS_EBC_PB0CR 0xFFF18000 /* BAS=0xFFF,BS=1MB,BU=R/W,BW=8bit */
  212. /* Memory Bank 1 (NVRAM/RTC) initialization */
  213. #define CONFIG_SYS_EBC_PB1AP 0x04041000
  214. #define CONFIG_SYS_EBC_PB1CR 0xF0018000 /* BAS=0xF00,BS=1MB,BU=R/W,BW=8bit */
  215. /* Memory Bank 2 (not used) initialization */
  216. #define CONFIG_SYS_EBC_PB2AP 0x00000000
  217. #define CONFIG_SYS_EBC_PB2CR 0x00000000
  218. /* Memory Bank 2 (not used) initialization */
  219. #define CONFIG_SYS_EBC_PB3AP 0x00000000
  220. #define CONFIG_SYS_EBC_PB3CR 0x00000000
  221. /* Memory Bank 4 (FPGA regs) initialization */
  222. #define CONFIG_SYS_EBC_PB4AP 0x01815000
  223. #define CONFIG_SYS_EBC_PB4CR 0xF0318000 /* BAS=0xF03,BS=1MB,BU=R/W,BW=8bit */
  224. /*-----------------------------------------------------------------------
  225. * Definitions for Serial Presence Detect EEPROM address
  226. * (to get SDRAM settings)
  227. */
  228. #define SPD_EEPROM_ADDRESS 0x55
  229. /*-----------------------------------------------------------------------
  230. * Definitions for GPIO setup (PPC405EP specific)
  231. *
  232. * GPIO0[0] - External Bus Controller BLAST output
  233. * GPIO0[1-9] - Instruction trace outputs
  234. * GPIO0[10-13] - External Bus Controller CS_1 - CS_4 outputs
  235. * GPIO0[14-16] - External Bus Controller ABUS3-ABUS5 outputs
  236. * GPIO0[17-23] - External Interrupts IRQ0 - IRQ6 inputs
  237. * GPIO0[24-27] - UART0 control signal inputs/outputs
  238. * GPIO0[28-29] - UART1 data signal input/output
  239. * GPIO0[30-31] - EMAC0 and EMAC1 reject packet inputs
  240. */
  241. #define CONFIG_SYS_GPIO0_OSRL 0x55555555
  242. #define CONFIG_SYS_GPIO0_OSRH 0x40000110
  243. #define CONFIG_SYS_GPIO0_ISR1L 0x00000000
  244. #define CONFIG_SYS_GPIO0_ISR1H 0x15555445
  245. #define CONFIG_SYS_GPIO0_TSRL 0x00000000
  246. #define CONFIG_SYS_GPIO0_TSRH 0x00000000
  247. #define CONFIG_SYS_GPIO0_TCR 0xFFFF8014
  248. /*-----------------------------------------------------------------------
  249. * Some BUBINGA stuff...
  250. */
  251. #define NVRAM_BASE 0xF0000000
  252. #define FPGA_REG0 0xF0300000 /* FPGA Reg 0 */
  253. #define FPGA_REG1 0xF0300001 /* FPGA Reg 1 */
  254. #define NVRVFY1 0x4f532d4f /* used to determine if state data in */
  255. #define NVRVFY2 0x50454e00 /* NVRAM initialized (ascii for OS-OPEN)*/
  256. #define FPGA_REG0_F_RANGE 0x80 /* SDRAM PLL freq range */
  257. #define FPGA_REG0_EXT_INT_DIS 0x20 /* External interface disable */
  258. #define FPGA_REG0_LED_MASK 0x07 /* Board LEDs DS9, DS10, and DS11 */
  259. #define FPGA_REG0_LED0 0x04 /* Turn on LED0 */
  260. #define FPGA_REG0_LED1 0x02 /* Turn on LED1 */
  261. #define FPGA_REG0_LED2 0x01 /* Turn on LED2 */
  262. #define FPGA_REG1_SSPEC_DIS 0x80 /* C9531 Spread Spectrum disabled */
  263. #define FPGA_REG1_OFFBD_PCICLK 0x40 /* Onboard PCI clock selected */
  264. #define FPGA_REG1_CLOCK_MASK 0x30 /* Mask for C9531 output freq select */
  265. #define FPGA_REG1_CLOCK_BIT_SHIFT 4
  266. #define FPGA_REG1_PCI_INT_ARB 0x08 /* PCI Internal arbiter selected */
  267. #define FPGA_REG1_PCI_FREQ 0x04 /* PCI Frequency select */
  268. #define FPGA_REG1_OFFB_FLASH 0x02 /* Off board flash */
  269. #define FPGA_REG1_SRAM_BOOT 0x01 /* SRAM at 0xFFF80000 not Flash */
  270. #endif /* __CONFIG_H */