ep82xxm.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. /*
  2. * Copyright (C) 2006 Embedded Planet, LLC.
  3. *
  4. * U-Boot configuration for Embedded Planet EP82xxM boards.
  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. #ifndef __CONFIG_H
  25. #define __CONFIG_H
  26. #define CONFIG_MPC8260
  27. #define CPU_ID_STR "MPC8270"
  28. #define CONFIG_EP82XXM /* Embedded Planet EP82xxM H 1.0 board */
  29. /* 256MB SDRAM / 64MB FLASH */
  30. #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
  31. /* Allow serial number (serial#) and MAC address (ethaddr) to be overwritten */
  32. #define CONFIG_ENV_OVERWRITE
  33. /*
  34. * Select serial console configuration
  35. *
  36. * If either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then
  37. * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4
  38. * for SCC).
  39. */
  40. #define CONFIG_CONS_ON_SMC /* Console is on SMC */
  41. #undef CONFIG_CONS_ON_SCC /* It's not on SCC */
  42. #undef CONFIG_CONS_NONE /* It's not on external UART */
  43. #define CONFIG_CONS_INDEX 1 /* SMC1 is used for console */
  44. #define CFG_BCSR 0xFA000000
  45. /*
  46. * Select ethernet configuration
  47. *
  48. * If either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected,
  49. * then CONFIG_ETHER_INDEX must be set to the channel number (1-4 for
  50. * SCC, 1-3 for FCC)
  51. *
  52. * If CONFIG_ETHER_NONE is defined, then either the ethernet routines
  53. * must be defined elsewhere (as for the console), or CONFIG_CMD_NET
  54. * must be unset.
  55. */
  56. #undef CONFIG_ETHER_ON_SCC /* Ethernet is not on SCC */
  57. #define CONFIG_ETHER_ON_FCC /* Ethernet is on FCC */
  58. #undef CONFIG_ETHER_NONE /* No external Ethernet */
  59. #define CONFIG_NET_MULTI
  60. #define CONFIG_ETHER_ON_FCC2
  61. #define CONFIG_ETHER_ON_FCC3
  62. #define CFG_CMXFCR_MASK3 (CMXFCR_FC3 | CMXFCR_RF3CS_MSK | CMXFCR_TF3CS_MSK)
  63. #define CFG_CMXFCR_VALUE3 (CMXFCR_RF3CS_CLK15 | CMXFCR_TF3CS_CLK16)
  64. #define CFG_CMXFCR_MASK2 (CMXFCR_FC2 | CMXFCR_RF2CS_MSK | CMXFCR_TF2CS_MSK)
  65. #define CFG_CMXFCR_VALUE2 (CMXFCR_RF2CS_CLK13 | CMXFCR_TF2CS_CLK14)
  66. #define CFG_CPMFCR_RAMTYPE 0
  67. #define CFG_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB)
  68. #define CONFIG_MII /* MII PHY management */
  69. #define CONFIG_BITBANGMII /* Bit-banged MDIO interface */
  70. /*
  71. * GPIO pins used for bit-banged MII communications
  72. */
  73. #define MDIO_PORT 0 /* Not used - implemented in BCSR */
  74. #define MDIO_ACTIVE (*(vu_char *)(CFG_BCSR + 8) &= 0xFB)
  75. #define MDIO_TRISTATE (*(vu_char *)(CFG_BCSR + 8) |= 0x04)
  76. #define MDIO_READ (*(vu_char *)(CFG_BCSR + 8) & 1)
  77. #define MDIO(bit) if(bit) *(vu_char *)(CFG_BCSR + 8) |= 0x01; \
  78. else *(vu_char *)(CFG_BCSR + 8) &= 0xFE
  79. #define MDC(bit) if(bit) *(vu_char *)(CFG_BCSR + 8) |= 0x02; \
  80. else *(vu_char *)(CFG_BCSR + 8) &= 0xFD
  81. #define MIIDELAY udelay(1)
  82. #ifndef CONFIG_8260_CLKIN
  83. #define CONFIG_8260_CLKIN 66000000 /* in Hz */
  84. #endif
  85. #define CONFIG_BAUDRATE 115200
  86. #define CFG_VXWORKS_MAC_PTR 0x4300 /* Pass Ethernet MAC to VxWorks */
  87. /*
  88. * BOOTP options
  89. */
  90. #define CONFIG_BOOTP_BOOTFILESIZE
  91. #define CONFIG_BOOTP_BOOTPATH
  92. #define CONFIG_BOOTP_GATEWAY
  93. #define CONFIG_BOOTP_HOSTNAME
  94. /*
  95. * Command line configuration.
  96. */
  97. #include <config_cmd_default.h>
  98. #define CONFIG_CMD_DHCP
  99. #define CONFIG_CMD_ECHO
  100. #define CONFIG_CMD_I2C
  101. #define CONFIG_CMD_IMMAP
  102. #define CONFIG_CMD_MII
  103. #define CONFIG_CMD_PING
  104. #define CONFIG_CMD_DATE
  105. #define CONFIG_CMD_DTT
  106. #define CONFIG_CMD_EEPROM
  107. #define CONFIG_CMD_PCI
  108. #define CONFIG_CMD_DIAG
  109. #define CONFIG_ETHADDR 00:10:EC:00:88:65
  110. #define CONFIG_HAS_ETH1
  111. #define CONFIG_ETH1ADDR 00:10:EC:80:88:65
  112. #define CONFIG_IPADDR 10.0.0.245
  113. #define CONFIG_HOSTNAME EP82xxM
  114. #define CONFIG_SERVERIP 10.0.0.26
  115. #define CONFIG_GATEWAYIP 10.0.0.1
  116. #define CONFIG_NETMASK 255.255.255.0
  117. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  118. #define CFG_ENV_IN_OWN_SECT 1
  119. #define CONFIG_AUTO_COMPLETE 1
  120. #define CONFIG_EXTRA_ENV_SETTINGS "ethprime=FCC3 ETHERNET"
  121. #if defined(CONFIG_CMD_KGDB)
  122. #undef CONFIG_KGDB_ON_SMC /* define if kgdb on SMC */
  123. #define CONFIG_KGDB_ON_SCC /* define if kgdb on SCC */
  124. #undef CONFIG_KGDB_NONE /* define if kgdb on something else */
  125. #define CONFIG_KGDB_INDEX 1 /* which serial channel for kgdb */
  126. #define CONFIG_KGDB_BAUDRATE 115200 /* speed to run kgdb serial port at */
  127. #endif
  128. #define CONFIG_BZIP2 /* include support for bzip2 compressed images */
  129. #undef CONFIG_WATCHDOG /* disable platform specific watchdog */
  130. /*
  131. * Miscellaneous configurable options
  132. */
  133. #define CFG_HUSH_PARSER
  134. #define CFG_PROMPT_HUSH_PS2 "> "
  135. #define CFG_LONGHELP /* undef to save memory */
  136. #define CFG_PROMPT "ep82xxm=> " /* Monitor Command Prompt */
  137. #if defined(CONFIG_CMD_KGDB)
  138. #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
  139. #else
  140. #define CFG_CBSIZE 256 /* Console I/O Buffer Size */
  141. #endif
  142. #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
  143. #define CFG_MAXARGS 16 /* max number of command args */
  144. #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
  145. #define CFG_MEMTEST_START 0x00100000 /* memtest works on */
  146. #define CFG_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */
  147. #define CFG_LOAD_ADDR 0x100000 /* default load address */
  148. #define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */
  149. #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
  150. /*-----------------------------------------------------------------------
  151. * Environment
  152. *----------------------------------------------------------------------*/
  153. /*
  154. * Define here the location of the environment variables (FLASH or EEPROM).
  155. * Note: DENX encourages to use redundant environment in FLASH.
  156. */
  157. #if 1
  158. #define CFG_ENV_IS_IN_FLASH 1 /* use FLASH for environment vars */
  159. #else
  160. #define CFG_ENV_IS_IN_EEPROM 1 /* use EEPROM for environment vars */
  161. #endif
  162. /*-----------------------------------------------------------------------
  163. * FLASH related
  164. *----------------------------------------------------------------------*/
  165. #define CFG_FLASH_BASE 0xFC000000
  166. #define CFG_FLASH_CFI
  167. #define CFG_FLASH_CFI_DRIVER
  168. #define CFG_MAX_FLASH_BANKS 1 /* max num of flash banks */
  169. #define CFG_MAX_FLASH_SECT 512 /* max num of sects on one chip */
  170. #define CFG_FLASH_EMPTY_INFO /* print 'E' for empty sector in flinfo */
  171. #ifdef CFG_ENV_IS_IN_FLASH
  172. #define CFG_ENV_SECT_SIZE 0x20000
  173. #define CFG_ENV_ADDR (CFG_MONITOR_BASE + CFG_MONITOR_LEN)
  174. #endif /* CFG_ENV_IS_IN_FLASH */
  175. /*-----------------------------------------------------------------------
  176. * I2C
  177. *----------------------------------------------------------------------*/
  178. /* EEPROM Configuration */
  179. #define CFG_EEPROM_SIZE 0x1000
  180. #define CFG_I2C_EEPROM_ADDR 0x54
  181. #define CFG_I2C_EEPROM_ADDR_LEN 1
  182. #define CFG_EEPROM_PAGE_WRITE_BITS 3
  183. #define CFG_EEPROM_PAGE_WRITE_ENABLE
  184. #define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10
  185. #ifdef CFG_ENV_IS_IN_EEPROM
  186. #define CFG_ENV_SIZE 0x200 /* Size of Environment vars */
  187. #define CFG_ENV_OFFSET 0x0
  188. #endif /* CFG_ENV_IS_IN_EEPROM */
  189. /* RTC Configuration */
  190. #define CONFIG_RTC_M41T11 1 /* uses a M41T81 */
  191. #define CFG_I2C_RTC_ADDR 0x68
  192. #define CONFIG_M41T11_BASE_YEAR 1900
  193. /* I2C SYSMON (LM75) */
  194. #define CONFIG_DTT_LM75 1
  195. #define CONFIG_DTT_SENSORS {0}
  196. #define CFG_DTT_MAX_TEMP 70
  197. #define CFG_DTT_LOW_TEMP -30
  198. #define CFG_DTT_HYSTERESIS 3
  199. /*-----------------------------------------------------------------------
  200. * NVRAM Configuration
  201. *-----------------------------------------------------------------------
  202. */
  203. #define CFG_NVRAM_BASE_ADDR 0xFA080000
  204. #define CFG_NVRAM_SIZE (128*1024)-16
  205. /*-----------------------------------------------------------------------
  206. * PCI stuff
  207. *-----------------------------------------------------------------------
  208. */
  209. /* General PCI */
  210. #define CONFIG_PCI /* include pci support */
  211. #define CONFIG_PCI_PNP /* do pci plug-and-play */
  212. #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  213. #define CONFIG_PCI_BOOTDELAY 0
  214. /* PCI Memory map (if different from default map */
  215. #define CFG_PCI_SLV_MEM_LOCAL CFG_SDRAM_BASE /* Local base */
  216. #define CFG_PCI_SLV_MEM_BUS 0x00000000 /* PCI base */
  217. #define CFG_PICMR0_MASK_ATTRIB (PICMR_MASK_512MB | PICMR_ENABLE | \
  218. PICMR_PREFETCH_EN)
  219. /*
  220. * These are the windows that allow the CPU to access PCI address space.
  221. * All three PCI master windows, which allow the CPU to access PCI
  222. * prefetch, non prefetch, and IO space (see below), must all fit within
  223. * these windows.
  224. */
  225. /*
  226. * Master window that allows the CPU to access PCI Memory (prefetch).
  227. * This window will be setup with the second set of Outbound ATU registers
  228. * in the bridge.
  229. */
  230. #define CFG_PCI_MSTR_MEM_LOCAL 0x80000000 /* Local base */
  231. #define CFG_PCI_MSTR_MEM_BUS 0x80000000 /* PCI base */
  232. #define CFG_CPU_PCI_MEM_START PCI_MSTR_MEM_LOCAL
  233. #define CFG_PCI_MSTR_MEM_SIZE 0x20000000 /* 512MB */
  234. #define CFG_POCMR0_MASK_ATTRIB (POCMR_MASK_512MB | POCMR_ENABLE | POCMR_PREFETCH_EN)
  235. /*
  236. * Master window that allows the CPU to access PCI Memory (non-prefetch).
  237. * This window will be setup with the second set of Outbound ATU registers
  238. * in the bridge.
  239. */
  240. #define CFG_PCI_MSTR_MEMIO_LOCAL 0xA0000000 /* Local base */
  241. #define CFG_PCI_MSTR_MEMIO_BUS 0xA0000000 /* PCI base */
  242. #define CFG_CPU_PCI_MEMIO_START PCI_MSTR_MEMIO_LOCAL
  243. #define CFG_PCI_MSTR_MEMIO_SIZE 0x20000000 /* 512MB */
  244. #define CFG_POCMR1_MASK_ATTRIB (POCMR_MASK_512MB | POCMR_ENABLE)
  245. /*
  246. * Master window that allows the CPU to access PCI IO space.
  247. * This window will be setup with the first set of Outbound ATU registers
  248. * in the bridge.
  249. */
  250. #define CFG_PCI_MSTR_IO_LOCAL 0xF6000000 /* Local base */
  251. #define CFG_PCI_MSTR_IO_BUS 0x00000000 /* PCI base */
  252. #define CFG_CPU_PCI_IO_START PCI_MSTR_IO_LOCAL
  253. #define CFG_PCI_MSTR_IO_SIZE 0x02000000 /* 64MB */
  254. #define CFG_POCMR2_MASK_ATTRIB (POCMR_MASK_32MB | POCMR_ENABLE | POCMR_PCI_IO)
  255. /* PCIBR0 - for PCI IO*/
  256. #define CFG_PCI_MSTR0_LOCAL CFG_PCI_MSTR_IO_LOCAL /* Local base */
  257. #define CFG_PCIMSK0_MASK ~(CFG_PCI_MSTR_IO_SIZE - 1U) /* Size of window */
  258. /* PCIBR1 - prefetch and non-prefetch regions joined together */
  259. #define CFG_PCI_MSTR1_LOCAL CFG_PCI_MSTR_MEM_LOCAL
  260. #define CFG_PCIMSK1_MASK ~(CFG_PCI_MSTR_MEM_SIZE + CFG_PCI_MSTR_MEMIO_SIZE - 1U)
  261. #define CFG_DIRECT_FLASH_TFTP
  262. #if defined(CONFIG_CMD_JFFS2)
  263. #define CFG_JFFS2_FIRST_BANK 0
  264. #define CFG_JFFS2_NUM_BANKS CFG_MAX_FLASH_BANKS
  265. #define CFG_JFFS2_FIRST_SECTOR 0
  266. #define CFG_JFFS2_LAST_SECTOR 62
  267. #define CFG_JFFS2_SORT_FRAGMENTS
  268. #define CFG_JFFS_CUSTOM_PART
  269. #endif
  270. #if defined(CONFIG_CMD_I2C)
  271. #define CONFIG_HARD_I2C 1 /* To enable I2C support */
  272. #define CFG_I2C_SPEED 100000 /* I2C speed */
  273. #define CFG_I2C_SLAVE 0x7F /* I2C slave address */
  274. #endif
  275. #define CFG_MONITOR_BASE TEXT_BASE
  276. #if (CFG_MONITOR_BASE < CFG_FLASH_BASE)
  277. #define CFG_RAMBOOT
  278. #endif
  279. #define CFG_MONITOR_LEN (512 << 10) /* Reserve 256KB for Monitor */
  280. #define CFG_DEFAULT_IMMR 0x00010000
  281. #define CFG_IMMR 0xF0000000
  282. #define CFG_INIT_RAM_ADDR CFG_IMMR
  283. #define CFG_INIT_RAM_END 0x2000 /* End of used area in DPRAM */
  284. #define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
  285. #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
  286. #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
  287. /* Hard reset configuration word */
  288. #define CFG_HRCW_MASTER 0 /*0x1C800641*/ /* Not used - provided by CPLD */
  289. /* No slaves */
  290. #define CFG_HRCW_SLAVE1 0
  291. #define CFG_HRCW_SLAVE2 0
  292. #define CFG_HRCW_SLAVE3 0
  293. #define CFG_HRCW_SLAVE4 0
  294. #define CFG_HRCW_SLAVE5 0
  295. #define CFG_HRCW_SLAVE6 0
  296. #define CFG_HRCW_SLAVE7 0
  297. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  298. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  299. #define CFG_MALLOC_LEN (4096 << 10) /* Reserve 4 MB for malloc() */
  300. #define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  301. #define CFG_CACHELINE_SIZE 32 /* For MPC8260 CPUs */
  302. #if defined(CONFIG_CMD_KGDB)
  303. #define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */
  304. #endif
  305. #define CFG_HID0_INIT 0
  306. #define CFG_HID0_FINAL 0
  307. #define CFG_HID2 0
  308. #define CFG_SIUMCR 0x02610000
  309. #define CFG_SYPCR 0xFFFF0689
  310. #define CFG_BCR 0x8080E000
  311. #define CFG_SCCR 0x00000001
  312. #define CFG_RMR 0
  313. #define CFG_TMCNTSC 0x000000C3
  314. #define CFG_PISCR 0x00000083
  315. #define CFG_RCCR 0
  316. #define CFG_MPTPR 0x0A00
  317. #define CFG_PSDMR 0xC432246E
  318. #define CFG_PSRT 0x32
  319. #define CFG_SDRAM_BASE 0x00000000
  320. #define CFG_SDRAM_BR (CFG_SDRAM_BASE | 0x00000041)
  321. #define CFG_SDRAM_OR 0xF0002900
  322. #define CFG_BR0_PRELIM (CFG_FLASH_BASE | 0x00001801)
  323. #define CFG_OR0_PRELIM 0xFC000882
  324. #define CFG_BR4_PRELIM (CFG_BCSR | 0x00001001)
  325. #define CFG_OR4_PRELIM 0xFFF00050
  326. #define CFG_RESET_ADDRESS 0xFFF00100
  327. #endif /* __CONFIG_H */