imx27lite.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /*
  2. * Copyright (C) 2009 Ilya Yanok <yanok@emcraft.com>
  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 __CONFIG_H
  20. #define __CONFIG_H
  21. /*
  22. * SoC Configuration
  23. */
  24. #define CONFIG_ARM926EJS /* arm926ejs CPU core */
  25. #define CONFIG_MX27
  26. #define CONFIG_IMX27LITE
  27. #define CONFIG_MX27_CLK32 32768 /* OSC32K frequency */
  28. #define CONFIG_SYS_HZ 1000
  29. #define CONFIG_DISPLAY_CPUINFO
  30. #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
  31. #define CONFIG_SETUP_MEMORY_TAGS 1
  32. #define CONFIG_INITRD_TAG 1
  33. /*
  34. * Lowlevel configuration
  35. */
  36. #define SDRAM_ESDCFG_REGISTER_VAL(cas) \
  37. (ESDCFG_TRC(10) | \
  38. ESDCFG_TRCD(3) | \
  39. ESDCFG_TCAS(cas) | \
  40. ESDCFG_TRRD(1) | \
  41. ESDCFG_TRAS(5) | \
  42. ESDCFG_TWR | \
  43. ESDCFG_TMRD(2) | \
  44. ESDCFG_TRP(2) | \
  45. ESDCFG_TXP(3))
  46. #define SDRAM_ESDCTL_REGISTER_VAL \
  47. (ESDCTL_PRCT(0) | \
  48. ESDCTL_BL | \
  49. ESDCTL_PWDT(0) | \
  50. ESDCTL_SREFR(3) | \
  51. ESDCTL_DSIZ_32 | \
  52. ESDCTL_COL10 | \
  53. ESDCTL_ROW13 | \
  54. ESDCTL_SDE)
  55. #define SDRAM_ALL_VAL 0xf00
  56. #define SDRAM_MODE_REGISTER_VAL 0x33 /* BL: 8, CAS: 3 */
  57. #define SDRAM_EXT_MODE_REGISTER_VAL 0x1000000
  58. #define MPCTL0_VAL 0x1ef15d5
  59. #define SPCTL0_VAL 0x043a1c09
  60. #define CSCR_VAL 0x33f08107
  61. #define PCDR0_VAL 0x120470c3
  62. #define PCDR1_VAL 0x03030303
  63. #define PCCR0_VAL 0xffffffff
  64. #define PCCR1_VAL 0xfffffffc
  65. #define AIPI1_PSR0_VAL 0x20040304
  66. #define AIPI1_PSR1_VAL 0xdffbfcfb
  67. #define AIPI2_PSR0_VAL 0x07ffc200
  68. #define AIPI2_PSR1_VAL 0xffffffff
  69. /*
  70. * Memory Info
  71. */
  72. /* malloc() len */
  73. #define CONFIG_SYS_MALLOC_LEN (0x10000 + 512 * 1024)
  74. /* reserved for initial data */
  75. #define CONFIG_SYS_GBL_DATA_SIZE 128
  76. /* memtest start address */
  77. #define CONFIG_SYS_MEMTEST_START 0xA0000000
  78. #define CONFIG_SYS_MEMTEST_END 0xA1000000 /* 16MB RAM test */
  79. #define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
  80. #define CONFIG_STACKSIZE (256 * 1024) /* regular stack */
  81. #define PHYS_SDRAM_1 0xA0000000 /* DDR Start */
  82. #define PHYS_SDRAM_1_SIZE 0x08000000 /* DDR size 128MB */
  83. /*
  84. * Serial Driver info
  85. */
  86. #define CONFIG_MXC_UART
  87. #define CONFIG_SYS_MX27_UART1
  88. #define CONFIG_CONS_INDEX 1 /* use UART0 for console */
  89. #define CONFIG_BAUDRATE 115200 /* Default baud rate */
  90. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  91. /*
  92. * Flash & Environment
  93. */
  94. #define CONFIG_ENV_IS_IN_FLASH
  95. #define CONFIG_FLASH_CFI_DRIVER
  96. #define CONFIG_SYS_FLASH_CFI
  97. /* Use buffered writes (~10x faster) */
  98. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
  99. /* Use hardware sector protection */
  100. #define CONFIG_SYS_FLASH_PROTECTION 1
  101. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of flash banks */
  102. #define CONFIG_SYS_FLASH_SECT_SZ 0x2000 /* 8KB sect size Intel Flash */
  103. /* end of flash */
  104. #define CONFIG_ENV_OFFSET (PHYS_FLASH_SIZE - 0x20000)
  105. /* CS2 Base address */
  106. #define PHYS_FLASH_1 0xc0000000
  107. /* Flash Base for U-Boot */
  108. #define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
  109. /* Flash size 2MB */
  110. #define PHYS_FLASH_SIZE 0x200000
  111. #define CONFIG_SYS_MAX_FLASH_SECT (PHYS_FLASH_SIZE / \
  112. CONFIG_SYS_FLASH_SECT_SZ)
  113. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  114. #define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256KiB */
  115. #define CONFIG_ENV_SECT_SIZE 0x10000 /* Env sector Size */
  116. #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
  117. /* Address and size of Redundant Environment Sector */
  118. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
  119. #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
  120. /*
  121. * Ethernet
  122. */
  123. #define CONFIG_FEC_MXC
  124. #define CONFIG_FEC_MXC_PHYADDR 0x1f
  125. #define CONFIG_MII
  126. #define CONFIG_NET_MULTI
  127. /*
  128. * MTD
  129. */
  130. #define CONFIG_MTD_DEVICE
  131. /*
  132. * NAND
  133. */
  134. #define CONFIG_NAND_MXC
  135. #define CONFIG_MXC_NAND_REGS_BASE 0xd8000000
  136. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  137. #define CONFIG_SYS_NAND_BASE 0xd8000000
  138. #define CONFIG_JFFS2_NAND
  139. #define CONFIG_MXC_NAND_HWECC
  140. #define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */
  141. /*
  142. * SD/MMC
  143. */
  144. #define CONFIG_MMC
  145. #define CONFIG_GENERIC_MMC
  146. #define CONFIG_MXC_MMC
  147. #define CONFIG_MXC_MCI_REGS_BASE 0x10014000
  148. #define CONFIG_DOS_PARTITION
  149. /*
  150. * MTD partitions
  151. */
  152. #define CONFIG_CMD_MTDPARTS
  153. #define MTDIDS_DEFAULT "nor0=physmap-flash.0,nand0=mxc_nand.0"
  154. #define MTDPARTS_DEFAULT \
  155. "mtdparts=" \
  156. "physmap-flash.0:" \
  157. "256k(U-Boot)," \
  158. "1664k(user)," \
  159. "64k(env1)," \
  160. "64k(env2);" \
  161. "mxc_nand.0:" \
  162. "128k(IPL-SPL)," \
  163. "4m(kernel)," \
  164. "22m(rootfs)," \
  165. "-(userfs)"
  166. /*
  167. * U-Boot general configuration
  168. */
  169. #define CONFIG_BOOTFILE "uImage" /* Boot file name */
  170. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  171. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  172. /* Print buffer sz */
  173. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  174. sizeof(CONFIG_SYS_PROMPT) + 16)
  175. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  176. /* Boot Argument Buffer Size */
  177. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  178. #define CONFIG_CMDLINE_EDITING
  179. #define CONFIG_SYS_LONGHELP
  180. /*
  181. * U-Boot commands
  182. */
  183. #include <config_cmd_default.h>
  184. #define CONFIG_CMD_ASKENV
  185. #define CONFIG_CMD_DHCP
  186. #define CONFIG_CMD_DIAG
  187. #define CONFIG_CMD_FAT
  188. #define CONFIG_CMD_JFFS2
  189. #define CONFIG_CMD_MII
  190. #define CONFIG_CMD_MMC
  191. #define CONFIG_CMD_NAND
  192. #define CONFIG_CMD_PING
  193. #define CONFIG_BOOTDELAY 5
  194. #define CONFIG_LOADADDR 0xa0800000 /* loadaddr env var */
  195. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  196. #define xstr(s) str(s)
  197. #define str(s) #s
  198. #define CONFIG_EXTRA_ENV_SETTINGS \
  199. "netdev=eth0\0" \
  200. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  201. "nfsroot=${serverip}:${rootpath}\0" \
  202. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  203. "addip=setenv bootargs ${bootargs} " \
  204. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  205. ":${hostname}:${netdev}:off panic=1\0" \
  206. "addtty=setenv bootargs ${bootargs}" \
  207. " console=ttymxc0,${baudrate}\0" \
  208. "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
  209. "addmisc=setenv bootargs ${bootargs}\0" \
  210. "u-boot=imx27/u-boot.bin\0" \
  211. "kernel_addr_r=a0800000\0" \
  212. "hostname=imx27\0" \
  213. "bootfile=imx27/uImage\0" \
  214. "rootpath=/opt/eldk-4.2-arm/arm\0" \
  215. "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
  216. "run nfsargs addip addtty addmtd addmisc;" \
  217. "bootm\0" \
  218. "bootcmd=run net_nfs\0" \
  219. "load=tftp ${loadaddr} ${u-boot}\0" \
  220. "update=protect off " xstr(CONFIG_SYS_MONITOR_BASE) \
  221. " +${filesize};era " xstr(CONFIG_SYS_MONITOR_BASE) \
  222. " +${filesize};cp.b ${fileaddr} " \
  223. xstr(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
  224. "upd=run load update\0" \
  225. #endif /* __CONFIG_H */