]>
Commit | Line | Data |
---|---|---|
c609719b | 1 | /* |
6f4474e8 | 2 | * (C) Copyright 2001-2003 |
c609719b WD |
3 | * Stefan Roese, esd gmbh germany, [email protected] |
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 | */ | |
c609719b | 23 | #include <common.h> |
600fe46f MF |
24 | #include <libfdt.h> |
25 | #include <fdt_support.h> | |
c609719b | 26 | #include <asm/processor.h> |
6f35c531 | 27 | #include <asm/io.h> |
c609719b | 28 | #include <command.h> |
c609719b | 29 | #include <malloc.h> |
87663b1c | 30 | #include <net.h> |
6f35c531 | 31 | #include <pci.h> |
c609719b | 32 | |
d87080b7 WD |
33 | DECLARE_GLOBAL_DATA_PTR; |
34 | ||
f6a1f490 MF |
35 | extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); |
36 | extern void __ft_board_setup(void *blob, bd_t *bd); | |
37 | ||
38 | #undef FPGA_DEBUG | |
c609719b WD |
39 | |
40 | /* fpga configuration data - generated by bin2cc */ | |
41 | const unsigned char fpgadata[] = | |
42 | { | |
f6a1f490 MF |
43 | #if defined(CONFIG_CPCI405_VER2) |
44 | # if defined(CONFIG_CPCI405AB) | |
d4629c8c SR |
45 | # include "fpgadata_cpci405ab.c" |
46 | # else | |
47 | # include "fpgadata_cpci4052.c" | |
48 | # endif | |
c609719b WD |
49 | #else |
50 | # include "fpgadata_cpci405.c" | |
51 | #endif | |
52 | }; | |
53 | ||
54 | /* | |
55 | * include common fpga code (for esd boards) | |
56 | */ | |
57 | #include "../common/fpga.c" | |
87663b1c SR |
58 | #include "../common/auto_update.h" |
59 | ||
f6a1f490 | 60 | #if defined(CONFIG_CPCI405AB) |
87663b1c SR |
61 | au_image_t au_image[] = { |
62 | {"cpci405ab/preinst.img", 0, -1, AU_SCRIPT}, | |
63 | {"cpci405ab/pImage", 0xffc00000, 0x000c0000, AU_NOR}, | |
64 | {"cpci405ab/pImage.initrd", 0xffcc0000, 0x00300000, AU_NOR}, | |
65 | {"cpci405ab/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE}, | |
66 | {"cpci405ab/postinst.img", 0, 0, AU_SCRIPT}, | |
67 | }; | |
68 | #else | |
f6a1f490 | 69 | #if defined(CONFIG_CPCI405_VER2) |
87663b1c SR |
70 | au_image_t au_image[] = { |
71 | {"cpci4052/preinst.img", 0, -1, AU_SCRIPT}, | |
72 | {"cpci4052/pImage", 0xffc00000, 0x000c0000, AU_NOR}, | |
73 | {"cpci4052/pImage.initrd", 0xffcc0000, 0x00300000, AU_NOR}, | |
74 | {"cpci4052/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE}, | |
75 | {"cpci4052/postinst.img", 0, 0, AU_SCRIPT}, | |
76 | }; | |
77 | #else | |
78 | au_image_t au_image[] = { | |
79 | {"cpci405/preinst.img", 0, -1, AU_SCRIPT}, | |
80 | {"cpci405/pImage", 0xffc00000, 0x000c0000, AU_NOR}, | |
81 | {"cpci405/pImage.initrd", 0xffcc0000, 0x00310000, AU_NOR}, | |
82 | {"cpci405/u-boot.img", 0xfffd0000, 0x00030000, AU_FIRMWARE}, | |
83 | {"cpci405/postinst.img", 0, 0, AU_SCRIPT}, | |
84 | }; | |
85 | #endif | |
86 | #endif | |
87 | ||
88 | int N_AU_IMAGES = (sizeof(au_image) / sizeof(au_image[0])); | |
89 | ||
c609719b | 90 | /* Prototypes */ |
6f4474e8 | 91 | int cpci405_version(void); |
eedcd078 | 92 | int gunzip(void *, int, unsigned char *, unsigned long *); |
87663b1c | 93 | void lxt971_no_sleep(void); |
c609719b | 94 | |
f6a1f490 | 95 | int board_early_init_f(void) |
c609719b WD |
96 | { |
97 | #ifndef CONFIG_CPCI405_VER2 | |
98 | int index, len, i; | |
99 | int status; | |
100 | #endif | |
101 | ||
102 | #ifdef FPGA_DEBUG | |
c609719b | 103 | /* set up serial port with default baudrate */ |
f6a1f490 | 104 | (void)get_clocks(); |
c609719b | 105 | gd->baudrate = CONFIG_BAUDRATE; |
f6a1f490 | 106 | serial_init(); |
c609719b WD |
107 | console_init_f(); |
108 | #endif | |
109 | ||
110 | /* | |
f6a1f490 MF |
111 | * First pull fpga-prg pin low, |
112 | * to disable fpga logic (on version 2 board) | |
c609719b | 113 | */ |
4ef218f6 | 114 | out32(GPIO0_ODR, 0x00000000); /* no open drain pins */ |
f6a1f490 MF |
115 | out32(GPIO0_TCR, CONFIG_SYS_FPGA_PRG); /* setup for output */ |
116 | out32(GPIO0_OR, CONFIG_SYS_FPGA_PRG); /* set output pins to high */ | |
4ef218f6 | 117 | out32(GPIO0_OR, 0); /* pull prg low */ |
c609719b WD |
118 | |
119 | /* | |
120 | * Boot onboard FPGA | |
121 | */ | |
122 | #ifndef CONFIG_CPCI405_VER2 | |
6f4474e8 | 123 | if (cpci405_version() == 1) { |
c609719b WD |
124 | status = fpga_boot((unsigned char *)fpgadata, sizeof(fpgadata)); |
125 | if (status != 0) { | |
126 | /* booting FPGA failed */ | |
127 | #ifndef FPGA_DEBUG | |
c609719b | 128 | /* set up serial port with default baudrate */ |
f6a1f490 | 129 | (void)get_clocks(); |
c609719b | 130 | gd->baudrate = CONFIG_BAUDRATE; |
f6a1f490 | 131 | serial_init(); |
c609719b WD |
132 | console_init_f(); |
133 | #endif | |
134 | printf("\nFPGA: Booting failed "); | |
135 | switch (status) { | |
136 | case ERROR_FPGA_PRG_INIT_LOW: | |
f6a1f490 MF |
137 | printf("(Timeout: INIT not low after " |
138 | "asserting PROGRAM*)\n "); | |
c609719b WD |
139 | break; |
140 | case ERROR_FPGA_PRG_INIT_HIGH: | |
f6a1f490 MF |
141 | printf("(Timeout: INIT not high after " |
142 | "deasserting PROGRAM*)\n "); | |
c609719b WD |
143 | break; |
144 | case ERROR_FPGA_PRG_DONE: | |
f6a1f490 MF |
145 | printf("(Timeout: DONE not high after " |
146 | "programming FPGA)\n "); | |
c609719b WD |
147 | break; |
148 | } | |
149 | ||
150 | /* display infos on fpgaimage */ | |
151 | index = 15; | |
f6a1f490 | 152 | for (i = 0; i < 4; i++) { |
c609719b | 153 | len = fpgadata[index]; |
f6a1f490 MF |
154 | printf("FPGA: %s\n", &(fpgadata[index + 1])); |
155 | index += len + 3; | |
c609719b | 156 | } |
f6a1f490 | 157 | putc('\n'); |
c609719b | 158 | /* delayed reboot */ |
f6a1f490 | 159 | for (i = 20; i > 0; i--) { |
c609719b | 160 | printf("Rebooting in %2d seconds \r",i); |
f6a1f490 | 161 | for (index = 0; index < 1000; index++) |
c609719b WD |
162 | udelay(1000); |
163 | } | |
f6a1f490 | 164 | putc('\n'); |
c609719b WD |
165 | do_reset(NULL, 0, 0, NULL); |
166 | } | |
167 | } | |
168 | #endif /* !CONFIG_CPCI405_VER2 */ | |
169 | ||
170 | /* | |
171 | * IRQ 0-15 405GP internally generated; active high; level sensitive | |
172 | * IRQ 16 405GP internally generated; active low; level sensitive | |
173 | * IRQ 17-24 RESERVED | |
174 | * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive | |
f6a1f490 | 175 | * IRQ 26 (EXT IRQ 1) CAN1 (+FPGA on CPCI4052); active low; level sens. |
c609719b WD |
176 | * IRQ 27 (EXT IRQ 2) PCI SLOT 0; active low; level sensitive |
177 | * IRQ 28 (EXT IRQ 3) PCI SLOT 1; active low; level sensitive | |
178 | * IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive | |
179 | * IRQ 30 (EXT IRQ 5) PCI SLOT 3; active low; level sensitive | |
180 | * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive | |
181 | */ | |
4ef218f6 WD |
182 | mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */ |
183 | mtdcr(uicer, 0x00000000); /* disable all ints */ | |
184 | mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/ | |
f6a1f490 | 185 | #if defined(CONFIG_CPCI405_6U) |
6f4474e8 | 186 | if (cpci405_version() == 3) { |
4ef218f6 | 187 | mtdcr(uicpr, 0xFFFFFF99); /* set int polarities */ |
6f4474e8 | 188 | } else { |
4ef218f6 | 189 | mtdcr(uicpr, 0xFFFFFF81); /* set int polarities */ |
6f4474e8 | 190 | } |
6f35c531 | 191 | #else |
4ef218f6 | 192 | mtdcr(uicpr, 0xFFFFFF81); /* set int polarities */ |
6f35c531 | 193 | #endif |
4ef218f6 | 194 | mtdcr(uictr, 0x10000000); /* set int trigger levels */ |
f6a1f490 MF |
195 | mtdcr(uicvcr, 0x00000001); /* set vect base=0, |
196 | * INT0 highest priority */ | |
4ef218f6 | 197 | mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */ |
c609719b WD |
198 | |
199 | return 0; | |
200 | } | |
201 | ||
c609719b WD |
202 | int ctermm2(void) |
203 | { | |
f6a1f490 | 204 | #if defined(CONFIG_CPCI405_VER2) |
4ef218f6 | 205 | return 0; /* no, board is cpci405 */ |
c609719b | 206 | #else |
f6a1f490 MF |
207 | if ((in_8((void*)0xf0000400) == 0x00) && |
208 | (in_8((void*)0xf0000401) == 0x01)) | |
4ef218f6 | 209 | return 0; /* no, board is cpci405 */ |
c609719b | 210 | else |
4ef218f6 | 211 | return -1; /* yes, board is cterm-m2 */ |
c609719b WD |
212 | #endif |
213 | } | |
214 | ||
c609719b WD |
215 | int cpci405_host(void) |
216 | { | |
217 | if (mfdcr(strap) & PSR_PCI_ARBIT_EN) | |
4ef218f6 | 218 | return -1; /* yes, board is cpci405 host */ |
c609719b | 219 | else |
4ef218f6 | 220 | return 0; /* no, board is cpci405 adapter */ |
c609719b WD |
221 | } |
222 | ||
6f4474e8 | 223 | int cpci405_version(void) |
c609719b WD |
224 | { |
225 | unsigned long cntrl0Reg; | |
226 | unsigned long value; | |
227 | ||
228 | /* | |
6f4474e8 | 229 | * Setup GPIO pins (CS2/GPIO11 and CS3/GPIO12 as GPIO) |
c609719b WD |
230 | */ |
231 | cntrl0Reg = mfdcr(cntrl0); | |
6f4474e8 | 232 | mtdcr(cntrl0, cntrl0Reg | 0x03000000); |
6f35c531 MF |
233 | out_be32((void*)GPIO0_ODR, in_be32((void*)GPIO0_ODR) & ~0x00180000); |
234 | out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) & ~0x00180000); | |
f6a1f490 MF |
235 | udelay(1000); /* wait some time before reading input */ |
236 | value = in_be32((void*)GPIO0_IR) & 0x00180000; /* get config bits */ | |
c609719b WD |
237 | |
238 | /* | |
6f4474e8 | 239 | * Restore GPIO settings |
c609719b WD |
240 | */ |
241 | mtdcr(cntrl0, cntrl0Reg); | |
242 | ||
6f4474e8 SR |
243 | switch (value) { |
244 | case 0x00180000: | |
245 | /* CS2==1 && CS3==1 -> version 1 */ | |
246 | return 1; | |
247 | case 0x00080000: | |
248 | /* CS2==0 && CS3==1 -> version 2 */ | |
249 | return 2; | |
250 | case 0x00100000: | |
6f35c531 | 251 | /* CS2==1 && CS3==0 -> version 3 or 6U board */ |
6f4474e8 SR |
252 | return 3; |
253 | case 0x00000000: | |
254 | /* CS2==0 && CS3==0 -> version 4 */ | |
255 | return 4; | |
256 | default: | |
257 | /* should not be reached! */ | |
258 | return 2; | |
259 | } | |
c609719b WD |
260 | } |
261 | ||
c609719b WD |
262 | int misc_init_r (void) |
263 | { | |
afcc4a74 | 264 | unsigned long cntrl0Reg; |
c609719b | 265 | |
87663b1c SR |
266 | /* adjust flash start and offset */ |
267 | gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; | |
268 | gd->bd->bi_flashoffset = 0; | |
269 | ||
f6a1f490 | 270 | #if defined(CONFIG_CPCI405_VER2) |
87663b1c | 271 | { |
c609719b WD |
272 | unsigned char *dst; |
273 | ulong len = sizeof(fpgadata); | |
274 | int status; | |
275 | int index; | |
276 | int i; | |
c609719b WD |
277 | |
278 | /* | |
279 | * On CPCI-405 version 2 the environment is saved in eeprom! | |
280 | * FPGA can be gzip compressed (malloc) and booted this late. | |
281 | */ | |
6f4474e8 | 282 | if (cpci405_version() >= 2) { |
c609719b WD |
283 | /* |
284 | * Setup GPIO pins (CS6+CS7 as GPIO) | |
285 | */ | |
286 | cntrl0Reg = mfdcr(cntrl0); | |
287 | mtdcr(cntrl0, cntrl0Reg | 0x00300000); | |
288 | ||
6d0f6bcf | 289 | dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE); |
f6a1f490 MF |
290 | if (gunzip(dst, CONFIG_SYS_FPGA_MAX_SIZE, |
291 | (uchar *)fpgadata, &len) != 0) { | |
292 | printf("GUNZIP ERROR - must RESET board to recover\n"); | |
293 | do_reset(NULL, 0, 0, NULL); | |
c609719b WD |
294 | } |
295 | ||
296 | status = fpga_boot(dst, len); | |
297 | if (status != 0) { | |
298 | printf("\nFPGA: Booting failed "); | |
299 | switch (status) { | |
300 | case ERROR_FPGA_PRG_INIT_LOW: | |
f6a1f490 MF |
301 | printf("(Timeout: INIT not low after " |
302 | "asserting PROGRAM*)\n "); | |
c609719b WD |
303 | break; |
304 | case ERROR_FPGA_PRG_INIT_HIGH: | |
f6a1f490 MF |
305 | printf("(Timeout: INIT not high after " |
306 | "deasserting PROGRAM*)\n "); | |
c609719b WD |
307 | break; |
308 | case ERROR_FPGA_PRG_DONE: | |
f6a1f490 MF |
309 | printf("(Timeout: DONE not high after " |
310 | "programming FPGA)\n "); | |
c609719b WD |
311 | break; |
312 | } | |
313 | ||
314 | /* display infos on fpgaimage */ | |
315 | index = 15; | |
f6a1f490 | 316 | for (i = 0; i < 4; i++) { |
c609719b | 317 | len = dst[index]; |
f6a1f490 MF |
318 | printf("FPGA: %s\n", &(dst[index + 1])); |
319 | index += len + 3; | |
c609719b | 320 | } |
f6a1f490 | 321 | putc('\n'); |
c609719b | 322 | /* delayed reboot */ |
f6a1f490 MF |
323 | for (i = 20; i > 0; i--) { |
324 | printf("Rebooting in %2d seconds \r", i); | |
325 | for (index = 0; index < 1000; index++) | |
c609719b WD |
326 | udelay(1000); |
327 | } | |
f6a1f490 | 328 | putc('\n'); |
c609719b WD |
329 | do_reset(NULL, 0, 0, NULL); |
330 | } | |
331 | ||
332 | /* restore gpio/cs settings */ | |
333 | mtdcr(cntrl0, cntrl0Reg); | |
334 | ||
335 | puts("FPGA: "); | |
336 | ||
337 | /* display infos on fpgaimage */ | |
338 | index = 15; | |
f6a1f490 | 339 | for (i = 0; i < 4; i++) { |
c609719b | 340 | len = dst[index]; |
f6a1f490 MF |
341 | printf("%s ", &(dst[index + 1])); |
342 | index += len + 3; | |
c609719b | 343 | } |
f6a1f490 | 344 | putc('\n'); |
c609719b WD |
345 | |
346 | free(dst); | |
6f4474e8 SR |
347 | |
348 | /* | |
349 | * Reset FPGA via FPGA_DATA pin | |
350 | */ | |
351 | SET_FPGA(FPGA_PRG | FPGA_CLK); | |
352 | udelay(1000); /* wait 1ms */ | |
353 | SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA); | |
354 | udelay(1000); /* wait 1ms */ | |
355 | ||
f6a1f490 MF |
356 | #if defined(CONFIG_CPCI405_6U) |
357 | #error HIER GETH ES WEITER MIT IO ACCESSORS | |
6f4474e8 | 358 | if (cpci405_version() == 3) { |
6f4474e8 SR |
359 | /* |
360 | * Enable outputs in fpga on version 3 board | |
361 | */ | |
f6a1f490 MF |
362 | out_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR, |
363 | in_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR) | | |
364 | CONFIG_SYS_FPGA_MODE_ENABLE_OUTPUT); | |
6f4474e8 SR |
365 | |
366 | /* | |
367 | * Set outputs to 0 | |
368 | */ | |
f6a1f490 | 369 | out_8((void*)CONFIG_SYS_LED_ADDR, 0x00); |
6f4474e8 SR |
370 | |
371 | /* | |
372 | * Reset external DUART | |
373 | */ | |
f6a1f490 MF |
374 | out_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR, |
375 | in_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR) | | |
376 | CONFIG_SYS_FPGA_MODE_DUART_RESET); | |
6f4474e8 | 377 | udelay(100); |
f6a1f490 MF |
378 | out_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR, |
379 | in_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR) & | |
380 | ~CONFIG_SYS_FPGA_MODE_DUART_RESET); | |
6f4474e8 | 381 | } |
6f35c531 | 382 | #endif |
c609719b WD |
383 | } |
384 | else { | |
6f4474e8 SR |
385 | puts("\n*** U-Boot Version does not match Board Version!\n"); |
386 | puts("*** CPCI-405 Version 1.x detected!\n"); | |
f6a1f490 MF |
387 | puts("*** Please use correct U-Boot version " |
388 | "(CPCI405 instead of CPCI4052)!\n\n"); | |
c609719b | 389 | } |
87663b1c | 390 | } |
c609719b | 391 | #else /* CONFIG_CPCI405_VER2 */ |
6f4474e8 SR |
392 | if (cpci405_version() >= 2) { |
393 | puts("\n*** U-Boot Version does not match Board Version!\n"); | |
394 | puts("*** CPCI-405 Board Version 2.x detected!\n"); | |
f6a1f490 MF |
395 | puts("*** Please use correct U-Boot version " |
396 | "(CPCI4052 instead of CPCI405)!\n\n"); | |
c609719b | 397 | } |
c609719b WD |
398 | #endif /* CONFIG_CPCI405_VER2 */ |
399 | ||
afcc4a74 SR |
400 | /* |
401 | * Select cts (and not dsr) on uart1 | |
402 | */ | |
403 | cntrl0Reg = mfdcr(cntrl0); | |
404 | mtdcr(cntrl0, cntrl0Reg | 0x00001000); | |
405 | ||
f6a1f490 | 406 | return 0; |
c609719b WD |
407 | } |
408 | ||
c609719b WD |
409 | /* |
410 | * Check Board Identity: | |
411 | */ | |
412 | ||
f6a1f490 | 413 | int checkboard(void) |
c609719b WD |
414 | { |
415 | #ifndef CONFIG_CPCI405_VER2 | |
416 | int index; | |
417 | int len; | |
418 | #endif | |
77ddac94 | 419 | char str[64]; |
f6a1f490 | 420 | int i = getenv_r("serial#", str, sizeof(str)); |
6f4474e8 | 421 | unsigned short ver; |
c609719b | 422 | |
f6a1f490 | 423 | puts("Board: "); |
c609719b | 424 | |
f6a1f490 MF |
425 | if (i == -1) |
426 | puts("### No HW ID - assuming CPCI405"); | |
427 | else | |
c609719b | 428 | puts(str); |
c609719b | 429 | |
6f4474e8 SR |
430 | ver = cpci405_version(); |
431 | printf(" (Ver %d.x, ", ver); | |
c609719b | 432 | |
c609719b | 433 | if (ctermm2()) { |
77ddac94 | 434 | char str[4]; |
1b554406 SR |
435 | |
436 | /* | |
437 | * Read board-id and save in env-variable | |
438 | */ | |
439 | sprintf(str, "%d", *(unsigned char *)0xf0000400); | |
440 | setenv("boardid", str); | |
441 | printf("CTERM-M2 - Id=%s)", str); | |
c609719b | 442 | } else { |
f6a1f490 MF |
443 | if (cpci405_host()) |
444 | puts("PCI Host Version)"); | |
445 | else | |
446 | puts("PCI Adapter Version)"); | |
c609719b WD |
447 | } |
448 | ||
449 | #ifndef CONFIG_CPCI405_VER2 | |
f6a1f490 | 450 | puts("\nFPGA: "); |
c609719b WD |
451 | |
452 | /* display infos on fpgaimage */ | |
453 | index = 15; | |
f6a1f490 | 454 | for (i = 0; i < 4; i++) { |
c609719b | 455 | len = fpgadata[index]; |
f6a1f490 MF |
456 | printf("%s ", &(fpgadata[index + 1])); |
457 | index += len + 3; | |
c609719b WD |
458 | } |
459 | #endif | |
460 | ||
f6a1f490 | 461 | putc('\n'); |
c609719b WD |
462 | return 0; |
463 | } | |
464 | ||
6f35c531 | 465 | void reset_phy(void) |
c609719b | 466 | { |
f6a1f490 | 467 | #if defined(CONFIG_LXT971_NO_SLEEP) |
c609719b | 468 | |
6f35c531 MF |
469 | /* |
470 | * Disable sleep mode in LXT971 | |
471 | */ | |
472 | lxt971_no_sleep(); | |
473 | #endif | |
c609719b WD |
474 | } |
475 | ||
f6a1f490 | 476 | #if defined(CONFIG_CPCI405_VER2) && defined (CONFIG_IDE_RESET) |
c609719b WD |
477 | void ide_set_reset(int on) |
478 | { | |
c609719b WD |
479 | /* |
480 | * Assert or deassert CompactFlash Reset Pin | |
481 | */ | |
f6a1f490 MF |
482 | if (on) { /* assert RESET */ |
483 | out_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR, | |
484 | in_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR) & | |
485 | ~CONFIG_SYS_FPGA_MODE_CF_RESET); | |
486 | } else { /* release RESET */ | |
487 | out_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR, | |
488 | in_be16((void*)CONFIG_SYS_FPGA_BASE_ADDR) | | |
489 | CONFIG_SYS_FPGA_MODE_CF_RESET); | |
c609719b WD |
490 | } |
491 | } | |
492 | ||
f6a1f490 | 493 | #endif /* CONFIG_IDE_RESET && CONFIG_CPCI405_VER2 */ |
c609719b | 494 | |
466fff1a | 495 | #if defined(CONFIG_PCI) |
6f35c531 MF |
496 | void cpci405_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev) |
497 | { | |
498 | unsigned char int_line = 0xff; | |
499 | ||
500 | /* | |
501 | * Write pci interrupt line register (cpci405 specific) | |
502 | */ | |
503 | switch (PCI_DEV(dev) & 0x03) { | |
504 | case 0: | |
505 | int_line = 27 + 2; | |
506 | break; | |
507 | case 1: | |
508 | int_line = 27 + 3; | |
509 | break; | |
510 | case 2: | |
511 | int_line = 27 + 0; | |
512 | break; | |
513 | case 3: | |
514 | int_line = 27 + 1; | |
515 | break; | |
516 | } | |
517 | ||
518 | pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, int_line); | |
519 | } | |
520 | ||
521 | int pci_pre_init(struct pci_controller *hose) | |
522 | { | |
523 | hose->fixup_irq = cpci405_pci_fixup_irq; | |
524 | return 1; | |
525 | } | |
466fff1a | 526 | #endif /* defined(CONFIG_PCI) */ |
6f35c531 | 527 | |
600fe46f MF |
528 | #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) |
529 | void ft_board_setup(void *blob, bd_t *bd) | |
530 | { | |
531 | int rc; | |
532 | ||
533 | __ft_board_setup(blob, bd); | |
534 | ||
535 | /* | |
536 | * Disable PCI in adapter mode. | |
537 | */ | |
538 | if (!cpci405_host()) { | |
539 | rc = fdt_find_and_setprop(blob, "/plb/pci@ec000000", "status", | |
540 | "disabled", sizeof("disabled"), 1); | |
541 | if (rc) { | |
542 | printf("Unable to update property status in PCI node, " | |
543 | "err=%s\n", | |
544 | fdt_strerror(rc)); | |
545 | } | |
546 | } | |
547 | } | |
548 | #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */ | |
549 | ||
f6a1f490 MF |
550 | #if defined(CONFIG_CPCI405AB) |
551 | #define ONE_WIRE_CLEAR out_be16((void*)(CONFIG_SYS_FPGA_BASE_ADDR + \ | |
552 | CONFIG_SYS_FPGA_MODE), \ | |
553 | in_be16((void*)(CONFIG_SYS_FPGA_BASE_ADDR + \ | |
554 | CONFIG_SYS_FPGA_MODE)) | \ | |
555 | CONFIG_SYS_FPGA_MODE_1WIRE_DIR) | |
6f35c531 | 556 | |
f6a1f490 MF |
557 | #define ONE_WIRE_SET out_be16((void*)(CONFIG_SYS_FPGA_BASE_ADDR + \ |
558 | CONFIG_SYS_FPGA_MODE), \ | |
559 | in_be16((void*)(CONFIG_SYS_FPGA_BASE_ADDR + \ | |
560 | CONFIG_SYS_FPGA_MODE)) & \ | |
561 | ~CONFIG_SYS_FPGA_MODE_1WIRE_DIR) | |
1b554406 | 562 | |
f6a1f490 MF |
563 | #define ONE_WIRE_GET (in_be16((void*)(CONFIG_SYS_FPGA_BASE_ADDR + \ |
564 | CONFIG_SYS_FPGA_STATUS)) & \ | |
565 | CONFIG_SYS_FPGA_MODE_1WIRE) | |
1b554406 SR |
566 | |
567 | /* | |
568 | * Generate a 1-wire reset, return 1 if no presence detect was found, | |
569 | * return 0 otherwise. | |
570 | * (NOTE: Does not handle alarm presence from DS2404/DS1994) | |
571 | */ | |
572 | int OWTouchReset(void) | |
d4629c8c | 573 | { |
1b554406 SR |
574 | int result; |
575 | ||
576 | ONE_WIRE_CLEAR; | |
577 | udelay(480); | |
578 | ONE_WIRE_SET; | |
579 | udelay(70); | |
580 | ||
581 | result = ONE_WIRE_GET; | |
582 | ||
583 | udelay(410); | |
584 | return result; | |
585 | } | |
586 | ||
1b554406 SR |
587 | /* |
588 | * Send 1 a 1-wire write bit. | |
589 | * Provide 10us recovery time. | |
590 | */ | |
591 | void OWWriteBit(int bit) | |
592 | { | |
593 | if (bit) { | |
594 | /* | |
595 | * write '1' bit | |
596 | */ | |
597 | ONE_WIRE_CLEAR; | |
598 | udelay(6); | |
599 | ONE_WIRE_SET; | |
600 | udelay(64); | |
601 | } else { | |
602 | /* | |
603 | * write '0' bit | |
604 | */ | |
605 | ONE_WIRE_CLEAR; | |
606 | udelay(60); | |
607 | ONE_WIRE_SET; | |
608 | udelay(10); | |
d4629c8c | 609 | } |
1b554406 SR |
610 | } |
611 | ||
1b554406 SR |
612 | /* |
613 | * Read a bit from the 1-wire bus and return it. | |
614 | * Provide 10us recovery time. | |
615 | */ | |
616 | int OWReadBit(void) | |
617 | { | |
618 | int result; | |
619 | ||
620 | ONE_WIRE_CLEAR; | |
621 | udelay(6); | |
622 | ONE_WIRE_SET; | |
623 | udelay(9); | |
624 | ||
625 | result = ONE_WIRE_GET; | |
626 | ||
627 | udelay(55); | |
628 | return result; | |
d4629c8c SR |
629 | } |
630 | ||
1b554406 SR |
631 | void OWWriteByte(int data) |
632 | { | |
633 | int loop; | |
634 | ||
f6a1f490 | 635 | for (loop = 0; loop < 8; loop++) { |
1b554406 SR |
636 | OWWriteBit(data & 0x01); |
637 | data >>= 1; | |
638 | } | |
639 | } | |
640 | ||
1b554406 | 641 | int OWReadByte(void) |
d4629c8c | 642 | { |
1b554406 SR |
643 | int loop, result = 0; |
644 | ||
f6a1f490 | 645 | for (loop = 0; loop < 8; loop++) { |
1b554406 | 646 | result >>= 1; |
f6a1f490 | 647 | if (OWReadBit()) |
1b554406 | 648 | result |= 0x80; |
d4629c8c | 649 | } |
1b554406 SR |
650 | |
651 | return result; | |
d4629c8c SR |
652 | } |
653 | ||
1b554406 SR |
654 | int do_onewire(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
655 | { | |
f6a1f490 | 656 | unsigned short val; |
1b554406 SR |
657 | int result; |
658 | int i; | |
659 | unsigned char ow_id[6]; | |
77ddac94 | 660 | char str[32]; |
1b554406 SR |
661 | unsigned char ow_crc; |
662 | ||
663 | /* | |
664 | * Clear 1-wire bit (open drain with pull-up) | |
665 | */ | |
f6a1f490 MF |
666 | val = in_be16((void*)(CONFIG_SYS_FPGA_BASE_ADDR + |
667 | CONFIG_SYS_FPGA_MODE)); | |
668 | val &= ~CONFIG_SYS_FPGA_MODE_1WIRE; /* clear 1-wire bit */ | |
669 | out_be16((void*)(CONFIG_SYS_FPGA_BASE_ADDR + | |
670 | CONFIG_SYS_FPGA_MODE), val); | |
1b554406 SR |
671 | |
672 | result = OWTouchReset(); | |
f6a1f490 | 673 | if (result != 0) |
1b554406 | 674 | puts("No 1-wire device detected!\n"); |
1b554406 SR |
675 | |
676 | OWWriteByte(0x33); /* send read rom command */ | |
677 | OWReadByte(); /* skip family code ( == 0x01) */ | |
f6a1f490 | 678 | for (i = 0; i < 6; i++) |
1b554406 | 679 | ow_id[i] = OWReadByte(); |
1b554406 SR |
680 | ow_crc = OWReadByte(); /* read crc */ |
681 | ||
f6a1f490 MF |
682 | sprintf(str, "%08X%04X", |
683 | *(unsigned int *)&ow_id[0], | |
684 | *(unsigned short *)&ow_id[4]); | |
1b554406 SR |
685 | printf("Setting environment variable 'ow_id' to %s\n", str); |
686 | setenv("ow_id", str); | |
687 | ||
688 | return 0; | |
689 | } | |
690 | U_BOOT_CMD( | |
691 | onewire, 1, 1, do_onewire, | |
2fb2604d | 692 | "Read 1-write ID", |
1b554406 SR |
693 | NULL |
694 | ); | |
695 | ||
f6a1f490 MF |
696 | #define CONFIG_SYS_I2C_EEPROM_ADDR_2 0x51 /* EEPROM CAT24WC32 */ |
697 | #define CONFIG_ENV_SIZE_2 0x800 /* 2048 bytes may be used for env vars */ | |
87663b1c SR |
698 | |
699 | /* | |
700 | * Write backplane ip-address... | |
701 | */ | |
702 | int do_get_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
703 | { | |
87663b1c SR |
704 | bd_t *bd = gd->bd; |
705 | char *buf; | |
706 | ulong crc; | |
707 | char str[32]; | |
708 | char *ptr; | |
709 | IPaddr_t ipaddr; | |
710 | ||
0e8d1586 | 711 | buf = malloc(CONFIG_ENV_SIZE_2); |
f6a1f490 MF |
712 | if (eeprom_read(CONFIG_SYS_I2C_EEPROM_ADDR_2, 0, |
713 | (uchar *)buf, CONFIG_ENV_SIZE_2)) | |
87663b1c | 714 | puts("\nError reading backplane EEPROM!\n"); |
f6a1f490 MF |
715 | else { |
716 | crc = crc32(0, (uchar *)(buf+4), CONFIG_ENV_SIZE_2 - 4); | |
87663b1c | 717 | if (crc != *(ulong *)buf) { |
f6a1f490 MF |
718 | printf("ERROR: crc mismatch %08lx %08lx\n", |
719 | crc, *(ulong *)buf); | |
87663b1c SR |
720 | return -1; |
721 | } | |
722 | ||
723 | /* | |
724 | * Find bp_ip | |
725 | */ | |
726 | ptr = strstr(buf+4, "bp_ip="); | |
727 | if (ptr == NULL) { | |
728 | printf("ERROR: bp_ip not found!\n"); | |
729 | return -1; | |
730 | } | |
731 | ptr += 6; | |
732 | ipaddr = string_to_ip(ptr); | |
733 | ||
734 | /* | |
735 | * Update whole ip-addr | |
736 | */ | |
737 | bd->bi_ip_addr = ipaddr; | |
738 | sprintf(str, "%ld.%ld.%ld.%ld", | |
739 | (bd->bi_ip_addr & 0xff000000) >> 24, | |
740 | (bd->bi_ip_addr & 0x00ff0000) >> 16, | |
741 | (bd->bi_ip_addr & 0x0000ff00) >> 8, | |
742 | (bd->bi_ip_addr & 0x000000ff)); | |
743 | setenv("ipaddr", str); | |
744 | printf("Updated ip_addr from bp_eeprom to %s!\n", str); | |
745 | } | |
746 | ||
747 | free(buf); | |
748 | ||
749 | return 0; | |
750 | } | |
751 | U_BOOT_CMD( | |
752 | getbpip, 1, 1, do_get_bpip, | |
2fb2604d | 753 | "Update IP-Address with Backplane IP-Address", |
87663b1c SR |
754 | NULL |
755 | ); | |
756 | ||
757 | /* | |
758 | * Set and print backplane ip... | |
759 | */ | |
760 | int do_set_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
761 | { | |
762 | char *buf; | |
77ddac94 | 763 | char str[32]; |
87663b1c SR |
764 | ulong crc; |
765 | ||
766 | if (argc < 2) { | |
767 | puts("ERROR!\n"); | |
768 | return -1; | |
769 | } | |
770 | ||
771 | printf("Setting bp_ip to %s\n", argv[1]); | |
0e8d1586 JCPV |
772 | buf = malloc(CONFIG_ENV_SIZE_2); |
773 | memset(buf, 0, CONFIG_ENV_SIZE_2); | |
87663b1c SR |
774 | sprintf(str, "bp_ip=%s", argv[1]); |
775 | strcpy(buf+4, str); | |
f6a1f490 | 776 | crc = crc32(0, (uchar *)(buf+4), CONFIG_ENV_SIZE_2 - 4); |
87663b1c SR |
777 | *(ulong *)buf = crc; |
778 | ||
f6a1f490 MF |
779 | if (eeprom_write(CONFIG_SYS_I2C_EEPROM_ADDR_2, |
780 | 0, (uchar *)buf, CONFIG_ENV_SIZE_2)) | |
87663b1c | 781 | puts("\nError writing backplane EEPROM!\n"); |
87663b1c SR |
782 | |
783 | free(buf); | |
784 | ||
785 | return 0; | |
786 | } | |
787 | U_BOOT_CMD( | |
788 | setbpip, 2, 1, do_set_bpip, | |
2fb2604d | 789 | "Write Backplane IP-Address", |
87663b1c SR |
790 | NULL |
791 | ); | |
792 | ||
1b554406 | 793 | #endif /* CONFIG_CPCI405AB */ |