neo.h 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*
  2. * (C) Copyright 2007-2008
  3. * Dirk Eibach, Guntermann & Drunck GmbH, eibach@gdsys.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. #ifndef __CONFIG_H
  24. #define __CONFIG_H
  25. #define CONFIG_405EP 1 /* this is a PPC405 CPU */
  26. #define CONFIG_4xx 1 /* member of PPC4xx family */
  27. #define CONFIG_NEO 1 /* on a Neo board */
  28. /*
  29. * Include common defines/options for all AMCC eval boards
  30. */
  31. #define CONFIG_HOSTNAME neo
  32. #include "amcc-common.h"
  33. #define CONFIG_BOARD_EARLY_INIT_F /* call board_early_init_f */
  34. #define CONFIG_SYS_CLK_FREQ 33333333 /* external frequency to pll */
  35. /*
  36. * Configure PLL
  37. */
  38. #define PLLMR0_DEFAULT PLLMR0_266_133_66_33
  39. #define PLLMR1_DEFAULT PLLMR1_266_133_66_33
  40. /* new uImage format support */
  41. #define CONFIG_FIT
  42. #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */
  43. #define CONFIG_ENV_IS_IN_FLASH /* use FLASH for environment vars */
  44. /*
  45. * Default environment variables
  46. */
  47. #define CONFIG_EXTRA_ENV_SETTINGS \
  48. CONFIG_AMCC_DEF_ENV \
  49. CONFIG_AMCC_DEF_ENV_POWERPC \
  50. CONFIG_AMCC_DEF_ENV_NOR_UPD \
  51. "kernel_addr=fc000000\0" \
  52. "fdt_addr=fc1e0000\0" \
  53. "ramdisk_addr=fc200000\0" \
  54. ""
  55. #define CONFIG_PHY_ADDR 4 /* PHY address */
  56. #define CONFIG_HAS_ETH0
  57. #define CONFIG_HAS_ETH1
  58. #define CONFIG_PHY1_ADDR 0xc /* EMAC1 PHY address */
  59. #define CONFIG_PHY_CLK_FREQ EMAC_STACR_CLK_66MHZ
  60. /*
  61. * Commands additional to the ones defined in amcc-common.h
  62. */
  63. #define CONFIG_CMD_CACHE
  64. #define CONFIG_CMD_DATE
  65. #define CONFIG_CMD_DTT
  66. #undef CONFIG_CMD_EEPROM
  67. /*
  68. * SDRAM configuration (please see cpu/ppc/sdram.[ch])
  69. */
  70. #define CONFIG_SDRAM_BANK0 1 /* init onboard SDRAM bank 0 */
  71. /* SDRAM timings used in datasheet */
  72. #define CONFIG_SYS_SDRAM_CL 3 /* CAS latency */
  73. #define CONFIG_SYS_SDRAM_tRP 20 /* PRECHARGE command period */
  74. #define CONFIG_SYS_SDRAM_tRC 66 /* ACTIVE-to-ACTIVE command period */
  75. #define CONFIG_SYS_SDRAM_tRCD 20 /* ACTIVE-to-READ delay */
  76. #define CONFIG_SYS_SDRAM_tRFC 66 /* Auto refresh period */
  77. /*
  78. * If CONFIG_SYS_EXT_SERIAL_CLOCK, then the UART divisor is 1.
  79. * If CONFIG_SYS_405_UART_ERRATA_59, then UART divisor is 31.
  80. * Otherwise, UART divisor is determined by CPU Clock and CONFIG_SYS_BASE_BAUD value.
  81. * The Linux BASE_BAUD define should match this configuration.
  82. * baseBaud = cpuClock/(uartDivisor*16)
  83. * If CONFIG_SYS_405_UART_ERRATA_59 and 200MHz CPU clock,
  84. * set Linux BASE_BAUD to 403200.
  85. */
  86. #undef CONFIG_SERIAL_SOFTWARE_FIFO
  87. #undef CONFIG_SYS_EXT_SERIAL_CLOCK /* external serial clock */
  88. #undef CONFIG_SYS_405_UART_ERRATA_59 /* 405GP/CR Rev. D silicon */
  89. #define CONFIG_SYS_BASE_BAUD 691200
  90. /*
  91. * I2C stuff
  92. */
  93. #define CONFIG_SYS_I2C_SPEED 100000 /* I2C speed and slave address */
  94. /* RTC */
  95. #define CONFIG_RTC_DS1337
  96. #define CONFIG_SYS_I2C_RTC_ADDR 0x68
  97. /* Temp sensor/hwmon/dtt */
  98. #define CONFIG_DTT_LM63 1 /* National LM63 */
  99. #define CONFIG_DTT_SENSORS { 0 } /* Sensor addresses */
  100. #define CONFIG_DTT_PWM_LOOKUPTABLE \
  101. { { 40, 10 }, { 50, 20 }, { 60, 40 } }
  102. #define CONFIG_DTT_TACH_LIMIT 0xa10
  103. /*
  104. * FLASH organization
  105. */
  106. #define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */
  107. #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */
  108. #define CONFIG_SYS_FLASH_BASE 0xFC000000
  109. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
  110. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  111. #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max number of sectors on one chip */
  112. #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  113. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  114. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */
  115. #define CONFIG_SYS_FLASH_PROTECTION 1 /* use hardware flash protection */
  116. #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
  117. #define CONFIG_SYS_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash */
  118. #ifdef CONFIG_ENV_IS_IN_FLASH
  119. #define CONFIG_ENV_SECT_SIZE 0x20000 /* size of one complete sector */
  120. #define CONFIG_ENV_ADDR ((-CONFIG_SYS_MONITOR_LEN)-CONFIG_ENV_SECT_SIZE)
  121. #define CONFIG_ENV_SIZE 0x2000 /* Total Size of Environment Sector */
  122. /* Address and size of Redundant Environment Sector */
  123. #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR-CONFIG_ENV_SECT_SIZE)
  124. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  125. #endif
  126. /*
  127. * PPC405 GPIO Configuration
  128. */
  129. #define CONFIG_SYS_4xx_GPIO_TABLE { /* GPIO Alternate1 */ \
  130. { \
  131. /* GPIO Core 0 */ \
  132. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO0 PerBLast */ \
  133. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO1 TS1E */ \
  134. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO2 TS2E */ \
  135. { GPIO_BASE, GPIO_IN, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO3 TS1O */ \
  136. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO4 TS2O */ \
  137. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO5 TS3 */ \
  138. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO6 TS4 */ \
  139. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO7 TS5 */ \
  140. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO8 TS6 */ \
  141. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO9 TrcClk */ \
  142. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO10 PerCS1 */ \
  143. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO11 PerCS2 */ \
  144. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO12 PerCS3 */ \
  145. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO13 PerCS4 */ \
  146. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO14 PerAddr03 */ \
  147. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO15 PerAddr04 */ \
  148. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO16 PerAddr05 */ \
  149. { GPIO_BASE, GPIO_IN, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO17 IRQ0 */ \
  150. { GPIO_BASE, GPIO_IN, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO18 IRQ1 */ \
  151. { GPIO_BASE, GPIO_IN, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO19 IRQ2 */ \
  152. { GPIO_BASE, GPIO_IN, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO20 IRQ3 */ \
  153. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO21 IRQ4 */ \
  154. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO22 IRQ5 */ \
  155. { GPIO_BASE, GPIO_IN, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO23 IRQ6 */ \
  156. { GPIO_BASE, GPIO_IN, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO24 UART0_DCD */ \
  157. { GPIO_BASE, GPIO_IN, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO25 UART0_DSR */ \
  158. { GPIO_BASE, GPIO_IN, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO26 UART0_RI */ \
  159. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO27 UART0_DTR */ \
  160. { GPIO_BASE, GPIO_IN, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO28 UART1_Rx */ \
  161. { GPIO_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG }, /* GPIO29 UART1_Tx */ \
  162. { GPIO_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO30 RejectPkt0 */ \
  163. { GPIO_BASE, GPIO_IN, GPIO_SEL, GPIO_OUT_NO_CHG }, /* GPIO31 RejectPkt1 */ \
  164. } \
  165. }
  166. /*
  167. * Definitions for initial stack pointer and data area (in data cache)
  168. */
  169. /* use on chip memory (OCM) for temperary stack until sdram is tested */
  170. #define CONFIG_SYS_TEMP_STACK_OCM 1
  171. /* On Chip Memory location */
  172. #define CONFIG_SYS_OCM_DATA_ADDR 0xF8000000
  173. #define CONFIG_SYS_OCM_DATA_SIZE 0x1000
  174. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_DATA_ADDR /* inside of SDRAM */
  175. #define CONFIG_SYS_INIT_RAM_END CONFIG_SYS_OCM_DATA_SIZE /* End of used area in RAM */
  176. #define CONFIG_SYS_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
  177. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  178. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  179. /*
  180. * External Bus Controller (EBC) Setup
  181. */
  182. /* Memory Bank 0 (NOR-FLASH) initialization */
  183. #define CONFIG_SYS_EBC_PB0AP 0x92015480
  184. #define CONFIG_SYS_EBC_PB0CR 0xFC0DA000 /* BAS=0xFC0,BS=64MB,BU=R/W,BW=16bit */
  185. /* Memory Bank 1 (NVRAM) initialization */
  186. #define CONFIG_SYS_EBC_PB1AP 0x92015480
  187. #define CONFIG_SYS_EBC_PB1CR 0xFB85A000 /* BAS=0xFF8,BS=4MB,BU=R/W,BW=8bit */
  188. /* Memory Bank 2 (FPGA) initialization */
  189. #define CONFIG_FPGA_BASE 0x7f100000
  190. #define CONFIG_SYS_EBC_PB2AP 0x92015480
  191. #define CONFIG_SYS_EBC_PB2CR 0x7f11a000 /* BAS=0x7f1,BS=1MB,BU=R/W,BW=16bit */
  192. /* Memory Bank 3 (Latches) initialization */
  193. #define CONFIG_SYS_EBC_PB3AP 0x92015480
  194. #define CONFIG_SYS_EBC_PB3CR 0x7f21a000 /* BAS=0x7f2,BS=1MB,BU=R/W,BW=16bit */
  195. #endif /* __CONFIG_H */