am335x_evm.h 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /*
  2. * am335x_evm.h
  3. *
  4. * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation version 2.
  9. *
  10. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
  11. * kind, whether express or implied; without even the implied warranty
  12. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. #ifndef __CONFIG_AM335X_EVM_H
  16. #define __CONFIG_AM335X_EVM_H
  17. #include <configs/ti_am335x_common.h>
  18. #include <linux/sizes.h>
  19. #ifndef CONFIG_SPL_BUILD
  20. # define CONFIG_TIMESTAMP
  21. #endif
  22. #define CONFIG_SYS_BOOTM_LEN SZ_16M
  23. #define CONFIG_MACH_TYPE MACH_TYPE_AM335XEVM
  24. /* Clock Defines */
  25. #define V_OSCK 24000000 /* Clock output from T2 */
  26. #define V_SCLK (V_OSCK)
  27. #ifdef CONFIG_MTD_RAW_NAND
  28. #define NANDARGS \
  29. "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
  30. "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
  31. "nandargs=setenv bootargs console=${console} " \
  32. "${optargs} " \
  33. "root=${nandroot} " \
  34. "rootfstype=${nandrootfstype}\0" \
  35. "nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048\0" \
  36. "nandrootfstype=ubifs rootwait=1\0" \
  37. "nandboot=echo Booting from nand ...; " \
  38. "run nandargs; " \
  39. "nand read ${fdtaddr} NAND.u-boot-spl-os; " \
  40. "nand read ${loadaddr} NAND.kernel; " \
  41. "bootz ${loadaddr} - ${fdtaddr}\0"
  42. #else
  43. #define NANDARGS ""
  44. #endif
  45. #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \
  46. "bootcmd_" #devtypel "=" \
  47. "run nandboot\0"
  48. #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
  49. #devtypel #instance " "
  50. #if CONFIG_IS_ENABLED(CMD_USB)
  51. # define BOOT_TARGET_USB(func) func(USB, usb, 0)
  52. #else
  53. # define BOOT_TARGET_USB(func)
  54. #endif
  55. #if CONFIG_IS_ENABLED(CMD_PXE)
  56. # define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
  57. #else
  58. # define BOOT_TARGET_PXE(func)
  59. #endif
  60. #if CONFIG_IS_ENABLED(CMD_DHCP)
  61. # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
  62. #else
  63. # define BOOT_TARGET_DHCP(func)
  64. #endif
  65. #define BOOT_TARGET_DEVICES(func) \
  66. func(MMC, mmc, 0) \
  67. func(MMC, mmc, 1) \
  68. func(NAND, nand, 0) \
  69. BOOT_TARGET_USB(func) \
  70. BOOT_TARGET_PXE(func) \
  71. BOOT_TARGET_DHCP(func)
  72. #include <config_distro_bootcmd.h>
  73. #ifndef CONFIG_SPL_BUILD
  74. #include <environment/ti/dfu.h>
  75. #define CONFIG_EXTRA_ENV_SETTINGS \
  76. DEFAULT_LINUX_BOOT_ENV \
  77. "fdtfile=undefined\0" \
  78. "finduuid=part uuid mmc 0:2 uuid\0" \
  79. "console=ttyO0,115200n8\0" \
  80. "partitions=" \
  81. "uuid_disk=${uuid_gpt_disk};" \
  82. "name=bootloader,start=384K,size=1792K," \
  83. "uuid=${uuid_gpt_bootloader};" \
  84. "name=rootfs,start=2688K,size=-,uuid=${uuid_gpt_rootfs}\0" \
  85. "optargs=\0" \
  86. "ramroot=/dev/ram0 rw\0" \
  87. "ramrootfstype=ext2\0" \
  88. "spiroot=/dev/mtdblock4 rw\0" \
  89. "spirootfstype=jffs2\0" \
  90. "spisrcaddr=0xe0000\0" \
  91. "spiimgsize=0x362000\0" \
  92. "spibusno=0\0" \
  93. "spiargs=setenv bootargs console=${console} " \
  94. "${optargs} " \
  95. "root=${spiroot} " \
  96. "rootfstype=${spirootfstype}\0" \
  97. "ramargs=setenv bootargs console=${console} " \
  98. "${optargs} " \
  99. "root=${ramroot} " \
  100. "rootfstype=${ramrootfstype}\0" \
  101. "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
  102. "spiboot=echo Booting from spi ...; " \
  103. "run spiargs; " \
  104. "sf probe ${spibusno}:0; " \
  105. "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \
  106. "bootz ${loadaddr}\0" \
  107. "ramboot=echo Booting from ramdisk ...; " \
  108. "run ramargs; " \
  109. "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
  110. "findfdt="\
  111. "if test $board_name = A335BONE; then " \
  112. "setenv fdtfile am335x-bone.dtb; fi; " \
  113. "if test $board_name = A335BNLT; then " \
  114. "setenv fdtfile am335x-boneblack.dtb; fi; " \
  115. "if test $board_name = A335PBGL; then " \
  116. "setenv fdtfile am335x-pocketbeagle.dtb; fi; " \
  117. "if test $board_name = BBBW; then " \
  118. "setenv fdtfile am335x-boneblack-wireless.dtb; fi; " \
  119. "if test $board_name = BBG1; then " \
  120. "setenv fdtfile am335x-bonegreen.dtb; fi; " \
  121. "if test $board_name = BBGW; then " \
  122. "setenv fdtfile am335x-bonegreen-wireless.dtb; fi; " \
  123. "if test $board_name = BBBL; then " \
  124. "setenv fdtfile am335x-boneblue.dtb; fi; " \
  125. "if test $board_name = BBEN; then " \
  126. "setenv fdtfile am335x-sancloud-bbe.dtb; fi; " \
  127. "if test $board_name = A33515BB; then " \
  128. "setenv fdtfile am335x-evm.dtb; fi; " \
  129. "if test $board_name = A335X_SK; then " \
  130. "setenv fdtfile am335x-evmsk.dtb; fi; " \
  131. "if test $board_name = A335_ICE; then " \
  132. "setenv fdtfile am335x-icev2.dtb; fi; " \
  133. "if test $fdtfile = undefined; then " \
  134. "echo WARNING: Could not determine device tree to use; fi; \0" \
  135. "init_console=" \
  136. "if test $board_name = A335_ICE; then "\
  137. "setenv console ttyO3,115200n8;" \
  138. "else " \
  139. "setenv console ttyO0,115200n8;" \
  140. "fi;\0" \
  141. NANDARGS \
  142. NETARGS \
  143. DFUARGS \
  144. BOOTENV
  145. #endif
  146. /* NS16550 Configuration */
  147. #define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
  148. #define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
  149. #define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
  150. #define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
  151. #define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
  152. #define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
  153. #define CONFIG_ENV_EEPROM_IS_ON_I2C
  154. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */
  155. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
  156. /* PMIC support */
  157. #define CONFIG_POWER_TPS65217
  158. #define CONFIG_POWER_TPS65910
  159. /* SPL */
  160. #ifndef CONFIG_NOR_BOOT
  161. /* Bootcount using the RTC block */
  162. #define CONFIG_SYS_BOOTCOUNT_BE
  163. /* USB gadget RNDIS */
  164. #endif
  165. #ifdef CONFIG_MTD_RAW_NAND
  166. /* NAND: device related configs */
  167. #define CONFIG_SYS_NAND_5_ADDR_CYCLE
  168. #define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
  169. CONFIG_SYS_NAND_PAGE_SIZE)
  170. #define CONFIG_SYS_NAND_PAGE_SIZE 2048
  171. #define CONFIG_SYS_NAND_OOBSIZE 64
  172. #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
  173. /* NAND: driver related configs */
  174. #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
  175. #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
  176. 10, 11, 12, 13, 14, 15, 16, 17, \
  177. 18, 19, 20, 21, 22, 23, 24, 25, \
  178. 26, 27, 28, 29, 30, 31, 32, 33, \
  179. 34, 35, 36, 37, 38, 39, 40, 41, \
  180. 42, 43, 44, 45, 46, 47, 48, 49, \
  181. 50, 51, 52, 53, 54, 55, 56, 57, }
  182. #define CONFIG_SYS_NAND_ECCSIZE 512
  183. #define CONFIG_SYS_NAND_ECCBYTES 14
  184. #define CONFIG_SYS_NAND_ONFI_DETECTION
  185. #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
  186. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x000c0000
  187. /* NAND: SPL related configs */
  188. #ifdef CONFIG_SPL_OS_BOOT
  189. #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00200000 /* kernel offset */
  190. #endif
  191. #endif /* !CONFIG_MTD_RAW_NAND */
  192. /*
  193. * For NOR boot, we must set this to the start of where NOR is mapped
  194. * in memory.
  195. */
  196. /*
  197. * USB configuration. We enable MUSB support, both for host and for
  198. * gadget. We set USB0 as peripheral and USB1 as host, based on the
  199. * board schematic and physical port wired to each. Then for host we
  200. * add mass storage support and for gadget we add both RNDIS ethernet
  201. * and DFU.
  202. */
  203. #define CONFIG_AM335X_USB0
  204. #define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
  205. #define CONFIG_AM335X_USB1
  206. #define CONFIG_AM335X_USB1_MODE MUSB_HOST
  207. /*
  208. * Disable MMC DM for SPL build and can be re-enabled after adding
  209. * DM support in SPL
  210. */
  211. #ifdef CONFIG_SPL_BUILD
  212. #undef CONFIG_DM_MMC
  213. #undef CONFIG_TIMER
  214. #endif
  215. #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USB_ETHER)
  216. /* Remove other SPL modes. */
  217. /* disable host part of MUSB in SPL */
  218. /* disable EFI partitions and partition UUID support */
  219. #endif
  220. /* USB Device Firmware Update support */
  221. #ifndef CONFIG_SPL_BUILD
  222. #define DFUARGS \
  223. DFU_ALT_INFO_EMMC \
  224. DFU_ALT_INFO_MMC \
  225. DFU_ALT_INFO_RAM \
  226. DFU_ALT_INFO_NAND
  227. #endif
  228. /*
  229. * Default to using SPI for environment, etc.
  230. * 0x000000 - 0x020000 : SPL (128KiB)
  231. * 0x020000 - 0x0A0000 : U-Boot (512KiB)
  232. * 0x0A0000 - 0x0BFFFF : First copy of U-Boot Environment (128KiB)
  233. * 0x0C0000 - 0x0DFFFF : Second copy of U-Boot Environment (128KiB)
  234. * 0x0E0000 - 0x442000 : Linux Kernel
  235. * 0x442000 - 0x800000 : Userland
  236. */
  237. #if defined(CONFIG_SPI_BOOT)
  238. /* SPL related */
  239. #elif defined(CONFIG_EMMC_BOOT)
  240. #define CONFIG_SYS_MMC_MAX_DEVICE 2
  241. #elif defined(CONFIG_ENV_IS_IN_NAND)
  242. #define CONFIG_SYS_ENV_SECT_SIZE CONFIG_SYS_NAND_BLOCK_SIZE
  243. #endif
  244. /* Network. */
  245. /* Enable Atheros phy driver */
  246. /*
  247. * NOR Size = 16 MiB
  248. * Number of Sectors/Blocks = 128
  249. * Sector Size = 128 KiB
  250. * Word length = 16 bits
  251. * Default layout:
  252. * 0x000000 - 0x07FFFF : U-Boot (512 KiB)
  253. * 0x080000 - 0x09FFFF : First copy of U-Boot Environment (128 KiB)
  254. * 0x0A0000 - 0x0BFFFF : Second copy of U-Boot Environment (128 KiB)
  255. * 0x0C0000 - 0x4BFFFF : Linux Kernel (4 MiB)
  256. * 0x4C0000 - 0xFFFFFF : Userland (11 MiB + 256 KiB)
  257. */
  258. #if defined(CONFIG_NOR)
  259. #define CONFIG_SYS_MAX_FLASH_SECT 128
  260. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  261. #define CONFIG_SYS_FLASH_BASE (0x08000000)
  262. #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
  263. #define CONFIG_SYS_FLASH_SIZE 0x01000000
  264. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  265. #endif /* NOR support */
  266. #ifdef CONFIG_DRIVER_TI_CPSW
  267. #define CONFIG_CLOCK_SYNTHESIZER
  268. #define CLK_SYNTHESIZER_I2C_ADDR 0x65
  269. #endif
  270. #endif /* ! __CONFIG_AM335X_EVM_H */