mx28evk.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /*
  2. * (C) Copyright 2011 Freescale Semiconductor, Inc.
  3. * Author: Fabio Estevam <fabio.estevam@freescale.com>
  4. *
  5. * Based on m28evk.h:
  6. * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
  7. * on behalf of DENX Software Engineering GmbH
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. */
  19. #ifndef __MX28EVK_CONFIG_H__
  20. #define __MX28EVK_CONFIG_H__
  21. /*
  22. * SoC configurations
  23. */
  24. #define CONFIG_MX28 /* i.MX28 SoC */
  25. #define CONFIG_MXS_GPIO /* GPIO control */
  26. #define CONFIG_SYS_HZ 1000 /* Ticks per second */
  27. #define CONFIG_MACH_TYPE MACH_TYPE_MX28EVK
  28. #include <asm/arch/regs-base.h>
  29. #define CONFIG_SYS_NO_FLASH
  30. #define CONFIG_BOARD_EARLY_INIT_F
  31. #define CONFIG_ARCH_MISC_INIT
  32. /*
  33. * SPL
  34. */
  35. #define CONFIG_SPL
  36. #define CONFIG_SPL_NO_CPU_SUPPORT_CODE
  37. #define CONFIG_SPL_START_S_PATH "arch/arm/cpu/arm926ejs/mxs"
  38. #define CONFIG_SPL_LDSCRIPT "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds"
  39. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  40. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  41. #define CONFIG_SPL_GPIO_SUPPORT
  42. /*
  43. * U-Boot Commands
  44. */
  45. #include <config_cmd_default.h>
  46. #define CONFIG_DISPLAY_CPUINFO
  47. #define CONFIG_DOS_PARTITION
  48. #define CONFIG_CMD_CACHE
  49. #define CONFIG_CMD_DATE
  50. #define CONFIG_CMD_DHCP
  51. #define CONFIG_CMD_FAT
  52. #define CONFIG_CMD_GPIO
  53. #define CONFIG_CMD_MII
  54. #define CONFIG_CMD_MMC
  55. #define CONFIG_CMD_NET
  56. #define CONFIG_CMD_NFS
  57. #define CONFIG_CMD_PING
  58. #define CONFIG_CMD_SF
  59. #define CONFIG_CMD_SPI
  60. #define CONFIG_CMD_USB
  61. #define CONFIG_CMD_BOOTZ
  62. #define CONFIG_CMD_I2C
  63. /*
  64. * Memory configurations
  65. */
  66. #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
  67. #define PHYS_SDRAM_1 0x40000000 /* Base address */
  68. #define PHYS_SDRAM_1_SIZE 0x40000000 /* Max 1 GB RAM */
  69. #define CONFIG_SYS_MALLOC_LEN 0x00400000 /* 4 MB for malloc */
  70. #define CONFIG_SYS_MEMTEST_START 0x40000000 /* Memtest start adr */
  71. #define CONFIG_SYS_MEMTEST_END 0x40400000 /* 4 MB RAM test */
  72. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  73. /* Point initial SP in SRAM so SPL can use it too. */
  74. #define CONFIG_SYS_INIT_RAM_ADDR 0x00000000
  75. #define CONFIG_SYS_INIT_RAM_SIZE (128 * 1024)
  76. #define CONFIG_SYS_INIT_SP_OFFSET \
  77. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  78. #define CONFIG_SYS_INIT_SP_ADDR \
  79. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  80. /*
  81. * We need to sacrifice first 4 bytes of RAM here to avoid triggering some
  82. * strange BUG in ROM corrupting first 4 bytes of RAM when loading U-Boot
  83. * binary. In case there was more of this mess, 0x100 bytes are skipped.
  84. */
  85. #define CONFIG_SYS_TEXT_BASE 0x40000100
  86. #define CONFIG_ENV_OVERWRITE
  87. /*
  88. * U-Boot general configurations
  89. */
  90. #define CONFIG_SYS_LONGHELP
  91. #define CONFIG_SYS_PROMPT "MX28EVK U-Boot > "
  92. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
  93. #define CONFIG_SYS_PBSIZE \
  94. (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  95. /* Print buffer size */
  96. #define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
  97. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  98. /* Boot argument buffer size */
  99. #define CONFIG_VERSION_VARIABLE /* U-BOOT version */
  100. #define CONFIG_AUTO_COMPLETE /* Command auto complete */
  101. #define CONFIG_CMDLINE_EDITING /* Command history etc */
  102. #define CONFIG_SYS_HUSH_PARSER
  103. /*
  104. * Serial Driver
  105. */
  106. #define CONFIG_PL011_SERIAL
  107. #define CONFIG_PL011_CLOCK 24000000
  108. #define CONFIG_PL01x_PORTS { (void *)MXS_UARTDBG_BASE }
  109. #define CONFIG_CONS_INDEX 0
  110. #define CONFIG_BAUDRATE 115200 /* Default baud rate */
  111. /*
  112. * DMA
  113. */
  114. #define CONFIG_APBH_DMA
  115. /*
  116. * MMC Driver
  117. */
  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. #define CONFIG_CMD_SAVEENV
  125. #ifdef CONFIG_CMD_MMC
  126. #define CONFIG_MMC
  127. #define CONFIG_GENERIC_MMC
  128. #define CONFIG_MMC_BOUNCE_BUFFER
  129. #define CONFIG_MXS_MMC
  130. #endif
  131. /*
  132. * NAND Driver
  133. */
  134. #ifdef CONFIG_CMD_NAND
  135. #define CONFIG_NAND_MXS
  136. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  137. #define CONFIG_SYS_NAND_BASE 0x60000000
  138. #define CONFIG_SYS_NAND_5_ADDR_CYCLE
  139. #endif
  140. /*
  141. * Ethernet on SOC (FEC)
  142. */
  143. #ifdef CONFIG_CMD_NET
  144. #define CONFIG_NET_MULTI
  145. #define CONFIG_ETHPRIME "FEC0"
  146. #define CONFIG_FEC_MXC
  147. #define CONFIG_FEC_MXC_MULTI
  148. #define CONFIG_MII
  149. #define CONFIG_FEC_XCV_TYPE RMII
  150. #define CONFIG_MX28_FEC_MAC_IN_OCOTP
  151. #endif
  152. /*
  153. * RTC
  154. */
  155. #ifdef CONFIG_CMD_DATE
  156. #define CONFIG_RTC_MXS
  157. #endif
  158. /*
  159. * USB
  160. */
  161. #ifdef CONFIG_CMD_USB
  162. #define CONFIG_USB_EHCI
  163. #define CONFIG_USB_EHCI_MXS
  164. #define CONFIG_EHCI_MXS_PORT 1
  165. #define CONFIG_EHCI_IS_TDI
  166. #define CONFIG_USB_STORAGE
  167. #endif
  168. /* I2C */
  169. #ifdef CONFIG_CMD_I2C
  170. #define CONFIG_I2C_MXS
  171. #define CONFIG_HARD_I2C
  172. #define CONFIG_SYS_I2C_SPEED 400000
  173. #endif
  174. /*
  175. * SPI
  176. */
  177. #ifdef CONFIG_CMD_SPI
  178. #define CONFIG_HARD_SPI
  179. #define CONFIG_MXS_SPI
  180. #define CONFIG_SPI_HALF_DUPLEX
  181. #define CONFIG_DEFAULT_SPI_BUS 2
  182. #define CONFIG_DEFAULT_SPI_MODE SPI_MODE_0
  183. /* SPI Flash */
  184. #ifdef CONFIG_CMD_SF
  185. #define CONFIG_SPI_FLASH
  186. #define CONFIG_SF_DEFAULT_BUS 2
  187. #define CONFIG_SF_DEFAULT_CS 0
  188. /* this may vary and depends on the installed chip */
  189. #define CONFIG_SPI_FLASH_SST
  190. #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
  191. #define CONFIG_SF_DEFAULT_SPEED 24000000
  192. /* (redundant) environemnt in SPI flash */
  193. #undef CONFIG_ENV_IS_IN_SPI_FLASH
  194. #ifdef CONFIG_ENV_IS_IN_SPI_FLASH
  195. #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
  196. #define CONFIG_ENV_SIZE 0x1000 /* 4KB */
  197. #define CONFIG_ENV_OFFSET 0x40000 /* 256K */
  198. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
  199. #define CONFIG_ENV_SECT_SIZE 0x1000
  200. #define CONFIG_ENV_SPI_CS 0
  201. #define CONFIG_ENV_SPI_BUS 2
  202. #define CONFIG_ENV_SPI_MAX_HZ 24000000
  203. #define CONFIG_ENV_SPI_MODE SPI_MODE_0
  204. #endif
  205. #endif
  206. #endif
  207. /*
  208. * Boot Linux
  209. */
  210. #define CONFIG_CMDLINE_TAG
  211. #define CONFIG_SETUP_MEMORY_TAGS
  212. #define CONFIG_BOOTDELAY 3
  213. #define CONFIG_BOOTFILE "uImage"
  214. #define CONFIG_BOOTCOMMAND "run bootcmd_net"
  215. #define CONFIG_LOADADDR 0x42000000
  216. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  217. #define CONFIG_OF_LIBFDT
  218. /*
  219. * Extra Environments
  220. */
  221. #define CONFIG_EXTRA_ENV_SETTINGS \
  222. "console_fsl=console=ttyAM0" \
  223. "console_mainline=console=ttyAMA0" \
  224. "netargs=setenv bootargs console=${console_mainline}" \
  225. "root=/dev/nfs " \
  226. "ip=dhcp nfsroot=${serverip}:${nfsroot}\0" \
  227. "bootcmd_net=echo Booting from net ...; " \
  228. "run netargs; " \
  229. "dhcp ${uimage}; bootm\0" \
  230. #endif /* __MX28EVK_CONFIG_H__ */