mx23evk.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /*
  2. * Freescale i.MX23 EVK board config
  3. *
  4. * Copyright (C) 2013 Otavio Salvador <otavio@ossystems.com.br>
  5. * on behalf of O.S. Systems Software LTDA.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. #ifndef __MX23EVK_CONFIG_H__
  23. #define __MX23EVK_CONFIG_H__
  24. /* SoC configurations */
  25. #define CONFIG_MX23 /* i.MX23 SoC */
  26. #include <asm/arch/regs-base.h>
  27. #define CONFIG_MXS_GPIO /* GPIO control */
  28. #define CONFIG_SYS_HZ 1000 /* Ticks per second */
  29. #define CONFIG_MACH_TYPE MACH_TYPE_MX23EVK
  30. #define CONFIG_SYS_NO_FLASH
  31. #define CONFIG_SYS_ICACHE_OFF
  32. #define CONFIG_SYS_DCACHE_OFF
  33. #define CONFIG_BOARD_EARLY_INIT_F
  34. #define CONFIG_ARCH_MISC_INIT
  35. /* SPL */
  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. /* U-Boot Commands */
  44. #include <config_cmd_default.h>
  45. #undef CONFIG_CMD_NET
  46. #undef CONFIG_CMD_NFS
  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_MMC
  54. #define CONFIG_CMD_BOOTZ
  55. /* Memory configurations */
  56. #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
  57. #define PHYS_SDRAM_1 0x40000000 /* Base address */
  58. #define PHYS_SDRAM_1_SIZE 0x08000000 /* Max 128 MB RAM */
  59. #define CONFIG_STACKSIZE (128 * 1024) /* 128 KB stack */
  60. #define CONFIG_SYS_MALLOC_LEN 0x00400000 /* 4 MB for malloc */
  61. #define CONFIG_SYS_MEMTEST_START 0x40000000 /* Memtest start adr */
  62. #define CONFIG_SYS_MEMTEST_END 0x40400000 /* 4 MB RAM test */
  63. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  64. /* Point initial SP in SRAM so SPL can use it too. */
  65. #define CONFIG_SYS_INIT_RAM_ADDR 0x00000000
  66. #define CONFIG_SYS_INIT_RAM_SIZE (128 * 1024)
  67. #define CONFIG_SYS_INIT_SP_OFFSET \
  68. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  69. #define CONFIG_SYS_INIT_SP_ADDR \
  70. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  71. /*
  72. * We need to sacrifice first 4 bytes of RAM here to avoid triggering some
  73. * strange BUG in ROM corrupting first 4 bytes of RAM when loading U-Boot
  74. * binary. In case there was more of this mess, 0x100 bytes are skipped.
  75. */
  76. #define CONFIG_SYS_TEXT_BASE 0x40000100
  77. #define CONFIG_ENV_OVERWRITE
  78. /* U-Boot general configurations */
  79. #define CONFIG_SYS_LONGHELP
  80. #define CONFIG_SYS_PROMPT "=> "
  81. #define CONFIG_SYS_CBSIZE 256 /* Console I/O buffer size */
  82. #define CONFIG_SYS_PBSIZE \
  83. (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  84. /* Print buffer size */
  85. #define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
  86. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  87. /* Boot argument buffer size */
  88. #define CONFIG_VERSION_VARIABLE /* U-BOOT version */
  89. #define CONFIG_AUTO_COMPLETE /* Command auto complete */
  90. #define CONFIG_CMDLINE_EDITING /* Command history etc */
  91. #define CONFIG_SYS_HUSH_PARSER
  92. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  93. /* Serial Driver */
  94. #define CONFIG_PL011_SERIAL
  95. #define CONFIG_PL011_CLOCK 24000000
  96. #define CONFIG_PL01x_PORTS { (void *)MXS_UARTDBG_BASE }
  97. #define CONFIG_CONS_INDEX 0
  98. #define CONFIG_BAUDRATE 115200 /* Default baud rate */
  99. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  100. /* DMA */
  101. #define CONFIG_APBH_DMA
  102. /* MMC Driver */
  103. #ifdef CONFIG_CMD_MMC
  104. #define CONFIG_MMC
  105. #define CONFIG_GENERIC_MMC
  106. #define CONFIG_BOUNCE_BUFFER
  107. #define CONFIG_MXS_MMC
  108. #endif
  109. /* Boot Linux */
  110. #define CONFIG_CMDLINE_TAG
  111. #define CONFIG_SETUP_MEMORY_TAGS
  112. #define CONFIG_BOOTDELAY 1
  113. #define CONFIG_BOOTFILE "uImage"
  114. #define CONFIG_LOADADDR 0x42000000
  115. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  116. #define CONFIG_OF_LIBFDT
  117. /* Environment */
  118. #define CONFIG_ENV_IS_IN_MMC
  119. #ifdef CONFIG_ENV_IS_IN_MMC
  120. #define CONFIG_ENV_OFFSET (256 * 1024)
  121. #define CONFIG_ENV_SIZE (16 * 1024)
  122. #define CONFIG_SYS_MMC_ENV_DEV 0
  123. #endif
  124. /* Extra Environments */
  125. #define CONFIG_EXTRA_ENV_SETTINGS \
  126. "update_sd_firmware_filename=u-boot.sd\0" \
  127. "update_sd_firmware=" /* Update the SD firmware partition */ \
  128. "if mmc rescan ; then " \
  129. "if tftp ${update_sd_firmware_filename} ; then " \
  130. "setexpr fw_sz ${filesize} / 0x200 ; " /* SD block size */ \
  131. "setexpr fw_sz ${fw_sz} + 1 ; " \
  132. "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
  133. "fi ; " \
  134. "fi\0" \
  135. "script=boot.scr\0" \
  136. "uimage=uImage\0" \
  137. "console=ttyAMA0\0" \
  138. "fdt_file=imx23-evk.dtb\0" \
  139. "fdt_addr=0x41000000\0" \
  140. "boot_fdt=try\0" \
  141. "mmcdev=0\0" \
  142. "mmcpart=2\0" \
  143. "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \
  144. "mmcargs=setenv bootargs console=${console},${baudrate} " \
  145. "root=${mmcroot}\0" \
  146. "loadbootscript=" \
  147. "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
  148. "bootscript=echo Running bootscript from mmc ...; " \
  149. "source\0" \
  150. "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
  151. "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
  152. "mmcboot=echo Booting from mmc ...; " \
  153. "run mmcargs; " \
  154. "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
  155. "if run loadfdt; then " \
  156. "bootm ${loadaddr} - ${fdt_addr}; " \
  157. "else " \
  158. "if test ${boot_fdt} = try; then " \
  159. "bootm; " \
  160. "else " \
  161. "echo WARN: Cannot load the DT; " \
  162. "fi; " \
  163. "fi; " \
  164. "else " \
  165. "bootm; " \
  166. "fi;\0"
  167. #define CONFIG_BOOTCOMMAND \
  168. "mmc dev ${mmcdev}; if mmc rescan; then " \
  169. "if run loadbootscript; then " \
  170. "run bootscript; " \
  171. "else " \
  172. "if run loaduimage; then " \
  173. "run mmcboot; " \
  174. "else " \
  175. "echo ERR: Fail to boot from MMC; " \
  176. "fi; " \
  177. "fi; " \
  178. "else exit; fi"
  179. #endif /* __MX23EVK_CONFIG_H__ */