qong.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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/imx-regs.h>
  24. /* High Level Configuration Options */
  25. #define CONFIG_ARM1136 /* This is an arm1136 CPU core */
  26. #define CONFIG_MX31 /* in a mx31 */
  27. #define CONFIG_QONG
  28. #define CONFIG_DISPLAY_CPUINFO
  29. #define CONFIG_DISPLAY_BOARDINFO
  30. #define CONFIG_SYS_TEXT_BASE 0xa0000000
  31. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  32. #define CONFIG_SETUP_MEMORY_TAGS
  33. #define CONFIG_INITRD_TAG
  34. /*
  35. * Size of malloc() pool
  36. */
  37. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 1536 * 1024)
  38. /*
  39. * Hardware drivers
  40. */
  41. #define CONFIG_MXC_UART
  42. #define CONFIG_MXC_UART_BASE UART1_BASE
  43. #define CONFIG_MXC_GPIO
  44. #define CONFIG_HW_WATCHDOG
  45. #define CONFIG_MXC_SPI
  46. #define CONFIG_DEFAULT_SPI_BUS 1
  47. #define CONFIG_DEFAULT_SPI_MODE (SPI_MODE_0 | SPI_CS_HIGH)
  48. #define CONFIG_RTC_MC13XXX
  49. #define CONFIG_POWER
  50. #define CONFIG_POWER_SPI
  51. #define CONFIG_POWER_FSL
  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. #define CONFIG_FSL_PMIC_BITLEN 32
  57. /* FPGA */
  58. #define CONFIG_FPGA
  59. #define CONFIG_QONG_FPGA
  60. #define CONFIG_FPGA_BASE (CS1_BASE)
  61. #define CONFIG_FPGA_LATTICE
  62. #define CONFIG_FPGA_COUNT 1
  63. #ifdef CONFIG_QONG_FPGA
  64. /* Ethernet */
  65. #define CONFIG_DNET
  66. #define CONFIG_DNET_BASE (CS1_BASE + QONG_FPGA_PERIPH_SIZE)
  67. /* Framebuffer and LCD */
  68. #define CONFIG_VIDEO
  69. #define CONFIG_CFB_CONSOLE
  70. #define CONFIG_VIDEO_MX3
  71. #define CONFIG_VIDEO_LOGO
  72. #define CONFIG_VIDEO_SW_CURSOR
  73. #define CONFIG_VGA_AS_SINGLE_DEVICE
  74. #define CONFIG_SYS_CONSOLE_IS_IN_ENV
  75. #define CONFIG_SPLASH_SCREEN
  76. #define CONFIG_CMD_BMP
  77. #define CONFIG_BMP_16BPP
  78. #define CONFIG_VIDEO_BMP_GZIP
  79. #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (512 << 10)
  80. /* USB */
  81. #define CONFIG_CMD_USB
  82. #ifdef CONFIG_CMD_USB
  83. #define CONFIG_USB_EHCI /* Enable EHCI USB support */
  84. #define CONFIG_USB_EHCI_MXC
  85. #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
  86. #define CONFIG_MXC_USB_PORT 2
  87. #define CONFIG_MXC_USB_PORTSC (MXC_EHCI_MODE_ULPI | MXC_EHCI_UTMI_8BIT)
  88. #define CONFIG_MXC_USB_FLAGS MXC_EHCI_POWER_PINS_ENABLED
  89. #define CONFIG_EHCI_IS_TDI
  90. #define CONFIG_USB_STORAGE
  91. #define CONFIG_DOS_PARTITION
  92. #define CONFIG_SUPPORT_VFAT
  93. #define CONFIG_CMD_EXT2
  94. #define CONFIG_CMD_FAT
  95. #endif /* CONFIG_CMD_USB */
  96. /*
  97. * Reducing the ARP timeout from default 5 seconds to 200ms we speed up the
  98. * initial TFTP transfer, should the user wish one, significantly.
  99. */
  100. #define CONFIG_ARP_TIMEOUT 200UL
  101. #endif /* CONFIG_QONG_FPGA */
  102. #define CONFIG_CONS_INDEX 1
  103. #define CONFIG_BAUDRATE 115200
  104. /***********************************************************
  105. * Command definition
  106. ***********************************************************/
  107. #include <config_cmd_default.h>
  108. #define CONFIG_CMD_CACHE
  109. #define CONFIG_CMD_DATE
  110. #define CONFIG_CMD_DHCP
  111. #define CONFIG_CMD_MII
  112. #define CONFIG_CMD_NAND
  113. #define CONFIG_CMD_NET
  114. #define CONFIG_CMD_PING
  115. #define CONFIG_CMD_SETEXPR
  116. #define CONFIG_CMD_SPI
  117. #define CONFIG_CMD_UNZIP
  118. #define CONFIG_BOARD_LATE_INIT
  119. #define CONFIG_BOOTDELAY 5
  120. #define CONFIG_LOADADDR 0x80800000 /* loadaddr env var */
  121. #define CONFIG_EXTRA_ENV_SETTINGS \
  122. "netdev=eth0\0" \
  123. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  124. "nfsroot=${serverip}:${rootpath}\0" \
  125. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  126. "addip=setenv bootargs ${bootargs} " \
  127. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  128. ":${hostname}:${netdev}:off panic=1\0" \
  129. "addtty=setenv bootargs ${bootargs}" \
  130. " console=ttymxc0,${baudrate}\0" \
  131. "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
  132. "addmisc=setenv bootargs ${bootargs}\0" \
  133. "uboot_addr=A0000000\0" \
  134. "kernel_addr=A00C0000\0" \
  135. "ramdisk_addr=A0300000\0" \
  136. "u-boot=qong/u-boot.bin\0" \
  137. "kernel_addr_r=80800000\0" \
  138. "hostname=qong\0" \
  139. "bootfile=qong/uImage\0" \
  140. "rootpath=/opt/eldk-4.2-arm/armVFP\0" \
  141. "flash_self=run ramargs addip addtty addmtd addmisc;" \
  142. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  143. "flash_nfs=run nfsargs addip addtty addmtd addmisc;" \
  144. "bootm ${kernel_addr}\0" \
  145. "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
  146. "run nfsargs addip addtty addmtd addmisc;" \
  147. "bootm\0" \
  148. "bootcmd=run flash_self\0" \
  149. "load=tftp ${loadaddr} ${u-boot}\0" \
  150. "update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE) \
  151. " +${filesize};era " __stringify(CONFIG_SYS_MONITOR_BASE)\
  152. " +${filesize};cp.b ${fileaddr} " \
  153. __stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
  154. "upd=run load update\0" \
  155. "videomode=video=ctfb:x:640,y:480,depth:16,mode:0,pclk:40000," \
  156. "le:120,ri:40,up:35,lo:10,hs:30,vs:3,sync:100663296," \
  157. "vmode:0\0" \
  158. /*
  159. * Miscellaneous configurable options
  160. */
  161. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  162. #define CONFIG_SYS_PROMPT "=> "
  163. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  164. /* Print Buffer Size */
  165. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  166. sizeof(CONFIG_SYS_PROMPT) + 16)
  167. #define CONFIG_SYS_MAXARGS 32 /* max number of command args */
  168. /* Boot Argument Buffer Size */
  169. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  170. /* memtest works on first 255MB of RAM */
  171. #define CONFIG_SYS_MEMTEST_START PHYS_SDRAM_1
  172. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0xff000000)
  173. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  174. #define CONFIG_SYS_HZ 1000
  175. #define CONFIG_CMDLINE_EDITING
  176. #define CONFIG_SYS_HUSH_PARSER /* Use the HUSH parser */
  177. #define CONFIG_MISC_INIT_R
  178. /*-----------------------------------------------------------------------
  179. * Physical Memory Map
  180. */
  181. #define CONFIG_NR_DRAM_BANKS 1
  182. #define PHYS_SDRAM_1 CSD0_BASE
  183. #define PHYS_SDRAM_1_SIZE 0x10000000 /* 256 MB */
  184. /*
  185. * NAND driver
  186. */
  187. #ifndef __ASSEMBLY__
  188. extern void qong_nand_plat_init(void *chip);
  189. extern int qong_nand_rdy(void *chip);
  190. #endif
  191. #define CONFIG_NAND_PLAT
  192. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  193. #define CONFIG_SYS_NAND_BASE CS3_BASE
  194. #define NAND_PLAT_INIT() qong_nand_plat_init(nand)
  195. #define QONG_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 24))
  196. #define QONG_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 23))
  197. #define QONG_NAND_WRITE(addr, cmd) \
  198. do { \
  199. __REG8(addr) = cmd; \
  200. } while (0)
  201. #define NAND_PLAT_WRITE_CMD(chip, cmd) QONG_NAND_WRITE(QONG_NAND_CLE(chip), cmd)
  202. #define NAND_PLAT_WRITE_ADR(chip, cmd) QONG_NAND_WRITE(QONG_NAND_ALE(chip), cmd)
  203. #define NAND_PLAT_DEV_READY(chip) (qong_nand_rdy(chip))
  204. /*-----------------------------------------------------------------------
  205. * FLASH and environment organization
  206. */
  207. #define CONFIG_SYS_FLASH_BASE CS0_BASE
  208. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  209. /* max number of sectors on one chip */
  210. #define CONFIG_SYS_MAX_FLASH_SECT 1024
  211. /* Monitor at beginning of flash */
  212. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  213. #define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256KiB */
  214. #define CONFIG_ENV_IS_IN_FLASH
  215. #define CONFIG_ENV_SECT_SIZE 0x20000
  216. #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
  217. #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x80000)
  218. /* Address and size of Redundant Environment Sector */
  219. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
  220. #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
  221. /*-----------------------------------------------------------------------
  222. * CFI FLASH driver setup
  223. */
  224. /* Flash memory is CFI compliant */
  225. #define CONFIG_SYS_FLASH_CFI
  226. /* Use drivers/cfi_flash.c */
  227. #define CONFIG_FLASH_CFI_DRIVER
  228. /* Use buffered writes (~10x faster) */
  229. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
  230. /* Use hardware sector protection */
  231. #define CONFIG_SYS_FLASH_PROTECTION
  232. /*
  233. * Filesystem
  234. */
  235. #define CONFIG_CMD_JFFS2
  236. #define CONFIG_CMD_UBI
  237. #define CONFIG_CMD_UBIFS
  238. #define CONFIG_RBTREE
  239. #define CONFIG_MTD_PARTITIONS
  240. #define CONFIG_CMD_MTDPARTS
  241. #define CONFIG_LZO
  242. #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
  243. #define CONFIG_FLASH_CFI_MTD
  244. #define MTDIDS_DEFAULT "nor0=physmap-flash.0," \
  245. "nand0=gen_nand"
  246. #define MTDPARTS_DEFAULT \
  247. "mtdparts=physmap-flash.0:" \
  248. "512k(U-Boot),128k(env1),128k(env2)," \
  249. "2304k(kernel),13m(ramdisk),-(user);" \
  250. "gen_nand:" \
  251. "128m(nand)"
  252. /* additions for new relocation code, must be added to all boards */
  253. #define CONFIG_SYS_SDRAM_BASE 0x80000000
  254. #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
  255. #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
  256. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  257. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)
  258. #define CONFIG_BOARD_EARLY_INIT_F
  259. #endif /* __CONFIG_H */