tricorder.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /*
  2. * (C) Copyright 2006-2008
  3. * Texas Instruments.
  4. * Richard Woodruff <r-woodruff2@ti.com>
  5. * Syed Mohammed Khasim <x0khasim@ti.com>
  6. *
  7. * (C) Copyright 2012
  8. * Corscience GmbH & Co. KG
  9. * Thomas Weber <weber@corscience.de>
  10. *
  11. * Configuration settings for the Tricorder board.
  12. *
  13. * See file CREDITS for list of people who contributed to this
  14. * project.
  15. *
  16. * This program is free software; you can redistribute it and/or
  17. * modify it under the terms of the GNU General Public License as
  18. * published by the Free Software Foundation; either version 2 of
  19. * the License, or (at your option) any later version.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program; if not, write to the Free Software
  28. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  29. * MA 02111-1307 USA
  30. */
  31. #ifndef __CONFIG_H
  32. #define __CONFIG_H
  33. /* High Level Configuration Options */
  34. #define CONFIG_OMAP /* in a TI OMAP core */
  35. #define CONFIG_OMAP34XX /* which is a 34XX */
  36. #define CONFIG_MACH_TYPE MACH_TYPE_TRICORDER
  37. /*
  38. * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
  39. * 64 bytes before this address should be set aside for u-boot.img's
  40. * header. That is 0x800FFFC0--0x80100000 should not be used for any
  41. * other needs.
  42. */
  43. #define CONFIG_SYS_TEXT_BASE 0x80100000
  44. #define CONFIG_SDRC /* The chip has SDRC controller */
  45. #include <asm/arch/cpu.h> /* get chip and board defs */
  46. #include <asm/arch/omap3.h>
  47. /* Display CPU and Board information */
  48. #define CONFIG_DISPLAY_CPUINFO
  49. #define CONFIG_DISPLAY_BOARDINFO
  50. /* Clock Defines */
  51. #define V_OSCK 26000000 /* Clock output from T2 */
  52. #define V_SCLK (V_OSCK >> 1)
  53. #undef CONFIG_USE_IRQ /* no support for IRQs */
  54. #define CONFIG_MISC_INIT_R
  55. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  56. #define CONFIG_SETUP_MEMORY_TAGS
  57. #define CONFIG_INITRD_TAG
  58. #define CONFIG_REVISION_TAG
  59. #define CONFIG_OF_LIBFDT
  60. /* Size of malloc() pool */
  61. #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
  62. /* Sector */
  63. #define CONFIG_SYS_MALLOC_LEN (1024*1024)
  64. /* Hardware drivers */
  65. /* NS16550 Configuration */
  66. #define CONFIG_SYS_NS16550
  67. #define CONFIG_SYS_NS16550_SERIAL
  68. #define CONFIG_SYS_NS16550_REG_SIZE (-4)
  69. #define CONFIG_SYS_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
  70. /* select serial console configuration */
  71. #define CONFIG_CONS_INDEX 3
  72. #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
  73. #define CONFIG_SERIAL3 3
  74. #define CONFIG_BAUDRATE 115200
  75. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  76. 115200}
  77. /* MMC */
  78. #define CONFIG_GENERIC_MMC
  79. #define CONFIG_MMC
  80. #define CONFIG_OMAP_HSMMC
  81. #define CONFIG_DOS_PARTITION
  82. /* I2C */
  83. #define CONFIG_HARD_I2C
  84. #define CONFIG_SYS_I2C_SPEED 100000
  85. #define CONFIG_SYS_I2C_SLAVE 1
  86. #define CONFIG_SYS_I2C_BUS 0
  87. #define CONFIG_SYS_I2C_BUS_SELECT 1
  88. #define CONFIG_DRIVER_OMAP34XX_I2C 1
  89. /* TWL4030 */
  90. #define CONFIG_TWL4030_POWER
  91. #define CONFIG_TWL4030_LED
  92. /* Board NAND Info */
  93. #define CONFIG_SYS_NO_FLASH /* no NOR flash */
  94. #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
  95. #define MTDIDS_DEFAULT "nand0=nand"
  96. #define MTDPARTS_DEFAULT "mtdparts=nand:" \
  97. "512k(u-boot-spl)," \
  98. "1920k(u-boot)," \
  99. "128k(u-boot-env)," \
  100. "4m(kernel)," \
  101. "-(fs)"
  102. #define CONFIG_NAND_OMAP_GPMC
  103. #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
  104. /* to access nand */
  105. #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
  106. /* to access nand at */
  107. /* CS0 */
  108. #define GPMC_NAND_ECC_LP_x16_LAYOUT 1
  109. #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND */
  110. /* devices */
  111. /* commands to include */
  112. #include <config_cmd_default.h>
  113. #define CONFIG_CMD_EXT2 /* EXT2 Support */
  114. #define CONFIG_CMD_FAT /* FAT support */
  115. #define CONFIG_CMD_I2C /* I2C serial bus support */
  116. #define CONFIG_CMD_MMC /* MMC support */
  117. #define CONFIG_CMD_MTDPARTS /* Enable MTD parts commands */
  118. #define CONFIG_CMD_NAND /* NAND support */
  119. #define CONFIG_CMD_NAND_LOCK_UNLOCK /* nand (un)lock commands */
  120. #define CONFIG_CMD_UBI /* UBI commands */
  121. #define CONFIG_CMD_UBIFS /* UBIFS commands */
  122. #define CONFIG_LZO /* LZO is needed for UBIFS */
  123. #undef CONFIG_CMD_NET
  124. #undef CONFIG_CMD_NFS
  125. #undef CONFIG_CMD_FPGA /* FPGA configuration Support */
  126. #undef CONFIG_CMD_IMI /* iminfo */
  127. #undef CONFIG_CMD_JFFS2 /* JFFS2 Support */
  128. /* needed for ubi */
  129. #define CONFIG_RBTREE
  130. #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
  131. #define CONFIG_MTD_PARTITIONS
  132. /* Environment information */
  133. #define CONFIG_ENV_OVERWRITE /* allow to overwrite serial and ethaddr */
  134. #define CONFIG_BOOTDELAY 3
  135. #define CONFIG_EXTRA_ENV_SETTINGS \
  136. "loadaddr=0x82000000\0" \
  137. "console=ttyO2,115200n8\0" \
  138. "mmcdev=0\0" \
  139. "vram=12M\0" \
  140. "lcdmode=800x600\0" \
  141. "defaultdisplay=lcd\0" \
  142. "kernelopts=rw rootwait\0" \
  143. "commonargs=" \
  144. "setenv bootargs console=${console} " \
  145. "vram=${vram} " \
  146. "omapfb.mode=lcd:${lcdmode} " \
  147. "omapdss.def_disp=${defaultdisplay}\0" \
  148. "mmcargs=" \
  149. "run commonargs; " \
  150. "setenv bootargs ${bootargs} " \
  151. "root=/dev/mmcblk0p2 " \
  152. "${kernelopts}\0" \
  153. "nandargs=" \
  154. "run commonargs; " \
  155. "setenv bootargs ${bootargs} " \
  156. "omapfb.mode=lcd:${lcdmode} " \
  157. "omapdss.def_disp=${defaultdisplay} " \
  158. "root=ubi0:root " \
  159. "ubi.mtd=4 " \
  160. "rootfstype=ubifs " \
  161. "${kernelopts}\0" \
  162. "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
  163. "bootscript=echo Running bootscript from mmc ...; " \
  164. "source ${loadaddr}\0" \
  165. "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
  166. "eraseenv=nand unlock 0x260000 0x20000; nand erase 0x260000 0x20000\0" \
  167. "mmcboot=echo Booting from mmc ...; " \
  168. "run mmcargs; " \
  169. "bootm ${loadaddr}\0" \
  170. "loaduimage_ubi=mtd default; " \
  171. "ubi part fs; " \
  172. "ubifsmount root; " \
  173. "ubifsload ${loadaddr} /boot/uImage\0" \
  174. "nandboot=echo Booting from nand ...; " \
  175. "run nandargs; " \
  176. "run loaduimage_ubi; " \
  177. "bootm ${loadaddr}\0" \
  178. "autoboot=if mmc rescan ${mmcdev}; then " \
  179. "if run loadbootscript; then " \
  180. "run bootscript; " \
  181. "else " \
  182. "if run loaduimage; then " \
  183. "run mmcboot; " \
  184. "else run nandboot; " \
  185. "fi; " \
  186. "fi; " \
  187. "else run nandboot; fi\0"
  188. #define CONFIG_BOOTCOMMAND "run autoboot"
  189. /* Miscellaneous configurable options */
  190. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  191. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  192. #define CONFIG_AUTO_COMPLETE
  193. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  194. #define CONFIG_SYS_PROMPT "OMAP3 Tricorder # "
  195. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  196. /* Print Buffer Size */
  197. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  198. sizeof(CONFIG_SYS_PROMPT) + 16)
  199. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  200. /* Boot Argument Buffer Size */
  201. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  202. #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0 + 0x07000000)
  203. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + \
  204. 0x01000000) /* 16MB */
  205. #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0 + 0x02000000)
  206. /*
  207. * OMAP3 has 12 GP timers, they can be driven by the system clock
  208. * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
  209. * This rate is divided by a local divisor.
  210. */
  211. #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
  212. #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
  213. #define CONFIG_SYS_HZ 1000
  214. /* The stack sizes are set up in start.S using the settings below */
  215. #define CONFIG_STACKSIZE (128 << 10) /* regular stack 128 KiB */
  216. /* Physical Memory Map */
  217. #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
  218. #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
  219. #define PHYS_SDRAM_1_SIZE (128 << 20) /* at least 128 MiB */
  220. #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
  221. /* NAND and environment organization */
  222. #define PISMO1_NAND_SIZE GPMC_SIZE_128M
  223. #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
  224. #define CONFIG_ENV_IS_IN_NAND 1
  225. #define CONFIG_ENV_OFFSET 0x260000 /* environment starts here */
  226. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  227. #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
  228. #define CONFIG_SYS_INIT_RAM_SIZE 0x800
  229. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  230. CONFIG_SYS_INIT_RAM_SIZE - \
  231. GENERATED_GBL_DATA_SIZE)
  232. /* SRAM config */
  233. #define CONFIG_SYS_SRAM_START 0x40200000
  234. #define CONFIG_SYS_SRAM_SIZE 0x10000
  235. /* Defines for SPL */
  236. #define CONFIG_SPL
  237. #define CONFIG_SPL_NAND_SIMPLE
  238. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  239. #define CONFIG_SPL_LIBDISK_SUPPORT
  240. #define CONFIG_SPL_I2C_SUPPORT
  241. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  242. #define CONFIG_SPL_SERIAL_SUPPORT
  243. #define CONFIG_SPL_POWER_SUPPORT
  244. #define CONFIG_SPL_NAND_SUPPORT
  245. #define CONFIG_SPL_MMC_SUPPORT
  246. #define CONFIG_SPL_FAT_SUPPORT
  247. #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds"
  248. #define CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME "u-boot.img"
  249. #define CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION 1
  250. #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */
  251. #define CONFIG_SPL_TEXT_BASE 0x40200000 /*CONFIG_SYS_SRAM_START*/
  252. #define CONFIG_SPL_MAX_SIZE (54 * 1024) /* 8 KB for stack */
  253. #define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK
  254. #define CONFIG_SPL_BSS_START_ADDR 0x80000000 /*CONFIG_SYS_SDRAM_BASE*/
  255. #define CONFIG_SPL_BSS_MAX_SIZE 0x80000
  256. /* NAND boot config */
  257. #define CONFIG_SYS_NAND_5_ADDR_CYCLE
  258. #define CONFIG_SYS_NAND_PAGE_COUNT 64
  259. #define CONFIG_SYS_NAND_PAGE_SIZE 2048
  260. #define CONFIG_SYS_NAND_OOBSIZE 64
  261. #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
  262. #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
  263. #define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
  264. 10, 11, 12, 13}
  265. #define CONFIG_SYS_NAND_ECCSIZE 512
  266. #define CONFIG_SYS_NAND_ECCBYTES 3
  267. #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
  268. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
  269. #define CONFIG_SYS_NAND_U_BOOT_SIZE 0x200000
  270. #define CONFIG_SYS_SPL_MALLOC_START 0x80208000
  271. #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 /* 1 MB */
  272. #endif /* __CONFIG_H */