mx23_olinuxino.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /*
  2. * Copyright (C) 2013 Marek Vasut <marex@denx.de>
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  17. * MA 02111-1307 USA
  18. */
  19. #ifndef __MX23_OLINUXINO_CONFIG_H__
  20. #define __MX23_OLINUXINO_CONFIG_H__
  21. #include <asm/arch/iomux-mx23.h>
  22. /*
  23. * SoC configurations
  24. */
  25. #define CONFIG_MX23 /* i.MX23 SoC */
  26. #define CONFIG_MXS_GPIO /* GPIO control */
  27. #define CONFIG_SYS_HZ 1000 /* Ticks per second */
  28. #define CONFIG_MACH_TYPE 4105
  29. #include <asm/arch/regs-base.h>
  30. #define CONFIG_SYS_NO_FLASH
  31. #define CONFIG_BOARD_EARLY_INIT_F
  32. #define CONFIG_ARCH_MISC_INIT
  33. /*
  34. * SPL
  35. */
  36. #define CONFIG_SPL
  37. #define CONFIG_SPL_NO_CPU_SUPPORT_CODE
  38. #define CONFIG_SPL_START_S_PATH "arch/arm/cpu/arm926ejs/mxs"
  39. #define CONFIG_SPL_LDSCRIPT "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds"
  40. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  41. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  42. #define CONFIG_SPL_GPIO_SUPPORT
  43. /*
  44. * U-Boot Commands
  45. */
  46. #include <config_cmd_default.h>
  47. #define CONFIG_DISPLAY_CPUINFO
  48. #define CONFIG_DOS_PARTITION
  49. #define CONFIG_CMD_CACHE
  50. #define CONFIG_CMD_EXT2
  51. #define CONFIG_CMD_FAT
  52. #define CONFIG_CMD_GPIO
  53. #define CONFIG_CMD_LED
  54. #define CONFIG_CMD_MMC
  55. #define CONFIG_CMD_USB
  56. /*
  57. * Memory configurations
  58. */
  59. #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
  60. #define PHYS_SDRAM_1 0x40000000 /* Base address */
  61. #define PHYS_SDRAM_1_SIZE 0x08000000 /* Max 128 MB RAM */
  62. #define CONFIG_SYS_MALLOC_LEN 0x00400000 /* 4 MB for malloc */
  63. #define CONFIG_SYS_GBL_DATA_SIZE 128 /* Initial data */
  64. #define CONFIG_SYS_MEMTEST_START 0x40000000 /* Memtest start adr */
  65. #define CONFIG_SYS_MEMTEST_END 0x40400000 /* 4 MB RAM test */
  66. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  67. /* Point initial SP in SRAM so SPL can use it too. */
  68. #define CONFIG_SYS_INIT_RAM_ADDR 0x00000000
  69. #define CONFIG_SYS_INIT_RAM_SIZE (128 * 1024)
  70. #define CONFIG_SYS_INIT_SP_OFFSET \
  71. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  72. #define CONFIG_SYS_INIT_SP_ADDR \
  73. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  74. /*
  75. * We need to sacrifice first 4 bytes of RAM here to avoid triggering some
  76. * strange BUG in ROM corrupting first 4 bytes of RAM when loading U-Boot
  77. * binary. In case there was more of this mess, 0x100 bytes are skipped.
  78. */
  79. #define CONFIG_SYS_TEXT_BASE 0x40000100
  80. /*
  81. * U-Boot general configurations
  82. */
  83. #define CONFIG_SYS_LONGHELP
  84. #define CONFIG_SYS_PROMPT "=> "
  85. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
  86. #define CONFIG_SYS_PBSIZE \
  87. (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  88. /* Print buffer size */
  89. #define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
  90. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  91. /* Boot argument buffer size */
  92. #define CONFIG_VERSION_VARIABLE /* U-BOOT version */
  93. #define CONFIG_AUTO_COMPLETE /* Command auto complete */
  94. #define CONFIG_CMDLINE_EDITING /* Command history etc */
  95. #define CONFIG_SYS_HUSH_PARSER
  96. /*
  97. * Serial Driver
  98. */
  99. #define CONFIG_PL011_SERIAL
  100. #define CONFIG_PL011_CLOCK 24000000
  101. #define CONFIG_PL01x_PORTS { (void *)MXS_UARTDBG_BASE }
  102. #define CONFIG_CONS_INDEX 0
  103. #define CONFIG_BAUDRATE 115200 /* Default baud rate */
  104. /*
  105. * Status LED
  106. */
  107. #define CONFIG_STATUS_LED
  108. #define CONFIG_GPIO_LED
  109. #define CONFIG_BOARD_SPECIFIC_LED
  110. #define STATUS_LED_BOOT 0
  111. #define STATUS_LED_BIT MX23_PAD_SSP1_DETECT__GPIO_2_1
  112. #define STATUS_LED_STATE STATUS_LED_ON
  113. #define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
  114. /*
  115. * MMC Driver
  116. */
  117. #ifdef CONFIG_CMD_MMC
  118. #define CONFIG_MMC
  119. #define CONFIG_BOUNCE_BUFFER
  120. #define CONFIG_GENERIC_MMC
  121. #define CONFIG_MXS_MMC
  122. #endif
  123. /*
  124. * APBH DMA
  125. */
  126. #define CONFIG_APBH_DMA
  127. /* USB */
  128. #ifdef CONFIG_CMD_USB
  129. #define CONFIG_USB_EHCI
  130. #define CONFIG_USB_EHCI_MXS
  131. #define CONFIG_EHCI_MXS_PORT0
  132. #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
  133. #define CONFIG_EHCI_IS_TDI
  134. #define CONFIG_USB_STORAGE
  135. #endif
  136. /*
  137. * Boot Linux
  138. */
  139. #define CONFIG_CMDLINE_TAG
  140. #define CONFIG_SETUP_MEMORY_TAGS
  141. #define CONFIG_BOOTDELAY 3
  142. #define CONFIG_BOOTFILE "uImage"
  143. #define CONFIG_LOADADDR 0x42000000
  144. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  145. #define CONFIG_OF_LIBFDT
  146. /*
  147. * Environment
  148. */
  149. #define CONFIG_ENV_IS_IN_MMC
  150. #define CONFIG_ENV_OVERWRITE
  151. #ifdef CONFIG_ENV_IS_IN_MMC
  152. #define CONFIG_ENV_OFFSET (256 * 1024)
  153. #define CONFIG_ENV_SIZE (16 * 1024)
  154. #define CONFIG_SYS_MMC_ENV_DEV 0
  155. #endif
  156. /*
  157. * Extra Environments
  158. */
  159. #define CONFIG_EXTRA_ENV_SETTINGS \
  160. "update_sd_firmware_filename=u-boot.sd\0" \
  161. "update_sd_firmware=" /* Update the SD firmware partition */ \
  162. "if mmc rescan ; then " \
  163. "if tftp ${update_sd_firmware_filename} ; then " \
  164. "setexpr fw_sz ${filesize} / 0x200 ; " /* SD block size */ \
  165. "setexpr fw_sz ${fw_sz} + 1 ; " \
  166. "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
  167. "fi ; " \
  168. "fi\0" \
  169. "script=boot.scr\0" \
  170. "uimage=uImage\0" \
  171. "console=ttyAMA0\0" \
  172. "fdt_file=imx23-olinuxino.dtb\0" \
  173. "fdt_addr=0x41000000\0" \
  174. "boot_fdt=try\0" \
  175. "mmcdev=0\0" \
  176. "mmcpart=2\0" \
  177. "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \
  178. "mmcargs=setenv bootargs console=${console},${baudrate} " \
  179. "root=${mmcroot}\0" \
  180. "loadbootscript=" \
  181. "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
  182. "bootscript=echo Running bootscript from mmc ...; " \
  183. "source\0" \
  184. "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
  185. "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
  186. "mmcboot=echo Booting from mmc ...; " \
  187. "run mmcargs; " \
  188. "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
  189. "if run loadfdt; then " \
  190. "bootm ${loadaddr} - ${fdt_addr}; " \
  191. "else " \
  192. "if test ${boot_fdt} = try; then " \
  193. "bootm; " \
  194. "else " \
  195. "echo WARN: Cannot load the DT; " \
  196. "fi; " \
  197. "fi; " \
  198. "else " \
  199. "bootm; " \
  200. "fi;\0"
  201. #define CONFIG_BOOTCOMMAND \
  202. "mmc dev ${mmcdev}; if mmc rescan; then " \
  203. "if run loadbootscript; then " \
  204. "run bootscript; " \
  205. "else " \
  206. "if run loaduimage; then " \
  207. "run mmcboot; " \
  208. "else " \
  209. "echo ERR: Fail to boot from MMC; " \
  210. "fi; " \
  211. "fi; " \
  212. "else exit; fi"
  213. #endif /* __MX23_OLINUXINO_CONFIG_H__ */