qong.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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 + 128 * 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_MX31_UART 1
  45. #define CONFIG_SYS_MX31_UART1 1
  46. /* FPGA */
  47. #define CONFIG_QONG_FPGA 1
  48. #define CONFIG_FPGA_BASE (CS1_BASE)
  49. #ifdef CONFIG_QONG_FPGA
  50. /* Ethernet */
  51. #define CONFIG_DNET 1
  52. #define CONFIG_DNET_BASE (CS1_BASE + QONG_FPGA_PERIPH_SIZE)
  53. #define CONFIG_NET_MULTI 1
  54. /*
  55. * Reducing the ARP timeout from default 5 seconds to 200ms we speed up the
  56. * initial TFTP transfer, should the user wish one, significantly.
  57. */
  58. #define CONFIG_ARP_TIMEOUT 200UL
  59. #endif /* CONFIG_QONG_FPGA */
  60. #define CONFIG_CONS_INDEX 1
  61. #define CONFIG_BAUDRATE 115200
  62. #define CONFIG_SYS_BAUDRATE_TABLE {9600, 19200, 38400, 57600, 115200}
  63. /***********************************************************
  64. * Command definition
  65. ***********************************************************/
  66. #include <config_cmd_default.h>
  67. #define CONFIG_CMD_PING
  68. #define CONFIG_CMD_DHCP
  69. #define CONFIG_CMD_NET
  70. #define CONFIG_CMD_MII
  71. /*
  72. * You can compile in a MAC address and your custom net settings by using
  73. * the following syntax.
  74. *
  75. * #define CONFIG_ETHADDR xx:xx:xx:xx:xx:xx
  76. * #define CONFIG_SERVERIP <server ip>
  77. * #define CONFIG_IPADDR <board ip>
  78. * #define CONFIG_GATEWAYIP <gateway ip>
  79. * #define CONFIG_NETMASK <your netmask>
  80. */
  81. #define CONFIG_BOOTDELAY 5
  82. #define CONFIG_LOADADDR 0x80800000 /* loadaddr env var */
  83. #define xstr(s) str(s)
  84. #define str(s) #s
  85. #define CONFIG_EXTRA_ENV_SETTINGS \
  86. "netdev=eth0\0" \
  87. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  88. "nfsroot=${serverip}:${rootpath}\0" \
  89. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  90. "addip=setenv bootargs ${bootargs} " \
  91. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  92. ":${hostname}:${netdev}:off panic=1\0" \
  93. "addtty=setenv bootargs ${bootargs}" \
  94. " console=ttymxc0,${baudrate}\0" \
  95. "addmisc=setenv bootargs ${bootargs}\0" \
  96. "uboot_addr=a0000000\0" \
  97. "kernel_addr=a0080000\0" \
  98. "ramdisk_addr=a0300000\0" \
  99. "uboot=qong/u-boot.bin\0" \
  100. "kernel_addr_r=80800000\0" \
  101. "hostname=qong\0" \
  102. "bootfile=qong/uImage\0" \
  103. "rootpath=/opt/eldk-4.2-arm/armVFP\0" \
  104. "flash_self=run ramargs addip addtty addmisc;" \
  105. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  106. "flash_nfs=run nfsargs addip addtty addmisc;" \
  107. "bootm ${kernel_addr}\0" \
  108. "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
  109. "run nfsargs addip addtty addmisc;" \
  110. "bootm\0" \
  111. "load=tftp ${loadaddr} ${uboot}\0" \
  112. "update=protect off " xstr(CONFIG_SYS_MONITOR_BASE) \
  113. " +${filesize};era " xstr(CONFIG_SYS_MONITOR_BASE) \
  114. " +${filesize};cp.b ${fileaddr} " \
  115. xstr(CONFIG_SYS_MONITOR_BASE) " ${filesize};" \
  116. "setenv filesize;saveenv\0" \
  117. "upd=run load update\0" \
  118. /*
  119. * Miscellaneous configurable options
  120. */
  121. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  122. #define CONFIG_SYS_PROMPT "=> "
  123. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  124. /* Print Buffer Size */
  125. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  126. sizeof(CONFIG_SYS_PROMPT) + 16)
  127. #define CONFIG_SYS_MAXARGS 32 /* max number of command args */
  128. /* Boot Argument Buffer Size */
  129. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  130. /* memtest works on first 255MB of RAM */
  131. #define CONFIG_SYS_MEMTEST_START PHYS_SDRAM_1
  132. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0xff000000)
  133. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  134. #define CONFIG_SYS_HZ 1000
  135. #define CONFIG_CMDLINE_EDITING 1
  136. #define CONFIG_MISC_INIT_R 1
  137. /*-----------------------------------------------------------------------
  138. * Stack sizes
  139. *
  140. * The stack sizes are set up in start.S using the settings below
  141. */
  142. #define CONFIG_STACKSIZE (128 * 1024) /* regular stack */
  143. /*-----------------------------------------------------------------------
  144. * Physical Memory Map
  145. */
  146. #define CONFIG_NR_DRAM_BANKS 1
  147. #define PHYS_SDRAM_1 CSD0_BASE
  148. #define PHYS_SDRAM_1_SIZE 0x10000000 /* 256 MB */
  149. /*-----------------------------------------------------------------------
  150. * FLASH and environment organization
  151. */
  152. #define CONFIG_SYS_FLASH_BASE CS0_BASE
  153. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  154. /* max number of sectors on one chip */
  155. #define CONFIG_SYS_MAX_FLASH_SECT 1024
  156. /* Monitor at beginning of flash */
  157. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  158. #define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256KiB */
  159. #define CONFIG_ENV_IS_IN_FLASH 1
  160. #define CONFIG_ENV_SECT_SIZE 0x20000
  161. #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
  162. #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x40000)
  163. /* Address and size of Redundant Environment Sector */
  164. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
  165. #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
  166. /*-----------------------------------------------------------------------
  167. * CFI FLASH driver setup
  168. */
  169. /* Flash memory is CFI compliant */
  170. #define CONFIG_SYS_FLASH_CFI 1
  171. /* Use drivers/cfi_flash.c */
  172. #define CONFIG_FLASH_CFI_DRIVER 1
  173. /* Use buffered writes (~10x faster) */
  174. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
  175. /* Use hardware sector protection */
  176. #define CONFIG_SYS_FLASH_PROTECTION 1
  177. /*
  178. * JFFS2 partitions
  179. */
  180. #define CONFIG_JFFS2_CMDLINE
  181. #endif /* __CONFIG_H */