arm, kirkwood: added kw_gpio_set_valid() in gpio.h
[platform/kernel/u-boot.git] / include / configs / keymile-common.h
1 /*
2  * (C) Copyright 2008
3  * Heiko Schocher, DENX Software Engineering, hs@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 #ifndef __CONFIG_KEYMILE_H
25 #define __CONFIG_KEYMILE_H
26
27 /* Do boardspecific init for all boards */
28 #define CONFIG_BOARD_EARLY_INIT_R       1
29
30 #define CONFIG_BOOTCOUNT_LIMIT
31
32 /*
33  * Command line configuration.
34  */
35 #include <config_cmd_default.h>
36
37 #define CONFIG_CMD_ASKENV
38 #define CONFIG_CMD_DHCP
39 #define CONFIG_CMD_ECHO
40 #define CONFIG_CMD_IMMAP
41 #define CONFIG_CMD_MII
42 #define CONFIG_CMD_PING
43 #define CONFIG_CMD_DTT
44 #define CONFIG_CMD_EEPROM
45 #define CONFIG_CMD_I2C
46 #define CONFIG_CMD_JFFS2
47 #define CONFIG_JFFS2_CMDLINE
48
49 #undef  CONFIG_WATCHDOG                 /* disable platform specific watchdog */
50
51 #define CONFIG_BOOTDELAY        5       /* autoboot after 5 seconds */
52 #undef  CONFIG_BOOTARGS                 /* the boot command will set bootargs */
53
54 /*
55  * Miscellaneous configurable options
56  */
57 #define CONFIG_SYS_HUSH_PARSER
58 #define CONFIG_SYS_PROMPT_HUSH_PS2      "> "
59 #define CONFIG_SYS_LONGHELP                     /* undef to save memory     */
60 #define CONFIG_SYS_PROMPT               "=> "   /* Monitor Command Prompt   */
61 #if defined(CONFIG_CMD_KGDB)
62 #define CONFIG_SYS_CBSIZE               1024    /* Console I/O Buffer Size  */
63 #else
64 #define CONFIG_SYS_CBSIZE               256     /* Console I/O Buffer Size  */
65 #endif
66 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)      /* Print Buffer Size  */
67 #define CONFIG_SYS_MAXARGS              16      /* max number of command args */
68 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE       /* Boot Argument Buffer Size  */
69 #define CONFIG_CMDLINE_EDITING          1       /* add command line history     */
70 #define CONFIG_COMMAND_HISTORY          1
71 #define CONFIG_AUTO_COMPLETE            /* add autocompletion support   */
72
73 #define CONFIG_HUSH_INIT_VAR    1
74
75 #define CONFIG_SYS_ALT_MEMTEST          /* memory test, takes time */
76 #define CONFIG_SYS_MEMTEST_START        0x00100000      /* memtest works on */
77 #define CONFIG_SYS_MEMTEST_END          0x00f00000      /* 1 ... 15 MB in DRAM  */
78
79 #define CONFIG_SYS_LOAD_ADDR            0x100000        /* default load address */
80
81 #define CONFIG_SYS_HZ                   1000    /* decrementer freq: 1 ms ticks */
82
83 #define CONFIG_BAUDRATE         115200
84 #define CONFIG_SYS_BAUDRATE_TABLE       { 9600, 19200, 38400, 57600, 115200, 230400 }
85
86 #define CONFIG_LOADS_ECHO       1       /* echo on for serial download */
87 #define CONFIG_SYS_LOADS_BAUD_CHANGE    1       /* allow baudrate change */
88
89 /*
90  * How to get access to the slot ID.  Put this here to make it easy
91  * to modify in a centralized location.  This is used in the HDLC
92  * driver to set the MAC.
93 */
94 #define CONFIG_CHECK_ETHERNET_PRESENT   1
95 #define CONFIG_SYS_SLOT_ID_BASE         CONFIG_SYS_PIGGY_BASE
96 #define CONFIG_SYS_SLOT_ID_OFF          (0x07)  /* register offset */
97 #define CONFIG_SYS_SLOT_ID_MASK         (0x3f)  /* mask for slot ID bits */
98
99 #define CONFIG_I2C_MULTI_BUS    1
100 #define CONFIG_SYS_MAX_I2C_BUS          2
101 #define CONFIG_SYS_I2C_INIT_BOARD       1
102 #define CONFIG_I2C_MUX          1
103
104 /* EEprom support */
105 #define CONFIG_SYS_I2C_MULTI_EEPROMS    1
106 #define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
107 #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
108 #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
109
110 /* Support the IVM EEprom */
111 #define CONFIG_SYS_IVM_EEPROM_ADR       0x50
112 #define CONFIG_SYS_IVM_EEPROM_MAX_LEN   0x400
113 #define CONFIG_SYS_IVM_EEPROM_PAGE_LEN  0x100
114
115 #define CONFIG_SYS_FLASH_PROTECTION 1
116
117 /*
118  * BOOTP options
119  */
120 #define CONFIG_BOOTP_BOOTFILESIZE
121 #define CONFIG_BOOTP_BOOTPATH
122 #define CONFIG_BOOTP_GATEWAY
123 #define CONFIG_BOOTP_HOSTNAME
124
125 /* define this to use the keymile's io muxing feature */
126 /*#define CONFIG_IO_MUXING */
127
128 #ifdef CONFIG_IO_MUXING
129 #define CONFIG_KM_DEF_ENV_IOMUX \
130         "nc=setenv ethact HDLC ETHERNET \0" \
131         "nce=setenv ethact SCC ETHERNET \0"     \
132         "stderr=serial,nc \0"   \
133         "stdin=serial,nc \0" \
134         "stdout=serial,nc \0" \
135         "tftpsrcp=69 \0" \
136         "tftpdstp=69 \0"
137 #else
138 #define CONFIG_KM_DEF_ENV_IOMUX \
139         "stderr=serial \0" \
140         "stdin=serial \0"        \
141         "stdout=serial \0"
142 #endif
143
144 #ifndef CONFIG_KM_DEF_ENV_PRIVATE
145 #define CONFIG_KM_DEF_ENV_PRIVATE \
146         "kmprivate=empty\0"
147 #endif
148
149 #define xstr(s) str(s)
150 #define str(s)  #s
151
152 #ifndef CONFIG_KM_DEF_ENV
153 #define CONFIG_KM_DEF_ENV       \
154         "netdev=eth0\0"                                                 \
155         "u-boot_addr_r=100000\0"                                        \
156         "kernel_addr_r=200000\0"                                        \
157         "fdt_addr_r=600000\0"                                           \
158         "ram_ws=800000 \0"                                              \
159         "autoscr_ws=780000 \0"                                          \
160         "fdt_file=" xstr(CONFIG_HOSTNAME) "/"                           \
161                 xstr(CONFIG_HOSTNAME) ".dtb\0"                          \
162         "u-boot=" xstr(CONFIG_HOSTNAME) "/u-boot.bin \0"                \
163         "kernel_file=" xstr(CONFIG_HOSTNAME) "/uImage \0"               \
164         "load=tftp ${u-boot_addr_r} ${u-boot}\0"                        \
165         "update=protect off " xstr(BOOTFLASH_START) " +${filesize};"    \
166                 "erase " xstr(BOOTFLASH_START) "  +${filesize};"        \
167                 "cp.b ${u-boot_addr_r} " xstr(BOOTFLASH_START)          \
168                 "  ${filesize};"                                        \
169                 "protect on " xstr(BOOTFLASH_START) "  +${filesize}\0"  \
170         "load_fdt=tftp ${fdt_addr_r} ${fdt_file}; "                     \
171                 "setenv actual_fdt_addr ${fdt_addr_r} \0"               \
172         "load_kernel=tftp ${kernel_addr_r} ${kernel_file}; "            \
173                 "setenv actual_kernel_addr ${kernel_addr_r} \0"         \
174         "ramargs=setenv bootargs root=/dev/ram rw\0"                    \
175         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
176                 "nfsroot=${serverip}:${rootpath}\0"                     \
177         "mtdargs=setenv bootargs root=${actual_rootfs} rw "             \
178                 "rootfstype=jffs2 \0"                                   \
179         "altmtdargs=setenv bootargs root=${backup_rootfs} rw "          \
180                 "rootfstype=jffs2 \0"                                   \
181         "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"              \
182         "addip=setenv bootargs ${bootargs} "                            \
183                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
184                 ":${hostname}:${netdev}:off panic=1\0"                  \
185         "addboardid=setenv bootargs ${bootargs} "                       \
186                 "hwKey=${IVM_HWKey} boardId=0x${IVM_BoardId} \0"        \
187         "addpram=setenv bootargs ${bootargs} "                          \
188                 "mem=${mem} pram=${pram}\0"                             \
189         "pram=" xstr(CONFIG_PRAM) "k\0"                                 \
190         "net_nfs=tftp ${kernel_addr_r} ${kernel_file}; "                \
191                 "tftp ${fdt_addr_r} ${fdt_file}; "                      \
192                 "run nfsargs addip addcon addboardid addpram;"          \
193                 "bootm ${kernel_addr_r} - ${fdt_addr_r}\0"              \
194         "net_self=tftp ${kernel_addr_r} ${kernel_file}; "               \
195                 "tftp ${fdt_addr_r} ${fdt_file}; "                      \
196                 "tftp ${ramdisk_addr} ${ramdisk_file}; "                \
197                 "run ramargs addip addboardid addpram; "                \
198                 "bootm ${kernel_addr_r} ${ramdisk_addr} ${fdt_addr_r}\0"\
199         "flash_nfs=run nfsargs addip addcon;"                           \
200                 "bootm ${kernel_addr} - ${fdt_addr}\0"                  \
201         "flash_self=run ramargs addip addcon addboardid addpram;"       \
202                 "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0"    \
203         "bootcmd=run mtdargs addip addcon addboardid addpram; "         \
204                 "bootm ${actual_kernel_addr} - ${actual_fdt_addr} \0"   \
205         "altbootcmd=run altmtdargs addip addcon addboardid addpram; "   \
206                 "bootm ${backup_kernel_addr} - ${backup_fdt_addr} \0"   \
207         "actual0=setenv actual_bank 0; setenv actual_kernel_addr "      \
208                 "${bank0_kernel_addr}; "                                \
209                 "setenv actual_fdt_addr ${bank0_fdt_addr}; "            \
210                 "setenv actual_rootfs ${bank0_rootfs} \0"               \
211         "actual1=setenv actual_bank 1; setenv actual_kernel_addr "      \
212                 "${bank1_kernel_addr}; "                                \
213                 "setenv actual_fdt_addr ${bank1_fdt_addr}; "            \
214                 "setenv actual_rootfs ${bank1_rootfs} \0"               \
215         "backup0=setenv backup_bank 0; setenv backup_kernel_addr "      \
216                 "${bank0_kernel_addr}; "                                \
217                 "setenv backup_fdt_addr ${bank0_fdt_addr}; "            \
218                 "setenv backup_rootfs ${bank0_rootfs} \0"               \
219         "backup1=setenv backup_bank 1; setenv backup_kernel_addr "      \
220                 "${bank1_kernel_addr}; "                                \
221                 "setenv backup_fdt_addr ${bank1_fdt_addr}; "            \
222                 "setenv backup_rootfs ${bank1_rootfs} \0"               \
223         "setbank0=run actual0 backup1 \0"                               \
224         "setbank1=run actual1 backup0 \0"                               \
225         "release=setenv bootcmd "                                       \
226                 "\'run mtdargs addip addcon addboardid addpram;"        \
227                 "bootm ${actual_kernel_addr} - ${actual_fdt_addr} \'; " \
228                 "saveenv \0"                                            \
229         "develop=setenv bootcmd "                                       \
230                 "\'run nfsargs addip addcon addboardid addpram;"        \
231                 "bootm ${actual_kernel_addr} - ${actual_fdt_addr} \'; " \
232                 "saveenv \0"                                            \
233         "developall=setenv bootcmd "                                    \
234                 "\'run load_fdt load_kernel nfsargs "                   \
235                 "addip addcon addboardid addpram; "                     \
236                 "bootm ${actual_kernel_addr} - ${actual_fdt_addr} \'; " \
237                 "saveenv \0"                                            \
238         "set_new_esw_script=setenv new_esw_script "                     \
239                 "new_esw_0x${IVM_BoardId}_0x${IVM_HWKey}.scr \0"        \
240         "new_esw=run set_new_esw_script; "                              \
241                 "tftp ${autoscr_ws} ${new_esw_script}; "                \
242                 "iminfo ${autoscr_ws}; source ${autoscr_ws} \0" \
243         "bootlimit=0 \0"                                                \
244         CONFIG_KM_DEF_ENV_IOMUX                                         \
245         CONFIG_KM_DEF_ENV_PRIVATE                                       \
246         ""
247 #endif /* CONFIG_KM_DEF_ENV */
248
249 #define CONFIG_VERSION_VARIABLE         /* include version env variable */
250
251 #endif /* __CONFIG_KEYMILE_H */