yosemite.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /*
  2. * (C) Copyright 2005-2007
  3. * Stefan Roese, DENX Software Engineering, sr@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. * yosemite.h - configuration for Yosemite & Yellowstone boards
  25. ***********************************************************************/
  26. #ifndef __CONFIG_H
  27. #define __CONFIG_H
  28. /*-----------------------------------------------------------------------
  29. * High Level Configuration Options
  30. *----------------------------------------------------------------------*/
  31. /* This config file is used for Yosemite (440EP) and Yellowstone (440GR)*/
  32. #ifndef CONFIG_YELLOWSTONE
  33. #define CONFIG_440EP 1 /* Specific PPC440EP support */
  34. #define CONFIG_HOSTNAME yosemite
  35. #else
  36. #define CONFIG_440GR 1 /* Specific PPC440GR support */
  37. #define CONFIG_HOSTNAME yellowstone
  38. #endif
  39. #define CONFIG_440 1 /* ... PPC440 family */
  40. #define CONFIG_4xx 1 /* ... PPC4xx family */
  41. #define CONFIG_SYS_CLK_FREQ 66666666 /* external freq to pll */
  42. /*
  43. * Include common defines/options for all AMCC eval boards
  44. */
  45. #include "amcc-common.h"
  46. #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
  47. #define CONFIG_MISC_INIT_R 1 /* call misc_init_r() */
  48. #define CONFIG_BOARD_RESET 1 /* call board_reset() */
  49. /*-----------------------------------------------------------------------
  50. * Base addresses -- Note these are effective addresses where the
  51. * actual resources get mapped (not physical addresses)
  52. *----------------------------------------------------------------------*/
  53. #define CONFIG_SYS_FLASH_BASE 0xfc000000 /* start of FLASH */
  54. #define CONFIG_SYS_PCI_MEMBASE 0xa0000000 /* mapped pci memory*/
  55. #define CONFIG_SYS_PCI_MEMBASE1 CONFIG_SYS_PCI_MEMBASE + 0x10000000
  56. #define CONFIG_SYS_PCI_MEMBASE2 CONFIG_SYS_PCI_MEMBASE1 + 0x10000000
  57. #define CONFIG_SYS_PCI_MEMBASE3 CONFIG_SYS_PCI_MEMBASE2 + 0x10000000
  58. /*Don't change either of these*/
  59. #define CONFIG_SYS_PERIPHERAL_BASE 0xef600000 /* internal peripherals*/
  60. #define CONFIG_SYS_PCI_BASE 0xe0000000 /* internal PCI regs*/
  61. /*Don't change either of these*/
  62. #define CONFIG_SYS_USB_DEVICE 0x50000000
  63. #define CONFIG_SYS_NVRAM_BASE_ADDR 0x80000000
  64. #define CONFIG_SYS_BCSR_BASE (CONFIG_SYS_NVRAM_BASE_ADDR | 0x2000)
  65. #define CONFIG_SYS_BOOT_BASE_ADDR 0xf0000000
  66. /*-----------------------------------------------------------------------
  67. * Initial RAM & stack pointer (placed in SDRAM)
  68. *----------------------------------------------------------------------*/
  69. #define CONFIG_SYS_INIT_RAM_DCACHE 1 /* d-cache as init ram */
  70. #define CONFIG_SYS_INIT_RAM_ADDR 0x70000000 /* DCache */
  71. #define CONFIG_SYS_INIT_RAM_END (4 << 10)
  72. #define CONFIG_SYS_GBL_DATA_SIZE 256 /* num bytes initial data*/
  73. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  74. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  75. /*-----------------------------------------------------------------------
  76. * Serial Port
  77. *----------------------------------------------------------------------*/
  78. #define CONFIG_SYS_EXT_SERIAL_CLOCK 11059200 /* use external 11.059MHz clk */
  79. /*define this if you want console on UART1*/
  80. #undef CONFIG_UART1_CONSOLE
  81. /*-----------------------------------------------------------------------
  82. * Environment
  83. *----------------------------------------------------------------------*/
  84. /*
  85. * Define here the location of the environment variables (FLASH or EEPROM).
  86. * Note: DENX encourages to use redundant environment in FLASH.
  87. */
  88. #if 1
  89. #define CONFIG_ENV_IS_IN_FLASH 1 /* use FLASH for environment vars */
  90. #else
  91. #define CONFIG_ENV_IS_IN_EEPROM 1 /* use EEPROM for environment vars */
  92. #endif
  93. /*-----------------------------------------------------------------------
  94. * FLASH related
  95. *----------------------------------------------------------------------*/
  96. #define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */
  97. #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */
  98. #define CONFIG_SYS_FLASH_CFI_AMD_RESET 1 /* AMD RESET for STM 29W320DB! */
  99. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  100. #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max number of sectors on one chip */
  101. #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  102. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  103. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */
  104. #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
  105. #ifdef CONFIG_ENV_IS_IN_FLASH
  106. #define CONFIG_ENV_SECT_SIZE 0x20000 /* size of one complete sector */
  107. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE-CONFIG_ENV_SECT_SIZE)
  108. #define CONFIG_ENV_SIZE 0x2000 /* Total Size of Environment Sector */
  109. /* Address and size of Redundant Environment Sector */
  110. #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR-CONFIG_ENV_SECT_SIZE)
  111. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  112. #endif /* CONFIG_ENV_IS_IN_FLASH */
  113. /*-----------------------------------------------------------------------
  114. * DDR SDRAM
  115. *----------------------------------------------------------------------*/
  116. #undef CONFIG_SPD_EEPROM /* Don't use SPD EEPROM for setup */
  117. #define CONFIG_SYS_KBYTES_SDRAM (128 * 1024) /* 128MB */
  118. #define CONFIG_SYS_SDRAM_BANKS (2)
  119. /*-----------------------------------------------------------------------
  120. * I2C
  121. *----------------------------------------------------------------------*/
  122. #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
  123. #define CONFIG_SYS_I2C_MULTI_EEPROMS
  124. #define CONFIG_SYS_I2C_EEPROM_ADDR (0xa8>>1)
  125. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
  126. #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
  127. #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
  128. #ifdef CONFIG_ENV_IS_IN_EEPROM
  129. #define CONFIG_ENV_SIZE 0x200 /* Size of Environment vars */
  130. #define CONFIG_ENV_OFFSET 0x0
  131. #endif /* CONFIG_ENV_IS_IN_EEPROM */
  132. /* I2C SYSMON (LM75, AD7414 is almost compatible) */
  133. #define CONFIG_DTT_LM75 1 /* ON Semi's LM75 */
  134. #define CONFIG_DTT_AD7414 1 /* use AD7414 */
  135. #define CONFIG_DTT_SENSORS {0} /* Sensor addresses */
  136. #define CONFIG_SYS_DTT_MAX_TEMP 70
  137. #define CONFIG_SYS_DTT_LOW_TEMP -30
  138. #define CONFIG_SYS_DTT_HYSTERESIS 3
  139. /*
  140. * Default environment variables
  141. */
  142. #define CONFIG_EXTRA_ENV_SETTINGS \
  143. CONFIG_AMCC_DEF_ENV \
  144. CONFIG_AMCC_DEF_ENV_POWERPC \
  145. CONFIG_AMCC_DEF_ENV_PPC_OLD \
  146. CONFIG_AMCC_DEF_ENV_NOR_UPD \
  147. "kernel_addr=fc000000\0" \
  148. "ramdisk_addr=fc180000\0" \
  149. ""
  150. #define CONFIG_HAS_ETH0 1 /* add support for "ethaddr" */
  151. #define CONFIG_HAS_ETH1 1 /* add support for "eth1addr" */
  152. #define CONFIG_PHY_ADDR 1 /* PHY address, See schematics */
  153. #define CONFIG_PHY1_ADDR 3
  154. /* Partitions */
  155. #define CONFIG_MAC_PARTITION
  156. #define CONFIG_DOS_PARTITION
  157. #define CONFIG_ISO_PARTITION
  158. #ifdef CONFIG_440EP
  159. /* USB */
  160. #define CONFIG_USB_OHCI_NEW
  161. #define CONFIG_USB_STORAGE
  162. #define CONFIG_SYS_OHCI_BE_CONTROLLER
  163. #undef CONFIG_SYS_USB_OHCI_BOARD_INIT
  164. #define CONFIG_SYS_USB_OHCI_CPU_INIT 1
  165. #define CONFIG_SYS_USB_OHCI_REGS_BASE (CONFIG_SYS_PERIPHERAL_BASE | 0x1000)
  166. #define CONFIG_SYS_USB_OHCI_SLOT_NAME "ppc440"
  167. #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15
  168. /* Comment this out to enable USB 1.1 device */
  169. #define USB_2_0_DEVICE
  170. #define CONFIG_SUPPORT_VFAT
  171. #endif /* CONFIG_440EP */
  172. #ifdef DEBUG
  173. #define CONFIG_PANIC_HANG
  174. #else
  175. #define CONFIG_HW_WATCHDOG /* watchdog */
  176. #endif
  177. /*
  178. * Commands additional to the ones defined in amcc-common.h
  179. */
  180. #define CONFIG_CMD_DTT
  181. #define CONFIG_CMD_PCI
  182. #ifdef CONFIG_440EP
  183. #define CONFIG_CMD_USB
  184. #define CONFIG_CMD_FAT
  185. #define CONFIG_CMD_EXT2
  186. #endif
  187. /*-----------------------------------------------------------------------
  188. * PCI stuff
  189. *-----------------------------------------------------------------------
  190. */
  191. /* General PCI */
  192. #define CONFIG_PCI /* include pci support */
  193. #undef CONFIG_PCI_PNP /* do (not) pci plug-and-play */
  194. #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  195. #define CONFIG_SYS_PCI_TARGBASE 0x80000000 /* PCIaddr mapped to CONFIG_SYS_PCI_MEMBASE*/
  196. /* Board-specific PCI */
  197. #define CONFIG_SYS_PCI_TARGET_INIT
  198. #define CONFIG_SYS_PCI_MASTER_INIT
  199. #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x10e8 /* AMCC */
  200. #define CONFIG_SYS_PCI_SUBSYS_ID 0xcafe /* Whatever */
  201. /*-----------------------------------------------------------------------
  202. * External Bus Controller (EBC) Setup
  203. *----------------------------------------------------------------------*/
  204. #define CONFIG_SYS_FLASH CONFIG_SYS_FLASH_BASE
  205. #define CONFIG_SYS_CPLD 0x80000000
  206. /* Memory Bank 0 (NOR-FLASH) initialization */
  207. #define CONFIG_SYS_EBC_PB0AP 0x03017300
  208. #define CONFIG_SYS_EBC_PB0CR (CONFIG_SYS_FLASH | 0xda000)
  209. /* Memory Bank 2 (CPLD) initialization */
  210. #define CONFIG_SYS_EBC_PB2AP 0x04814500
  211. #define CONFIG_SYS_EBC_PB2CR (CONFIG_SYS_CPLD | 0x18000)
  212. #define CONFIG_SYS_BCSR5_PCI66EN 0x80
  213. #endif /* __CONFIG_H */