digsy_mtc.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. /*
  2. * (C) Copyright 2003-2004
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * (C) Copyright 2005-2007
  6. * Modified for InterControl digsyMTC MPC5200 board by
  7. * Frank Bodammer, GCD Hard- & Software GmbH,
  8. * frank.bodammer@gcd-solutions.de
  9. *
  10. * (C) Copyright 2009 Semihalf
  11. * Optimized for digsyMTC by: Grzegorz Bernacki <gjb@semihalf.com>
  12. *
  13. * See file CREDITS for list of people who contributed to this
  14. * project.
  15. *
  16. * This program is free software\; you can redistribute it and/or
  17. * modify it under the terms of the GNU General Public License as
  18. * published by the Free Software Foundation\; either version 2 of
  19. * the License, or (at your option) any later version.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY\; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program\; if not, write to the Free Software
  28. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  29. * MA 02111-1307 USA
  30. */
  31. #ifndef __CONFIG_H
  32. #define __CONFIG_H
  33. /*
  34. * High Level Configuration Options
  35. */
  36. #define CONFIG_MPC5xxx 1 /* This is an MPC5xxx CPU */
  37. #define CONFIG_MPC5200 1 /* (more precisely an MPC5200 CPU) */
  38. #define CONFIG_DIGSY_MTC 1 /* ... on InterControl digsyMTC board */
  39. #define CONFIG_SYS_MPC5XXX_CLKIN 33000000
  40. #define BOOTFLAG_COLD 0x01
  41. #define BOOTFLAG_WARM 0x02
  42. #define CONFIG_SYS_CACHELINE_SIZE 32
  43. /*
  44. * Serial console configuration
  45. */
  46. #define CONFIG_PSC_CONSOLE 4 /* console is on PSC4 */
  47. #define CONFIG_BAUDRATE 115200 /* ... at 115200 bps */
  48. #define CONFIG_SYS_BAUDRATE_TABLE \
  49. { 9600, 19200, 38400, 57600, 115200, 230400 }
  50. /*
  51. * PCI Mapping:
  52. * 0x40000000 - 0x4fffffff - PCI Memory
  53. * 0x50000000 - 0x50ffffff - PCI IO Space
  54. */
  55. #define CONFIG_PCI 1
  56. #define CONFIG_PCI_PNP 1
  57. #define CONFIG_PCI_SCAN_SHOW 1
  58. #define CONFIG_PCI_MEM_BUS 0x40000000
  59. #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS
  60. #define CONFIG_PCI_MEM_SIZE 0x10000000
  61. #define CONFIG_PCI_IO_BUS 0x50000000
  62. #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS
  63. #define CONFIG_PCI_IO_SIZE 0x01000000
  64. /*
  65. * Partitions
  66. */
  67. #define CONFIG_DOS_PARTITION
  68. #define CONFIG_BZIP2
  69. /*
  70. * Command line configuration.
  71. */
  72. #include <config_cmd_default.h>
  73. #define CONFIG_CMD_DFL
  74. #define CONFIG_CMD_CACHE
  75. #define CONFIG_CMD_DATE
  76. #define CONFIG_CMD_DHCP
  77. #define CONFIG_CMD_DIAG
  78. #define CONFIG_CMD_EEPROM
  79. #define CONFIG_CMD_ELF
  80. #define CONFIG_CMD_EXT2
  81. #define CONFIG_CMD_FAT
  82. #define CONFIG_CMD_I2C
  83. #define CONFIG_CMD_IDE
  84. #define CONFIG_CMD_IRQ
  85. #define CONFIG_CMD_MII
  86. #define CONFIG_CMD_PCI
  87. #define CONFIG_CMD_PING
  88. #define CONFIG_CMD_REGINFO
  89. #define CONFIG_CMD_SAVES
  90. #define CONFIG_CMD_USB
  91. #if (TEXT_BASE == 0xFF000000)
  92. #define CONFIG_SYS_LOWBOOT 1
  93. #endif
  94. /*
  95. * Autobooting
  96. */
  97. #define CONFIG_BOOTDELAY 1
  98. #undef CONFIG_BOOTARGS
  99. #define CONFIG_EXTRA_ENV_SETTINGS \
  100. "netdev=eth0\0" \
  101. "console=ttyPSC0\0" \
  102. "kernel_addr_r=400000\0" \
  103. "fdt_addr_r=600000\0" \
  104. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  105. "nfsroot=${serverip}:${rootpath}\0" \
  106. "addip=setenv bootargs ${bootargs} " \
  107. "ip=${ipaddr}:${serverip}:${gatewayip}:"\
  108. "${netmask}:${hostname}:${netdev}:off panic=1\0" \
  109. "addcons=setenv bootargs ${bootargs} console=${console},${baudrate}\0"\
  110. "rootpath=/opt/eldk/ppc_6xx\0" \
  111. "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
  112. "tftp ${fdt_addr_r} ${fdt_file};" \
  113. "run nfsargs addip addcons;" \
  114. "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
  115. "load=tftp 200000 ${u-boot}\0" \
  116. "update=protect off FFF00000 +${filesize};" \
  117. "erase FFF00000 +${filesize};" \
  118. "cp.b 200000 FFF00000 ${filesize};" \
  119. "protect on FFF00000 +${filesize}\0" \
  120. ""
  121. /*
  122. * I2C configuration
  123. */
  124. #define CONFIG_HARD_I2C 1
  125. #define CONFIG_SYS_I2C_MODULE 1
  126. #define CONFIG_SYS_I2C_SPEED 100000
  127. #define CONFIG_SYS_I2C_SLAVE 0x7F
  128. /*
  129. * EEPROM configuration
  130. */
  131. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* 1010000x */
  132. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
  133. #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
  134. #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 70
  135. /*
  136. * RTC configuration
  137. */
  138. #define CONFIG_RTC_DS1337
  139. #define CONFIG_SYS_I2C_RTC_ADDR 0x68
  140. /*
  141. * Flash configuration
  142. */
  143. #define CONFIG_SYS_FLASH_CFI 1
  144. #define CONFIG_FLASH_CFI_DRIVER 1
  145. #define CONFIG_SYS_FLASH_BASE 0xFF000000
  146. #define CONFIG_SYS_FLASH_SIZE 0x01000000
  147. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  148. #define CONFIG_SYS_MAX_FLASH_SECT 256
  149. #define CONFIG_FLASH_16BIT
  150. #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
  151. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
  152. #define CONFIG_SYS_FLASH_ERASE_TOUT 240000
  153. #define CONFIG_SYS_FLASH_WRITE_TOUT 500
  154. #define CONFIG_OF_LIBFDT 1
  155. #define CONFIG_OF_BOARD_SETUP 1
  156. #define OF_CPU "PowerPC,5200@0"
  157. #define OF_SOC "soc5200@f0000000"
  158. #define OF_TBCLK (bd->bi_busfreq / 4)
  159. #define CONFIG_BOARD_EARLY_INIT_R
  160. #define CONFIG_MISC_INIT_R
  161. /*
  162. * Environment settings
  163. */
  164. #define CONFIG_ENV_IS_IN_FLASH 1
  165. #if defined(CONFIG_LOWBOOT)
  166. #define CONFIG_ENV_ADDR 0xFF060000
  167. #else /* CONFIG_LOWBOOT */
  168. #define CONFIG_ENV_ADDR 0xFFF60000
  169. #endif /* CONFIG_LOWBOOT */
  170. #define CONFIG_ENV_SIZE 0x10000
  171. #define CONFIG_ENV_SECT_SIZE 0x20000
  172. #define CONFIG_ENV_OVERWRITE 1
  173. /*
  174. * Memory map
  175. */
  176. #define CONFIG_SYS_MBAR 0xF0000000
  177. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  178. #if !defined(CONFIG_SYS_LOWBOOT)
  179. #define CONFIG_SYS_DEFAULT_MBAR 0x80000000
  180. #else
  181. #define CONFIG_SYS_DEFAULT_MBAR 0xF0000000
  182. #endif
  183. /*
  184. * Use SRAM until RAM will be available
  185. */
  186. #define CONFIG_SYS_INIT_RAM_ADDR MPC5XXX_SRAM
  187. #define CONFIG_SYS_INIT_RAM_END MPC5XXX_SRAM_SIZE
  188. #define CONFIG_SYS_GBL_DATA_SIZE 4096
  189. #define CONFIG_SYS_GBL_DATA_OFFSET \
  190. (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  191. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  192. #define CONFIG_SYS_MONITOR_BASE TEXT_BASE
  193. #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
  194. #define CONFIG_SYS_RAMBOOT 1
  195. #endif
  196. #define CONFIG_SYS_MONITOR_LEN (256 << 10)
  197. #define CONFIG_SYS_MALLOC_LEN (4096 << 10)
  198. #define CONFIG_SYS_BOOTMAPSZ (8 << 20)
  199. /*
  200. * Ethernet configuration
  201. */
  202. #define CONFIG_MPC5xxx_FEC 1
  203. #define CONFIG_MPC5xxx_FEC_MII100
  204. #define CONFIG_PHY_ADDR 0x00
  205. #define CONFIG_PHY_RESET_DELAY 1000
  206. #define CONFIG_NETCONSOLE /* include NetConsole support */
  207. /*
  208. * GPIO configuration
  209. */
  210. #define CONFIG_SYS_GPS_PORT_CONFIG 0xA2552112
  211. /*
  212. * Miscellaneous configurable options
  213. */
  214. #define CONFIG_SYS_LONGHELP
  215. #define CONFIG_AUTO_COMPLETE 1
  216. #define CONFIG_SYS_PROMPT "=> "
  217. #define CONFIG_SYS_HUSH_PARSER
  218. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  219. #define CONFIG_AUTOBOOT_KEYED
  220. #define CONFIG_AUTOBOOT_PROMPT "autoboot in %d seconds\n", bootdelay
  221. #define CONFIG_AUTOBOOT_DELAY_STR " "
  222. #define CONFIG_LOOPW 1
  223. #define CONFIG_MX_CYCLIC 1
  224. #define CONFIG_ZERO_BOOTDELAY_CHECK
  225. #define CONFIG_SYS_CBSIZE 1024
  226. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
  227. #define CONFIG_SYS_MAXARGS 32
  228. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  229. #define CONFIG_SYS_ALT_MEMTEST
  230. #define CONFIG_SYS_MEMTEST_SCRATCH 0x00001000
  231. #define CONFIG_SYS_MEMTEST_START 0x00010000
  232. #define CONFIG_SYS_MEMTEST_END 0x019fffff
  233. #define CONFIG_SYS_LOAD_ADDR 0x00100000
  234. #define CONFIG_SYS_HZ 1000
  235. /*
  236. * Various low-level settings
  237. */
  238. #define CONFIG_SYS_SDRAM_CS1 1
  239. #define CONFIG_SYS_XLB_PIPELINING 1
  240. #define CONFIG_SYS_HID0_INIT HID0_ICE | HID0_ICFI
  241. #define CONFIG_SYS_HID0_FINAL HID0_ICE
  242. #if defined(CONFIG_SYS_LOWBOOT)
  243. #define CONFIG_SYS_BOOTCS_START CONFIG_SYS_FLASH_BASE
  244. #define CONFIG_SYS_BOOTCS_SIZE CONFIG_SYS_FLASH_SIZE
  245. #define CONFIG_SYS_BOOTCS_CFG 0x0002DD00
  246. #endif
  247. #define CONFIG_SYS_CS4_START 0x60000000
  248. #define CONFIG_SYS_CS4_SIZE 0x1000
  249. #define CONFIG_SYS_CS4_CFG 0x0008FC00
  250. #define CONFIG_SYS_CS0_START CONFIG_SYS_FLASH_BASE
  251. #define CONFIG_SYS_CS0_SIZE CONFIG_SYS_FLASH_SIZE
  252. #define CONFIG_SYS_CS0_CFG 0x0002DD00
  253. #define CONFIG_SYS_CS_BURST 0x00000000
  254. #define CONFIG_SYS_CS_DEADCYCLE 0x11111111
  255. #if !defined(CONFIG_SYS_LOWBOOT)
  256. #define CONFIG_SYS_RESET_ADDRESS 0xfff00100
  257. #else
  258. #define CONFIG_SYS_RESET_ADDRESS 0xff000100
  259. #endif
  260. /*
  261. * USB
  262. */
  263. #define CONFIG_USB_OHCI_NEW
  264. #define CONFIG_SYS_OHCI_BE_CONTROLLER
  265. #define CONFIG_USB_STORAGE
  266. #define CONFIG_USB_CLOCK 0x00013333
  267. #define CONFIG_USB_CONFIG 0x00002000
  268. #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15
  269. #define CONFIG_SYS_USB_OHCI_REGS_BASE MPC5XXX_USB
  270. #define CONFIG_SYS_USB_OHCI_SLOT_NAME "mpc5200"
  271. #define CONFIG_SYS_USB_OHCI_CPU_INIT
  272. /*
  273. * IDE/ATA
  274. */
  275. #define CONFIG_IDE_RESET
  276. #define CONFIG_IDE_PREINIT
  277. #define CONFIG_SYS_ATA_CS_ON_I2C2
  278. #define CONFIG_SYS_IDE_MAXBUS 1
  279. #define CONFIG_SYS_IDE_MAXDEVICE 1
  280. #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
  281. #define CONFIG_SYS_ATA_BASE_ADDR MPC5XXX_ATA
  282. #define CONFIG_SYS_ATA_DATA_OFFSET (0x0060)
  283. #define CONFIG_SYS_ATA_REG_OFFSET (CONFIG_SYS_ATA_DATA_OFFSET)
  284. #define CONFIG_SYS_ATA_ALT_OFFSET (0x005C)
  285. #define CONFIG_SYS_ATA_STRIDE 4
  286. #define CONFIG_ATAPI 1
  287. #define CONFIG_LBA48 1
  288. #endif /* __CONFIG_H */