mx6sabre_common.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /*
  2. * Copyright (C) 2012 Freescale Semiconductor, Inc.
  3. *
  4. * Configuration settings for the Freescale i.MX6Q SabreSD board.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #ifndef __MX6QSABRE_COMMON_CONFIG_H
  17. #define __MX6QSABRE_COMMON_CONFIG_H
  18. #define CONFIG_MX6
  19. #include "mx6_common.h"
  20. #define CONFIG_DISPLAY_CPUINFO
  21. #define CONFIG_DISPLAY_BOARDINFO
  22. #include <asm/arch/imx-regs.h>
  23. #define CONFIG_CMDLINE_TAG
  24. #define CONFIG_SETUP_MEMORY_TAGS
  25. #define CONFIG_INITRD_TAG
  26. #define CONFIG_REVISION_TAG
  27. /* Size of malloc() pool */
  28. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
  29. #define CONFIG_BOARD_EARLY_INIT_F
  30. #define CONFIG_BOARD_LATE_INIT
  31. #define CONFIG_MXC_GPIO
  32. #define CONFIG_MXC_UART
  33. /* MMC Configs */
  34. #define CONFIG_FSL_ESDHC
  35. #define CONFIG_FSL_USDHC
  36. #define CONFIG_SYS_FSL_ESDHC_ADDR 0
  37. #define CONFIG_MMC
  38. #define CONFIG_CMD_MMC
  39. #define CONFIG_GENERIC_MMC
  40. #define CONFIG_BOUNCE_BUFFER
  41. #define CONFIG_CMD_EXT2
  42. #define CONFIG_CMD_FAT
  43. #define CONFIG_DOS_PARTITION
  44. #define CONFIG_CMD_PING
  45. #define CONFIG_CMD_DHCP
  46. #define CONFIG_CMD_MII
  47. #define CONFIG_CMD_NET
  48. #define CONFIG_FEC_MXC
  49. #define CONFIG_MII
  50. #define IMX_FEC_BASE ENET_BASE_ADDR
  51. #define CONFIG_FEC_XCV_TYPE RGMII
  52. #define CONFIG_ETHPRIME "FEC"
  53. #define CONFIG_FEC_MXC_PHYADDR 1
  54. #define CONFIG_PHYLIB
  55. #define CONFIG_PHY_ATHEROS
  56. /* allow to overwrite serial and ethaddr */
  57. #define CONFIG_ENV_OVERWRITE
  58. #define CONFIG_CONS_INDEX 1
  59. #define CONFIG_BAUDRATE 115200
  60. /* Command definition */
  61. #include <config_cmd_default.h>
  62. #define CONFIG_CMD_BMODE
  63. #define CONFIG_CMD_BOOTZ
  64. #define CONFIG_CMD_SETEXPR
  65. #undef CONFIG_CMD_IMLS
  66. #define CONFIG_BOOTDELAY 1
  67. #define CONFIG_LOADADDR 0x12000000
  68. #define CONFIG_SYS_TEXT_BASE 0x17800000
  69. #define CONFIG_EXTRA_ENV_SETTINGS \
  70. "script=boot.scr\0" \
  71. "uimage=uImage\0" \
  72. "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
  73. "fdt_addr=0x11000000\0" \
  74. "boot_fdt=try\0" \
  75. "ip_dyn=yes\0" \
  76. "console=" CONFIG_CONSOLE_DEV "\0" \
  77. "fdt_high=0xffffffff\0" \
  78. "initrd_high=0xffffffff\0" \
  79. "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
  80. "mmcpart=1\0" \
  81. "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
  82. "update_sd_firmware=" \
  83. "if test ${ip_dyn} = yes; then " \
  84. "setenv get_cmd dhcp; " \
  85. "else " \
  86. "setenv get_cmd tftp; " \
  87. "fi; " \
  88. "if mmc dev ${mmcdev}; then " \
  89. "if ${get_cmd} ${update_sd_firmware_filename}; then " \
  90. "setexpr fw_sz ${filesize} / 0x200; " \
  91. "setexpr fw_sz ${fw_sz} + 1; " \
  92. "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
  93. "fi; " \
  94. "fi\0" \
  95. "mmcargs=setenv bootargs console=${console},${baudrate} " \
  96. "root=${mmcroot}\0" \
  97. "loadbootscript=" \
  98. "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
  99. "bootscript=echo Running bootscript from mmc ...; " \
  100. "source\0" \
  101. "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
  102. "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
  103. "mmcboot=echo Booting from mmc ...; " \
  104. "run mmcargs; " \
  105. "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
  106. "if run loadfdt; then " \
  107. "bootm ${loadaddr} - ${fdt_addr}; " \
  108. "else " \
  109. "if test ${boot_fdt} = try; then " \
  110. "bootm; " \
  111. "else " \
  112. "echo WARN: Cannot load the DT; " \
  113. "fi; " \
  114. "fi; " \
  115. "else " \
  116. "bootm; " \
  117. "fi;\0" \
  118. "netargs=setenv bootargs console=${console},${baudrate} " \
  119. "root=/dev/nfs " \
  120. "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
  121. "netboot=echo Booting from net ...; " \
  122. "run netargs; " \
  123. "if test ${ip_dyn} = yes; then " \
  124. "setenv get_cmd dhcp; " \
  125. "else " \
  126. "setenv get_cmd tftp; " \
  127. "fi; " \
  128. "${get_cmd} ${uimage}; " \
  129. "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
  130. "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
  131. "bootm ${loadaddr} - ${fdt_addr}; " \
  132. "else " \
  133. "if test ${boot_fdt} = try; then " \
  134. "bootm; " \
  135. "else " \
  136. "echo WARN: Cannot load the DT; " \
  137. "fi; " \
  138. "fi; " \
  139. "else " \
  140. "bootm; " \
  141. "fi;\0"
  142. #define CONFIG_BOOTCOMMAND \
  143. "mmc dev ${mmcdev};" \
  144. "if mmc rescan; then " \
  145. "if run loadbootscript; then " \
  146. "run bootscript; " \
  147. "else " \
  148. "if run loaduimage; then " \
  149. "run mmcboot; " \
  150. "else run netboot; " \
  151. "fi; " \
  152. "fi; " \
  153. "else run netboot; fi"
  154. #define CONFIG_ARP_TIMEOUT 200UL
  155. /* Miscellaneous configurable options */
  156. #define CONFIG_SYS_LONGHELP
  157. #define CONFIG_SYS_HUSH_PARSER
  158. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  159. #define CONFIG_SYS_PROMPT "U-Boot > "
  160. #define CONFIG_AUTO_COMPLETE
  161. #define CONFIG_SYS_CBSIZE 256
  162. /* Print Buffer Size */
  163. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  164. #define CONFIG_SYS_MAXARGS 16
  165. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  166. #define CONFIG_SYS_MEMTEST_START 0x10000000
  167. #define CONFIG_SYS_MEMTEST_END 0x10010000
  168. #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
  169. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  170. #define CONFIG_SYS_HZ 1000
  171. #define CONFIG_CMDLINE_EDITING
  172. #define CONFIG_STACKSIZE (128 * 1024)
  173. /* Physical Memory Map */
  174. #define CONFIG_NR_DRAM_BANKS 1
  175. #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
  176. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
  177. #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
  178. #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
  179. #define CONFIG_SYS_INIT_SP_OFFSET \
  180. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  181. #define CONFIG_SYS_INIT_SP_ADDR \
  182. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  183. /* FLASH and environment organization */
  184. #define CONFIG_SYS_NO_FLASH
  185. #define CONFIG_ENV_SIZE (8 * 1024)
  186. #define CONFIG_ENV_IS_IN_MMC
  187. #if defined(CONFIG_ENV_IS_IN_MMC)
  188. #define CONFIG_ENV_OFFSET (6 * 64 * 1024)
  189. #endif
  190. #define CONFIG_OF_LIBFDT
  191. #ifndef CONFIG_SYS_DCACHE_OFF
  192. #define CONFIG_CMD_CACHE
  193. #endif
  194. #endif /* __MX6QSABRE_COMMON_CONFIG_H */