wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 1 | /* |
wdenk | 414eec3 | 2005-04-02 22:37:54 +0000 | [diff] [blame] | 2 | * (C) Copyright 2003-2005 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 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 | /* |
| 25 | * This file contains the configuration parameters for the INCA-IP board. |
| 26 | */ |
| 27 | |
| 28 | #ifndef __CONFIG_H |
| 29 | #define __CONFIG_H |
| 30 | |
| 31 | #define CONFIG_MIPS32 1 /* MIPS 4Kc CPU core */ |
| 32 | #define CONFIG_INCA_IP 1 /* on a INCA-IP Board */ |
| 33 | |
Daniel Schwierzeck | 60b74bd | 2011-07-27 13:22:36 +0200 | [diff] [blame] | 34 | #define CONFIG_XWAY_SWAP_BYTES |
| 35 | |
Shinya Kuribayashi | 536884f | 2011-02-05 18:33:36 +0900 | [diff] [blame] | 36 | /* |
| 37 | * Clock for the MIPS core (MHz) |
| 38 | * allowed values: 100000000, 133000000, and 150000000 (default) |
| 39 | */ |
| 40 | #ifndef CONFIG_CPU_CLOCK_RATE |
| 41 | #define CONFIG_CPU_CLOCK_RATE 150000000 |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 42 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 43 | |
Daniel Schwierzeck | 7185adb | 2011-07-27 13:22:37 +0200 | [diff] [blame] | 44 | #define CONFIG_SYS_XWAY_EBU_BOOTCFG 0x40C4 /* CMULT = 8 */ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 45 | |
| 46 | #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ |
| 47 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 48 | #define CONFIG_BAUDRATE 115200 |
| 49 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 50 | #define CONFIG_TIMESTAMP /* Print image info with timestamp */ |
| 51 | |
| 52 | #define CONFIG_PREBOOT "echo;" \ |
Wolfgang Denk | 32bf3d1 | 2008-03-03 12:16:44 +0100 | [diff] [blame] | 53 | "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 54 | "echo" |
| 55 | |
| 56 | #undef CONFIG_BOOTARGS |
| 57 | |
| 58 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 59 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 60 | "nfsroot=${serverip}:${rootpath}\0" \ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 61 | "ramargs=setenv bootargs root=/dev/ram rw\0" \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 62 | "addip=setenv bootargs ${bootargs} " \ |
| 63 | "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \ |
| 64 | ":${hostname}:${netdev}:off\0" \ |
| 65 | "addmisc=setenv bootargs ${bootargs} " \ |
| 66 | "console=ttyS0,${baudrate} " \ |
| 67 | "ethaddr=${ethaddr} " \ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 68 | "panic=1\0" \ |
| 69 | "flash_nfs=run nfsargs addip addmisc;" \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 70 | "bootm ${kernel_addr}\0" \ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 71 | "flash_self=run ramargs addip addmisc;" \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 72 | "bootm ${kernel_addr} ${ramdisk_addr}\0" \ |
| 73 | "net_nfs=tftp 80500000 ${bootfile};" \ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 74 | "run nfsargs addip addmisc;bootm\0" \ |
| 75 | "rootpath=/opt/eldk/mips_4KC\0" \ |
| 76 | "bootfile=/tftpboot/INCA/uImage\0" \ |
| 77 | "kernel_addr=B0040000\0" \ |
| 78 | "ramdisk_addr=B0100000\0" \ |
| 79 | "u-boot=/tftpboot/INCA/u-boot.bin\0" \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 80 | "load=tftp 80500000 ${u-boot}\0" \ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 81 | "update=protect off 1:0-2;era 1:0-2;" \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 82 | "cp.b 80500000 B0000000 ${filesize}\0" \ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 83 | "" |
| 84 | #define CONFIG_BOOTCOMMAND "run flash_self" |
| 85 | |
Jon Loeliger | 1d2c6bc | 2007-07-04 22:32:32 -0500 | [diff] [blame] | 86 | |
| 87 | /* |
Jon Loeliger | 7f5c015 | 2007-07-10 09:38:02 -0500 | [diff] [blame] | 88 | * BOOTP options |
| 89 | */ |
| 90 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 91 | #define CONFIG_BOOTP_BOOTPATH |
| 92 | #define CONFIG_BOOTP_GATEWAY |
| 93 | #define CONFIG_BOOTP_HOSTNAME |
| 94 | |
| 95 | |
| 96 | /* |
Jon Loeliger | 1d2c6bc | 2007-07-04 22:32:32 -0500 | [diff] [blame] | 97 | * Command line configuration. |
| 98 | */ |
| 99 | #include <config_cmd_default.h> |
| 100 | |
| 101 | #define CONFIG_CMD_ASKENV |
| 102 | #define CONFIG_CMD_DHCP |
| 103 | #define CONFIG_CMD_ELF |
| 104 | #define CONFIG_CMD_JFFS2 |
| 105 | #define CONFIG_CMD_NFS |
| 106 | #define CONFIG_CMD_PING |
| 107 | #define CONFIG_CMD_SNTP |
| 108 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 109 | |
| 110 | /* |
| 111 | * Miscellaneous configurable options |
| 112 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 113 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
| 114 | #define CONFIG_SYS_PROMPT "INCA-IP # " /* Monitor Command Prompt */ |
| 115 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
| 116 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */ |
| 117 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args*/ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 118 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 119 | #define CONFIG_SYS_MALLOC_LEN 128*1024 |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 120 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 121 | #define CONFIG_SYS_BOOTPARAMS_LEN 128*1024 |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 122 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 123 | #define CONFIG_SYS_MIPS_TIMER_FREQ (incaip_get_cpuclk() / 2) |
Shinya Kuribayashi | a55d481 | 2008-06-05 22:29:00 +0900 | [diff] [blame] | 124 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 125 | #define CONFIG_SYS_HZ 1000 |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 126 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 127 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 128 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 129 | #define CONFIG_SYS_LOAD_ADDR 0x80100000 /* default load address */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 130 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 131 | #define CONFIG_SYS_MEMTEST_START 0x80100000 |
| 132 | #define CONFIG_SYS_MEMTEST_END 0x80800000 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 133 | |
| 134 | /*----------------------------------------------------------------------- |
| 135 | * FLASH and environment organization |
| 136 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 137 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of memory banks */ |
| 138 | #define CONFIG_SYS_MAX_FLASH_SECT (128) /* max number of sectors on one chip */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 139 | |
| 140 | #define PHYS_FLASH_1 0xb0000000 /* Flash Bank #1 */ |
| 141 | #define PHYS_FLASH_2 0xb0800000 /* Flash Bank #2 */ |
| 142 | |
| 143 | /* The following #defines are needed to get flash environment right */ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 144 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 145 | #define CONFIG_SYS_MONITOR_LEN (192 << 10) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 146 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 147 | #define CONFIG_SYS_INIT_SP_OFFSET 0x400000 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 148 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 149 | #define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 150 | |
| 151 | /* timeout values are in ticks */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 152 | #define CONFIG_SYS_FLASH_ERASE_TOUT (2 * CONFIG_SYS_HZ) /* Timeout for Flash Erase */ |
| 153 | #define CONFIG_SYS_FLASH_WRITE_TOUT (2 * CONFIG_SYS_HZ) /* Timeout for Flash Write */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 154 | |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 155 | #define CONFIG_ENV_IS_IN_FLASH 1 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 156 | |
| 157 | /* Address and size of Primary Environment Sector */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 158 | #define CONFIG_ENV_ADDR 0xB0030000 |
| 159 | #define CONFIG_ENV_SIZE 0x10000 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 160 | |
| 161 | #define CONFIG_FLASH_16BIT |
| 162 | |
| 163 | #define CONFIG_NR_DRAM_BANKS 1 |
| 164 | |
| 165 | #define CONFIG_INCA_IP_SWITCH |
wdenk | 0c852a2 | 2004-02-26 23:01:04 +0000 | [diff] [blame] | 166 | #define CONFIG_INCA_IP_SWITCH_AMDIX |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 167 | |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 168 | /* |
| 169 | * JFFS2 partitions |
| 170 | */ |
| 171 | /* No command line, one static partition, use all space on the device */ |
Stefan Roese | 68d7d65 | 2009-03-19 13:30:36 +0100 | [diff] [blame] | 172 | #undef CONFIG_CMD_MTDPARTS |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 173 | #define CONFIG_JFFS2_DEV "nor1" |
| 174 | #define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF |
| 175 | #define CONFIG_JFFS2_PART_OFFSET 0x00000000 |
| 176 | |
| 177 | /* mtdparts command line support */ |
| 178 | /* |
Stefan Roese | 68d7d65 | 2009-03-19 13:30:36 +0100 | [diff] [blame] | 179 | #define CONFIG_CMD_MTDPARTS |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 180 | #define MTDIDS_DEFAULT "nor0=INCA-IP Bank 0" |
| 181 | #define MTDPARTS_DEFAULT "mtdparts=INCA-IP Bank 0:192k(uboot)," \ |
| 182 | "64k(env)," \ |
| 183 | "768k(linux)," \ |
| 184 | "1m@3m(rootfs)," \ |
| 185 | "768k(linux2)," \ |
| 186 | "3m@5m(rootfs2)" |
| 187 | */ |
wdenk | 5c745d2 | 2003-12-12 00:02:26 +0000 | [diff] [blame] | 188 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 189 | /*----------------------------------------------------------------------- |
| 190 | * Cache Configuration |
| 191 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 192 | #define CONFIG_SYS_DCACHE_SIZE 4096 |
| 193 | #define CONFIG_SYS_ICACHE_SIZE 4096 |
| 194 | #define CONFIG_SYS_CACHELINE_SIZE 16 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 195 | |
| 196 | #endif /* __CONFIG_H */ |