purple.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * (C) Copyright 2003
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * This file contains the configuration parameters for the PURPLE board.
  25. */
  26. #ifndef __CONFIG_H
  27. #define __CONFIG_H
  28. #define CONFIG_MIPS32 1 /* MIPS 5Kc CPU core */
  29. #define CONFIG_PURPLE 1 /* on a PURPLE Board */
  30. #define CPU_CLOCK_RATE 125000000 /* 125 MHz clock for the MIPS core */
  31. #define ASC_CLOCK_RATE 62500000 /* 62.5 MHz ASC clock */
  32. #define INFINEON_EBU_BOOTCFG 0xE0CC
  33. #define CONFIG_STACKSIZE (128 * 1024)
  34. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  35. #define CONFIG_BAUDRATE 19200
  36. /* valid baudrates */
  37. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  38. #define CONFIG_TIMESTAMP /* Print image info with timestamp */
  39. #define CONFIG_PREBOOT "echo;" \
  40. "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \
  41. "echo"
  42. #undef CONFIG_BOOTARGS
  43. #define CONFIG_EXTRA_ENV_SETTINGS \
  44. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  45. "nfsroot=${serverip}:${rootpath}\0" \
  46. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  47. "addip=setenv bootargs ${bootargs} " \
  48. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  49. ":${hostname}:${netdev}:off\0" \
  50. "addmisc=setenv bootargs ${bootargs} " \
  51. "console=ttyS0,${baudrate} " \
  52. "ethaddr=${ethaddr} " \
  53. "panic=1\0" \
  54. "flash_nfs=run nfsargs addip addmisc;" \
  55. "bootm ${kernel_addr}\0" \
  56. "flash_self=run ramargs addip addmisc;" \
  57. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  58. "net_nfs=tftp 80500000 ${bootfile};" \
  59. "run nfsargs addip addmisc;bootm\0" \
  60. "rootpath=/opt/eldk/mips_5KC\0" \
  61. "bootfile=/tftpboot/purple/uImage\0" \
  62. "kernel_addr=B0040000\0" \
  63. "ramdisk_addr=B0100000\0" \
  64. "u-boot=/tftpboot/purple/u-boot.bin\0" \
  65. "load=tftp 80500000 ${u-boot}\0" \
  66. "update=protect off 1:0-4;era 1:0-4;" \
  67. "cp.b 80500000 B0000000 ${filesize}\0" \
  68. ""
  69. #define CONFIG_BOOTCOMMAND "run flash_self"
  70. /*
  71. * BOOTP options
  72. */
  73. #define CONFIG_BOOTP_BOOTFILESIZE
  74. #define CONFIG_BOOTP_BOOTPATH
  75. #define CONFIG_BOOTP_GATEWAY
  76. #define CONFIG_BOOTP_HOSTNAME
  77. /*
  78. * Command line configuration.
  79. */
  80. #include <config_cmd_default.h>
  81. #define CONFIG_CMD_ELF
  82. #define CONFIG_SYS_SDRAM_BASE 0x80000000
  83. #define CONFIG_SYS_INIT_SP_OFFSET 0x400000
  84. #define CONFIG_SYS_MALLOC_LEN 128*1024
  85. #define CONFIG_SYS_BOOTPARAMS_LEN 128*1024
  86. /*
  87. * Miscellaneous configurable options
  88. */
  89. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  90. #define CONFIG_SYS_PROMPT "PURPLE # " /* Monitor Command Prompt */
  91. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  92. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
  93. #define CONFIG_SYS_MIPS_TIMER_FREQ (CPU_CLOCK_RATE/2)
  94. #define CONFIG_SYS_HZ 1000
  95. #define CONFIG_SYS_MAXARGS 16 /* max number of command args*/
  96. #define CONFIG_SYS_LOAD_ADDR 0x80500000 /* default load address */
  97. #define CONFIG_SYS_MEMTEST_START 0x80200000
  98. #define CONFIG_SYS_MEMTEST_END 0x80800000
  99. #define CONFIG_MISC_INIT_R
  100. /*-----------------------------------------------------------------------
  101. * FLASH and environment organization
  102. */
  103. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  104. #define CONFIG_SYS_MAX_FLASH_SECT (35) /* max number of sectors on one chip */
  105. #define PHYS_FLASH_1 0xb0000000 /* Flash Bank #1 */
  106. /* The following #defines are needed to get flash environment right */
  107. #define CONFIG_SYS_MONITOR_BASE TEXT_BASE
  108. #define CONFIG_SYS_MONITOR_LEN (192 << 10)
  109. #define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
  110. /* timeout values are in ticks */
  111. #define CONFIG_SYS_FLASH_ERASE_TOUT (6 * CONFIG_SYS_HZ) /* Timeout for Flash Erase */
  112. #define CONFIG_SYS_FLASH_WRITE_TOUT (6 * CONFIG_SYS_HZ) /* Timeout for Flash Write */
  113. #define CONFIG_ENV_IS_IN_FLASH 1
  114. /* Address and size of Primary Environment Sector */
  115. #define CONFIG_ENV_ADDR 0xB0008000
  116. #define CONFIG_ENV_SIZE 0x4000
  117. #define CONFIG_FLASH_32BIT
  118. #define CONFIG_NR_DRAM_BANKS 1
  119. #define CONFIG_PLB2800_ETHER
  120. #define CONFIG_NET_MULTI
  121. /*-----------------------------------------------------------------------
  122. * Cache Configuration
  123. */
  124. #define CONFIG_SYS_DCACHE_SIZE 16384
  125. #define CONFIG_SYS_ICACHE_SIZE 16384
  126. #define CONFIG_SYS_CACHELINE_SIZE 32
  127. /*
  128. * Temporary buffer for serial data until the real serial driver
  129. * is initialised (memtest will destroy this buffer)
  130. */
  131. #define CONFIG_SYS_SCONSOLE_ADDR (CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_INIT_SP_OFFSET - \
  132. CONFIG_SYS_DCACHE_SIZE / 2)
  133. #define CONFIG_SYS_SCONSOLE_SIZE (CONFIG_SYS_DCACHE_SIZE / 4)
  134. #endif /* __CONFIG_H */