omap3_logic.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /*
  2. * (C) Copyright 2011 Logic Product Development <www.logicpd.com>
  3. * Peter Barada <peter.barada@logicpd.com>
  4. *
  5. * Configuration settings for the Logic OMAP35x/DM37x SOM LV/Torpedo
  6. * reference boards.
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #ifndef __CONFIG_H
  11. #define __CONFIG_H
  12. /* High Level Configuration Options */
  13. #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
  14. #include <configs/ti_omap3_common.h>
  15. #ifdef CONFIG_SPL_BUILD
  16. /*
  17. * Disable MMC DM for SPL build and can be re-enabled after adding
  18. * DM support in SPL
  19. */
  20. #undef CONFIG_DM_MMC
  21. #undef OMAP_HSMMC_USE_GPIO
  22. /* select serial console configuration for SPL */
  23. #undef CONFIG_CONS_INDEX
  24. #define CONFIG_CONS_INDEX 1
  25. #define CONFIG_SYS_NS16550_COM1 OMAP34XX_UART1
  26. #endif
  27. /*
  28. * We are only ever GP parts and will utilize all of the "downloaded image"
  29. * area in SRAM which starts at 0x40200000 and ends at 0x4020FFFF (64KB) in
  30. * order to allow for BCH8 to fit in.
  31. */
  32. #undef CONFIG_SPL_TEXT_BASE
  33. #define CONFIG_SPL_FRAMEWORK
  34. #define CONFIG_SPL_TEXT_BASE 0x40200000
  35. #define CONFIG_MISC_INIT_R /* misc_init_r dumps the die id */
  36. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  37. #define CONFIG_SETUP_MEMORY_TAGS
  38. #define CONFIG_INITRD_TAG
  39. #define CONFIG_REVISION_TAG
  40. /* Hardware drivers */
  41. #define CONFIG_USB_OMAP3
  42. /* I2C */
  43. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* EEPROM AT24C64 */
  44. /* USB */
  45. #define CONFIG_USB_MUSB_OMAP2PLUS
  46. #define CONFIG_USB_MUSB_PIO_ONLY
  47. #define CONFIG_USB_ETHER
  48. #define CONFIG_USB_ETHER_RNDIS
  49. #define CONFIG_USB_FUNCTION_FASTBOOT
  50. #define CONFIG_CMD_FASTBOOT
  51. #define CONFIG_ANDROID_BOOT_IMAGE
  52. #define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR
  53. #define CONFIG_FASTBOOT_BUF_SIZE 0x07000000
  54. /* TWL4030 */
  55. #define CONFIG_TWL4030_USB
  56. /* Board NAND Info. */
  57. #ifdef CONFIG_NAND
  58. #define CONFIG_NAND_OMAP_GPMC
  59. #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
  60. /* to access nand */
  61. #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */
  62. /* NAND devices */
  63. #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
  64. #define CONFIG_SYS_NAND_5_ADDR_CYCLE
  65. #define CONFIG_SYS_NAND_PAGE_COUNT 64
  66. #define CONFIG_SYS_NAND_PAGE_SIZE 2048
  67. #define CONFIG_SYS_NAND_OOBSIZE 64
  68. #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
  69. #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
  70. #define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, \
  71. 13, 14, 16, 17, 18, 19, 20, 21, 22, \
  72. 23, 24, 25, 26, 27, 28, 30, 31, 32, \
  73. 33, 34, 35, 36, 37, 38, 39, 40, 41, \
  74. 42, 44, 45, 46, 47, 48, 49, 50, 51, \
  75. 52, 53, 54, 55, 56}
  76. #define CONFIG_SYS_NAND_ECCSIZE 512
  77. #define CONFIG_SYS_NAND_ECCBYTES 13
  78. #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
  79. #define CONFIG_BCH
  80. #define CONFIG_SYS_NAND_MAX_OOBFREE 2
  81. #define CONFIG_SYS_NAND_MAX_ECCPOS 56
  82. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
  83. #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
  84. #define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
  85. #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
  86. #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:"\
  87. "512k(MLO),"\
  88. "1792k(u-boot),"\
  89. "128k(spl-os)," \
  90. "128k(u-boot-env),"\
  91. "6m(kernel),-(fs)"
  92. #endif
  93. /* Environment information */
  94. #define CONFIG_PREBOOT \
  95. "setenv preboot;" \
  96. "nand unlock;" \
  97. "saveenv;"
  98. #define CONFIG_EXTRA_ENV_SETTINGS \
  99. DEFAULT_LINUX_BOOT_ENV \
  100. "mtdids=" MTDIDS_DEFAULT "\0" \
  101. "mtdparts=" MTDPARTS_DEFAULT "\0" \
  102. "mmcdev=0\0" \
  103. "mmcroot=/dev/mmcblk0p2 rw\0" \
  104. "mmcrootfstype=ext4 rootwait\0" \
  105. "nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \
  106. "nandrootfstype=ubifs rootwait\0" \
  107. "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
  108. "if run loadbootscript; then " \
  109. "run bootscript; " \
  110. "else " \
  111. "run defaultboot;" \
  112. "fi; " \
  113. "else run defaultboot; fi\0" \
  114. "defaultboot=run mmcramboot\0" \
  115. "consoledevice=ttyO0\0" \
  116. "setconsole=setenv console ${consoledevice},${baudrate}n8\0" \
  117. "dump_bootargs=echo 'Bootargs: '; echo $bootargs\0" \
  118. "rotation=0\0" \
  119. "vrfb_arg=if itest ${rotation} -ne 0; then " \
  120. "setenv bootargs ${bootargs} omapfb.vrfb=y " \
  121. "omapfb.rotate=${rotation}; " \
  122. "fi\0" \
  123. "optargs=ignore_loglevel early_printk no_console_suspend\0" \
  124. "common_bootargs=run setconsole; setenv bootargs " \
  125. "${bootargs} "\
  126. "console=${console} " \
  127. "${mtdparts} "\
  128. "${optargs}; " \
  129. "run vrfb_arg\0" \
  130. "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
  131. "bootscript=echo 'Running bootscript from mmc ...'; " \
  132. "source ${loadaddr}\0" \
  133. "loadimage=mmc rescan; " \
  134. "load mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \
  135. "ramdisksize=64000\0" \
  136. "ramdiskimage=rootfs.ext2.gz.uboot\0" \
  137. "loadramdisk=mmc rescan; " \
  138. "load mmc ${mmcdev} ${rdaddr} ${ramdiskimage}\0" \
  139. "ramargs=setenv bootargs "\
  140. "root=/dev/ram rw ramdisk_size=${ramdisksize}\0" \
  141. "mmcargs=setenv bootargs "\
  142. "root=${mmcroot} rootfstype=${mmcrootfstype}\0" \
  143. "nandargs=setenv bootargs "\
  144. "root=${nandroot} " \
  145. "rootfstype=${nandrootfstype}\0" \
  146. "nfsargs=setenv serverip ${tftpserver}; " \
  147. "setenv bootargs root=/dev/nfs " \
  148. "nfsroot=${nfsrootpath} " \
  149. "ip=${ipaddr}:${tftpserver}:${gatewayip}:${netmask}::eth0:off\0" \
  150. "nfsrootpath=/opt/nfs-exports/omap\0" \
  151. "autoload=no\0" \
  152. "loadfdt=mmc rescan; " \
  153. "load mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \
  154. "mmcbootcommon=echo Booting with DT from mmc${mmcdev} ...; " \
  155. "run mmcargs; " \
  156. "run common_bootargs; " \
  157. "run dump_bootargs; " \
  158. "run loadimage; " \
  159. "run loadfdt;\0 " \
  160. "mmcbootz=setenv bootfile zImage; " \
  161. "run mmcbootcommon; "\
  162. "bootz ${loadaddr} - ${fdtaddr}\0" \
  163. "mmcboot=setenv bootfile uImage; "\
  164. "run mmcbootcommon; "\
  165. "bootm ${loadaddr} - ${fdtaddr}\0" \
  166. "mmcrambootcommon=echo 'Booting kernel from MMC w/ramdisk...'; " \
  167. "run ramargs; " \
  168. "run common_bootargs; " \
  169. "run dump_bootargs; " \
  170. "run loadimage; " \
  171. "run loadfdt; " \
  172. "run loadramdisk\0" \
  173. "mmcramboot=setenv bootfile uImage; " \
  174. "run mmcrambootcommon; " \
  175. "bootm ${loadaddr} ${rdaddr} ${fdtimage}\0" \
  176. "mmcrambootz=setenv bootfile zImage; " \
  177. "run mmcrambootcommon; " \
  178. "bootz ${loadaddr} ${rdaddr} ${fdtimage}\0" \
  179. "tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \
  180. "run ramargs; " \
  181. "run common_bootargs; " \
  182. "run dump_bootargs; " \
  183. "tftpboot ${loadaddr} ${zimage}; " \
  184. "tftpboot ${rdaddr} ${ramdiskimage}; " \
  185. "bootm ${loadaddr} ${rdaddr}\0" \
  186. "tftpbootz=echo 'Booting kernel NFS rootfs...'; " \
  187. "dhcp;" \
  188. "run nfsargs;" \
  189. "run common_bootargs;" \
  190. "run dump_bootargs;" \
  191. "tftpboot $loadaddr zImage;" \
  192. "bootz $loadaddr\0" \
  193. "nandbootcommon=echo 'Booting kernel from NAND...';" \
  194. "nand unlock;" \
  195. "run nandargs;" \
  196. "run common_bootargs;" \
  197. "run dump_bootargs;" \
  198. "nand read ${loadaddr} kernel;" \
  199. "nand read ${fdtaddr} spl-os;\0" \
  200. "nandbootz=run nandbootcommon; "\
  201. "bootz ${loadaddr} - ${fdtaddr}\0"\
  202. "nandboot=run nandbootcommon; "\
  203. "bootm ${loadaddr} - ${fdtaddr}\0"\
  204. #define CONFIG_BOOTCOMMAND \
  205. "run autoboot"
  206. /* Miscellaneous configurable options */
  207. /* memtest works on */
  208. #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
  209. #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
  210. 0x01F00000) /* 31MB */
  211. /* FLASH and environment organization */
  212. /* **** PISMO SUPPORT *** */
  213. #if defined(CONFIG_CMD_NAND)
  214. #define CONFIG_SYS_FLASH_BASE NAND_BASE
  215. #endif
  216. /* Monitor at start of flash */
  217. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  218. #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
  219. #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
  220. #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
  221. #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
  222. #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
  223. /* SMSC922x Ethernet */
  224. #if defined(CONFIG_CMD_NET)
  225. #define CONFIG_SMC911X
  226. #define CONFIG_SMC911X_32_BIT
  227. #define CONFIG_SMC911X_BASE 0x08000000
  228. #endif /* (CONFIG_CMD_NET) */
  229. /* Defines for SPL */
  230. #define CONFIG_SPL_OMAP3_ID_NAND
  231. /* NAND: SPL falcon mode configs */
  232. #ifdef CONFIG_SPL_OS_BOOT
  233. #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
  234. #endif
  235. #endif /* __CONFIG_H */