spear-common.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. /*
  2. * (C) Copyright 2009
  3. * Vipin Kumar, STMicroelectronics, <vipin.kumar@st.com>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (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., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #ifndef _SPEAR_COMMON_H
  24. #define _SPEAR_COMMON_H
  25. /*
  26. * Common configurations used for both spear3xx as well as spear6xx
  27. */
  28. /* U-boot Load Address */
  29. #define CONFIG_SYS_TEXT_BASE 0x00700000
  30. /* Ethernet driver configuration */
  31. #define CONFIG_MII
  32. #define CONFIG_DESIGNWARE_ETH
  33. #define CONFIG_DW_SEARCH_PHY
  34. #define CONFIG_DW0_PHY 1
  35. #define CONFIG_NET_MULTI
  36. #define CONFIG_PHY_RESET_DELAY 10000 /* in usec */
  37. #define CONFIG_DW_AUTONEG
  38. /* USBD driver configuration */
  39. #if defined(CONFIG_SPEAR_USBTTY)
  40. #define CONFIG_DW_UDC
  41. #define CONFIG_USB_DEVICE
  42. #define CONFIG_USBD_HS
  43. #define CONFIG_USB_TTY
  44. #define CONFIG_USBD_PRODUCT_NAME "SPEAr SoC"
  45. #define CONFIG_USBD_MANUFACTURER "ST Microelectronics"
  46. #endif
  47. #define CONFIG_EXTRA_ENV_USBTTY "usbtty=cdc_acm\0"
  48. /* I2C driver configuration */
  49. #define CONFIG_HARD_I2C
  50. #define CONFIG_DW_I2C
  51. #define CONFIG_SYS_I2C_SPEED 400000
  52. #define CONFIG_SYS_I2C_SLAVE 0x02
  53. #define CONFIG_I2C_CHIPADDRESS 0x50
  54. /* Timer, HZ specific defines */
  55. #define CONFIG_SYS_HZ (1000)
  56. /* Flash configuration */
  57. #if defined(CONFIG_FLASH_PNOR)
  58. #define CONFIG_SPEAR_EMI 1
  59. #else
  60. #define CONFIG_ST_SMI
  61. #endif
  62. #if defined(CONFIG_ST_SMI)
  63. #define CONFIG_SYS_MAX_FLASH_BANKS 2
  64. #define CONFIG_SYS_FLASH_BASE (0xF8000000)
  65. #define CONFIG_SYS_CS1_FLASH_BASE (0xF9000000)
  66. #define CONFIG_SYS_FLASH_BANK_SIZE (0x01000000)
  67. #define CONFIG_SYS_FLASH_ADDR_BASE {CONFIG_SYS_FLASH_BASE, \
  68. CONFIG_SYS_CS1_FLASH_BASE}
  69. #define CONFIG_SYS_MAX_FLASH_SECT 128
  70. #define CONFIG_SYS_FLASH_ERASE_TOUT (3 * CONFIG_SYS_HZ)
  71. #define CONFIG_SYS_FLASH_WRITE_TOUT (3 * CONFIG_SYS_HZ)
  72. #endif
  73. /*
  74. * Serial Configuration (PL011)
  75. * CONFIG_PL01x_PORTS is defined in specific files
  76. */
  77. #define CONFIG_PL011_SERIAL
  78. #define CONFIG_PL011_CLOCK (48 * 1000 * 1000)
  79. #define CONFIG_CONS_INDEX 0
  80. #define CONFIG_BAUDRATE 115200
  81. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, \
  82. 57600, 115200 }
  83. #define CONFIG_SYS_LOADS_BAUD_CHANGE
  84. /* NAND FLASH Configuration */
  85. #define CONFIG_SYS_NAND_SELF_INIT
  86. #define CONFIG_MTD_DEVICE
  87. #define CONFIG_MTD_PARTITIONS
  88. #define CONFIG_NAND_FSMC
  89. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  90. #define CONFIG_MTD_NAND_VERIFY_WRITE 1
  91. #define CONFIG_SYS_NAND_ONFI_DETECTION
  92. #define CONFIG_SYS_NAND_QUIET_TEST
  93. /*
  94. * Command support defines
  95. */
  96. #define CONFIG_CMD_I2C
  97. #define CONFIG_CMD_NAND
  98. #define CONFIG_CMD_ENV
  99. #define CONFIG_CMD_MEMORY
  100. #define CONFIG_CMD_RUN
  101. #define CONFIG_CMD_SAVES
  102. #define CONFIG_CMD_NET
  103. #define CONFIG_CMD_MII
  104. #define CONFIG_CMD_PING
  105. #define CONFIG_CMD_DHCP
  106. /* This must be included AFTER the definition of CONFIG_COMMANDS (if any) */
  107. #include <config_cmd_default.h>
  108. /*
  109. * Default Environment Varible definitions
  110. */
  111. #if defined(CONFIG_SPEAR_USBTTY)
  112. #define CONFIG_BOOTDELAY -1
  113. #else
  114. #define CONFIG_BOOTDELAY 1
  115. #endif
  116. #define CONFIG_ENV_OVERWRITE
  117. /*
  118. * U-Boot Environment placing definitions.
  119. */
  120. #if defined(CONFIG_ENV_IS_IN_FLASH)
  121. #ifdef CONFIG_ST_SMI
  122. /*
  123. * Environment is in serial NOR flash
  124. */
  125. #define CONFIG_SYS_MONITOR_LEN 0x00040000
  126. #define CONFIG_ENV_SECT_SIZE 0x00010000
  127. #define CONFIG_FSMTDBLK "/dev/mtdblock3 "
  128. #define CONFIG_BOOTCOMMAND "bootm 0xf8050000"
  129. #elif defined(CONFIG_SPEAR_EMI)
  130. /*
  131. * Environment is in parallel NOR flash
  132. */
  133. #define CONFIG_SYS_MONITOR_LEN 0x00060000
  134. #define CONFIG_ENV_SECT_SIZE 0x00020000
  135. #define CONFIG_FSMTDBLK "/dev/mtdblock3 "
  136. #define CONFIG_BOOTCOMMAND "cp.b 0x50080000 0x1600000 " \
  137. "0x4C0000; bootm 0x1600000"
  138. #endif
  139. #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + \
  140. CONFIG_SYS_MONITOR_LEN)
  141. #elif defined(CONFIG_ENV_IS_IN_NAND)
  142. /*
  143. * Environment is in NAND
  144. */
  145. #define CONFIG_ENV_OFFSET 0x60000
  146. #define CONFIG_ENV_RANGE 0x10000
  147. #define CONFIG_FSMTDBLK "/dev/mtdblock7 "
  148. #define CONFIG_BOOTCOMMAND "nand read.jffs2 0x1600000 " \
  149. "0x80000 0x4C0000; " \
  150. "bootm 0x1600000"
  151. #endif
  152. #define CONFIG_BOOTARGS "console=ttyAMA0,115200 " \
  153. "mem=128M " \
  154. "root="CONFIG_FSMTDBLK \
  155. "rootfstype=jffs2"
  156. #define CONFIG_NFSBOOTCOMMAND \
  157. "bootp; " \
  158. "setenv bootargs root=/dev/nfs rw " \
  159. "nfsroot=$(serverip):$(rootpath) " \
  160. "ip=$(ipaddr):$(serverip):$(gatewayip):" \
  161. "$(netmask):$(hostname):$(netdev):off " \
  162. "console=ttyAMA0,115200 $(othbootargs);" \
  163. "bootm; "
  164. #define CONFIG_RAMBOOTCOMMAND \
  165. "setenv bootargs root=/dev/ram rw " \
  166. "console=ttyAMA0,115200 $(othbootargs);" \
  167. CONFIG_BOOTCOMMAND
  168. #define CONFIG_ENV_SIZE 0x02000
  169. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
  170. /* Miscellaneous configurable options */
  171. #define CONFIG_ARCH_CPU_INIT
  172. #define CONFIG_BOARD_EARLY_INIT_F
  173. #define CONFIG_DISPLAY_CPUINFO
  174. #define CONFIG_BOOT_PARAMS_ADDR 0x00000100
  175. #define CONFIG_CMDLINE_TAG 1
  176. #define CONFIG_SETUP_MEMORY_TAGS 1
  177. #define CONFIG_MISC_INIT_R 1
  178. #define CONFIG_ZERO_BOOTDELAY_CHECK 1
  179. #define CONFIG_AUTOBOOT_KEYED 1
  180. #define CONFIG_AUTOBOOT_STOP_STR " "
  181. #define CONFIG_AUTOBOOT_PROMPT \
  182. "Hit SPACE in %d seconds to stop autoboot.\n", bootdelay
  183. #define CONFIG_SYS_MEMTEST_START 0x00800000
  184. #define CONFIG_SYS_MEMTEST_END 0x04000000
  185. #define CONFIG_SYS_MALLOC_LEN (1024*1024)
  186. #define CONFIG_IDENT_STRING "-SPEAr"
  187. #define CONFIG_SYS_LONGHELP
  188. #define CONFIG_SYS_PROMPT "u-boot> "
  189. #define CONFIG_CMDLINE_EDITING
  190. #define CONFIG_SYS_CBSIZE 256
  191. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  192. sizeof(CONFIG_SYS_PROMPT) + 16)
  193. #define CONFIG_SYS_MAXARGS 16
  194. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  195. #define CONFIG_SYS_LOAD_ADDR 0x00800000
  196. #define CONFIG_SYS_CONSOLE_INFO_QUIET 1
  197. #define CONFIG_SYS_FLASH_EMPTY_INFO
  198. /* Stack sizes */
  199. #define CONFIG_STACKSIZE (128*1024)
  200. #ifdef CONFIG_USE_IRQ
  201. #define CONFIG_STACKSIZE_IRQ (4*1024)
  202. #define CONFIG_STACKSIZE_FIQ (4*1024)
  203. #endif
  204. /* Physical Memory Map */
  205. #define CONFIG_NR_DRAM_BANKS 1
  206. #define PHYS_SDRAM_1 0x00000000
  207. #define PHYS_SDRAM_1_MAXSIZE 0x40000000
  208. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  209. #define CONFIG_SYS_INIT_RAM_ADDR 0xD2800000
  210. #define CONFIG_SYS_INIT_RAM_SIZE 0x2000
  211. #define CONFIG_SYS_INIT_SP_OFFSET \
  212. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  213. #define CONFIG_SYS_INIT_SP_ADDR \
  214. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  215. #endif