qong.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /*
  2. * Copyright (C) 2009, Ilya Yanok, Emcraft Systems, <yanok@emcraft.com>
  3. *
  4. * Configuration settings for the Dave/DENX QongEVB-LITE board.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  19. * MA 02111-1307 USA
  20. */
  21. #ifndef __CONFIG_H
  22. #define __CONFIG_H
  23. #include <asm/arch/mx31-regs.h>
  24. /* High Level Configuration Options */
  25. #define CONFIG_ARM1136 1 /* This is an arm1136 CPU core */
  26. #define CONFIG_MX31 1 /* in a mx31 */
  27. #define CONFIG_QONG 1
  28. #define CONFIG_MX31_HCLK_FREQ 26000000 /* 26MHz */
  29. #define CONFIG_MX31_CLK32 32768
  30. #define CONFIG_DISPLAY_CPUINFO
  31. #define CONFIG_DISPLAY_BOARDINFO
  32. #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
  33. #define CONFIG_SETUP_MEMORY_TAGS 1
  34. #define CONFIG_INITRD_TAG 1
  35. /*
  36. * Size of malloc() pool
  37. */
  38. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 1024 * 1024)
  39. /* size in bytes reserved for initial data */
  40. #define CONFIG_SYS_GBL_DATA_SIZE 128
  41. /*
  42. * Hardware drivers
  43. */
  44. #define CONFIG_MXC_UART 1
  45. #define CONFIG_SYS_MX31_UART1 1
  46. #define CONFIG_MXC_GPIO
  47. #define CONFIG_MXC_SPI
  48. #define CONFIG_DEFAULT_SPI_BUS 1
  49. #define CONFIG_DEFAULT_SPI_MODE (SPI_MODE_0 | SPI_CS_HIGH)
  50. #define CONFIG_RTC_MC13783
  51. #define CONFIG_FSL_PMIC
  52. #define CONFIG_FSL_PMIC_BUS 1
  53. #define CONFIG_FSL_PMIC_CS 0
  54. #define CONFIG_FSL_PMIC_CLK 100000
  55. #define CONFIG_FSL_PMIC_MODE (SPI_MODE_0 | SPI_CS_HIGH)
  56. /* FPGA */
  57. #define CONFIG_FPGA
  58. #define CONFIG_QONG_FPGA 1
  59. #define CONFIG_FPGA_BASE (CS1_BASE)
  60. #define CONFIG_FPGA_LATTICE
  61. #define CONFIG_FPGA_COUNT 1
  62. #ifdef CONFIG_QONG_FPGA
  63. /* Ethernet */
  64. #define CONFIG_DNET 1
  65. #define CONFIG_DNET_BASE (CS1_BASE + QONG_FPGA_PERIPH_SIZE)
  66. #define CONFIG_NET_MULTI 1
  67. /* Framebuffer and LCD */
  68. #define CONFIG_LCD
  69. #define CONFIG_VIDEO_MX3
  70. #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
  71. #define CONFIG_SYS_CONSOLE_IS_IN_ENV
  72. #define LCD_BPP LCD_COLOR16
  73. #define CONFIG_SPLASH_SCREEN
  74. #define CONFIG_CMD_BMP
  75. #define CONFIG_BMP_16BPP
  76. #define CONFIG_DISPLAY_COM57H5M10XRC
  77. /* USB */
  78. #define CONFIG_CMD_USB
  79. #ifdef CONFIG_CMD_USB
  80. #define CONFIG_USB_EHCI /* Enable EHCI USB support */
  81. #define CONFIG_USB_EHCI_MXC
  82. #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
  83. #define CONFIG_MXC_USB_PORT 2
  84. #define CONFIG_MXC_USB_PORTSC (MXC_EHCI_MODE_ULPI | MXC_EHCI_UTMI_8BIT)
  85. #define CONFIG_MXC_USB_FLAGS MXC_EHCI_POWER_PINS_ENABLED
  86. #define CONFIG_EHCI_IS_TDI
  87. #define CONFIG_USB_STORAGE
  88. #define CONFIG_DOS_PARTITION
  89. #define CONFIG_SUPPORT_VFAT
  90. #define CONFIG_CMD_FAT
  91. #endif /* CONFIG_CMD_USB */
  92. /*
  93. * Reducing the ARP timeout from default 5 seconds to 200ms we speed up the
  94. * initial TFTP transfer, should the user wish one, significantly.
  95. */
  96. #define CONFIG_ARP_TIMEOUT 200UL
  97. #endif /* CONFIG_QONG_FPGA */
  98. #define CONFIG_CONS_INDEX 1
  99. #define CONFIG_BAUDRATE 115200
  100. #define CONFIG_SYS_BAUDRATE_TABLE {9600, 19200, 38400, 57600, 115200}
  101. /***********************************************************
  102. * Command definition
  103. ***********************************************************/
  104. #include <config_cmd_default.h>
  105. #define CONFIG_CMD_CACHE
  106. #define CONFIG_CMD_PING
  107. #define CONFIG_CMD_DHCP
  108. #define CONFIG_CMD_NET
  109. #define CONFIG_CMD_MII
  110. #define CONFIG_CMD_NAND
  111. #define CONFIG_CMD_SPI
  112. #define CONFIG_CMD_DATE
  113. #define BOARD_LATE_INIT
  114. /*
  115. * You can compile in a MAC address and your custom net settings by using
  116. * the following syntax.
  117. *
  118. * #define CONFIG_ETHADDR xx:xx:xx:xx:xx:xx
  119. * #define CONFIG_SERVERIP <server ip>
  120. * #define CONFIG_IPADDR <board ip>
  121. * #define CONFIG_GATEWAYIP <gateway ip>
  122. * #define CONFIG_NETMASK <your netmask>
  123. */
  124. #define CONFIG_BOOTDELAY 5
  125. #define CONFIG_LOADADDR 0x80800000 /* loadaddr env var */
  126. #define xstr(s) str(s)
  127. #define str(s) #s
  128. #define CONFIG_EXTRA_ENV_SETTINGS \
  129. "netdev=eth0\0" \
  130. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  131. "nfsroot=${serverip}:${rootpath}\0" \
  132. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  133. "addip=setenv bootargs ${bootargs} " \
  134. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  135. ":${hostname}:${netdev}:off panic=1\0" \
  136. "addtty=setenv bootargs ${bootargs}" \
  137. " console=ttymxc0,${baudrate}\0" \
  138. "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
  139. "addmisc=setenv bootargs ${bootargs}\0" \
  140. "uboot_addr=A0000000\0" \
  141. "kernel_addr=A00A0000\0" \
  142. "ramdisk_addr=A0300000\0" \
  143. "u-boot=qong/u-boot.bin\0" \
  144. "kernel_addr_r=80800000\0" \
  145. "hostname=qong\0" \
  146. "bootfile=qong/uImage\0" \
  147. "rootpath=/opt/eldk-4.2-arm/armVFP\0" \
  148. "flash_self=run ramargs addip addtty addmtd addmisc;" \
  149. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  150. "flash_nfs=run nfsargs addip addtty addmtd addmisc;" \
  151. "bootm ${kernel_addr}\0" \
  152. "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
  153. "run nfsargs addip addtty addmtd addmisc;" \
  154. "bootm\0" \
  155. "bootcmd=run flash_self\0" \
  156. "load=tftp ${loadaddr} ${u-boot}\0" \
  157. "update=protect off " xstr(CONFIG_SYS_MONITOR_BASE) \
  158. " +${filesize};era " xstr(CONFIG_SYS_MONITOR_BASE) \
  159. " +${filesize};cp.b ${fileaddr} " \
  160. xstr(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
  161. "upd=run load update\0" \
  162. /*
  163. * Miscellaneous configurable options
  164. */
  165. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  166. #define CONFIG_SYS_PROMPT "=> "
  167. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  168. /* Print Buffer Size */
  169. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  170. sizeof(CONFIG_SYS_PROMPT) + 16)
  171. #define CONFIG_SYS_MAXARGS 32 /* max number of command args */
  172. /* Boot Argument Buffer Size */
  173. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  174. /* memtest works on first 255MB of RAM */
  175. #define CONFIG_SYS_MEMTEST_START PHYS_SDRAM_1
  176. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0xff000000)
  177. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  178. #define CONFIG_SYS_HZ 1000
  179. #define CONFIG_CMDLINE_EDITING 1
  180. #define CONFIG_SYS_HUSH_PARSER 1 /* Use the HUSH parser */
  181. #ifdef CONFIG_SYS_HUSH_PARSER
  182. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  183. #endif
  184. #define CONFIG_MISC_INIT_R 1
  185. /*-----------------------------------------------------------------------
  186. * Stack sizes
  187. *
  188. * The stack sizes are set up in start.S using the settings below
  189. */
  190. #define CONFIG_STACKSIZE (128 * 1024) /* regular stack */
  191. /*-----------------------------------------------------------------------
  192. * Physical Memory Map
  193. */
  194. #define CONFIG_NR_DRAM_BANKS 1
  195. #define PHYS_SDRAM_1 CSD0_BASE
  196. #define PHYS_SDRAM_1_SIZE 0x10000000 /* 256 MB */
  197. /*
  198. * NAND driver
  199. */
  200. #ifndef __ASSEMBLY__
  201. extern void qong_nand_plat_init(void *chip);
  202. extern int qong_nand_rdy(void *chip);
  203. #endif
  204. #define CONFIG_NAND_PLAT
  205. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  206. #define CONFIG_SYS_NAND_BASE CS3_BASE
  207. #define NAND_PLAT_INIT() qong_nand_plat_init(nand)
  208. #define QONG_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 24))
  209. #define QONG_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 23))
  210. #define QONG_NAND_WRITE(addr, cmd) \
  211. do { \
  212. __REG8(addr) = cmd; \
  213. } while (0)
  214. #define NAND_PLAT_WRITE_CMD(chip, cmd) QONG_NAND_WRITE(QONG_NAND_CLE(chip), cmd)
  215. #define NAND_PLAT_WRITE_ADR(chip, cmd) QONG_NAND_WRITE(QONG_NAND_ALE(chip), cmd)
  216. #define NAND_PLAT_DEV_READY(chip) (qong_nand_rdy(chip))
  217. /*-----------------------------------------------------------------------
  218. * FLASH and environment organization
  219. */
  220. #define CONFIG_SYS_FLASH_BASE CS0_BASE
  221. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  222. /* max number of sectors on one chip */
  223. #define CONFIG_SYS_MAX_FLASH_SECT 1024
  224. /* Monitor at beginning of flash */
  225. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  226. #define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256KiB */
  227. #define CONFIG_ENV_IS_IN_FLASH 1
  228. #define CONFIG_ENV_SECT_SIZE 0x20000
  229. #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
  230. #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x80000)
  231. /* Address and size of Redundant Environment Sector */
  232. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
  233. #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
  234. /*-----------------------------------------------------------------------
  235. * CFI FLASH driver setup
  236. */
  237. /* Flash memory is CFI compliant */
  238. #define CONFIG_SYS_FLASH_CFI 1
  239. /* Use drivers/cfi_flash.c */
  240. #define CONFIG_FLASH_CFI_DRIVER 1
  241. /* Use buffered writes (~10x faster) */
  242. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
  243. /* Use hardware sector protection */
  244. #define CONFIG_SYS_FLASH_PROTECTION 1
  245. /*
  246. * Filesystem
  247. */
  248. #define CONFIG_CMD_JFFS2
  249. #define CONFIG_CMD_UBI
  250. #define CONFIG_CMD_UBIFS
  251. #define CONFIG_RBTREE
  252. #define CONFIG_MTD_PARTITIONS
  253. #define CONFIG_CMD_MTDPARTS
  254. #define CONFIG_LZO
  255. #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
  256. #define CONFIG_FLASH_CFI_MTD
  257. #define MTDIDS_DEFAULT "nor0=physmap-flash.0"
  258. #define MTDPARTS_DEFAULT \
  259. "mtdparts=physmap-flash.0:384k(U-Boot),128k(env1)," \
  260. "128k(env2),2432k(kernel),13m(ramdisk),-(user)"
  261. /* additions for new relocation code, must be added to all boards */
  262. #define CONFIG_SYS_SDRAM_BASE 0x80000000
  263. #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
  264. #define CONFIG_SYS_INIT_RAM_END IRAM_SIZE
  265. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  266. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)
  267. #define CONFIG_BOARD_EARLY_INIT_F 1
  268. #endif /* __CONFIG_H */