]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/AmigaOneG3SE.h
7e40c533482faece6f1c2ad51c0f641d75f4950c
[karo-tx-uboot.git] / include / configs / AmigaOneG3SE.h
1 /*
2  * (C) Copyright 2002
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  *
26  * Configuration settings for the AmigaOneG3SE board.
27  *
28  */
29
30 /* ------------------------------------------------------------------------- */
31
32 /*
33  * board/config.h - configuration options, board specific
34  */
35
36 #ifndef __CONFIG_H
37 #define __CONFIG_H
38
39 /*
40  * High Level Configuration Options
41  * (easy to change)
42  */
43
44 #define CONFIG_AMIGAONEG3SE     1
45
46 #define CONFIG_BOARD_PRE_INIT   1
47 #define CONFIG_MISC_INIT_R      1
48
49 #define CONFIG_VERY_BIG_RAM     1
50
51 #define CONFIG_CONS_INDEX       1
52 #define CONFIG_BAUDRATE         9600
53 #define CFG_BAUDRATE_TABLE      { 9600, 19200, 38400, 57600, 115200 }
54
55 #undef CONFIG_CLOCKS_IN_MHZ             /* clocks passed to Linux in Hz */
56
57 #define CONFIG_BOOTARGS         "root=/dev/ram rw ramdisk=4096"
58
59 #define CONFIG_BOOTP_MASK       (CONFIG_BOOTP_DEFAULT | \
60                                  CONFIG_BOOTP_BOOTFILESIZE)
61
62 #define CONFIG_MAC_PARTITION
63 #define CONFIG_DOS_PARTITION
64 #define CONFIG_AMIGA_PARTITION
65
66 #define CONFIG_COMMANDS         (CONFIG_CMD_DFL | \
67                                  CFG_CMD_ASKENV | \
68                                  CFG_CMD_BSP    | \
69                                  CFG_CMD_DATE   | \
70                                  CFG_CMD_DHCP   | \
71                                  CFG_CMD_ELF    | \
72                                  CFG_CMD_NET    | \
73                                  CFG_CMD_IDE    | \
74                                  CFG_CMD_FDC    | \
75                                  CFG_CMD_CACHE  | \
76                                  CFG_CMD_CONSOLE| \
77                                  CFG_CMD_USB    | \
78                                  CFG_CMD_BSP    | \
79                                  CFG_CMD_PCI    )
80
81 /*                                  CFG_CMD_MII    | \ */
82
83 #define CONFIG_PCI              1
84 /* #define CONFIG_PCI_SCAN_SHOW 1 */
85 #define CONFIG_PCI_PNP          1       /* PCI plug-and-play */
86
87 /* This must be included AFTER the definition of CONFIG_COMMANDS (if any)
88  */
89 #include <cmd_confdefs.h>
90
91
92 /*
93  * Miscellaneous configurable options
94  */
95 #define CFG_LONGHELP                    /* undef to save memory         */
96 #define CFG_PROMPT      "=> "           /* Monitor Command Prompt       */
97
98 #define CFG_HUSH_PARSER         1       /* use "hush" command parser    */
99 /* #undef CFG_HUSH_PARSER */
100 #ifdef  CFG_HUSH_PARSER
101 #define CFG_PROMPT_HUSH_PS2     "> "
102 #endif
103 #define CFG_CBSIZE      1024            /* Console I/O Buffer Size      */
104
105 /* Print Buffer Size
106  */
107 #define CFG_PBSIZE      (CFG_CBSIZE + sizeof(CFG_PROMPT) + 16)
108
109 #define CFG_MAXARGS     64              /* max number of command args   */
110 #define CFG_BARGSIZE    CFG_CBSIZE      /* Boot Argument Buffer Size    */
111 #define CFG_LOAD_ADDR   0x00500000      /* Default load address         */
112
113 /*-----------------------------------------------------------------------
114  * Start addresses for the final memory configuration
115  * (Set up by the startup code)
116  * Please note that CFG_SDRAM_BASE _must_ start at 0
117  */
118 #define CFG_SDRAM_BASE      0x00000000
119 #define CFG_FLASH_BASE      0xFFF00000
120 #define CFG_FLASH_MAX_SIZE  0x00080000
121 /* Maximum amount of RAM.
122  */
123 #define CFG_MAX_RAM_SIZE    0x80000000  /* 2G                   */
124
125 #define CFG_RESET_ADDRESS   0xFFF00100
126
127 #define CFG_MONITOR_BASE    TEXT_BASE
128
129 #define CFG_MONITOR_LEN     (768 << 10) /* Reserve 512 kB for Monitor   */
130 #define CFG_MALLOC_LEN      (2500 << 10) /* Reserve 128 kB for malloc() */
131
132 #if CFG_MONITOR_BASE >= CFG_SDRAM_BASE && \
133     CFG_MONITOR_BASE < CFG_SDRAM_BASE + CFG_MAX_RAM_SIZE
134 #define CFG_RAMBOOT
135 #else
136 #undef CFG_RAMBOOT
137 #endif
138
139 #define CFG_MEMTEST_START       0x00004000      /* memtest works on     */
140 #define CFG_MEMTEST_END         0x02000000      /* 0 ... 32 MB in DRAM  */
141
142 /*-----------------------------------------------------------------------
143  * Definitions for initial stack pointer and data area
144  */
145
146 /* Size in bytes reserved for initial data
147  */
148 #define CFG_INIT_RAM_ADDR       0x400000
149 #define CFG_INIT_RAM_END        0x8000
150 #define CFG_GBL_DATA_SIZE       128
151 #define CFG_GBL_DATA_OFFSET     (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
152 #define CFG_INIT_SP_OFFSET      CFG_GBL_DATA_OFFSET
153
154 #define CFG_INIT_RAM_LOCK
155
156 /*
157  * Temporary buffer for serial data until the real serial driver
158  * is initialised (memtest will destroy this buffer)
159  */
160 #define CFG_SCONSOLE_ADDR     CFG_INIT_RAM_ADDR
161 #define CFG_SCONSOLE_SIZE     0x0002000
162
163 /* SDRAM 0 - 256MB
164  */
165
166 #define CFG_IBAT0L (CFG_SDRAM_BASE | BATL_PP_RW | BATL_CACHEINHIBIT)
167 #define CFG_IBAT0U (CFG_SDRAM_BASE | BATU_BL_4M | BATU_VS | BATU_VP)
168 #define CFG_DBAT0L (CFG_SDRAM_BASE | BATL_PP_RW | BATL_CACHEINHIBIT)
169 #define CFG_DBAT0U CFG_IBAT0U
170
171 /* SDRAM 1 - 256MB
172  */
173 #define CFG_IBAT1L ((CFG_SDRAM_BASE+CFG_INIT_RAM_ADDR) | BATL_PP_RW) /* | BATL_CACHEINHIBIT) */
174 #define CFG_IBAT1U ((CFG_SDRAM_BASE+CFG_INIT_RAM_ADDR) | BATU_BL_256M | BATU_VS | BATU_VP)
175 #define CFG_DBAT1L ((CFG_SDRAM_BASE+CFG_INIT_RAM_ADDR + 0x20000) | BATL_PP_RW ) /* | BATL_CACHEINHIBIT) */
176 #define CFG_DBAT1U ((CFG_SDRAM_BASE+CFG_INIT_RAM_ADDR + 0x20000) | BATU_BL_256M | BATU_VS | BATU_VP)
177
178 /* Init RAM in the CPU DCache (no backing memory)
179  */
180 #define CFG_DBAT2L      (CFG_INIT_RAM_ADDR | BATL_PP_RW | BATL_MEMCOHERENCE)
181 #define CFG_DBAT2U      (CFG_INIT_RAM_ADDR | BATU_BL_128K | BATU_VS | BATU_VP)
182 #define CFG_IBAT2L      0 /* CFG_DBAT2L */
183 #define CFG_IBAT2U      0 /* CFG_DBAT2U */
184
185 /* I/O and PCI memory at 0xf0000000
186  */
187 #define CFG_DBAT3L      (0xf0000000 | BATL_PP_RW | BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
188 #define CFG_DBAT3U      (0xf0000000 | BATU_BL_256M | BATU_VS | BATU_VP)
189
190 #define CFG_IBAT3L      (0xf0000000 | BATL_PP_RW | BATL_CACHEINHIBIT)
191 #define CFG_IBAT3U      (0xf0000000 | BATU_BL_256M | BATU_VS | BATU_VP)
192
193 /*
194  * Low Level Configuration Settings
195  * (address mappings, register initial values, etc.)
196  */
197 #define CFG_HZ          1000
198 #define CFG_BUS_HZ      133000000 /* bus speed - 100 mhz                */
199 #define CFG_CPU_CLK     133000000
200 #define CFG_BUS_CLK     133000000
201
202 /*
203  * For booting Linux, the board info and command line data
204  * have to be in the first 8 MB of memory, since this is
205  * the maximum mapped by the Linux kernel during initialization.
206  */
207 #define CFG_BOOTMAPSZ   (8 << 20) /* Initial Memory map for Linux */
208
209 /*-----------------------------------------------------------------------
210  * FLASH organization
211  */
212 #define CFG_MAX_FLASH_BANKS     1       /* Max number of flash banks            */
213 #define CFG_MAX_FLASH_SECT      8       /* Max number of sectors in one bank    */
214
215 #define CFG_FLASH_ERASE_TOUT    120000  /* Timeout for Flash Erase (in ms)      */
216 #define CFG_FLASH_WRITE_TOUT    1000    /* Timeout for Flash Write (in ms)      */
217
218 /*
219  * Environment is stored in NVRAM.
220  */
221 #define CFG_ENV_IS_IN_NVRAM     1
222 #define CFG_ENV_ADDR            0xFD0E0000 /* This should be 0xFD0E0000, but we skip bytes to
223                                             * protect softex's settings for now.
224                                             * Original 768 bytes where not enough.
225                                             */
226 #define CFG_ENV_SIZE            0x8000     /* Size of the Environment. See comment above */
227
228 #define CFG_CONSOLE_IS_IN_ENV   1 /* stdin/stdout/stderr are in environment */
229 #define CFG_CONSOLE_OVERWRITE_ROUTINE   1
230 #define CONFIG_ENV_OVERWRITE 1
231
232 /*-----------------------------------------------------------------------
233  * Cache Configuration
234  */
235 #define CFG_CACHELINE_SIZE      32
236 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
237 #  define CFG_CACHELINE_SHIFT   5       /* log base 2 of the above value        */
238 #endif
239
240 /*
241  * L2 cache
242  */
243 #define CFG_L2
244 #define L2_INIT   (L2CR_L2SIZ_2M | L2CR_L2CLK_3 | L2CR_L2RAM_BURST | \
245                    L2CR_L2OH_5 | L2CR_L2CTL | L2CR_L2WT)
246 #define L2_ENABLE (L2_INIT | L2CR_L2E)
247
248 /*
249  * Internal Definitions
250  *
251  * Boot Flags
252  */
253 #define BOOTFLAG_COLD           0x01    /* Normal Power-On: Boot from FLASH     */
254 #define BOOTFLAG_WARM           0x02    /* Software reboot                      */
255
256
257 /*-----------------------------------------------------------------------
258  * IDE ATAPI Configuration
259  */
260
261 #define CONFIG_ATAPI            1
262 #define CFG_IDE_MAXBUS          2
263 #define CFG_IDE_MAXDEVICE       4
264 #define CONFIG_ISO_PARTITION    1
265
266 #define CFG_ATA_BASE_ADDR       0xFE000000  /* was: via_get_base_addr() */
267 #define CFG_ATA_IDE0_OFFSET     0x1F0
268 #define CFG_ATA_IDE1_OFFSET     0x170
269
270 #define CFG_ATA_REG_OFFSET      0
271 #define CFG_ATA_DATA_OFFSET     0
272 #define CFG_ATA_ALT_OFFSET      0x0200
273
274 /*-----------------------------------------------------------------------
275  * Disk-On-Chip configuration
276  */
277
278 #define CFG_MAX_DOC_DEVICE      1       /* Max number of DOC devices            */
279
280 #define CFG_DOC_SUPPORT_2000
281 #undef CFG_DOC_SUPPORT_MILLENNIUM
282
283 /*-----------------------------------------------------------------------
284   RTC
285 */
286 #define CONFIG_RTC_MC146818
287
288 /*-----------------------------------------------------------------------
289  * NS16550 Configuration
290  */
291
292 #define CFG_NS16550
293
294 #define CFG_NS16550_COM1 0xFE0003F8
295 #define CFG_NS16550_COM2 0xFE0002F8
296
297 #define CFG_NS16550_REG_SIZE 1
298
299 /* base address for ISA I/O
300  */
301 #define CFG_ISA_IO_BASE_ADDRESS 0xFE000000
302
303 /* ISA Interrupt stuff (taken from JWL) */
304
305 #define ISA_INT1_OCW1           0x21
306 #define ISA_INT2_OCW1           0xA1
307 #define ISA_INT1_OCW2           0x20
308 #define ISA_INT2_OCW2           0xA0
309 #define ISA_INT1_OCW3           0x20
310 #define ISA_INT2_OCW3           0xA0
311
312 #define ISA_INT1_ICW1           0x20
313 #define ISA_INT2_ICW1           0xA0
314 #define ISA_INT1_ICW2           0x21
315 #define ISA_INT2_ICW2           0xA1
316 #define ISA_INT1_ICW3           0x21
317 #define ISA_INT2_ICW3           0xA1
318 #define ISA_INT1_ICW4           0x21
319 #define ISA_INT2_ICW4           0xA1
320
321
322 /*
323  * misc
324  */
325
326 #define CONFIG_NET_MULTI
327 #define CFG_BOARD_ASM_INIT
328 #define CONFIG_LAST_STAGE_INIT
329
330 /* #define CONFIG_ETHADDR       00:09:D2:10:00:76 */
331 /* #define CONFIG_IPADDR        192.168.0.2 */
332 /* #define CONFIG_NETMASK       255.255.255.240 */
333 /* #define CONFIG_GATEWAYIP     192.168.0.3 */
334
335 #define CONFIG_3COM
336 /* #define CONFIG_BOOTP_RANDOM_DELAY */
337 #define CONFIG_BOOTP_MASK       (CONFIG_BOOTP_DEFAULT | \
338                                  CONFIG_BOOTP_BOOTFILESIZE)
339
340 /*
341  * USB configuration
342  */
343 #define CONFIG_USB_UHCI         1
344 #define CONFIG_USB_STORAGE      1
345 #define CONFIG_USB_KEYBOARD     1
346 #define CFG_DEVICE_DEREGISTER   1 /* needed by CONFIG_USB_KEYBOARD */
347
348 /*
349  * Autoboot stuff
350  */
351 #define CONFIG_BOOTDELAY        5 /* Boot automatically after five seconds */
352 #define CONFIG_PREBOOT          ""
353 #define CONFIG_BOOTCOMMAND      "fdcboot; diskboot"
354 #define CONFIG_MENUPROMPT       "Press any key to interrupt autoboot: %2d "
355 #define CONFIG_MENUKEY          ' '
356 #define CONFIG_MENUCOMMAND      "menu"
357 /* #define CONFIG_AUTOBOOT_KEYED */
358
359 /*
360  * Extra ENV stuff
361  */
362 #define CONFIG_EXTRA_ENV_SETTINGS               \
363         "stdout=vga\0"                          \
364         "stdin=ps2kbd\0"                        \
365         "ide_doreset=on\0"                      \
366         "ide_maxbus=2\0"                        \
367         "ide_cd_timeout=30\0"                   \
368         "menucmd=menu\0"                        \
369         "pci_irqa=9\0"                          \
370         "pci_irqa_select=edge\0"                \
371         "pci_irqb=10\0"                         \
372         "pci_irqb_select=edge\0"                \
373         "pci_irqc=11\0"                         \
374         "pci_irqc_select=edge\0"                \
375         "pci_irqd=12\0"                         \
376         "pci_irqd_select=edge\0"
377
378
379 /* #define CONFIG_MII           1 */
380 /* #define CONFIG_BITBANGMII    1 */
381
382
383 #endif  /* __CONFIG_H */