omap3_zoom2.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * (C) Copyright 2006-2009
  3. * Texas Instruments.
  4. * Richard Woodruff <r-woodruff2@ti.com>
  5. * Syed Mohammed Khasim <x0khasim@ti.com>
  6. * Nishanth Menon <nm@ti.com>
  7. * Tom Rix <Tom.Rix@windriver.com>
  8. *
  9. * Configuration settings for the TI OMAP3430 Zoom II board.
  10. *
  11. * See file CREDITS for list of people who contributed to this
  12. * project.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  27. * MA 02111-1307 USA
  28. */
  29. #ifndef __CONFIG_H
  30. #define __CONFIG_H
  31. #include <asm/sizes.h>
  32. /*
  33. * High Level Configuration Options
  34. */
  35. #define CONFIG_ARMCORTEXA8 1 /* This is an ARM V7 CPU core */
  36. #define CONFIG_OMAP 1 /* in a TI OMAP core */
  37. #define CONFIG_OMAP34XX 1 /* which is a 34XX */
  38. #define CONFIG_OMAP3430 1 /* which is in a 3430 */
  39. #define CONFIG_OMAP3_ZOOM2 1 /* working with Zoom II */
  40. #include <asm/arch/cpu.h> /* get chip and board defs */
  41. #include <asm/arch/omap3.h>
  42. /* Clock Defines */
  43. #define V_OSCK 26000000 /* Clock output from T2 */
  44. #define V_SCLK (V_OSCK >> 1)
  45. #undef CONFIG_USE_IRQ /* no support for IRQs */
  46. #define CONFIG_MISC_INIT_R
  47. #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
  48. #define CONFIG_SETUP_MEMORY_TAGS 1
  49. #define CONFIG_INITRD_TAG 1
  50. #define CONFIG_REVISION_TAG 1
  51. /*
  52. * Size of malloc() pool
  53. */
  54. #define CONFIG_ENV_SIZE SZ_128K /* Total Size Environment */
  55. /* Sector */
  56. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + SZ_128K)
  57. #define CONFIG_SYS_GBL_DATA_SIZE 128 /* bytes reserved for */
  58. /* initial data */
  59. /*
  60. * Hardware drivers
  61. */
  62. /*
  63. * NS16550 Configuration
  64. */
  65. #define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
  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 V_NS16550_CLK
  70. /*
  71. * select serial console configuration
  72. */
  73. #define CONFIG_CONS_INDEX 3
  74. #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
  75. #define CONFIG_SERIAL3 3 /* UART3 */
  76. /* allow to overwrite serial and ethaddr */
  77. #define CONFIG_ENV_OVERWRITE
  78. #define CONFIG_BAUDRATE 115200
  79. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  80. 115200}
  81. #define CONFIG_MMC 1
  82. #define CONFIG_OMAP3_MMC 1
  83. #define CONFIG_DOS_PARTITION 1
  84. /* commands to include */
  85. #include <config_cmd_default.h>
  86. #define CONFIG_CMD_FAT /* FAT support */
  87. #define CONFIG_CMD_I2C /* I2C serial bus support */
  88. #define CONFIG_CMD_MMC /* MMC support */
  89. #define CONFIG_CMD_NAND /* NAND support */
  90. #define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */
  91. #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
  92. #undef CONFIG_CMD_FPGA /* FPGA configuration Support */
  93. #undef CONFIG_CMD_IMI /* iminfo */
  94. #undef CONFIG_CMD_IMLS /* List all found images */
  95. #undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
  96. #undef CONFIG_CMD_NFS /* NFS support */
  97. #define CONFIG_SYS_NO_FLASH
  98. #define CONFIG_SYS_I2C_SPEED 100000
  99. #define CONFIG_SYS_I2C_SLAVE 1
  100. #define CONFIG_SYS_I2C_BUS 0
  101. #define CONFIG_SYS_I2C_BUS_SELECT 1
  102. #define CONFIG_DRIVER_OMAP34XX_I2C 1
  103. /*
  104. * Board NAND Info.
  105. */
  106. #define CONFIG_NAND_OMAP_GPMC
  107. #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
  108. /* to access nand */
  109. #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
  110. /* to access nand at */
  111. /* CS0 */
  112. #define GPMC_NAND_ECC_LP_x16_LAYOUT 1
  113. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  114. /* Environment information */
  115. #define CONFIG_BOOTDELAY 10
  116. /*
  117. * Miscellaneous configurable options
  118. */
  119. #define CONFIG_SYS_PROMPT "OMAP3 Zoom2 # "
  120. #define CONFIG_SYS_LONGHELP
  121. #define CONFIG_SYS_CBSIZE 256
  122. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  123. sizeof(CONFIG_SYS_PROMPT) + 16)
  124. #define CONFIG_SYS_MAXARGS 16
  125. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  126. /* Memtest from start of memory to 31MB */
  127. #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
  128. #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + 0x01F00000)
  129. /* The default load address is the start of memory */
  130. #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0)
  131. /* everything, incl board info, in Hz */
  132. #undef CONFIG_SYS_CLKS_IN_HZ
  133. /*
  134. * 2430 has 12 GP timers, they can be driven by the SysClk (12/13/19.2) or by
  135. * 32KHz clk, or from external sig. This rate is divided by a local divisor.
  136. */
  137. #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
  138. #define CONFIG_SYS_PTV 7 /* 2^(PTV+1) */
  139. #define CONFIG_SYS_HZ ((V_SCLK) / (2 << CONFIG_SYS_PTV))
  140. /*-----------------------------------------------------------------------
  141. * Stack sizes
  142. *
  143. * The stack sizes are set up in start.S using these settings
  144. */
  145. #define CONFIG_STACKSIZE SZ_128K
  146. #ifdef CONFIG_USE_IRQ
  147. #define CONFIG_STACKSIZE_IRQ SZ_4K
  148. #define CONFIG_STACKSIZE_FIQ SZ_4K
  149. #endif
  150. /*-----------------------------------------------------------------------
  151. * Physical Memory Map
  152. */
  153. #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
  154. #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
  155. #define PHYS_SDRAM_1_SIZE SZ_32M /* at least 32 meg */
  156. #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
  157. /* SDRAM Bank Allocation method */
  158. #define SDRC_R_B_C 1
  159. /*-----------------------------------------------------------------------
  160. * FLASH and environment organization
  161. */
  162. /* **** PISMO SUPPORT *** */
  163. /* Configure the PISMO */
  164. #define PISMO1_NAND_SIZE GPMC_SIZE_128M
  165. #define PISMO1_ONEN_SIZE GPMC_SIZE_128M
  166. #define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors on */
  167. /* one chip */
  168. #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */
  169. #define CONFIG_SYS_MONITOR_LEN SZ_256K /* Reserve 2 sectors */
  170. #define CONFIG_SYS_FLASH_BASE boot_flash_base
  171. /* Monitor at start of flash */
  172. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  173. #define CONFIG_ENV_IS_IN_NAND 1
  174. #define SMNAND_ENV_OFFSET 0x0c0000 /* environment starts here */
  175. #define CONFIG_SYS_ENV_SECT_SIZE boot_flash_sec
  176. #define CONFIG_ENV_OFFSET boot_flash_off
  177. #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
  178. /*-----------------------------------------------------------------------
  179. * CFI FLASH driver setup
  180. */
  181. /* timeout values are in ticks */
  182. #define CONFIG_SYS_FLASH_ERASE_TOUT (100 * CONFIG_SYS_HZ)
  183. #define CONFIG_SYS_FLASH_WRITE_TOUT (100 * CONFIG_SYS_HZ)
  184. #ifndef __ASSEMBLY__
  185. extern gpmc_csx_t *nand_cs_base;
  186. extern gpmc_t *gpmc_cfg_base;
  187. extern unsigned int boot_flash_base;
  188. extern volatile unsigned int boot_flash_env_addr;
  189. extern unsigned int boot_flash_off;
  190. extern unsigned int boot_flash_sec;
  191. extern unsigned int boot_flash_type;
  192. #endif
  193. #endif /* __CONFIG_H */