1
2
3
4
5
6
7
8
9
10
11
12#ifndef __IMMAP_85xx__
13#define __IMMAP_85xx__
14
15#include <asm/types.h>
16#include <asm/fsl_dma.h>
17#include <asm/fsl_i2c.h>
18#include <fsl_ifc.h>
19#include <fsl_sec.h>
20#include <asm/fsl_lbc.h>
21#include <asm/fsl_fman.h>
22#include <fsl_immap.h>
23
24typedef struct ccsr_local {
25 u32 ccsrbarh;
26 u32 ccsrbarl;
27 u32 ccsrar;
28#define CCSRAR_C 0x80000000
29 u8 res1[4];
30 u32 altcbarh;
31 u32 altcbarl;
32 u32 altcar;
33 u8 res2[4];
34 u32 bstrh;
35 u32 bstrl;
36 u32 bstrar;
37 u8 res3[0xbd4];
38 struct {
39 u32 lawbarh;
40 u32 lawbarl;
41 u32 lawar;
42 u8 res4[4];
43 } law[32];
44 u8 res35[0x204];
45} ccsr_local_t;
46
47
48typedef struct ccsr_local_ecm {
49 u32 ccsrbar;
50 u8 res1[4];
51 u32 altcbar;
52 u8 res2[4];
53 u32 altcar;
54 u8 res3[12];
55 u32 bptr;
56 u8 res4[3044];
57 u32 lawbar0;
58 u8 res5[4];
59 u32 lawar0;
60 u8 res6[20];
61 u32 lawbar1;
62 u8 res7[4];
63 u32 lawar1;
64 u8 res8[20];
65 u32 lawbar2;
66 u8 res9[4];
67 u32 lawar2;
68 u8 res10[20];
69 u32 lawbar3;
70 u8 res11[4];
71 u32 lawar3;
72 u8 res12[20];
73 u32 lawbar4;
74 u8 res13[4];
75 u32 lawar4;
76 u8 res14[20];
77 u32 lawbar5;
78 u8 res15[4];
79 u32 lawar5;
80 u8 res16[20];
81 u32 lawbar6;
82 u8 res17[4];
83 u32 lawar6;
84 u8 res18[20];
85 u32 lawbar7;
86 u8 res19[4];
87 u32 lawar7;
88 u8 res19_8a[20];
89 u32 lawbar8;
90 u8 res19_8b[4];
91 u32 lawar8;
92 u8 res19_9a[20];
93 u32 lawbar9;
94 u8 res19_9b[4];
95 u32 lawar9;
96 u8 res19_10a[20];
97 u32 lawbar10;
98 u8 res19_10b[4];
99 u32 lawar10;
100 u8 res19_11a[20];
101 u32 lawbar11;
102 u8 res19_11b[4];
103 u32 lawar11;
104 u8 res20[652];
105 u32 eebacr;
106 u8 res21[12];
107 u32 eebpcr;
108 u8 res22[3564];
109 u32 eedr;
110 u8 res23[4];
111 u32 eeer;
112 u32 eeatr;
113 u32 eeadr;
114 u8 res24[492];
115} ccsr_local_ecm_t;
116
117#define DDR_EOR_RD_BDW_OPT_DIS 0x80000000
118#define DDR_EOR_ADDR_HASH_EN 0x40000000
119
120
121typedef struct ccsr_i2c {
122 struct fsl_i2c i2c[1];
123 u8 res[4096 - 1 * sizeof(struct fsl_i2c)];
124} ccsr_i2c_t;
125
126#if defined(CONFIG_MPC8540) \
127 || defined(CONFIG_MPC8541) \
128 || defined(CONFIG_MPC8548) \
129 || defined(CONFIG_MPC8555)
130
131typedef struct ccsr_duart {
132 u8 res1[1280];
133
134 u8 urbr1_uthr1_udlb1;
135
136 u8 uier1_udmb1;
137
138 u8 uiir1_ufcr1_uafr1;
139 u8 ulcr1;
140 u8 umcr1;
141 u8 ulsr1;
142 u8 umsr1;
143 u8 uscr1;
144 u8 res2[8];
145 u8 udsr1;
146 u8 res3[239];
147
148 u8 urbr2_uthr2_udlb2;
149
150 u8 uier2_udmb2;
151
152 u8 uiir2_ufcr2_uafr2;
153 u8 ulcr2;
154 u8 umcr2;
155 u8 ulsr2;
156 u8 umsr2;
157 u8 uscr2;
158 u8 res4[8];
159 u8 udsr2;
160 u8 res5[2543];
161} ccsr_duart_t;
162#else
163typedef struct ccsr_duart {
164 u8 res[4096];
165} ccsr_duart_t;
166#endif
167
168
169typedef struct ccsr_espi {
170 u32 mode;
171 u32 event;
172 u32 mask;
173 u32 com;
174 u32 tx;
175 u32 rx;
176 u8 res1[8];
177 u32 csmode[4];
178 u8 res2[4048];
179} ccsr_espi_t;
180
181
182typedef struct ccsr_pcix {
183 u32 cfg_addr;
184 u32 cfg_data;
185 u32 int_ack;
186 u8 res000c[52];
187 u32 liodn_base;
188 u8 res0044[2996];
189 u32 ipver1;
190 u32 ipver2;
191 u32 potar0;
192 u32 potear0;
193 u32 powbar0;
194 u32 powbear0;
195 u32 powar0;
196 u8 res2[12];
197 u32 potar1;
198 u32 potear1;
199 u32 powbar1;
200 u32 powbear1;
201 u32 powar1;
202 u8 res3[12];
203 u32 potar2;
204 u32 potear2;
205 u32 powbar2;
206 u32 powbear2;
207 u32 powar2;
208 u8 res4[12];
209 u32 potar3;
210 u32 potear3;
211 u32 powbar3;
212 u32 powbear3;
213 u32 powar3;
214 u8 res5[12];
215 u32 potar4;
216 u32 potear4;
217 u32 powbar4;
218 u32 powbear4;
219 u32 powar4;
220 u8 res6[268];
221 u32 pitar3;
222 u32 pitear3;
223 u32 piwbar3;
224 u32 piwbear3;
225 u32 piwar3;
226 u8 res7[12];
227 u32 pitar2;
228 u32 pitear2;
229 u32 piwbar2;
230 u32 piwbear2;
231 u32 piwar2;
232 u8 res8[12];
233 u32 pitar1;
234 u32 pitear1;
235 u32 piwbar1;
236 u8 res9[4];
237 u32 piwar1;
238 u8 res10[12];
239 u32 pedr;
240 u32 pecdr;
241 u32 peer;
242 u32 peattrcr;
243 u32 peaddrcr;
244 u32 peextaddrcr;
245 u32 pedlcr;
246 u32 pedhcr;
247 u32 gas_timr;
248 u8 res11[476];
249} ccsr_pcix_t;
250
251#define PCIX_COMMAND 0x62
252#define POWAR_EN 0x80000000
253#define POWAR_IO_READ 0x00080000
254#define POWAR_MEM_READ 0x00040000
255#define POWAR_IO_WRITE 0x00008000
256#define POWAR_MEM_WRITE 0x00004000
257#define POWAR_MEM_512M 0x0000001c
258#define POWAR_IO_1M 0x00000013
259
260#define PIWAR_EN 0x80000000
261#define PIWAR_PF 0x20000000
262#define PIWAR_LOCAL 0x00f00000
263#define PIWAR_READ_SNOOP 0x00050000
264#define PIWAR_WRITE_SNOOP 0x00005000
265#define PIWAR_MEM_2G 0x0000001e
266
267typedef struct ccsr_gpio {
268 u32 gpdir;
269 u32 gpodr;
270 u32 gpdat;
271 u32 gpier;
272 u32 gpimr;
273 u32 gpicr;
274} ccsr_gpio_t;
275
276
277typedef struct ccsr_l2cache {
278 u32 l2ctl;
279 u8 res1[12];
280 u32 l2cewar0;
281 u8 res2[4];
282 u32 l2cewcr0;
283 u8 res3[4];
284 u32 l2cewar1;
285 u8 res4[4];
286 u32 l2cewcr1;
287 u8 res5[4];
288 u32 l2cewar2;
289 u8 res6[4];
290 u32 l2cewcr2;
291 u8 res7[4];
292 u32 l2cewar3;
293 u8 res8[4];
294 u32 l2cewcr3;
295 u8 res9[180];
296 u32 l2srbar0;
297 u8 res10[4];
298 u32 l2srbar1;
299 u8 res11[3316];
300 u32 l2errinjhi;
301 u32 l2errinjlo;
302 u32 l2errinjctl;
303 u8 res12[20];
304 u32 l2captdatahi;
305 u32 l2captdatalo;
306 u32 l2captecc;
307 u8 res13[20];
308 u32 l2errdet;
309 u32 l2errdis;
310 u32 l2errinten;
311 u32 l2errattr;
312 u32 l2erraddr;
313 u8 res14[4];
314 u32 l2errctl;
315 u8 res15[420];
316} ccsr_l2cache_t;
317
318#define MPC85xx_L2CTL_L2E 0x80000000
319#define MPC85xx_L2CTL_L2SRAM_ENTIRE 0x00010000
320#define MPC85xx_L2ERRDIS_MBECC 0x00000008
321#define MPC85xx_L2ERRDIS_SBECC 0x00000004
322
323
324typedef struct ccsr_dma {
325 u8 res1[256];
326 struct fsl_dma dma[4];
327 u32 dgsr;
328 u8 res2[11516];
329} ccsr_dma_t;
330
331
332typedef struct ccsr_tsec {
333 u8 res1[16];
334 u32 ievent;
335 u32 imask;
336 u32 edis;
337 u8 res2[4];
338 u32 ecntrl;
339 u32 minflr;
340 u32 ptv;
341 u32 dmactrl;
342 u32 tbipa;
343 u8 res3[88];
344 u32 fifo_tx_thr;
345 u8 res4[8];
346 u32 fifo_tx_starve;
347 u32 fifo_tx_starve_shutoff;
348 u8 res5[96];
349 u32 tctrl;
350 u32 tstat;
351 u8 res6[4];
352 u32 tbdlen;
353 u8 res7[16];
354 u32 ctbptrh;
355 u32 ctbptr;
356 u8 res8[88];
357 u32 tbptrh;
358 u32 tbptr;
359 u8 res9[120];
360 u32 tbaseh;
361 u32 tbase;
362 u8 res10[168];
363 u32 ostbd;
364 u32 ostbdp;
365 u32 os32tbdp;
366 u32 os32iptrh;
367 u32 os32iptrl;
368 u32 os32tbdr;
369 u32 os32iil;
370 u8 res11[52];
371 u32 rctrl;
372 u32 rstat;
373 u8 res12[4];
374 u32 rbdlen;
375 u8 res13[16];
376 u32 crbptrh;
377 u32 crbptr;
378 u8 res14[24];
379 u32 mrblr;
380 u32 mrblr2r3;
381 u8 res15[56];
382 u32 rbptrh;
383 u32 rbptr;
384 u32 rbptrh1;
385 u32 rbptrl1;
386 u32 rbptrh2;
387 u32 rbptrl2;
388 u32 rbptrh3;
389 u32 rbptrl3;
390 u8 res16[96];
391 u32 rbaseh;
392 u32 rbase;
393 u32 rbaseh1;
394 u32 rbasel1;
395 u32 rbaseh2;
396 u32 rbasel2;
397 u32 rbaseh3;
398 u32 rbasel3;
399 u8 res17[224];
400 u32 maccfg1;
401 u32 maccfg2;
402 u32 ipgifg;
403 u32 hafdup;
404 u32 maxfrm;
405 u8 res18[12];
406 u32 miimcfg;
407 u32 miimcom;
408 u32 miimadd;
409 u32 miimcon;
410 u32 miimstat;
411 u32 miimind;
412 u8 res19[4];
413 u32 ifstat;
414 u32 macstnaddr1;
415 u32 macstnaddr2;
416 u8 res20[312];
417 u32 tr64;
418 u32 tr127;
419 u32 tr255;
420 u32 tr511;
421 u32 tr1k;
422 u32 trmax;
423 u32 trmgv;
424 u32 rbyt;
425 u32 rpkt;
426 u32 rfcs;
427 u32 rmca;
428 u32 rbca;
429 u32 rxcf;
430 u32 rxpf;
431 u32 rxuo;
432 u32 raln;
433 u32 rflr;
434 u32 rcde;
435 u32 rcse;
436 u32 rund;
437 u32 rovr;
438 u32 rfrg;
439 u32 rjbr;
440 u32 rdrp;
441 u32 tbyt;
442 u32 tpkt;
443 u32 tmca;
444 u32 tbca;
445 u32 txpf;
446 u32 tdfr;
447 u32 tedf;
448 u32 tscl;
449 u32 tmcl;
450 u32 tlcl;
451 u32 txcl;
452 u32 tncl;
453 u8 res21[4];
454 u32 tdrp;
455 u32 tjbr;
456 u32 tfcs;
457 u32 txcf;
458 u32 tovr;
459 u32 tund;
460 u32 tfrg;
461 u32 car1;
462 u32 car2;
463 u32 cam1;
464 u32 cam2;
465 u8 res22[192];
466 u32 iaddr0;
467 u32 iaddr1;
468 u32 iaddr2;
469 u32 iaddr3;
470 u32 iaddr4;
471 u32 iaddr5;
472 u32 iaddr6;
473 u32 iaddr7;
474 u8 res23[96];
475 u32 gaddr0;
476 u32 gaddr1;
477 u32 gaddr2;
478 u32 gaddr3;
479 u32 gaddr4;
480 u32 gaddr5;
481 u32 gaddr6;
482 u32 gaddr7;
483 u8 res24[96];
484 u32 pmd0;
485 u8 res25[4];
486 u32 pmask0;
487 u8 res26[4];
488 u32 pcntrl0;
489 u8 res27[4];
490 u32 pattrb0;
491 u32 pattrbeli0;
492 u32 pmd1;
493 u8 res28[4];
494 u32 pmask1;
495 u8 res29[4];
496 u32 pcntrl1;
497 u8 res30[4];
498 u32 pattrb1;
499 u32 pattrbeli1;
500 u32 pmd2;
501 u8 res31[4];
502 u32 pmask2;
503 u8 res32[4];
504 u32 pcntrl2;
505 u8 res33[4];
506 u32 pattrb2;
507 u32 pattrbeli2;
508 u32 pmd3;
509 u8 res34[4];
510 u32 pmask3;
511 u8 res35[4];
512 u32 pcntrl3;
513 u8 res36[4];
514 u32 pattrb3;
515 u32 pattrbeli3;
516 u32 pmd4;
517 u8 res37[4];
518 u32 pmask4;
519 u8 res38[4];
520 u32 pcntrl4;
521 u8 res39[4];
522 u32 pattrb4;
523 u32 pattrbeli4;
524 u32 pmd5;
525 u8 res40[4];
526 u32 pmask5;
527 u8 res41[4];
528 u32 pcntrl5;
529 u8 res42[4];
530 u32 pattrb5;
531 u32 pattrbeli5;
532 u32 pmd6;
533 u8 res43[4];
534 u32 pmask6;
535 u8 res44[4];
536 u32 pcntrl6;
537 u8 res45[4];
538 u32 pattrb6;
539 u32 pattrbeli6;
540 u32 pmd7;
541 u8 res46[4];
542 u32 pmask7;
543 u8 res47[4];
544 u32 pcntrl7;
545 u8 res48[4];
546 u32 pattrb7;
547 u32 pattrbeli7;
548 u32 pmd8;
549 u8 res49[4];
550 u32 pmask8;
551 u8 res50[4];
552 u32 pcntrl8;
553 u8 res51[4];
554 u32 pattrb8;
555 u32 pattrbeli8;
556 u32 pmd9;
557 u8 res52[4];
558 u32 pmask9;
559 u8 res53[4];
560 u32 pcntrl9;
561 u8 res54[4];
562 u32 pattrb9;
563 u32 pattrbeli9;
564 u32 pmd10;
565 u8 res55[4];
566 u32 pmask10;
567 u8 res56[4];
568 u32 pcntrl10;
569 u8 res57[4];
570 u32 pattrb10;
571 u32 pattrbeli10;
572 u32 pmd11;
573 u8 res58[4];
574 u32 pmask11;
575 u8 res59[4];
576 u32 pcntrl11;
577 u8 res60[4];
578 u32 pattrb11;
579 u32 pattrbeli11;
580 u32 pmd12;
581 u8 res61[4];
582 u32 pmask12;
583 u8 res62[4];
584 u32 pcntrl12;
585 u8 res63[4];
586 u32 pattrb12;
587 u32 pattrbeli12;
588 u32 pmd13;
589 u8 res64[4];
590 u32 pmask13;
591 u8 res65[4];
592 u32 pcntrl13;
593 u8 res66[4];
594 u32 pattrb13;
595 u32 pattrbeli13;
596 u32 pmd14;
597 u8 res67[4];
598 u32 pmask14;
599 u8 res68[4];
600 u32 pcntrl14;
601 u8 res69[4];
602 u32 pattrb14;
603 u32 pattrbeli14;
604 u32 pmd15;
605 u8 res70[4];
606 u32 pmask15;
607 u8 res71[4];
608 u32 pcntrl15;
609 u8 res72[4];
610 u32 pattrb15;
611 u32 pattrbeli15;
612 u8 res73[248];
613 u32 attr;
614 u32 attreli;
615 u8 res74[1024];
616} ccsr_tsec_t;
617
618
619typedef struct ccsr_pic {
620 u8 res1[64];
621 u32 ipidr0;
622 u8 res2[12];
623 u32 ipidr1;
624 u8 res3[12];
625 u32 ipidr2;
626 u8 res4[12];
627 u32 ipidr3;
628 u8 res5[12];
629 u32 ctpr;
630 u8 res6[12];
631 u32 whoami;
632 u8 res7[12];
633 u32 iack;
634 u8 res8[12];
635 u32 eoi;
636 u8 res9[3916];
637 u32 frr;
638 u8 res10[28];
639 u32 gcr;
640#define MPC85xx_PICGCR_RST 0x80000000
641#define MPC85xx_PICGCR_M 0x20000000
642 u8 res11[92];
643 u32 vir;
644 u8 res12[12];
645 u32 pir;
646 u8 res13[12];
647 u32 ipivpr0;
648 u8 res14[12];
649 u32 ipivpr1;
650 u8 res15[12];
651 u32 ipivpr2;
652 u8 res16[12];
653 u32 ipivpr3;
654 u8 res17[12];
655 u32 svr;
656 u8 res18[12];
657 u32 tfrr;
658 u8 res19[12];
659 u32 gtccr0;
660 u8 res20[12];
661 u32 gtbcr0;
662 u8 res21[12];
663 u32 gtvpr0;
664 u8 res22[12];
665 u32 gtdr0;
666 u8 res23[12];
667 u32 gtccr1;
668 u8 res24[12];
669 u32 gtbcr1;
670 u8 res25[12];
671 u32 gtvpr1;
672 u8 res26[12];
673 u32 gtdr1;
674 u8 res27[12];
675 u32 gtccr2;
676 u8 res28[12];
677 u32 gtbcr2;
678 u8 res29[12];
679 u32 gtvpr2;
680 u8 res30[12];
681 u32 gtdr2;
682 u8 res31[12];
683 u32 gtccr3;
684 u8 res32[12];
685 u32 gtbcr3;
686 u8 res33[12];
687 u32 gtvpr3;
688 u8 res34[12];
689 u32 gtdr3;
690 u8 res35[268];
691 u32 tcr;
692 u8 res36[12];
693 u32 irqsr0;
694 u8 res37[12];
695 u32 irqsr1;
696 u8 res38[12];
697 u32 cisr0;
698 u8 res39[12];
699 u32 cisr1;
700 u8 res40[188];
701 u32 msgr0;
702 u8 res41[12];
703 u32 msgr1;
704 u8 res42[12];
705 u32 msgr2;
706 u8 res43[12];
707 u32 msgr3;
708 u8 res44[204];
709 u32 mer;
710 u8 res45[12];
711 u32 msr;
712 u8 res46[60140];
713 u32 eivpr0;
714 u8 res47[12];
715 u32 eidr0;
716 u8 res48[12];
717 u32 eivpr1;
718 u8 res49[12];
719 u32 eidr1;
720 u8 res50[12];
721 u32 eivpr2;
722 u8 res51[12];
723 u32 eidr2;
724 u8 res52[12];
725 u32 eivpr3;
726 u8 res53[12];
727 u32 eidr3;
728 u8 res54[12];
729 u32 eivpr4;
730 u8 res55[12];
731 u32 eidr4;
732 u8 res56[12];
733 u32 eivpr5;
734 u8 res57[12];
735 u32 eidr5;
736 u8 res58[12];
737 u32 eivpr6;
738 u8 res59[12];
739 u32 eidr6;
740 u8 res60[12];
741 u32 eivpr7;
742 u8 res61[12];
743 u32 eidr7;
744 u8 res62[12];
745 u32 eivpr8;
746 u8 res63[12];
747 u32 eidr8;
748 u8 res64[12];
749 u32 eivpr9;
750 u8 res65[12];
751 u32 eidr9;
752 u8 res66[12];
753 u32 eivpr10;
754 u8 res67[12];
755 u32 eidr10;
756 u8 res68[12];
757 u32 eivpr11;
758 u8 res69[12];
759 u32 eidr11;
760 u8 res70[140];
761 u32 iivpr0;
762 u8 res71[12];
763 u32 iidr0;
764 u8 res72[12];
765 u32 iivpr1;
766 u8 res73[12];
767 u32 iidr1;
768 u8 res74[12];
769 u32 iivpr2;
770 u8 res75[12];
771 u32 iidr2;
772 u8 res76[12];
773 u32 iivpr3;
774 u8 res77[12];
775 u32 iidr3;
776 u8 res78[12];
777 u32 iivpr4;
778 u8 res79[12];
779 u32 iidr4;
780 u8 res80[12];
781 u32 iivpr5;
782 u8 res81[12];
783 u32 iidr5;
784 u8 res82[12];
785 u32 iivpr6;
786 u8 res83[12];
787 u32 iidr6;
788 u8 res84[12];
789 u32 iivpr7;
790 u8 res85[12];
791 u32 iidr7;
792 u8 res86[12];
793 u32 iivpr8;
794 u8 res87[12];
795 u32 iidr8;
796 u8 res88[12];
797 u32 iivpr9;
798 u8 res89[12];
799 u32 iidr9;
800 u8 res90[12];
801 u32 iivpr10;
802 u8 res91[12];
803 u32 iidr10;
804 u8 res92[12];
805 u32 iivpr11;
806 u8 res93[12];
807 u32 iidr11;
808 u8 res94[12];
809 u32 iivpr12;
810 u8 res95[12];
811 u32 iidr12;
812 u8 res96[12];
813 u32 iivpr13;
814 u8 res97[12];
815 u32 iidr13;
816 u8 res98[12];
817 u32 iivpr14;
818 u8 res99[12];
819 u32 iidr14;
820 u8 res100[12];
821 u32 iivpr15;
822 u8 res101[12];
823 u32 iidr15;
824 u8 res102[12];
825 u32 iivpr16;
826 u8 res103[12];
827 u32 iidr16;
828 u8 res104[12];
829 u32 iivpr17;
830 u8 res105[12];
831 u32 iidr17;
832 u8 res106[12];
833 u32 iivpr18;
834 u8 res107[12];
835 u32 iidr18;
836 u8 res108[12];
837 u32 iivpr19;
838 u8 res109[12];
839 u32 iidr19;
840 u8 res110[12];
841 u32 iivpr20;
842 u8 res111[12];
843 u32 iidr20;
844 u8 res112[12];
845 u32 iivpr21;
846 u8 res113[12];
847 u32 iidr21;
848 u8 res114[12];
849 u32 iivpr22;
850 u8 res115[12];
851 u32 iidr22;
852 u8 res116[12];
853 u32 iivpr23;
854 u8 res117[12];
855 u32 iidr23;
856 u8 res118[12];
857 u32 iivpr24;
858 u8 res119[12];
859 u32 iidr24;
860 u8 res120[12];
861 u32 iivpr25;
862 u8 res121[12];
863 u32 iidr25;
864 u8 res122[12];
865 u32 iivpr26;
866 u8 res123[12];
867 u32 iidr26;
868 u8 res124[12];
869 u32 iivpr27;
870 u8 res125[12];
871 u32 iidr27;
872 u8 res126[12];
873 u32 iivpr28;
874 u8 res127[12];
875 u32 iidr28;
876 u8 res128[12];
877 u32 iivpr29;
878 u8 res129[12];
879 u32 iidr29;
880 u8 res130[12];
881 u32 iivpr30;
882 u8 res131[12];
883 u32 iidr30;
884 u8 res132[12];
885 u32 iivpr31;
886 u8 res133[12];
887 u32 iidr31;
888 u8 res134[4108];
889 u32 mivpr0;
890 u8 res135[12];
891 u32 midr0;
892 u8 res136[12];
893 u32 mivpr1;
894 u8 res137[12];
895 u32 midr1;
896 u8 res138[12];
897 u32 mivpr2;
898 u8 res139[12];
899 u32 midr2;
900 u8 res140[12];
901 u32 mivpr3;
902 u8 res141[12];
903 u32 midr3;
904 u8 res142[59852];
905 u32 ipi0dr0;
906 u8 res143[12];
907 u32 ipi0dr1;
908 u8 res144[12];
909 u32 ipi0dr2;
910 u8 res145[12];
911 u32 ipi0dr3;
912 u8 res146[12];
913 u32 ctpr0;
914 u8 res147[12];
915 u32 whoami0;
916 u8 res148[12];
917 u32 iack0;
918 u8 res149[12];
919 u32 eoi0;
920 u8 res150[130892];
921} ccsr_pic_t;
922
923
924#ifndef CONFIG_CPM2
925typedef struct ccsr_cpm {
926 u8 res[262144];
927} ccsr_cpm_t;
928#else
929
930
931
932
933typedef struct ccsr_cpm_siu {
934 u8 res1[80];
935 u32 smaer;
936 u32 smser;
937 u32 smevr;
938 u8 res2[4];
939 u32 lmaer;
940 u32 lmser;
941 u32 lmevr;
942 u8 res3[2964];
943} ccsr_cpm_siu_t;
944
945
946typedef struct ccsr_cpm_intctl {
947 u16 sicr;
948 u8 res1[2];
949 u32 sivec;
950 u32 sipnrh;
951 u32 sipnrl;
952 u32 siprr;
953 u32 scprrh;
954 u32 scprrl;
955 u32 simrh;
956 u32 simrl;
957 u32 siexr;
958 u8 res2[88];
959 u32 sccr;
960 u8 res3[124];
961} ccsr_cpm_intctl_t;
962
963
964typedef struct ccsr_cpm_iop {
965 u32 pdira;
966 u32 ppara;
967 u32 psora;
968 u32 podra;
969 u32 pdata;
970 u8 res1[12];
971 u32 pdirb;
972 u32 pparb;
973 u32 psorb;
974 u32 podrb;
975 u32 pdatb;
976 u8 res2[12];
977 u32 pdirc;
978 u32 pparc;
979 u32 psorc;
980 u32 podrc;
981 u32 pdatc;
982 u8 res3[12];
983 u32 pdird;
984 u32 ppard;
985 u32 psord;
986 u32 podrd;
987 u32 pdatd;
988 u8 res4[12];
989} ccsr_cpm_iop_t;
990
991
992typedef struct ccsr_cpm_timer {
993 u8 tgcr1;
994 u8 res1[3];
995 u8 tgcr2;
996 u8 res2[11];
997 u16 tmr1;
998 u16 tmr2;
999 u16 trr1;
1000 u16 trr2;
1001 u16 tcr1;
1002 u16 tcr2;
1003 u16 tcn1;
1004 u16 tcn2;
1005 u16 tmr3;
1006 u16 tmr4;
1007 u16 trr3;
1008 u16 trr4;
1009 u16 tcr3;
1010 u16 tcr4;
1011 u16 tcn3;
1012 u16 tcn4;
1013 u16 ter1;
1014 u16 ter2;
1015 u16 ter3;
1016 u16 ter4;
1017 u8 res3[608];
1018} ccsr_cpm_timer_t;
1019
1020
1021typedef struct ccsr_cpm_sdma {
1022 u8 sdsr;
1023 u8 res1[3];
1024 u8 sdmr;
1025 u8 res2[739];
1026} ccsr_cpm_sdma_t;
1027
1028
1029typedef struct ccsr_cpm_fcc1 {
1030 u32 gfmr;
1031 u32 fpsmr;
1032 u16 ftodr;
1033 u8 res1[2];
1034 u16 fdsr;
1035 u8 res2[2];
1036 u16 fcce;
1037 u8 res3[2];
1038 u16 fccm;
1039 u8 res4[2];
1040 u8 fccs;
1041 u8 res5[3];
1042 u8 ftirr_phy[4];
1043} ccsr_cpm_fcc1_t;
1044
1045
1046typedef struct ccsr_cpm_fcc2 {
1047 u32 gfmr;
1048 u32 fpsmr;
1049 u16 ftodr;
1050 u8 res1[2];
1051 u16 fdsr;
1052 u8 res2[2];
1053 u16 fcce;
1054 u8 res3[2];
1055 u16 fccm;
1056 u8 res4[2];
1057 u8 fccs;
1058 u8 res5[3];
1059 u8 ftirr_phy[4];
1060} ccsr_cpm_fcc2_t;
1061
1062
1063typedef struct ccsr_cpm_fcc3 {
1064 u32 gfmr;
1065 u32 fpsmr;
1066 u16 ftodr;
1067 u8 res1[2];
1068 u16 fdsr;
1069 u8 res2[2];
1070 u16 fcce;
1071 u8 res3[2];
1072 u16 fccm;
1073 u8 res4[2];
1074 u8 fccs;
1075 u8 res5[3];
1076 u8 res[36];
1077} ccsr_cpm_fcc3_t;
1078
1079
1080typedef struct ccsr_cpm_fcc1_ext {
1081 u32 firper;
1082 u32 firer;
1083 u32 firsr_h;
1084 u32 firsr_l;
1085 u8 gfemr;
1086 u8 res[15];
1087
1088} ccsr_cpm_fcc1_ext_t;
1089
1090
1091typedef struct ccsr_cpm_fcc2_ext {
1092 u32 firper;
1093 u32 firer;
1094 u32 firsr_h;
1095 u32 firsr_l;
1096 u8 gfemr;
1097 u8 res[31];
1098} ccsr_cpm_fcc2_ext_t;
1099
1100
1101typedef struct ccsr_cpm_fcc3_ext {
1102 u8 gfemr;
1103 u8 res[47];
1104} ccsr_cpm_fcc3_ext_t;
1105
1106
1107typedef struct ccsr_cpm_tmp1 {
1108 u8 res[496];
1109} ccsr_cpm_tmp1_t;
1110
1111
1112typedef struct ccsr_cpm_brg2 {
1113 u32 brgc5;
1114 u32 brgc6;
1115 u32 brgc7;
1116 u32 brgc8;
1117 u8 res[608];
1118} ccsr_cpm_brg2_t;
1119
1120
1121typedef struct ccsr_cpm_i2c {
1122 u8 i2mod;
1123 u8 res1[3];
1124 u8 i2add;
1125 u8 res2[3];
1126 u8 i2brg;
1127 u8 res3[3];
1128 u8 i2com;
1129 u8 res4[3];
1130 u8 i2cer;
1131 u8 res5[3];
1132 u8 i2cmr;
1133 u8 res6[331];
1134} ccsr_cpm_i2c_t;
1135
1136
1137typedef struct ccsr_cpm_cp {
1138 u32 cpcr;
1139 u32 rccr;
1140 u8 res1[14];
1141 u16 rter;
1142 u8 res2[2];
1143 u16 rtmr;
1144 u16 rtscr;
1145 u8 res3[2];
1146 u32 rtsr;
1147 u8 res4[12];
1148} ccsr_cpm_cp_t;
1149
1150
1151typedef struct ccsr_cpm_brg1 {
1152 u32 brgc1;
1153 u32 brgc2;
1154 u32 brgc3;
1155 u32 brgc4;
1156} ccsr_cpm_brg1_t;
1157
1158
1159typedef struct ccsr_cpm_scc {
1160 u32 gsmrl;
1161 u32 gsmrh;
1162 u16 psmr;
1163 u8 res1[2];
1164 u16 todr;
1165 u16 dsr;
1166 u16 scce;
1167 u8 res2[2];
1168 u16 sccm;
1169 u8 res3;
1170 u8 sccs;
1171 u8 res4[8];
1172} ccsr_cpm_scc_t;
1173
1174typedef struct ccsr_cpm_tmp2 {
1175 u8 res[32];
1176} ccsr_cpm_tmp2_t;
1177
1178
1179typedef struct ccsr_cpm_spi {
1180 u16 spmode;
1181 u8 res1[4];
1182 u8 spie;
1183 u8 res2[3];
1184 u8 spim;
1185 u8 res3[2];
1186 u8 spcom;
1187 u8 res4[82];
1188} ccsr_cpm_spi_t;
1189
1190
1191typedef struct ccsr_cpm_mux {
1192 u8 cmxsi1cr;
1193 u8 res1;
1194 u8 cmxsi2cr;
1195 u8 res2;
1196 u32 cmxfcr;
1197 u32 cmxscr;
1198 u8 res3[2];
1199 u16 cmxuar;
1200 u8 res4[16];
1201} ccsr_cpm_mux_t;
1202
1203
1204typedef struct ccsr_cpm_tmp3 {
1205 u8 res[58592];
1206} ccsr_cpm_tmp3_t;
1207
1208typedef struct ccsr_cpm_iram {
1209 u32 iram[8192];
1210 u8 res[98304];
1211} ccsr_cpm_iram_t;
1212
1213typedef struct ccsr_cpm {
1214
1215
1216
1217#define im_dprambase im_dpram1
1218 u8 im_dpram1[16*1024];
1219 u8 res1[16*1024];
1220 u8 im_dpram2[16*1024];
1221 u8 res2[16*1024];
1222 ccsr_cpm_siu_t im_cpm_siu;
1223 ccsr_cpm_intctl_t im_cpm_intctl;
1224 ccsr_cpm_iop_t im_cpm_iop;
1225 ccsr_cpm_timer_t im_cpm_timer;
1226 ccsr_cpm_sdma_t im_cpm_sdma;
1227 ccsr_cpm_fcc1_t im_cpm_fcc1;
1228 ccsr_cpm_fcc2_t im_cpm_fcc2;
1229 ccsr_cpm_fcc3_t im_cpm_fcc3;
1230 ccsr_cpm_fcc1_ext_t im_cpm_fcc1_ext;
1231 ccsr_cpm_fcc2_ext_t im_cpm_fcc2_ext;
1232 ccsr_cpm_fcc3_ext_t im_cpm_fcc3_ext;
1233 ccsr_cpm_tmp1_t im_cpm_tmp1;
1234 ccsr_cpm_brg2_t im_cpm_brg2;
1235 ccsr_cpm_i2c_t im_cpm_i2c;
1236 ccsr_cpm_cp_t im_cpm_cp;
1237 ccsr_cpm_brg1_t im_cpm_brg1;
1238 ccsr_cpm_scc_t im_cpm_scc[4];
1239 ccsr_cpm_tmp2_t im_cpm_tmp2;
1240 ccsr_cpm_spi_t im_cpm_spi;
1241 ccsr_cpm_mux_t im_cpm_mux;
1242 ccsr_cpm_tmp3_t im_cpm_tmp3;
1243 ccsr_cpm_iram_t im_cpm_iram;
1244} ccsr_cpm_t;
1245#endif
1246
1247#ifdef CONFIG_SYS_SRIO
1248
1249struct rio_arch {
1250 u32 didcar;
1251 u32 dicar;
1252 u32 aidcar;
1253 u32 aicar;
1254 u32 pefcar;
1255 u8 res0[4];
1256 u32 socar;
1257 u32 docar;
1258 u8 res1[32];
1259 u32 mcsr;
1260 u32 pwdcsr;
1261 u8 res2[4];
1262 u32 pellccsr;
1263 u8 res3[12];
1264 u32 lcsbacsr;
1265 u32 bdidcsr;
1266 u8 res4[4];
1267 u32 hbdidlcsr;
1268 u32 ctcsr;
1269};
1270
1271
1272struct rio_lp_serial_port {
1273 u32 plmreqcsr;
1274 u32 plmrespcsr;
1275 u32 plascsr;
1276 u8 res0[12];
1277 u32 pescsr;
1278 u32 pccsr;
1279};
1280
1281
1282struct rio_lp_serial {
1283 u32 pmbh0csr;
1284 u8 res0[28];
1285 u32 pltoccsr;
1286 u32 prtoccsr;
1287 u8 res1[20];
1288 u32 pgccsr;
1289 struct rio_lp_serial_port port[CONFIG_SYS_FSL_SRIO_MAX_PORTS];
1290};
1291
1292
1293struct rio_logical_err {
1294 u32 erbh;
1295 u8 res0[4];
1296 u32 ltledcsr;
1297 u32 ltleecsr;
1298 u8 res1[4];
1299 u32 ltlaccsr;
1300 u32 ltldidccsr;
1301 u32 ltlcccsr;
1302};
1303
1304
1305struct rio_phys_err_port {
1306 u32 edcsr;
1307 u32 erecsr;
1308 u32 ecacsr;
1309 u32 pcseccsr0;
1310 u32 peccsr[3];
1311 u8 res0[12];
1312 u32 ercsr;
1313 u32 ertcsr;
1314 u8 res1[16];
1315};
1316
1317
1318struct rio_phys_err {
1319 struct rio_phys_err_port port[CONFIG_SYS_FSL_SRIO_MAX_PORTS];
1320};
1321
1322
1323struct rio_impl_common {
1324 u8 res0[4];
1325 u32 llcr;
1326 u8 res1[8];
1327 u32 epwisr;
1328 u8 res2[12];
1329 u32 lretcr;
1330 u8 res3[92];
1331 u32 pretcr;
1332 u8 res4[124];
1333};
1334
1335
1336struct rio_impl_port_spec {
1337 u32 adidcsr;
1338 u8 res0[28];
1339 u32 ptaacr;
1340 u32 lopttlcr;
1341 u8 res1[8];
1342 u32 iecsr;
1343 u8 res2[12];
1344 u32 pcr;
1345 u8 res3[20];
1346 u32 slcsr;
1347 u8 res4[4];
1348 u32 sleicr;
1349 u32 a0txcr;
1350 u32 a1txcr;
1351 u32 a2txcr;
1352 u32 mreqtxbacr[3];
1353 u32 mrspfctxbacr;
1354};
1355
1356
1357struct rio_implement {
1358 struct rio_impl_common com;
1359 struct rio_impl_port_spec port[CONFIG_SYS_FSL_SRIO_MAX_PORTS];
1360};
1361
1362
1363struct rio_rev_ctrl {
1364 u32 ipbrr[2];
1365};
1366
1367struct rio_atmu_row {
1368 u32 rowtar;
1369 u32 rowtear;
1370 u32 rowbar;
1371 u8 res0[4];
1372 u32 rowar;
1373 u32 rowsr[3];
1374};
1375
1376struct rio_atmu_riw {
1377 u32 riwtar;
1378 u8 res0[4];
1379 u32 riwbar;
1380 u8 res1[4];
1381 u32 riwar;
1382 u8 res2[12];
1383};
1384
1385
1386struct rio_atmu_win {
1387 struct rio_atmu_row outbw[CONFIG_SYS_FSL_SRIO_OB_WIN_NUM];
1388 u8 res0[64];
1389 struct rio_atmu_riw inbw[CONFIG_SYS_FSL_SRIO_IB_WIN_NUM];
1390};
1391
1392struct rio_atmu {
1393 struct rio_atmu_win port[CONFIG_SYS_FSL_SRIO_MAX_PORTS];
1394};
1395
1396#ifdef CONFIG_SYS_FSL_RMU
1397struct rio_msg {
1398 u32 omr;
1399 u32 osr;
1400 u32 eodqdpar;
1401 u32 odqdpar;
1402 u32 eosar;
1403 u32 osar;
1404 u32 odpr;
1405 u32 odatr;
1406 u32 odcr;
1407 u32 eodqepar;
1408 u32 odqepar;
1409 u32 oretr;
1410 u32 omgr;
1411 u32 omlr;
1412 u8 res0[40];
1413 u32 imr;
1414 u32 isr;
1415 u32 eidqdpar;
1416 u32 idqdpar;
1417 u32 eifqepar;
1418 u32 ifqepar;
1419 u32 imirir;
1420 u8 res1[4];
1421 u32 eihqepar;
1422 u32 ihqepar;
1423 u8 res2[120];
1424};
1425
1426struct rio_dbell {
1427 u32 odmr;
1428 u32 odsr;
1429 u8 res0[16];
1430 u32 oddpr;
1431 u32 oddatr;
1432 u8 res1[12];
1433 u32 oddretr;
1434 u8 res2[48];
1435 u32 idmr;
1436 u32 idsr;
1437 u32 iedqdpar;
1438 u32 iqdpar;
1439 u32 iedqepar;
1440 u32 idqepar;
1441 u32 idmirir;
1442};
1443
1444struct rio_pw {
1445 u32 pwmr;
1446 u32 pwsr;
1447 u32 epwqbar;
1448 u32 pwqbar;
1449};
1450#endif
1451
1452#ifdef CONFIG_SYS_FSL_SRIO_LIODN
1453struct rio_liodn {
1454 u32 plbr;
1455 u8 res0[28];
1456 u32 plaor;
1457 u8 res1[12];
1458 u32 pludr;
1459 u32 plldr;
1460 u8 res2[456];
1461};
1462#endif
1463
1464
1465struct ccsr_rio {
1466 struct rio_arch arch;
1467 u8 res0[144];
1468 struct rio_lp_serial lp_serial;
1469 u8 res1[1152];
1470 struct rio_logical_err logical_err;
1471 u8 res2[32];
1472 struct rio_phys_err phys_err;
1473 u8 res3[63808];
1474 struct rio_implement impl;
1475 u8 res4[2552];
1476 struct rio_rev_ctrl rev;
1477 struct rio_atmu atmu;
1478#ifdef CONFIG_SYS_FSL_RMU
1479 u8 res5[8192];
1480 struct rio_msg msg[CONFIG_SYS_FSL_SRIO_MSG_UNIT_NUM];
1481 u8 res6[512];
1482 struct rio_dbell dbell;
1483 u8 res7[100];
1484 struct rio_pw pw;
1485#endif
1486#ifdef CONFIG_SYS_FSL_SRIO_LIODN
1487 u8 res5[8192];
1488 struct rio_liodn liodn[CONFIG_SYS_FSL_SRIO_MAX_PORTS];
1489#endif
1490};
1491#endif
1492
1493
1494typedef struct par_io {
1495 u32 cpodr;
1496 u32 cpdat;
1497 u32 cpdir1;
1498 u32 cpdir2;
1499 u32 cppar1;
1500 u32 cppar2;
1501 u8 res[8];
1502} par_io_t;
1503
1504#ifdef CONFIG_SYS_FSL_CPC
1505
1506
1507
1508
1509
1510
1511typedef struct cpc_corenet {
1512 u32 cpccsr0;
1513 u32 res1;
1514 u32 cpccfg0;
1515 u32 res2;
1516 u32 cpcewcr0;
1517 u32 cpcewabr0;
1518 u32 res3[2];
1519 u32 cpcewcr1;
1520 u32 cpcewabr1;
1521 u32 res4[54];
1522 u32 cpcsrcr1;
1523 u32 cpcsrcr0;
1524 u32 res5[62];
1525 struct {
1526 u32 id;
1527 u32 res;
1528 u32 alloc;
1529 u32 way;
1530 } partition_regs[16];
1531 u32 res6[704];
1532 u32 cpcerrinjhi;
1533 u32 cpcerrinjlo;
1534 u32 cpcerrinjctl;
1535 u32 res7[5];
1536 u32 cpccaptdatahi;
1537 u32 cpccaptdatalo;
1538 u32 cpcaptecc;
1539 u32 res8[5];
1540 u32 cpcerrdet;
1541 u32 cpcerrdis;
1542 u32 cpcerrinten;
1543 u32 cpcerrattr;
1544 u32 cpcerreaddr;
1545 u32 cpcerraddr;
1546 u32 cpcerrctl;
1547 u32 res9[41];
1548 u32 cpchdbcr0;
1549 u32 res10[63];
1550} cpc_corenet_t;
1551
1552#define CPC_CSR0_CE 0x80000000
1553#define CPC_CSR0_PE 0x40000000
1554#define CPC_CSR0_FI 0x00200000
1555#define CPC_CSR0_WT 0x00080000
1556#define CPC_CSR0_FL 0x00000800
1557#define CPC_CSR0_LFC 0x00000400
1558#define CPC_CFG0_SZ_MASK 0x00003fff
1559#define CPC_CFG0_SZ_K(x) ((x & CPC_CFG0_SZ_MASK) << 6)
1560#define CPC_CFG0_NUM_WAYS(x) (((x >> 14) & 0x1f) + 1)
1561#define CPC_CFG0_LINE_SZ(x) ((((x >> 23) & 0x3) + 1) * 32)
1562#define CPC_SRCR1_SRBARU_MASK 0x0000ffff
1563#define CPC_SRCR1_SRBARU(x) (((unsigned long long)x >> 32) \
1564 & CPC_SRCR1_SRBARU_MASK)
1565#define CPC_SRCR0_SRBARL_MASK 0xffff8000
1566#define CPC_SRCR0_SRBARL(x) (x & CPC_SRCR0_SRBARL_MASK)
1567#define CPC_SRCR0_INTLVEN 0x00000100
1568#define CPC_SRCR0_SRAMSZ_1_WAY 0x00000000
1569#define CPC_SRCR0_SRAMSZ_2_WAY 0x00000002
1570#define CPC_SRCR0_SRAMSZ_4_WAY 0x00000004
1571#define CPC_SRCR0_SRAMSZ_8_WAY 0x00000006
1572#define CPC_SRCR0_SRAMSZ_16_WAY 0x00000008
1573#define CPC_SRCR0_SRAMSZ_32_WAY 0x0000000a
1574#define CPC_SRCR0_SRAMEN 0x00000001
1575#define CPC_ERRDIS_TMHITDIS 0x00000080
1576#define CPC_HDBCR0_CDQ_SPEC_DIS 0x08000000
1577#define CPC_HDBCR0_TAG_ECC_SCRUB_DIS 0x01000000
1578#define CPC_HDBCR0_DATA_ECC_SCRUB_DIS 0x00400000
1579#define CPC_HDBCR0_SPLRU_LEVEL_EN 0x003c0000
1580#endif
1581
1582
1583#ifdef CONFIG_FSL_CORENET
1584typedef struct ccsr_gur {
1585 u32 porsr1;
1586 u32 porsr2;
1587#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
1588#define FSL_DCFG_PORSR1_SYSCLK_SHIFT 15
1589#define FSL_DCFG_PORSR1_SYSCLK_MASK 0x1
1590#define FSL_DCFG_PORSR1_SYSCLK_SINGLE_ENDED 0x1
1591#define FSL_DCFG_PORSR1_SYSCLK_DIFF 0x0
1592#endif
1593 u8 res_008[0x20-0x8];
1594 u32 gpporcr1;
1595 u32 gpporcr2;
1596 u32 dcfg_fusesr;
1597#define FSL_CORENET_DCFG_FUSESR_VID_SHIFT 25
1598#define FSL_CORENET_DCFG_FUSESR_VID_MASK 0x1F
1599#define FSL_CORENET_DCFG_FUSESR_ALTVID_SHIFT 20
1600#define FSL_CORENET_DCFG_FUSESR_ALTVID_MASK 0x1F
1601 u8 res_02c[0x70-0x2c];
1602 u32 devdisr;
1603 u32 devdisr2;
1604 u32 devdisr3;
1605 u32 devdisr4;
1606#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
1607 u32 devdisr5;
1608#define FSL_CORENET_DEVDISR_PBL 0x80000000
1609#define FSL_CORENET_DEVDISR_PMAN 0x40000000
1610#define FSL_CORENET_DEVDISR_ESDHC 0x20000000
1611#define FSL_CORENET_DEVDISR_DMA1 0x00800000
1612#define FSL_CORENET_DEVDISR_DMA2 0x00400000
1613#define FSL_CORENET_DEVDISR_USB1 0x00080000
1614#define FSL_CORENET_DEVDISR_USB2 0x00040000
1615#define FSL_CORENET_DEVDISR_SATA1 0x00008000
1616#define FSL_CORENET_DEVDISR_SATA2 0x00004000
1617#define FSL_CORENET_DEVDISR_PME 0x00000800
1618#define FSL_CORENET_DEVDISR_SEC 0x00000200
1619#define FSL_CORENET_DEVDISR_RMU 0x00000080
1620#define FSL_CORENET_DEVDISR_DCE 0x00000040
1621#define FSL_CORENET_DEVDISR2_DTSEC1_1 0x80000000
1622#define FSL_CORENET_DEVDISR2_DTSEC1_2 0x40000000
1623#define FSL_CORENET_DEVDISR2_DTSEC1_3 0x20000000
1624#define FSL_CORENET_DEVDISR2_DTSEC1_4 0x10000000
1625#define FSL_CORENET_DEVDISR2_DTSEC1_5 0x08000000
1626#define FSL_CORENET_DEVDISR2_DTSEC1_6 0x04000000
1627#define FSL_CORENET_DEVDISR2_DTSEC1_9 0x00800000
1628#define FSL_CORENET_DEVDISR2_DTSEC1_10 0x00400000
1629#ifdef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
1630#define FSL_CORENET_DEVDISR2_10GEC1_1 0x80000000
1631#define FSL_CORENET_DEVDISR2_10GEC1_2 0x40000000
1632#else
1633#define FSL_CORENET_DEVDISR2_10GEC1_1 0x00800000
1634#define FSL_CORENET_DEVDISR2_10GEC1_2 0x00400000
1635#define FSL_CORENET_DEVDISR2_10GEC1_3 0x80000000
1636#define FSL_CORENET_DEVDISR2_10GEC1_4 0x40000000
1637#endif
1638#define FSL_CORENET_DEVDISR2_DTSEC2_1 0x00080000
1639#define FSL_CORENET_DEVDISR2_DTSEC2_2 0x00040000
1640#define FSL_CORENET_DEVDISR2_DTSEC2_3 0x00020000
1641#define FSL_CORENET_DEVDISR2_DTSEC2_4 0x00010000
1642#define FSL_CORENET_DEVDISR2_DTSEC2_5 0x00008000
1643#define FSL_CORENET_DEVDISR2_DTSEC2_6 0x00004000
1644#define FSL_CORENET_DEVDISR2_DTSEC2_9 0x00000800
1645#define FSL_CORENET_DEVDISR2_DTSEC2_10 0x00000400
1646#define FSL_CORENET_DEVDISR2_10GEC2_1 0x00000800
1647#define FSL_CORENET_DEVDISR2_10GEC2_2 0x00000400
1648#define FSL_CORENET_DEVDISR2_FM1 0x00000080
1649#define FSL_CORENET_DEVDISR2_FM2 0x00000040
1650#define FSL_CORENET_DEVDISR2_CPRI 0x00000008
1651#define FSL_CORENET_DEVDISR3_PCIE1 0x80000000
1652#define FSL_CORENET_DEVDISR3_PCIE2 0x40000000
1653#define FSL_CORENET_DEVDISR3_PCIE3 0x20000000
1654#define FSL_CORENET_DEVDISR3_PCIE4 0x10000000
1655#define FSL_CORENET_DEVDISR3_SRIO1 0x08000000
1656#define FSL_CORENET_DEVDISR3_SRIO2 0x04000000
1657#define FSL_CORENET_DEVDISR3_QMAN 0x00080000
1658#define FSL_CORENET_DEVDISR3_BMAN 0x00040000
1659#define FSL_CORENET_DEVDISR3_LA1 0x00008000
1660#define FSL_CORENET_DEVDISR3_MAPLE1 0x00000800
1661#define FSL_CORENET_DEVDISR3_MAPLE2 0x00000400
1662#define FSL_CORENET_DEVDISR3_MAPLE3 0x00000200
1663#define FSL_CORENET_DEVDISR4_I2C1 0x80000000
1664#define FSL_CORENET_DEVDISR4_I2C2 0x40000000
1665#define FSL_CORENET_DEVDISR4_DUART1 0x20000000
1666#define FSL_CORENET_DEVDISR4_DUART2 0x10000000
1667#define FSL_CORENET_DEVDISR4_ESPI 0x08000000
1668#define FSL_CORENET_DEVDISR5_DDR1 0x80000000
1669#define FSL_CORENET_DEVDISR5_DDR2 0x40000000
1670#define FSL_CORENET_DEVDISR5_DDR3 0x20000000
1671#define FSL_CORENET_DEVDISR5_CPC1 0x08000000
1672#define FSL_CORENET_DEVDISR5_CPC2 0x04000000
1673#define FSL_CORENET_DEVDISR5_CPC3 0x02000000
1674#define FSL_CORENET_DEVDISR5_IFC 0x00800000
1675#define FSL_CORENET_DEVDISR5_GPIO 0x00400000
1676#define FSL_CORENET_DEVDISR5_DBG 0x00200000
1677#define FSL_CORENET_DEVDISR5_NAL 0x00100000
1678#define FSL_CORENET_DEVDISR5_TIMERS 0x00020000
1679#define FSL_CORENET_NUM_DEVDISR 5
1680#else
1681#define FSL_CORENET_DEVDISR_PCIE1 0x80000000
1682#define FSL_CORENET_DEVDISR_PCIE2 0x40000000
1683#define FSL_CORENET_DEVDISR_PCIE3 0x20000000
1684#define FSL_CORENET_DEVDISR_PCIE4 0x10000000
1685#define FSL_CORENET_DEVDISR_RMU 0x08000000
1686#define FSL_CORENET_DEVDISR_SRIO1 0x04000000
1687#define FSL_CORENET_DEVDISR_SRIO2 0x02000000
1688#define FSL_CORENET_DEVDISR_DMA1 0x00400000
1689#define FSL_CORENET_DEVDISR_DMA2 0x00200000
1690#define FSL_CORENET_DEVDISR_DDR1 0x00100000
1691#define FSL_CORENET_DEVDISR_DDR2 0x00080000
1692#define FSL_CORENET_DEVDISR_DBG 0x00010000
1693#define FSL_CORENET_DEVDISR_NAL 0x00008000
1694#define FSL_CORENET_DEVDISR_SATA1 0x00004000
1695#define FSL_CORENET_DEVDISR_SATA2 0x00002000
1696#define FSL_CORENET_DEVDISR_ELBC 0x00001000
1697#define FSL_CORENET_DEVDISR_USB1 0x00000800
1698#define FSL_CORENET_DEVDISR_USB2 0x00000400
1699#define FSL_CORENET_DEVDISR_ESDHC 0x00000100
1700#define FSL_CORENET_DEVDISR_GPIO 0x00000080
1701#define FSL_CORENET_DEVDISR_ESPI 0x00000040
1702#define FSL_CORENET_DEVDISR_I2C1 0x00000020
1703#define FSL_CORENET_DEVDISR_I2C2 0x00000010
1704#define FSL_CORENET_DEVDISR_DUART1 0x00000002
1705#define FSL_CORENET_DEVDISR_DUART2 0x00000001
1706#define FSL_CORENET_DEVDISR2_PME 0x80000000
1707#define FSL_CORENET_DEVDISR2_SEC 0x40000000
1708#define FSL_CORENET_DEVDISR2_QMBM 0x08000000
1709#define FSL_CORENET_DEVDISR2_FM1 0x02000000
1710#define FSL_CORENET_DEVDISR2_10GEC1 0x01000000
1711#define FSL_CORENET_DEVDISR2_DTSEC1_1 0x00800000
1712#define FSL_CORENET_DEVDISR2_DTSEC1_2 0x00400000
1713#define FSL_CORENET_DEVDISR2_DTSEC1_3 0x00200000
1714#define FSL_CORENET_DEVDISR2_DTSEC1_4 0x00100000
1715#define FSL_CORENET_DEVDISR2_DTSEC1_5 0x00080000
1716#define FSL_CORENET_DEVDISR2_FM2 0x00020000
1717#define FSL_CORENET_DEVDISR2_10GEC2 0x00010000
1718#define FSL_CORENET_DEVDISR2_DTSEC2_1 0x00008000
1719#define FSL_CORENET_DEVDISR2_DTSEC2_2 0x00004000
1720#define FSL_CORENET_DEVDISR2_DTSEC2_3 0x00002000
1721#define FSL_CORENET_DEVDISR2_DTSEC2_4 0x00001000
1722#define FSL_CORENET_DEVDISR2_DTSEC2_5 0x00000800
1723#define FSL_CORENET_NUM_DEVDISR 2
1724 u32 powmgtcsr;
1725#endif
1726 u8 res8[12];
1727 u32 coredisru;
1728 u32 coredisrl;
1729 u8 res9[8];
1730 u32 pvr;
1731 u32 svr;
1732 u8 res10[8];
1733 u32 rstcr;
1734 u32 rstrqpblsr;
1735 u8 res11[8];
1736 u32 rstrqmr1;
1737#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
1738#define FSL_CORENET_RSTRQMR1_SRDS_RST_MSK 0x00000800
1739#endif
1740 u8 res12[4];
1741 u32 rstrqsr1;
1742 u8 res13[4];
1743 u8 res14[4];
1744 u32 rstrqwdtmrl;
1745 u8 res15[4];
1746 u32 rstrqwdtsrl;
1747 u8 res16[4];
1748 u32 brrl;
1749 u8 res17[24];
1750 u32 rcwsr[16];
1751
1752#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
1753#define FSL_CORENET_RCWSR0_MEM_PLL_RAT_SHIFT 16
1754
1755#define FSL_CORENET_RCWSR0_MEM_PLL_RAT_RESV_SHIFT 8
1756#define FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK 0x3f
1757#if defined(CONFIG_PPC_T4240) || defined(CONFIG_PPC_T4160) || \
1758 defined(CONFIG_PPC_T4080)
1759#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL 0xfc000000
1760#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT 26
1761#define FSL_CORENET2_RCWSR4_SRDS2_PRTCL 0x00fe0000
1762#define FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT 17
1763#define FSL_CORENET2_RCWSR4_SRDS3_PRTCL 0x0000f800
1764#define FSL_CORENET2_RCWSR4_SRDS3_PRTCL_SHIFT 11
1765#define FSL_CORENET2_RCWSR4_SRDS4_PRTCL 0x000000f8
1766#define FSL_CORENET2_RCWSR4_SRDS4_PRTCL_SHIFT 3
1767#define FSL_CORENET_RCWSR6_BOOT_LOC 0x0f800000
1768#elif defined(CONFIG_PPC_B4860) || defined(CONFIG_PPC_B4420)
1769#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL 0xfe000000
1770#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT 25
1771#define FSL_CORENET2_RCWSR4_SRDS2_PRTCL 0x00ff0000
1772#define FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT 16
1773#define FSL_CORENET_RCWSR6_BOOT_LOC 0x0f800000
1774#elif defined(CONFIG_PPC_T1040) || defined(CONFIG_PPC_T1042) ||\
1775defined(CONFIG_PPC_T1020) || defined(CONFIG_PPC_T1022)
1776#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL 0xff000000
1777#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT 24
1778#define FSL_CORENET2_RCWSR4_SRDS2_PRTCL 0x00fe0000
1779#define FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT 17
1780#define FSL_CORENET_RCWSR13_EC1 0x30000000
1781#define FSL_CORENET_RCWSR13_EC1_FM1_DTSEC4_RGMII 0x00000000
1782#define FSL_CORENET_RCWSR13_EC1_FM1_GPIO 0x10000000
1783#define FSL_CORENET_RCWSR13_EC1_FM1_DTSEC4_MII 0x20000000
1784#define FSL_CORENET_RCWSR13_EC2 0x0c000000
1785#define FSL_CORENET_RCWSR13_EC2_FM1_DTSEC5_RGMII 0x00000000
1786#define FSL_CORENET_RCWSR13_EC2_FM1_GPIO 0x10000000
1787#define FSL_CORENET_RCWSR13_EC2_FM1_DTSEC5_MII 0x20000000
1788#define FSL_CORENET_RCWSR13_MAC2_GMII_SEL 0x00000080
1789#define FSL_CORENET_RCWSR13_MAC2_GMII_SEL_L2_SWITCH 0x00000000
1790#define FSL_CORENET_RCWSR13_MAC2_GMII_SEL_ENET_PORT 0x80000000
1791#define CONFIG_SYS_FSL_SCFG_PIXCLKCR_OFFSET 0x28
1792#define PXCKEN_MASK 0x80000000
1793#define PXCK_MASK 0x00FF0000
1794#define PXCK_BITS_START 16
1795#elif defined(CONFIG_PPC_T1024) || defined(CONFIG_PPC_T1023) || \
1796 defined(CONFIG_PPC_T1014) || defined(CONFIG_PPC_T1013)
1797#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL 0xff800000
1798#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT 23
1799#define FSL_CORENET_RCWSR6_BOOT_LOC 0x0f800000
1800#define FSL_CORENET_RCWSR13_EC1 0x30000000
1801#define FSL_CORENET_RCWSR13_EC1_RGMII 0x00000000
1802#define FSL_CORENET_RCWSR13_EC1_GPIO 0x10000000
1803#define FSL_CORENET_RCWSR13_EC2 0x0c000000
1804#define FSL_CORENET_RCWSR13_EC2_RGMII 0x08000000
1805#define CONFIG_SYS_FSL_SCFG_PIXCLKCR_OFFSET 0x28
1806#define CONFIG_SYS_FSL_SCFG_IODSECR1_OFFSET 0xd00
1807#define PXCKEN_MASK 0x80000000
1808#define PXCK_MASK 0x00FF0000
1809#define PXCK_BITS_START 16
1810#elif defined(CONFIG_PPC_T2080) || defined(CONFIG_PPC_T2081)
1811#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL 0xff000000
1812#define FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT 24
1813#define FSL_CORENET2_RCWSR4_SRDS2_PRTCL 0x00ff0000
1814#define FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT 16
1815#define FSL_CORENET_RCWSR6_BOOT_LOC 0x0f800000
1816#endif
1817#define FSL_CORENET2_RCWSR5_SRDS_PLL_PD_S1_PLL1 0x00800000
1818#define FSL_CORENET2_RCWSR5_SRDS_PLL_PD_S1_PLL2 0x00400000
1819#define FSL_CORENET2_RCWSR5_SRDS_PLL_PD_S2_PLL1 0x00200000
1820#define FSL_CORENET2_RCWSR5_SRDS_PLL_PD_S2_PLL2 0x00100000
1821#define FSL_CORENET2_RCWSR5_SRDS_PLL_PD_S3_PLL1 0x00080000
1822#define FSL_CORENET2_RCWSR5_SRDS_PLL_PD_S3_PLL2 0x00040000
1823#define FSL_CORENET2_RCWSR5_SRDS_PLL_PD_S4_PLL1 0x00020000
1824#define FSL_CORENET2_RCWSR5_SRDS_PLL_PD_S4_PLL2 0x00010000
1825#define FSL_CORENET2_RCWSR5_DDR_REFCLK_SEL_SHIFT 4
1826#define FSL_CORENET2_RCWSR5_DDR_REFCLK_SEL_MASK 0x00000011
1827#define FSL_CORENET2_RCWSR5_DDR_REFCLK_SINGLE_CLK 1
1828
1829#else
1830#define FSL_CORENET_RCWSR0_MEM_PLL_RAT_SHIFT 17
1831#define FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK 0x1f
1832#define FSL_CORENET_RCWSR4_SRDS_PRTCL 0xfc000000
1833#define FSL_CORENET_RCWSR5_DDR_SYNC 0x00000080
1834#define FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT 7
1835#define FSL_CORENET_RCWSR5_SRDS_EN 0x00002000
1836#define FSL_CORENET_RCWSR5_SRDS2_EN 0x00001000
1837#define FSL_CORENET_RCWSR6_BOOT_LOC 0x0f800000
1838#define FSL_CORENET_RCWSRn_SRDS_LPD_B2 0x3c000000
1839#define FSL_CORENET_RCWSRn_SRDS_LPD_B3 0x003c0000
1840#endif
1841
1842#define FSL_CORENET_RCWSR7_MCK_TO_PLAT_RAT 0x00400000
1843#define FSL_CORENET_RCWSR8_HOST_AGT_B1 0x00e00000
1844#define FSL_CORENET_RCWSR8_HOST_AGT_B2 0x00100000
1845#define FSL_CORENET_RCWSR11_EC1 0x00c00000
1846#ifdef CONFIG_PPC_P4080
1847#define FSL_CORENET_RCWSR11_EC1_FM1_DTSEC1 0x00000000
1848#define FSL_CORENET_RCWSR11_EC1_FM1_USB1 0x00800000
1849#define FSL_CORENET_RCWSR11_EC2 0x001c0000
1850#define FSL_CORENET_RCWSR11_EC2_FM2_DTSEC1 0x00000000
1851#define FSL_CORENET_RCWSR11_EC2_FM1_DTSEC2 0x00080000
1852#define FSL_CORENET_RCWSR11_EC2_USB2 0x00100000
1853#endif
1854#if defined(CONFIG_PPC_P2041) \
1855 || defined(CONFIG_PPC_P3041) || defined(CONFIG_PPC_P5020)
1856#define FSL_CORENET_RCWSR11_EC1_FM1_DTSEC4_RGMII 0x00000000
1857#define FSL_CORENET_RCWSR11_EC1_FM1_DTSEC4_MII 0x00800000
1858#define FSL_CORENET_RCWSR11_EC1_FM1_DTSEC4_NONE 0x00c00000
1859#define FSL_CORENET_RCWSR11_EC2 0x00180000
1860#define FSL_CORENET_RCWSR11_EC2_FM1_DTSEC5_RGMII 0x00000000
1861#define FSL_CORENET_RCWSR11_EC2_FM1_DTSEC5_MII 0x00100000
1862#define FSL_CORENET_RCWSR11_EC2_FM1_DTSEC5_NONE 0x00180000
1863#endif
1864#if defined(CONFIG_PPC_P5040)
1865#define FSL_CORENET_RCWSR11_EC1_FM1_DTSEC5_RGMII 0x00000000
1866#define FSL_CORENET_RCWSR11_EC1_FM1_DTSEC5_MII 0x00800000
1867#define FSL_CORENET_RCWSR11_EC1_FM1_DTSEC5_NONE 0x00c00000
1868#define FSL_CORENET_RCWSR11_EC2 0x00180000
1869#define FSL_CORENET_RCWSR11_EC2_FM2_DTSEC5_RGMII 0x00000000
1870#define FSL_CORENET_RCWSR11_EC2_FM2_DTSEC5_MII 0x00100000
1871#define FSL_CORENET_RCWSR11_EC2_FM2_DTSEC5_NONE 0x00180000
1872#endif
1873#if defined(CONFIG_PPC_T4240) || defined(CONFIG_PPC_T4160) || \
1874 defined(CONFIG_PPC_T4080)
1875#define FSL_CORENET_RCWSR13_EC1 0x60000000
1876#define FSL_CORENET_RCWSR13_EC1_FM2_DTSEC5_RGMII 0x00000000
1877#define FSL_CORENET_RCWSR13_EC1_FM2_GPIO 0x40000000
1878#define FSL_CORENET_RCWSR13_EC2 0x18000000
1879#define FSL_CORENET_RCWSR13_EC2_FM1_DTSEC5_RGMII 0x00000000
1880#define FSL_CORENET_RCWSR13_EC2_FM1_DTSEC6_RGMII 0x08000000
1881#define FSL_CORENET_RCWSR13_EC2_FM1_GPIO 0x10000000
1882#endif
1883#if defined(CONFIG_PPC_T2080) || defined(CONFIG_PPC_T2081)
1884#define FSL_CORENET_RCWSR13_EC1 0x60000000
1885#define FSL_CORENET_RCWSR13_EC1_DTSEC3_RGMII 0x00000000
1886#define FSL_CORENET_RCWSR13_EC1_GPIO 0x40000000
1887#define FSL_CORENET_RCWSR13_EC2 0x18000000
1888#define FSL_CORENET_RCWSR13_EC2_DTSEC4_RGMII 0x00000000
1889#define FSL_CORENET_RCWSR13_EC2_DTSEC10_RGMII 0x08000000
1890#define FSL_CORENET_RCWSR13_EC2_GPIO 0x10000000
1891#endif
1892 u8 res18[192];
1893 u32 scratchrw[4];
1894 u8 res19[240];
1895 u32 scratchw1r[4];
1896 u8 res20[240];
1897 u32 scrtsr[8];
1898 u8 res21[224];
1899 u32 pex1liodnr;
1900 u32 pex2liodnr;
1901 u32 pex3liodnr;
1902 u32 pex4liodnr;
1903 u32 rio1liodnr;
1904 u32 rio2liodnr;
1905 u32 rio3liodnr;
1906 u32 rio4liodnr;
1907 u32 usb1liodnr;
1908 u32 usb2liodnr;
1909 u32 usb3liodnr;
1910 u32 usb4liodnr;
1911 u32 sdmmc1liodnr;
1912 u32 sdmmc2liodnr;
1913 u32 sdmmc3liodnr;
1914 u32 sdmmc4liodnr;
1915 u32 rio1maintliodnr;
1916 u32 rio2maintliodnr;
1917 u32 rio3maintliodnr;
1918 u32 rio4maintliodnr;
1919 u32 sata1liodnr;
1920 u32 sata2liodnr;
1921 u32 sata3liodnr;
1922 u32 sata4liodnr;
1923 u8 res22[20];
1924 u32 tdmliodnr;
1925 u32 qeliodnr;
1926 u8 res_57c[4];
1927 u32 dma1liodnr;
1928 u32 dma2liodnr;
1929 u32 dma3liodnr;
1930 u32 dma4liodnr;
1931 u8 res23[48];
1932 u8 res24[64];
1933 u32 pblsr;
1934 u32 pamubypenr;
1935#define FSL_CORENET_PAMU_BYPASS 0xffff0000
1936 u32 dmacr1;
1937 u8 res25[4];
1938 u32 gensr1;
1939 u8 res26[12];
1940 u32 gencr1;
1941 u8 res27[12];
1942 u8 res28[4];
1943 u32 cgensrl;
1944 u8 res29[8];
1945 u8 res30[4];
1946 u32 cgencrl;
1947 u8 res31[184];
1948 u32 sriopstecr;
1949 u32 dcsrcr;
1950 u8 res31a[56];
1951 u32 tp_ityp[64];
1952 struct {
1953 u32 upper;
1954 u32 lower;
1955 } tp_cluster[16];
1956 u8 res32[1344];
1957 u32 pmuxcr;
1958 u8 res33[60];
1959 u32 iovselsr;
1960 u8 res34[28];
1961 u32 ddrclkdr;
1962 u8 res35;
1963 u32 elbcclkdr;
1964 u8 res36[20];
1965 u32 sdhcpcr;
1966 u8 res37[380];
1967} ccsr_gur_t;
1968
1969#define TP_ITYP_AV 0x00000001
1970#define TP_ITYP_TYPE(x) (((x) & 0x6) >> 1)
1971#define TP_ITYP_TYPE_OTHER 0x0
1972#define TP_ITYP_TYPE_PPC 0x1
1973#define TP_ITYP_TYPE_SC 0x2
1974#define TP_ITYP_TYPE_HA 0x3
1975#define TP_ITYP_THDS(x) (((x) & 0x18) >> 3)
1976#define TP_ITYP_VER(x) (((x) & 0xe0) >> 5)
1977
1978#define TP_CLUSTER_EOC 0x80000000
1979#define TP_CLUSTER_INIT_MASK 0x0000003f
1980#define TP_INIT_PER_CLUSTER 4
1981
1982#define FSL_CORENET_DCSR_SZ_MASK 0x00000003
1983#define FSL_CORENET_DCSR_SZ_4M 0x0
1984#define FSL_CORENET_DCSR_SZ_1G 0x3
1985
1986
1987
1988
1989
1990#define rmuliodnr rio1maintliodnr
1991
1992typedef struct ccsr_clk {
1993 struct {
1994 u32 clkcncsr;
1995 u8 res_004[0x0c];
1996 u32 clkcgnhwacsr;
1997 u8 res_014[0x0c];
1998 } clkcsr[12];
1999 u8 res_100[0x680];
2000 struct {
2001 u32 pllcngsr;
2002 u8 res10[0x1c];
2003 } pllcgsr[12];
2004 u8 res21[0x280];
2005 u32 pllpgsr;
2006 u8 res16[0x1c];
2007 u32 plldgsr;
2008 u8 res17[0x3dc];
2009} ccsr_clk_t;
2010
2011#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
2012typedef struct ccsr_rcpm {
2013 u8 res_00[12];
2014 u32 tph10sr0;
2015 u8 res_10[12];
2016 u32 tph10setr0;
2017 u8 res_20[12];
2018 u32 tph10clrr0;
2019 u8 res_30[12];
2020 u32 tph10psr0;
2021 u8 res_40[12];
2022 u32 twaitsr0;
2023 u8 res_50[96];
2024 u32 pcph15sr;
2025 u32 pcph15setr;
2026 u32 pcph15clrr;
2027 u32 pcph15psr;
2028 u8 res_c0[16];
2029 u32 pcph20sr;
2030 u32 pcph20setr;
2031 u32 pcph20clrr;
2032 u32 pcph20psr;
2033 u32 pcpw20sr;
2034 u8 res_e0[12];
2035 u32 pcph30sr;
2036 u32 pcph30setr;
2037 u32 pcph30clrr;
2038 u32 pcph30psr;
2039 u8 res_100[32];
2040 u32 ippwrgatecr;
2041 u8 res_124[12];
2042 u32 powmgtcsr;
2043 u8 res_134[12];
2044 u32 ippdexpcr[4];
2045 u8 res_150[12];
2046 u32 tpmimr0;
2047 u8 res_160[12];
2048 u32 tpmcimr0;
2049 u8 res_170[12];
2050 u32 tpmmcmr0;
2051 u8 res_180[12];
2052 u32 tpmnmimr0;
2053 u8 res_190[12];
2054 u32 tmcpmaskcr0;
2055 u32 pctbenr;
2056 u32 pctbclkselr;
2057 u32 tbclkdivr;
2058 u8 res_1ac[4];
2059 u32 ttbhltcr[4];
2060 u32 clpcl10sr;
2061 u32 clpcl10setr;
2062 u32 clpcl10clrr;
2063 u32 clpcl10psr;
2064 u32 cddslpsetr;
2065 u32 cddslpclrr;
2066 u32 cdpwroksetr;
2067 u32 cdpwrokclrr;
2068 u32 cdpwrensr;
2069 u32 cddslsr;
2070 u8 res_1e8[8];
2071 u32 dslpcntcr[8];
2072 u8 res_300[3568];
2073} ccsr_rcpm_t;
2074
2075#define ctbenrl pctbenr
2076
2077#else
2078typedef struct ccsr_rcpm {
2079 u8 res1[4];
2080 u32 cdozsrl;
2081 u8 res2[4];
2082 u32 cdozcrl;
2083 u8 res3[4];
2084 u32 cnapsrl;
2085 u8 res4[4];
2086 u32 cnapcrl;
2087 u8 res5[4];
2088 u32 cdozpsrl;
2089 u8 res6[4];
2090 u32 cdozpcrl;
2091 u8 res7[4];
2092 u32 cwaitsrl;
2093 u8 res8[8];
2094 u32 powmgtcsr;
2095 u8 res9[12];
2096 u32 ippdexpcr0;
2097 u8 res10[12];
2098 u8 res11[4];
2099 u32 cpmimrl;
2100 u8 res12[4];
2101 u32 cpmcimrl;
2102 u8 res13[4];
2103 u32 cpmmcimrl;
2104 u8 res14[4];
2105 u32 cpmnmimrl;
2106 u8 res15[4];
2107 u32 ctbenrl;
2108 u8 res16[4];
2109 u32 ctbclkselrl;
2110 u8 res17[4];
2111 u32 ctbhltcrl;
2112 u8 res18[0xf68];
2113} ccsr_rcpm_t;
2114#endif
2115
2116#else
2117typedef struct ccsr_gur {
2118 u32 porpllsr;
2119#ifdef CONFIG_MPC8536
2120#define MPC85xx_PORPLLSR_DDR_RATIO 0x3e000000
2121#define MPC85xx_PORPLLSR_DDR_RATIO_SHIFT 25
2122#elif defined(CONFIG_PPC_C29X)
2123#define MPC85xx_PORPLLSR_DDR_RATIO 0x00003f00
2124#define MPC85xx_PORPLLSR_DDR_RATIO_SHIFT (9 - ((gur->pordevsr2 \
2125 & MPC85xx_PORDEVSR2_DDR_SPD_0) \
2126 >> MPC85xx_PORDEVSR2_DDR_SPD_0_SHIFT))
2127#else
2128#if defined(CONFIG_BSC9131) || defined(CONFIG_BSC9132)
2129#define MPC85xx_PORPLLSR_DDR_RATIO 0x00003f00
2130#else
2131#define MPC85xx_PORPLLSR_DDR_RATIO 0x00003e00
2132#endif
2133#define MPC85xx_PORPLLSR_DDR_RATIO_SHIFT 9
2134#endif
2135#define MPC85xx_PORPLLSR_QE_RATIO 0x3e000000
2136#define MPC85xx_PORPLLSR_QE_RATIO_SHIFT 25
2137#define MPC85xx_PORPLLSR_PLAT_RATIO 0x0000003e
2138#define MPC85xx_PORPLLSR_PLAT_RATIO_SHIFT 1
2139 u32 porbmsr;
2140#define MPC85xx_PORBMSR_HA 0x00070000
2141#define MPC85xx_PORBMSR_HA_SHIFT 16
2142#define MPC85xx_PORBMSR_ROMLOC_SHIFT 24
2143#define PORBMSR_ROMLOC_SPI 0x6
2144#define PORBMSR_ROMLOC_SDHC 0x7
2145#define PORBMSR_ROMLOC_NAND_2K 0x9
2146#define PORBMSR_ROMLOC_NOR 0xf
2147 u32 porimpscr;
2148 u32 pordevsr;
2149#if defined(CONFIG_P1017) || defined(CONFIG_P1023)
2150#define MPC85xx_PORDEVSR_SGMII1_DIS 0x10000000
2151#define MPC85xx_PORDEVSR_SGMII2_DIS 0x08000000
2152#define MPC85xx_PORDEVSR_TSEC1_PRTC 0x02000000
2153#else
2154#define MPC85xx_PORDEVSR_SGMII1_DIS 0x20000000
2155#define MPC85xx_PORDEVSR_SGMII2_DIS 0x10000000
2156#endif
2157#define MPC85xx_PORDEVSR_SGMII3_DIS 0x08000000
2158#define MPC85xx_PORDEVSR_SGMII4_DIS 0x04000000
2159#define MPC85xx_PORDEVSR_SRDS2_IO_SEL 0x38000000
2160#define MPC85xx_PORDEVSR_PCI1 0x00800000
2161#if defined(CONFIG_P1013) || defined(CONFIG_P1022)
2162#define MPC85xx_PORDEVSR_IO_SEL 0x007c0000
2163#define MPC85xx_PORDEVSR_IO_SEL_SHIFT 18
2164#elif defined(CONFIG_P1017) || defined(CONFIG_P1023)
2165#define MPC85xx_PORDEVSR_IO_SEL 0x00600000
2166#define MPC85xx_PORDEVSR_IO_SEL_SHIFT 21
2167#else
2168#if defined(CONFIG_P1010)
2169#define MPC85xx_PORDEVSR_IO_SEL 0x00600000
2170#define MPC85xx_PORDEVSR_IO_SEL_SHIFT 21
2171#elif defined(CONFIG_BSC9132)
2172#define MPC85xx_PORDEVSR_IO_SEL 0x00FE0000
2173#define MPC85xx_PORDEVSR_IO_SEL_SHIFT 17
2174#elif defined(CONFIG_PPC_C29X)
2175#define MPC85xx_PORDEVSR_IO_SEL 0x00e00000
2176#define MPC85xx_PORDEVSR_IO_SEL_SHIFT 21
2177#else
2178#define MPC85xx_PORDEVSR_IO_SEL 0x00780000
2179#define MPC85xx_PORDEVSR_IO_SEL_SHIFT 19
2180#endif
2181#endif
2182#define MPC85xx_PORDEVSR_PCI2_ARB 0x00040000
2183#define MPC85xx_PORDEVSR_PCI1_ARB 0x00020000
2184#define MPC85xx_PORDEVSR_PCI1_PCI32 0x00010000
2185#define MPC85xx_PORDEVSR_PCI1_SPD 0x00008000
2186#define MPC85xx_PORDEVSR_PCI2_SPD 0x00004000
2187#define MPC85xx_PORDEVSR_DRAM_RTYPE 0x00000060
2188#define MPC85xx_PORDEVSR_RIO_CTLS 0x00000008
2189#define MPC85xx_PORDEVSR_RIO_DEV_ID 0x00000007
2190 u32 pordbgmsr;
2191 u32 pordevsr2;
2192#if defined(CONFIG_PPC_C29X)
2193#define MPC85xx_PORDEVSR2_DDR_SPD_0 0x00000008
2194#define MPC85xx_PORDEVSR2_DDR_SPD_0_SHIFT 3
2195#endif
2196
2197#define MPC85xx_PORDEVSR2_SEC_CFG 0x00000080
2198 u8 res1[8];
2199 u32 gpporcr;
2200 u8 res2[12];
2201#if defined(CONFIG_MPC8536)
2202 u32 gencfgr;
2203#define MPC85xx_GENCFGR_SDHC_WP_INV 0x20000000
2204#else
2205 u32 gpiocr;
2206#endif
2207 u8 res3[12];
2208#if defined(CONFIG_MPC8569)
2209 u32 plppar1;
2210 u32 plppar2;
2211 u32 plpdir1;
2212 u32 plpdir2;
2213#else
2214 u32 gpoutdr;
2215 u8 res4[12];
2216#endif
2217 u32 gpindr;
2218 u8 res5[12];
2219 u32 pmuxcr;
2220#if defined(CONFIG_P1010) || defined(CONFIG_P1014)
2221#define MPC85xx_PMUXCR_TSEC1_0_1588 0x40000000
2222#define MPC85xx_PMUXCR_TSEC1_0_RES 0xC0000000
2223#define MPC85xx_PMUXCR_TSEC1_1_1588_TRIG 0x10000000
2224#define MPC85xx_PMUXCR_TSEC1_1_GPIO_12 0x20000000
2225#define MPC85xx_PMUXCR_TSEC1_1_RES 0x30000000
2226#define MPC85xx_PMUXCR_TSEC1_2_DMA 0x04000000
2227#define MPC85xx_PMUXCR_TSEC1_2_GPIO 0x08000000
2228#define MPC85xx_PMUXCR_TSEC1_2_RES 0x0C000000
2229#define MPC85xx_PMUXCR_TSEC1_3_RES 0x01000000
2230#define MPC85xx_PMUXCR_TSEC1_3_GPIO_15 0x02000000
2231#define MPC85xx_PMUXCR_IFC_ADDR16_SDHC 0x00400000
2232#define MPC85xx_PMUXCR_IFC_ADDR16_USB 0x00800000
2233#define MPC85xx_PMUXCR_IFC_ADDR16_IFC_CS2 0x00C00000
2234#define MPC85xx_PMUXCR_IFC_ADDR17_18_SDHC 0x00100000
2235#define MPC85xx_PMUXCR_IFC_ADDR17_18_USB 0x00200000
2236#define MPC85xx_PMUXCR_IFC_ADDR17_18_DMA 0x00300000
2237#define MPC85xx_PMUXCR_IFC_ADDR19_SDHC_DATA 0x00040000
2238#define MPC85xx_PMUXCR_IFC_ADDR19_USB 0x00080000
2239#define MPC85xx_PMUXCR_IFC_ADDR19_DMA 0x000C0000
2240#define MPC85xx_PMUXCR_IFC_ADDR20_21_SDHC_DATA 0x00010000
2241#define MPC85xx_PMUXCR_IFC_ADDR20_21_USB 0x00020000
2242#define MPC85xx_PMUXCR_IFC_ADDR20_21_RES 0x00030000
2243#define MPC85xx_PMUXCR_IFC_ADDR22_SDHC 0x00004000
2244#define MPC85xx_PMUXCR_IFC_ADDR22_USB 0x00008000
2245#define MPC85xx_PMUXCR_IFC_ADDR22_RES 0x0000C000
2246#define MPC85xx_PMUXCR_IFC_ADDR23_SDHC 0x00001000
2247#define MPC85xx_PMUXCR_IFC_ADDR23_USB 0x00002000
2248#define MPC85xx_PMUXCR_IFC_ADDR23_RES 0x00003000
2249#define MPC85xx_PMUXCR_IFC_ADDR24_SDHC 0x00000400
2250#define MPC85xx_PMUXCR_IFC_ADDR24_USB 0x00000800
2251#define MPC85xx_PMUXCR_IFC_ADDR24_RES 0x00000C00
2252#define MPC85xx_PMUXCR_IFC_PAR_PERR_RES 0x00000300
2253#define MPC85xx_PMUXCR_IFC_PAR_PERR_USB 0x00000200
2254#define MPC85xx_PMUXCR_LCLK_RES 0x00000040
2255#define MPC85xx_PMUXCR_LCLK_USB 0x00000080
2256#define MPC85xx_PMUXCR_LCLK_IFC_CS3 0x000000C0
2257#define MPC85xx_PMUXCR_SPI_RES 0x00000030
2258#define MPC85xx_PMUXCR_SPI_GPIO 0x00000020
2259#define MPC85xx_PMUXCR_CAN1_UART 0x00000004
2260#define MPC85xx_PMUXCR_CAN1_TDM 0x00000008
2261#define MPC85xx_PMUXCR_CAN1_RES 0x0000000C
2262#define MPC85xx_PMUXCR_CAN2_UART 0x00000001
2263#define MPC85xx_PMUXCR_CAN2_TDM 0x00000002
2264#define MPC85xx_PMUXCR_CAN2_RES 0x00000003
2265#endif
2266#if defined(CONFIG_P1017) || defined(CONFIG_P1023)
2267#define MPC85xx_PMUXCR_TSEC1_1 0x10000000
2268#else
2269#define MPC85xx_PMUXCR_SD_DATA 0x80000000
2270#define MPC85xx_PMUXCR_SDHC_CD 0x40000000
2271#define MPC85xx_PMUXCR_SDHC_WP 0x20000000
2272#define MPC85xx_PMUXCR_ELBC_OFF_USB2_ON 0x01000000
2273#define MPC85xx_PMUXCR_TDM_ENA 0x00800000
2274#define MPC85xx_PMUXCR_QE0 0x00008000
2275#define MPC85xx_PMUXCR_QE1 0x00004000
2276#define MPC85xx_PMUXCR_QE2 0x00002000
2277#define MPC85xx_PMUXCR_QE3 0x00001000
2278#define MPC85xx_PMUXCR_QE4 0x00000800
2279#define MPC85xx_PMUXCR_QE5 0x00000400
2280#define MPC85xx_PMUXCR_QE6 0x00000200
2281#define MPC85xx_PMUXCR_QE7 0x00000100
2282#define MPC85xx_PMUXCR_QE8 0x00000080
2283#define MPC85xx_PMUXCR_QE9 0x00000040
2284#define MPC85xx_PMUXCR_QE10 0x00000020
2285#define MPC85xx_PMUXCR_QE11 0x00000010
2286#define MPC85xx_PMUXCR_QE12 0x00000008
2287#endif
2288#if defined(CONFIG_P1013) || defined(CONFIG_P1022)
2289#define MPC85xx_PMUXCR_TDM_MASK 0x0001cc00
2290#define MPC85xx_PMUXCR_TDM 0x00014800
2291#define MPC85xx_PMUXCR_SPI_MASK 0x00600000
2292#define MPC85xx_PMUXCR_SPI 0x00000000
2293#endif
2294#if defined(CONFIG_BSC9131)
2295#define MPC85xx_PMUXCR_TSEC2_DMA_GPIO_IRQ 0x40000000
2296#define MPC85xx_PMUXCR_TSEC2_USB 0xC0000000
2297#define MPC85xx_PMUXCR_TSEC2_1588_PPS 0x10000000
2298#define MPC85xx_PMUXCR_TSEC2_1588_RSVD 0x30000000
2299#define MPC85xx_PMUXCR_IFC_AD_GPIO 0x04000000
2300#define MPC85xx_PMUXCR_IFC_AD_GPIO_MASK 0x0C000000
2301#define MPC85xx_PMUXCR_IFC_AD15_GPIO 0x01000000
2302#define MPC85xx_PMUXCR_IFC_AD15_TIMER2 0x02000000
2303#define MPC85xx_PMUXCR_IFC_AD16_GPO8 0x00400000
2304#define MPC85xx_PMUXCR_IFC_AD16_MSRCID0 0x00800000
2305#define MPC85xx_PMUXCR_IFC_AD17_GPO 0x00100000
2306#define MPC85xx_PMUXCR_IFC_AD17_GPO_MASK 0x00300000
2307#define MPC85xx_PMUXCR_IFC_AD17_MSRCID_DSP 0x00200000
2308#define MPC85xx_PMUXCR_IFC_CS2_GPO65 0x00040000
2309#define MPC85xx_PMUXCR_IFC_CS2_DSP_TDI 0x00080000
2310#define MPC85xx_PMUXCR_SDHC_USIM 0x00010000
2311#define MPC85xx_PMUXCR_SDHC_TDM_RFS_RCK 0x00020000
2312#define MPC85xx_PMUXCR_SDHC_GPIO77 0x00030000
2313#define MPC85xx_PMUXCR_SDHC_RESV 0x00004000
2314#define MPC85xx_PMUXCR_SDHC_TDM_TXD_RXD 0x00008000
2315#define MPC85xx_PMUXCR_SDHC_GPIO_TIMER4 0x0000C000
2316#define MPC85xx_PMUXCR_USB_CLK_UART_SIN 0x00001000
2317#define MPC85xx_PMUXCR_USB_CLK_GPIO69 0x00002000
2318#define MPC85xx_PMUXCR_USB_CLK_TIMER3 0x00003000
2319#define MPC85xx_PMUXCR_USB_UART_GPIO0 0x00000400
2320#define MPC85xx_PMUXCR_USB_RSVD 0x00000C00
2321#define MPC85xx_PMUXCR_USB_GPIO62_TRIG_IN 0x00000800
2322#define MPC85xx_PMUXCR_USB_D1_2_IIC2_SDA_SCL 0x00000100
2323#define MPC85xx_PMUXCR_USB_D1_2_GPIO71_72 0x00000200
2324#define MPC85xx_PMUXCR_USB_D1_2_RSVD 0x00000300
2325#define MPC85xx_PMUXCR_USB_DIR_GPIO2 0x00000040
2326#define MPC85xx_PMUXCR_USB_DIR_TIMER1 0x00000080
2327#define MPC85xx_PMUXCR_USB_DIR_MCP_B 0x000000C0
2328#define MPC85xx_PMUXCR_SPI1_UART3 0x00000010
2329#define MPC85xx_PMUXCR_SPI1_SIM 0x00000020
2330#define MPC85xx_PMUXCR_SPI1_CKSTP_IN_GPO74 0x00000030
2331#define MPC85xx_PMUXCR_SPI1_CS2_CKSTP_OUT_B 0x00000004
2332#define MPC85xx_PMUXCR_SPI1_CS2_dbg_adi1_rxen 0x00000008
2333#define MPC85xx_PMUXCR_SPI1_CS2_GPO75 0x0000000C
2334#define MPC85xx_PMUXCR_SPI1_CS3_ANT_TCXO_PWM 0x00000001
2335#define MPC85xx_PMUXCR_SPI1_CS3_dbg_adi2_rxen 0x00000002
2336#define MPC85xx_PMUXCR_SPI1_CS3_GPO76 0x00000003
2337#endif
2338#ifdef CONFIG_BSC9132
2339#define MPC85xx_PMUXCR0_SIM_SEL_MASK 0x0003b000
2340#define MPC85xx_PMUXCR0_SIM_SEL 0x00014000
2341#endif
2342#if defined(CONFIG_PPC_C29X)
2343#define MPC85xx_PMUXCR_SPI_MASK 0x00000300
2344#define MPC85xx_PMUXCR_SPI 0x00000000
2345#define MPC85xx_PMUXCR_SPI_GPIO 0x00000100
2346#endif
2347 u32 pmuxcr2;
2348#if defined(CONFIG_P1010) || defined(CONFIG_P1014)
2349#define MPC85xx_PMUXCR2_UART_GPIO 0x40000000
2350#define MPC85xx_PMUXCR2_UART_TDM 0x80000000
2351#define MPC85xx_PMUXCR2_UART_RES 0xC0000000
2352#define MPC85xx_PMUXCR2_IRQ2_TRIG_IN 0x10000000
2353#define MPC85xx_PMUXCR2_IRQ2_RES 0x30000000
2354#define MPC85xx_PMUXCR2_IRQ3_SRESET 0x04000000
2355#define MPC85xx_PMUXCR2_IRQ3_RES 0x0C000000
2356#define MPC85xx_PMUXCR2_GPIO01_DRVVBUS 0x01000000
2357#define MPC85xx_PMUXCR2_GPIO01_RES 0x03000000
2358#define MPC85xx_PMUXCR2_GPIO23_CKSTP 0x00400000
2359#define MPC85xx_PMUXCR2_GPIO23_RES 0x00800000
2360#define MPC85xx_PMUXCR2_GPIO23_USB 0x00C00000
2361#define MPC85xx_PMUXCR2_GPIO4_MCP 0x00100000
2362#define MPC85xx_PMUXCR2_GPIO4_RES 0x00200000
2363#define MPC85xx_PMUXCR2_GPIO4_CLK_OUT 0x00300000
2364#define MPC85xx_PMUXCR2_GPIO5_UDE 0x00040000
2365#define MPC85xx_PMUXCR2_GPIO5_RES 0x00080000
2366#define MPC85xx_PMUXCR2_READY_ASLEEP 0x00020000
2367#define MPC85xx_PMUXCR2_DDR_ECC_MUX 0x00010000
2368#define MPC85xx_PMUXCR2_DEBUG_PORT_EXPOSE 0x00008000
2369#define MPC85xx_PMUXCR2_POST_EXPOSE 0x00004000
2370#define MPC85xx_PMUXCR2_DEBUG_MUX_SEL_USBPHY 0x00002000
2371#define MPC85xx_PMUXCR2_PLL_LKDT_EXPOSE 0x00001000
2372#endif
2373#if defined(CONFIG_P1013) || defined(CONFIG_P1022)
2374#define MPC85xx_PMUXCR2_ETSECUSB_MASK 0x001f8000
2375#define MPC85xx_PMUXCR2_USB 0x00150000
2376#endif
2377#if defined(CONFIG_BSC9131) || defined(CONFIG_BSC9132)
2378#if defined(CONFIG_BSC9131)
2379#define MPC85xx_PMUXCR2_UART_CTS_B0_SIM_PD 0X40000000
2380#define MPC85xx_PMUXCR2_UART_CTS_B0_DSP_TMS 0X80000000
2381#define MPC85xx_PMUXCR2_UART_CTS_B0_GPIO42 0xC0000000
2382#define MPC85xx_PMUXCR2_UART_RTS_B0_PWM2 0x10000000
2383#define MPC85xx_PMUXCR2_UART_RTS_B0_DSP_TCK 0x20000000
2384#define MPC85xx_PMUXCR2_UART_RTS_B0_GPIO43 0x30000000
2385#define MPC85xx_PMUXCR2_UART_CTS_B1_SIM_PD 0x04000000
2386#define MPC85xx_PMUXCR2_UART_CTS_B1_SRESET_B 0x08000000
2387#define MPC85xx_PMUXCR2_UART_CTS_B1_GPIO44 0x0C000000
2388#define MPC85xx_PMUXCR2_UART_RTS_B1_PPS_LED 0x01000000
2389#define MPC85xx_PMUXCR2_UART_RTS_B1_RSVD 0x02000000
2390#define MPC85xx_PMUXCR2_UART_RTS_B1_GPIO45 0x03000000
2391#define MPC85xx_PMUXCR2_TRIG_OUT_ASLEEP 0x00400000
2392#define MPC85xx_PMUXCR2_TRIG_OUT_DSP_TRST_B 0x00800000
2393#define MPC85xx_PMUXCR2_ANT1_TIMER5 0x00100000
2394#define MPC85xx_PMUXCR2_ANT1_TSEC_1588 0x00200000
2395#define MPC85xx_PMUXCR2_ANT1_GPIO95_19 0x00300000
2396#define MPC85xx_PMUXCR2_ANT1_TX_RX_FRAME_MAX3_LOCK 0x00040000
2397#define MPC85xx_PMUXCR2_ANT1_TX_RX_FRAME_RSVD 0x00080000
2398#define MPC85xx_PMUXCR2_ANT1_TX_RX_FRAME_GPIO80_20 0x000C0000
2399#define MPC85xx_PMUXCR2_ANT1_DIO0_3_SPI3_CS0 0x00010000
2400#define MPC85xx_PMUXCR2_ANT1_DIO0_3_ANT2_DO_3 0x00020000
2401#define MPC85xx_PMUXCR2_ANT1_DIO0_3_GPIO81_84 0x00030000
2402#define MPC85xx_PMUXCR2_ANT1_DIO4_7_SPI4 0x00004000
2403#define MPC85xx_PMUXCR2_ANT1_DIO4_7_ANT2_DO4_7 0x00008000
2404#define MPC85xx_PMUXCR2_ANT1_DIO4_7_GPIO85_88 0x0000C000
2405#define MPC85xx_PMUXCR2_ANT1_DIO8_9_MAX2_1_LOCK 0x00001000
2406#define MPC85xx_PMUXCR2_ANT1_DIO8_9_ANT2_DO8_9 0x00002000
2407#define MPC85xx_PMUXCR2_ANT1_DIO8_9_GPIO21_22 0x00003000
2408#define MPC85xx_PMUXCR2_ANT1_DIO10_11_TIMER6_7 0x00000400
2409#define MPC85xx_PMUXCR2_ANT1_DIO10_11_ANT2_DO10_11 0x00000800
2410#define MPC85xx_PMUXCR2_ANT1_DIO10_11_GPIO23_24 0x00000C00
2411#define MPC85xx_PMUXCR2_ANT2_RSVD 0x00000100
2412#define MPC85xx_PMUXCR2_ANT2_GPO90_91_DMA 0x00000300
2413#define MPC85xx_PMUXCR2_ANT2_ENABLE_DIO0_10_USB 0x00000040
2414#define MPC85xx_PMUXCR2_ANT2_ENABLE_DIO0_10_GPIO 0x000000C0
2415#define MPC85xx_PMUXCR2_ANT2_DIO11_RSVD 0x00000010
2416#define MPC85xx_PMUXCR2_ANT2_DIO11_TIMER8 0x00000020
2417#define MPC85xx_PMUXCR2_ANT2_DIO11_GPIO61 0x00000030
2418#define MPC85xx_PMUXCR2_ANT3_AGC_GPO53 0x00000004
2419#define MPC85xx_PMUXCR2_ANT3_DO_TDM 0x00000001
2420#define MPC85xx_PMUXCR2_ANT3_DO_GPIO46_49 0x00000002
2421#endif
2422 u32 pmuxcr3;
2423#if defined(CONFIG_BSC9131)
2424#define MPC85xx_PMUXCR3_ANT3_DO4_5_TDM 0x40000000
2425#define MPC85xx_PMUXCR3_ANT3_DO4_5_GPIO_50_51 0x80000000
2426#define MPC85xx_PMUXCR3_ANT3_DO6_7_TRIG_IN_SRESET_B 0x10000000
2427#define MPC85xx_PMUXCR3_ANT3_DO6_7_GPIO_52_53 0x20000000
2428#define MPC85xx_PMUXCR3_ANT3_DO8_MCP_B 0x04000000
2429#define MPC85xx_PMUXCR3_ANT3_DO8_GPIO54 0x08000000
2430#define MPC85xx_PMUXCR3_ANT3_DO9_10_CKSTP_IN_OUT 0x01000000
2431#define MPC85xx_PMUXCR3_ANT3_DO9_10_GPIO55_56 0x02000000
2432#define MPC85xx_PMUXCR3_ANT3_DO11_IRQ_OUT 0x00400000
2433#define MPC85xx_PMUXCR3_ANT3_DO11_GPIO57 0x00800000
2434#define MPC85xx_PMUXCR3_SPI2_CS2_GPO93 0x00100000
2435#define MPC85xx_PMUXCR3_SPI2_CS3_GPO94 0x00040000
2436#define MPC85xx_PMUXCR3_ANT2_AGC_RSVD 0x00010000
2437#define MPC85xx_PMUXCR3_ANT2_GPO89 0x00030000
2438#endif
2439#ifdef CONFIG_BSC9132
2440#define MPC85xx_PMUXCR3_USB_SEL_MASK 0x0000ff00
2441#define MPC85xx_PMUXCR3_UART2_SEL 0x00005000
2442#define MPC85xx_PMUXCR3_UART3_SEL_MASK 0xc0000000
2443#define MPC85xx_PMUXCR3_UART3_SEL 0x40000000
2444#endif
2445 u32 pmuxcr4;
2446#else
2447 u8 res6[8];
2448#endif
2449 u32 devdisr;
2450#define MPC85xx_DEVDISR_PCI1 0x80000000
2451#define MPC85xx_DEVDISR_PCI2 0x40000000
2452#define MPC85xx_DEVDISR_PCIE 0x20000000
2453#define MPC85xx_DEVDISR_LBC 0x08000000
2454#define MPC85xx_DEVDISR_PCIE2 0x04000000
2455#define MPC85xx_DEVDISR_PCIE3 0x02000000
2456#define MPC85xx_DEVDISR_SEC 0x01000000
2457#define MPC85xx_DEVDISR_SRIO 0x00080000
2458#define MPC85xx_DEVDISR_RMSG 0x00040000
2459#define MPC85xx_DEVDISR_DDR 0x00010000
2460#define MPC85xx_DEVDISR_CPU 0x00008000
2461#define MPC85xx_DEVDISR_CPU0 MPC85xx_DEVDISR_CPU
2462#define MPC85xx_DEVDISR_TB 0x00004000
2463#define MPC85xx_DEVDISR_TB0 MPC85xx_DEVDISR_TB
2464#define MPC85xx_DEVDISR_CPU1 0x00002000
2465#define MPC85xx_DEVDISR_TB1 0x00001000
2466#define MPC85xx_DEVDISR_DMA 0x00000400
2467#define MPC85xx_DEVDISR_TSEC1 0x00000080
2468#define MPC85xx_DEVDISR_TSEC2 0x00000040
2469#define MPC85xx_DEVDISR_TSEC3 0x00000020
2470#define MPC85xx_DEVDISR_TSEC4 0x00000010
2471#define MPC85xx_DEVDISR_I2C 0x00000004
2472#define MPC85xx_DEVDISR_DUART 0x00000002
2473 u8 res7[12];
2474 u32 powmgtcsr;
2475 u8 res8[12];
2476 u32 mcpsumr;
2477 u8 res9[12];
2478 u32 pvr;
2479 u32 svr;
2480 u8 res10[8];
2481 u32 rstcr;
2482#if defined(CONFIG_MPC8568)||defined(CONFIG_MPC8569)
2483 u8 res11a[76];
2484 par_io_t qe_par_io[7];
2485 u8 res11b[1600];
2486#elif defined(CONFIG_P1012) || defined(CONFIG_P1021) || defined(CONFIG_P1025)
2487 u8 res11a[12];
2488 u32 iovselsr;
2489 u8 res11b[60];
2490 par_io_t qe_par_io[3];
2491 u8 res11c[1496];
2492#else
2493 u8 res11a[1868];
2494#endif
2495 u32 clkdvdr;
2496 u8 res12[1532];
2497 u32 clkocr;
2498 u8 res13[12];
2499 u32 ddrdllcr;
2500 u8 res14[12];
2501 u32 lbcdllcr;
2502#if defined(CONFIG_BSC9131)
2503 u8 res15[12];
2504 u32 halt_req_mask;
2505#define HALTED_TO_HALT_REQ_MASK_0 0x80000000
2506 u8 res18[232];
2507#else
2508 u8 res15[248];
2509#endif
2510 u32 lbiuiplldcr0;
2511 u32 lbiuiplldcr1;
2512 u32 ddrioovcr;
2513 u32 tsec12ioovcr;
2514 u32 tsec34ioovcr;
2515 u8 res16[52];
2516 u32 sdhcdcr;
2517 u8 res17[61592];
2518} ccsr_gur_t;
2519#endif
2520
2521#define SDHCDCR_CD_INV 0x80000000
2522
2523#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
2524#define MAX_SERDES 4
2525#define SRDS_MAX_LANES 8
2526#define SRDS_MAX_BANK 2
2527typedef struct serdes_corenet {
2528 struct {
2529 u32 rstctl;
2530#define SRDS_RSTCTL_RST 0x80000000
2531#define SRDS_RSTCTL_RSTDONE 0x40000000
2532#define SRDS_RSTCTL_RSTERR 0x20000000
2533#define SRDS_RSTCTL_SWRST 0x10000000
2534#define SRDS_RSTCTL_SDEN 0x00000020
2535#define SRDS_RSTCTL_SDRST_B 0x00000040
2536#define SRDS_RSTCTL_PLLRST_B 0x00000080
2537#define SRDS_RSTCTL_RSTERR_SHIFT 29
2538 u32 pllcr0;
2539#define SRDS_PLLCR0_POFF 0x80000000
2540#define SRDS_PLLCR0_RFCK_SEL_MASK 0x70000000
2541#define SRDS_PLLCR0_RFCK_SEL_100 0x00000000
2542#define SRDS_PLLCR0_RFCK_SEL_125 0x10000000
2543#define SRDS_PLLCR0_RFCK_SEL_156_25 0x20000000
2544#define SRDS_PLLCR0_RFCK_SEL_150 0x30000000
2545#define SRDS_PLLCR0_RFCK_SEL_161_13 0x40000000
2546#define SRDS_PLLCR0_RFCK_SEL_122_88 0x50000000
2547#define SRDS_PLLCR0_PLL_LCK 0x00800000
2548#define SRDS_PLLCR0_DCBIAS_OUT_EN 0x02000000
2549#define SRDS_PLLCR0_FRATE_SEL_MASK 0x000f0000
2550#define SRDS_PLLCR0_FRATE_SEL_5 0x00000000
2551#define SRDS_PLLCR0_FRATE_SEL_4_9152 0x00030000
2552#define SRDS_PLLCR0_FRATE_SEL_3_75 0x00050000
2553#define SRDS_PLLCR0_FRATE_SEL_5_15 0x00060000
2554#define SRDS_PLLCR0_FRATE_SEL_4 0x00070000
2555#define SRDS_PLLCR0_FRATE_SEL_3_125 0x00090000
2556#define SRDS_PLLCR0_FRATE_SEL_3_0 0x000a0000
2557#define SRDS_PLLCR0_FRATE_SEL_3_072 0x000c0000
2558#define SRDS_PLLCR0_DCBIAS_OVRD 0x000000F0
2559#define SRDS_PLLCR0_DCBIAS_OVRD_SHIFT 4
2560 u32 pllcr1;
2561#define SRDS_PLLCR1_BCAP_EN 0x20000000
2562#define SRDS_PLLCR1_BCAP_OVD 0x10000000
2563#define SRDS_PLLCR1_PLL_FCAP 0x001F8000
2564#define SRDS_PLLCR1_PLL_FCAP_SHIFT 15
2565#define SRDS_PLLCR1_PLL_BWSEL 0x08000000
2566#define SRDS_PLLCR1_BYP_CAL 0x02000000
2567 u32 pllsr2;
2568#define SRDS_PLLSR2_BCAP_EN 0x00800000
2569#define SRDS_PLLSR2_BCAP_EN_SHIFT 23
2570#define SRDS_PLLSR2_FCAP 0x003F0000
2571#define SRDS_PLLSR2_FCAP_SHIFT 16
2572#define SRDS_PLLSR2_DCBIAS 0x000F0000
2573#define SRDS_PLLSR2_DCBIAS_SHIFT 16
2574 u32 pllcr3;
2575 u32 pllcr4;
2576 u8 res_18[0x20-0x18];
2577 } bank[2];
2578 u8 res_40[0x90-0x40];
2579 u32 srdstcalcr;
2580 u8 res_94[0xa0-0x94];
2581 u32 srdsrcalcr;
2582 u8 res_a4[0xb0-0xa4];
2583 u32 srdsgr0;
2584 u8 res_b4[0xe0-0xb4];
2585 u32 srdspccr0;
2586 u32 srdspccr1;
2587 u32 srdspccr2;
2588 u32 srdspccr3;
2589 u32 srdspccr4;
2590 u8 res_f4[0x100-0xf4];
2591 struct {
2592 u32 lnpssr;
2593 u8 res_104[0x120-0x104];
2594 } srdslnpssr[8];
2595 u8 res_200[0x800-0x200];
2596 struct {
2597 u32 gcr0;
2598 u32 gcr1;
2599 u32 gcr2;
2600 u32 res_80c;
2601 u32 recr0;
2602 u32 res_814;
2603 u32 tecr0;
2604 u32 res_81c;
2605 u32 ttlcr0;
2606 u8 res_824[0x840-0x824];
2607 } lane[8];
2608 u8 res_a00[0x1000-0xa00];
2609} serdes_corenet_t;
2610
2611#else
2612
2613#define SRDS_MAX_LANES 18
2614#define SRDS_MAX_BANK 3
2615typedef struct serdes_corenet {
2616 struct {
2617 u32 rstctl;
2618#define SRDS_RSTCTL_RST 0x80000000
2619#define SRDS_RSTCTL_RSTDONE 0x40000000
2620#define SRDS_RSTCTL_RSTERR 0x20000000
2621#define SRDS_RSTCTL_SDPD 0x00000020
2622 u32 pllcr0;
2623#define SRDS_PLLCR0_RFCK_SEL_MASK 0x70000000
2624#define SRDS_PLLCR0_PVCOCNT_EN 0x02000000
2625#define SRDS_PLLCR0_RFCK_SEL_100 0x00000000
2626#define SRDS_PLLCR0_RFCK_SEL_125 0x10000000
2627#define SRDS_PLLCR0_RFCK_SEL_156_25 0x20000000
2628#define SRDS_PLLCR0_RFCK_SEL_150 0x30000000
2629#define SRDS_PLLCR0_RFCK_SEL_161_13 0x40000000
2630#define SRDS_PLLCR0_FRATE_SEL_MASK 0x00030000
2631#define SRDS_PLLCR0_FRATE_SEL_5 0x00000000
2632#define SRDS_PLLCR0_FRATE_SEL_6_25 0x00010000
2633 u32 pllcr1;
2634#define SRDS_PLLCR1_PLL_BWSEL 0x08000000
2635 u32 res[5];
2636 } bank[3];
2637 u32 res1[12];
2638 u32 srdstcalcr;
2639 u32 res2[3];
2640 u32 srdsrcalcr;
2641 u32 res3[3];
2642 u32 srdsgr0;
2643 u32 res4[11];
2644 u32 srdspccr0;
2645 u32 srdspccr1;
2646 u32 srdspccr2;
2647#define SRDS_PCCR2_RST_XGMII1 0x00800000
2648#define SRDS_PCCR2_RST_XGMII2 0x00400000
2649 u32 res5[197];
2650 struct serdes_lane {
2651 u32 gcr0;
2652#define SRDS_GCR0_RRST 0x00400000
2653#define SRDS_GCR0_1STLANE 0x00010000
2654#define SRDS_GCR0_UOTHL 0x00100000
2655 u32 gcr1;
2656#define SRDS_GCR1_REIDL_CTL_MASK 0x001f0000
2657#define SRDS_GCR1_REIDL_CTL_PCIE 0x00100000
2658#define SRDS_GCR1_REIDL_CTL_SRIO 0x00000000
2659#define SRDS_GCR1_REIDL_CTL_SGMII 0x00040000
2660#define SRDS_GCR1_OPAD_CTL 0x04000000
2661 u32 res1[4];
2662 u32 tecr0;
2663#define SRDS_TECR0_TEQ_TYPE_MASK 0x30000000
2664#define SRDS_TECR0_TEQ_TYPE_2LVL 0x10000000
2665 u32 res3;
2666 u32 ttlcr0;
2667#define SRDS_TTLCR0_FLT_SEL_MASK 0x3f000000
2668#define SRDS_TTLCR0_FLT_SEL_KFR_26 0x10000000
2669#define SRDS_TTLCR0_FLT_SEL_KPH_28 0x08000000
2670#define SRDS_TTLCR0_FLT_SEL_750PPM 0x03000000
2671#define SRDS_TTLCR0_PM_DIS 0x00004000
2672#define SRDS_TTLCR0_FREQOVD_EN 0x00000001
2673 u32 res4[7];
2674 } lane[24];
2675 u32 res6[384];
2676} serdes_corenet_t;
2677#endif
2678
2679enum {
2680 FSL_SRDS_B1_LANE_A = 0,
2681 FSL_SRDS_B1_LANE_B = 1,
2682 FSL_SRDS_B1_LANE_C = 2,
2683 FSL_SRDS_B1_LANE_D = 3,
2684 FSL_SRDS_B1_LANE_E = 4,
2685 FSL_SRDS_B1_LANE_F = 5,
2686 FSL_SRDS_B1_LANE_G = 6,
2687 FSL_SRDS_B1_LANE_H = 7,
2688 FSL_SRDS_B1_LANE_I = 8,
2689 FSL_SRDS_B1_LANE_J = 9,
2690 FSL_SRDS_B2_LANE_A = 16,
2691 FSL_SRDS_B2_LANE_B = 17,
2692 FSL_SRDS_B2_LANE_C = 18,
2693 FSL_SRDS_B2_LANE_D = 19,
2694 FSL_SRDS_B3_LANE_A = 20,
2695 FSL_SRDS_B3_LANE_B = 21,
2696 FSL_SRDS_B3_LANE_C = 22,
2697 FSL_SRDS_B3_LANE_D = 23,
2698};
2699
2700typedef struct ccsr_qman {
2701#ifdef CONFIG_SYS_FSL_QMAN_V3
2702 u8 res0[0x200];
2703#else
2704 struct {
2705 u32 qcsp_lio_cfg;
2706 u32 qcsp_io_cfg;
2707 u32 res;
2708 u32 qcsp_dd_cfg;
2709 } qcsp[32];
2710#endif
2711
2712 u8 res[0xbf8 - 0x200];
2713 u32 ip_rev_1;
2714 u32 ip_rev_2;
2715 u32 fqd_bare;
2716 u32 fqd_bar;
2717 u8 res1[0x8];
2718 u32 fqd_ar;
2719 u8 res2[0xc];
2720 u32 pfdr_bare;
2721 u32 pfdr_bar;
2722 u8 res3[0x8];
2723 u32 pfdr_ar;
2724 u8 res4[0x4c];
2725 u32 qcsp_bare;
2726 u32 qcsp_bar;
2727 u8 res5[0x78];
2728 u32 ci_sched_cfg;
2729 u32 srcidr;
2730 u32 liodnr;
2731 u8 res6[4];
2732 u32 ci_rlm_cfg;
2733 u32 ci_rlm_avg;
2734 u8 res7[0x2e8];
2735#ifdef CONFIG_SYS_FSL_QMAN_V3
2736 struct {
2737 u32 qcsp_lio_cfg;
2738 u32 qcsp_io_cfg;
2739 u32 res;
2740 u32 qcsp_dd_cfg;
2741 } qcsp[50];
2742#endif
2743} ccsr_qman_t;
2744
2745typedef struct ccsr_bman {
2746
2747 u8 res[0xbf8];
2748 u32 ip_rev_1;
2749 u32 ip_rev_2;
2750 u32 fbpr_bare;
2751 u32 fbpr_bar;
2752 u8 res1[0x8];
2753 u32 fbpr_ar;
2754 u8 res2[0xf0];
2755 u32 srcidr;
2756 u32 liodnr;
2757 u8 res7[0x2f4];
2758} ccsr_bman_t;
2759
2760typedef struct ccsr_pme {
2761 u8 res0[0x804];
2762 u32 liodnbr;
2763 u8 res1[0x1f8];
2764 u32 srcidr;
2765 u8 res2[8];
2766 u32 liodnr;
2767 u8 res3[0x1e8];
2768 u32 pm_ip_rev_1;
2769 u32 pm_ip_rev_2;
2770 u8 res4[0x400];
2771} ccsr_pme_t;
2772
2773#ifdef CONFIG_SYS_FSL_RAID_ENGINE
2774struct ccsr_raide {
2775 u8 res0[0x543];
2776 u32 liodnbr;
2777 u8 res1[0xab8];
2778 struct {
2779 struct {
2780 u32 cfg0;
2781 u32 cfg1;
2782 u8 res1[0x3f8];
2783 } ring[2];
2784 u8 res[0x800];
2785 } jq[2];
2786};
2787#endif
2788
2789#ifdef CONFIG_SYS_DPAA_RMAN
2790struct ccsr_rman {
2791 u8 res0[0xf64];
2792 u32 mmliodnbr;
2793 u32 mmitar;
2794 u32 mmitdr;
2795 u8 res4[0x1f090];
2796};
2797#endif
2798
2799#ifdef CONFIG_SYS_PMAN
2800struct ccsr_pman {
2801 u8 res_00[0x40];
2802 u32 poes1;
2803 u32 poes2;
2804 u32 poeah;
2805 u32 poeal;
2806 u8 res_50[0x50];
2807 u32 pr1;
2808 u32 pr2;
2809 u8 res_a8[0x8];
2810 u32 pcap;
2811 u8 res_b4[0xc];
2812 u32 pc1;
2813 u32 pc2;
2814 u32 pc3;
2815 u32 pc4;
2816 u32 pc5;
2817 u32 pc6;
2818 u8 res_d8[0x8];
2819 u32 ppa1;
2820 u32 ppa2;
2821 u8 res_e8[0x8];
2822 u32 pics;
2823 u8 res_f4[0xf0c];
2824};
2825#endif
2826#ifdef CONFIG_SYS_FSL_SFP_VER_3_0
2827struct ccsr_sfp_regs {
2828 u32 ospr;
2829 u32 reserved0[14];
2830 u32 srk_hash[8];
2831 u32 oem_uid;
2832 u8 reserved2[0x04];
2833 u32 ovpr;
2834 u8 reserved4[0x08];
2835 u32 fsl_uid;
2836 u8 reserved5[0x04];
2837 u32 fsl_spfr0;
2838 u32 fsl_spfr1;
2839};
2840#endif
2841
2842#ifdef CONFIG_FSL_CORENET
2843#define CONFIG_SYS_FSL_CORENET_CCM_OFFSET 0x0000
2844#ifdef CONFIG_SYS_PMAN
2845#define CONFIG_SYS_FSL_CORENET_PMAN1_OFFSET 0x4000
2846#define CONFIG_SYS_FSL_CORENET_PMAN2_OFFSET 0x5000
2847#define CONFIG_SYS_FSL_CORENET_PMAN3_OFFSET 0x6000
2848#endif
2849#define CONFIG_SYS_MPC8xxx_DDR_OFFSET 0x8000
2850#define CONFIG_SYS_MPC8xxx_DDR2_OFFSET 0x9000
2851#define CONFIG_SYS_MPC8xxx_DDR3_OFFSET 0xA000
2852#define CONFIG_SYS_FSL_CORENET_CLK_OFFSET 0xE1000
2853#define CONFIG_SYS_FSL_CORENET_RCPM_OFFSET 0xE2000
2854#ifdef CONFIG_SYS_FSL_SFP_VER_3_0
2855
2856
2857#define CONFIG_SYS_OSPR_OFFSET 0x200
2858#define CONFIG_SYS_SFP_OFFSET (0xE8000 + CONFIG_SYS_OSPR_OFFSET)
2859#else
2860#define CONFIG_SYS_SFP_OFFSET 0xE8000
2861#endif
2862#define CONFIG_SYS_FSL_CORENET_SERDES_OFFSET 0xEA000
2863#define CONFIG_SYS_FSL_CORENET_SERDES2_OFFSET 0xEB000
2864#define CONFIG_SYS_FSL_CORENET_SERDES3_OFFSET 0xEC000
2865#define CONFIG_SYS_FSL_CORENET_SERDES4_OFFSET 0xED000
2866#define CONFIG_SYS_FSL_CPC_OFFSET 0x10000
2867#define CONFIG_SYS_FSL_SCFG_OFFSET 0xFC000
2868#define CONFIG_SYS_MPC85xx_DMA1_OFFSET 0x100000
2869#define CONFIG_SYS_MPC85xx_DMA2_OFFSET 0x101000
2870#define CONFIG_SYS_MPC85xx_DMA3_OFFSET 0x102000
2871#define CONFIG_SYS_MPC85xx_DMA_OFFSET CONFIG_SYS_MPC85xx_DMA1_OFFSET
2872#define CONFIG_SYS_MPC85xx_ESPI_OFFSET 0x110000
2873#define CONFIG_SYS_MPC85xx_ESDHC_OFFSET 0x114000
2874#define CONFIG_SYS_MPC85xx_LBC_OFFSET 0x124000
2875#define CONFIG_SYS_MPC85xx_IFC_OFFSET 0x124000
2876#define CONFIG_SYS_MPC85xx_GPIO_OFFSET 0x130000
2877#define CONFIG_SYS_MPC85xx_TDM_OFFSET 0x185000
2878#define CONFIG_SYS_MPC85xx_QE_OFFSET 0x140000
2879#define CONFIG_SYS_FSL_CORENET_RMAN_OFFSET 0x1e0000
2880#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && !defined(CONFIG_PPC_B4860)\
2881 && !defined(CONFIG_PPC_B4420)
2882#define CONFIG_SYS_MPC85xx_PCIE1_OFFSET 0x240000
2883#define CONFIG_SYS_MPC85xx_PCIE2_OFFSET 0x250000
2884#define CONFIG_SYS_MPC85xx_PCIE3_OFFSET 0x260000
2885#define CONFIG_SYS_MPC85xx_PCIE4_OFFSET 0x270000
2886#else
2887#define CONFIG_SYS_MPC85xx_PCIE1_OFFSET 0x200000
2888#define CONFIG_SYS_MPC85xx_PCIE2_OFFSET 0x201000
2889#define CONFIG_SYS_MPC85xx_PCIE3_OFFSET 0x202000
2890#define CONFIG_SYS_MPC85xx_PCIE4_OFFSET 0x203000
2891#endif
2892#define CONFIG_SYS_MPC85xx_USB1_OFFSET 0x210000
2893#define CONFIG_SYS_MPC85xx_USB2_OFFSET 0x211000
2894#define CONFIG_SYS_MPC85xx_USB1_PHY_OFFSET 0x214000
2895#define CONFIG_SYS_MPC85xx_USB2_PHY_OFFSET 0x214100
2896#define CONFIG_SYS_MPC85xx_SATA1_OFFSET 0x220000
2897#define CONFIG_SYS_MPC85xx_SATA2_OFFSET 0x221000
2898#define CONFIG_SYS_FSL_SEC_OFFSET 0x300000
2899#define CONFIG_SYS_FSL_JR0_OFFSET 0x301000
2900#define CONFIG_SYS_FSL_CORENET_PME_OFFSET 0x316000
2901#define CONFIG_SYS_FSL_QMAN_OFFSET 0x318000
2902#define CONFIG_SYS_FSL_BMAN_OFFSET 0x31a000
2903#define CONFIG_SYS_FSL_RAID_ENGINE_OFFSET 0x320000
2904#define CONFIG_SYS_FSL_FM1_OFFSET 0x400000
2905#define CONFIG_SYS_FSL_FM1_RX0_1G_OFFSET 0x488000
2906#define CONFIG_SYS_FSL_FM1_RX1_1G_OFFSET 0x489000
2907#define CONFIG_SYS_FSL_FM1_RX2_1G_OFFSET 0x48a000
2908#define CONFIG_SYS_FSL_FM1_RX3_1G_OFFSET 0x48b000
2909#define CONFIG_SYS_FSL_FM1_RX4_1G_OFFSET 0x48c000
2910#define CONFIG_SYS_FSL_FM1_RX5_1G_OFFSET 0x48d000
2911#define CONFIG_SYS_FSL_FM1_RX0_10G_OFFSET 0x490000
2912#define CONFIG_SYS_FSL_FM1_RX1_10G_OFFSET 0x491000
2913#define CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET 0x4e0000
2914#define CONFIG_SYS_FSL_FM2_OFFSET 0x500000
2915#define CONFIG_SYS_FSL_FM2_RX0_1G_OFFSET 0x588000
2916#define CONFIG_SYS_FSL_FM2_RX1_1G_OFFSET 0x589000
2917#define CONFIG_SYS_FSL_FM2_RX2_1G_OFFSET 0x58a000
2918#define CONFIG_SYS_FSL_FM2_RX3_1G_OFFSET 0x58b000
2919#define CONFIG_SYS_FSL_FM2_RX4_1G_OFFSET 0x58c000
2920#define CONFIG_SYS_FSL_FM2_RX5_1G_OFFSET 0x58d000
2921#define CONFIG_SYS_FSL_FM2_RX0_10G_OFFSET 0x590000
2922#define CONFIG_SYS_FSL_FM2_RX1_10G_OFFSET 0x591000
2923#define CONFIG_SYS_FSL_CLUSTER_1_L2_OFFSET 0xC20000
2924#else
2925#define CONFIG_SYS_MPC85xx_ECM_OFFSET 0x0000
2926#define CONFIG_SYS_MPC8xxx_DDR_OFFSET 0x2000
2927#define CONFIG_SYS_MPC85xx_LBC_OFFSET 0x5000
2928#define CONFIG_SYS_MPC8xxx_DDR2_OFFSET 0x6000
2929#define CONFIG_SYS_MPC85xx_ESPI_OFFSET 0x7000
2930#define CONFIG_SYS_MPC85xx_PCI1_OFFSET 0x8000
2931#define CONFIG_SYS_MPC85xx_PCIX_OFFSET 0x8000
2932#define CONFIG_SYS_MPC85xx_PCI2_OFFSET 0x9000
2933#define CONFIG_SYS_MPC85xx_PCIX2_OFFSET 0x9000
2934#define CONFIG_SYS_MPC85xx_PCIE1_OFFSET 0xa000
2935#define CONFIG_SYS_MPC85xx_PCIE2_OFFSET 0x9000
2936#if defined(CONFIG_MPC8572) || defined(CONFIG_P2020)
2937#define CONFIG_SYS_MPC85xx_PCIE3_OFFSET 0x8000
2938#else
2939#define CONFIG_SYS_MPC85xx_PCIE3_OFFSET 0xb000
2940#endif
2941#define CONFIG_SYS_MPC85xx_GPIO_OFFSET 0xF000
2942#define CONFIG_SYS_MPC85xx_SATA1_OFFSET 0x18000
2943#define CONFIG_SYS_MPC85xx_SATA2_OFFSET 0x19000
2944#define CONFIG_SYS_MPC85xx_IFC_OFFSET 0x1e000
2945#define CONFIG_SYS_MPC85xx_L2_OFFSET 0x20000
2946#define CONFIG_SYS_MPC85xx_DMA_OFFSET 0x21000
2947#define CONFIG_SYS_MPC85xx_USB1_OFFSET 0x22000
2948#define CONFIG_SYS_MPC85xx_USB2_OFFSET 0x23000
2949#ifdef CONFIG_TSECV2
2950#define CONFIG_SYS_TSEC1_OFFSET 0xB0000
2951#elif defined(CONFIG_TSECV2_1)
2952#define CONFIG_SYS_TSEC1_OFFSET 0x10000
2953#else
2954#define CONFIG_SYS_TSEC1_OFFSET 0x24000
2955#endif
2956#define CONFIG_SYS_MDIO1_OFFSET 0x24000
2957#define CONFIG_SYS_MPC85xx_ESDHC_OFFSET 0x2e000
2958#if defined(CONFIG_PPC_C29X)
2959#define CONFIG_SYS_FSL_SEC_OFFSET 0x80000
2960#define CONFIG_SYS_FSL_JR0_OFFSET 0x81000
2961#else
2962#define CONFIG_SYS_FSL_SEC_OFFSET 0x30000
2963#define CONFIG_SYS_FSL_JR0_OFFSET 0x31000
2964#endif
2965#define CONFIG_SYS_MPC85xx_SERDES2_OFFSET 0xE3100
2966#define CONFIG_SYS_MPC85xx_SERDES1_OFFSET 0xE3000
2967#define CONFIG_SYS_SNVS_OFFSET 0xE6000
2968#define CONFIG_SYS_SFP_OFFSET 0xE7000
2969#define CONFIG_SYS_MPC85xx_CPM_OFFSET 0x80000
2970#define CONFIG_SYS_FSL_QMAN_OFFSET 0x88000
2971#define CONFIG_SYS_FSL_BMAN_OFFSET 0x8a000
2972#define CONFIG_SYS_FSL_FM1_OFFSET 0x100000
2973#define CONFIG_SYS_FSL_FM1_RX0_1G_OFFSET 0x188000
2974#define CONFIG_SYS_FSL_FM1_RX1_1G_OFFSET 0x189000
2975#define CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET 0x1e0000
2976#endif
2977
2978#define CONFIG_SYS_MPC85xx_PIC_OFFSET 0x40000
2979#define CONFIG_SYS_MPC85xx_GUTS_OFFSET 0xE0000
2980#define CONFIG_SYS_FSL_SRIO_OFFSET 0xC0000
2981
2982#if defined(CONFIG_BSC9132)
2983#define CONFIG_SYS_FSL_DSP_CCSR_DDR_OFFSET 0x10000
2984#define CONFIG_SYS_FSL_DSP_CCSR_DDR_ADDR \
2985 (CONFIG_SYS_FSL_DSP_CCSRBAR + CONFIG_SYS_FSL_DSP_CCSR_DDR_OFFSET)
2986#endif
2987
2988#define CONFIG_SYS_FSL_CPC_ADDR \
2989 (CONFIG_SYS_CCSRBAR + CONFIG_SYS_FSL_CPC_OFFSET)
2990#define CONFIG_SYS_FSL_SCFG_ADDR \
2991 (CONFIG_SYS_CCSRBAR + CONFIG_SYS_FSL_SCFG_OFFSET)
2992#define CONFIG_SYS_FSL_SCFG_PIXCLK_ADDR \
2993 (CONFIG_SYS_FSL_SCFG_ADDR + CONFIG_SYS_FSL_SCFG_PIXCLKCR_OFFSET)
2994#define CONFIG_SYS_FSL_SCFG_IODSECR1_ADDR \
2995 (CONFIG_SYS_FSL_SCFG_ADDR + CONFIG_SYS_FSL_SCFG_IODSECR1_OFFSET)
2996#define CONFIG_SYS_FSL_QMAN_ADDR \
2997 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_QMAN_OFFSET)
2998#define CONFIG_SYS_FSL_BMAN_ADDR \
2999 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_BMAN_OFFSET)
3000#define CONFIG_SYS_FSL_CORENET_PME_ADDR \
3001 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_PME_OFFSET)
3002#define CONFIG_SYS_FSL_RAID_ENGINE_ADDR \
3003 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_RAID_ENGINE_OFFSET)
3004#define CONFIG_SYS_FSL_CORENET_RMAN_ADDR \
3005 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_RMAN_OFFSET)
3006#define CONFIG_SYS_MPC85xx_GUTS_ADDR \
3007 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_GUTS_OFFSET)
3008#define CONFIG_SYS_FSL_CORENET_CCM_ADDR \
3009 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_CCM_OFFSET)
3010#define CONFIG_SYS_FSL_CORENET_CLK_ADDR \
3011 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_CLK_OFFSET)
3012#define CONFIG_SYS_FSL_CORENET_RCPM_ADDR \
3013 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_RCPM_OFFSET)
3014#define CONFIG_SYS_MPC85xx_ECM_ADDR \
3015 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_ECM_OFFSET)
3016#define CONFIG_SYS_FSL_DDR_ADDR \
3017 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC8xxx_DDR_OFFSET)
3018#define CONFIG_SYS_FSL_DDR2_ADDR \
3019 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC8xxx_DDR2_OFFSET)
3020#define CONFIG_SYS_FSL_DDR3_ADDR \
3021 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC8xxx_DDR3_OFFSET)
3022#define CONFIG_SYS_LBC_ADDR \
3023 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_LBC_OFFSET)
3024#define CONFIG_SYS_IFC_ADDR \
3025 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_IFC_OFFSET)
3026#define CONFIG_SYS_MPC85xx_ESPI_ADDR \
3027 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_ESPI_OFFSET)
3028#define CONFIG_SYS_MPC85xx_PCIX_ADDR \
3029 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PCIX_OFFSET)
3030#define CONFIG_SYS_MPC85xx_PCIX2_ADDR \
3031 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PCIX2_OFFSET)
3032#define CONFIG_SYS_MPC85xx_GPIO_ADDR \
3033 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_GPIO_OFFSET)
3034#define CONFIG_SYS_MPC85xx_SATA1_ADDR \
3035 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_SATA1_OFFSET)
3036#define CONFIG_SYS_MPC85xx_SATA2_ADDR \
3037 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_SATA2_OFFSET)
3038#define CONFIG_SYS_MPC85xx_L2_ADDR \
3039 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_L2_OFFSET)
3040#define CONFIG_SYS_MPC85xx_DMA_ADDR \
3041 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_DMA_OFFSET)
3042#define CONFIG_SYS_MPC85xx_ESDHC_ADDR \
3043 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_ESDHC_OFFSET)
3044#define CONFIG_SYS_MPC8xxx_PIC_ADDR \
3045 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PIC_OFFSET)
3046#define CONFIG_SYS_MPC85xx_CPM_ADDR \
3047 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_CPM_OFFSET)
3048#define CONFIG_SYS_MPC85xx_SERDES1_ADDR \
3049 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_SERDES1_OFFSET)
3050#define CONFIG_SYS_MPC85xx_SERDES2_ADDR \
3051 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_SERDES2_OFFSET)
3052#define CONFIG_SYS_FSL_CORENET_SERDES_ADDR \
3053 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_SERDES_OFFSET)
3054#define CONFIG_SYS_FSL_CORENET_SERDES2_ADDR \
3055 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_SERDES2_OFFSET)
3056#define CONFIG_SYS_FSL_CORENET_SERDES3_ADDR \
3057 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_SERDES3_OFFSET)
3058#define CONFIG_SYS_FSL_CORENET_SERDES4_ADDR \
3059 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CORENET_SERDES4_OFFSET)
3060#define CONFIG_SYS_MPC85xx_USB1_ADDR \
3061 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_USB1_OFFSET)
3062#define CONFIG_SYS_MPC85xx_USB2_ADDR \
3063 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_USB2_OFFSET)
3064#define CONFIG_SYS_MPC85xx_USB1_PHY_ADDR \
3065 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_USB1_PHY_OFFSET)
3066#define CONFIG_SYS_MPC85xx_USB2_PHY_ADDR \
3067 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_USB2_PHY_OFFSET)
3068#define CONFIG_SYS_FSL_SEC_ADDR \
3069 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_SEC_OFFSET)
3070#define CONFIG_SYS_FSL_JR0_ADDR \
3071 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_JR0_OFFSET)
3072#define CONFIG_SYS_FSL_FM1_ADDR \
3073 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_FM1_OFFSET)
3074#define CONFIG_SYS_FSL_FM1_DTSEC1_ADDR \
3075 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET)
3076#define CONFIG_SYS_FSL_FM2_ADDR \
3077 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_FM2_OFFSET)
3078#define CONFIG_SYS_FSL_SRIO_ADDR \
3079 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_SRIO_OFFSET)
3080
3081#define CONFIG_SYS_PCI1_ADDR \
3082 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PCI1_OFFSET)
3083#define CONFIG_SYS_PCI2_ADDR \
3084 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PCI2_OFFSET)
3085#define CONFIG_SYS_PCIE1_ADDR \
3086 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PCIE1_OFFSET)
3087#define CONFIG_SYS_PCIE2_ADDR \
3088 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PCIE2_OFFSET)
3089#define CONFIG_SYS_PCIE3_ADDR \
3090 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PCIE3_OFFSET)
3091#define CONFIG_SYS_PCIE4_ADDR \
3092 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PCIE4_OFFSET)
3093
3094#define CONFIG_SYS_SFP_ADDR \
3095 (CONFIG_SYS_IMMR + CONFIG_SYS_SFP_OFFSET)
3096
3097#define TSEC_BASE_ADDR (CONFIG_SYS_IMMR + CONFIG_SYS_TSEC1_OFFSET)
3098#define MDIO_BASE_ADDR (CONFIG_SYS_IMMR + CONFIG_SYS_MDIO1_OFFSET)
3099
3100#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
3101struct ccsr_cluster_l2 {
3102 u32 l2csr0;
3103 u32 l2csr1;
3104 u32 l2cfg0;
3105 u8 res_0c[500];
3106 u32 l2pir0;
3107 u8 res_204[4];
3108 u32 l2par0;
3109 u32 l2pwr0;
3110 u32 l2pir1;
3111 u8 res_214[4];
3112 u32 l2par1;
3113 u32 l2pwr1;
3114 u32 u2pir2;
3115 u8 res_224[4];
3116 u32 l2par2;
3117 u32 l2pwr2;
3118 u32 l2pir3;
3119 u8 res_234[4];
3120 u32 l2par3;
3121 u32 l2pwr3;
3122 u32 l2pir4;
3123 u8 res244[4];
3124 u32 l2par4;
3125 u32 l2pwr4;
3126 u32 l2pir5;
3127 u8 res_254[4];
3128 u32 l2par5;
3129 u32 l2pwr5;
3130 u32 l2pir6;
3131 u8 res_264[4];
3132 u32 l2par6;
3133 u32 l2pwr6;
3134 u32 l2pir7;
3135 u8 res274[4];
3136 u32 l2par7;
3137 u32 l2pwr7;
3138 u8 res_280[0xb80];
3139 u32 l2errinjhi;
3140 u32 l2errinjlo;
3141 u32 l2errinjctl;
3142 u8 res_e0c[20];
3143 u32 l2captdatahi;
3144 u32 l2captdatalo;
3145 u32 l2captecc;
3146 u8 res_e2c[20];
3147 u32 l2errdet;
3148 u32 l2errdis;
3149 u32 l2errinten;
3150 u32 l2errattr;
3151 u32 l2erreaddr;
3152 u32 l2erraddr;
3153 u32 l2errctl;
3154};
3155#define CONFIG_SYS_FSL_CLUSTER_1_L2 \
3156 (CONFIG_SYS_IMMR + CONFIG_SYS_FSL_CLUSTER_1_L2_OFFSET)
3157#endif
3158
3159#define CONFIG_SYS_DCSR_DCFG_OFFSET 0X20000
3160struct dcsr_dcfg_regs {
3161 u8 res_0[0x520];
3162 u32 ecccr1;
3163#define DCSR_DCFG_ECC_DISABLE_USB1 0x00008000
3164#define DCSR_DCFG_ECC_DISABLE_USB2 0x00004000
3165 u8 res_524[0x1000 - 0x524];
3166};
3167
3168#define CONFIG_SYS_MPC85xx_SCFG \
3169 (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_SCFG_OFFSET)
3170#define CONFIG_SYS_MPC85xx_SCFG_OFFSET 0xfc000
3171
3172struct ccsr_scfg {
3173 u32 dpslpcr;
3174 u32 usb1dpslpcsr;
3175 u32 usb2dpslpcsr;
3176 u32 fmclkdpslpcr;
3177 u32 res1[4];
3178 u32 esgmiiselcr;
3179 u32 res2;
3180 u32 pixclkcr;
3181 u32 res3[245];
3182 u32 qeioclkcr;
3183 u32 emiiocr;
3184 u32 sdhciovselcr;
3185 u32 qmifrstcr;
3186 u32 res4[60];
3187 u32 sparecr[8];
3188};
3189#endif
3190