km83xx-common.h 9.6 KB

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