pcm030.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. /*
  2. * (C) Copyright 2003-2005
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * (C) Copyright 2006
  6. * Eric Schumann, Phytec Messatechnik GmbH
  7. *
  8. * (C) Copyright 2009
  9. * Jon Smirl <jonsmirl@gmail.com>
  10. *
  11. * See file CREDITS for list of people who contributed to this
  12. * project.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  27. * MA 02111-1307 USA
  28. */
  29. #ifndef __CONFIG_H
  30. #define __CONFIG_H
  31. #define CONFIG_BOARDINFO "phyCORE-MPC5200B-tiny"
  32. /*-----------------------------------------------------------------------------
  33. High Level Configuration Options
  34. (easy to change)
  35. -----------------------------------------------------------------------------*/
  36. #define CONFIG_MPC5xxx 1 /* This is an MPC5xxx CPU */
  37. #define CONFIG_MPC5200 1 /* (more precisely an MPC5200 CPU) */
  38. #define CONFIG_MPC5200_DDR 1 /* (with DDR-SDRAM) */
  39. #define CONFIG_PHYCORE_MPC5200B_TINY 1 /* phyCORE-MPC5200B -> */
  40. /* FEC configuration and IDE */
  41. #define CONFIG_SYS_MPC5XXX_CLKIN 33333333 /* ... running at 33.333333MHz */
  42. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  43. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  44. /*-----------------------------------------------------------------------------
  45. Serial console configuration
  46. -----------------------------------------------------------------------------*/
  47. #define CONFIG_PSC_CONSOLE 3 /* console is on PSC3 -> */
  48. /*define gps port conf. */
  49. /* register later on to */
  50. /*enable UART function! */
  51. #define CONFIG_BAUDRATE 115200 /* ... at 115200 bps */
  52. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
  53. /*
  54. * Command line configuration.
  55. */
  56. #include <config_cmd_default.h>
  57. #define CONFIG_CMD_DATE
  58. #define CONFIG_CMD_DHCP
  59. #define CONFIG_CMD_EEPROM
  60. #define CONFIG_CMD_I2C
  61. #define CONFIG_CMD_JFFS2
  62. #define CONFIG_CMD_MII
  63. #define CONFIG_CMD_NFS
  64. #define CONFIG_CMD_PCI
  65. #define CONFIG_TIMESTAMP 1 /* Print image info with timestamp */
  66. #if (TEXT_BASE == 0xFF000000) /* Boot low */
  67. #define CONFIG_SYS_LOWBOOT 1
  68. #endif
  69. /* RAMBOOT will be defined automatically in memory section */
  70. #define CONFIG_JFFS2_CMDLINE
  71. #define MTDIDS_DEFAULT "nor0=physmap-flash.0"
  72. #define MTDPARTS_DEFAULT "mtdparts=physmap-flash.0:256k(ubootl)," \
  73. "1792k(kernel),13312k(jffs2),256k(uboot)ro,256k(oftree),-(space)"
  74. /*-----------------------------------------------------------------------------
  75. Autobooting
  76. -----------------------------------------------------------------------------*/
  77. #define CONFIG_BOOTDELAY 3 /* autoboot after 3 seconds */
  78. #define CONFIG_ZERO_BOOTDELAY_CHECK /* allow stopping of boot process */
  79. /* even with bootdelay=0 */
  80. #undef CONFIG_BOOTARGS
  81. #define CONFIG_PREBOOT "echo;" \
  82. "echo Type \"run bootcmd_net\" to load Kernel over TFTP and to "\
  83. "mount root filesystem over NFS;" \
  84. "echo"
  85. #define CONFIG_EXTRA_ENV_SETTINGS \
  86. "netdev=eth0\0" \
  87. "uimage=uImage-pcm030\0" \
  88. "oftree=oftree-pcm030.dtb\0" \
  89. "jffs2=root-pcm030.jffs2\0" \
  90. "uboot=u-boot-pcm030.bin\0" \
  91. "bargs_base=setenv bootargs console=ttyPSC0,$(baudrate)" \
  92. " $(mtdparts) rw\0" \
  93. "bargs_flash=setenv bootargs $(bootargs) root=/dev/mtdblock2" \
  94. " rootfstype=jffs2\0" \
  95. "bargs_nfs=setenv bootargs $(bootargs) root=/dev/nfs" \
  96. " ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask)::" \
  97. "$(netdev):off nfsroot=$(serverip):$(nfsrootfs),v3,tcp\0" \
  98. "bcmd_net=run bargs_base bargs_nfs; tftpboot 0x500000 $(uimage);" \
  99. " tftp 0x400000 $(oftree); bootm 0x500000 - 0x400000\0" \
  100. "bcmd_flash=run bargs_base bargs_flash; bootm 0xff040000 - " \
  101. "0xfff40000\0" \
  102. " cp.b 0x400000 0xff040000 $(filesize)\0" \
  103. "prg_jffs2=tftp 0x400000 $(jffs2); erase 0xff200000 0xffefffff; " \
  104. "cp.b 0x400000 0xff200000 $(filesize)\0" \
  105. "prg_oftree=tftp 0x400000 $(oftree); erase 0xfff40000 0xfff5ffff;" \
  106. " cp.b 0x400000 0xfff40000 $(filesize)\0" \
  107. "update=tftpboot 0x400000 $(uboot);erase 0xFFF00000 0xfff3ffff;" \
  108. " cp.b 0x400000 0xFFF00000 $(filesize)\0" \
  109. "unlock=yes\0" \
  110. ""
  111. #define CONFIG_BOOTCOMMAND "run bcmd_flash"
  112. /*--------------------------------------------------------------------------
  113. IPB Bus clocking configuration.
  114. ---------------------------------------------------------------------------*/
  115. #define CONFIG_SYS_IPBCLK_EQUALS_XLBCLK /* define for 133MHz speed */
  116. /*-------------------------------------------------------------------------
  117. * PCI Mapping:
  118. * 0x40000000 - 0x4fffffff - PCI Memory
  119. * 0x50000000 - 0x50ffffff - PCI IO Space
  120. * -----------------------------------------------------------------------*/
  121. #define CONFIG_PCI 1
  122. #define CONFIG_PCI_PNP 1
  123. #define CONFIG_PCI_SCAN_SHOW 1
  124. #define CONFIG_PCI_MEM_BUS 0x40000000
  125. #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS
  126. #define CONFIG_PCI_MEM_SIZE 0x10000000
  127. #define CONFIG_PCI_IO_BUS 0x50000000
  128. #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS
  129. #define CONFIG_PCI_IO_SIZE 0x01000000
  130. #define CONFIG_SYS_XLB_PIPELINING 1
  131. /*---------------------------------------------------------------------------
  132. I2C configuration
  133. ---------------------------------------------------------------------------*/
  134. #define CONFIG_HARD_I2C 1 /* I2C with hardware support */
  135. #define CONFIG_SYS_I2C_MODULE 2 /* Select I2C module #1 or #2 */
  136. #define CONFIG_SYS_I2C_SPEED 100000 /* 100 kHz */
  137. #define CONFIG_SYS_I2C_SLAVE 0x7F
  138. /*---------------------------------------------------------------------------
  139. EEPROM CAT24WC32 configuration
  140. ---------------------------------------------------------------------------*/
  141. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x52 /* 1010100x */
  142. #define CONFIG_SYS_I2C_FACT_ADDR 0x52 /* EEPROM CAT24WC32 */
  143. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 /* Bytes of address */
  144. #define CONFIG_SYS_EEPROM_SIZE 2048
  145. #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
  146. #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 15
  147. /*---------------------------------------------------------------------------
  148. RTC configuration
  149. ---------------------------------------------------------------------------*/
  150. #define RTC
  151. #define CONFIG_RTC_PCF8563 1
  152. #define CONFIG_SYS_I2C_RTC_ADDR 0x51
  153. /*---------------------------------------------------------------------------
  154. Flash configuration
  155. ---------------------------------------------------------------------------*/
  156. #define CONFIG_SYS_FLASH_BASE 0xff000000
  157. #define CONFIG_SYS_FLASH_SIZE 0x01000000
  158. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
  159. #define CONFIG_SYS_FLASH_CFI 1 /* Flash is CFI conformant */
  160. #define CONFIG_FLASH_CFI_DRIVER 1 /* Use the common driver */
  161. #define CONFIG_SYS_FLASH_EMPTY_INFO
  162. #define CONFIG_SYS_MAX_FLASH_SECT 260 /* max num of sects on one chip */
  163. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max num of flash banks */
  164. /* (= chip selects) */
  165. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
  166. /*
  167. * Use also hardware protection. This seems required, as the BDI uses
  168. * hardware protection. Without this, U-Boot can't work with this sectors,
  169. * as its protection is software only by default
  170. */
  171. #define CONFIG_SYS_FLASH_PROTECTION 1
  172. /*---------------------------------------------------------------------------
  173. Environment settings
  174. ---------------------------------------------------------------------------*/
  175. /* pcm030 ships with environment is EEPROM by default */
  176. #define CONFIG_ENV_IS_IN_EEPROM 1
  177. #define CONFIG_ENV_OFFSET 0x00 /* environment starts at the */
  178. /*beginning of the EEPROM */
  179. #define CONFIG_ENV_SIZE CONFIG_SYS_EEPROM_SIZE
  180. #define CONFIG_ENV_OVERWRITE 1
  181. /*-----------------------------------------------------------------------------
  182. Memory map
  183. -----------------------------------------------------------------------------*/
  184. #define CONFIG_SYS_MBAR 0xF0000000 /* MBAR has to be switched by other */
  185. /* bootloader or debugger config */
  186. #define CONFIG_SYS_SDRAM_BASE 0x00000000
  187. #define CONFIG_SYS_DEFAULT_MBAR 0x80000000
  188. /* Use SRAM until RAM will be available */
  189. #define CONFIG_SYS_INIT_RAM_ADDR MPC5XXX_SRAM
  190. #define CONFIG_SYS_INIT_RAM_END MPC5XXX_SRAM_SIZE /* End of used */
  191. /* area in DPRAM */
  192. #define CONFIG_SYS_GBL_DATA_SIZE 128 /* size in bytes */
  193. /* reserved for initial data */
  194. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - \
  195. CONFIG_SYS_GBL_DATA_SIZE)
  196. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  197. #define CONFIG_SYS_MONITOR_BASE TEXT_BASE
  198. #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
  199. # define CONFIG_SYS_RAMBOOT 1
  200. #endif
  201. #define CONFIG_SYS_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */
  202. #define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */
  203. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  204. /*-----------------------------------------------------------------------------
  205. Ethernet configuration
  206. -----------------------------------------------------------------------------*/
  207. #define CONFIG_MPC5xxx_FEC 1
  208. #define CONFIG_MPC5xxx_FEC_MII100
  209. #define CONFIG_PHY_ADDR 0x01
  210. /*---------------------------------------------------------------------------
  211. GPIO configuration
  212. ---------------------------------------------------------------------------*/
  213. /* GPIO port configuration
  214. *
  215. * Pin mapping:
  216. *
  217. * [29:31] = 01x
  218. * PSC1_0 -> AC97 SDATA out
  219. * PSC1_1 -> AC97 SDTA in
  220. * PSC1_2 -> AC97 SYNC out
  221. * PSC1_3 -> AC97 bitclock out
  222. * PSC1_4 -> AC97 reset out
  223. *
  224. * [25:27] = 001
  225. * PSC2_0 -> CAN 1 Tx out
  226. * PSC2_1 -> CAN 1 Rx in
  227. * PSC2_2 -> CAN 2 Tx out
  228. * PSC2_3 -> CAN 2 Rx in
  229. * PSC2_4 -> GPIO (claimed for ATA reset, active low)
  230. *
  231. *
  232. * [20:23] = 1100
  233. * PSC3_0 -> UART Tx out
  234. * PSC3_1 -> UART Rx in
  235. * PSC3_2 -> UART RTS (in/out FIXME)
  236. * PSC3_3 -> UART CTS (in/out FIXME)
  237. * PSC3_4 -> LocalPlus Bus CS6 \
  238. * PSC3_5 -> LocalPlus Bus CS7 / --> see [4] and [5]
  239. * PSC3_6 -> dedicated SPI MOSI out (master case)
  240. * PSC3_7 -> dedicated SPI MISO in (master case)
  241. * PSC3_8 -> dedicated SPI SS out (master case)
  242. * PSC3_9 -> dedicated SPI CLK out (master case)
  243. *
  244. * [18:19] = 01
  245. * USB_0 -> USB OE out
  246. * USB_1 -> USB Tx- out
  247. * USB_2 -> USB Tx+ out
  248. * USB_3 -> USB RxD (in/out FIXME)
  249. * USB_4 -> USB Rx+ in
  250. * USB_5 -> USB Rx- in
  251. * USB_6 -> USB PortPower out
  252. * USB_7 -> USB speed out
  253. * USB_8 -> USB suspend (in/out FIXME)
  254. * USB_9 -> USB overcurrent in
  255. *
  256. * [17] = 0
  257. * USB differential mode
  258. *
  259. * [16] = 0
  260. * PCI enabled
  261. *
  262. * [12:15] = 0101
  263. * ETH_0 -> ETH Txen
  264. * ETH_1 -> ETH TxD0
  265. * ETH_2 -> ETH TxD1
  266. * ETH_3 -> ETH TxD2
  267. * ETH_4 -> ETH TxD3
  268. * ETH_5 -> ETH Txerr
  269. * ETH_6 -> ETH MDC
  270. * ETH_7 -> ETH MDIO
  271. * ETH_8 -> ETH RxDv
  272. * ETH_9 -> ETH RxCLK
  273. * ETH_10 -> ETH Collision
  274. * ETH_11 -> ETH TxD
  275. * ETH_12 -> ETH RxD0
  276. * ETH_13 -> ETH RxD1
  277. * ETH_14 -> ETH RxD2
  278. * ETH_15 -> ETH RxD3
  279. * ETH_16 -> ETH Rxerr
  280. * ETH_17 -> ETH CRS
  281. *
  282. * [9:11] = 101
  283. * PSC6_0 -> UART RxD in
  284. * PSC6_1 -> UART CTS (in/out FIXME)
  285. * PSC6_2 -> UART TxD out
  286. * PSC6_3 -> UART RTS (in/out FIXME)
  287. *
  288. * [2:3/6:7] = 00/11
  289. * TMR_0 -> ATA_CS0 out
  290. * TMR_1 -> ATA_CS1 out
  291. * TMR_2 -> GPIO
  292. * TMR_3 -> GPIO
  293. * TMR_4 -> GPIO
  294. * TMR_5 -> GPIO
  295. * TMR_6 -> GPIO
  296. * TMR_7 -> GPIO
  297. * I2C_0 -> I2C 1 Clock out
  298. * I2C_1 -> I2C 1 IO in/out
  299. * I2C_2 -> I2C 2 Clock out
  300. * I2C_3 -> I2C 2 IO in/out
  301. *
  302. * [4] = 1
  303. * PSC3_5 is used as CS7
  304. *
  305. * [5] = 1
  306. * PSC3_4 is used as CS6
  307. *
  308. * [1] = 0
  309. * gpio_wkup_7 is GPIO
  310. *
  311. * [0] = 0
  312. * gpio_wkup_6 is GPIO
  313. *
  314. */
  315. #define CONFIG_SYS_GPS_PORT_CONFIG 0x0f551c12
  316. /*-----------------------------------------------------------------------------
  317. Miscellaneous configurable options
  318. -------------------------------------------------------------------------------*/
  319. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  320. #define CONFIG_SYS_PROMPT "uboot> " /* Monitor Command Prompt */
  321. #define CONFIG_CMDLINE_EDITING 1 /* add command line history */
  322. #define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC5xxx CPUs */
  323. #if defined(CONFIG_CMD_KGDB)
  324. #define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
  325. #endif
  326. #if defined(CONFIG_CMD_KGDB)
  327. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  328. #else
  329. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  330. #endif
  331. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  332. /* Print Buffer Size */
  333. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  334. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  335. #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
  336. #define CONFIG_SYS_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */
  337. #define CONFIG_SYS_LOAD_ADDR 0x400000 /* default load address */
  338. #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
  339. #define CONFIG_DISPLAY_BOARDINFO 1
  340. /*-----------------------------------------------------------------------------
  341. Various low-level settings
  342. -----------------------------------------------------------------------------*/
  343. #define CONFIG_SYS_HID0_INIT HID0_ICE | HID0_ICFI
  344. #define CONFIG_SYS_HID0_FINAL HID0_ICE
  345. /* no burst access on the LPB */
  346. #define CONFIG_SYS_CS_BURST 0x00000000
  347. /* one deadcycle for the 33MHz statemachine */
  348. #define CONFIG_SYS_CS_DEADCYCLE 0x33333331
  349. /* one additional waitstate for the 33MHz statemachine */
  350. #define CONFIG_SYS_BOOTCS_CFG 0x0001dd00
  351. #define CONFIG_SYS_BOOTCS_START CONFIG_SYS_FLASH_BASE
  352. #define CONFIG_SYS_BOOTCS_SIZE CONFIG_SYS_FLASH_SIZE
  353. #define CONFIG_SYS_RESET_ADDRESS 0xff000000
  354. /*-----------------------------------------------------------------------
  355. * USB stuff
  356. *-----------------------------------------------------------------------
  357. */
  358. #define CONFIG_USB_CLOCK 0x0001BBBB
  359. #define CONFIG_USB_CONFIG 0x00001000
  360. /*---------------------------------------------------------------------------
  361. IDE/ATA stuff Supports IDE harddisk
  362. ----------------------------------------------------------------------------*/
  363. #undef CONFIG_IDE_8xx_PCCARD /* Use IDE with PC Card Adapter */
  364. #undef CONFIG_IDE_8xx_DIRECT /* Direct IDE not supported */
  365. #undef CONFIG_IDE_LED /* LED for ide not supported */
  366. #define CONFIG_SYS_ATA_CS_ON_TIMER01
  367. #define CONFIG_IDE_RESET 1 /* reset for ide supported */
  368. #define CONFIG_IDE_PREINIT
  369. #define CONFIG_SYS_IDE_MAXBUS 1 /* max. 1 IDE bus */
  370. #define CONFIG_SYS_IDE_MAXDEVICE 2 /* max. 2 drives per IDE bus */
  371. #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
  372. #define CONFIG_SYS_ATA_BASE_ADDR MPC5XXX_ATA
  373. /* Offset for data I/O */
  374. #define CONFIG_SYS_ATA_DATA_OFFSET (0x0060)
  375. /* Offset for normal register accesses */
  376. #define CONFIG_SYS_ATA_REG_OFFSET (CONFIG_SYS_ATA_DATA_OFFSET)
  377. /* Offset for alternate registers */
  378. #define CONFIG_SYS_ATA_ALT_OFFSET (0x005C)
  379. /* Interval between registers */
  380. #define CONFIG_SYS_ATA_STRIDE 4
  381. #define CONFIG_ATAPI 1
  382. /* we enable IDE and FAT support, so we also need partition support */
  383. #define CONFIG_DOS_PARTITION 1
  384. /* USB */
  385. #define CONFIG_USB_OHCI
  386. #define CONFIG_USB_STORAGE
  387. /* pass open firmware flat tree */
  388. #define CONFIG_OF_LIBFDT 1
  389. #define CONFIG_OF_BOARD_SETUP 1
  390. #define OF_CPU "PowerPC,5200@0"
  391. #define OF_TBCLK CONFIG_SYS_MPC5XXX_CLKIN
  392. #define OF_SOC "soc5200@f0000000"
  393. #define OF_STDOUT_PATH "/soc5200@f0000000/serial@2400"
  394. #endif /* __CONFIG_H */