igep0020.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*
  2. * (C) Copyright 2010
  3. * ISEE 2007 SL, <www.iseebcn.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  18. * MA 02111-1307 USA
  19. */
  20. #ifndef __CONFIG_H
  21. #define __CONFIG_H
  22. #include <asm/sizes.h>
  23. /*
  24. * High Level Configuration Options
  25. */
  26. #define CONFIG_OMAP 1 /* in a TI OMAP core */
  27. #define CONFIG_OMAP34XX 1 /* which is a 34XX */
  28. #define CONFIG_OMAP3_IGEP0020 1 /* working with IGEP0020 */
  29. #define CONFIG_SDRC /* The chip has SDRC controller */
  30. #include <asm/arch/cpu.h>
  31. #include <asm/arch/omap3.h>
  32. /*
  33. * Display CPU and Board information
  34. */
  35. #define CONFIG_DISPLAY_CPUINFO 1
  36. #define CONFIG_DISPLAY_BOARDINFO 1
  37. /* Clock Defines */
  38. #define V_OSCK 26000000 /* Clock output from T2 */
  39. #define V_SCLK (V_OSCK >> 1)
  40. #define CONFIG_MISC_INIT_R
  41. #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
  42. #define CONFIG_SETUP_MEMORY_TAGS 1
  43. #define CONFIG_INITRD_TAG 1
  44. #define CONFIG_REVISION_TAG 1
  45. #define CONFIG_OF_LIBFDT 1
  46. /*
  47. * NS16550 Configuration
  48. */
  49. #define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
  50. #define CONFIG_SYS_NS16550
  51. #define CONFIG_SYS_NS16550_SERIAL
  52. #define CONFIG_SYS_NS16550_REG_SIZE (-4)
  53. #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
  54. /* select serial console configuration */
  55. #define CONFIG_CONS_INDEX 3
  56. #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
  57. #define CONFIG_SERIAL3 3
  58. /* allow to overwrite serial and ethaddr */
  59. #define CONFIG_ENV_OVERWRITE
  60. #define CONFIG_BAUDRATE 115200
  61. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, 115200}
  62. #define CONFIG_GENERIC_MMC 1
  63. #define CONFIG_MMC 1
  64. #define CONFIG_OMAP_HSMMC 1
  65. #define CONFIG_DOS_PARTITION 1
  66. /* DDR */
  67. #define CONFIG_OMAP3_NUMONYX_DDR 1
  68. /* USB */
  69. #define CONFIG_MUSB_UDC 1
  70. #define CONFIG_USB_OMAP3 1
  71. #define CONFIG_TWL4030_USB 1
  72. /* USB device configuration */
  73. #define CONFIG_USB_DEVICE 1
  74. #define CONFIG_USB_TTY 1
  75. #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
  76. /* Change these to suit your needs */
  77. #define CONFIG_USBD_VENDORID 0x0451
  78. #define CONFIG_USBD_PRODUCTID 0x5678
  79. #define CONFIG_USBD_MANUFACTURER "Texas Instruments"
  80. #define CONFIG_USBD_PRODUCT_NAME "IGEP"
  81. /* commands to include */
  82. #include <config_cmd_default.h>
  83. #define CONFIG_CMD_CACHE
  84. #define CONFIG_CMD_EXT2 /* EXT2 Support */
  85. #define CONFIG_CMD_FAT /* FAT support */
  86. #define CONFIG_CMD_I2C /* I2C serial bus support */
  87. #define CONFIG_CMD_MMC /* MMC support */
  88. #define CONFIG_CMD_ONENAND /* ONENAND support */
  89. #define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
  90. #define CONFIG_CMD_DHCP
  91. #define CONFIG_CMD_PING
  92. #define CONFIG_CMD_NFS /* NFS support */
  93. #define CONFIG_CMD_MTDPARTS /* Enable MTD parts commands */
  94. #define CONFIG_MTD_DEVICE
  95. #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
  96. #undef CONFIG_CMD_IMLS /* List all found images */
  97. #define CONFIG_SYS_NO_FLASH
  98. #define CONFIG_HARD_I2C 1
  99. #define CONFIG_SYS_I2C_SPEED 100000
  100. #define CONFIG_SYS_I2C_SLAVE 1
  101. #define CONFIG_SYS_I2C_BUS 0
  102. #define CONFIG_SYS_I2C_BUS_SELECT 1
  103. #define CONFIG_DRIVER_OMAP34XX_I2C 1
  104. /*
  105. * TWL4030
  106. */
  107. #define CONFIG_TWL4030_POWER 1
  108. #define CONFIG_BOOTDELAY 3
  109. #define CONFIG_EXTRA_ENV_SETTINGS \
  110. "usbtty=cdc_acm\0" \
  111. "loadaddr=0x82000000\0" \
  112. "usbtty=cdc_acm\0" \
  113. "console=ttyS2,115200n8\0" \
  114. "mpurate=500\0" \
  115. "vram=12M\0" \
  116. "dvimode=1024x768MR-16@60\0" \
  117. "defaultdisplay=dvi\0" \
  118. "mmcdev=0\0" \
  119. "mmcroot=/dev/mmcblk0p2 rw\0" \
  120. "mmcrootfstype=ext3 rootwait\0" \
  121. "nandroot=/dev/mtdblock4 rw\0" \
  122. "nandrootfstype=jffs2\0" \
  123. "mmcargs=setenv bootargs console=${console} " \
  124. "mpurate=${mpurate} " \
  125. "vram=${vram} " \
  126. "omapfb.mode=dvi:${dvimode} " \
  127. "omapfb.debug=y " \
  128. "omapdss.def_disp=${defaultdisplay} " \
  129. "root=${mmcroot} " \
  130. "rootfstype=${mmcrootfstype}\0" \
  131. "nandargs=setenv bootargs console=${console} " \
  132. "mpurate=${mpurate} " \
  133. "vram=${vram} " \
  134. "omapfb.mode=dvi:${dvimode} " \
  135. "omapfb.debug=y " \
  136. "omapdss.def_disp=${defaultdisplay} " \
  137. "root=${nandroot} " \
  138. "rootfstype=${nandrootfstype}\0" \
  139. "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
  140. "bootscript=echo Running bootscript from mmc ...; " \
  141. "source ${loadaddr}\0" \
  142. "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
  143. "mmcboot=echo Booting from mmc ...; " \
  144. "run mmcargs; " \
  145. "bootm ${loadaddr}\0" \
  146. "nandboot=echo Booting from onenand ...; " \
  147. "run nandargs; " \
  148. "onenand read ${loadaddr} 280000 400000; " \
  149. "bootm ${loadaddr}\0" \
  150. #define CONFIG_BOOTCOMMAND \
  151. "if mmc rescan ${mmcdev}; then " \
  152. "if run loadbootscript; then " \
  153. "run bootscript; " \
  154. "else " \
  155. "if run loaduimage; then " \
  156. "run mmcboot; " \
  157. "else run nandboot; " \
  158. "fi; " \
  159. "fi; " \
  160. "else run nandboot; fi"
  161. #define CONFIG_AUTO_COMPLETE 1
  162. /*
  163. * Miscellaneous configurable options
  164. */
  165. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  166. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  167. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  168. #define CONFIG_SYS_PROMPT "U-Boot # "
  169. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  170. /* Print Buffer Size */
  171. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  172. sizeof(CONFIG_SYS_PROMPT) + 16)
  173. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  174. /* Boot Argument Buffer Size */
  175. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  176. #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) /* memtest */
  177. /* works on */
  178. #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
  179. 0x01F00000) /* 31MB */
  180. #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default */
  181. /* load address */
  182. #define CONFIG_SYS_MONITOR_LEN (256 << 10)
  183. /*
  184. * OMAP3 has 12 GP timers, they can be driven by the system clock
  185. * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
  186. * This rate is divided by a local divisor.
  187. */
  188. #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
  189. #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
  190. #define CONFIG_SYS_HZ 1000
  191. /*
  192. * Stack sizes
  193. *
  194. * The stack sizes are set up in start.S using the settings below
  195. */
  196. #define CONFIG_STACKSIZE (128 << 10) /* regular stack 128 KiB */
  197. /*
  198. * Physical Memory Map
  199. *
  200. */
  201. #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
  202. #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
  203. #define PHYS_SDRAM_1_SIZE (32 << 20) /* at least 32 meg */
  204. #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
  205. /* SDRAM Bank Allocation method */
  206. #define SDRC_R_B_C 1
  207. /*
  208. * FLASH and environment organization
  209. */
  210. #define PISMO1_ONEN_SIZE GPMC_SIZE_128M /* Configure the PISMO */
  211. #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
  212. #define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
  213. #define CONFIG_ENV_IS_IN_ONENAND 1
  214. #define CONFIG_ENV_SIZE (512 << 10) /* Total Size Environment */
  215. #define CONFIG_ENV_ADDR ONENAND_ENV_OFFSET
  216. /*
  217. * Size of malloc() pool
  218. */
  219. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10))
  220. /*
  221. * SMSC911x Ethernet
  222. */
  223. #if defined(CONFIG_CMD_NET)
  224. #define CONFIG_SMC911X
  225. #define CONFIG_SMC911X_32_BIT
  226. #define CONFIG_SMC911X_BASE 0x2C000000
  227. #endif /* (CONFIG_CMD_NET) */
  228. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  229. #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
  230. #define CONFIG_SYS_INIT_RAM_SIZE 0x800
  231. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  232. CONFIG_SYS_INIT_RAM_SIZE - \
  233. GENERATED_GBL_DATA_SIZE)
  234. #endif /* __CONFIG_H */