]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/balloon3.h
Merge branch 'u-boot-tegra/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / include / configs / balloon3.h
1 /*
2  * Balloon3 configuration file
3  *
4  * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19  * MA 02111-1307 USA
20  */
21
22 #ifndef __CONFIG_H
23 #define __CONFIG_H
24
25 /*
26  * High Level Board Configuration Options
27  */
28 #define CONFIG_CPU_PXA27X               1       /* Marvell PXA270 CPU */
29 #define CONFIG_BALLOON3         1       /* Balloon3 board */
30
31 /*
32  * Environment settings
33  */
34 #define CONFIG_ENV_OVERWRITE
35 #define CONFIG_SYS_MALLOC_LEN           (128*1024)
36 #define CONFIG_ARCH_CPU_INIT
37 #define CONFIG_BOOTCOMMAND                                              \
38         "fpga load 0x0 0x50000 0x62638; "                               \
39         "if usb reset && fatload usb 0 0xa4000000 uImage; then "        \
40                 "bootm 0xa4000000; "                                    \
41         "fi; "                                                          \
42         "bootm 0xd0000;"
43 #define CONFIG_BOOTARGS                 "console=tty0 console=ttyS2,115200"
44 #define CONFIG_TIMESTAMP
45 #define CONFIG_BOOTDELAY                2       /* Autoboot delay */
46 #define CONFIG_CMDLINE_TAG
47 #define CONFIG_SETUP_MEMORY_TAGS
48 #define CONFIG_SYS_TEXT_BASE            0x0
49 #define CONFIG_LZMA                     /* LZMA compression support */
50
51 /*
52  * Serial Console Configuration
53  */
54 #define CONFIG_PXA_SERIAL
55 #define CONFIG_STUART                   1
56 #define CONFIG_CONS_INDEX               2
57 #define CONFIG_BAUDRATE                 115200
58
59 /*
60  * Bootloader Components Configuration
61  */
62 #include <config_cmd_default.h>
63
64 #undef  CONFIG_CMD_NET
65 #undef  CONFIG_CMD_NFS
66 #undef  CONFIG_CMD_ENV
67 #undef  CONFIG_CMD_IMLS
68 #define CONFIG_CMD_USB
69 #define CONFIG_CMD_FPGA
70 #undef  CONFIG_LCD
71
72 /*
73  * KGDB
74  */
75 #ifdef  CONFIG_CMD_KGDB
76 #define CONFIG_KGDB_BAUDRATE            230400  /* kgdb serial port speed */
77 #define CONFIG_KGDB_SER_INDEX           2       /* which serial port to use */
78 #endif
79
80 /*
81  * HUSH Shell Configuration
82  */
83 #define CONFIG_SYS_HUSH_PARSER          1
84
85 #define CONFIG_SYS_LONGHELP
86 #ifdef  CONFIG_SYS_HUSH_PARSER
87 #define CONFIG_SYS_PROMPT               "$ "
88 #else
89 #define CONFIG_SYS_PROMPT               "=> "
90 #endif
91 #define CONFIG_SYS_CBSIZE               256
92 #define CONFIG_SYS_PBSIZE               \
93         (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
94 #define CONFIG_SYS_MAXARGS              16
95 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
96 #define CONFIG_SYS_DEVICE_NULLDEV       1
97
98 /*
99  * Clock Configuration
100  */
101 #undef  CONFIG_SYS_CLKS_IN_HZ
102 #define CONFIG_SYS_HZ                   3250000         /* Timer @ 3250000 Hz */
103 #define CONFIG_SYS_CPUSPEED             0x290           /* 520MHz */
104
105 /*
106  * DRAM Map
107  */
108 #define CONFIG_NR_DRAM_BANKS            3               /* 2 banks of DRAM */
109 #define PHYS_SDRAM_1                    0xa0000000      /* SDRAM Bank #1 */
110 #define PHYS_SDRAM_1_SIZE               0x08000000      /* 128 MB */
111 #define PHYS_SDRAM_2                    0xb0000000      /* SDRAM Bank #2 */
112 #define PHYS_SDRAM_2_SIZE               0x08000000      /* 128 MB */
113 #define PHYS_SDRAM_3                    0x80000000      /* SDRAM Bank #2 */
114 #define PHYS_SDRAM_3_SIZE               0x08000000      /* 128 MB */
115
116 #define CONFIG_SYS_DRAM_BASE            0xa0000000      /* CS0 */
117 #define CONFIG_SYS_DRAM_SIZE            0x18000000      /* 384 MB DRAM */
118
119 #define CONFIG_SYS_MEMTEST_START        0xa0400000      /* memtest works on */
120 #define CONFIG_SYS_MEMTEST_END          0xa0800000      /* 4 ... 8 MB in DRAM */
121
122 #define CONFIG_SYS_LOAD_ADDR            0xa1000000
123
124 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
125 #define CONFIG_SYS_INIT_SP_ADDR         \
126         (PHYS_SDRAM_1 + GENERATED_GBL_DATA_SIZE + 2048)
127
128 /*
129  * NOR FLASH
130  */
131 #ifdef  CONFIG_CMD_FLASH
132 #define PHYS_FLASH_1                    0x00000000      /* Flash Bank #1 */
133 #define PHYS_FLASH_SIZE                 0x00800000      /* 8 MB */
134 #define CONFIG_SYS_FLASH_BASE           PHYS_FLASH_1
135
136 #define CONFIG_SYS_FLASH_CFI
137 #define CONFIG_FLASH_CFI_DRIVER         1
138 #define CONFIG_SYS_FLASH_CFI_WIDTH      FLASH_CFI_16BIT
139
140 #define CONFIG_SYS_MAX_FLASH_BANKS      1
141 #define CONFIG_SYS_MAX_FLASH_SECT       256
142
143 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE       1
144
145 #define CONFIG_SYS_FLASH_ERASE_TOUT     (2*CONFIG_SYS_HZ)
146 #define CONFIG_SYS_FLASH_WRITE_TOUT     (2*CONFIG_SYS_HZ)
147 #define CONFIG_SYS_FLASH_LOCK_TOUT      (2*CONFIG_SYS_HZ)
148 #define CONFIG_SYS_FLASH_UNLOCK_TOUT    (2*CONFIG_SYS_HZ)
149 #define CONFIG_SYS_FLASH_PROTECTION
150 #define CONFIG_ENV_IS_IN_FLASH
151 #else
152 #define CONFIG_SYS_NO_FLASH
153 #define CONFIG_SYS_ENV_IS_NOWHERE
154 #endif
155
156 #define CONFIG_SYS_MONITOR_BASE         0x000000
157 #define CONFIG_SYS_MONITOR_LEN          0x40000
158
159 #define CONFIG_ENV_SIZE                 0x2000
160 #define CONFIG_ENV_ADDR                 0x40000
161 #define CONFIG_ENV_SECT_SIZE            0x10000
162
163 /*
164  * GPIO settings
165  */
166 #define CONFIG_SYS_GPSR0_VAL    0x307dc7fd
167 #define CONFIG_SYS_GPSR1_VAL    0x03cffa4e
168 #define CONFIG_SYS_GPSR2_VAL    0x7131c000
169 #define CONFIG_SYS_GPSR3_VAL    0x01e1f3ff
170
171 #define CONFIG_SYS_GPCR0_VAL    0x0
172 #define CONFIG_SYS_GPCR1_VAL    0x0
173 #define CONFIG_SYS_GPCR2_VAL    0x0
174 #define CONFIG_SYS_GPCR3_VAL    0x0
175
176 #define CONFIG_SYS_GPDR0_VAL    0xc0f98e02
177 #define CONFIG_SYS_GPDR1_VAL    0xfcffa8b7
178 #define CONFIG_SYS_GPDR2_VAL    0x22e3ffff
179 #define CONFIG_SYS_GPDR3_VAL    0x000201fe
180
181 #define CONFIG_SYS_GAFR0_L_VAL  0x96c00000
182 #define CONFIG_SYS_GAFR0_U_VAL  0xa5e5459b
183 #define CONFIG_SYS_GAFR1_L_VAL  0x699b759a
184 #define CONFIG_SYS_GAFR1_U_VAL  0xaaa5a5aa
185 #define CONFIG_SYS_GAFR2_L_VAL  0xaaaaaaaa
186 #define CONFIG_SYS_GAFR2_U_VAL  0x01f9a6aa
187 #define CONFIG_SYS_GAFR3_L_VAL  0x54510003
188 #define CONFIG_SYS_GAFR3_U_VAL  0x00001599
189
190 #define CONFIG_SYS_PSSR_VAL     0x30
191
192 /*
193  * Clock settings
194  */
195 #define CONFIG_SYS_CKEN         0xffffffff
196 #define CONFIG_SYS_CCCR         0x00000290
197
198 /*
199  * Memory settings
200  */
201 #define CONFIG_SYS_MSC0_VAL     0x7ff07ff8
202 #define CONFIG_SYS_MSC1_VAL     0x7ff07ff0
203 #define CONFIG_SYS_MSC2_VAL     0x74a42491
204 #define CONFIG_SYS_MDCNFG_VAL   0x89d309d3
205 #define CONFIG_SYS_MDREFR_VAL   0x001d8018
206 #define CONFIG_SYS_MDMRS_VAL    0x00220022
207 #define CONFIG_SYS_FLYCNFG_VAL  0x00000000
208 #define CONFIG_SYS_SXCNFG_VAL   0x00000000
209 #define CONFIG_SYS_MEM_BUF_IMP  0x0f
210
211 /*
212  * PCMCIA and CF Interfaces
213  */
214 #define CONFIG_SYS_MECR_VAL     0x00000000
215 #define CONFIG_SYS_MCMEM0_VAL   0x00014307
216 #define CONFIG_SYS_MCMEM1_VAL   0x00014307
217 #define CONFIG_SYS_MCATT0_VAL   0x0001c787
218 #define CONFIG_SYS_MCATT1_VAL   0x0001c787
219 #define CONFIG_SYS_MCIO0_VAL    0x0001430f
220 #define CONFIG_SYS_MCIO1_VAL    0x0001430f
221
222 /*
223  * LCD
224  */
225 #ifdef  CONFIG_LCD
226 #define CONFIG_BALLOON3LCD
227 #define CONFIG_VIDEO_LOGO
228 #define CONFIG_CMD_BMP
229 #define CONFIG_SPLASH_SCREEN
230 #define CONFIG_SPLASH_SCREEN_ALIGN
231 #define CONFIG_VIDEO_BMP_GZIP
232 #define CONFIG_VIDEO_BMP_RLE8
233 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE  (2 << 20)
234 #endif
235
236 /*
237  * USB
238  */
239 #ifdef  CONFIG_CMD_USB
240 #define CONFIG_USB_OHCI_NEW
241 #define CONFIG_SYS_USB_OHCI_CPU_INIT
242 #define CONFIG_SYS_USB_OHCI_BOARD_INIT
243 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      2
244 #define CONFIG_SYS_USB_OHCI_REGS_BASE   0x4C000000
245 #define CONFIG_SYS_USB_OHCI_SLOT_NAME   "balloon3"
246 #define CONFIG_USB_STORAGE
247 #define CONFIG_DOS_PARTITION
248 #define CONFIG_CMD_FAT
249 #define CONFIG_CMD_EXT2
250 #endif
251
252 /*
253  * FPGA
254  */
255 #ifdef  CONFIG_CMD_FPGA
256 #define CONFIG_FPGA
257 #define CONFIG_FPGA_XILINX
258 #define CONFIG_FPGA_SPARTAN3
259 #define CONFIG_SYS_FPGA_PROG_FEEDBACK
260 #define CONFIG_SYS_FPGA_WAIT    1000
261 #define CONFIG_MAX_FPGA_DEVICES 1
262 #endif
263
264 #endif  /* __CONFIG_H */