km83xx-common.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /*
  2. * (C) Copyright 2010
  3. * Heiko Schocher, DENX Software Engineering, hs@denx.de.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or (at your option) any later version.
  9. */
  10. #ifndef __CONFIG_KM83XX_H
  11. #define __CONFIG_KM83XX_H
  12. /* include common defines/options for all Keymile boards */
  13. #include "keymile-common.h"
  14. #include "km-powerpc.h"
  15. #define MTDIDS_DEFAULT "nor0=boot"
  16. #define MTDPARTS_DEFAULT "mtdparts=" \
  17. "boot:" \
  18. "768k(u-boot)," \
  19. "128k(env)," \
  20. "128k(envred)," \
  21. "-(" CONFIG_KM_UBI_PARTITION_NAME ")"
  22. #define CONFIG_MISC_INIT_R
  23. /*
  24. * System Clock Setup
  25. */
  26. #define CONFIG_83XX_CLKIN 66000000
  27. #define CONFIG_SYS_CLK_FREQ 66000000
  28. #define CONFIG_83XX_PCICLK 66000000
  29. /*
  30. * IMMR new address
  31. */
  32. #define CONFIG_SYS_IMMR 0xE0000000
  33. /*
  34. * Bus Arbitration Configuration Register (ACR)
  35. */
  36. #define CONFIG_SYS_ACR_PIPE_DEP 3 /* pipeline depth 4 transactions */
  37. #define CONFIG_SYS_ACR_RPTCNT 3 /* 4 consecutive transactions */
  38. #define CONFIG_SYS_ACR_APARK 0 /* park bus to master (below) */
  39. #define CONFIG_SYS_ACR_PARKM 3 /* parking master = QuiccEngine */
  40. /*
  41. * DDR Setup
  42. */
  43. #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */
  44. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
  45. #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
  46. #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN | \
  47. DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
  48. #define CFG_83XX_DDR_USES_CS0
  49. /*
  50. * Manually set up DDR parameters
  51. */
  52. #define CONFIG_DDR_II
  53. #define CONFIG_SYS_DDR_SIZE 2048 /* MB */
  54. /*
  55. * The reserved memory
  56. */
  57. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
  58. #define CONFIG_SYS_FLASH_BASE 0xF0000000
  59. #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
  60. #define CONFIG_SYS_RAMBOOT
  61. #endif
  62. /* Reserve 768 kB for Mon */
  63. #define CONFIG_SYS_MONITOR_LEN (768 * 1024)
  64. /*
  65. * Initial RAM Base Address Setup
  66. */
  67. #define CONFIG_SYS_INIT_RAM_LOCK
  68. #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
  69. #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* End of used area in RAM */
  70. #define CONFIG_SYS_GBL_DATA_SIZE 0x100 /* num bytes initial data */
  71. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \
  72. GENERATED_GBL_DATA_SIZE)
  73. /*
  74. * Init Local Bus Memory Controller:
  75. *
  76. * Bank Bus Machine PortSz Size Device
  77. * ---- --- ------- ------ ----- ------
  78. * 0 Local GPCM 16 bit 256MB FLASH
  79. * 1 Local GPCM 8 bit 128MB GPIO/PIGGY
  80. *
  81. */
  82. /*
  83. * FLASH on the Local Bus
  84. */
  85. #define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */
  86. #define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */
  87. #define CONFIG_SYS_FLASH_SIZE 256 /* max FLASH size is 256M */
  88. #define CONFIG_SYS_FLASH_PROTECTION
  89. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
  90. #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE
  91. #define CONFIG_SYS_LBLAWAR0_PRELIM 0x8000001b /* 256MB window size */
  92. #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | \
  93. (2 << BR_PS_SHIFT) | /* 16 bit port size */ \
  94. BR_V)
  95. #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) | \
  96. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  97. OR_GPCM_SCY_5 | \
  98. OR_GPCM_TRLX | OR_GPCM_EAD)
  99. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max num of flash banks */
  100. #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max num of sects on one chip */
  101. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
  102. /*
  103. * PRIO1/PIGGY on the local bus CS1
  104. */
  105. /* Window base at flash base */
  106. #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_KMBEC_FPGA_BASE
  107. #define CONFIG_SYS_LBLAWAR1_PRELIM 0x8000001A /* 128MB window size */
  108. #define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_KMBEC_FPGA_BASE | \
  109. (1 << BR_PS_SHIFT) | /* 8 bit port size */ \
  110. BR_V)
  111. #define CONFIG_SYS_OR1_PRELIM (MEG_TO_AM(CONFIG_SYS_KMBEC_FPGA_SIZE) | \
  112. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  113. OR_GPCM_SCY_2 | \
  114. OR_GPCM_TRLX | OR_GPCM_EAD)
  115. /*
  116. * Serial Port
  117. */
  118. #define CONFIG_CONS_INDEX 1
  119. #define CONFIG_SYS_NS16550
  120. #define CONFIG_SYS_NS16550_SERIAL
  121. #define CONFIG_SYS_NS16550_REG_SIZE 1
  122. #define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
  123. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
  124. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
  125. /* Pass open firmware flat tree */
  126. #define CONFIG_OF_LIBFDT
  127. #define CONFIG_OF_BOARD_SETUP
  128. #define CONFIG_OF_STDOUT_VIA_ALIAS
  129. #ifndef CONFIG_NET_MULTI
  130. #define CONFIG_NET_MULTI
  131. #endif
  132. /*
  133. * QE UEC ethernet configuration
  134. */
  135. #define CONFIG_UEC_ETH
  136. #define CONFIG_ETHPRIME "UEC0"
  137. #define CONFIG_UEC_ETH1 /* GETH1 */
  138. #define UEC_VERBOSE_DEBUG 1
  139. #ifdef CONFIG_UEC_ETH1
  140. #define CONFIG_SYS_UEC1_UCC_NUM 3 /* UCC4 */
  141. #define CONFIG_SYS_UEC1_RX_CLK QE_CLK_NONE /* not used in RMII Mode */
  142. #define CONFIG_SYS_UEC1_TX_CLK QE_CLK17
  143. #define CONFIG_SYS_UEC1_ETH_TYPE FAST_ETH
  144. #define CONFIG_SYS_UEC1_PHY_ADDR 0
  145. #define CONFIG_SYS_UEC1_INTERFACE_TYPE PHY_INTERFACE_MODE_RMII
  146. #define CONFIG_SYS_UEC1_INTERFACE_SPEED 100
  147. #endif
  148. /*
  149. * Environment
  150. */
  151. #ifndef CONFIG_SYS_RAMBOOT
  152. #define CONFIG_ENV_IS_IN_FLASH
  153. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + \
  154. CONFIG_SYS_MONITOR_LEN)
  155. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */
  156. #define CONFIG_ENV_OFFSET (CONFIG_SYS_MONITOR_LEN)
  157. /* Address and size of Redundant Environment Sector */
  158. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
  159. CONFIG_ENV_SECT_SIZE)
  160. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  161. #else /* CFG_SYS_RAMBOOT */
  162. #define CONFIG_SYS_NO_FLASH /* Flash is not usable now */
  163. #define CONFIG_ENV_IS_NOWHERE /* Store ENV in memory only */
  164. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
  165. #define CONFIG_ENV_SIZE 0x2000
  166. #endif /* CFG_SYS_RAMBOOT */
  167. /* I2C */
  168. #define CONFIG_HARD_I2C /* I2C with hardware support */
  169. #define CONFIG_FSL_I2C
  170. #define CONFIG_SYS_I2C_SPEED 200000 /* I2C speed and slave address */
  171. #define CONFIG_SYS_I2C_SLAVE 0x7F
  172. #define CONFIG_SYS_I2C_OFFSET 0x3000
  173. /* I2C SYSMON (LM75, AD7414 is almost compatible) */
  174. #define CONFIG_DTT_LM75 /* ON Semi's LM75 */
  175. #define CONFIG_DTT_SENSORS {0, 1, 2, 3} /* Sensor addresses */
  176. #define CONFIG_SYS_DTT_MAX_TEMP 70
  177. #define CONFIG_SYS_DTT_LOW_TEMP -30
  178. #define CONFIG_SYS_DTT_HYSTERESIS 3
  179. #define CONFIG_SYS_DTT_BUS_NUM (CONFIG_SYS_MAX_I2C_BUS)
  180. #if defined(CONFIG_CMD_NAND)
  181. #define CONFIG_NAND_KMETER1
  182. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  183. #define CONFIG_SYS_NAND_BASE CONFIG_SYS_KMBEC_FPGA_BASE
  184. #endif
  185. #if defined(CONFIG_PCI)
  186. #define CONFIG_CMD_PCI
  187. #endif
  188. /*
  189. * For booting Linux, the board info and command line data
  190. * have to be in the first 8 MB of memory, since this is
  191. * the maximum mapped by the Linux kernel during initialization.
  192. */
  193. #define CONFIG_SYS_BOOTMAPSZ (8 << 20)
  194. /*
  195. * Core HID Setup
  196. */
  197. #define CONFIG_SYS_HID0_INIT 0x000000000
  198. #define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
  199. HID0_ENABLE_INSTRUCTION_CACHE)
  200. #define CONFIG_SYS_HID2 HID2_HBE
  201. /*
  202. * MMU Setup
  203. */
  204. #define CONFIG_HIGH_BATS 1 /* High BATs supported */
  205. /* DDR: cache cacheable */
  206. #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | \
  207. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  208. #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | \
  209. BATU_VS | BATU_VP)
  210. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
  211. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
  212. /* IMMRBAR & PCI IO: cache-inhibit and guarded */
  213. #define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR | BATL_PP_10 | \
  214. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  215. #define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR | BATU_BL_4M | BATU_VS \
  216. | BATU_VP)
  217. #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
  218. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  219. /* PRIO1, PIGGY: icache cacheable, but dcache-inhibit and guarded */
  220. #define CONFIG_SYS_IBAT2L (CONFIG_SYS_KMBEC_FPGA_BASE | BATL_PP_10 | \
  221. BATL_MEMCOHERENCE)
  222. #define CONFIG_SYS_IBAT2U (CONFIG_SYS_KMBEC_FPGA_BASE | BATU_BL_128M | \
  223. BATU_VS | BATU_VP)
  224. #define CONFIG_SYS_DBAT2L (CONFIG_SYS_KMBEC_FPGA_BASE | BATL_PP_10 | \
  225. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  226. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  227. /* FLASH: icache cacheable, but dcache-inhibit and guarded */
  228. #define CONFIG_SYS_IBAT3L (CONFIG_SYS_FLASH_BASE | BATL_PP_10 | \
  229. BATL_MEMCOHERENCE)
  230. #define CONFIG_SYS_IBAT3U (CONFIG_SYS_FLASH_BASE | BATU_BL_256M | \
  231. BATU_VS | BATU_VP)
  232. #define CONFIG_SYS_DBAT3L (CONFIG_SYS_FLASH_BASE | BATL_PP_10 | \
  233. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  234. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  235. /* Stack in dcache: cacheable, no memory coherence */
  236. #define CONFIG_SYS_IBAT4L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_10)
  237. #define CONFIG_SYS_IBAT4U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_128K | \
  238. BATU_VS | BATU_VP)
  239. #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L
  240. #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
  241. /*
  242. * Internal Definitions
  243. */
  244. #define BOOTFLASH_START 0xF0000000
  245. #define CONFIG_KM_CONSOLE_TTY "ttyS0"
  246. /*
  247. * Environment Configuration
  248. */
  249. #define CONFIG_ENV_OVERWRITE
  250. #ifndef CONFIG_KM_DEF_ENV /* if not set by keymile-common.h */
  251. #define CONFIG_KM_DEF_ENV "km-common=empty\0"
  252. #endif
  253. #ifndef CONFIG_KM_DEF_ARCH
  254. #define CONFIG_KM_DEF_ARCH "arch=ppc_82xx\0"
  255. #endif
  256. #define CONFIG_EXTRA_ENV_SETTINGS \
  257. CONFIG_KM_DEF_ENV \
  258. CONFIG_KM_DEF_ARCH \
  259. "dtt_bus=pca9547:70:a\0" \
  260. "EEprom_ivm=pca9547:70:9\0" \
  261. "newenv=" \
  262. "prot off 0xF00C0000 +0x40000 && " \
  263. "era 0xF00C0000 +0x40000\0" \
  264. "unlock=yes\0" \
  265. ""
  266. #if defined(CONFIG_UEC_ETH)
  267. #define CONFIG_HAS_ETH0
  268. #endif
  269. #endif /* __CONFIG_KM83XX_H */