]> git.lizzy.rs Git - plan9front.git/blob - sys/src/9/pc/pci.c
27102e06f5b5d80ac5bdbcc5ad3c44bcbc5c7e66
[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, 0x2810, pIIxget, pIIxset },   /* Intel 82801HB/HR (ich8/r) */
669         { 0x8086, 0x2812, pIIxget, pIIxset },   /* Intel 82801HH (ich8dh) */
670         { 0x8086, 0x2912, pIIxget, pIIxset },   /* Intel 82801ih ich9dh */
671         { 0x8086, 0x2914, pIIxget, pIIxset },   /* Intel 82801io ich9do */
672         { 0x8086, 0x2916, pIIxget, pIIxset },   /* Intel 82801ibr ich9r */
673         { 0x8086, 0x2917, pIIxget, pIIxset },   /* Intel 82801iem ich9m-e  */
674         { 0x8086, 0x2918, pIIxget, pIIxset },   /* Intel 82801ib ich9 */
675         { 0x8086, 0x2919, pIIxget, pIIxset },   /* Intel 82801? ich9m  */
676         { 0x8086, 0x3a16, pIIxget, pIIxset },   /* Intel 82801jir ich10r */
677         { 0x8086, 0x3a18, pIIxget, pIIxset },   /* Intel 82801jib ich10 */
678         { 0x8086, 0x3a40, pIIxget, pIIxset },   /* Intel 82801ji */
679         { 0x8086, 0x3a42, pIIxget, pIIxset },   /* Intel 82801ji */
680         { 0x8086, 0x3a48, pIIxget, pIIxset },   /* Intel 82801ji */
681         { 0x8086, 0x3b06, pIIxget, pIIxset },   /* Intel 82801? ibex peak */
682         { 0x8086, 0x3b14, pIIxget, pIIxset },   /* Intel 82801? 3420 */
683         { 0x8086, 0x1c52, pIIxget, pIIxset },   /* Intel 82q65 cougar point pch */
684         { 0x8086, 0x1c54, pIIxget, pIIxset },   /* Intel 82q67 cougar point pch */
685         { 0x1106, 0x0586, viaget, viaset },     /* Viatech 82C586 */
686         { 0x1106, 0x0596, viaget, viaset },     /* Viatech 82C596 */
687         { 0x1106, 0x0686, viaget, viaset },     /* Viatech 82C686 */
688         { 0x1106, 0x3227, viaget, viaset },     /* Viatech VT8237 */
689         { 0x1106, 0x3287, viaget, viaset },     /* Viatech VT8251 */
690         { 0x1106, 0x8410, viaget, viaset },     /* Viatech PV530 bridge */
691         { 0x1045, 0xc700, optiget, optiset },   /* Opti 82C700 */
692         { 0x10b9, 0x1533, aliget, aliset },     /* Al M1533 */
693         { 0x1039, 0x0008, pIIxget, pIIxset },   /* SI 503 */
694         { 0x1039, 0x0496, pIIxget, pIIxset },   /* SI 496 */
695         { 0x1078, 0x0100, cyrixget, cyrixset }, /* Cyrix 5530 Legacy */
696
697         { 0x1022, 0x746b, nil, nil },           /* AMD 8111 */
698         { 0x10de, 0x00d1, nil, nil },           /* NVIDIA nForce 3 */
699         { 0x10de, 0x00e0, nil, nil },           /* NVIDIA nForce 3 250 Series */
700         { 0x10de, 0x00e1, nil, nil },           /* NVIDIA nForce 3 250 Series */
701         { 0x1166, 0x0200, nil, nil },           /* ServerWorks ServerSet III LE */
702         { 0x1002, 0x4377, nil, nil },           /* ATI Radeon Xpress 200M */
703         { 0x1002, 0x4372, nil, nil },           /* ATI SB400 */
704         { 0x1002, 0x9601, nil, nil },           /* AMD SB710 */
705         { 0x1002, 0x438d, nil, nil },           /* AMD SB600 */
706         { 0x1002, 0x439d, nil, nil },           /* AMD SB810 */
707 };
708
709 typedef struct Slot Slot;
710 struct Slot {
711         uchar   bus;            /* Pci bus number */
712         uchar   dev;            /* Pci device number */
713         uchar   maps[12];       /* Avoid structs!  Link and mask. */
714         uchar   slot;           /* Add-in/built-in slot */
715         uchar   reserved;
716 };
717
718 typedef struct Router Router;
719 struct Router {
720         uchar   signature[4];   /* Routing table signature */
721         uchar   version[2];     /* Version number */
722         uchar   size[2];        /* Total table size */
723         uchar   bus;            /* Interrupt router bus number */
724         uchar   devfn;          /* Router's devfunc */
725         uchar   pciirqs[2];     /* Exclusive PCI irqs */
726         uchar   compat[4];      /* Compatible PCI interrupt router */
727         uchar   miniport[4];    /* Miniport data */
728         uchar   reserved[11];
729         uchar   checksum;
730 };
731
732 static ushort pciirqs;          /* Exclusive PCI irqs */
733 static Bridge *southbridge;     /* Which southbridge to use. */
734
735 static void
736 pcirouting(void)
737 {
738         Slot *e;
739         Router *r;
740         int size, i, fn, tbdf;
741         Pcidev *sbpci, *pci;
742         uchar *p, pin, irq, link, *map;
743
744         if((p = sigsearch("$PIR")) == 0)
745                 return;
746
747         r = (Router*)p;
748         size = (r->size[1] << 8)|r->size[0];
749         if(size < sizeof(Router) || checksum(r, size))
750                 return;
751
752         if(0) print("PCI interrupt routing table version %d.%d at %p\n",
753                 r->version[0], r->version[1], r);
754
755         tbdf = (BusPCI << 24)|(r->bus << 16)|(r->devfn << 8);
756         sbpci = pcimatchtbdf(tbdf);
757         if(sbpci == nil) {
758                 print("pcirouting: Cannot find south bridge %T\n", tbdf);
759                 return;
760         }
761
762         for(i = 0; i != nelem(southbridges); i++)
763                 if(sbpci->vid == southbridges[i].vid && sbpci->did == southbridges[i].did)
764                         break;
765
766         if(i == nelem(southbridges)) {
767                 print("pcirouting: ignoring south bridge %T %.4uX/%.4uX\n", tbdf, sbpci->vid, sbpci->did);
768                 return;
769         }
770         southbridge = &southbridges[i];
771         if(southbridge->get == nil || southbridge->set == nil)
772                 return;
773
774         pciirqs = (r->pciirqs[1] << 8)|r->pciirqs[0];
775         for(e = (Slot *)&r[1]; (uchar *)e < p + size; e++) {
776                 if (0) {
777                         print("%.2uX/%.2uX %.2uX: ", e->bus, e->dev, e->slot);
778                         for (i = 0; i != 4; i++) {
779                                 uchar *m = &e->maps[i * 3];
780                                 print("[%d] %.2uX %.4uX ",
781                                         i, m[0], (m[2] << 8)|m[1]);
782                         }
783                         print("\n");
784                 }
785                 for(fn = 0; fn != 8; fn++) {
786                         tbdf = (BusPCI << 24)|(e->bus << 16)|((e->dev | fn) << 8);
787                         pci = pcimatchtbdf(tbdf);
788                         if(pci == nil)
789                                 continue;
790                         pin = pcicfgr8(pci, PciINTP);
791                         if(pin == 0 || pin == 0xff)
792                                 continue;
793
794                         map = &e->maps[(pin - 1) * 3];
795                         link = map[0];
796                         irq = southbridge->get(sbpci, link);
797                         if(irq == 0 || irq == pci->intl)
798                                 continue;
799                         if(pci->intl != 0 && pci->intl != 0xFF) {
800                                 print("pcirouting: BIOS workaround: %T at pin %d link %d irq %d -> %d\n",
801                                           tbdf, pin, link, irq, pci->intl);
802                                 southbridge->set(sbpci, link, pci->intl);
803                                 continue;
804                         }
805                         print("pcirouting: %T at pin %d link %d irq %d\n", tbdf, pin, link, irq);
806                         pcicfgw8(pci, PciINTL, irq);
807                         pci->intl = irq;
808                 }
809         }
810 }
811
812 static void pcireservemem(void);
813
814 static int
815 pcicfgrw8bios(int tbdf, int rno, int data, int read)
816 {
817         BIOS32ci ci;
818
819         if(pcibiossi == nil)
820                 return -1;
821
822         memset(&ci, 0, sizeof(BIOS32ci));
823         ci.ebx = (BUSBNO(tbdf)<<8)|(BUSDNO(tbdf)<<3)|BUSFNO(tbdf);
824         ci.edi = rno;
825         if(read){
826                 ci.eax = 0xB108;
827                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
828                         return ci.ecx & 0xFF;
829         }
830         else{
831                 ci.eax = 0xB10B;
832                 ci.ecx = data & 0xFF;
833                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
834                         return 0;
835         }
836
837         return -1;
838 }
839
840 static int
841 pcicfgrw16bios(int tbdf, int rno, int data, int read)
842 {
843         BIOS32ci ci;
844
845         if(pcibiossi == nil)
846                 return -1;
847
848         memset(&ci, 0, sizeof(BIOS32ci));
849         ci.ebx = (BUSBNO(tbdf)<<8)|(BUSDNO(tbdf)<<3)|BUSFNO(tbdf);
850         ci.edi = rno;
851         if(read){
852                 ci.eax = 0xB109;
853                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
854                         return ci.ecx & 0xFFFF;
855         }
856         else{
857                 ci.eax = 0xB10C;
858                 ci.ecx = data & 0xFFFF;
859                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
860                         return 0;
861         }
862
863         return -1;
864 }
865
866 static int
867 pcicfgrw32bios(int tbdf, int rno, int data, int read)
868 {
869         BIOS32ci ci;
870
871         if(pcibiossi == nil)
872                 return -1;
873
874         memset(&ci, 0, sizeof(BIOS32ci));
875         ci.ebx = (BUSBNO(tbdf)<<8)|(BUSDNO(tbdf)<<3)|BUSFNO(tbdf);
876         ci.edi = rno;
877         if(read){
878                 ci.eax = 0xB10A;
879                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
880                         return ci.ecx;
881         }
882         else{
883                 ci.eax = 0xB10D;
884                 ci.ecx = data;
885                 if(!bios32ci(pcibiossi, &ci)/* && !(ci.eax & 0xFF)*/)
886                         return 0;
887         }
888
889         return -1;
890 }
891
892 static BIOS32si*
893 pcibiosinit(void)
894 {
895         BIOS32ci ci;
896         BIOS32si *si;
897
898         if((si = bios32open("$PCI")) == nil)
899                 return nil;
900
901         memset(&ci, 0, sizeof(BIOS32ci));
902         ci.eax = 0xB101;
903         if(bios32ci(si, &ci) || ci.edx != ((' '<<24)|('I'<<16)|('C'<<8)|'P')){
904                 free(si);
905                 return nil;
906         }
907         if(ci.eax & 0x01)
908                 pcimaxdno = 31;
909         else
910                 pcimaxdno = 15;
911         pcimaxbno = ci.ecx & 0xff;
912
913         return si;
914 }
915
916 void
917 pcibussize(Pcidev *root, ulong *msize, ulong *iosize)
918 {
919         *msize = 0;
920         *iosize = 0;
921         pcibusmap(root, msize, iosize, 0);
922 }
923
924 static void
925 pcicfginit(void)
926 {
927         char *p;
928         Pcidev **list;
929         ulong mema, ioa;
930         int bno, n, pcibios;
931
932         lock(&pcicfginitlock);
933         if(pcicfgmode != -1)
934                 goto out;
935
936         pcibios = 0;
937         if(getconf("*nobios"))
938                 nobios = 1;
939         else if(getconf("*pcibios"))
940                 pcibios = 1;
941         if(getconf("*nopcirouting"))
942                 nopcirouting = 1;
943
944         /*
945          * Try to determine which PCI configuration mode is implemented.
946          * Mode2 uses a byte at 0xCF8 and another at 0xCFA; Mode1 uses
947          * a DWORD at 0xCF8 and another at 0xCFC and will pass through
948          * any non-DWORD accesses as normal I/O cycles. There shouldn't be
949          * a device behind these addresses so if Mode1 accesses fail try
950          * for Mode2 (Mode2 is deprecated).
951          */
952         if(!pcibios){
953                 /*
954                  * Bits [30:24] of PciADDR must be 0,
955                  * according to the spec.
956                  */
957                 n = inl(PciADDR);
958                 if(!(n & 0x7F000000)){
959                         outl(PciADDR, 0x80000000);
960                         outb(PciADDR+3, 0);
961                         if(inl(PciADDR) & 0x80000000){
962                                 pcicfgmode = 1;
963                                 pcimaxdno = 31;
964                         }
965                 }
966                 outl(PciADDR, n);
967
968                 if(pcicfgmode < 0){
969                         /*
970                          * The 'key' part of PciCSE should be 0.
971                          */
972                         n = inb(PciCSE);
973                         if(!(n & 0xF0)){
974                                 outb(PciCSE, 0x0E);
975                                 if(inb(PciCSE) == 0x0E){
976                                         pcicfgmode = 2;
977                                         pcimaxdno = 15;
978                                 }
979                         }
980                         outb(PciCSE, n);
981                 }
982         }
983
984         if(pcicfgmode < 0 || pcibios) {
985                 if((pcibiossi = pcibiosinit()) == nil)
986                         goto out;
987                 pcicfgrw8 = pcicfgrw8bios;
988                 pcicfgrw16 = pcicfgrw16bios;
989                 pcicfgrw32 = pcicfgrw32bios;
990                 pcicfgmode = 3;
991         }
992
993         fmtinstall('T', tbdffmt);
994
995         if(p = getconf("*pcimaxbno"))
996                 pcimaxbno = strtoul(p, 0, 0);
997         if(p = getconf("*pcimaxdno")){
998                 n = strtoul(p, 0, 0);
999                 if(n < pcimaxdno)
1000                         pcimaxdno = n;
1001         }
1002
1003         list = &pciroot;
1004         for(bno = 0; bno <= pcimaxbno; bno++) {
1005                 int sbno = bno;
1006                 bno = pcilscan(bno, list, nil);
1007
1008                 while(*list)
1009                         list = &(*list)->link;
1010
1011                 if (sbno == 0) {
1012                         Pcidev *pci;
1013
1014                         /*
1015                           * If we have found a PCI-to-Cardbus bridge, make sure
1016                           * it has no valid mappings anymore.
1017                           */
1018                         for(pci = pciroot; pci != nil; pci = pci->link){
1019                                 if (pci->ccrb == 6 && pci->ccru == 7) {
1020                                         ushort bcr;
1021
1022                                         /* reset the cardbus */
1023                                         bcr = pcicfgr16(pci, PciBCR);
1024                                         pcicfgw16(pci, PciBCR, 0x40 | bcr);
1025                                         delay(50);
1026                                 }
1027                         }
1028                 }
1029         }
1030
1031         if(pciroot == nil)
1032                 goto out;
1033
1034         if(nobios) {
1035                 /*
1036                  * Work out how big the top bus is
1037                  */
1038                 pcibussize(pciroot, &mema, &ioa);
1039
1040                 /*
1041                  * Align the windows and map it
1042                  */
1043                 ioa = 0x1000;
1044                 mema = 0x90000000;
1045
1046                 pcilog("Mask sizes: mem=%lux io=%lux\n", mema, ioa);
1047
1048                 pcibusmap(pciroot, &mema, &ioa, 1);
1049                 DBG("Sizes2: mem=%lux io=%lux\n", mema, ioa);
1050
1051                 goto out;
1052         }
1053
1054         if(!nopcirouting)
1055                 pcirouting();
1056
1057 out:
1058         pcireservemem();
1059         unlock(&pcicfginitlock);
1060
1061         if(getconf("*pcihinv"))
1062                 pcihinv(nil);
1063 }
1064
1065 static void
1066 pcireservemem(void)
1067 {
1068         int i;
1069         Pcidev *p;
1070
1071         /*
1072          * mark all the physical address space claimed by pci devices
1073          * as in use, so that upaalloc doesn't give it out.
1074          */
1075         for(p=pciroot; p; p=p->list)
1076                 for(i=0; i<nelem(p->mem); i++)
1077                         if(p->mem[i].bar && (p->mem[i].bar&1) == 0)
1078                                 upareserve(p->mem[i].bar&~0x0F, p->mem[i].size);
1079 }
1080
1081 static int
1082 pcicfgrw8raw(int tbdf, int rno, int data, int read)
1083 {
1084         int o, type, x;
1085
1086         if(pcicfgmode == -1)
1087                 pcicfginit();
1088
1089         if(BUSBNO(tbdf))
1090                 type = 0x01;
1091         else
1092                 type = 0x00;
1093         x = -1;
1094         if(BUSDNO(tbdf) > pcimaxdno)
1095                 return x;
1096
1097         lock(&pcicfglock);
1098         switch(pcicfgmode){
1099
1100         case 1:
1101                 o = rno & 0x03;
1102                 rno &= ~0x03;
1103                 outl(PciADDR, 0x80000000|BUSBDF(tbdf)|rno|type);
1104                 if(read)
1105                         x = inb(PciDATA+o);
1106                 else
1107                         outb(PciDATA+o, data);
1108                 outl(PciADDR, 0);
1109                 break;
1110
1111         case 2:
1112                 outb(PciCSE, 0x80|(BUSFNO(tbdf)<<1));
1113                 outb(PciFORWARD, BUSBNO(tbdf));
1114                 if(read)
1115                         x = inb((0xC000|(BUSDNO(tbdf)<<8)) + rno);
1116                 else
1117                         outb((0xC000|(BUSDNO(tbdf)<<8)) + rno, data);
1118                 outb(PciCSE, 0);
1119                 break;
1120         }
1121         unlock(&pcicfglock);
1122
1123         return x;
1124 }
1125
1126 int
1127 pcicfgr8(Pcidev* pcidev, int rno)
1128 {
1129         return pcicfgrw8(pcidev->tbdf, rno, 0, 1);
1130 }
1131
1132 void
1133 pcicfgw8(Pcidev* pcidev, int rno, int data)
1134 {
1135         pcicfgrw8(pcidev->tbdf, rno, data, 0);
1136 }
1137
1138 static int
1139 pcicfgrw16raw(int tbdf, int rno, int data, int read)
1140 {
1141         int o, type, x;
1142
1143         if(pcicfgmode == -1)
1144                 pcicfginit();
1145
1146         if(BUSBNO(tbdf))
1147                 type = 0x01;
1148         else
1149                 type = 0x00;
1150         x = -1;
1151         if(BUSDNO(tbdf) > pcimaxdno)
1152                 return x;
1153
1154         lock(&pcicfglock);
1155         switch(pcicfgmode){
1156
1157         case 1:
1158                 o = rno & 0x02;
1159                 rno &= ~0x03;
1160                 outl(PciADDR, 0x80000000|BUSBDF(tbdf)|rno|type);
1161                 if(read)
1162                         x = ins(PciDATA+o);
1163                 else
1164                         outs(PciDATA+o, data);
1165                 outl(PciADDR, 0);
1166                 break;
1167
1168         case 2:
1169                 outb(PciCSE, 0x80|(BUSFNO(tbdf)<<1));
1170                 outb(PciFORWARD, BUSBNO(tbdf));
1171                 if(read)
1172                         x = ins((0xC000|(BUSDNO(tbdf)<<8)) + rno);
1173                 else
1174                         outs((0xC000|(BUSDNO(tbdf)<<8)) + rno, data);
1175                 outb(PciCSE, 0);
1176                 break;
1177         }
1178         unlock(&pcicfglock);
1179
1180         return x;
1181 }
1182
1183 int
1184 pcicfgr16(Pcidev* pcidev, int rno)
1185 {
1186         return pcicfgrw16(pcidev->tbdf, rno, 0, 1);
1187 }
1188
1189 void
1190 pcicfgw16(Pcidev* pcidev, int rno, int data)
1191 {
1192         pcicfgrw16(pcidev->tbdf, rno, data, 0);
1193 }
1194
1195 static int
1196 pcicfgrw32raw(int tbdf, int rno, int data, int read)
1197 {
1198         int type, x;
1199
1200         if(pcicfgmode == -1)
1201                 pcicfginit();
1202
1203         if(BUSBNO(tbdf))
1204                 type = 0x01;
1205         else
1206                 type = 0x00;
1207         x = -1;
1208         if(BUSDNO(tbdf) > pcimaxdno)
1209                 return x;
1210
1211         lock(&pcicfglock);
1212         switch(pcicfgmode){
1213
1214         case 1:
1215                 rno &= ~0x03;
1216                 outl(PciADDR, 0x80000000|BUSBDF(tbdf)|rno|type);
1217                 if(read)
1218                         x = inl(PciDATA);
1219                 else
1220                         outl(PciDATA, data);
1221                 outl(PciADDR, 0);
1222                 break;
1223
1224         case 2:
1225                 outb(PciCSE, 0x80|(BUSFNO(tbdf)<<1));
1226                 outb(PciFORWARD, BUSBNO(tbdf));
1227                 if(read)
1228                         x = inl((0xC000|(BUSDNO(tbdf)<<8)) + rno);
1229                 else
1230                         outl((0xC000|(BUSDNO(tbdf)<<8)) + rno, data);
1231                 outb(PciCSE, 0);
1232                 break;
1233         }
1234         unlock(&pcicfglock);
1235
1236         return x;
1237 }
1238
1239 int
1240 pcicfgr32(Pcidev* pcidev, int rno)
1241 {
1242         return pcicfgrw32(pcidev->tbdf, rno, 0, 1);
1243 }
1244
1245 void
1246 pcicfgw32(Pcidev* pcidev, int rno, int data)
1247 {
1248         pcicfgrw32(pcidev->tbdf, rno, data, 0);
1249 }
1250
1251 Pcidev*
1252 pcimatch(Pcidev* prev, int vid, int did)
1253 {
1254         if(pcicfgmode == -1)
1255                 pcicfginit();
1256
1257         if(prev == nil)
1258                 prev = pcilist;
1259         else
1260                 prev = prev->list;
1261
1262         while(prev != nil){
1263                 if((vid == 0 || prev->vid == vid)
1264                 && (did == 0 || prev->did == did))
1265                         break;
1266                 prev = prev->list;
1267         }
1268         return prev;
1269 }
1270
1271 Pcidev*
1272 pcimatchtbdf(int tbdf)
1273 {
1274         Pcidev *pcidev;
1275
1276         if(pcicfgmode == -1)
1277                 pcicfginit();
1278
1279         for(pcidev = pcilist; pcidev != nil; pcidev = pcidev->list) {
1280                 if(pcidev->tbdf == tbdf)
1281                         break;
1282         }
1283         return pcidev;
1284 }
1285
1286 uchar
1287 pciipin(Pcidev *pci, uchar pin)
1288 {
1289         if (pci == nil)
1290                 pci = pcilist;
1291
1292         while (pci) {
1293                 uchar intl;
1294
1295                 if (pcicfgr8(pci, PciINTP) == pin && pci->intl != 0 && pci->intl != 0xff)
1296                         return pci->intl;
1297
1298                 if (pci->bridge && (intl = pciipin(pci->bridge, pin)) != 0)
1299                         return intl;
1300
1301                 pci = pci->list;
1302         }
1303         return 0;
1304 }
1305
1306 static void
1307 pcilhinv(Pcidev* p)
1308 {
1309         int i;
1310         Pcidev *t;
1311
1312         if(p == nil) {
1313                 putstrn(PCICONS.output, PCICONS.ptr);
1314                 p = pciroot;
1315                 print("bus dev type vid  did intl memory\n");
1316         }
1317         for(t = p; t != nil; t = t->link) {
1318                 print("%d  %2d/%d %.2ux %.2ux %.2ux %.4ux %.4ux %3d  ",
1319                         BUSBNO(t->tbdf), BUSDNO(t->tbdf), BUSFNO(t->tbdf),
1320                         t->ccrb, t->ccru, t->ccrp, t->vid, t->did, t->intl);
1321
1322                 for(i = 0; i < nelem(p->mem); i++) {
1323                         if(t->mem[i].size == 0)
1324                                 continue;
1325                         print("%d:%.8lux %d ", i,
1326                                 t->mem[i].bar, t->mem[i].size);
1327                 }
1328                 if(t->ioa.bar || t->ioa.size)
1329                         print("ioa:%.8lux %d ", t->ioa.bar, t->ioa.size);
1330                 if(t->mema.bar || t->mema.size)
1331                         print("mema:%.8lux %d ", t->mema.bar, t->mema.size);
1332                 if(t->bridge)
1333                         print("->%d", BUSBNO(t->bridge->tbdf));
1334                 print("\n");
1335         }
1336         while(p != nil) {
1337                 if(p->bridge != nil)
1338                         pcilhinv(p->bridge);
1339                 p = p->link;
1340         }
1341 }
1342
1343 void
1344 pcihinv(Pcidev* p)
1345 {
1346         if(pcicfgmode == -1)
1347                 pcicfginit();
1348         lock(&pcicfginitlock);
1349         pcilhinv(p);
1350         unlock(&pcicfginitlock);
1351 }
1352
1353 void
1354 pcireset(void)
1355 {
1356         Pcidev *p;
1357
1358         if(pcicfgmode == -1)
1359                 pcicfginit();
1360
1361         for(p = pcilist; p != nil; p = p->list) {
1362                 /* don't mess with the bridges */
1363                 if(p->ccrb == 0x06)
1364                         continue;
1365                 pciclrbme(p);
1366         }
1367 }
1368
1369 void
1370 pcisetioe(Pcidev* p)
1371 {
1372         p->pcr |= IOen;
1373         pcicfgw16(p, PciPCR, p->pcr);
1374 }
1375
1376 void
1377 pciclrioe(Pcidev* p)
1378 {
1379         p->pcr &= ~IOen;
1380         pcicfgw16(p, PciPCR, p->pcr);
1381 }
1382
1383 void
1384 pcisetbme(Pcidev* p)
1385 {
1386         p->pcr |= MASen;
1387         pcicfgw16(p, PciPCR, p->pcr);
1388 }
1389
1390 void
1391 pciclrbme(Pcidev* p)
1392 {
1393         p->pcr &= ~MASen;
1394         pcicfgw16(p, PciPCR, p->pcr);
1395 }
1396
1397 void
1398 pcisetmwi(Pcidev* p)
1399 {
1400         p->pcr |= MemWrInv;
1401         pcicfgw16(p, PciPCR, p->pcr);
1402 }
1403
1404 void
1405 pciclrmwi(Pcidev* p)
1406 {
1407         p->pcr &= ~MemWrInv;
1408         pcicfgw16(p, PciPCR, p->pcr);
1409 }
1410
1411 int
1412 pcicap(Pcidev *p, int cap)
1413 {
1414         int i, c, off;
1415
1416         /* status register bit 4 has capabilities */
1417         if((pcicfgr16(p, PciPSR) & 1<<4) == 0)
1418                 return -1;      
1419         switch(pcicfgr8(p, PciHDT) & 0x7F){
1420         default:
1421                 return -1;
1422         case 0:                         /* etc */
1423         case 1:                         /* pci to pci bridge */
1424                 off = 0x34;
1425                 break;
1426         case 2:                         /* cardbus bridge */
1427                 off = 0x14;
1428                 break;
1429         }
1430         for(i = 48; i--;){
1431                 off = pcicfgr8(p, off);
1432                 if(off < 0x40 || (off & 3))
1433                         break;
1434                 off &= ~3;
1435                 c = pcicfgr8(p, off);
1436                 if(c == 0xff)
1437                         break;
1438                 if(c == cap)
1439                         return off;
1440                 off++;
1441         }
1442         return -1;
1443 }
1444
1445 static int
1446 pcigetpmrb(Pcidev* p)
1447 {
1448         if(p->pmrb != 0)
1449                 return p->pmrb;
1450         return p->pmrb = pcicap(p, PciCapPMG);
1451 }
1452
1453 int
1454 pcigetpms(Pcidev* p)
1455 {
1456         int pmcsr, ptr;
1457
1458         if((ptr = pcigetpmrb(p)) == -1)
1459                 return -1;
1460
1461         /*
1462          * Power Management Register Block:
1463          *  offset 0:   Capability ID
1464          *         1:   next item pointer
1465          *         2:   capabilities
1466          *         4:   control/status
1467          *         6:   bridge support extensions
1468          *         7:   data
1469          */
1470         pmcsr = pcicfgr16(p, ptr+4);
1471
1472         return pmcsr & 0x0003;
1473 }
1474
1475 int
1476 pcisetpms(Pcidev* p, int state)
1477 {
1478         int ostate, pmc, pmcsr, ptr;
1479
1480         if((ptr = pcigetpmrb(p)) == -1)
1481                 return -1;
1482
1483         pmc = pcicfgr16(p, ptr+2);
1484         pmcsr = pcicfgr16(p, ptr+4);
1485         ostate = pmcsr & 0x0003;
1486         pmcsr &= ~0x0003;
1487
1488         switch(state){
1489         default:
1490                 return -1;
1491         case 0:
1492                 break;
1493         case 1:
1494                 if(!(pmc & 0x0200))
1495                         return -1;
1496                 break;
1497         case 2:
1498                 if(!(pmc & 0x0400))
1499                         return -1;
1500                 break;
1501         case 3:
1502                 break;
1503         }
1504         pmcsr |= state;
1505         pcicfgw16(p, ptr+4, pmcsr);
1506
1507         return ostate;
1508 }
1509
1510 int
1511 pcinextcap(Pcidev *pci, int offset)
1512 {
1513         if(offset == 0) {
1514                 if((pcicfgr16(pci, PciPSR) & (1<<4)) == 0)
1515                         return 0; /* no capabilities */
1516                 offset = PciCAP-1;
1517         }
1518         return pcicfgr8(pci, offset+1) & ~3;
1519 }