da850evm.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*
  2. * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
  3. *
  4. * Based on davinci_dvevm.h. Original Copyrights follow:
  5. *
  6. * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #ifndef __CONFIG_H
  23. #define __CONFIG_H
  24. /*
  25. * Board
  26. */
  27. #define CONFIG_DRIVER_TI_EMAC
  28. #define CONFIG_USE_SPIFLASH
  29. /*
  30. * SoC Configuration
  31. */
  32. #define CONFIG_MACH_DAVINCI_DA850_EVM
  33. #define CONFIG_ARM926EJS /* arm926ejs CPU core */
  34. #define CONFIG_SOC_DA8XX /* TI DA8xx SoC */
  35. #define CONFIG_SYS_CLK_FREQ clk_get(DAVINCI_ARM_CLKID)
  36. #define CONFIG_SYS_OSCIN_FREQ 24000000
  37. #define CONFIG_SYS_TIMERBASE DAVINCI_TIMER0_BASE
  38. #define CONFIG_SYS_HZ_CLOCK clk_get(DAVINCI_AUXCLK_CLKID)
  39. #define CONFIG_SYS_HZ 1000
  40. #define CONFIG_SKIP_LOWLEVEL_INIT
  41. #define CONFIG_SYS_TEXT_BASE 0xc1080000
  42. #define CONFIG_SYS_ICACHE_OFF
  43. #define CONFIG_SYS_DCACHE_OFF
  44. #define CONFIG_SYS_L2CACHE_OFF
  45. /*
  46. * Memory Info
  47. */
  48. #define CONFIG_SYS_MALLOC_LEN (0x10000 + 1*1024*1024) /* malloc() len */
  49. #define PHYS_SDRAM_1 DAVINCI_DDR_EMIF_DATA_BASE /* DDR Start */
  50. #define PHYS_SDRAM_1_SIZE (64 << 20) /* SDRAM size 64MB */
  51. #define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* max size from SPRS586*/
  52. /* memtest start addr */
  53. #define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1 + 0x2000000)
  54. /* memtest will be run on 16MB */
  55. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0x2000000 + 16*1024*1024)
  56. #define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
  57. #define CONFIG_STACKSIZE (256*1024) /* regular stack */
  58. /*
  59. * Serial Driver info
  60. */
  61. #define CONFIG_SYS_NS16550
  62. #define CONFIG_SYS_NS16550_SERIAL
  63. #define CONFIG_SYS_NS16550_REG_SIZE -4 /* NS16550 register size */
  64. #define CONFIG_SYS_NS16550_COM1 DAVINCI_UART2_BASE /* Base address of UART2 */
  65. #define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
  66. #define CONFIG_CONS_INDEX 1 /* use UART0 for console */
  67. #define CONFIG_BAUDRATE 115200 /* Default baud rate */
  68. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  69. #define CONFIG_SPI
  70. #define CONFIG_SPI_FLASH
  71. #define CONFIG_SPI_FLASH_STMICRO
  72. #define CONFIG_SPI_FLASH_WINBOND
  73. #define CONFIG_DAVINCI_SPI
  74. #define CONFIG_SYS_SPI_BASE DAVINCI_SPI1_BASE
  75. #define CONFIG_SYS_SPI_CLK clk_get(DAVINCI_SPI1_CLKID)
  76. #define CONFIG_SF_DEFAULT_SPEED 30000000
  77. #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
  78. /*
  79. * I2C Configuration
  80. */
  81. #define CONFIG_HARD_I2C
  82. #define CONFIG_DRIVER_DAVINCI_I2C
  83. #define CONFIG_SYS_I2C_SPEED 25000
  84. #define CONFIG_SYS_I2C_SLAVE 10 /* Bogus, master-only in U-Boot */
  85. #define CONFIG_SYS_I2C_EXPANDER_ADDR 0x20
  86. /*
  87. * Flash & Environment
  88. */
  89. #ifdef CONFIG_USE_NAND
  90. #undef CONFIG_ENV_IS_IN_FLASH
  91. #define CONFIG_NAND_DAVINCI
  92. #define CONFIG_SYS_NO_FLASH
  93. #define CONFIG_ENV_IS_IN_NAND /* U-Boot env in NAND Flash */
  94. #define CONFIG_ENV_OFFSET 0x0 /* Block 0--not used by bootcode */
  95. #define CONFIG_ENV_SIZE (128 << 10)
  96. #define CONFIG_SYS_NAND_USE_FLASH_BBT
  97. #define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
  98. #define CONFIG_SYS_NAND_PAGE_2K
  99. #define CONFIG_SYS_NAND_CS 3
  100. #define CONFIG_SYS_NAND_BASE DAVINCI_ASYNC_EMIF_DATA_CE3_BASE
  101. #define CONFIG_SYS_CLE_MASK 0x10
  102. #define CONFIG_SYS_ALE_MASK 0x8
  103. #undef CONFIG_SYS_NAND_HW_ECC
  104. #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND devices */
  105. #define NAND_MAX_CHIPS 1
  106. #endif
  107. /*
  108. * Network & Ethernet Configuration
  109. */
  110. #ifdef CONFIG_DRIVER_TI_EMAC
  111. #define CONFIG_MII
  112. #define CONFIG_BOOTP_DEFAULT
  113. #define CONFIG_BOOTP_DNS
  114. #define CONFIG_BOOTP_DNS2
  115. #define CONFIG_BOOTP_SEND_HOSTNAME
  116. #define CONFIG_NET_RETRY_COUNT 10
  117. #endif
  118. #ifdef CONFIG_USE_NOR
  119. #define CONFIG_ENV_IS_IN_FLASH
  120. #define CONFIG_FLASH_CFI_DRIVER
  121. #define CONFIG_SYS_FLASH_CFI
  122. #define CONFIG_SYS_FLASH_PROTECTION
  123. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of flash banks */
  124. #define CONFIG_SYS_FLASH_SECT_SZ (128 << 10) /* 128KB */
  125. #define CONFIG_ENV_OFFSET (CONFIG_SYS_FLASH_SECT_SZ * 3)
  126. #define CONFIG_ENV_SIZE (10 << 10) /* 10KB */
  127. #define CONFIG_SYS_FLASH_BASE DAVINCI_ASYNC_EMIF_DATA_CE2_BASE
  128. #define PHYS_FLASH_SIZE (8 << 20) /* Flash size 8MB */
  129. #define CONFIG_SYS_MAX_FLASH_SECT ((PHYS_FLASH_SIZE/CONFIG_SYS_FLASH_SECT_SZ)\
  130. + 3)
  131. #define CONFIG_ENV_SECT_SIZE CONFIG_SYS_FLASH_SECT_SZ
  132. #endif
  133. #ifdef CONFIG_USE_SPIFLASH
  134. #undef CONFIG_ENV_IS_IN_FLASH
  135. #undef CONFIG_ENV_IS_IN_NAND
  136. #define CONFIG_ENV_IS_IN_SPI_FLASH
  137. #define CONFIG_ENV_SIZE (64 << 10)
  138. #define CONFIG_ENV_OFFSET (256 << 10)
  139. #define CONFIG_ENV_SECT_SIZE (64 << 10)
  140. #define CONFIG_SYS_NO_FLASH
  141. #endif
  142. /*
  143. * U-Boot general configuration
  144. */
  145. #define CONFIG_MISC_INIT_R
  146. #define CONFIG_BOARD_EARLY_INIT_F
  147. #define CONFIG_BOOTFILE "uImage" /* Boot file name */
  148. #define CONFIG_SYS_PROMPT "U-Boot > " /* Command Prompt */
  149. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  150. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
  151. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  152. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
  153. #define CONFIG_SYS_LOAD_ADDR (PHYS_SDRAM_1 + 0x700000)
  154. #define CONFIG_VERSION_VARIABLE
  155. #define CONFIG_AUTO_COMPLETE
  156. #define CONFIG_SYS_HUSH_PARSER
  157. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  158. #define CONFIG_CMDLINE_EDITING
  159. #define CONFIG_SYS_LONGHELP
  160. #define CONFIG_CRC32_VERIFY
  161. #define CONFIG_MX_CYCLIC
  162. /*
  163. * Linux Information
  164. */
  165. #define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
  166. #define CONFIG_HWCONFIG /* enable hwconfig */
  167. #define CONFIG_CMDLINE_TAG
  168. #define CONFIG_REVISION_TAG
  169. #define CONFIG_SETUP_MEMORY_TAGS
  170. #define CONFIG_BOOTARGS \
  171. "mem=32M console=ttyS2,115200n8 root=/dev/mtdblock2 rw noinitrd ip=dhcp"
  172. #define CONFIG_BOOTDELAY 3
  173. #define CONFIG_EXTRA_ENV_SETTINGS "hwconfig=dsp:wake=yes"
  174. /*
  175. * U-Boot commands
  176. */
  177. #include <config_cmd_default.h>
  178. #define CONFIG_CMD_ENV
  179. #define CONFIG_CMD_ASKENV
  180. #define CONFIG_CMD_DHCP
  181. #define CONFIG_CMD_DIAG
  182. #define CONFIG_CMD_MII
  183. #define CONFIG_CMD_PING
  184. #define CONFIG_CMD_SAVES
  185. #define CONFIG_CMD_MEMORY
  186. #ifndef CONFIG_DRIVER_TI_EMAC
  187. #undef CONFIG_CMD_NET
  188. #undef CONFIG_CMD_DHCP
  189. #undef CONFIG_CMD_MII
  190. #undef CONFIG_CMD_PING
  191. #endif
  192. #ifdef CONFIG_USE_NAND
  193. #undef CONFIG_CMD_FLASH
  194. #undef CONFIG_CMD_IMLS
  195. #define CONFIG_CMD_NAND
  196. #define CONFIG_CMD_MTDPARTS
  197. #define CONFIG_MTD_DEVICE
  198. #define CONFIG_MTD_PARTITIONS
  199. #define CONFIG_LZO
  200. #define CONFIG_RBTREE
  201. #define CONFIG_CMD_UBI
  202. #define CONFIG_CMD_UBIFS
  203. #endif
  204. #ifdef CONFIG_USE_SPIFLASH
  205. #undef CONFIG_CMD_IMLS
  206. #undef CONFIG_CMD_FLASH
  207. #define CONFIG_CMD_SPI
  208. #define CONFIG_CMD_SF
  209. #define CONFIG_CMD_SAVEENV
  210. #endif
  211. #if !defined(CONFIG_USE_NAND) && \
  212. !defined(CONFIG_USE_NOR) && \
  213. !defined(CONFIG_USE_SPIFLASH)
  214. #define CONFIG_ENV_IS_NOWHERE
  215. #define CONFIG_SYS_NO_FLASH
  216. #define CONFIG_ENV_SIZE (16 << 10)
  217. #undef CONFIG_CMD_IMLS
  218. #undef CONFIG_CMD_ENV
  219. #endif
  220. /* additions for new relocation code, must added to all boards */
  221. #define CONFIG_SYS_SDRAM_BASE 0xc0000000
  222. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
  223. GENERATED_GBL_DATA_SIZE)
  224. #endif /* __CONFIG_H */