]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/pb1x00.h
dce172fd9edc3341bf0b0ad2411ecc9cd4625b4b
[karo-tx-uboot.git] / include / configs / pb1x00.h
1 /*
2  * (C) Copyright 2003
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 /*
9  * This file contains the configuration parameters for the dbau1x00 board.
10  */
11
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14
15 #define CONFIG_PB1X00           1
16
17 #define CONFIG_DISPLAY_BOARDINFO
18
19 #ifdef CONFIG_PB1000
20 #else
21 #ifdef CONFIG_PB1100
22 #else
23 #ifdef CONFIG_PB1500
24 #else
25 #error "No valid board set"
26 #endif
27 #endif
28 #endif
29
30 #define CONFIG_BOOTDELAY        2       /* autoboot after 2 seconds     */
31
32 #define CONFIG_BAUDRATE         115200
33
34 #define CONFIG_TIMESTAMP                /* Print image info with timestamp */
35 #undef  CONFIG_BOOTARGS
36
37 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
38         "addmisc=setenv bootargs ${bootargs} "                          \
39                 "console=ttyS0,${baudrate} "                            \
40                 "panic=1\0"                                             \
41         "bootfile=/vmlinux.img\0"                               \
42         "load=tftp 80500000 ${u-boot}\0"                                \
43         ""
44 /* Boot from NFS root */
45 #define CONFIG_BOOTCOMMAND      "bootp; setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off; bootm"
46
47 /*
48  * Miscellaneous configurable options
49  */
50 #define CONFIG_SYS_LONGHELP                             /* undef to save memory      */
51 #define CONFIG_SYS_CBSIZE               256             /* Console I/O Buffer Size   */
52 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)  /* Print Buffer Size */
53 #define CONFIG_SYS_MAXARGS              16              /* max number of command args*/
54
55 #define CONFIG_SYS_MALLOC_LEN           128*1024
56
57 #define CONFIG_SYS_BOOTPARAMS_LEN       128*1024
58
59 #define CONFIG_SYS_MIPS_TIMER_FREQ      396000000
60
61 #define CONFIG_SYS_SDRAM_BASE           0x80000000     /* Cached addr */
62
63 #define CONFIG_SYS_LOAD_ADDR            0x81000000     /* default load address  */
64
65 #define CONFIG_SYS_MEMTEST_START        0x80100000
66 #undef CONFIG_SYS_MEMTEST_START
67 #define CONFIG_SYS_MEMTEST_START       0x80200000
68 #define CONFIG_SYS_MEMTEST_END          0x83800000
69
70 /*-----------------------------------------------------------------------
71  * FLASH and environment organization
72  */
73 #define CONFIG_SYS_MAX_FLASH_BANKS      2       /* max number of memory banks */
74 #define CONFIG_SYS_MAX_FLASH_SECT       (128)   /* max number of sectors on one chip */
75
76 #define PHYS_FLASH_1            0xbec00000 /* Flash Bank #1 */
77 #define PHYS_FLASH_2            0xbfc00000 /* Flash Bank #2 */
78
79 /* The following #defines are needed to get flash environment right */
80 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
81 #define CONFIG_SYS_MONITOR_LEN          (192 << 10)
82
83 #define CONFIG_SYS_INIT_SP_OFFSET       0x4000000
84
85 /* We boot from this flash, selected with dip switch */
86 #define CONFIG_SYS_FLASH_BASE           PHYS_FLASH_2
87
88 /* timeout values are in ticks */
89 #define CONFIG_SYS_FLASH_ERASE_TOUT     (2 * CONFIG_SYS_HZ) /* Timeout for Flash Erase */
90 #define CONFIG_SYS_FLASH_WRITE_TOUT     (2 * CONFIG_SYS_HZ) /* Timeout for Flash Write */
91
92 #define CONFIG_ENV_IS_NOWHERE   1
93
94 /* Address and size of Primary Environment Sector       */
95 #define CONFIG_ENV_ADDR         0xB0030000
96 #define CONFIG_ENV_SIZE         0x10000
97
98 #define CONFIG_FLASH_16BIT
99
100 #define CONFIG_NR_DRAM_BANKS    2
101
102
103 #define CONFIG_MEMSIZE_IN_BYTES
104
105
106 /*---USB -------------------------------------------*/
107 #if 0
108 #define CONFIG_USB_OHCI
109 #define CONFIG_USB_STORAGE
110 #define CONFIG_DOS_PARTITION
111 #endif
112
113 /*---ATA PCMCIA ------------------------------------*/
114 #if 0
115 #define CONFIG_SYS_PCMCIA_MEM_SIZE 0x4000000 /* Offset to slot 1 FIXME!!! */
116 #define CONFIG_SYS_PCMCIA_MEM_ADDR 0x20000000
117 #define CONFIG_PCMCIA_SLOT_A
118
119 #define CONFIG_ATAPI 1
120 #define CONFIG_MAC_PARTITION 1
121
122 /* We run CF in "true ide" mode or a harddrive via pcmcia */
123 #define CONFIG_IDE_PCMCIA 1
124
125 /* We only support one slot for now */
126 #define CONFIG_SYS_IDE_MAXBUS           1       /* max. 1 IDE bus               */
127 #define CONFIG_SYS_IDE_MAXDEVICE        1       /* max. 1 drive per IDE bus     */
128
129 #undef  CONFIG_IDE_LED                  /* LED   for ide not supported  */
130 #undef  CONFIG_IDE_RESET                /* reset for ide not supported  */
131
132 #define CONFIG_SYS_ATA_IDE0_OFFSET      0x0000
133
134 #define CONFIG_SYS_ATA_BASE_ADDR       CONFIG_SYS_PCMCIA_MEM_ADDR
135
136 /* Offset for data I/O                  */
137 #define CONFIG_SYS_ATA_DATA_OFFSET     8
138
139 /* Offset for normal register accesses  */
140 #define CONFIG_SYS_ATA_REG_OFFSET      0
141
142 /* Offset for alternate registers       */
143 #define CONFIG_SYS_ATA_ALT_OFFSET      0x0100
144
145 #endif
146 /*-----------------------------------------------------------------------
147  * Cache Configuration
148  */
149 #define CONFIG_SYS_DCACHE_SIZE          16384
150 #define CONFIG_SYS_ICACHE_SIZE          16384
151 #define CONFIG_SYS_CACHELINE_SIZE       32
152
153
154 /*
155  * BOOTP options
156  */
157 #define CONFIG_BOOTP_BOOTFILESIZE
158 #define CONFIG_BOOTP_BOOTPATH
159 #define CONFIG_BOOTP_GATEWAY
160 #define CONFIG_BOOTP_HOSTNAME
161
162
163 /*
164  * Command line configuration.
165  */
166 #define CONFIG_CMD_DHCP
167 #define CONFIG_CMD_ELF
168 #define CONFIG_CMD_MII
169 #define CONFIG_CMD_PING
170
171 #undef CONFIG_CMD_FAT
172 #undef CONFIG_CMD_IDE
173 #undef CONFIG_CMD_ELF
174 #undef CONFIG_CMD_BEDBUG
175
176 #endif  /* __CONFIG_H */