devkit8000.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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 2009
  8. * Frederik Kriewitz <frederik@kriewitz.eu>
  9. *
  10. * Configuration settings for the DevKit8000 board.
  11. *
  12. * See file CREDITS for list of people who contributed to this
  13. * project.
  14. *
  15. * This program is free software; you can redistribute it and/or
  16. * modify it under the terms of the GNU General Public License as
  17. * published by the Free Software Foundation; either version 2 of
  18. * the License, or (at your option) any later version.
  19. *
  20. * This program is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with this program; if not, write to the Free Software
  27. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  28. * MA 02111-1307 USA
  29. */
  30. #ifndef __CONFIG_H
  31. #define __CONFIG_H
  32. /* High Level Configuration Options */
  33. #define CONFIG_OMAP 1 /* in a TI OMAP core */
  34. #define CONFIG_OMAP34XX 1 /* which is a 34XX */
  35. #define CONFIG_OMAP3430 1 /* which is in a 3430 */
  36. #define CONFIG_OMAP3_DEVKIT8000 1 /* working with DevKit8000 */
  37. #define CONFIG_SYS_TEXT_BASE 0x80008000
  38. #define CONFIG_SDRC /* The chip has SDRC controller */
  39. #include <asm/arch/cpu.h> /* get chip and board defs */
  40. #include <asm/arch/omap3.h>
  41. /* Display CPU and Board information */
  42. #define CONFIG_DISPLAY_CPUINFO 1
  43. #define CONFIG_DISPLAY_BOARDINFO 1
  44. /* Clock Defines */
  45. #define V_OSCK 26000000 /* Clock output from T2 */
  46. #define V_SCLK (V_OSCK >> 1)
  47. #undef CONFIG_USE_IRQ /* no support for IRQs */
  48. #define CONFIG_MISC_INIT_R
  49. #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
  50. #define CONFIG_SETUP_MEMORY_TAGS 1
  51. #define CONFIG_INITRD_TAG 1
  52. #define CONFIG_REVISION_TAG 1
  53. #define CONFIG_OF_LIBFDT 1
  54. /* Size of malloc() pool */
  55. #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
  56. /* Sector */
  57. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10))
  58. /* Hardware drivers */
  59. /* DDR - I use Micron DDR */
  60. #define CONFIG_OMAP3_MICRON_DDR 1
  61. /* DM9000 */
  62. #define CONFIG_NET_RETRY_COUNT 20
  63. #define CONFIG_DRIVER_DM9000 1
  64. #define CONFIG_DM9000_BASE 0x2c000000
  65. #define DM9000_IO CONFIG_DM9000_BASE
  66. #define DM9000_DATA (CONFIG_DM9000_BASE + 0x400)
  67. #define CONFIG_DM9000_USE_16BIT 1
  68. #define CONFIG_DM9000_NO_SROM 1
  69. #undef CONFIG_DM9000_DEBUG
  70. /* NS16550 Configuration */
  71. #define CONFIG_SYS_NS16550
  72. #define CONFIG_SYS_NS16550_SERIAL
  73. #define CONFIG_SYS_NS16550_REG_SIZE (-4)
  74. #define CONFIG_SYS_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
  75. /* select serial console configuration */
  76. #define CONFIG_CONS_INDEX 3
  77. #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
  78. #define CONFIG_SERIAL3 3
  79. #define CONFIG_BAUDRATE 115200
  80. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  81. 115200}
  82. /* MMC */
  83. #define CONFIG_GENERIC_MMC 1
  84. #define CONFIG_MMC 1
  85. #define CONFIG_OMAP_HSMMC 1
  86. #define CONFIG_DOS_PARTITION 1
  87. /* I2C */
  88. #define CONFIG_HARD_I2C 1
  89. #define CONFIG_SYS_I2C_SPEED 100000
  90. #define CONFIG_SYS_I2C_SLAVE 1
  91. #define CONFIG_SYS_I2C_BUS 0
  92. #define CONFIG_SYS_I2C_BUS_SELECT 1
  93. #define CONFIG_DRIVER_OMAP34XX_I2C 1
  94. /* TWL4030 */
  95. #define CONFIG_TWL4030_POWER 1
  96. #define CONFIG_TWL4030_LED 1
  97. /* Board NAND Info */
  98. #define CONFIG_SYS_NO_FLASH /* no NOR flash */
  99. #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
  100. #define MTDIDS_DEFAULT "nand0=nand"
  101. #define MTDPARTS_DEFAULT "mtdparts=nand:" \
  102. "512k(x-loader)," \
  103. "1920k(u-boot)," \
  104. "128k(u-boot-env)," \
  105. "4m(kernel)," \
  106. "-(fs)"
  107. #define CONFIG_NAND_OMAP_GPMC
  108. #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
  109. /* to access nand */
  110. #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
  111. /* to access nand at */
  112. /* CS0 */
  113. #define GPMC_NAND_ECC_LP_x16_LAYOUT 1
  114. #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND */
  115. /* devices */
  116. #define CONFIG_JFFS2_NAND
  117. /* nand device jffs2 lives on */
  118. #define CONFIG_JFFS2_DEV "nand0"
  119. /* start of jffs2 partition */
  120. #define CONFIG_JFFS2_PART_OFFSET 0x680000
  121. #define CONFIG_JFFS2_PART_SIZE 0xf980000 /* size of jffs2 */
  122. /* partition */
  123. /* commands to include */
  124. #include <config_cmd_default.h>
  125. #define CONFIG_CMD_DHCP /* DHCP support */
  126. #define CONFIG_CMD_EXT2 /* EXT2 Support */
  127. #define CONFIG_CMD_FAT /* FAT support */
  128. #define CONFIG_CMD_I2C /* I2C serial bus support */
  129. #define CONFIG_CMD_JFFS2 /* JFFS2 Support */
  130. #define CONFIG_CMD_MMC /* MMC support */
  131. #define CONFIG_CMD_MTDPARTS /* Enable MTD parts commands */
  132. #define CONFIG_CMD_NAND /* NAND support */
  133. #define CONFIG_CMD_NAND_LOCK_UNLOCK /* nand (un)lock commands */
  134. #undef CONFIG_CMD_FPGA /* FPGA configuration Support */
  135. #undef CONFIG_CMD_IMI /* iminfo */
  136. /* BOOTP/DHCP options */
  137. #define CONFIG_BOOTP_SUBNETMASK
  138. #define CONFIG_BOOTP_GATEWAY
  139. #define CONFIG_BOOTP_HOSTNAME
  140. #define CONFIG_BOOTP_NISDOMAIN
  141. #define CONFIG_BOOTP_BOOTPATH
  142. #define CONFIG_BOOTP_BOOTFILESIZE
  143. #define CONFIG_BOOTP_DNS
  144. #define CONFIG_BOOTP_DNS2
  145. #define CONFIG_BOOTP_SEND_HOSTNAME
  146. #define CONFIG_BOOTP_NTPSERVER
  147. #define CONFIG_BOOTP_TIMEOFFSET
  148. #undef CONFIG_BOOTP_VENDOREX
  149. /* Environment information */
  150. #define CONFIG_ENV_OVERWRITE /* allow to overwrite serial and ethaddr */
  151. #define CONFIG_BOOTDELAY 3
  152. #define CONFIG_EXTRA_ENV_SETTINGS \
  153. "loadaddr=0x82000000\0" \
  154. "console=ttyO2,115200n8\0" \
  155. "mmcdev=0\0" \
  156. "vram=12M\0" \
  157. "dvimode=1024x768MR-16@60\0" \
  158. "defaultdisplay=dvi\0" \
  159. "nfsopts=hard,tcp,rsize=65536,wsize=65536\0" \
  160. "kernelopts=rw\0" \
  161. "commonargs=" \
  162. "setenv bootargs console=${console} " \
  163. "vram=${vram} " \
  164. "omapfb.mode=dvi:${dvimode} " \
  165. "omapdss.def_disp=${defaultdisplay}\0" \
  166. "mmcargs=" \
  167. "run commonargs; " \
  168. "setenv bootargs ${bootargs} " \
  169. "root=/dev/mmcblk0p2 " \
  170. "${kernelopts}\0" \
  171. "nandargs=" \
  172. "run commonargs; " \
  173. "setenv bootargs ${bootargs} " \
  174. "omapfb.mode=dvi:${dvimode} " \
  175. "omapdss.def_disp=${defaultdisplay} " \
  176. "root=/dev/mtdblock4 " \
  177. "rootfstype=jffs2 " \
  178. "${kernelopts}\0" \
  179. "netargs=" \
  180. "run commonargs; " \
  181. "setenv bootargs ${bootargs} " \
  182. "root=/dev/nfs " \
  183. "nfsroot=${serverip}:${rootpath},${nfsopts} " \
  184. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off " \
  185. "${kernelopts} " \
  186. "dnsip1=${dnsip} " \
  187. "dnsip2=${dnsip2}\0" \
  188. "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
  189. "bootscript=echo Running bootscript from mmc ...; " \
  190. "source ${loadaddr}\0" \
  191. "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
  192. "eraseenv=nand unlock 0x260000 0x20000; nand erase 0x260000 0x20000\0" \
  193. "mmcboot=echo Booting from mmc ...; " \
  194. "run mmcargs; " \
  195. "bootm ${loadaddr}\0" \
  196. "nandboot=echo Booting from nand ...; " \
  197. "run nandargs; " \
  198. "nand read ${loadaddr} 280000 400000; " \
  199. "bootm ${loadaddr}\0" \
  200. "netboot=echo Booting from network ...; " \
  201. "dhcp ${loadaddr}; " \
  202. "run netargs; " \
  203. "bootm ${loadaddr}\0" \
  204. "autoboot=if mmc rescan ${mmcdev}; then " \
  205. "if run loadbootscript; then " \
  206. "run bootscript; " \
  207. "else " \
  208. "if run loaduimage; then " \
  209. "run mmcboot; " \
  210. "else run nandboot; " \
  211. "fi; " \
  212. "fi; " \
  213. "else run nandboot; fi\0"
  214. #define CONFIG_BOOTCOMMAND "run autoboot"
  215. /* Miscellaneous configurable options */
  216. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  217. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  218. #define CONFIG_AUTO_COMPLETE 1
  219. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  220. #define CONFIG_SYS_PROMPT "OMAP3 DevKit8000 # "
  221. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  222. /* Print Buffer Size */
  223. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  224. sizeof(CONFIG_SYS_PROMPT) + 16)
  225. #define CONFIG_SYS_MAXARGS 128 /* max number of command args */
  226. /* Boot Argument Buffer Size */
  227. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  228. #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0 + 0x07000000)
  229. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + \
  230. 0x01000000) /* 16MB */
  231. #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0 + 0x02000000)
  232. /*
  233. * OMAP3 has 12 GP timers, they can be driven by the system clock
  234. * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
  235. * This rate is divided by a local divisor.
  236. */
  237. #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
  238. #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
  239. #define CONFIG_SYS_HZ 1000
  240. /* The stack sizes are set up in start.S using the settings below */
  241. #define CONFIG_STACKSIZE (128 << 10) /* regular stack 128 KiB */
  242. #ifdef CONFIG_USE_IRQ
  243. #define CONFIG_STACKSIZE_IRQ (4 << 10) /* IRQ stack 4 KiB */
  244. #define CONFIG_STACKSIZE_FIQ (4 << 10) /* FIQ stack 4 KiB */
  245. #endif
  246. /* Physical Memory Map */
  247. #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
  248. #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
  249. #define PHYS_SDRAM_1_SIZE (128 << 20) /* at least 128 MiB */
  250. #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
  251. /* SDRAM Bank Allocation method */
  252. #define SDRC_R_B_C 1
  253. /* NAND and environment organization */
  254. #define PISMO1_NAND_SIZE GPMC_SIZE_128M
  255. #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
  256. #define CONFIG_ENV_IS_IN_NAND 1
  257. #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
  258. #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
  259. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  260. #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
  261. #define CONFIG_SYS_INIT_RAM_SIZE 0x800
  262. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  263. CONFIG_SYS_INIT_RAM_SIZE - \
  264. GENERATED_GBL_DATA_SIZE)
  265. /* SRAM config */
  266. #define CONFIG_SYS_SRAM_START 0x40200000
  267. #define CONFIG_SYS_SRAM_SIZE 0x10000
  268. /* Defines for SPL */
  269. #define CONFIG_SPL
  270. #define CONFIG_SPL_NAND_SIMPLE
  271. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  272. #define CONFIG_SPL_LIBDISK_SUPPORT
  273. #define CONFIG_SPL_I2C_SUPPORT
  274. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  275. #define CONFIG_SPL_SERIAL_SUPPORT
  276. #define CONFIG_SPL_POWER_SUPPORT
  277. #define CONFIG_SPL_NAND_SUPPORT
  278. #define CONFIG_SPL_MMC_SUPPORT
  279. #define CONFIG_SPL_FAT_SUPPORT
  280. #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds"
  281. #define CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME "u-boot.img"
  282. #define CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION 1
  283. #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */
  284. #define CONFIG_SPL_TEXT_BASE 0x40200000 /*CONFIG_SYS_SRAM_START*/
  285. #define CONFIG_SPL_MAX_SIZE 0xB400 /* 45 K */
  286. #define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK
  287. #define CONFIG_SPL_BSS_START_ADDR 0x80000000 /*CONFIG_SYS_SDRAM_BASE*/
  288. #define CONFIG_SPL_BSS_MAX_SIZE 0x80000
  289. /* NAND boot config */
  290. #define CONFIG_SYS_NAND_PAGE_COUNT 64
  291. #define CONFIG_SYS_NAND_PAGE_SIZE 2048
  292. #define CONFIG_SYS_NAND_OOBSIZE 64
  293. #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
  294. #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0
  295. #define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
  296. 10, 11, 12, 13}
  297. #define CONFIG_SYS_NAND_ECCSIZE 512
  298. #define CONFIG_SYS_NAND_ECCBYTES 3
  299. #define CONFIG_SYS_NAND_ECCSTEPS (CONFIG_SYS_NAND_PAGE_SIZE / \
  300. CONFIG_SYS_NAND_ECCSIZE)
  301. #define CONFIG_SYS_NAND_ECCTOTAL (CONFIG_SYS_NAND_ECCBYTES * \
  302. CONFIG_SYS_NAND_ECCSTEPS)
  303. #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
  304. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
  305. #define CONFIG_SYS_NAND_U_BOOT_SIZE 0x200000
  306. #define CONFIG_SYS_SPL_MALLOC_START 0x80108000
  307. #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 /* 1 MB */
  308. #endif /* __CONFIG_H */