hawkboard.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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_SYS_USE_NAND 1
  28. /*
  29. * SoC Configuration
  30. */
  31. #define CONFIG_MACH_DAVINCI_HAWK
  32. #define CONFIG_ARM926EJS /* arm926ejs CPU core */
  33. #define CONFIG_SOC_DA8XX /* TI DA8xx SoC */
  34. #define CONFIG_SOC_DA850 /* TI DA850 SoC */
  35. #define CONFIG_SYS_EXCEPTION_VECTORS_HIGH
  36. #define CONFIG_SYS_CLK_FREQ clk_get(DAVINCI_ARM_CLKID)
  37. #define CONFIG_SYS_OSCIN_FREQ 24000000
  38. #define CONFIG_SYS_TIMERBASE DAVINCI_TIMER0_BASE
  39. #define CONFIG_SYS_HZ_CLOCK clk_get(DAVINCI_AUXCLK_CLKID)
  40. #define CONFIG_SYS_HZ 1000
  41. #define CONFIG_SKIP_LOWLEVEL_INIT
  42. #define CONFIG_BOARD_EARLY_INIT_F
  43. #define CONFIG_AIS_CONFIG_FILE "board/$(BOARDDIR)/hawkboard-ais-nand.cfg"
  44. #define CONFIG_SYS_DA850_SYSCFG_SUSPSRC ( \
  45. DAVINCI_SYSCFG_SUSPSRC_EMAC | \
  46. DAVINCI_SYSCFG_SUSPSRC_I2C | \
  47. DAVINCI_SYSCFG_SUSPSRC_SPI1 | \
  48. DAVINCI_SYSCFG_SUSPSRC_TIMER0 | \
  49. DAVINCI_SYSCFG_SUSPSRC_UART2)
  50. #if defined(CONFIG_UART_U_BOOT)
  51. #define CONFIG_SYS_TEXT_BASE 0xc1080000
  52. #elif !defined(CONFIG_SPL_BUILD)
  53. #define CONFIG_SYS_TEXT_BASE 0xc1180000
  54. #endif
  55. /* Spl */
  56. #define CONFIG_SPL
  57. #define CONFIG_SPL_FRAMEWORK
  58. #define CONFIG_SPL_BOARD_INIT
  59. #define CONFIG_SPL_NAND_SUPPORT
  60. #define CONFIG_SPL_NAND_SIMPLE
  61. #define CONFIG_SPL_LIBGENERIC_SUPPORT /* for udelay and __div64_32 for NAND */
  62. #define CONFIG_SPL_SERIAL_SUPPORT
  63. #define CONFIG_SPL_LDSCRIPT "board/$(BOARDDIR)/u-boot-spl-hawk.lds"
  64. #define CONFIG_SPL_TEXT_BASE 0xc1080000
  65. #define CONFIG_SPL_STACK CONFIG_SYS_INIT_SP_ADDR
  66. /*
  67. * Memory Info
  68. */
  69. #define CONFIG_SYS_MALLOC_LEN (1*1024*1024) /* malloc() len */
  70. #define PHYS_SDRAM_1 DAVINCI_DDR_EMIF_DATA_BASE
  71. #define PHYS_SDRAM_1_SIZE (128 << 20) /* SDRAM size 128MB */
  72. #define CONFIG_SYS_SDRAM_BASE 0xc0000000
  73. #define CONFIG_MAX_RAM_BANK_SIZE (512 << 20)
  74. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 -\
  75. GENERATED_GBL_DATA_SIZE)
  76. #define CONFIG_SYS_MONITOR_LEN 0x60000
  77. /* memtest start addr */
  78. #define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1)
  79. /* memtest will be run on 16MB */
  80. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 16*1024*1024)
  81. #define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
  82. /*
  83. * Serial Driver info
  84. */
  85. #define CONFIG_SYS_NS16550
  86. #define CONFIG_SYS_NS16550_SERIAL
  87. #define CONFIG_SYS_NS16550_REG_SIZE -4
  88. #define CONFIG_SYS_NS16550_COM1 DAVINCI_UART2_BASE
  89. #define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
  90. #define CONFIG_CONS_INDEX 1
  91. #define CONFIG_BAUDRATE 115200
  92. /*
  93. * Network & Ethernet Configuration
  94. */
  95. #define CONFIG_DRIVER_TI_EMAC
  96. #define CONFIG_MII
  97. #define CONFIG_BOOTP_DEFAULT
  98. #define CONFIG_BOOTP_DNS
  99. #define CONFIG_BOOTP_DNS2
  100. #define CONFIG_BOOTP_SEND_HOSTNAME
  101. #define CONFIG_NET_RETRY_COUNT 10
  102. /*
  103. * Nand Flash
  104. */
  105. #ifdef CONFIG_SYS_USE_NAND
  106. #define CONFIG_SYS_NO_FLASH
  107. #define CONFIG_ENV_IS_IN_NAND
  108. #define CONFIG_ENV_SIZE (128 << 10)
  109. #define CONFIG_SYS_NAND_BASE DAVINCI_ASYNC_EMIF_DATA_CE3_BASE
  110. #define CONFIG_CLE_MASK 0x10
  111. #define CONFIG_ALE_MASK 0x8
  112. #define CONFIG_SYS_NAND_USE_FLASH_BBT
  113. #define CONFIG_NAND_DAVINCI
  114. #define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
  115. #define CONFIG_SYS_NAND_HW_ECC_OOBFIRST /* SPL nand driver configuration */
  116. #define CFG_DAVINCI_STD_NAND_LAYOUT
  117. #define CONFIG_SYS_NAND_CS 3
  118. #define CONFIG_SYS_NAND_PAGE_2K
  119. /* Max number of NAND devices */
  120. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  121. #define CONFIG_SYS_NAND_BASE_LIST { 0x62000000, }
  122. /* Block 0--not used by bootcode */
  123. #define CONFIG_ENV_OFFSET 0x0
  124. #define CONFIG_SYS_NAND_PAGE_SIZE (2 << 10)
  125. #define CONFIG_SYS_NAND_BLOCK_SIZE (128 << 10)
  126. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0xe0000
  127. #define CONFIG_SYS_NAND_U_BOOT_DST 0xc1180000
  128. #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_NAND_U_BOOT_DST
  129. #define CONFIG_SYS_NAND_U_BOOT_RELOC_SP (CONFIG_SYS_NAND_U_BOOT_DST - \
  130. CONFIG_SYS_NAND_U_BOOT_SIZE - \
  131. CONFIG_SYS_MALLOC_LEN - \
  132. GENERATED_GBL_DATA_SIZE)
  133. #define CONFIG_SYS_NAND_ECCPOS { \
  134. 24, 25, 26, 27, 28, \
  135. 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, \
  136. 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, \
  137. 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, \
  138. 59, 60, 61, 62, 63 }
  139. #define CONFIG_SYS_NAND_PAGE_COUNT 64
  140. #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0
  141. #define CONFIG_SYS_NAND_ECCSIZE 512
  142. #define CONFIG_SYS_NAND_ECCBYTES 10
  143. #define CONFIG_SYS_NAND_OOBSIZE 64
  144. #endif /* CONFIG_SYS_USE_NAND */
  145. /* USB Configs */
  146. #define CONFIG_SYS_USB_OHCI_CPU_INIT
  147. #define CONFIG_USB_OHCI_NEW
  148. #define CONFIG_USB_OHCI_DA8XX
  149. #define CONFIG_USB_STORAGE
  150. #define CONFIG_DOS_PARTITION
  151. #define CONFIG_SYS_USB_OHCI_REGS_BASE 0x01E25000
  152. #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15
  153. #define CONFIG_SYS_USB_OHCI_SLOT_NAME "hawkboard"
  154. /*
  155. * U-Boot general configuration
  156. */
  157. #define CONFIG_MISC_INIT_R
  158. #define CONFIG_BOOTFILE "uImage" /* Boot file name */
  159. #define CONFIG_SYS_PROMPT "hawkboard > " /* Command Prompt */
  160. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  161. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
  162. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  163. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
  164. #define CONFIG_SYS_LOAD_ADDR (PHYS_SDRAM_1 + 0x700000)
  165. #define CONFIG_VERSION_VARIABLE
  166. #define CONFIG_AUTO_COMPLETE
  167. #define CONFIG_SYS_HUSH_PARSER
  168. #define CONFIG_CMDLINE_EDITING
  169. #define CONFIG_SYS_LONGHELP
  170. #define CONFIG_CRC32_VERIFY
  171. #define CONFIG_MX_CYCLIC
  172. /*
  173. * Linux Information
  174. */
  175. #define LINUX_BOOT_PARAM_ADDR (CONFIG_SYS_MEMTEST_START + 0x100)
  176. #define CONFIG_CMDLINE_TAG
  177. #define CONFIG_SETUP_MEMORY_TAGS
  178. #define CONFIG_BOOTARGS \
  179. "mem=128M console=ttyS2,115200n8 root=/dev/ram0 rw initrd=0xc1180000,"\
  180. "4M ip=static"
  181. #define CONFIG_BOOTDELAY 3
  182. /*
  183. * U-Boot commands
  184. */
  185. #include <config_cmd_default.h>
  186. #define CONFIG_CMD_ENV
  187. #define CONFIG_CMD_ASKENV
  188. #define CONFIG_CMD_DHCP
  189. #define CONFIG_CMD_DIAG
  190. #define CONFIG_CMD_MII
  191. #define CONFIG_CMD_PING
  192. #define CONFIG_CMD_SAVES
  193. #define CONFIG_CMD_MEMORY
  194. #define CONFIG_CMD_USB
  195. #define CONFIG_CMD_EXT2
  196. #ifdef CONFIG_CMD_BDI
  197. #define CONFIG_CLOCKS
  198. #endif
  199. #ifdef CONFIG_SYS_USE_NAND
  200. #undef CONFIG_CMD_FLASH
  201. #undef CONFIG_CMD_IMLS
  202. #define CONFIG_CMD_NAND
  203. #endif
  204. #ifndef CONFIG_DRIVER_TI_EMAC
  205. #undef CONFIG_CMD_NET
  206. #undef CONFIG_CMD_DHCP
  207. #undef CONFIG_CMD_MII
  208. #undef CONFIG_CMD_PING
  209. #endif
  210. #endif /* __CONFIG_H */