ixdpg425.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /*
  2. * (C) Copyright 2005-2006
  3. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. *
  5. * (C) Copyright 2003
  6. * Martijn de Gouw, Prodrive B.V., martijn.de.gouw@prodrive.nl
  7. *
  8. * Configuation settings for the IXDPG425 board.
  9. *
  10. * See file CREDITS for list of people who contributed to this
  11. * project.
  12. *
  13. * This program is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU General Public License as
  15. * published by the Free Software Foundation; either version 2 of
  16. * the License, or (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  26. * MA 02111-1307 USA
  27. */
  28. #ifndef __CONFIG_H
  29. #define __CONFIG_H
  30. /*
  31. * High Level Configuration Options
  32. * (easy to change)
  33. */
  34. #define CONFIG_IXP425 1 /* This is an IXP425 CPU */
  35. #define CONFIG_IXDPG425 1 /* on an IXDPG425 Board */
  36. #define CONFIG_DISPLAY_CPUINFO 1 /* display cpu info (and speed) */
  37. #define CONFIG_DISPLAY_BOARDINFO 1 /* display board info */
  38. /*
  39. * Ethernet
  40. */
  41. #define CONFIG_IXP4XX_NPE 1 /* include IXP4xx NPE support */
  42. #define CONFIG_NET_MULTI 1
  43. #define CONFIG_PHY_ADDR 5 /* NPE0 PHY address */
  44. #define CONFIG_HAS_ETH1
  45. #define CONFIG_PHY1_ADDR 4 /* NPE1 PHY address */
  46. #define CONFIG_MII 1 /* MII PHY management */
  47. #define CONFIG_SYS_RX_ETH_BUFFER 16 /* Number of ethernet rx buffers & descriptors */
  48. /*
  49. * Misc configuration options
  50. */
  51. #undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */
  52. #define CONFIG_USE_IRQ 1 /* we need IRQ stuff for timer */
  53. #define CONFIG_TIMER_IRQ
  54. #define CONFIG_BOOTCOUNT_LIMIT /* support for bootcount limit */
  55. #define CONFIG_SYS_BOOTCOUNT_ADDR 0x60003000 /* inside qmrg sram */
  56. #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
  57. #define CONFIG_SETUP_MEMORY_TAGS 1
  58. #define CONFIG_INITRD_TAG 1
  59. /*
  60. * Size of malloc() pool
  61. */
  62. #define CONFIG_SYS_MALLOC_LEN (256 << 10)
  63. #define CONFIG_SYS_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
  64. /* allow to overwrite serial and ethaddr */
  65. #define CONFIG_ENV_OVERWRITE
  66. #define CONFIG_IXP_SERIAL
  67. #define CONFIG_BAUDRATE 115200
  68. #define CONFIG_SYS_IXP425_CONSOLE IXP425_UART1 /* we use UART1 for console */
  69. /*
  70. * BOOTP options
  71. */
  72. #define CONFIG_BOOTP_BOOTFILESIZE
  73. #define CONFIG_BOOTP_BOOTPATH
  74. #define CONFIG_BOOTP_GATEWAY
  75. #define CONFIG_BOOTP_HOSTNAME
  76. /*
  77. * Command line configuration.
  78. */
  79. #include <config_cmd_default.h>
  80. #define CONFIG_CMD_DHCP
  81. #define CONFIG_CMD_ELF
  82. #define CONFIG_CMD_NET
  83. #define CONFIG_CMD_MII
  84. #define CONFIG_CMD_PING
  85. #define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */
  86. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  87. /*
  88. * Miscellaneous configurable options
  89. */
  90. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  91. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  92. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  93. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
  94. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  95. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  96. #define CONFIG_SYS_MEMTEST_START 0x00400000 /* memtest works on */
  97. #define CONFIG_SYS_MEMTEST_END 0x00800000 /* 4 ... 8 MB in DRAM */
  98. #define CONFIG_SYS_LOAD_ADDR 0x00010000 /* default load address */
  99. #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
  100. /* valid baudrates */
  101. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  102. /*
  103. * Stack sizes
  104. *
  105. * The stack sizes are set up in start.S using the settings below
  106. */
  107. #define CONFIG_STACKSIZE (128*1024) /* regular stack */
  108. #ifdef CONFIG_USE_IRQ
  109. #define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */
  110. #define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */
  111. #endif
  112. /***************************************************************
  113. * Platform/Board specific defines start here.
  114. ***************************************************************/
  115. /*-----------------------------------------------------------------------
  116. * Default configuration (environment varibles...)
  117. *----------------------------------------------------------------------*/
  118. #define CONFIG_PREBOOT "echo;" \
  119. "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \
  120. "echo"
  121. #undef CONFIG_BOOTARGS
  122. #define CONFIG_EXTRA_ENV_SETTINGS \
  123. "netdev=eth0\0" \
  124. "hostname=ixdpg425\0" \
  125. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  126. "nfsroot=${serverip}:${rootpath}\0" \
  127. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  128. "addip=setenv bootargs ${bootargs} " \
  129. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  130. ":${hostname}:${netdev}:off panic=1\0" \
  131. "addtty=setenv bootargs ${bootargs} console=ttyS0,${baudrate}\0"\
  132. "flash_nfs=run nfsargs addip addtty;" \
  133. "bootm ${kernel_addr}\0" \
  134. "flash_self=run ramargs addip addtty;" \
  135. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  136. "net_nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;" \
  137. "bootm\0" \
  138. "rootpath=/opt/eldk/arm\0" \
  139. "bootfile=/tftpboot/ixdpg425/uImage\0" \
  140. "kernel_addr=50080000\0" \
  141. "ramdisk_addr=50200000\0" \
  142. "load=tftp 100000 /tftpboot/ixdpg425/u-boot.bin\0" \
  143. "update=protect off 50000000 5003ffff;era 50000000 5003ffff;" \
  144. "cp.b 100000 50000000 40000;" \
  145. "setenv filesize;saveenv\0" \
  146. "upd=run load update\0" \
  147. ""
  148. #define CONFIG_BOOTCOMMAND "run net_nfs"
  149. /*
  150. * Physical Memory Map
  151. */
  152. #define CONFIG_NR_DRAM_BANKS 1 /* we have 2 banks of DRAM */
  153. #define PHYS_SDRAM_1 0x00000000 /* SDRAM Bank #1 */
  154. #define PHYS_SDRAM_1_SIZE 0x02000000 /* 32 MB */
  155. #define PHYS_FLASH_1 0x50000000 /* Flash Bank #1 */
  156. #define PHYS_FLASH_SIZE 0x01000000 /* 16 MB */
  157. #define PHYS_FLASH_BANK_SIZE 0x01000000 /* 16 MB Banks */
  158. #define PHYS_FLASH_SECT_SIZE 0x00020000 /* 128 KB sectors (x1) */
  159. #define CONFIG_SYS_DRAM_BASE 0x00000000
  160. #define CONFIG_SYS_DRAM_SIZE 0x01000000
  161. #define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
  162. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  163. #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
  164. /*
  165. * Expansion bus settings
  166. */
  167. #define CONFIG_SYS_EXP_CS0 0xbcd23c42
  168. /*
  169. * SDRAM settings
  170. */
  171. #define CONFIG_SYS_SDR_CONFIG 0x18
  172. #define CONFIG_SYS_SDR_MODE_CONFIG 0x1
  173. #define CONFIG_SYS_SDRAM_REFRESH_CNT 0x81a
  174. /*
  175. * FLASH and environment organization
  176. */
  177. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  178. #define CONFIG_SYS_MAX_FLASH_SECT 128 /* max number of sectors on one chip */
  179. #define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */
  180. #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */
  181. #define CONFIG_ENV_IS_IN_FLASH 1
  182. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */
  183. #define CONFIG_SYS_FLASH_PROTECTION 1 /* hardware flash protection */
  184. #define CONFIG_SYS_FLASH_BANKS_LIST { PHYS_FLASH_1 }
  185. #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT /* no byte writes on IXP4xx */
  186. #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  187. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  188. #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
  189. #define CONFIG_ENV_SECT_SIZE 0x20000 /* size of one complete sector */
  190. #define CONFIG_ENV_ADDR (PHYS_FLASH_1 + 0x40000)
  191. #define CONFIG_ENV_SIZE 0x2000 /* Total Size of Environment Sector */
  192. /* Address and size of Redundant Environment Sector */
  193. #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE)
  194. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  195. /*
  196. * GPIO settings
  197. */
  198. #define CONFIG_SYS_GPIO_PCI_INTA_N 6
  199. #define CONFIG_SYS_GPIO_PCI_INTB_N 7
  200. #define CONFIG_SYS_GPIO_SWITCH_RESET_N 8
  201. #define CONFIG_SYS_GPIO_SLIC_RESET_N 13
  202. #define CONFIG_SYS_GPIO_PCI_CLK 14
  203. #define CONFIG_SYS_GPIO_EXTBUS_CLK 15
  204. /*
  205. * Cache Configuration
  206. */
  207. #define CONFIG_SYS_CACHELINE_SIZE 32
  208. #endif /* __CONFIG_H */