mx28evk.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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 __CONFIG_H
  20. #define __CONFIG_H
  21. #include <asm/arch/regs-base.h>
  22. /*
  23. * SoC configurations
  24. */
  25. #define CONFIG_MX28 /* i.MX28 SoC */
  26. #define CONFIG_MXS_GPIO /* GPIO control */
  27. #define CONFIG_SYS_HZ 1000 /* Ticks per second */
  28. #define CONFIG_MACH_TYPE MACH_TYPE_MX28EVK
  29. #define CONFIG_SYS_NO_FLASH
  30. #define CONFIG_SYS_ICACHE_OFF
  31. #define CONFIG_SYS_DCACHE_OFF
  32. #define CONFIG_BOARD_EARLY_INIT_F
  33. #define CONFIG_ARCH_CPU_INIT
  34. #define CONFIG_ARCH_MISC_INIT
  35. /*
  36. * SPL
  37. */
  38. #define CONFIG_SPL
  39. #define CONFIG_SPL_NO_CPU_SUPPORT_CODE
  40. #define CONFIG_SPL_START_S_PATH "arch/arm/cpu/arm926ejs/mx28"
  41. #define CONFIG_SPL_LDSCRIPT "arch/arm/cpu/arm926ejs/mx28/u-boot-spl.lds"
  42. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  43. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  44. /*
  45. * U-Boot Commands
  46. */
  47. #include <config_cmd_default.h>
  48. #define CONFIG_DISPLAY_CPUINFO
  49. #define CONFIG_DOS_PARTITION
  50. #define CONFIG_CMD_FAT
  51. #define CONFIG_CMD_CACHE
  52. #define CONFIG_CMD_DATE
  53. #define CONFIG_CMD_DHCP
  54. #define CONFIG_CMD_GPIO
  55. #define CONFIG_CMD_MII
  56. #define CONFIG_CMD_MMC
  57. #define CONFIG_CMD_NET
  58. #define CONFIG_CMD_NFS
  59. #define CONFIG_CMD_PING
  60. #define CONFIG_CMD_USB
  61. /*
  62. * Memory configurations
  63. */
  64. #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
  65. #define PHYS_SDRAM_1 0x40000000 /* Base address */
  66. #define PHYS_SDRAM_1_SIZE 0x40000000 /* Max 1 GB RAM */
  67. #define CONFIG_STACKSIZE (128 * 1024) /* 128 KB stack */
  68. #define CONFIG_SYS_MALLOC_LEN 0x00400000 /* 4 MB for malloc */
  69. #define CONFIG_SYS_MEMTEST_START 0x40000000 /* Memtest start adr */
  70. #define CONFIG_SYS_MEMTEST_END 0x40400000 /* 4 MB RAM test */
  71. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  72. /* Point initial SP in SRAM so SPL can use it too. */
  73. #define CONFIG_SYS_INIT_RAM_ADDR 0x00002000
  74. #define CONFIG_SYS_INIT_RAM_SIZE (128 * 1024)
  75. #define CONFIG_SYS_INIT_SP_OFFSET \
  76. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  77. #define CONFIG_SYS_INIT_SP_ADDR \
  78. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  79. /*
  80. * We need to sacrifice first 4 bytes of RAM here to avoid triggering some
  81. * strange BUG in ROM corrupting first 4 bytes of RAM when loading U-Boot
  82. * binary. In case there was more of this mess, 0x100 bytes are skipped.
  83. */
  84. #define CONFIG_SYS_TEXT_BASE 0x40000100
  85. #define CONFIG_ENV_OVERWRITE
  86. /*
  87. * U-Boot general configurations
  88. */
  89. #define CONFIG_SYS_LONGHELP
  90. #define CONFIG_SYS_PROMPT "MX28EVK U-Boot > "
  91. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
  92. #define CONFIG_SYS_PBSIZE \
  93. (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  94. /* Print buffer size */
  95. #define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
  96. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  97. /* Boot argument buffer size */
  98. #define CONFIG_VERSION_VARIABLE /* U-BOOT version */
  99. #define CONFIG_AUTO_COMPLETE /* Command auto complete */
  100. #define CONFIG_CMDLINE_EDITING /* Command history etc */
  101. #define CONFIG_SYS_HUSH_PARSER
  102. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  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. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  112. /*
  113. * MMC Driver
  114. */
  115. #define CONFIG_ENV_IS_IN_MMC
  116. #define CONFIG_ENV_OFFSET (256 * 1024)
  117. #define CONFIG_ENV_SIZE (16 * 1024)
  118. #define CONFIG_SYS_MMC_ENV_DEV 0
  119. #define CONFIG_CMD_SAVEENV
  120. #ifdef CONFIG_CMD_MMC
  121. #define CONFIG_MMC
  122. #define CONFIG_GENERIC_MMC
  123. #define CONFIG_MXS_MMC
  124. #endif
  125. /*
  126. * Ethernet on SOC (FEC)
  127. */
  128. #ifdef CONFIG_CMD_NET
  129. #define CONFIG_NET_MULTI
  130. #define CONFIG_ETHPRIME "FEC0"
  131. #define CONFIG_FEC_MXC
  132. #define CONFIG_FEC_MXC_MULTI
  133. #define CONFIG_MII
  134. #define CONFIG_DISCOVER_PHY
  135. #define CONFIG_FEC_XCV_TYPE RMII
  136. #define CONFIG_MX28_FEC_MAC_IN_OCOTP
  137. #endif
  138. /*
  139. * RTC
  140. */
  141. #ifdef CONFIG_CMD_DATE
  142. #define CONFIG_RTC_MXS
  143. #endif
  144. /*
  145. * USB
  146. */
  147. #ifdef CONFIG_CMD_USB
  148. #define CONFIG_USB_EHCI
  149. #define CONFIG_USB_EHCI_MXS
  150. #define CONFIG_EHCI_MXS_PORT 1
  151. #define CONFIG_EHCI_IS_TDI
  152. #define CONFIG_USB_STORAGE
  153. #endif
  154. /*
  155. * Boot Linux
  156. */
  157. #define CONFIG_CMDLINE_TAG
  158. #define CONFIG_SETUP_MEMORY_TAGS
  159. #define CONFIG_BOOTDELAY 3
  160. #define CONFIG_BOOTFILE "uImage"
  161. #define CONFIG_BOOTCOMMAND "run bootcmd_net"
  162. #define CONFIG_LOADADDR 0x42000000
  163. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  164. /*
  165. * Extra Environments
  166. */
  167. #define CONFIG_EXTRA_ENV_SETTINGS \
  168. "console_fsl=console=ttyAM0" \
  169. "console_mainline=console=ttyAMA0" \
  170. "netargs=setenv bootargs console=${console_mainline}" \
  171. "root=/dev/nfs " \
  172. "ip=dhcp nfsroot=${serverip}:${nfsroot}\0" \
  173. "bootcmd_net=echo Booting from net ...; " \
  174. "run netargs; " \
  175. "dhcp ${uimage}; bootm\0" \
  176. #endif /* __CONFIG_H */