]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/mpl/common/common_util.c
GCC-4.x fixes: clean up global data pointer initialization for all boards.
[people/ms/u-boot.git] / board / mpl / common / common_util.c
1 /*
2 * (C) Copyright 2001
3 * Denis Peter, MPL AG Switzerland, d.peter@mpl.ch
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 #include <common.h>
26 #include <command.h>
27 #include <video_fb.h>
28 #include "common_util.h"
29 #include <asm/processor.h>
30 #include <asm/byteorder.h>
31 #include <i2c.h>
32 #include <devices.h>
33 #include <pci.h>
34 #include <malloc.h>
35 #include <bzlib.h>
36
37 #ifdef CONFIG_PIP405
38 #include "../pip405/pip405.h"
39 #include <405gp_pci.h>
40 #endif
41 #ifdef CONFIG_MIP405
42 #include "../mip405/mip405.h"
43 #include <405gp_pci.h>
44 #endif
45
46 DECLARE_GLOBAL_DATA_PTR;
47
48 #if defined(CONFIG_PATI)
49 #define FIRM_START 0xFFF00000
50 #endif
51
52 extern int gunzip(void *, int, uchar *, unsigned long *);
53 extern int mem_test(ulong start, ulong ramsize, int quiet);
54
55 #define I2C_BACKUP_ADDR 0x7C00 /* 0x200 bytes for backup */
56 #define IMAGE_SIZE CFG_MONITOR_LEN /* ugly, but it works for now */
57
58 extern flash_info_t flash_info[]; /* info for FLASH chips */
59
60 static image_header_t header;
61
62
63 static int
64 mpl_prg(uchar *src, ulong size)
65 {
66 ulong start;
67 flash_info_t *info;
68 int i, rc;
69 #if defined(CONFIG_PATI)
70 int start_sect;
71 #endif
72 #if defined(CONFIG_PIP405) || defined(CONFIG_MIP405) || defined(CONFIG_PATI)
73 char *copystr = (char *)src;
74 ulong *magic = (ulong *)src;
75 #endif
76
77 info = &flash_info[0];
78
79 #if defined(CONFIG_PIP405) || defined(CONFIG_MIP405) || defined(CONFIG_PATI)
80 if (ntohl(magic[0]) != IH_MAGIC) {
81 puts("Bad Magic number\n");
82 return -1;
83 }
84 /* some more checks before we delete the Flash... */
85 /* Checking the ISO_STRING prevents to program a
86 * wrong Firmware Image into the flash.
87 */
88 i = 4; /* skip Magic number */
89 while (1) {
90 if (strncmp(&copystr[i], "MEV-", 4) == 0)
91 break;
92 if (i++ >= 0x100) {
93 puts("Firmware Image for unknown Target\n");
94 return -1;
95 }
96 }
97 /* we have the ISO STRING, check */
98 if (strncmp(&copystr[i], CONFIG_ISO_STRING, sizeof(CONFIG_ISO_STRING)-1) != 0) {
99 printf("Wrong Firmware Image: %s\n", &copystr[i]);
100 return -1;
101 }
102 #if !defined(CONFIG_PATI)
103 start = 0 - size;
104 for (i = info->sector_count-1; i > 0; i--) {
105 info->protect[i] = 0; /* unprotect this sector */
106 if (start >= info->start[i])
107 break;
108 }
109 /* set-up flash location */
110 /* now erase flash */
111 printf("Erasing at %lx (sector %d) (start %lx)\n",
112 start,i,info->start[i]);
113 if ((rc = flash_erase (info, i, info->sector_count-1)) != 0) {
114 puts("ERROR ");
115 flash_perror(rc);
116 return (1);
117 }
118
119 #else /* #if !defined(CONFIG_PATI */
120 start = FIRM_START;
121 start_sect = -1;
122 for (i = 0; i < info->sector_count; i++) {
123 if (start < info->start[i]) {
124 start_sect = i - 1;
125 break;
126 }
127 }
128
129 info->protect[i - 1] = 0; /* unprotect this sector */
130 for (; i < info->sector_count; i++) {
131 if ((start + size) < info->start[i])
132 break;
133 info->protect[i] = 0; /* unprotect this sector */
134 }
135
136 i--;
137 /* set-up flash location */
138 /* now erase flash */
139 printf ("Erasing at %lx to %lx (sector %d to %d) (%lx to %lx)\n",
140 start, start + size, start_sect, i,
141 info->start[start_sect], info->start[i]);
142 if ((rc = flash_erase (info, start_sect, i)) != 0) {
143 puts ("ERROR ");
144 flash_perror (rc);
145 return (1);
146 }
147 #endif /* defined(CONFIG_PATI) */
148
149 #elif defined(CONFIG_VCMA9)
150 start = 0;
151 for (i = 0; i <info->sector_count; i++) {
152 info->protect[i] = 0; /* unprotect this sector */
153 if (size < info->start[i])
154 break;
155 }
156 /* set-up flash location */
157 /* now erase flash */
158 printf("Erasing at %lx (sector %d) (start %lx)\n",
159 start,0,info->start[0]);
160 if ((rc = flash_erase (info, 0, i)) != 0) {
161 puts("ERROR ");
162 flash_perror(rc);
163 return (1);
164 }
165
166 #endif
167 printf("flash erased, programming from 0x%lx 0x%lx Bytes\n",
168 (ulong)src, size);
169 if ((rc = flash_write ((char *)src, start, size)) != 0) {
170 puts("ERROR ");
171 flash_perror(rc);
172 return (1);
173 }
174 puts("OK programming done\n");
175 return 0;
176 }
177
178
179 static int
180 mpl_prg_image(uchar *ld_addr)
181 {
182 unsigned long len, checksum;
183 uchar *data;
184 image_header_t *hdr = &header;
185 int rc;
186
187 /* Copy header so we can blank CRC field for re-calculation */
188 memcpy (&header, (char *)ld_addr, sizeof(image_header_t));
189 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
190 puts("Bad Magic Number\n");
191 return 1;
192 }
193 print_image_hdr(hdr);
194 if (hdr->ih_os != IH_OS_U_BOOT) {
195 puts("No U-Boot Image\n");
196 return 1;
197 }
198 if (hdr->ih_type != IH_TYPE_FIRMWARE) {
199 puts("No Firmware Image\n");
200 return 1;
201 }
202 data = (uchar *)&header;
203 len = sizeof(image_header_t);
204 checksum = ntohl(hdr->ih_hcrc);
205 hdr->ih_hcrc = 0;
206 if (crc32 (0, (uchar *)data, len) != checksum) {
207 puts("Bad Header Checksum\n");
208 return 1;
209 }
210 data = ld_addr + sizeof(image_header_t);
211 len = ntohl(hdr->ih_size);
212 puts("Verifying Checksum ... ");
213 if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
214 puts("Bad Data CRC\n");
215 return 1;
216 }
217 puts("OK\n");
218
219 if (hdr->ih_comp != IH_COMP_NONE) {
220 uchar *buf;
221 /* reserve space for uncompressed image */
222 if ((buf = malloc(IMAGE_SIZE)) == NULL) {
223 puts("Insufficient space for decompression\n");
224 return 1;
225 }
226
227 switch (hdr->ih_comp) {
228 case IH_COMP_GZIP:
229 puts("Uncompressing (GZIP) ... ");
230 rc = gunzip ((void *)(buf), IMAGE_SIZE, data, &len);
231 if (rc != 0) {
232 puts("GUNZIP ERROR\n");
233 free(buf);
234 return 1;
235 }
236 puts("OK\n");
237 break;
238 #ifdef CONFIG_BZIP2
239 case IH_COMP_BZIP2:
240 puts("Uncompressing (BZIP2) ... ");
241 {
242 uint retlen = IMAGE_SIZE;
243 rc = BZ2_bzBuffToBuffDecompress ((char *)(buf), &retlen,
244 (char *)data, len, 0, 0);
245 len = retlen;
246 }
247 if (rc != BZ_OK) {
248 printf ("BUNZIP2 ERROR: %d\n", rc);
249 free(buf);
250 return 1;
251 }
252 puts("OK\n");
253 break;
254 #endif
255 default:
256 printf ("Unimplemented compression type %d\n", hdr->ih_comp);
257 free(buf);
258 return 1;
259 }
260
261 rc = mpl_prg(buf, len);
262 free(buf);
263 } else {
264 rc = mpl_prg(data, len);
265 }
266
267 return(rc);
268 }
269
270 #if !defined(CONFIG_PATI)
271 void get_backup_values(backup_t *buf)
272 {
273 i2c_read(CFG_DEF_EEPROM_ADDR, I2C_BACKUP_ADDR,2,(void *)buf,sizeof(backup_t));
274 }
275
276 void set_backup_values(int overwrite)
277 {
278 backup_t back;
279 int i;
280
281 get_backup_values(&back);
282 if(!overwrite) {
283 if(strncmp(back.signature,"MPL\0",4)==0) {
284 puts("Not possible to write Backup\n");
285 return;
286 }
287 }
288 memcpy(back.signature,"MPL\0",4);
289 i = getenv_r("serial#",back.serial_name,16);
290 if(i < 0) {
291 puts("Not possible to write Backup\n");
292 return;
293 }
294 back.serial_name[16]=0;
295 i = getenv_r("ethaddr",back.eth_addr,20);
296 if(i < 0) {
297 puts("Not possible to write Backup\n");
298 return;
299 }
300 back.eth_addr[20]=0;
301 i2c_write(CFG_DEF_EEPROM_ADDR, I2C_BACKUP_ADDR,2,(void *)&back,sizeof(backup_t));
302 }
303
304 void clear_env_values(void)
305 {
306 backup_t back;
307 unsigned char env_crc[4];
308
309 memset(&back,0xff,sizeof(backup_t));
310 memset(env_crc,0x00,4);
311 i2c_write(CFG_DEF_EEPROM_ADDR,I2C_BACKUP_ADDR,2,(void *)&back,sizeof(backup_t));
312 i2c_write(CFG_DEF_EEPROM_ADDR,CFG_ENV_OFFSET,2,(void *)env_crc,4);
313 }
314
315 /*
316 * check crc of "older" environment
317 */
318 int check_env_old_size(ulong oldsize)
319 {
320 ulong crc, len, new;
321 unsigned off;
322 uchar buf[64];
323
324 /* read old CRC */
325 eeprom_read (CFG_DEF_EEPROM_ADDR,
326 CFG_ENV_OFFSET,
327 (uchar *)&crc, sizeof(ulong));
328
329 new = 0;
330 len = oldsize;
331 off = sizeof(long);
332 len = oldsize-off;
333 while (len > 0) {
334 int n = (len > sizeof(buf)) ? sizeof(buf) : len;
335
336 eeprom_read (CFG_DEF_EEPROM_ADDR, CFG_ENV_OFFSET+off, buf, n);
337 new = crc32 (new, buf, n);
338 len -= n;
339 off += n;
340 }
341
342 return (crc == new);
343 }
344
345 static ulong oldsizes[] = {
346 0x200,
347 0x800,
348 0
349 };
350
351 void copy_old_env(ulong size)
352 {
353 uchar name_buf[64];
354 uchar value_buf[0x800];
355 uchar c;
356 ulong len;
357 unsigned off;
358 uchar *name, *value;
359
360 name=&name_buf[0];
361 value=&value_buf[0];
362 len=size;
363 off = sizeof(long);
364 while (len > off) {
365 eeprom_read (CFG_DEF_EEPROM_ADDR, CFG_ENV_OFFSET+off, &c, 1);
366 if(c != '=') {
367 *name++=c;
368 off++;
369 }
370 else {
371 *name++='\0';
372 off++;
373 do {
374 eeprom_read (CFG_DEF_EEPROM_ADDR, CFG_ENV_OFFSET+off, &c, 1);
375 *value++=c;
376 off++;
377 if(c == '\0')
378 break;
379 } while(len > off);
380 name=&name_buf[0];
381 value=&value_buf[0];
382 if(strncmp((char *)name,"baudrate",8)!=0) {
383 setenv((char *)name,(char *)value);
384 }
385
386 }
387 }
388 }
389
390
391 void check_env(void)
392 {
393 char *s;
394 int i=0;
395 char buf[32];
396 backup_t back;
397
398 s=getenv("serial#");
399 if(!s) {
400 while(oldsizes[i]) {
401 if(check_env_old_size(oldsizes[i]))
402 break;
403 i++;
404 }
405 if(!oldsizes[i]) {
406 /* no old environment has been found */
407 get_backup_values (&back);
408 if (strncmp (back.signature, "MPL\0", 4) == 0) {
409 sprintf (buf, "%s", back.serial_name);
410 setenv ("serial#", buf);
411 sprintf (buf, "%s", back.eth_addr);
412 setenv ("ethaddr", buf);
413 printf ("INFO: serial# and ethaddr recovered, use saveenv\n");
414 return;
415 }
416 }
417 else {
418 copy_old_env(oldsizes[i]);
419 puts("INFO: old environment ajusted, use saveenv\n");
420 }
421 }
422 else {
423 /* check if back up is set */
424 get_backup_values(&back);
425 if(strncmp(back.signature,"MPL\0",4)!=0) {
426 set_backup_values(0);
427 }
428 }
429 }
430
431
432 extern device_t *stdio_devices[];
433 extern char *stdio_names[];
434
435 void show_stdio_dev(void)
436 {
437 /* Print information */
438 puts("In: ");
439 if (stdio_devices[stdin] == NULL) {
440 puts("No input devices available!\n");
441 } else {
442 printf ("%s\n", stdio_devices[stdin]->name);
443 }
444
445 puts("Out: ");
446 if (stdio_devices[stdout] == NULL) {
447 puts("No output devices available!\n");
448 } else {
449 printf ("%s\n", stdio_devices[stdout]->name);
450 }
451
452 puts("Err: ");
453 if (stdio_devices[stderr] == NULL) {
454 puts("No error devices available!\n");
455 } else {
456 printf ("%s\n", stdio_devices[stderr]->name);
457 }
458 }
459
460 #endif /* #if !defined(CONFIG_PATI) */
461
462 int do_mplcommon(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
463 {
464 ulong size,src,ld_addr;
465 int result;
466 #if !defined(CONFIG_PATI)
467 backup_t back;
468 src = MULTI_PURPOSE_SOCKET_ADDR;
469 size = IMAGE_SIZE;
470 #endif
471
472 if (strcmp(argv[1], "flash") == 0)
473 {
474 #if (CONFIG_COMMANDS & CFG_CMD_FDC)
475 if (strcmp(argv[2], "floppy") == 0) {
476 char *local_args[3];
477 extern int do_fdcboot (cmd_tbl_t *, int, int, char *[]);
478 puts("\nupdating bootloader image from floppy\n");
479 local_args[0] = argv[0];
480 if(argc==4) {
481 local_args[1] = argv[3];
482 local_args[2] = NULL;
483 ld_addr=simple_strtoul(argv[3], NULL, 16);
484 result=do_fdcboot(cmdtp, 0, 2, local_args);
485 }
486 else {
487 local_args[1] = NULL;
488 ld_addr=CFG_LOAD_ADDR;
489 result=do_fdcboot(cmdtp, 0, 1, local_args);
490 }
491 result=mpl_prg_image((uchar *)ld_addr);
492 return result;
493 }
494 #endif /* (CONFIG_COMMANDS & CFG_CMD_FDC) */
495 if (strcmp(argv[2], "mem") == 0) {
496 if(argc==4) {
497 ld_addr=simple_strtoul(argv[3], NULL, 16);
498 }
499 else {
500 ld_addr=load_addr;
501 }
502 printf ("\nupdating bootloader image from memory at %lX\n",ld_addr);
503 result=mpl_prg_image((uchar *)ld_addr);
504 return result;
505 }
506 #if !defined(CONFIG_PATI)
507 if (strcmp(argv[2], "mps") == 0) {
508 puts("\nupdating bootloader image from MPS\n");
509 result=mpl_prg((uchar *)src,size);
510 return result;
511 }
512 #endif /* #if !defined(CONFIG_PATI) */
513 }
514 if (strcmp(argv[1], "mem") == 0)
515 {
516 result=0;
517 if(argc==3)
518 {
519 result = (int)simple_strtol(argv[2], NULL, 16);
520 }
521 src=(unsigned long)&result;
522 src-=CFG_MEMTEST_START;
523 src-=(100*1024); /* - 100k */
524 src&=0xfff00000;
525 size=0;
526 do {
527 size++;
528 printf("\n\nPass %ld\n",size);
529 mem_test(CFG_MEMTEST_START,src,1);
530 if(ctrlc())
531 break;
532 if(result>0)
533 result--;
534
535 }while(result);
536 return 0;
537 }
538 #if !defined(CONFIG_PATI)
539 if (strcmp(argv[1], "clearenvvalues") == 0)
540 {
541 if (strcmp(argv[2], "yes") == 0)
542 {
543 clear_env_values();
544 return 0;
545 }
546 }
547 if (strcmp(argv[1], "getback") == 0) {
548 get_backup_values(&back);
549 back.signature[3]=0;
550 back.serial_name[16]=0;
551 back.eth_addr[20]=0;
552 printf("GetBackUp: signature: %s\n",back.signature);
553 printf(" serial#: %s\n",back.serial_name);
554 printf(" ethaddr: %s\n",back.eth_addr);
555 return 0;
556 }
557 if (strcmp(argv[1], "setback") == 0) {
558 set_backup_values(1);
559 return 0;
560 }
561 #endif
562 printf("Usage:\n%s\n", cmdtp->usage);
563 return 1;
564 }
565
566
567 #if (CONFIG_COMMANDS & CFG_CMD_DOC)
568 extern void doc_probe(ulong physadr);
569 void doc_init (void)
570 {
571 doc_probe(MULTI_PURPOSE_SOCKET_ADDR);
572 }
573 #endif
574
575
576 #ifdef CONFIG_VIDEO
577 /******************************************************
578 * Routines to display the Board information
579 * to the screen (since the VGA will be initialized as last,
580 * we must resend the infos)
581 */
582
583 #ifdef CONFIG_CONSOLE_EXTRA_INFO
584 extern GraphicDevice ctfb;
585 extern int get_boot_mode(void);
586
587 void video_get_info_str (int line_number, char *info)
588 {
589 /* init video info strings for graphic console */
590 PPC405_SYS_INFO sys_info;
591 char rev;
592 int i,boot;
593 unsigned long pvr;
594 char buf[64];
595 char tmp[16];
596 char cpustr[16];
597 char *s, *e, bc;
598 switch (line_number)
599 {
600 case 2:
601 /* CPU and board infos */
602 pvr=get_pvr();
603 get_sys_info (&sys_info);
604 switch (pvr) {
605 case PVR_405GP_RB: rev='B'; break;
606 case PVR_405GP_RC: rev='C'; break;
607 case PVR_405GP_RD: rev='D'; break;
608 case PVR_405GP_RE: rev='E'; break;
609 case PVR_405GPR_RB: rev='B'; break;
610 default: rev='?'; break;
611 }
612 if(pvr==PVR_405GPR_RB)
613 sprintf(cpustr,"PPC405GPr %c",rev);
614 else
615 sprintf(cpustr,"PPC405GP %c",rev);
616 /* Board info */
617 i=0;
618 s=getenv ("serial#");
619 #ifdef CONFIG_PIP405
620 if (!s || strncmp (s, "PIP405", 6)) {
621 sprintf(buf,"### No HW ID - assuming PIP405");
622 }
623 #endif
624 #ifdef CONFIG_MIP405
625 if (!s || strncmp (s, "MIP405", 6)) {
626 sprintf(buf,"### No HW ID - assuming MIP405");
627 }
628 #endif
629 else {
630 for (e = s; *e; ++e) {
631 if (*e == ' ')
632 break;
633 }
634 for (; s < e; ++s) {
635 if (*s == '_') {
636 ++s;
637 break;
638 }
639 buf[i++]=*s;
640 }
641 sprintf(&buf[i]," SN ");
642 i+=4;
643 for (; s < e; ++s) {
644 buf[i++]=*s;
645 }
646 buf[i++]=0;
647 }
648 sprintf (info," %s %s %s MHz (%lu/%lu/%lu MHz)",
649 buf, cpustr,
650 strmhz (tmp, gd->cpu_clk), sys_info.freqPLB / 1000000,
651 sys_info.freqPLB / sys_info.pllOpbDiv / 1000000,
652 sys_info.freqPLB / sys_info.pllExtBusDiv / 1000000);
653 return;
654 case 3:
655 /* Memory Info */
656 boot = get_boot_mode();
657 bc = in8 (CONFIG_PORT_ADDR);
658 sprintf(info, " %luMB RAM, %luMB Flash Cfg 0x%02X %s %s",
659 gd->bd->bi_memsize / 0x100000,
660 gd->bd->bi_flashsize / 0x100000,
661 bc,
662 (boot & BOOT_MPS) ? "MPS boot" : "Flash boot",
663 ctfb.modeIdent);
664 return;
665 case 1:
666 sprintf (buf, "%s",CONFIG_IDENT_STRING);
667 sprintf (info, " %s", &buf[1]);
668 return;
669 }
670 /* no more info lines */
671 *info = 0;
672 return;
673 }
674 #endif /* CONFIG_CONSOLE_EXTRA_INFO */
675
676 #endif /* CONFIG_VIDEO */