]> git.lizzy.rs Git - plan9front.git/blob - sys/src/9/pc/pci.c
mp/pci: msi support for hypertransport platform
[plan9front.git] / sys / src / 9 / pc / pci.c
1 /*
2  * PCI support code.
3  * Needs a massive rewrite.
4  */
5 #include "u.h"
6 #include "../port/lib.h"
7 #include "mem.h"
8 #include "dat.h"
9 #include "fns.h"
10 #include "io.h"
11 #include "../port/error.h"
12
13 #define DBG     if(0) pcilog
14
15 struct
16 {
17         char    output[16384];
18         int     ptr;
19 }PCICONS;
20
21 int
22 pcilog(char *fmt, ...)
23 {
24         int n;
25         va_list arg;
26         char buf[PRINTSIZE];
27
28         va_start(arg, fmt);
29         n = vseprint(buf, buf+sizeof(buf), fmt, arg) - buf;
30         va_end(arg);
31
32         memmove(PCICONS.output+PCICONS.ptr, buf, n);
33         PCICONS.ptr += n;
34         return n;
35 }
36
37 enum
38 {                                       /* configuration mechanism #1 */
39         PciADDR         = 0xCF8,        /* CONFIG_ADDRESS */
40         PciDATA         = 0xCFC,        /* CONFIG_DATA */
41
42                                         /* configuration mechanism #2 */
43         PciCSE          = 0xCF8,        /* configuration space enable */
44         PciFORWARD      = 0xCFA,        /* which bus */
45
46         MaxFNO          = 7,
47         MaxUBN          = 255,
48 };
49
50 enum
51 {                                       /* command register */
52         IOen            = (1<<0),
53         MEMen           = (1<<1),
54         MASen           = (1<<2),
55         MemWrInv        = (1<<4),
56         PErrEn          = (1<<6),
57         SErrEn          = (1<<8),
58 };
59
60 static Lock pcicfglock;
61 static Lock pcicfginitlock;
62 static int pcicfgmode = -1;
63 static int pcimaxbno = 255;
64 static int pcimaxdno;
65 static Pcidev* pciroot;
66 static Pcidev* pcilist;
67 static Pcidev* pcitail;
68 static int nobios, nopcirouting;
69 static BIOS32si* pcibiossi;
70
71 static int pcicfgrw8raw(int, int, int, int);
72 static int pcicfgrw16raw(int, int, int, int);
73 static int pcicfgrw32raw(int, int, int, int);
74
75 static int (*pcicfgrw8)(int, int, int, int) = pcicfgrw8raw;
76 static int (*pcicfgrw16)(int, int, int, int) = pcicfgrw16raw;
77 static int (*pcicfgrw32)(int, int, int, int) = pcicfgrw32raw;
78
79 static char* bustypes[] = {
80         "CBUSI",
81         "CBUSII",
82         "EISA",
83         "FUTURE",
84         "INTERN",
85         "ISA",
86         "MBI",
87         "MBII",
88         "MCA",
89         "MPI",
90         "MPSA",
91         "NUBUS",
92         "PCI",
93         "PCMCIA",
94         "TC",
95         "VL",
96         "VME",
97         "XPRESS",
98 };
99
100 static int
101 tbdffmt(Fmt* fmt)
102 {
103         char *p;
104         int l, r;
105         uint type, tbdf;
106
107         if((p = malloc(READSTR)) == nil)
108                 return fmtstrcpy(fmt, "(tbdfconv)");
109
110         switch(fmt->r){
111         case 'T':
112                 tbdf = va_arg(fmt->args, int);
113                 if(tbdf == BUSUNKNOWN)
114                         snprint(p, READSTR, "unknown");
115                 else{
116                         type = BUSTYPE(tbdf);
117                         if(type < nelem(bustypes))
118                                 l = snprint(p, READSTR, bustypes[type]);
119                         else
120                                 l = snprint(p, READSTR, "%d", type);
121                         snprint(p+l, READSTR-l, ".%d.%d.%d",
122                                 BUSBNO(tbdf), BUSDNO(tbdf), BUSFNO(tbdf));
123                 }
124                 break;
125
126         default:
127                 snprint(p, READSTR, "(tbdfconv)");
128                 break;
129         }
130         r = fmtstrcpy(fmt, p);
131         free(p);
132
133         return r;
134 }
135
136 ulong
137 pcibarsize(Pcidev *p, int rno)
138 {
139         ulong v, size;
140
141         v = pcicfgrw32(p->tbdf, rno, 0, 1);
142         pcicfgrw32(p->tbdf, rno, 0xFFFFFFF0, 0);
143         size = pcicfgrw32(p->tbdf, rno, 0, 1);
144         if(v & 1)
145                 size |= 0xFFFF0000;
146         pcicfgrw32(p->tbdf, rno, v, 0);
147
148         return -(size & ~0x0F);
149 }
150
151 static int
152 pcisizcmp(void *a, void *b)
153 {
154         Pcisiz *aa, *bb;
155
156         aa = a;
157         bb = b;
158         return aa->siz - bb->siz;
159 }
160
161 static ulong
162 pcimask(ulong v)
163 {
164         ulong m;
165
166         m = BI2BY*sizeof(v);
167         for(m = 1<<(m-1); m != 0; m >>= 1) {
168                 if(m & v)
169                         break;
170         }
171
172         m--;
173         if((v & m) == 0)
174                 return v;
175
176         v |= m;
177         return v+1;
178 }
179
180 static void
181 pcibusmap(Pcidev *root, ulong *pmema, ulong *pioa, int wrreg)
182 {
183         Pcidev *p;
184         int ntb, i, size, rno, hole;
185         ulong v, mema, ioa, sioa, smema, base, limit;
186         Pcisiz *table, *tptr, *mtb, *itb;
187
188         if(!nobios)
189                 return;
190
191         ioa = *pioa;
192         mema = *pmema;
193
194         DBG("pcibusmap wr=%d %T mem=%luX io=%luX\n",
195                 wrreg, root->tbdf, mema, ioa);
196
197         ntb = 0;
198         for(p = root; p != nil; p = p->link)
199                 ntb++;
200
201         ntb *= (PciCIS-PciBAR0)/4;
202         table = malloc(2*ntb*sizeof(Pcisiz));
203         if(table == nil)
204                 panic("pcibusmap: can't allocate memory");
205         itb = table;
206         mtb = table+ntb;
207
208         /*
209          * Build a table of sizes
210          */
211         for(p = root; p != nil; p = p->link) {
212                 if(p->ccrb == 0x06) {
213                         if(p->ccru != 0x04 || p->bridge == nil) {
214 //                              DBG("pci: ignored bridge %T\n", p->tbdf);
215                                 continue;
216                         }
217
218                         sioa = ioa;
219                         smema = mema;
220                         pcibusmap(p->bridge, &smema, &sioa, 0);
221
222                         hole = pcimask(smema-mema);
223                         if(hole < (1<<20))
224                                 hole = 1<<20;
225                         p->mema.size = hole;
226
227                         hole = pcimask(sioa-ioa);
228                         if(hole < (1<<12))
229                                 hole = 1<<12;
230
231                         p->ioa.size = hole;
232
233                         itb->dev = p;
234                         itb->bar = -1;
235                         itb->siz = p->ioa.size;
236                         itb++;
237
238                         mtb->dev = p;
239                         mtb->bar = -1;
240                         mtb->siz = p->mema.size;
241                         mtb++;
242                         continue;
243                 }
244
245                 for(i = 0; i <= 5; i++) {
246                         rno = PciBAR0 + i*4;
247                         v = pcicfgrw32(p->tbdf, rno, 0, 1);
248                         size = pcibarsize(p, rno);
249                         if(size == 0)
250                                 continue;
251
252                         if(v & 1) {
253                                 itb->dev = p;
254                                 itb->bar = i;
255                                 itb->siz = size;
256                                 itb++;
257                         }
258                         else {
259                                 mtb->dev = p;
260                                 mtb->bar = i;
261                                 mtb->siz = size;
262                                 mtb++;
263                         }
264
265                         p->mem[i].size = size;
266                 }
267         }
268
269         /*
270          * Sort both tables IO smallest first, Memory largest
271          */
272         qsort(table, itb-table, sizeof(Pcisiz), pcisizcmp);
273         tptr = table+ntb;
274         qsort(tptr, mtb-tptr, sizeof(Pcisiz), pcisizcmp);
275
276         /*
277          * Allocate IO address space on this bus
278          */
279         for(tptr = table; tptr < itb; tptr++) {
280                 hole = tptr->siz;
281                 if(tptr->bar == -1)
282                         hole = 1<<12;
283                 ioa = (ioa+hole-1) & ~(hole-1);
284
285                 p = tptr->dev;
286                 if(tptr->bar == -1)
287                         p->ioa.bar = ioa;
288                 else {
289                         p->pcr |= IOen;
290                         p->mem[tptr->bar].bar = ioa|1;
291                         if(wrreg)
292                                 pcicfgrw32(p->tbdf, PciBAR0+(tptr->bar*4), ioa|1, 0);
293                 }
294
295                 ioa += tptr->siz;
296         }
297
298         /*
299          * Allocate Memory address space on this bus
300          */
301         for(tptr = table+ntb; tptr < mtb; tptr++) {
302                 hole = tptr->siz;
303                 if(tptr->bar == -1)
304                         hole = 1<<20;
305                 mema = (mema+hole-1) & ~(hole-1);
306
307                 p = tptr->dev;
308                 if(tptr->bar == -1)
309                         p->mema.bar = mema;
310                 else {
311                         p->pcr |= MEMen;
312                         p->mem[tptr->bar].bar = mema;
313                         if(wrreg)
314                                 pcicfgrw32(p->tbdf, PciBAR0+(tptr->bar*4), mema, 0);
315                 }
316                 mema += tptr->siz;
317         }
318
319         *pmema = mema;
320         *pioa = ioa;
321         free(table);
322
323         if(wrreg == 0)
324                 return;
325
326         /*
327          * Finally set all the bridge addresses & registers
328          */
329         for(p = root; p != nil; p = p->link) {
330                 if(p->bridge == nil) {
331                         pcicfgrw8(p->tbdf, PciLTR, 64, 0);
332
333                         p->pcr |= MASen;
334                         pcicfgrw16(p->tbdf, PciPCR, p->pcr, 0);
335                         continue;
336                 }
337
338                 base = p->ioa.bar;
339                 limit = base+p->ioa.size-1;
340                 v = pcicfgrw32(p->tbdf, PciIBR, 0, 1);
341                 v = (v&0xFFFF0000)|(limit & 0xF000)|((base & 0xF000)>>8);
342                 pcicfgrw32(p->tbdf, PciIBR, v, 0);
343                 v = (limit & 0xFFFF0000)|(base>>16);
344                 pcicfgrw32(p->tbdf, PciIUBR, v, 0);
345
346                 base = p->mema.bar;
347                 limit = base+p->mema.size-1;
348                 v = (limit & 0xFFF00000)|((base & 0xFFF00000)>>16);
349                 pcicfgrw32(p->tbdf, PciMBR, v, 0);
350
351                 /*
352                  * Disable memory prefetch
353                  */
354                 pcicfgrw32(p->tbdf, PciPMBR, 0x0000FFFF, 0);
355                 pcicfgrw8(p->tbdf, PciLTR, 64, 0);
356
357                 /*
358                  * Enable the bridge
359                  */
360                 p->pcr |= IOen|MEMen|MASen;
361                 pcicfgrw32(p->tbdf, PciPCR, 0xFFFF0000|p->pcr , 0);
362
363                 sioa = p->ioa.bar;
364                 smema = p->mema.bar;
365                 pcibusmap(p->bridge, &smema, &sioa, 1);
366         }
367 }
368
369 static int
370 pcilscan(int bno, Pcidev** list, Pcidev *parent)
371 {
372         Pcidev *p, *head, *tail;
373         int dno, fno, i, hdt, l, maxfno, maxubn, rno, sbn, tbdf, ubn;
374
375         maxubn = bno;
376         head = nil;
377         tail = nil;
378         for(dno = 0; dno <= pcimaxdno; dno++){
379                 maxfno = 0;
380                 for(fno = 0; fno <= maxfno; fno++){
381                         /*
382                          * For this possible device, form the
383                          * bus+device+function triplet needed to address it
384                          * and try to read the vendor and device ID.
385                          * If successful, allocate a device struct and
386                          * start to fill it in with some useful information
387                          * from the device's configuration space.
388                          */
389                         tbdf = MKBUS(BusPCI, bno, dno, fno);
390                         l = pcicfgrw32(tbdf, PciVID, 0, 1);
391                         if(l == 0xFFFFFFFF || l == 0)
392                                 continue;
393                         p = malloc(sizeof(*p));
394                         if(p == nil)
395                                 panic("pcilscan: can't allocate memory");
396                         p->tbdf = tbdf;
397                         p->vid = l;
398                         p->did = l>>16;
399
400                         if(pcilist != nil)
401                                 pcitail->list = p;
402                         else
403                                 pcilist = p;
404                         pcitail = p;
405
406                         p->pcr = pcicfgr16(p, PciPCR);
407                         p->rid = pcicfgr8(p, PciRID);
408                         p->ccrp = pcicfgr8(p, PciCCRp);
409                         p->ccru = pcicfgr8(p, PciCCRu);
410                         p->ccrb = pcicfgr8(p, PciCCRb);
411                         p->cls = pcicfgr8(p, PciCLS);
412                         p->ltr = pcicfgr8(p, PciLTR);
413
414                         p->intl = pcicfgr8(p, PciINTL);
415
416                         /*
417                          * If the device is a multi-function device adjust the
418                          * loop count so all possible functions are checked.
419                          */
420                         hdt = pcicfgr8(p, PciHDT);
421                         if(hdt & 0x80)
422                                 maxfno = MaxFNO;
423
424                         /*
425                          * If appropriate, read the base address registers
426                          * and work out the sizes.
427                          */
428                         switch(p->ccrb) {
429                         case 0x01:              /* mass storage controller */
430                         case 0x02:              /* network controller */
431                         case 0x03:              /* display controller */
432                         case 0x04:              /* multimedia device */
433                         case 0x07:              /* simple comm. controllers */
434                         case 0x08:              /* base system peripherals */
435                         case 0x09:              /* input devices */
436                         case 0x0A:              /* docking stations */
437                         case 0x0B:              /* processors */
438                         case 0x0C:              /* serial bus controllers */
439                                 if((hdt & 0x7F) != 0)
440                                         break;
441                                 rno = PciBAR0 - 4;
442                                 for(i = 0; i < nelem(p->mem); i++) {
443                                         rno += 4;
444                                         p->mem[i].bar = pcicfgr32(p, rno);
445                                         p->mem[i].size = pcibarsize(p, rno);
446                                 }
447                                 break;
448
449                         case 0x00:
450                         case 0x05:              /* memory controller */
451                         case 0x06:              /* bridge device */
452                         default:
453                                 break;
454                         }
455
456                         p->parent = parent;
457                         if(head != nil)
458                                 tail->link = p;
459                         else
460                                 head = p;
461                         tail = p;
462                 }
463         }
464
465         *list = head;
466         for(p = head; p != nil; p = p->link){
467                 /*
468                  * Find PCI-PCI bridges and recursively descend the tree.
469                  */
470                 if(p->ccrb != 0x06 || p->ccru != 0x04)
471                         continue;
472
473                 /*
474                  * If the secondary or subordinate bus number is not
475                  * initialised try to do what the PCI BIOS should have
476                  * done and fill in the numbers as the tree is descended.
477                  * On the way down the subordinate bus number is set to
478                  * the maximum as it's not known how many buses are behind
479                  * this one; the final value is set on the way back up.
480                  */
481                 sbn = pcicfgr8(p, PciSBN);
482                 ubn = pcicfgr8(p, PciUBN);
483
484                 if(sbn == 0 || ubn == 0 || nobios) {
485                         sbn = maxubn+1;
486                         /*
487                          * Make sure memory, I/O and master enables are
488                          * off, set the primary, secondary and subordinate
489                          * bus numbers and clear the secondary status before
490                          * attempting to scan the secondary bus.
491                          *
492                          * Initialisation of the bridge should be done here.
493                          */
494                         pcicfgw32(p, PciPCR, 0xFFFF0000);
495                         l = (MaxUBN<<16)|(sbn<<8)|bno;
496                         pcicfgw32(p, PciPBN, l);
497                         pcicfgw16(p, PciSPSR, 0xFFFF);
498                         maxubn = pcilscan(sbn, &p->bridge, p);
499                         l = (maxubn<<16)|(sbn<<8)|bno;
500
501                         pcicfgw32(p, PciPBN, l);
502                 }
503                 else {
504                         if(ubn > maxubn)
505                                 maxubn = ubn;
506                         pcilscan(sbn, &p->bridge, p);
507                 }
508         }
509
510         return maxubn;
511 }
512
513 int
514 pciscan(int bno, Pcidev **list)
515 {
516         int ubn;
517
518         lock(&pcicfginitlock);
519         ubn = pcilscan(bno, list, nil);
520         unlock(&pcicfginitlock);
521         return ubn;
522 }
523
524 static uchar
525 pIIxget(Pcidev *router, uchar link)
526 {
527         uchar pirq;
528
529         /* link should be 0x60, 0x61, 0x62, 0x63 */
530         pirq = pcicfgr8(router, link);
531         return (pirq < 16)? pirq: 0;
532 }
533
534 static void
535 pIIxset(Pcidev *router, uchar link, uchar irq)
536 {
537         pcicfgw8(router, link, irq);
538 }
539
540 static uchar
541 viaget(Pcidev *router, uchar link)
542 {
543         uchar pirq;
544
545         /* link should be 1, 2, 3, 5 */
546         pirq = (link < 6)? pcicfgr8(router, 0x55 + (link>>1)): 0;
547
548         return (link & 1)? (pirq >> 4): (pirq & 15);
549 }
550
551 static void
552 viaset(Pcidev *router, uchar link, uchar irq)
553 {
554         uchar pirq;
555
556         pirq = pcicfgr8(router, 0x55 + (link >> 1));
557         pirq &= (link & 1)? 0x0f: 0xf0;
558         pirq |= (link & 1)? (irq << 4): (irq & 15);
559         pcicfgw8(router, 0x55 + (link>>1), pirq);
560 }
561
562 static uchar
563 optiget(Pcidev *router, uchar link)
564 {
565         uchar pirq = 0;
566
567         /* link should be 0x02, 0x12, 0x22, 0x32 */
568         if ((link & 0xcf) == 0x02)
569                 pirq = pcicfgr8(router, 0xb8 + (link >> 5));
570         return (link & 0x10)? (pirq >> 4): (pirq & 15);
571 }
572
573 static void
574 optiset(Pcidev *router, uchar link, uchar irq)
575 {
576         uchar pirq;
577
578         pirq = pcicfgr8(router, 0xb8 + (link >> 5));
579         pirq &= (link & 0x10)? 0x0f : 0xf0;
580         pirq |= (link & 0x10)? (irq << 4): (irq & 15);
581         pcicfgw8(router, 0xb8 + (link >> 5), pirq);
582 }
583
584 static uchar
585 aliget(Pcidev *router, uchar link)
586 {
587         /* No, you're not dreaming */
588         static const uchar map[] = { 0, 9, 3, 10, 4, 5, 7, 6, 1, 11, 0, 12, 0, 14, 0, 15 };
589         uchar pirq;
590
591         /* link should be 0x01..0x08 */
592         pirq = pcicfgr8(router, 0x48 + ((link-1)>>1));
593         return (link & 1)? map[pirq&15]: map[pirq>>4];
594 }
595
596 static void
597 aliset(Pcidev *router, uchar link, uchar irq)
598 {
599         /* Inverse of map in aliget */
600         static const uchar map[] = { 0, 8, 0, 2, 4, 5, 7, 6, 0, 1, 3, 9, 11, 0, 13, 15 };
601         uchar pirq;
602
603         pirq = pcicfgr8(router, 0x48 + ((link-1)>>1));
604         pirq &= (link & 1)? 0x0f: 0xf0;
605         pirq |= (link & 1)? (map[irq] << 4): (map[irq] & 15);
606         pcicfgw8(router, 0x48 + ((link-1)>>1), pirq);
607 }
608
609 static uchar
610 cyrixget(Pcidev *router, uchar link)
611 {
612         uchar pirq;
613
614         /* link should be 1, 2, 3, 4 */
615         pirq = pcicfgr8(router, 0x5c + ((link-1)>>1));
616         return ((link & 1)? pirq >> 4: pirq & 15);
617 }
618
619 static void
620 cyrixset(Pcidev *router, uchar link, uchar irq)
621 {
622         uchar pirq;
623
624         pirq = pcicfgr8(router, 0x5c + (link>>1));
625         pirq &= (link & 1)? 0x0f: 0xf0;
626         pirq |= (link & 1)? (irq << 4): (irq & 15);
627         pcicfgw8(router, 0x5c + (link>>1), pirq);
628 }
629
630 typedef struct Bridge Bridge;
631 struct Bridge
632 {
633         ushort  vid;
634         ushort  did;
635         uchar   (*get)(Pcidev *, uchar);
636         void    (*set)(Pcidev *, uchar, uchar);
637 };
638
639 static Bridge southbridges[] = {
640         { 0x8086, 0x122e, pIIxget, pIIxset },   /* Intel 82371FB */
641         { 0x8086, 0x1234, pIIxget, pIIxset },   /* Intel 82371MX */
642         { 0x8086, 0x7000, pIIxget, pIIxset },   /* Intel 82371SB */
643         { 0x8086, 0x7110, pIIxget, pIIxset },   /* Intel 82371AB */
644         { 0x8086, 0x7198, pIIxget, pIIxset },   /* Intel 82443MX (fn 1) */
645         { 0x8086, 0x2410, pIIxget, pIIxset },   /* Intel 82801AA */
646         { 0x8086, 0x2420, pIIxget, pIIxset },   /* Intel 82801AB */
647         { 0x8086, 0x2440, pIIxget, pIIxset },   /* Intel 82801BA */
648         { 0x8086, 0x2448, pIIxget, pIIxset },   /* Intel 82801BAM/CAM/DBM */
649         { 0x8086, 0x244c, pIIxget, pIIxset },   /* Intel 82801BAM */
650         { 0x8086, 0x244e, pIIxget, pIIxset },   /* Intel 82801 */
651         { 0x8086, 0x2480, pIIxget, pIIxset },   /* Intel 82801CA */
652         { 0x8086, 0x248c, pIIxget, pIIxset },   /* Intel 82801CAM */
653         { 0x8086, 0x24c0, pIIxget, pIIxset },   /* Intel 82801DBL */
654         { 0x8086, 0x24cc, pIIxget, pIIxset },   /* Intel 82801DBM */
655         { 0x8086, 0x24d0, pIIxget, pIIxset },   /* Intel 82801EB */
656         { 0x8086, 0x25a1, pIIxget, pIIxset },   /* Intel 6300ESB */
657         { 0x8086, 0x2640, pIIxget, pIIxset },   /* Intel 82801FB */
658         { 0x8086, 0x2641, pIIxget, pIIxset },   /* Intel 82801FBM */
659         { 0x8086, 0x2670, pIIxget, pIIxset },   /* Intel 632xesb */
660         { 0x8086, 0x27b8, pIIxget, pIIxset },   /* Intel 82801GB */
661         { 0x8086, 0x27b9, pIIxget, pIIxset },   /* Intel 82801GBM */
662         { 0x8086, 0x27bd, pIIxget, pIIxset },   /* Intel 82801GB/GR */
663         { 0x8086, 0x3a16, pIIxget, pIIxset },   /* Intel 82801JIR */
664         { 0x8086, 0x3a40, pIIxget, pIIxset },   /* Intel 82801JI */
665         { 0x8086, 0x3a42, pIIxget, pIIxset },   /* Intel 82801JI */
666         { 0x8086, 0x3a48, pIIxget, pIIxset },   /* Intel 82801JI */
667         { 0x8086, 0x2916, pIIxget, pIIxset },   /* Intel 82801? */
668         { 0x8086, 0x1c02, pIIxget, pIIxset },   /* Intel 6 Series/C200 */
669         { 0x8086, 0x1e53, pIIxget, pIIxset },   /* Intel 7 Series/C216 */
670         { 0x8086, 0x2810, pIIxget, pIIxset },   /* Intel 82801HB/HR (ich8/r) */
671         { 0x8086, 0x2812, pIIxget, pIIxset },   /* Intel 82801HH (ich8dh) */
672         { 0x8086, 0x2912, pIIxget, pIIxset },   /* Intel 82801ih ich9dh */
673         { 0x8086, 0x2914, pIIxget, pIIxset },   /* Intel 82801io ich9do */
674         { 0x8086, 0x2916, pIIxget, pIIxset },   /* Intel 82801ibr ich9r */
675         { 0x8086, 0x2917, pIIxget, pIIxset },   /* Intel 82801iem ich9m-e  */
676         { 0x8086, 0x2918, pIIxget, pIIxset },   /* Intel 82801ib ich9 */
677         { 0x8086, 0x2919, pIIxget, pIIxset },   /* Intel 82801? ich9m  */
678         { 0x8086, 0x3a16, pIIxget, pIIxset },   /* Intel 82801jir ich10r */
679         { 0x8086, 0x3a18, pIIxget, pIIxset },   /* Intel 82801jib ich10 */
680         { 0x8086, 0x3a40, pIIxget, pIIxset },   /* Intel 82801ji */
681         { 0x8086, 0x3a42, pIIxget, pIIxset },   /* Intel 82801ji */
682         { 0x8086, 0x3a48, pIIxget, pIIxset },   /* Intel 82801ji */
683         { 0x8086, 0x3b06, pIIxget, pIIxset },   /* Intel 82801? ibex peak */
684         { 0x8086, 0x3b14, pIIxget, pIIxset },   /* Intel 82801? 3420 */
685         { 0x8086, 0x1c49, pIIxget, pIIxset },   /* Intel 82hm65 cougar point pch */
686         { 0x8086, 0x1c4b, pIIxget, pIIxset },   /* Intel 82hm67 */
687         { 0x8086, 0x1c4f, pIIxget, pIIxset },   /* Intel 82qm67 cougar point pch */
688         { 0x8086, 0x1c52, pIIxget, pIIxset },   /* Intel 82q65 cougar point pch */
689         { 0x8086, 0x1c54, pIIxget, pIIxset },   /* Intel 82q67 cougar point pch */
690         { 0x8086, 0x1e55, pIIxget, pIIxset },   /* Intel QM77 panter point lpc */
691
692         { 0x1106, 0x0586, viaget, viaset },     /* Viatech 82C586 */
693         { 0x1106, 0x0596, viaget, viaset },     /* Viatech 82C596 */
694         { 0x1106, 0x0686, viaget, viaset },     /* Viatech 82C686 */
695         { 0x1106, 0x3177, viaget, viaset },     /* Viatech VT8235 */
696         { 0x1106, 0x3227, viaget, viaset },     /* Viatech VT8237 */
697         { 0x1106, 0x3287, viaget, viaset },     /* Viatech VT8251 */
698         { 0x1106, 0x8410, viaget, viaset },     /* Viatech PV530 bridge */
699         { 0x1045, 0xc700, optiget, optiset },   /* Opti 82C700 */
700         { 0x10b9, 0x1533, aliget, aliset },     /* Al M1533 */
701         { 0x1039, 0x0008, pIIxget, pIIxset },   /* SI 503 */
702         { 0x1039, 0x0496, pIIxget, pIIxset },   /* SI 496 */
703         { 0x1078, 0x0100, cyrixget, cyrixset }, /* Cyrix 5530 Legacy */
704
705         { 0x1022, 0x746b, nil, nil },           /* AMD 8111 */
706         { 0x10de, 0x00d1, nil, nil },           /* NVIDIA nForce 3 */
707         { 0x10de, 0x00e0, nil, nil },           /* NVIDIA nForce 3 250 Series */
708         { 0x10de, 0x00e1, nil, nil },           /* NVIDIA nForce 3 250 Series */
709         { 0x1166, 0x0200, nil, nil },           /* ServerWorks ServerSet III LE */
710         { 0x1002, 0x4377, nil, nil },           /* ATI Radeon Xpress 200M */
711         { 0x1002, 0x4372, nil, nil },           /* ATI SB400 */
712         { 0x1002, 0x9601, nil, nil },           /* AMD SB710 */
713         { 0x1002, 0x438d, nil, nil },           /* AMD SB600 */
714         { 0x1002, 0x439d, nil, nil },           /* AMD SB810 */
715 };
716
717 typedef struct Slot Slot;
718 struct Slot {
719         uchar   bus;            /* Pci bus number */
720         uchar   dev;            /* Pci device number */
721         uchar   maps[12];       /* Avoid structs!  Link and mask. */
722         uchar   slot;           /* Add-in/built-in slot */
723         uchar   reserved;
724 };
725
726 typedef struct Router Router;
727 struct Router {
728         uchar   signature[4];   /* Routing table signature */
729         uchar   version[2];     /* Version number */
730         uchar   size[2];        /* Total table size */
731         uchar   bus;            /* Interrupt router bus number */
732         uchar   devfn;          /* Router's devfunc */
733         uchar   pciirqs[2];     /* Exclusive PCI irqs */
734         uchar   compat[4];      /* Compatible PCI interrupt router */
735         uchar   miniport[4];    /* Miniport data */
736         uchar   reserved[11];
737         uchar   checksum;
738 };
739
740 static ushort pciirqs;          /* Exclusive PCI irqs */
741 static Bridge *southbridge;     /* Which southbridge to use. */
742
743 static void
744 pcirouting(void)
745 {
746         Slot *e;
747         Router *r;
748         int size, i, fn, tbdf;
749         Pcidev *sbpci, *pci;
750         uchar *p, pin, irq, link, *map;
751
752         if((p = sigsearch("$PIR")) == 0)
753                 return;
754
755         r = (Router*)p;
756         size = (r->size[1] << 8)|r->size[0];
757         if(size < sizeof(Router) || checksum(r, size))
758                 return;
759
760         if(0) print("PCI interrupt routing table version %d.%d at %p\n",
761                 r->version[0], r->version[1], r);
762
763         tbdf = (BusPCI << 24)|(r->bus << 16)|(r->devfn << 8);
764         sbpci = pcimatchtbdf(tbdf);
765         if(sbpci == nil) {
766                 print("pcirouting: Cannot find south bridge %T\n", tbdf);
767                 return;
768         }
769
770         for(i = 0; i != nelem(southbridges); i++)
771                 if(sbpci->vid == southbridges[i].vid && sbpci->did == southbridges[i].did)
772                         break;
773
774         if(i == nelem(southbridges)) {
775                 print("pcirouting: ignoring south bridge %T %.4uX/%.4uX\n", tbdf, sbpci->vid, sbpci->did);
776                 return;
777         }
778         southbridge = &southbridges[i];
779         if(southbridge->get == nil || southbridge->set == nil)
780                 return;
781
782         pciirqs = (r->pciirqs[1] << 8)|r->pciirqs[0];
783         for(e = (Slot *)&r[1]; (uchar *)e < p + size; e++) {
784                 if (0) {
785                         print("%.2uX/%.2uX %.2uX: ", e->bus, e->dev, e->slot);
786                         for (i = 0; i != 4; i++) {
787                                 uchar *m = &e->maps[i * 3];
788                                 print("[%d] %.2uX %.4uX ",
789                                         i, m[0], (m[2] << 8)|m[1]);
790                         }
791                         print("\n");
792                 }
793                 for(fn = 0; fn != 8; fn++) {
794                         tbdf = (BusPCI << 24)|(e->bus << 16)|((e->dev | fn) << 8);
795                         pci = pcimatchtbdf(tbdf);
796                         if(pci == nil)
797                                 continue;
798                         pin = pcicfgr8(pci, PciINTP);
799                         if(pin == 0 || pin == 0xff)
800                                 continue;
801
802                         map = &e->maps[(pin - 1) * 3];
803                         link = map[0];
804                         irq = southbridge->get(sbpci, link);
805                         if(irq == 0 || irq == pci->intl)
806                                 continue;
807                         if(pci->intl != 0 && pci->intl != 0xFF) {
808                                 print("pcirouting: BIOS workaround: %T at pin %d link %d irq %d -> %d\n",
809                                           tbdf, pin, link, irq, pci->intl);
810                                 southbridge->set(sbpci, link, pci->intl);
811                                 continue;
812                         }
813                         print("pcirouting: %T at pin %d link %d irq %d\n", tbdf, pin, link, irq);
814                         pcicfgw8(pci, PciINTL, irq);
815                         pci->intl = irq;
816                 }
817         }
818 }
819
820 static void pcireservemem(void);
821
822 static int
823 pcicfgrw8bios(int tbdf, int rno, int data, int read)
824 {
825         BIOS32ci ci;
826
827         if(pcibiossi == nil)
828                 return -1;
829
830         memset(&ci, 0, sizeof(BIOS32ci));
831         ci.ebx = (BUSBNO(tbdf)<<8)|(BUSDNO(tbdf)<<3)|BUSFNO(tbdf);
832         ci.edi = rno;
833         if(read){
834                 ci.eax = 0xB108;
835                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
836                         return ci.ecx & 0xFF;
837         }
838         else{
839                 ci.eax = 0xB10B;
840                 ci.ecx = data & 0xFF;
841                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
842                         return 0;
843         }
844
845         return -1;
846 }
847
848 static int
849 pcicfgrw16bios(int tbdf, int rno, int data, int read)
850 {
851         BIOS32ci ci;
852
853         if(pcibiossi == nil)
854                 return -1;
855
856         memset(&ci, 0, sizeof(BIOS32ci));
857         ci.ebx = (BUSBNO(tbdf)<<8)|(BUSDNO(tbdf)<<3)|BUSFNO(tbdf);
858         ci.edi = rno;
859         if(read){
860                 ci.eax = 0xB109;
861                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
862                         return ci.ecx & 0xFFFF;
863         }
864         else{
865                 ci.eax = 0xB10C;
866                 ci.ecx = data & 0xFFFF;
867                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
868                         return 0;
869         }
870
871         return -1;
872 }
873
874 static int
875 pcicfgrw32bios(int tbdf, int rno, int data, int read)
876 {
877         BIOS32ci ci;
878
879         if(pcibiossi == nil)
880                 return -1;
881
882         memset(&ci, 0, sizeof(BIOS32ci));
883         ci.ebx = (BUSBNO(tbdf)<<8)|(BUSDNO(tbdf)<<3)|BUSFNO(tbdf);
884         ci.edi = rno;
885         if(read){
886                 ci.eax = 0xB10A;
887                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
888                         return ci.ecx;
889         }
890         else{
891                 ci.eax = 0xB10D;
892                 ci.ecx = data;
893                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
894                         return 0;
895         }
896
897         return -1;
898 }
899
900 static BIOS32si*
901 pcibiosinit(void)
902 {
903         BIOS32ci ci;
904         BIOS32si *si;
905
906         if((si = bios32open("$PCI")) == nil)
907                 return nil;
908
909         memset(&ci, 0, sizeof(BIOS32ci));
910         ci.eax = 0xB101;
911         if(bios32ci(si, &ci) || ci.edx != ((' '<<24)|('I'<<16)|('C'<<8)|'P')){
912                 free(si);
913                 return nil;
914         }
915         if(ci.eax & 0x01)
916                 pcimaxdno = 31;
917         else
918                 pcimaxdno = 15;
919         pcimaxbno = ci.ecx & 0xff;
920
921         return si;
922 }
923
924 void
925 pcibussize(Pcidev *root, ulong *msize, ulong *iosize)
926 {
927         *msize = 0;
928         *iosize = 0;
929         pcibusmap(root, msize, iosize, 0);
930 }
931
932 static void
933 pcicfginit(void)
934 {
935         char *p;
936         Pcidev **list;
937         ulong mema, ioa;
938         int bno, n, pcibios;
939
940         lock(&pcicfginitlock);
941         if(pcicfgmode != -1)
942                 goto out;
943
944         pcibios = 0;
945         if(getconf("*nobios"))
946                 nobios = 1;
947         else if(getconf("*pcibios"))
948                 pcibios = 1;
949         if(getconf("*nopcirouting"))
950                 nopcirouting = 1;
951
952         /*
953          * Try to determine which PCI configuration mode is implemented.
954          * Mode2 uses a byte at 0xCF8 and another at 0xCFA; Mode1 uses
955          * a DWORD at 0xCF8 and another at 0xCFC and will pass through
956          * any non-DWORD accesses as normal I/O cycles. There shouldn't be
957          * a device behind these addresses so if Mode1 accesses fail try
958          * for Mode2 (Mode2 is deprecated).
959          */
960         if(!pcibios){
961                 /*
962                  * Bits [30:24] of PciADDR must be 0,
963                  * according to the spec.
964                  */
965                 n = inl(PciADDR);
966                 if(!(n & 0x7F000000)){
967                         outl(PciADDR, 0x80000000);
968                         outb(PciADDR+3, 0);
969                         if(inl(PciADDR) & 0x80000000){
970                                 pcicfgmode = 1;
971                                 pcimaxdno = 31;
972                         }
973                 }
974                 outl(PciADDR, n);
975
976                 if(pcicfgmode < 0){
977                         /*
978                          * The 'key' part of PciCSE should be 0.
979                          */
980                         n = inb(PciCSE);
981                         if(!(n & 0xF0)){
982                                 outb(PciCSE, 0x0E);
983                                 if(inb(PciCSE) == 0x0E){
984                                         pcicfgmode = 2;
985                                         pcimaxdno = 15;
986                                 }
987                         }
988                         outb(PciCSE, n);
989                 }
990         }
991
992         if(pcicfgmode < 0 || pcibios) {
993                 if((pcibiossi = pcibiosinit()) == nil)
994                         goto out;
995                 pcicfgrw8 = pcicfgrw8bios;
996                 pcicfgrw16 = pcicfgrw16bios;
997                 pcicfgrw32 = pcicfgrw32bios;
998                 pcicfgmode = 3;
999         }
1000
1001         fmtinstall('T', tbdffmt);
1002
1003         if(p = getconf("*pcimaxbno"))
1004                 pcimaxbno = strtoul(p, 0, 0);
1005         if(p = getconf("*pcimaxdno")){
1006                 n = strtoul(p, 0, 0);
1007                 if(n < pcimaxdno)
1008                         pcimaxdno = n;
1009         }
1010
1011         list = &pciroot;
1012         for(bno = 0; bno <= pcimaxbno; bno++) {
1013                 int sbno = bno;
1014                 bno = pcilscan(bno, list, nil);
1015
1016                 while(*list)
1017                         list = &(*list)->link;
1018
1019                 if (sbno == 0) {
1020                         Pcidev *pci;
1021
1022                         /*
1023                           * If we have found a PCI-to-Cardbus bridge, make sure
1024                           * it has no valid mappings anymore.
1025                           */
1026                         for(pci = pciroot; pci != nil; pci = pci->link){
1027                                 if (pci->ccrb == 6 && pci->ccru == 7) {
1028                                         ushort bcr;
1029
1030                                         /* reset the cardbus */
1031                                         bcr = pcicfgr16(pci, PciBCR);
1032                                         pcicfgw16(pci, PciBCR, 0x40 | bcr);
1033                                         delay(50);
1034                                 }
1035                         }
1036                 }
1037         }
1038
1039         if(pciroot == nil)
1040                 goto out;
1041
1042         if(nobios) {
1043                 /*
1044                  * Work out how big the top bus is
1045                  */
1046                 pcibussize(pciroot, &mema, &ioa);
1047
1048                 /*
1049                  * Align the windows and map it
1050                  */
1051                 ioa = 0x1000;
1052                 mema = 0x90000000;
1053
1054                 pcilog("Mask sizes: mem=%lux io=%lux\n", mema, ioa);
1055
1056                 pcibusmap(pciroot, &mema, &ioa, 1);
1057                 DBG("Sizes2: mem=%lux io=%lux\n", mema, ioa);
1058
1059                 goto out;
1060         }
1061
1062         if(!nopcirouting)
1063                 pcirouting();
1064
1065 out:
1066         pcireservemem();
1067         unlock(&pcicfginitlock);
1068
1069         if(getconf("*pcihinv"))
1070                 pcihinv(nil);
1071 }
1072
1073 static void
1074 pcireservemem(void)
1075 {
1076         int i;
1077         Pcidev *p;
1078
1079         /*
1080          * mark all the physical address space claimed by pci devices
1081          * as in use, so that upaalloc doesn't give it out.
1082          */
1083         for(p=pciroot; p; p=p->list)
1084                 for(i=0; i<nelem(p->mem); i++)
1085                         if(p->mem[i].bar && (p->mem[i].bar&1) == 0)
1086                                 upareserve(p->mem[i].bar&~0x0F, p->mem[i].size);
1087 }
1088
1089 static int
1090 pcicfgrw8raw(int tbdf, int rno, int data, int read)
1091 {
1092         int o, type, x;
1093
1094         if(pcicfgmode == -1)
1095                 pcicfginit();
1096
1097         if(BUSBNO(tbdf))
1098                 type = 0x01;
1099         else
1100                 type = 0x00;
1101         x = -1;
1102         if(BUSDNO(tbdf) > pcimaxdno)
1103                 return x;
1104
1105         lock(&pcicfglock);
1106         switch(pcicfgmode){
1107
1108         case 1:
1109                 o = rno & 0x03;
1110                 rno &= ~0x03;
1111                 outl(PciADDR, 0x80000000|BUSBDF(tbdf)|rno|type);
1112                 if(read)
1113                         x = inb(PciDATA+o);
1114                 else
1115                         outb(PciDATA+o, data);
1116                 outl(PciADDR, 0);
1117                 break;
1118
1119         case 2:
1120                 outb(PciCSE, 0x80|(BUSFNO(tbdf)<<1));
1121                 outb(PciFORWARD, BUSBNO(tbdf));
1122                 if(read)
1123                         x = inb((0xC000|(BUSDNO(tbdf)<<8)) + rno);
1124                 else
1125                         outb((0xC000|(BUSDNO(tbdf)<<8)) + rno, data);
1126                 outb(PciCSE, 0);
1127                 break;
1128         }
1129         unlock(&pcicfglock);
1130
1131         return x;
1132 }
1133
1134 int
1135 pcicfgr8(Pcidev* pcidev, int rno)
1136 {
1137         return pcicfgrw8(pcidev->tbdf, rno, 0, 1);
1138 }
1139
1140 void
1141 pcicfgw8(Pcidev* pcidev, int rno, int data)
1142 {
1143         pcicfgrw8(pcidev->tbdf, rno, data, 0);
1144 }
1145
1146 static int
1147 pcicfgrw16raw(int tbdf, int rno, int data, int read)
1148 {
1149         int o, type, x;
1150
1151         if(pcicfgmode == -1)
1152                 pcicfginit();
1153
1154         if(BUSBNO(tbdf))
1155                 type = 0x01;
1156         else
1157                 type = 0x00;
1158         x = -1;
1159         if(BUSDNO(tbdf) > pcimaxdno)
1160                 return x;
1161
1162         lock(&pcicfglock);
1163         switch(pcicfgmode){
1164
1165         case 1:
1166                 o = rno & 0x02;
1167                 rno &= ~0x03;
1168                 outl(PciADDR, 0x80000000|BUSBDF(tbdf)|rno|type);
1169                 if(read)
1170                         x = ins(PciDATA+o);
1171                 else
1172                         outs(PciDATA+o, data);
1173                 outl(PciADDR, 0);
1174                 break;
1175
1176         case 2:
1177                 outb(PciCSE, 0x80|(BUSFNO(tbdf)<<1));
1178                 outb(PciFORWARD, BUSBNO(tbdf));
1179                 if(read)
1180                         x = ins((0xC000|(BUSDNO(tbdf)<<8)) + rno);
1181                 else
1182                         outs((0xC000|(BUSDNO(tbdf)<<8)) + rno, data);
1183                 outb(PciCSE, 0);
1184                 break;
1185         }
1186         unlock(&pcicfglock);
1187
1188         return x;
1189 }
1190
1191 int
1192 pcicfgr16(Pcidev* pcidev, int rno)
1193 {
1194         return pcicfgrw16(pcidev->tbdf, rno, 0, 1);
1195 }
1196
1197 void
1198 pcicfgw16(Pcidev* pcidev, int rno, int data)
1199 {
1200         pcicfgrw16(pcidev->tbdf, rno, data, 0);
1201 }
1202
1203 static int
1204 pcicfgrw32raw(int tbdf, int rno, int data, int read)
1205 {
1206         int type, x;
1207
1208         if(pcicfgmode == -1)
1209                 pcicfginit();
1210
1211         if(BUSBNO(tbdf))
1212                 type = 0x01;
1213         else
1214                 type = 0x00;
1215         x = -1;
1216         if(BUSDNO(tbdf) > pcimaxdno)
1217                 return x;
1218
1219         lock(&pcicfglock);
1220         switch(pcicfgmode){
1221
1222         case 1:
1223                 rno &= ~0x03;
1224                 outl(PciADDR, 0x80000000|BUSBDF(tbdf)|rno|type);
1225                 if(read)
1226                         x = inl(PciDATA);
1227                 else
1228                         outl(PciDATA, data);
1229                 outl(PciADDR, 0);
1230                 break;
1231
1232         case 2:
1233                 outb(PciCSE, 0x80|(BUSFNO(tbdf)<<1));
1234                 outb(PciFORWARD, BUSBNO(tbdf));
1235                 if(read)
1236                         x = inl((0xC000|(BUSDNO(tbdf)<<8)) + rno);
1237                 else
1238                         outl((0xC000|(BUSDNO(tbdf)<<8)) + rno, data);
1239                 outb(PciCSE, 0);
1240                 break;
1241         }
1242         unlock(&pcicfglock);
1243
1244         return x;
1245 }
1246
1247 int
1248 pcicfgr32(Pcidev* pcidev, int rno)
1249 {
1250         return pcicfgrw32(pcidev->tbdf, rno, 0, 1);
1251 }
1252
1253 void
1254 pcicfgw32(Pcidev* pcidev, int rno, int data)
1255 {
1256         pcicfgrw32(pcidev->tbdf, rno, data, 0);
1257 }
1258
1259 Pcidev*
1260 pcimatch(Pcidev* prev, int vid, int did)
1261 {
1262         if(pcicfgmode == -1)
1263                 pcicfginit();
1264
1265         if(prev == nil)
1266                 prev = pcilist;
1267         else
1268                 prev = prev->list;
1269
1270         while(prev != nil){
1271                 if((vid == 0 || prev->vid == vid)
1272                 && (did == 0 || prev->did == did))
1273                         break;
1274                 prev = prev->list;
1275         }
1276         return prev;
1277 }
1278
1279 Pcidev*
1280 pcimatchtbdf(int tbdf)
1281 {
1282         Pcidev *pcidev;
1283
1284         if(pcicfgmode == -1)
1285                 pcicfginit();
1286
1287         for(pcidev = pcilist; pcidev != nil; pcidev = pcidev->list) {
1288                 if(pcidev->tbdf == tbdf)
1289                         break;
1290         }
1291         return pcidev;
1292 }
1293
1294 uchar
1295 pciipin(Pcidev *pci, uchar pin)
1296 {
1297         if (pci == nil)
1298                 pci = pcilist;
1299
1300         while (pci) {
1301                 uchar intl;
1302
1303                 if (pcicfgr8(pci, PciINTP) == pin && pci->intl != 0 && pci->intl != 0xff)
1304                         return pci->intl;
1305
1306                 if (pci->bridge && (intl = pciipin(pci->bridge, pin)) != 0)
1307                         return intl;
1308
1309                 pci = pci->list;
1310         }
1311         return 0;
1312 }
1313
1314 static void
1315 pcilhinv(Pcidev* p)
1316 {
1317         int i;
1318         Pcidev *t;
1319
1320         if(p == nil) {
1321                 putstrn(PCICONS.output, PCICONS.ptr);
1322                 p = pciroot;
1323                 print("bus dev type vid  did intl memory\n");
1324         }
1325         for(t = p; t != nil; t = t->link) {
1326                 print("%d  %2d/%d %.2ux %.2ux %.2ux %.4ux %.4ux %3d  ",
1327                         BUSBNO(t->tbdf), BUSDNO(t->tbdf), BUSFNO(t->tbdf),
1328                         t->ccrb, t->ccru, t->ccrp, t->vid, t->did, t->intl);
1329
1330                 for(i = 0; i < nelem(p->mem); i++) {
1331                         if(t->mem[i].size == 0)
1332                                 continue;
1333                         print("%d:%.8lux %d ", i,
1334                                 t->mem[i].bar, t->mem[i].size);
1335                 }
1336                 if(t->ioa.bar || t->ioa.size)
1337                         print("ioa:%.8lux %d ", t->ioa.bar, t->ioa.size);
1338                 if(t->mema.bar || t->mema.size)
1339                         print("mema:%.8lux %d ", t->mema.bar, t->mema.size);
1340                 if(t->bridge)
1341                         print("->%d", BUSBNO(t->bridge->tbdf));
1342                 print("\n");
1343         }
1344         while(p != nil) {
1345                 if(p->bridge != nil)
1346                         pcilhinv(p->bridge);
1347                 p = p->link;
1348         }
1349 }
1350
1351 void
1352 pcihinv(Pcidev* p)
1353 {
1354         if(pcicfgmode == -1)
1355                 pcicfginit();
1356         lock(&pcicfginitlock);
1357         pcilhinv(p);
1358         unlock(&pcicfginitlock);
1359 }
1360
1361 void
1362 pcireset(void)
1363 {
1364         Pcidev *p;
1365
1366         if(pcicfgmode == -1)
1367                 pcicfginit();
1368
1369         for(p = pcilist; p != nil; p = p->list) {
1370                 /* don't mess with the bridges */
1371                 if(p->ccrb == 0x06)
1372                         continue;
1373                 pciclrbme(p);
1374         }
1375 }
1376
1377 void
1378 pcisetioe(Pcidev* p)
1379 {
1380         p->pcr |= IOen;
1381         pcicfgw16(p, PciPCR, p->pcr);
1382 }
1383
1384 void
1385 pciclrioe(Pcidev* p)
1386 {
1387         p->pcr &= ~IOen;
1388         pcicfgw16(p, PciPCR, p->pcr);
1389 }
1390
1391 void
1392 pcisetbme(Pcidev* p)
1393 {
1394         p->pcr |= MASen;
1395         pcicfgw16(p, PciPCR, p->pcr);
1396 }
1397
1398 void
1399 pciclrbme(Pcidev* p)
1400 {
1401         p->pcr &= ~MASen;
1402         pcicfgw16(p, PciPCR, p->pcr);
1403 }
1404
1405 void
1406 pcisetmwi(Pcidev* p)
1407 {
1408         p->pcr |= MemWrInv;
1409         pcicfgw16(p, PciPCR, p->pcr);
1410 }
1411
1412 void
1413 pciclrmwi(Pcidev* p)
1414 {
1415         p->pcr &= ~MemWrInv;
1416         pcicfgw16(p, PciPCR, p->pcr);
1417 }
1418
1419 static int
1420 enumcaps(Pcidev *p, int (*fmatch)(Pcidev*, int, int, int), int arg)
1421 {
1422         int i, r, cap, off;
1423
1424         /* status register bit 4 has capabilities */
1425         if((pcicfgr16(p, PciPSR) & 1<<4) == 0)
1426                 return -1;      
1427         switch(pcicfgr8(p, PciHDT) & 0x7F){
1428         default:
1429                 return -1;
1430         case 0:                         /* etc */
1431         case 1:                         /* pci to pci bridge */
1432                 off = 0x34;
1433                 break;
1434         case 2:                         /* cardbus bridge */
1435                 off = 0x14;
1436                 break;
1437         }
1438         for(i = 48; i--;){
1439                 off = pcicfgr8(p, off);
1440                 if(off < 0x40 || (off & 3))
1441                         break;
1442                 off &= ~3;
1443                 cap = pcicfgr8(p, off);
1444                 if(cap == 0xff)
1445                         break;
1446                 r = (*fmatch)(p, cap, off, arg);
1447                 if(r < 0)
1448                         break;
1449                 if(r == 0)
1450                         return off;
1451                 off++;
1452         }
1453         return -1;
1454 }
1455
1456 static int
1457 matchcap(Pcidev *p, int cap, int off, int arg)
1458 {
1459         USED(off);
1460         return cap != arg;
1461 }
1462
1463 static int
1464 matchhtcap(Pcidev *p, int cap, int off, int arg)
1465 {
1466         int mask;
1467
1468         if(cap != PciCapHTC)
1469                 return 1;
1470         if(arg == 0x00 || arg == 0x20)
1471                 mask = 0xE0;
1472         else
1473                 mask = 0xF8;
1474         cap = pcicfgr8(p, off+3);
1475         return (cap & mask) != arg;
1476 }
1477
1478 int
1479 pcicap(Pcidev *p, int cap)
1480 {
1481         return enumcaps(p, matchcap, cap);
1482 }
1483
1484 int
1485 pcihtcap(Pcidev *p, int cap)
1486 {
1487         return enumcaps(p, matchhtcap, cap);
1488 }
1489
1490 static int
1491 pcigetpmrb(Pcidev* p)
1492 {
1493         if(p->pmrb != 0)
1494                 return p->pmrb;
1495         return p->pmrb = pcicap(p, PciCapPMG);
1496 }
1497
1498 int
1499 pcigetpms(Pcidev* p)
1500 {
1501         int pmcsr, ptr;
1502
1503         if((ptr = pcigetpmrb(p)) == -1)
1504                 return -1;
1505
1506         /*
1507          * Power Management Register Block:
1508          *  offset 0:   Capability ID
1509          *         1:   next item pointer
1510          *         2:   capabilities
1511          *         4:   control/status
1512          *         6:   bridge support extensions
1513          *         7:   data
1514          */
1515         pmcsr = pcicfgr16(p, ptr+4);
1516
1517         return pmcsr & 0x0003;
1518 }
1519
1520 int
1521 pcisetpms(Pcidev* p, int state)
1522 {
1523         int ostate, pmc, pmcsr, ptr;
1524
1525         if((ptr = pcigetpmrb(p)) == -1)
1526                 return -1;
1527
1528         pmc = pcicfgr16(p, ptr+2);
1529         pmcsr = pcicfgr16(p, ptr+4);
1530         ostate = pmcsr & 0x0003;
1531         pmcsr &= ~0x0003;
1532
1533         switch(state){
1534         default:
1535                 return -1;
1536         case 0:
1537                 break;
1538         case 1:
1539                 if(!(pmc & 0x0200))
1540                         return -1;
1541                 break;
1542         case 2:
1543                 if(!(pmc & 0x0400))
1544                         return -1;
1545                 break;
1546         case 3:
1547                 break;
1548         }
1549         pmcsr |= state;
1550         pcicfgw16(p, ptr+4, pmcsr);
1551
1552         return ostate;
1553 }
1554
1555 int
1556 pcinextcap(Pcidev *pci, int offset)
1557 {
1558         if(offset == 0) {
1559                 if((pcicfgr16(pci, PciPSR) & (1<<4)) == 0)
1560                         return 0; /* no capabilities */
1561                 offset = PciCAP-1;
1562         }
1563         return pcicfgr8(pci, offset+1) & ~3;
1564 }