cm5200.h 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /*
  2. * (C) Copyright 2003-2007
  3. * Wolfgang Denk, DENX Software Engineering, wd@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. #ifndef __CONFIG_H
  24. #define __CONFIG_H
  25. /*
  26. * High Level Configuration Options
  27. */
  28. #define CONFIG_MPC5xxx 1 /* This is an MPC5xxx CPU */
  29. #define CONFIG_MPC5200 1 /* (more precisely an MPC5200 CPU) */
  30. #define CONFIG_CM5200 1 /* ... on CM5200 platform */
  31. /*
  32. * Supported commands
  33. */
  34. #define CONFIG_COMMANDS (CONFIG_CMD_DFL | \
  35. CFG_CMD_ASKENV | \
  36. CFG_CMD_DATE | \
  37. CFG_CMD_DHCP | \
  38. CFG_CMD_ECHO | \
  39. CFG_CMD_I2C | \
  40. CFG_CMD_FLASH | \
  41. CFG_CMD_MII | \
  42. CFG_CMD_NFS | \
  43. CFG_CMD_PING | \
  44. CFG_CMD_DIAG | \
  45. CFG_CMD_REGINFO | \
  46. CFG_CMD_SNTP | \
  47. CFG_CMD_BSP | \
  48. CFG_CMD_USB | \
  49. CFG_CMD_FAT | \
  50. CFG_CMD_JFFS2)
  51. /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
  52. #include <cmd_confdefs.h>
  53. /*
  54. * Serial console configuration
  55. */
  56. #define CONFIG_PSC_CONSOLE 1 /* console is on PSC1 */
  57. #define CONFIG_BAUDRATE 57600 /* ... at 57600 bps */
  58. #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
  59. #define CONFIG_SILENT_CONSOLE 1 /* needed to silence i2c_init() */
  60. /*
  61. * Ethernet configuration
  62. */
  63. #define CONFIG_MPC5xxx_FEC 1
  64. #define CONFIG_PHY_ADDR 0x00
  65. #define CONFIG_ENV_OVERWRITE 1 /* allow overwriting of ethaddr */
  66. /* use misc_init_r() to read ethaddr from I2C EEPROM (see CFG_I2C_EEPROM) */
  67. #define CONFIG_MISC_INIT_R 1
  68. #define CONFIG_MAC_OFFSET 0x35 /* MAC address offset in I2C EEPROM */
  69. /*
  70. * POST support
  71. */
  72. #define CONFIG_POST (CFG_POST_MEMORY | CFG_POST_CPU | CFG_POST_I2C)
  73. #define MPC5XXX_SRAM_POST_SIZE (MPC5XXX_SRAM_SIZE - 4)
  74. /* List of I2C addresses to be verified by POST */
  75. #define I2C_ADDR_LIST { CFG_I2C_SLAVE, CFG_I2C_IO, CFG_I2C_EEPROM }
  76. /* display image timestamps */
  77. #define CONFIG_TIMESTAMP 1
  78. /*
  79. * Autobooting
  80. */
  81. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  82. #define CONFIG_PREBOOT "echo;" \
  83. "echo Type \"run net_nfs_fdt\" to mount root filesystem over NFS;" \
  84. "echo"
  85. #undef CONFIG_BOOTARGS
  86. /*
  87. * Default environment settings
  88. */
  89. #define CONFIG_EXTRA_ENV_SETTINGS \
  90. "netdev=eth0\0" \
  91. "netmask=255.255.0.0\0" \
  92. "ipaddr=192.168.160.33\0" \
  93. "serverip=192.168.1.1\0" \
  94. "gatewayip=192.168.1.1\0" \
  95. "console=ttyPSC0\0" \
  96. "u-boot_addr=100000\0" \
  97. "kernel_addr=200000\0" \
  98. "kernel_addr_flash=fc0c0000\0" \
  99. "fdt_addr=400000\0" \
  100. "fdt_addr_flash=fc0a0000\0" \
  101. "ramdisk_addr=500000\0" \
  102. "rootpath=/opt/eldk-4.1/ppc_6xx\0" \
  103. "u-boot=/tftpboot/cm5200/u-boot.bin\0" \
  104. "bootfile_fdt=/tftpboot/cm5200/uImage\0" \
  105. "fdt_file=/tftpboot/cm5200/cm5200.dtb\0" \
  106. "load=tftp ${u-boot_addr} ${u-boot}\0" \
  107. "update=prot off fc000000 +${filesize}; " \
  108. "era fc000000 +${filesize}; " \
  109. "cp.b ${u-boot_addr} fc000000 ${filesize}; " \
  110. "prot on fc000000 +${filesize}\0" \
  111. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  112. "nfsroot=${serverip}:${rootpath}\0" \
  113. "flashargs=setenv bootargs root=/dev/mtdblock5 rw\0" \
  114. "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
  115. "addinit=setenv bootargs ${bootargs} init=/linuxrc\0" \
  116. "addcons=setenv bootargs ${bootargs} " \
  117. "console=${console},${baudrate}\0" \
  118. "addip=setenv bootargs ${bootargs} " \
  119. "ip=${ipaddr}:${serverip}:${gatewayip}:" \
  120. "${netmask}:${hostname}:${netdev}:off panic=1\0" \
  121. "flash_flash=run flashargs addinit addip addcons;" \
  122. "bootm ${kernel_addr_flash} - ${fdt_addr_flash}\0" \
  123. "net_nfs_fdt=tftp ${kernel_addr} ${bootfile_fdt}; " \
  124. "tftp ${fdt_addr} ${fdt_file}; run nfsargs addip " \
  125. "addcons; bootm ${kernel_addr} - ${fdt_addr}\0" \
  126. ""
  127. #define CONFIG_BOOTCOMMAND "run flash_flash"
  128. /*
  129. * Low level configuration
  130. */
  131. /*
  132. * Clock configuration
  133. */
  134. #define CFG_MPC5XXX_CLKIN 33000000 /* SYS_XTAL_IN = 33MHz */
  135. #define CFG_IPBCLK_EQUALS_XLBCLK 1 /* IPB = 133MHz */
  136. /*
  137. * Memory map
  138. */
  139. #define CFG_MBAR 0xF0000000
  140. #define CFG_SDRAM_BASE 0x00000000
  141. #define CFG_DEFAULT_MBAR 0x80000000
  142. #define CFG_LOWBOOT 1
  143. /* Use ON-Chip SRAM until RAM will be available */
  144. #define CFG_INIT_RAM_ADDR MPC5XXX_SRAM
  145. #ifdef CONFIG_POST
  146. /* preserve space for the post_word at end of on-chip SRAM */
  147. #define CFG_INIT_RAM_END MPC5XXX_SRAM_POST_SIZE
  148. #else
  149. #define CFG_INIT_RAM_END MPC5XXX_SRAM_SIZE
  150. #endif
  151. #define CFG_GBL_DATA_SIZE 128 /* size in bytes for initial data */
  152. #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
  153. #define CONFIG_BOARD_TYPES 1 /* we use board_type */
  154. #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
  155. #define CFG_MONITOR_BASE TEXT_BASE
  156. #define CFG_MONITOR_LEN (384 << 10) /* 384 kB for Monitor */
  157. #define CFG_MALLOC_LEN (256 << 10) /* 256 kB for malloc() */
  158. #define CFG_BOOTMAPSZ (8 << 20) /* initial mem map for Linux */
  159. /*
  160. * Flash configuration
  161. */
  162. #define CFG_FLASH_CFI 1
  163. #define CFG_FLASH_CFI_DRIVER 1
  164. #define CFG_FLASH_BASE 0xfc000000
  165. /* we need these despite using CFI */
  166. #define CFG_MAX_FLASH_BANKS 1 /* max num of flash banks */
  167. #define CFG_MAX_FLASH_SECT 256 /* max num of sectors on one chip */
  168. #define CFG_FLASH_SIZE 0x02000000 /* 32 MiB */
  169. #if (CFG_MONITOR_BASE < CFG_FLASH_BASE)
  170. #define CFG_RAMBOOT 1
  171. #undef CFG_LOWBOOT
  172. #endif
  173. /*
  174. * Chip selects configuration
  175. */
  176. /* Boot Chipselect */
  177. #define CFG_BOOTCS_START CFG_FLASH_BASE
  178. #define CFG_BOOTCS_SIZE CFG_FLASH_SIZE
  179. #define CFG_BOOTCS_CFG 0x00087D31 /* for pci_clk = 33 MHz */
  180. /* use board_early_init_r to enable flash write in CS_BOOT */
  181. #define CONFIG_BOARD_EARLY_INIT_R
  182. /* Flash memory addressing */
  183. #define CFG_CS0_START CFG_FLASH_BASE
  184. #define CFG_CS0_SIZE CFG_FLASH_SIZE
  185. /* No burst, dead cycle = 1 for CS0 (Flash) */
  186. #define CFG_CS_BURST 0x00000000
  187. #define CFG_CS_DEADCYCLE 0x00000001
  188. /*
  189. * SDRAM configuration
  190. * settings for k4s561632E-xx75, assuming XLB = 132 MHz
  191. */
  192. #define SDRAM_MODE 0x00CD0000 /* CASL 3, burst length 8 */
  193. #define SDRAM_CONTROL 0x514F0000
  194. #define SDRAM_CONFIG1 0xE2333900
  195. #define SDRAM_CONFIG2 0x8EE70000
  196. /*
  197. * MTD configuration
  198. */
  199. #define CONFIG_JFFS2_CMDLINE 1
  200. #define MTDIDS_DEFAULT "nor0=cm5200-0"
  201. #define MTDPARTS_DEFAULT "mtdparts=cm5200-0:" \
  202. "384k(uboot),128k(env)," \
  203. "128k(redund_env),128k(dtb)," \
  204. "2m(kernel),27904k(rootfs)," \
  205. "-(config)"
  206. /*
  207. * I2C configuration
  208. */
  209. #define CONFIG_HARD_I2C 1 /* I2C with hardware support */
  210. #define CFG_I2C_MODULE 2 /* Select I2C module #2 */
  211. #define CFG_I2C_SPEED 40000 /* 40 kHz */
  212. #define CFG_I2C_SLAVE 0x0
  213. #define CFG_I2C_IO 0x38 /* PCA9554AD I2C I/O port address */
  214. #define CFG_I2C_EEPROM 0x53 /* I2C EEPROM device address */
  215. /*
  216. * RTC configuration
  217. */
  218. #define CONFIG_RTC_MPC5200 1 /* use internal MPC5200 RTC */
  219. /*
  220. * USB configuration
  221. */
  222. #define CONFIG_USB_OHCI 1
  223. #define CONFIG_USB_STORAGE 1
  224. #define CONFIG_USB_CLOCK 0x0001BBBB
  225. #define CONFIG_USB_CONFIG 0x00001000
  226. /* Partitions (for USB) */
  227. #define CONFIG_MAC_PARTITION 1
  228. #define CONFIG_DOS_PARTITION 1
  229. #define CONFIG_ISO_PARTITION 1
  230. /*
  231. * Invoke our last_stage_init function - needed by fwupdate
  232. */
  233. #define CONFIG_LAST_STAGE_INIT 1
  234. /*
  235. * Environment settings
  236. */
  237. #define CFG_ENV_IS_IN_FLASH 1
  238. #define CFG_ENV_SIZE 0x10000
  239. #define CFG_ENV_SECT_SIZE 0x20000
  240. #define CFG_ENV_ADDR (CFG_FLASH_BASE + CFG_MONITOR_LEN)
  241. /* Configuration of redundant environment */
  242. #define CFG_ENV_ADDR_REDUND (CFG_ENV_ADDR + CFG_ENV_SECT_SIZE)
  243. #define CFG_ENV_SIZE_REDUND (CFG_ENV_SIZE)
  244. /*
  245. * Pin multiplexing configuration
  246. */
  247. /*
  248. * CS1/GPIO_WKUP_6: GPIO (default)
  249. * ALTs: CAN1 on I2C1, CAN2 on TIMER0/1
  250. * IRDA/PSC6: UART
  251. * Ether: Ethernet 100Mbit with MD
  252. * PCI_DIS: PCI controller disabled
  253. * USB: USB
  254. * PSC3: SPI with UART3
  255. * PSC2: UART
  256. * PSC1: UART
  257. */
  258. #define CFG_GPS_PORT_CONFIG 0x10559C44
  259. /*
  260. * Miscellaneous configurable options
  261. */
  262. #define CFG_LONGHELP 1 /* undef to save memory */
  263. #define CFG_PROMPT "=> " /* Monitor Command Prompt */
  264. #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
  265. #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
  266. #define CFG_MAXARGS 16 /* max number of command args */
  267. #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
  268. #define CFG_ALT_MEMTEST 1
  269. #define CFG_MEMTEST_START 0x00100000 /* memtest works on */
  270. #define CFG_MEMTEST_END 0x03f00000 /* 1 .. 63 MiB in SDRAM */
  271. #define CONFIG_LOOPW 1
  272. #define CFG_LOAD_ADDR 0x100000 /* default load address */
  273. #define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */
  274. /*
  275. * Various low-level settings
  276. */
  277. #define CFG_HID0_INIT HID0_ICE | HID0_ICFI
  278. #define CFG_HID0_FINAL HID0_ICE
  279. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  280. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  281. #define CFG_XLB_PIPELINING 1 /* enable transaction pipeling */
  282. /*
  283. * Cache Configuration
  284. */
  285. #define CFG_CACHELINE_SIZE 32 /* For MPC5xxx CPUs */
  286. #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
  287. #define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */
  288. #endif
  289. /*
  290. * Flat Device Tree support
  291. */
  292. #define CONFIG_OF_LIBFDT 1
  293. #define CONFIG_OF_BOARD_SETUP 1
  294. #define OF_CPU "PowerPC,5200@0"
  295. #define OF_SOC "soc5200@f0000000"
  296. #define OF_TBCLK (bd->bi_busfreq / 4)
  297. #define OF_STDOUT_PATH "/soc5200@f0000000/serial@2000"
  298. #endif /* __CONFIG_H */