1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <common.h>
27#include <asm/ppc4xx.h>
28#include <asm/processor.h>
29
30#include <watchdog.h>
31
32flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
33
34
35
36
37static ulong flash_get_size (vu_long *addr, flash_info_t *info);
38static int write_word8(flash_info_t *info, ulong dest, ulong data);
39static int write_word32 (flash_info_t *info, ulong dest, ulong data);
40static void flash_get_offsets (ulong base, flash_info_t *info);
41
42
43
44
45unsigned long flash_init (void)
46{
47 int i;
48 unsigned long size_b0, base_b0;
49 unsigned long size_b1, base_b1;
50
51
52 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
53 flash_info[i].flash_id = FLASH_UNKNOWN;
54 }
55
56
57 size_b0 = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]);
58 if (flash_info[0].flash_id == FLASH_UNKNOWN) {
59 printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
60 size_b0, size_b0<<20);
61 return 0;
62 }
63 size_b1 = flash_get_size((vu_long *)FLASH_BASE1_PRELIM, &flash_info[1]);
64 if (flash_info[1].flash_id == FLASH_UNKNOWN) {
65 printf ("## Unknown FLASH on Bank 1 - Size = 0x%08lx = %ld MB\n",
66 size_b1, size_b1<<20);
67 return 0;
68 }
69
70
71 base_b0 = -size_b0;
72 base_b1 = -size_b1;
73
74
75 flash_get_offsets (base_b0, &flash_info[0]);
76
77
78 (void)flash_protect(FLAG_PROTECT_SET,
79 base_b0,
80 flash_info[0].start[1] - 1,
81 &flash_info[0]);
82
83
84
85 (void)flash_protect(FLAG_PROTECT_SET,
86 base_b0 + size_b0 - monitor_flash_len,
87 base_b0 + size_b0 - 1,
88 &flash_info[0]);
89
90
91 (void)flash_protect(FLAG_PROTECT_SET,
92 FLASH_BASE1_PRELIM,
93 FLASH_BASE1_PRELIM + CONFIG_SYS_FPGA_IMAGE_LEN - 1,
94 &flash_info[1]);
95
96
97 (void)flash_protect(FLAG_PROTECT_SET,
98 FLASH_BASE1_PRELIM + CONFIG_SYS_FPGA_IMAGE_LEN,
99 FLASH_BASE1_PRELIM + CONFIG_SYS_FPGA_IMAGE_LEN + 0x600000 - 1,
100 &flash_info[1]);
101
102
103 flash_get_offsets (FLASH_BASE1_PRELIM, &flash_info[1]);
104
105 return (size_b0 + size_b1);
106}
107
108
109
110static void flash_get_offsets (ulong base, flash_info_t *info)
111{
112 int i;
113
114
115 if ((info->flash_id & FLASH_TYPEMASK) == FLASH_AM040) {
116 for (i = 0; i < info->sector_count; i++)
117 info->start[i] = base + (i * 0x00010000);
118 }
119}
120
121
122
123void flash_print_info (flash_info_t *info)
124{
125 int i;
126 int k;
127 int size;
128 int erased;
129 volatile unsigned long *flash;
130
131 if (info->flash_id == FLASH_UNKNOWN) {
132 printf ("missing or unknown FLASH type\n");
133 return;
134 }
135
136 switch (info->flash_id & FLASH_VENDMASK) {
137 case FLASH_MAN_AMD: printf ("1 x AMD "); break;
138 case FLASH_MAN_STM: printf ("1 x STM "); break;
139 case FLASH_MAN_INTEL: printf ("2 x Intel "); break;
140 default: printf ("Unknown Vendor ");
141 }
142
143 switch (info->flash_id & FLASH_TYPEMASK) {
144 case FLASH_AM040:
145 if ((info->flash_id & FLASH_VENDMASK) == FLASH_MAN_AMD)
146 printf ("AM29LV040 (4096 Kbit, uniform sector size)\n");
147 else if ((info->flash_id & FLASH_VENDMASK) == FLASH_MAN_STM)
148 printf ("M29W040B (4096 Kbit, uniform block size)\n");
149 else
150 printf ("UNKNOWN 29x040x (4096 Kbit, uniform sector size)\n");
151 break;
152 case FLASH_28F320J3A:
153 printf ("28F320J3A (32 Mbit = 128K x 32)\n");
154 break;
155 case FLASH_28F640J3A:
156 printf ("28F640J3A (64 Mbit = 128K x 64)\n");
157 break;
158 case FLASH_28F128J3A:
159 printf ("28F128J3A (128 Mbit = 128K x 128)\n");
160 break;
161 default:
162 printf ("Unknown Chip Type\n");
163 }
164
165 if ((info->flash_id & FLASH_VENDMASK) == FLASH_MAN_STM) {
166 printf (" Size: %ld KB in %d Blocks\n",
167 info->size >> 10, info->sector_count);
168 } else {
169 printf (" Size: %ld KB in %d Sectors\n",
170 info->size >> 10, info->sector_count);
171 }
172
173 printf (" Sector Start Addresses:");
174 for (i=0; i<info->sector_count; ++i) {
175
176
177
178 if (i != (info->sector_count-1))
179 size = info->start[i+1] - info->start[i];
180 else
181 size = info->start[0] + info->size - info->start[i];
182 erased = 1;
183 flash = (volatile unsigned long *)info->start[i];
184 size = size >> 2;
185 for (k=0; k<size; k++)
186 {
187 if (*flash++ != 0xffffffff)
188 {
189 erased = 0;
190 break;
191 }
192 }
193
194 if ((i % 5) == 0)
195 printf ("\n ");
196 printf (" %08lX%s%s",
197 info->start[i],
198 erased ? " E" : " ",
199 info->protect[i] ? "RO " : " "
200 );
201 }
202 printf ("\n");
203}
204
205
206
207
208static ulong flash_get_size (vu_long *addr, flash_info_t *info)
209{
210 short i;
211 ulong base = (ulong)addr;
212
213
214 info->flash_id = FLASH_UNKNOWN;
215 info->sector_count =0;
216 info->size = 0;
217
218
219 if (base == FLASH_BASE0_PRELIM) {
220 unsigned char value;
221 volatile unsigned char * addr2 = (unsigned char *)addr;
222
223
224 *(addr2 + 0x555) = 0xaa;
225 *(addr2 + 0x2aa) = 0x55;
226 *(addr2 + 0x555) = 0x90;
227
228
229 value = *addr2;
230 switch (value) {
231 case (unsigned char)AMD_MANUFACT:
232 info->flash_id = FLASH_MAN_AMD;
233 break;
234 case (unsigned char)STM_MANUFACT:
235 info->flash_id = FLASH_MAN_STM;
236 break;
237 default:
238 *addr2 = 0xf0;
239 return 0;
240 }
241
242
243 value = *(addr2 + 1);
244 switch (value) {
245 case (unsigned char)AMD_ID_LV040B:
246 case (unsigned char)STM_ID_29W040B:
247 info->flash_id += FLASH_AM040;
248 info->sector_count = 8;
249 info->size = 0x00080000;
250 break;
251 default:
252 *addr2 = 0xf0;
253 return 0;
254 }
255 }
256 else {
257 unsigned long value;
258 volatile unsigned long * addr2 = (unsigned long *)addr;
259
260
261 *addr2 = 0x90909090;
262
263
264 value = *addr2;
265 switch (value) {
266 case (unsigned long)INTEL_MANUFACT:
267 info->flash_id = FLASH_MAN_INTEL;
268 break;
269 default:
270 *addr2 = 0xff;
271 return 0;
272 }
273
274
275 value = *(addr2 + 1);
276 switch (value) {
277 case (unsigned long)INTEL_ID_28F320J3A:
278 info->flash_id += FLASH_28F320J3A;
279 info->sector_count = 32;
280 info->size = 0x00400000 * 2;
281 break;
282 case (unsigned long)INTEL_ID_28F640J3A:
283 info->flash_id += FLASH_28F640J3A;
284 info->sector_count = 64;
285 info->size = 0x00800000 * 2;
286 break;
287 case (unsigned long)INTEL_ID_28F128J3A:
288 info->flash_id += FLASH_28F128J3A;
289 info->sector_count = 128;
290 info->size = 0x01000000 * 2;
291 break;
292 default:
293 *addr2 = 0xff;
294 }
295 }
296
297
298 if (info->sector_count > CONFIG_SYS_MAX_FLASH_SECT) {
299 printf ("** ERROR: sector count %d > max (%d) **\n",
300 info->sector_count, CONFIG_SYS_MAX_FLASH_SECT);
301 info->sector_count = CONFIG_SYS_MAX_FLASH_SECT;
302 }
303
304
305 switch (info->flash_id & FLASH_TYPEMASK) {
306 case FLASH_AM040:
307 for (i = 0; i < info->sector_count; i++)
308 info->start[i] = base + (i * 0x00010000);
309 break;
310 case FLASH_28F320J3A:
311 case FLASH_28F640J3A:
312 case FLASH_28F128J3A:
313 for (i = 0; i < info->sector_count; i++)
314 info->start[i] = base + (i * 0x00020000 * 2);
315 break;
316 }
317
318
319 if (base == FLASH_BASE0_PRELIM) {
320 volatile unsigned char *addr2;
321
322 for (i = 0; i < info->sector_count; i++) {
323
324
325 addr2 = (volatile unsigned char *)(info->start[i]);
326 info->protect[i] = *(addr2 + 2) & 1;
327 }
328
329
330 *(unsigned char *)base = 0xF0;
331 }
332 else {
333 volatile unsigned long *addr2;
334
335 for (i = 0; i < info->sector_count; i++) {
336
337
338 addr2 = (volatile unsigned long *)(info->start[i]);
339 info->protect[i] = *(addr2 + 2) & 0x1;
340 }
341
342
343 *(unsigned long *)base = 0xFFFFFFFF;
344 }
345
346 return (info->size);
347}
348
349
350
351
352static int wait_for_DQ7(ulong addr, uchar cmp_val, ulong tout)
353{
354 int i;
355
356 volatile uchar *vaddr = (uchar *)addr;
357
358
359 for (i = 1; i <= (100 * tout); i++) {
360 udelay(10);
361
362
363
364 if ((vaddr[0] & 0x80) == (cmp_val & 0x80)) {
365 return 0;
366 }
367
368
369 if (!(i % 110000))
370 putc('.');
371
372
373 WATCHDOG_RESET();
374 }
375
376 return 1;
377}
378
379
380
381
382static int flash_erase8(flash_info_t *info, int s_first, int s_last)
383{
384 int tcode, rcode = 0;
385 volatile uchar *addr = (uchar *)(info->start[0]);
386 volatile uchar *sector_addr;
387 int flag, prot, sect;
388
389
390 if ((s_first < 0) || (s_first > s_last)) {
391 if (info->flash_id == FLASH_UNKNOWN)
392 printf ("- missing\n");
393 else
394 printf ("- no sectors to erase\n");
395 return 1;
396 }
397
398
399 if (info->flash_id == FLASH_UNKNOWN) {
400 printf ("Can't erase unknown flash type - aborted\n");
401 return 1;
402 }
403
404
405 prot = 0;
406 for (sect = s_first; sect <= s_last; ++sect) {
407 if (info->protect[sect])
408 prot++;
409 }
410 if (prot)
411 printf ("- Warning: %d protected sectors will not be erased!\n", prot);
412 else
413 printf ("\n");
414
415
416 for (sect = s_first; sect <= s_last; sect++) {
417 if (info->protect[sect] == 0) {
418 sector_addr = (uchar *)(info->start[sect]);
419
420 if ((info->flash_id & FLASH_VENDMASK) == FLASH_MAN_STM)
421 printf("Erasing block %p\n", sector_addr);
422 else
423 printf("Erasing sector %p\n", sector_addr);
424
425
426 flag = disable_interrupts();
427
428 *(addr + 0x555) = (uchar)0xAA;
429 *(addr + 0x2aa) = (uchar)0x55;
430 *(addr + 0x555) = (uchar)0x80;
431 *(addr + 0x555) = (uchar)0xAA;
432 *(addr + 0x2aa) = (uchar)0x55;
433 *sector_addr = (uchar)0x30;
434
435
436
437
438
439
440
441
442
443 tcode = wait_for_DQ7((ulong)sector_addr, 0x80, 6000);
444
445
446 if (flag)
447 enable_interrupts();
448
449
450 if (tcode) {
451 printf ("Timeout\n");
452 rcode = 1;
453 }
454 }
455 }
456
457
458 udelay (1000);
459
460
461 addr = (uchar *)info->start[0];
462 *addr = (uchar)0xF0;
463
464 printf (" done\n");
465 return rcode;
466}
467
468static int flash_erase32(flash_info_t *info, int s_first, int s_last)
469{
470 int flag, sect;
471 ulong start, now, last;
472 int prot = 0;
473
474
475 if ((s_first < 0) || (s_first > s_last)) {
476 if (info->flash_id == FLASH_UNKNOWN)
477 printf ("- missing\n");
478 else
479 printf ("- no sectors to erase\n");
480 return 1;
481 }
482
483
484 if ((info->flash_id & FLASH_VENDMASK) != FLASH_MAN_INTEL) {
485 printf ("Can erase only Intel flash types - aborted\n");
486 return 1;
487 }
488
489
490 for (sect = s_first; sect <= s_last; ++sect) {
491 if (info->protect[sect])
492 prot++;
493 }
494 if (prot)
495 printf ("- Warning: %d protected sectors will not be erased!\n", prot);
496 else
497 printf ("\n");
498
499 start = get_timer (0);
500 last = start;
501
502 for (sect = s_first; sect <= s_last; sect++) {
503 WATCHDOG_RESET();
504 if (info->protect[sect] == 0) {
505 vu_long *addr = (vu_long *)(info->start[sect]);
506 unsigned long status;
507
508
509 flag = disable_interrupts();
510
511 *addr = 0x00500050;
512 *addr = 0x00200020;
513 *addr = 0x00D000D0;
514
515
516 if (flag)
517 enable_interrupts();
518
519
520 udelay (1000);
521
522 while (((status = *addr) & 0x00800080) != 0x00800080) {
523 if ((now = get_timer(start)) > CONFIG_SYS_FLASH_ERASE_TOUT) {
524 printf ("Timeout\n");
525 *addr = 0x00B000B0;
526 *addr = 0x00FF00FF;
527 return 1;
528 }
529
530
531 if ((now - last) > 990) {
532 putc ('.');
533 last = now;
534 }
535 }
536 *addr = 0x00FF00FF;
537 }
538 }
539 printf (" done\n");
540 return 0;
541}
542
543int flash_erase(flash_info_t *info, int s_first, int s_last)
544{
545 if ((info->flash_id & FLASH_TYPEMASK) == FLASH_AM040)
546 return flash_erase8(info, s_first, s_last);
547 else
548 return flash_erase32(info, s_first, s_last);
549}
550
551
552
553
554
555
556
557static int write_buff8(flash_info_t *info, uchar *src, ulong addr, ulong cnt)
558{
559 ulong cp, wp, data;
560 ulong start;
561 int i, l, rc;
562
563 start = get_timer (0);
564
565 wp = (addr & ~3);
566
567
568
569
570
571 if ((l = addr - wp) != 0) {
572 data = 0;
573 for (i=0, cp=wp; i<l; ++i, ++cp) {
574 data = (data << 8) | (*(uchar *)cp);
575 }
576 for (; i<4 && cnt>0; ++i) {
577 data = (data << 8) | *src++;
578 --cnt;
579 ++cp;
580 }
581 for (; cnt==0 && i<4; ++i, ++cp) {
582 data = (data << 8) | (*(uchar *)cp);
583 }
584
585 if ((rc = write_word8(info, wp, data)) != 0) {
586 return (rc);
587 }
588 wp += 4;
589 }
590
591
592
593
594 while (cnt >= 4) {
595 data = 0;
596 for (i=0; i<4; ++i) {
597 data = (data << 8) | *src++;
598 }
599 if ((rc = write_word8(info, wp, data)) != 0) {
600 return (rc);
601 }
602 wp += 4;
603 cnt -= 4;
604 if (get_timer(start) > 1000) {
605 WATCHDOG_RESET();
606 putc ('.');
607 start = get_timer(0);
608 }
609 }
610
611 if (cnt == 0) {
612 return (0);
613 }
614
615
616
617
618 data = 0;
619 for (i=0, cp=wp; i<4 && cnt>0; ++i, ++cp) {
620 data = (data << 8) | *src++;
621 --cnt;
622 }
623 for (; i<4; ++i, ++cp) {
624 data = (data << 8) | (*(uchar *)cp);
625 }
626
627 return (write_word8(info, wp, data));
628}
629
630#define FLASH_WIDTH 4
631static int write_buff32 (flash_info_t *info, uchar *src, ulong addr, ulong cnt)
632{
633 ulong cp, wp, data;
634 int i, l, rc;
635 ulong start;
636
637 start = get_timer (0);
638
639 if (info->flash_id == FLASH_UNKNOWN) {
640 return 4;
641 }
642
643 wp = (addr & ~(FLASH_WIDTH-1));
644
645
646
647
648 if ((l = addr - wp) != 0) {
649 data = 0;
650 for (i=0, cp=wp; i<l; ++i, ++cp) {
651 data = (data << 8) | (*(uchar *)cp);
652 }
653 for (; i<FLASH_WIDTH && cnt>0; ++i) {
654 data = (data << 8) | *src++;
655 --cnt;
656 ++cp;
657 }
658 for (; cnt==0 && i<FLASH_WIDTH; ++i, ++cp) {
659 data = (data << 8) | (*(uchar *)cp);
660 }
661
662 if ((rc = write_word32(info, wp, data)) != 0) {
663 return (rc);
664 }
665 wp += FLASH_WIDTH;
666 }
667
668
669
670
671 while (cnt >= FLASH_WIDTH) {
672 data = 0;
673 for (i=0; i<FLASH_WIDTH; ++i) {
674 data = (data << 8) | *src++;
675 }
676 if ((rc = write_word32(info, wp, data)) != 0) {
677 return (rc);
678 }
679 wp += FLASH_WIDTH;
680 cnt -= FLASH_WIDTH;
681 if (get_timer(start) > 990) {
682 putc ('.');
683 start = get_timer(0);
684 }
685 }
686
687 if (cnt == 0) {
688 return (0);
689 }
690
691
692
693
694 data = 0;
695 for (i=0, cp=wp; i<FLASH_WIDTH && cnt>0; ++i, ++cp) {
696 data = (data << 8) | *src++;
697 --cnt;
698 }
699 for (; i<FLASH_WIDTH; ++i, ++cp) {
700 data = (data << 8) | (*(uchar *)cp);
701 }
702
703 return (write_word32(info, wp, data));
704}
705
706int write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt)
707{
708 int retval;
709
710 if ((info->flash_id & FLASH_TYPEMASK) == FLASH_AM040)
711 retval = write_buff8(info, src, addr, cnt);
712 else
713 retval = write_buff32(info, src, addr, cnt);
714
715 return retval;
716}
717
718
719
720
721
722
723
724
725static int write_word8(flash_info_t *info, ulong dest, ulong data)
726{
727 volatile uchar *addr2 = (uchar *)(info->start[0]);
728 volatile uchar *dest2 = (uchar *)dest;
729 volatile uchar *data2 = (uchar *)&data;
730 int flag;
731 int i, tcode, rcode = 0;
732
733
734 if ((*((volatile uchar *)dest) &
735 (uchar)data) != (uchar)data) {
736 return (2);
737 }
738
739 for (i=0; i < (4 / sizeof(uchar)); i++) {
740
741 flag = disable_interrupts();
742
743 *(addr2 + 0x555) = (uchar)0xAA;
744 *(addr2 + 0x2aa) = (uchar)0x55;
745 *(addr2 + 0x555) = (uchar)0xA0;
746
747 dest2[i] = data2[i];
748
749
750 tcode = wait_for_DQ7((ulong)&dest2[i], data2[i], 1);
751
752
753 if (flag)
754 enable_interrupts();
755
756
757 if (tcode) {
758 rcode = 1;
759 }
760 }
761
762 return rcode;
763}
764
765static int write_word32(flash_info_t *info, ulong dest, ulong data)
766{
767 vu_long *addr = (vu_long *)dest;
768 ulong status;
769 ulong start;
770 int flag;
771
772
773 if ((*addr & data) != data) {
774 return (2);
775 }
776
777 flag = disable_interrupts();
778
779 *addr = 0x00400040;
780 *addr = data;
781
782
783 if (flag)
784 enable_interrupts();
785
786 start = get_timer (0);
787
788 while (((status = *addr) & 0x00800080) != 0x00800080) {
789 WATCHDOG_RESET();
790 if (get_timer(start) > CONFIG_SYS_FLASH_WRITE_TOUT) {
791 *addr = 0x00FF00FF;
792 return (1);
793 }
794 }
795
796 *addr = 0x00FF00FF;
797
798 return (0);
799}
800
801
802static int _flash_protect(flash_info_t *info, long sector)
803{
804 int i;
805 int flag;
806 ulong status;
807 int rcode = 0;
808 volatile long *addr = (long *)sector;
809
810 switch(info->flash_id & FLASH_TYPEMASK) {
811 case FLASH_28F320J3A:
812 case FLASH_28F640J3A:
813 case FLASH_28F128J3A:
814
815 flag = disable_interrupts();
816
817
818 *addr = 0x00500050L;
819 *addr = 0x00600060L;
820 *addr = 0x00010001L;
821
822
823 for (i = 0; i < 10; i++) {
824 udelay(10);
825 if ((*addr & 0x00800080L) == 0x00800080L)
826 break;
827 }
828
829
830 status = *addr;
831 if (status != 0x00800080L) {
832 printf("Protect %x sector failed: %x\n",
833 (uint)sector, (uint)status);
834 rcode = 1;
835 }
836
837
838 *addr = 0x00ff00ffL;
839
840
841 if (flag)
842 enable_interrupts();
843
844 break;
845 case FLASH_AM040:
846 break;
847 }
848
849
850 for (i = 0; i < info->sector_count; i++) {
851 if (info->start[i] == sector) {
852 info->protect[i] = 1;
853 break;
854 }
855 }
856
857 return rcode;
858}
859
860static int _flash_unprotect(flash_info_t *info, long sector)
861{
862 int i;
863 int flag;
864 ulong status;
865 int rcode = 0;
866 volatile long *addr = (long *)sector;
867
868 switch(info->flash_id & FLASH_TYPEMASK) {
869 case FLASH_28F320J3A:
870 case FLASH_28F640J3A:
871 case FLASH_28F128J3A:
872
873 flag = disable_interrupts();
874
875 *addr = 0x00500050L;
876 *addr = 0x00600060L;
877 *addr = 0x00D000D0L;
878
879
880 for (i = 0; i < 80 ; i++) {
881 udelay(10000);
882 if ((*addr & 0x00800080L) == 0x00800080L)
883 break;
884 }
885
886
887 status = *addr;
888 if (status != 0x00800080L) {
889 printf("Un-protect %x sector failed: %x\n",
890 (uint)sector, (uint)status);
891 *addr = 0x00ff00ffL;
892 rcode = 1;
893 }
894
895
896 *addr = 0x00ff00ffL;
897
898
899 if (flag)
900 enable_interrupts();
901
902 break;
903 case FLASH_AM040:
904 break;
905 }
906
907
908
909
910
911
912 for (i = 0; i < info->sector_count; i++) {
913 if (info->start[i] != sector) {
914 if (info->protect[i]) {
915 if (_flash_protect(info, info->start[i]))
916 rcode = 1;
917 }
918 }
919 else
920 info->protect[i] = 0;
921 }
922
923 return rcode;
924}
925
926
927int flash_real_protect(flash_info_t *info, long sector, int prot)
928{
929 int rcode;
930
931 if (prot)
932 rcode = _flash_protect(info, info->start[sector]);
933 else
934 rcode = _flash_unprotect(info, info->start[sector]);
935
936 return rcode;
937}
938
939
940
941