1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
|
/* $Xorg: scanpci.c,v 1.3 2000/08/17 19:51:10 cpqbld Exp $ */
/*
* name: scanpci.c
*
* purpose: This program will scan for and print details of
* devices on the PCI bus.
* author: Robin Cutshaw (robin@xfree86.org)
*
* supported O/S's: SVR4, UnixWare, SCO, Solaris,
* FreeBSD, NetBSD, 386BSD, BSDI BSD/386,
* Linux, Mach/386, ISC
* DOS (WATCOM 9.5 compiler)
*
* compiling: [g]cc scanpci.c -o scanpci
* for SVR4 (not Solaris), UnixWare use:
* [g]cc -DSVR4 scanpci.c -o scanpci
* for DOS, watcom 9.5:
* wcc386p -zq -omaxet -7 -4s -s -w3 -d2 name.c
* and link with PharLap or other dos extender for exe
*
*/
/* $XFree86: xc/programs/Xserver/hw/xfree86/etc/scanpci.c,v 3.34.2.10 1998/02/27 17:13:22 robin Exp $ */
/*
* Copyright 1995 by Robin Cutshaw <robin@XFree86.Org>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation, and that the names of the above listed copyright holder(s)
* not be used in advertising or publicity pertaining to distribution of
* the software without specific, written prior permission. The above listed
* copyright holder(s) make(s) no representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD
* TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
* LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
* DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
#if defined(__SVR4)
#if !defined(SVR4)
#define SVR4
#endif
#endif
#ifdef __EMX__
#define INCL_DOSFILEMGR
#include <os2.h>
#endif
#include <stdio.h>
#include <sys/types.h>
#if defined(SVR4)
#if defined(sun)
#define __EXTENSIONS__
#endif
#include <sys/proc.h>
#include <sys/tss.h>
#if defined(NCR)
#define __STDC
#include <sys/sysi86.h>
#undef __STDC
#else
#include <sys/sysi86.h>
#endif
#if defined(__SUNPRO_C) || defined(sun) || defined(__sun)
#include <sys/psw.h>
#else
#include <sys/seg.h>
#endif
#include <sys/v86.h>
#endif
#if defined(__FreeBSD__) || defined(__386BSD__)
#include <sys/file.h>
#include <machine/console.h>
#ifndef GCCUSESGAS
#define GCCUSESGAS
#endif
#endif
#if defined(__NetBSD__)
#include <sys/param.h>
#include <sys/file.h>
#include <machine/sysarch.h>
#ifndef GCCUSESGAS
#define GCCUSESGAS
#endif
#endif
#if defined(__bsdi__)
#include <sys/file.h>
#include <sys/ioctl.h>
#include <i386/isa/pcconsioctl.h>
#ifndef GCCUSESGAS
#define GCCUSESGAS
#endif
#endif
#if defined(SCO) || defined(ISC)
#ifndef ISC
#include <sys/console.h>
#endif
#include <sys/param.h>
#include <sys/immu.h>
#include <sys/region.h>
#include <sys/proc.h>
#include <sys/tss.h>
#include <sys/sysi86.h>
#include <sys/v86.h>
#endif
#if defined(Lynx_22)
#ifndef GCCUSESGAS
#define GCCUSESGAS
#endif
#endif
#if defined(__WATCOMC__)
#include <stdlib.h>
void outl(unsigned port, unsigned data);
#pragma aux outl = "out dx, eax" parm [dx] [eax];
void outb(unsigned port, unsigned data);
#pragma aux outb = "out dx, al" parm [dx] [eax];
unsigned inl(unsigned port);
#pragma aux inl = "in eax, dx" parm [dx];
unsigned inb(unsigned port);
#pragma aux inb = "xor eax,eax" "in al, dx" parm [dx];
#else /* __WATCOMC__ */
#if defined(__GNUC__)
#if !defined(__alpha__) && !defined(__powerpc__)
#if defined(GCCUSESGAS)
#define OUTB_GCC "outb %0,%1"
#define OUTL_GCC "outl %0,%1"
#define INB_GCC "inb %1,%0"
#define INL_GCC "inl %1,%0"
#else
#define OUTB_GCC "out%B0 (%1)"
#define OUTL_GCC "out%L0 (%1)"
#define INB_GCC "in%B0 (%1)"
#define INL_GCC "in%L0 (%1)"
#endif /* GCCUSESGAS */
static void outb(unsigned short port, unsigned char val) {
__asm__ __volatile__(OUTB_GCC : :"a" (val), "d" (port)); }
static void outl(unsigned short port, unsigned long val) {
__asm__ __volatile__(OUTL_GCC : :"a" (val), "d" (port)); }
static unsigned char inb(unsigned short port) { unsigned char ret;
__asm__ __volatile__(INB_GCC : "=a" (ret) : "d" (port)); return ret; }
static unsigned long inl(unsigned short port) { unsigned long ret;
__asm__ __volatile__(INL_GCC : "=a" (ret) : "d" (port)); return ret; }
#endif /* !defined(__alpha__) && !defined(__powerpc__) */
#else /* __GNUC__ */
#if defined(__STDC__) && (__STDC__ == 1)
# if !defined(NCR)
# define asm __asm
# endif
#endif
#if defined(__SUNPRO_C)
/*
* This section is a gross hack in if you tell anyone that I wrote it,
* I'll deny it. :-)
* The leave/ret instructions are the big hack to leave %eax alone on return.
*/
unsigned char inb(int port) {
asm(" movl 8(%esp),%edx");
asm(" subl %eax,%eax");
asm(" inb (%dx)");
asm(" leave");
asm(" ret");
}
unsigned short inw(int port) {
asm(" movl 8(%esp),%edx");
asm(" subl %eax,%eax");
asm(" inw (%dx)");
asm(" leave");
asm(" ret");
}
unsigned long inl(int port) {
asm(" movl 8(%esp),%edx");
asm(" inl (%dx)");
asm(" leave");
asm(" ret");
}
void outb(int port, unsigned char value) {
asm(" movl 8(%esp),%edx");
asm(" movl 12(%esp),%eax");
asm(" outb (%dx)");
}
void outw(int port, unsigned short value) {
asm(" movl 8(%esp),%edx");
asm(" movl 12(%esp),%eax");
asm(" outw (%dx)");
}
void outl(int port, unsigned long value) {
asm(" movl 8(%esp),%edx");
asm(" movl 12(%esp),%eax");
asm(" outl (%dx)");
}
#else
#if defined(SVR4)
# if !defined(__USLC__)
# define __USLC__
# endif
#endif
#ifndef SCO325
# include <sys/inline.h>
#else
# include "scoasm.h"
#endif
#endif /* SUNPRO_C */
#endif /* __GNUC__ */
#endif /* __WATCOMC__ */
#if defined(__alpha__)
#if defined(linux)
#include <asm/unistd.h>
#define BUS(tag) (((tag)>>16)&0xff)
#define DFN(tag) (((tag)>>8)&0xff)
int pciconfig_read(
unsigned char bus,
unsigned char dfn,
unsigned char off,
unsigned char len,
void * buf)
{
return __syscall(__NR_pciconfig_read, bus, dfn, off, len, buf);
}
int pciconfig_write(
unsigned char bus,
unsigned char dfn,
unsigned char off,
unsigned char len,
void * buf)
{
return __syscall(__NR_pciconfig_write, bus, dfn, off, len, buf);
}
#else
Generate compiler error - scanpci unsupported on non-linux alpha platforms
#endif /* linux */
#endif /* __alpha__ */
#if defined(Lynx) && defined(__powerpc__)
/* let's mimick the Linux Alpha stuff for LynxOS so we don't have
* to change too much code
*/
#include <smem.h>
unsigned char *pciConfBase;
static __inline__ unsigned long
swapl(unsigned long val)
{
unsigned char *p = (unsigned char *)&val;
return ((p[3] << 24) | (p[2] << 16) | (p[1] << 8) | (p[0] << 0));
}
#define BUS(tag) (((tag)>>16)&0xff)
#define DFN(tag) (((tag)>>8)&0xff)
#define PCIBIOS_DEVICE_NOT_FOUND 0x86
#define PCIBIOS_SUCCESSFUL 0x00
int pciconfig_read(
unsigned char bus,
unsigned char dev,
unsigned char offset,
int len, /* unused, alway 4 */
unsigned long *val)
{
unsigned long _val;
unsigned long *ptr;
dev >>= 3;
if (bus || dev >= 16) {
*val = 0xFFFFFFFF;
return PCIBIOS_DEVICE_NOT_FOUND;
} else {
ptr = (unsigned long *)(pciConfBase + ((1<<dev) | offset));
_val = swapl(*ptr);
}
*val = _val;
return PCIBIOS_SUCCESSFUL;
}
int pciconfig_write(
unsigned char bus,
unsigned char dev,
unsigned char offset,
int len, /* unused, alway 4 */
unsigned long val)
{
unsigned long _val;
unsigned long *ptr;
dev >>= 3;
_val = swapl(val);
if (bus || dev >= 16) {
return PCIBIOS_DEVICE_NOT_FOUND;
} else {
ptr = (unsigned long *)(pciConfBase + ((1<<dev) | offset));
*ptr = _val;
}
return PCIBIOS_SUCCESSFUL;
}
#endif
#if !defined(__powerpc__)
struct pci_config_reg {
/* start of official PCI config space header */
union {
unsigned long device_vendor;
struct {
unsigned short vendor;
unsigned short device;
} dv;
} dv_id;
#define _device_vendor dv_id.device_vendor
#define _vendor dv_id.dv.vendor
#define _device dv_id.dv.device
union {
unsigned long status_command;
struct {
unsigned short command;
unsigned short status;
} sc;
} stat_cmd;
#define _status_command stat_cmd.status_command
#define _command stat_cmd.sc.command
#define _status stat_cmd.sc.status
union {
unsigned long class_revision;
struct {
unsigned char rev_id;
unsigned char prog_if;
unsigned char sub_class;
unsigned char base_class;
} cr;
} class_rev;
#define _class_revision class_rev.class_revision
#define _rev_id class_rev.cr.rev_id
#define _prog_if class_rev.cr.prog_if
#define _sub_class class_rev.cr.sub_class
#define _base_class class_rev.cr.base_class
union {
unsigned long bist_header_latency_cache;
struct {
unsigned char cache_line_size;
unsigned char latency_timer;
unsigned char header_type;
unsigned char bist;
} bhlc;
} bhlc;
#define _bist_header_latency_cache bhlc.bist_header_latency_cache
#define _cache_line_size bhlc.bhlc.cache_line_size
#define _latency_timer bhlc.bhlc.latency_timer
#define _header_type bhlc.bhlc.header_type
#define _bist bhlc.bhlc.bist
union {
struct {
unsigned long dv_base0;
unsigned long dv_base1;
unsigned long dv_base2;
unsigned long dv_base3;
unsigned long dv_base4;
unsigned long dv_base5;
} dv;
struct {
unsigned long bg_rsrvd[2];
unsigned char primary_bus_number;
unsigned char secondary_bus_number;
unsigned char subordinate_bus_number;
unsigned char secondary_latency_timer;
unsigned char io_base;
unsigned char io_limit;
unsigned short secondary_status;
unsigned short mem_base;
unsigned short mem_limit;
unsigned short prefetch_mem_base;
unsigned short prefetch_mem_limit;
} bg;
} bc;
#define _base0 bc.dv.dv_base0
#define _base1 bc.dv.dv_base1
#define _base2 bc.dv.dv_base2
#define _base3 bc.dv.dv_base3
#define _base4 bc.dv.dv_base4
#define _base5 bc.dv.dv_base5
#define _primary_bus_number bc.bg.primary_bus_number
#define _secondary_bus_number bc.bg.secondary_bus_number
#define _subordinate_bus_number bc.bg.subordinate_bus_number
#define _secondary_latency_timer bc.bg.secondary_latency_timer
#define _io_base bc.bg.io_base
#define _io_limit bc.bg.io_limit
#define _secondary_status bc.bg.secondary_status
#define _mem_base bc.bg.mem_base
#define _mem_limit bc.bg.mem_limit
#define _prefetch_mem_base bc.bg.prefetch_mem_base
#define _prefetch_mem_limit bc.bg.prefetch_mem_limit
unsigned long rsvd1;
unsigned long rsvd2;
unsigned long _baserom;
unsigned long rsvd3;
unsigned long rsvd4;
union {
unsigned long max_min_ipin_iline;
struct {
unsigned char int_line;
unsigned char int_pin;
unsigned char min_gnt;
unsigned char max_lat;
} mmii;
} mmii;
#define _max_min_ipin_iline mmii.max_min_ipin_iline
#define _int_line mmii.mmii.int_line
#define _int_pin mmii.mmii.int_pin
#define _min_gnt mmii.mmii.min_gnt
#define _max_lat mmii.mmii.max_lat
/* I don't know how accurate or standard this is (DHD) */
union {
unsigned long user_config;
struct {
unsigned char user_config_0;
unsigned char user_config_1;
unsigned char user_config_2;
unsigned char user_config_3;
} uc;
} uc;
#define _user_config uc.user_config
#define _user_config_0 uc.uc.user_config_0
#define _user_config_1 uc.uc.user_config_1
#define _user_config_2 uc.uc.user_config_2
#define _user_config_3 uc.uc.user_config_3
/* end of official PCI config space header */
unsigned long _pcibusidx;
unsigned long _pcinumbus;
unsigned long _pcibuses[16];
unsigned short _configtype; /* config type found */
unsigned short _ioaddr; /* config type 1 - private I/O addr */
unsigned long _cardnum; /* config type 2 - private card number */
};
#else
/* ppc is big endian, swapping bytes is not quite enough
* to interpret the PCI config registers...
*/
struct pci_config_reg {
/* start of official PCI config space header */
union {
unsigned long device_vendor;
struct {
unsigned short device;
unsigned short vendor;
} dv;
} dv_id;
#define _device_vendor dv_id.device_vendor
#define _vendor dv_id.dv.vendor
#define _device dv_id.dv.device
union {
unsigned long status_command;
struct {
unsigned short status;
unsigned short command;
} sc;
} stat_cmd;
#define _status_command stat_cmd.status_command
#define _command stat_cmd.sc.command
#define _status stat_cmd.sc.status
union {
unsigned long class_revision;
struct {
unsigned char base_class;
unsigned char sub_class;
unsigned char prog_if;
unsigned char rev_id;
} cr;
} class_rev;
#define _class_revision class_rev.class_revision
#define _rev_id class_rev.cr.rev_id
#define _prog_if class_rev.cr.prog_if
#define _sub_class class_rev.cr.sub_class
#define _base_class class_rev.cr.base_class
union {
unsigned long bist_header_latency_cache;
struct {
unsigned char bist;
unsigned char header_type;
unsigned char latency_timer;
unsigned char cache_line_size;
} bhlc;
} bhlc;
#define _bist_header_latency_cache bhlc.bist_header_latency_cache
#define _cache_line_size bhlc.bhlc.cache_line_size
#define _latency_timer bhlc.bhlc.latency_timer
#define _header_type bhlc.bhlc.header_type
#define _bist bhlc.bhlc.bist
union {
struct {
unsigned long dv_base0;
unsigned long dv_base1;
unsigned long dv_base2;
unsigned long dv_base3;
unsigned long dv_base4;
unsigned long dv_base5;
} dv;
/* ?? */
struct {
unsigned long bg_rsrvd[2];
unsigned char secondary_latency_timer;
unsigned char subordinate_bus_number;
unsigned char secondary_bus_number;
unsigned char primary_bus_number;
unsigned short secondary_status;
unsigned char io_limit;
unsigned char io_base;
unsigned short mem_limit;
unsigned short mem_base;
unsigned short prefetch_mem_limit;
unsigned short prefetch_mem_base;
} bg;
} bc;
#define _base0 bc.dv.dv_base0
#define _base1 bc.dv.dv_base1
#define _base2 bc.dv.dv_base2
#define _base3 bc.dv.dv_base3
#define _base4 bc.dv.dv_base4
#define _base5 bc.dv.dv_base5
#define _primary_bus_number bc.bg.primary_bus_number
#define _secondary_bus_number bc.bg.secondary_bus_number
#define _subordinate_bus_number bc.bg.subordinate_bus_number
#define _secondary_latency_timer bc.bg.secondary_latency_timer
#define _io_base bc.bg.io_base
#define _io_limit bc.bg.io_limit
#define _secondary_status bc.bg.secondary_status
#define _mem_base bc.bg.mem_base
#define _mem_limit bc.bg.mem_limit
#define _prefetch_mem_base bc.bg.prefetch_mem_base
#define _prefetch_mem_limit bc.bg.prefetch_mem_limit
unsigned long rsvd1;
unsigned long rsvd2;
unsigned long _baserom;
unsigned long rsvd3;
unsigned long rsvd4;
union {
unsigned long max_min_ipin_iline;
struct {
unsigned char max_lat;
unsigned char min_gnt;
unsigned char int_pin;
unsigned char int_line;
} mmii;
} mmii;
#define _max_min_ipin_iline mmii.max_min_ipin_iline
#define _int_line mmii.mmii.int_line
#define _int_pin mmii.mmii.int_pin
#define _min_gnt mmii.mmii.min_gnt
#define _max_lat mmii.mmii.max_lat
/* I don't know how accurate or standard this is (DHD) */
union {
unsigned long user_config;
struct {
unsigned char user_config_3;
unsigned char user_config_2;
unsigned char user_config_1;
unsigned char user_config_0;
} uc;
} uc;
#define _user_config uc.user_config
#define _user_config_0 uc.uc.user_config_0
#define _user_config_1 uc.uc.user_config_1
#define _user_config_2 uc.uc.user_config_2
#define _user_config_3 uc.uc.user_config_3
/* end of official PCI config space header */
unsigned long _pcibusidx;
unsigned long _pcinumbus;
unsigned long _pcibuses[16];
unsigned short _ioaddr; /* config type 1 - private I/O addr */
unsigned short _configtype; /* config type found */
unsigned long _cardnum; /* config type 2 - private card number */
};
#endif
extern void identify_card(struct pci_config_reg *, int);
extern void print_i128(struct pci_config_reg *);
extern void print_mach64(struct pci_config_reg *);
extern void print_pcibridge(struct pci_config_reg *);
extern void enable_os_io();
extern void disable_os_io();
#define MAX_DEV_PER_VENDOR_CFG1 32
#define MAX_DEV_PER_VENDOR_CFG2 16
#define MAX_PCI_DEVICES 64
#define NF ((void (*)())NULL)
#define PCI_MULTIFUNC_DEV 0x80
#if defined(__alpha__) || defined(__powerpc__)
#define PCI_ID_REG 0x00
#define PCI_CMD_STAT_REG 0x04
#define PCI_CLASS_REG 0x08
#define PCI_HEADER_MISC 0x0C
#define PCI_MAP_REG_START 0x10
#define PCI_MAP_ROM_REG 0x30
#define PCI_INTERRUPT_REG 0x3C
#define PCI_REG_USERCONFIG 0x40
#endif
struct pci_vendor_device {
unsigned short vendor_id;
char *vendorname;
struct pci_device {
unsigned short device_id;
char *devicename;
void (*print_func)(struct pci_config_reg *);
} device[MAX_DEV_PER_VENDOR_CFG1];
} pvd[] = {
{ 0x0e11, "Compaq", {
{ 0x3033, "QVision 1280/p", NF },
{ 0xae10, "Smart-2/P RAID Controller", NF },
{ 0xae32, "Netellignet 10/100", NF },
{ 0xae34, "Netellignet 10", NF },
{ 0xae35, "NetFlex 3", NF },
{ 0xae40, "Netellignet 10/100 Dual", NF },
{ 0xae43, "Netellignet 10/100 ProLiant", NF },
{ 0xb011, "Netellignet 10/100 Integrated", NF },
{ 0xf130, "ThunderLAN", NF },
{ 0xf150, "NetFlex 3 BNC", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1000, "NCR", {
{ 0x0001, "53C810", NF },
{ 0x0002, "53C820", NF },
{ 0x0003, "53C825", NF },
{ 0x0004, "53C815", NF },
{ 0x0005, "53C810AP", NF },
{ 0x0006, "53C860", NF },
{ 0x000B, "53C896", NF },
{ 0x000C, "53C895", NF },
{ 0x000D, "53C885", NF },
{ 0x000F, "53C875", NF },
{ 0x008F, "53C875J", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1002, "ATI", {
{ 0x4158, "Mach32", NF },
{ 0x4354, "Mach64 CT", print_mach64 },
{ 0x4358, "Mach64 CX", print_mach64 },
{ 0x4554, "Mach64 ET", print_mach64 },
{ 0x4742, "Mach64 GB", print_mach64 },
{ 0x4744, "Mach64 GD", print_mach64 },
{ 0x4750, "Mach64 GP", print_mach64 },
{ 0x4754, "Mach64 GT", print_mach64 },
{ 0x4755, "Mach64 GT", print_mach64 },
{ 0x4758, "Mach64 GX", print_mach64 },
{ 0x4C47, "Mach64 LT", print_mach64 },
{ 0x5654, "Mach64 VT", print_mach64 },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1004, "VLSI", {
{ 0x0005, "82C592-FC1", NF },
{ 0x0006, "82C593-FC1", NF },
{ 0x0007, "82C594-AFC2", NF },
{ 0x0009, "82C597-AFC2", NF },
{ 0x000C, "82C541 Lynx", NF },
{ 0x000D, "82C543 Lynx ISA", NF },
{ 0x0702, "VAS96011", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1005, "Avance Logic", {
{ 0x2301, "ALG2301", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x100B, "NS", {
{ 0x0002, "87415", NF },
{ 0xD001, "87410", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x100C, "Tseng Labs", {
{ 0x3202, "ET4000w32p rev A", NF },
{ 0x3205, "ET4000w32p rev B", NF },
{ 0x3206, "ET4000w32p rev D", NF },
{ 0x3207, "ET4000w32p rev C", NF },
{ 0x3208, "ET6000/6100", NF },
{ 0x4702, "ET6300", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x100E, "Weitek", {
{ 0x9001, "P9000", NF },
{ 0x9100, "P9100", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1011, "Digital Equipment Corporation", {
{ 0x0001, "DC21050 PCI-PCI Bridge",print_pcibridge},
{ 0x0002, "DC21040 10Mb/s Ethernet", NF },
{ 0x0004, "TGA", NF },
{ 0x0009, "DC21140 10/100 Mb/s Ethernet", NF },
{ 0x000D, "TGA2", NF },
{ 0x000F, "DEFPA (FDDI PCI)", NF },
{ 0x0014, "DC21041 10Mb/s Ethernet Plus", NF },
{ 0x0019, "DC21142 10/100 Mb/s Ethernet", NF },
{ 0x0021, "DC21052", NF },
{ 0x0024, "DC21152", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1013, "Cirrus Logic", {
{ 0x0038, "GD 7548", NF },
{ 0x00A0, "GD 5430", NF },
{ 0x00A4, "GD 5434-4", NF },
{ 0x00A8, "GD 5434-8", NF },
{ 0x00AC, "GD 5436", NF },
{ 0x00B8, "GD 5446", NF },
{ 0x00BC, "GD 5480", NF },
{ 0x00D0, "GD 5462", NF },
{ 0x00D4, "GD 5464", NF },
{ 0x1100, "CL 6729", NF },
{ 0x1110, "CL 6832", NF },
{ 0x1200, "GD 7542", NF },
{ 0x1202, "GD 7543", NF },
{ 0x1204, "GD 7541", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1014, "IBM", {
{ 0x000A, "Fire Coral", NF },
{ 0x0018, "Token Ring", NF },
{ 0x001D, "82G2675", NF },
{ 0x0022, "82351 pci-pci bridge", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x101A, "NCR", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x101C, "WD*", {
{ 0x3296, "WD 7197", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1022, "AMD", {
{ 0x2000, "79C970 Lance", NF },
{ 0x2020, "53C974 SCSI", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1023, "Trident", {
{ 0x9320, "TGUI 9320", NF },
{ 0x9420, "TGUI 9420", NF },
{ 0x9440, "TGUI 9440", NF },
{ 0x9660, "TGUI 9660/9680/9682", NF },
#if 0
{ 0x9680, "TGUI 9680", NF },
{ 0x9682, "TGUI 9682", NF },
#endif
{ 0x9750, "TGUI 9750", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1025, "ALI", {
{ 0x1435, "M1435", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x102B, "Matrox", {
{ 0x0518, "MGA-2 Atlas PX2085", NF },
{ 0x0519, "MGA Millennium", NF },
{ 0x051a, "MGA Mystique", NF },
{ 0x051b, "MGA Millennium II", NF },
{ 0x0D10, "MGA Impression", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x102C, "CT", {
{ 0x00D8, "65545", NF },
{ 0x00DC, "65548", NF },
{ 0x00E0, "65550", NF },
{ 0x00E4, "65554", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1031, "Miro", {
{ 0x5601, "ZR36050", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1033, "NEC", {
{ 0x0046, "PowerVR PCX2", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1036, "FD", {
{ 0x0000, "TMC-18C30 (36C70)", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1039, "SIS", {
{ 0x0001, "86C201", NF },
{ 0x0002, "86C202", NF },
{ 0x0008, "85C503", NF },
{ 0x0205, "86C205", NF },
{ 0x0406, "85C501", NF },
{ 0x0496, "85C496", NF },
{ 0x0601, "85C601", NF },
{ 0x5107, "5107", NF },
{ 0x5511, "85C5511", NF },
{ 0x5513, "85C5513", NF },
{ 0x5571, "5571", NF },
{ 0x5597, "5597", NF },
{ 0x7001, "7001", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x103C, "HP", {
{ 0x1030, "J2585A", NF },
{ 0x1031, "J2585B", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1042, "SMC/PCTECH", {
{ 0x1000, "FDC 37C665/RZ1000", NF },
{ 0x1001, "FDC /RZ1001", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1044, "DPT", {
{ 0xA400, "SmartCache/Raid", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1045, "Opti", {
{ 0xC178, "92C178", NF },
{ 0xC557, "82C557 Viper-M", NF },
{ 0xC558, "82C558 Viper-M ISA+IDE", NF },
{ 0xC621, "82C621", NF },
{ 0xC700, "82C700", NF },
{ 0xC701, "82C701 FireStar Plus", NF },
{ 0xC814, "82C814 Firebridge 1", NF },
{ 0xC822, "82C822", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x104A, "SGS Thomson", {
{ 0x0008, "STG2000", NF },
{ 0x0009, "STG1764", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x104B, "BusLogic", {
{ 0x0140, "946C 01", NF },
{ 0x1040, "946C 10", NF },
{ 0x8130, "FlashPoint", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x104C, "Texas Instruments", {
{ 0x3d04, "3DLabs Permedia", NF },
{ 0x3d07, "3DLabs Permedia 2", NF },
{ 0xAC12, "PCI1130", NF },
{ 0xAC15, "PCI1131", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x104E, "Oak", {
{ 0x0107, "OTI107", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1050, "Windbond", {
{ 0x0940, "89C940 NE2000-PCI", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1057, "Motorola", {
{ 0x0001, "MPC105 Eagle", NF },
{ 0x0002, "MPC105 Grackle", NF },
{ 0x4801, "Raven", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x105A, "Promise", {
{ 0x4D33, "IDE UltraDMA/33", NF },
{ 0x5300, "DC5030", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x105D, "Number Nine", {
{ 0x2309, "Imagine-128", print_i128 },
{ 0x2339, "Imagine-128-II", print_i128 },
{ 0x493D, "Imagine-128-T2R", print_i128 },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1060, "UMC", {
{ 0x0101, "UM8673F", NF },
{ 0x673A, "UM8886BF", NF },
{ 0x886A, "UM8886A", NF },
{ 0x8881, "UM8881F", NF },
{ 0x8886, "UM8886F", NF },
{ 0x8891, "UM8891A", NF },
{ 0x9017, "UM9017F", NF },
{ 0xE886, "UM8886N", NF },
{ 0xE891, "UM8891N", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1061, "X", {
{ 0x0001, "ITT AGX016", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1066, "PICOP", {
{ 0x0001, "PT86C52x Vesuvius", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x106B, "Apple", {
{ 0x0001, "Bandit", NF },
{ 0x0002, "Grand Central", NF },
{ 0x000E, "Hydra", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1074, "Nexgen", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x1077, "QLogic", {
{ 0x1020, "ISP1020", NF },
{ 0x1022, "ISP1022", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1078, "Cyrix", {
{ 0x0000, "5510", NF },
{ 0x0001, "PCI Master", NF },
{ 0x0002, "5520", NF },
{ 0x0100, "5530 Kahlua Legacy", NF },
{ 0x0101, "5530 Kahlua SMI", NF },
{ 0x0102, "5530 Kahlua IDE", NF },
{ 0x0103, "5530 Kahlua Audio", NF },
{ 0x0104, "5530 Kahlua Video", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x107D, "Leadtek", {
{ 0x0000, "S3 805", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1080, "Contaq", {
{ 0x0600, "82C599", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1083, "FOREX", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x108D, "Olicom", {
{ 0x0001, "OC-3136", NF },
{ 0x0011, "OC-2315", NF },
{ 0x0012, "OC-2325", NF },
{ 0x0013, "OC-2183", NF },
{ 0x0014, "OC-2326", NF },
{ 0x0021, "OC-6151", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x108E, "Sun", {
{ 0x1000, "EBUS", NF },
{ 0x1001, "Happy Meal", NF },
{ 0x8000, "PCI Bus Module", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1095, "CMD", {
{ 0x0640, "640A", NF },
{ 0x0643, "643", NF },
{ 0x0646, "646", NF },
{ 0x0670, "670", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1098, "Vision", {
{ 0x0001, "QD 8500", NF },
{ 0x0002, "QD 8580", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x109E, "Brooktree", {
{ 0x0350, "Bt848", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10A8, "Sierra", {
{ 0x0000, "STB Horizon 64", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10AA, "ACC", {
{ 0x0000, "2056", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10AD, "Winbond", {
{ 0x0001, "W83769F", NF },
{ 0x0105, "SL82C105", NF },
{ 0x0565, "W83C553", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10B3, "Databook", {
{ 0xB106, "DB87144", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10B7, "3COM", {
{ 0x5900, "3C590 10bT", NF },
{ 0x5950, "3C595 100bTX", NF },
{ 0x5951, "3C595 100bT4", NF },
{ 0x5952, "3C595 10b-MII", NF },
{ 0x9000, "3C900 10bTPO", NF },
{ 0x9001, "3C900 10b Combo", NF },
{ 0x9050, "3C905 100bTX", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10B8, "SMC", {
{ 0x0005, "9432 TX", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10B9, "ALI", {
{ 0x1445, "M1445", NF },
{ 0x1449, "M1449", NF },
{ 0x1451, "M1451", NF },
{ 0x1461, "M1461", NF },
{ 0x1489, "M1489", NF },
{ 0x1511, "M1511", NF },
{ 0x1513, "M1513", NF },
{ 0x1521, "M1521", NF },
{ 0x1523, "M1523", NF },
{ 0x1531, "M1531 Aladdin IV", NF },
{ 0x1533, "M1533 Aladdin IV", NF },
{ 0x5215, "M4803", NF },
{ 0x5219, "M5219", NF },
{ 0x5229, "M5229 TXpro", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10BA, "Mitsubishi", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x10BD, "Surecom", {
{ 0x0E34, "NE-34PCI Lan", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10C8, "Neomagic", {
{ 0x0001, "Magicgraph NM2070", NF },
{ 0x0002, "Magicgraph 128V", NF },
{ 0x0003, "Magicgraph 128ZV", NF },
{ 0x0004, "Magicgraph NM2160", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10CD, "Advanced System Products", {
{ 0x1200, "ABP940", NF },
{ 0x1300, "ABP940U", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10DC, "CERN", {
{ 0x0001, "STAR/RD24 SCI-PCI (PMC)", NF },
{ 0x0002, "STAR/RD24 SCI-PCI (PMC)", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10DE, "NVidia", {
{ 0x0008, "NV1", NF },
{ 0x0009, "DAC64", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10E0, "IMS", {
{ 0x8849, "8849", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10E1, "Tekram", {
{ 0x690C, "DC690C", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10E3, "Tundra", {
{ 0x0000, "CA91C042 Universe", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10E8, "AMCC", {
{ 0x8043, "Myrinet PCI (M2-PCI-32)", NF },
{ 0x807D, "S5933 PCI44", NF },
{ 0x809C, "S5933 Traquair HEPC3", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10EA, "Intergraphics", {
{ 0x1680, "IGA-1680", NF },
{ 0x1682, "IGA-1682", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10EC, "Realtek", {
{ 0x8029, "8029", NF },
{ 0x8129, "8129", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x10FA, "Truevision", {
{ 0x000C, "Targa 1000", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1101, "Initio Corp", {
{ 0x9100, "320 P", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1106, "VIA", {
{ 0x0505, "VT 82C505", NF },
{ 0x0561, "VT 82C505", NF },
{ 0x0576, "VT 82C576 3V", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1119, "Vortex", {
{ 0x0001, "GDT 6000b", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x111A, "EF", {
{ 0x0000, "155P-MF1", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1127, "Fore Systems", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x112F, "Imaging Technology", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x113C, "PLX", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x1142, "Alliance", {
{ 0x3210, "ProMotion 6410", NF },
{ 0x6422, "ProMotion 6422", NF },
{ 0x6424, "ProMotion AT24", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x114A, "VMIC", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x114F, "DIGI*", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x1159, "Mutech", {
{ 0x0001, "MV1000", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1163, "Rendition", {
{ 0x0001, "V1000", NF },
{ 0x2000, "V2100", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1179, "Toshiba", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x1193, "Zeinet", {
{ 0x0001, "1221", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x11CB, "Specialix", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x11FE, "Control", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x120E, "Cyclades", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x121A, "3Dfx Interactive", {
{ 0x0001, "Voodoo Graphics", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1236, "Sigma Designs", {
{ 0x6401, "REALmagic64/GX (SD 6425)", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1281, "YOKOGAWA", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x1292, "TriTech Microelectronics", {
{ 0xfc02, "Pyramid3D TR25202", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x12D2, "NVidia/SGS-Thomson", {
{ 0x0018, "Riva128", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1C1C, "Symphony", {
{ 0x0001, "82C101", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x1DE1, "Tekram", {
{ 0xDC29, "DC290", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x3D3D, "3Dlabs", {
{ 0x0001, "GLINT 300SX", NF },
{ 0x0002, "GLINT 500TX", NF },
{ 0x0003, "GLINT Delta", NF },
{ 0x0004, "GLINT Permedia", NF },
{ 0x0006, "GLINT MX", NF },
{ 0x0007, "GLINT Permedia 2", NF },
{ 0x0000, (char *)NULL, NF } } } ,
{ 0x4005, "Avance", {
{ 0x0000, (char *)NULL, NF } } },
{ 0x5333, "S3", {
{ 0x0551, "Plato/PX", NF },
{ 0x5631, "ViRGE", NF },
{ 0x8811, "Trio32/64", NF },
{ 0x8812, "Aurora64V+", NF },
{ 0x8814, "Trio64UV+", NF },
{ 0x883D, "ViRGE/VX", NF },
{ 0x8880, "868", NF },
{ 0x88B0, "928", NF },
{ 0x88C0, "864-0", NF },
{ 0x88C1, "864-1", NF },
{ 0x88D0, "964-0", NF },
{ 0x88D1, "964-1", NF },
{ 0x88F0, "968", NF },
{ 0x8901, "Trio64V2/DX or /GX", NF },
{ 0x8902, "PLATO/PX", NF },
{ 0x8A01, "ViRGE/DX or /GX", NF },
{ 0x8A10, "ViRGE/GX2", NF },
{ 0x8C01, "ViRGE/MX", NF },
{ 0x8C02, "ViRGE/MX+", NF },
{ 0x8C03, "ViRGE/MX+MV", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x8086, "Intel", {
{ 0x0482, "82375EB pci-eisa bridge", NF },
{ 0x0483, "82424ZX cache dram controller", NF },
{ 0x0484, "82378IB/ZB pci-isa bridge", NF },
{ 0x0486, "82430ZX Aries", NF },
{ 0x04A3, "82434LX/NX pci cache mem controller", NF },
{ 0x1230, "82371 bus-master IDE controller", NF },
{ 0x1223, "SAA7116", NF },
{ 0x1229, "82557 10/100MBit network controller",NF},
{ 0x122D, "82437 Triton", NF },
{ 0x122E, "82471 Triton", NF },
{ 0x1230, "82438", NF },
{ 0x1250, "82439", NF },
{ 0x7000, "82371 pci-isa bridge", NF },
{ 0x7010, "82371 bus-master IDE controller", NF },
{ 0x7100, "82439 TX", NF },
{ 0x7110, "82371AB PIIX4 ISA", NF },
{ 0x7111, "82371AB PIIX4 IDE", NF },
{ 0x7112, "82371AB PIIX4 USB", NF },
{ 0x7113, "82371AB PIIX4 ACPI", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x9004, "Adaptec", {
{ 0x5078, "7850", NF },
{ 0x5578, "7855", NF },
{ 0x6078, "7860", NF },
{ 0x7078, "294x", NF },
{ 0x7178, "2940", NF },
{ 0x7278, "7872", NF },
{ 0x7478, "2944", NF },
{ 0x8178, "2940U", NF },
{ 0x8278, "3940U", NF },
{ 0x8478, "2944U", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x907F, "Atronics", {
{ 0x2015, "IDE-2015PL", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0xEDD8, "ARK Logic", {
{ 0xA091, "1000PV", NF },
{ 0xA099, "2000PV", NF },
{ 0xA0A1, "2000MT", NF },
{ 0xA0A9, "2000MI", NF },
{ 0x0000, (char *)NULL, NF } } },
{ 0x0000, (char *)NULL, {
{ 0x0000, (char *)NULL, NF } } }
};
#if defined(__alpha__)
#define PCI_EN 0x00000000
#else
#define PCI_EN 0x80000000
#endif
#define PCI_MODE1_ADDRESS_REG 0xCF8
#define PCI_MODE1_DATA_REG 0xCFC
#define PCI_MODE2_ENABLE_REG 0xCF8
#ifdef PC98
#define PCI_MODE2_FORWARD_REG 0xCF9
#else
#define PCI_MODE2_FORWARD_REG 0xCFA
#endif
main(int argc, unsigned char *argv[])
{
unsigned long tmplong1, tmplong2, config_cmd;
unsigned char tmp1, tmp2;
unsigned int idx;
struct pci_config_reg pcr;
int ch, verbose = 0, do_mode1_scan = 0, do_mode2_scan = 0;
int func;
while((ch = getopt(argc, argv, "v12")) != EOF) {
switch((char)ch) {
case '1':
do_mode1_scan = 1;
break;
case '2':
do_mode2_scan = 1;
break;
case 'v':
verbose = 1;
break;
default :
printf("Usage: %s [-v12] \n", argv[0]);
exit(1);
}
}
#if !defined(MSDOS)
if (getuid()) {
printf("This program must be run as root\n");
exit(1);
}
#endif
enable_os_io();
#if !defined(__alpha__) && !defined(__powerpc__)
pcr._configtype = 0;
outb(PCI_MODE2_ENABLE_REG, 0x00);
outb(PCI_MODE2_FORWARD_REG, 0x00);
tmp1 = inb(PCI_MODE2_ENABLE_REG);
tmp2 = inb(PCI_MODE2_FORWARD_REG);
if ((tmp1 == 0x00) && (tmp2 == 0x00)) {
pcr._configtype = 2;
printf("PCI says configuration type 2\n");
} else {
tmplong1 = inl(PCI_MODE1_ADDRESS_REG);
outl(PCI_MODE1_ADDRESS_REG, PCI_EN);
tmplong2 = inl(PCI_MODE1_ADDRESS_REG);
outl(PCI_MODE1_ADDRESS_REG, tmplong1);
if (tmplong2 == PCI_EN) {
pcr._configtype = 1;
printf("PCI says configuration type 1\n");
} else {
printf("No PCI !\n");
disable_os_io();
exit(1);
}
}
#else
pcr._configtype = 1;
#endif
/* Try pci config 1 probe first */
if ((pcr._configtype == 1) || do_mode1_scan) {
printf("\nPCI probing configuration type 1\n");
pcr._ioaddr = 0xFFFF;
pcr._pcibuses[0] = 0;
pcr._pcinumbus = 1;
pcr._pcibusidx = 0;
idx = 0;
do {
printf("Probing for devices on PCI bus %d:\n\n", pcr._pcibusidx);
for (pcr._cardnum = 0x0; pcr._cardnum < MAX_DEV_PER_VENDOR_CFG1;
pcr._cardnum += 0x1) {
func = 0;
do { /* loop over the different functions, if present */
#if !defined(__alpha__) && !defined(__powerpc__)
config_cmd = PCI_EN | (pcr._pcibuses[pcr._pcibusidx]<<16) |
(pcr._cardnum<<11) | (func<<8);
outl(PCI_MODE1_ADDRESS_REG, config_cmd); /* ioreg 0 */
pcr._device_vendor = inl(PCI_MODE1_DATA_REG);
#else
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_ID_REG, 4, &pcr._device_vendor);
#endif
if ((pcr._vendor == 0xFFFF) || (pcr._device == 0xFFFF))
break; /* nothing there */
printf("\npci bus 0x%x cardnum 0x%02x function 0x%04x: vendor 0x%04x device 0x%04x\n",
pcr._pcibuses[pcr._pcibusidx], pcr._cardnum, func,
pcr._vendor, pcr._device);
#if !defined(__alpha__) && !defined(__powerpc__)
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x04);
pcr._status_command = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x08);
pcr._class_revision = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x0C);
pcr._bist_header_latency_cache = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x10);
pcr._base0 = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x14);
pcr._base1 = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x18);
pcr._base2 = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x1C);
pcr._base3 = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x20);
pcr._base4 = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x24);
pcr._base5 = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x30);
pcr._baserom = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x3C);
pcr._max_min_ipin_iline = inl(PCI_MODE1_DATA_REG);
outl(PCI_MODE1_ADDRESS_REG, config_cmd | 0x40);
pcr._user_config = inl(PCI_MODE1_DATA_REG);
#else
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_CMD_STAT_REG, 4, &pcr._status_command);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_CLASS_REG, 4, &pcr._class_revision);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_HEADER_MISC, 4, &pcr._bist_header_latency_cache);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_MAP_REG_START, 4, &pcr._base0);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_MAP_REG_START + 0x04, 4, &pcr._base1);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_MAP_REG_START + 0x08, 4, &pcr._base2);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_MAP_REG_START + 0x0C, 4, &pcr._base3);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_MAP_REG_START + 0x10, 4, &pcr._base4);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_MAP_REG_START + 0x14, 4, &pcr._base5);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_MAP_ROM_REG, 4, &pcr._baserom);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_INTERRUPT_REG, 4, &pcr._max_min_ipin_iline);
pciconfig_read(pcr._pcibuses[pcr._pcibusidx], pcr._cardnum<<3,
PCI_REG_USERCONFIG, 4, &pcr._user_config);
#endif
/* check for pci-pci bridges */
#define PCI_CLASS_MASK 0xff000000
#define PCI_SUBCLASS_MASK 0x00ff0000
#define PCI_CLASS_BRIDGE 0x06000000
#define PCI_SUBCLASS_BRIDGE_PCI 0x00040000
switch(pcr._class_revision & (PCI_CLASS_MASK|PCI_SUBCLASS_MASK)) {
case PCI_CLASS_BRIDGE|PCI_SUBCLASS_BRIDGE_PCI:
if (pcr._secondary_bus_number > 0) {
pcr._pcibuses[pcr._pcinumbus++] = pcr._secondary_bus_number;
}
break;
default:
break;
}
if((func==0) && ((pcr._header_type & PCI_MULTIFUNC_DEV) == 0)) {
/* not a multi function device */
func = 8;
} else {
func++;
}
if (idx++ >= MAX_PCI_DEVICES)
continue;
identify_card(&pcr, verbose);
} while( func < 8 );
}
} while (++pcr._pcibusidx < pcr._pcinumbus);
}
#if !defined(__alpha__) && !defined(__powerpc__)
/* Now try pci config 2 probe (deprecated) */
if ((pcr._configtype == 2) || do_mode2_scan) {
outb(PCI_MODE2_ENABLE_REG, 0xF1);
outb(PCI_MODE2_FORWARD_REG, 0x00); /* bus 0 for now */
printf("\nPCI probing configuration type 2\n");
pcr._pcibuses[0] = 0;
pcr._pcinumbus = 1;
pcr._pcibusidx = 0;
idx = 0;
do {
for (pcr._ioaddr = 0xC000; pcr._ioaddr < 0xD000; pcr._ioaddr += 0x0100){
outb(PCI_MODE2_FORWARD_REG, pcr._pcibuses[pcr._pcibusidx]); /* bus 0 for now */
pcr._device_vendor = inl(pcr._ioaddr);
outb(PCI_MODE2_FORWARD_REG, 0x00); /* bus 0 for now */
if ((pcr._vendor == 0xFFFF) || (pcr._device == 0xFFFF))
continue;
if ((pcr._vendor == 0xF0F0) || (pcr._device == 0xF0F0))
continue; /* catch ASUS P55TP4XE motherboards */
printf("\npci bus 0x%x slot at 0x%04x, vendor 0x%04x device 0x%04x\n",
pcr._pcibuses[pcr._pcibusidx], pcr._ioaddr, pcr._vendor,
pcr._device);
outb(PCI_MODE2_FORWARD_REG, pcr._pcibuses[pcr._pcibusidx]); /* bus 0 for now */
pcr._status_command = inl(pcr._ioaddr + 0x04);
pcr._class_revision = inl(pcr._ioaddr + 0x08);
pcr._bist_header_latency_cache = inl(pcr._ioaddr + 0x0C);
pcr._base0 = inl(pcr._ioaddr + 0x10);
pcr._base1 = inl(pcr._ioaddr + 0x14);
pcr._base2 = inl(pcr._ioaddr + 0x18);
pcr._base3 = inl(pcr._ioaddr + 0x1C);
pcr._base4 = inl(pcr._ioaddr + 0x20);
pcr._base5 = inl(pcr._ioaddr + 0x24);
pcr._baserom = inl(pcr._ioaddr + 0x30);
pcr._max_min_ipin_iline = inl(pcr._ioaddr + 0x3C);
pcr._user_config = inl(pcr._ioaddr + 0x40);
outb(PCI_MODE2_FORWARD_REG, 0x00); /* bus 0 for now */
/* check for pci-pci bridges (currently we only know Digital) */
if ((pcr._vendor == 0x1011) && (pcr._device == 0x0001))
if (pcr._secondary_bus_number > 0)
pcr._pcibuses[pcr._pcinumbus++] = pcr._secondary_bus_number;
if (idx++ >= MAX_PCI_DEVICES)
continue;
identify_card(&pcr, verbose);
}
} while (++pcr._pcibusidx < pcr._pcinumbus);
outb(PCI_MODE2_ENABLE_REG, 0x00);
}
#endif /* __alpha__ */
disable_os_io();
}
void
identify_card(struct pci_config_reg *pcr, int verbose)
{
int i = 0, j, foundit = 0;
while (pvd[i].vendorname != (char *)NULL) {
if (pvd[i].vendor_id == pcr->_vendor) {
j = 0;
printf(" %s ", pvd[i].vendorname);
while (pvd[i].device[j].devicename != (char *)NULL) {
if (pvd[i].device[j].device_id == pcr->_device) {
printf("%s", pvd[i].device[j].devicename);
foundit = 1;
break;
}
j++;
}
}
if (foundit)
break;
i++;
}
if (!foundit)
printf(" Device unknown\n");
else {
printf("\n");
if (verbose) {
if (pvd[i].device[j].print_func != (void (*)())NULL) {
pvd[i].device[j].print_func(pcr);
return;
}
}
}
if (verbose) {
if (pcr->_status_command)
printf(" STATUS 0x%04x COMMAND 0x%04x\n",
pcr->_status, pcr->_command);
if (pcr->_class_revision)
printf(" CLASS 0x%02x 0x%02x 0x%02x REVISION 0x%02x\n",
pcr->_base_class, pcr->_sub_class, pcr->_prog_if,
pcr->_rev_id);
if (pcr->_bist_header_latency_cache)
printf(" BIST 0x%02x HEADER 0x%02x LATENCY 0x%02x CACHE 0x%02x\n",
pcr->_bist, pcr->_header_type, pcr->_latency_timer,
pcr->_cache_line_size);
if (pcr->_base0)
printf(" BASE0 0x%08x addr 0x%08x %s\n",
pcr->_base0, pcr->_base0 & (pcr->_base0 & 0x1 ?
0xFFFFFFFC : 0xFFFFFFF0),
pcr->_base0 & 0x1 ? "I/O" : "MEM");
if (pcr->_base1)
printf(" BASE1 0x%08x addr 0x%08x %s\n",
pcr->_base1, pcr->_base1 & (pcr->_base1 & 0x1 ?
0xFFFFFFFC : 0xFFFFFFF0),
pcr->_base1 & 0x1 ? "I/O" : "MEM");
if (pcr->_base2)
printf(" BASE2 0x%08x addr 0x%08x %s\n",
pcr->_base2, pcr->_base2 & (pcr->_base2 & 0x1 ?
0xFFFFFFFC : 0xFFFFFFF0),
pcr->_base2 & 0x1 ? "I/O" : "MEM");
if (pcr->_base3)
printf(" BASE3 0x%08x addr 0x%08x %s\n",
pcr->_base3, pcr->_base3 & (pcr->_base3 & 0x1 ?
0xFFFFFFFC : 0xFFFFFFF0),
pcr->_base3 & 0x1 ? "I/O" : "MEM");
if (pcr->_base4)
printf(" BASE4 0x%08x addr 0x%08x %s\n",
pcr->_base4, pcr->_base4 & (pcr->_base4 & 0x1 ?
0xFFFFFFFC : 0xFFFFFFF0),
pcr->_base4 & 0x1 ? "I/O" : "MEM");
if (pcr->_base5)
printf(" BASE5 0x%08x addr 0x%08x %s\n",
pcr->_base5, pcr->_base5 & (pcr->_base5 & 0x1 ?
0xFFFFFFFC : 0xFFFFFFF0),
pcr->_base5 & 0x1 ? "I/O" : "MEM");
if (pcr->_baserom)
printf(" BASEROM 0x%08x addr 0x%08x %sdecode-enabled\n",
pcr->_baserom, pcr->_baserom & 0xFFFF8000,
pcr->_baserom & 0x1 ? "" : "not-");
if (pcr->_max_min_ipin_iline)
printf(" MAX_LAT 0x%02x MIN_GNT 0x%02x INT_PIN 0x%02x INT_LINE 0x%02x\n",
pcr->_max_lat, pcr->_min_gnt,
pcr->_int_pin, pcr->_int_line);
if (pcr->_user_config)
printf(" BYTE_0 0x%02x BYTE_1 0x%02x BYTE_2 0x%02x BYTE_3 0x%02x\n",
pcr->_user_config_0, pcr->_user_config_1,
pcr->_user_config_2, pcr->_user_config_3);
}
}
void
print_mach64(struct pci_config_reg *pcr)
{
unsigned long sparse_io = 0;
if (pcr->_status_command)
printf(" STATUS 0x%04x COMMAND 0x%04x\n",
pcr->_status, pcr->_command);
if (pcr->_class_revision)
printf(" CLASS 0x%02x 0x%02x 0x%02x REVISION 0x%02x\n",
pcr->_base_class, pcr->_sub_class, pcr->_prog_if, pcr->_rev_id);
if (pcr->_bist_header_latency_cache)
printf(" BIST 0x%02x HEADER 0x%02x LATENCY 0x%02x CACHE 0x%02x\n",
pcr->_bist, pcr->_header_type, pcr->_latency_timer,
pcr->_cache_line_size);
if (pcr->_base0)
printf(" APBASE 0x%08x addr 0x%08x\n",
pcr->_base0, pcr->_base0 & (pcr->_base0 & 0x1 ?
0xFFFFFFFC : 0xFFFFFFF0));
if (pcr->_base1)
printf(" BLOCKIO 0x%08x addr 0x%08x\n",
pcr->_base1, pcr->_base1 & (pcr->_base1 & 0x1 ?
0xFFFFFFFC : 0xFFFFFFF0));
if (pcr->_baserom)
printf(" BASEROM 0x%08x addr 0x%08x %sdecode-enabled\n",
pcr->_baserom, pcr->_baserom & 0xFFFF8000,
pcr->_baserom & 0x1 ? "" : "not-");
if (pcr->_max_min_ipin_iline)
printf(" MAX_LAT 0x%02x MIN_GNT 0x%02x INT_PIN 0x%02x INT_LINE 0x%02x\n",
pcr->_max_lat, pcr->_min_gnt, pcr->_int_pin, pcr->_int_line);
switch (pcr->_user_config_0 & 0x03) {
case 0:
sparse_io = 0x2ec;
break;
case 1:
sparse_io = 0x1cc;
break;
case 2:
sparse_io = 0x1c8;
break;
}
printf(" SPARSEIO 0x%03x %s %s\n",
sparse_io, pcr->_user_config_0 & 0x04 ? "Block IO enabled" :
"Sparse IO enabled",
pcr->_user_config_0 & 0x08 ? "Disable 0x46E8" : "Enable 0x46E8");
}
void
print_i128(struct pci_config_reg *pcr)
{
if (pcr->_status_command)
printf(" STATUS 0x%04x COMMAND 0x%04x\n",
pcr->_status, pcr->_command);
if (pcr->_class_revision)
printf(" CLASS 0x%02x 0x%02x 0x%02x REVISION 0x%02x\n",
pcr->_base_class, pcr->_sub_class, pcr->_prog_if, pcr->_rev_id);
if (pcr->_bist_header_latency_cache)
printf(" BIST 0x%02x HEADER 0x%02x LATENCY 0x%02x CACHE 0x%02x\n",
pcr->_bist, pcr->_header_type, pcr->_latency_timer,
pcr->_cache_line_size);
printf(" MW0_AD 0x%08x addr 0x%08x %spre-fetchable\n",
pcr->_base0, pcr->_base0 & 0xFFC00000,
pcr->_base0 & 0x8 ? "" : "not-");
printf(" MW1_AD 0x%08x addr 0x%08x %spre-fetchable\n",
pcr->_base1, pcr->_base1 & 0xFFC00000,
pcr->_base1 & 0x8 ? "" : "not-");
printf(" XYW_AD(A) 0x%08x addr 0x%08x\n",
pcr->_base2, pcr->_base2 & 0xFFC00000);
printf(" XYW_AD(B) 0x%08x addr 0x%08x\n",
pcr->_base3, pcr->_base3 & 0xFFC00000);
printf(" RBASE_G 0x%08x addr 0x%08x\n",
pcr->_base4, pcr->_base4 & 0xFFFF0000);
printf(" IO 0x%08x addr 0x%08x\n",
pcr->_base5, pcr->_base5 & 0xFFFFFF00);
printf(" RBASE_E 0x%08x addr 0x%08x %sdecode-enabled\n",
pcr->_baserom, pcr->_baserom & 0xFFFF8000,
pcr->_baserom & 0x1 ? "" : "not-");
if (pcr->_max_min_ipin_iline)
printf(" MAX_LAT 0x%02x MIN_GNT 0x%02x INT_PIN 0x%02x INT_LINE 0x%02x\n",
pcr->_max_lat, pcr->_min_gnt, pcr->_int_pin, pcr->_int_line);
}
void
print_pcibridge(struct pci_config_reg *pcr)
{
if (pcr->_status_command)
printf(" STATUS 0x%04x COMMAND 0x%04x\n",
pcr->_status, pcr->_command);
if (pcr->_class_revision)
printf(" CLASS 0x%02x 0x%02x 0x%02x REVISION 0x%02x\n",
pcr->_base_class, pcr->_sub_class, pcr->_prog_if, pcr->_rev_id);
if (pcr->_bist_header_latency_cache)
printf(" BIST 0x%02x HEADER 0x%02x LATENCY 0x%02x CACHE 0x%02x\n",
pcr->_bist, pcr->_header_type, pcr->_latency_timer,
pcr->_cache_line_size);
printf(" PRIBUS 0x%02x SECBUS 0x%02x SUBBUS 0x%02x SECLT 0x%02x\n",
pcr->_primary_bus_number, pcr->_secondary_bus_number,
pcr->_subordinate_bus_number, pcr->_secondary_latency_timer);
printf(" IOBASE: 0x%02x00 IOLIM 0x%02x00 SECSTATUS 0x%04x\n",
pcr->_io_base, pcr->_io_limit, pcr->_secondary_status);
printf(" NOPREFETCH MEMBASE: 0x%08x MEMLIM 0x%08x\n",
pcr->_mem_base, pcr->_mem_limit);
printf(" PREFETCH MEMBASE: 0x%08x MEMLIM 0x%08x\n",
pcr->_prefetch_mem_base, pcr->_prefetch_mem_limit);
printf(" RBASE_E 0x%08x addr 0x%08x %sdecode-enabled\n",
pcr->_baserom, pcr->_baserom & 0xFFFF8000,
pcr->_baserom & 0x1 ? "" : "not-");
if (pcr->_max_min_ipin_iline)
printf(" MAX_LAT 0x%02x MIN_GNT 0x%02x INT_PIN 0x%02x INT_LINE 0x%02x\n",
pcr->_max_lat, pcr->_min_gnt, pcr->_int_pin, pcr->_int_line);
}
static int io_fd;
#ifdef __EMX__
USHORT callgate[3] = {0,0,0};
#endif
void
enable_os_io()
{
#if defined(SVR4) || defined(SCO) || defined(ISC)
#if defined(SI86IOPL)
sysi86(SI86IOPL, 3);
#else
sysi86(SI86V86, V86SC_IOPL, PS_IOPL);
#endif
#endif
#if defined(linux)
iopl(3);
#endif
#if defined(__FreeBSD__) || defined(__386BSD__) || defined(__bsdi__)
if ((io_fd = open("/dev/console", O_RDWR, 0)) < 0) {
perror("/dev/console");
exit(1);
}
#if defined(__FreeBSD__) || defined(__386BSD__)
if (ioctl(io_fd, KDENABIO, 0) < 0) {
perror("ioctl(KDENABIO)");
exit(1);
}
#endif
#if defined(__bsdi__)
if (ioctl(io_fd, PCCONENABIOPL, 0) < 0) {
perror("ioctl(PCCONENABIOPL)");
exit(1);
}
#endif
#endif
#if defined(__NetBSD__)
#if !defined(USE_I386_IOPL)
if ((io_fd = open("/dev/io", O_RDWR, 0)) < 0) {
perror("/dev/io");
exit(1);
}
#else
if (i386_iopl(1) < 0) {
perror("i386_iopl");
exit(1);
}
#endif /* USE_I386_IOPL */
#endif /* __NetBSD__ */
#if defined(__OpenBSD__)
if (i386_iopl(1) < 0) {
perror("i386_iopl");
exit(1);
}
#endif /* __OpenBSD__ */
#if defined(MACH386)
if ((io_fd = open("/dev/iopl", O_RDWR, 0)) < 0) {
perror("/dev/iopl");
exit(1);
}
#endif
#ifdef __EMX__
{
HFILE hfd;
ULONG dlen,action;
APIRET rc;
static char *ioDrvPath = "/dev/fastio$";
if (DosOpen((PSZ)ioDrvPath, (PHFILE)&hfd, (PULONG)&action,
(ULONG)0, FILE_SYSTEM, FILE_OPEN,
OPEN_SHARE_DENYNONE|OPEN_FLAGS_NOINHERIT|OPEN_ACCESS_READONLY,
(ULONG)0) != 0) {
fprintf(stderr,"Error opening fastio$ driver...\n");
fprintf(stderr,"Please install xf86sup.sys in config.sys!\n");
exit(42);
}
callgate[0] = callgate[1] = 0;
/* Get callgate from driver for fast io to ports and other stuff */
rc = DosDevIOCtl(hfd, (ULONG)0x76, (ULONG)0x64,
NULL, 0, NULL,
(ULONG*)&callgate[2], sizeof(USHORT), &dlen);
if (rc) {
fprintf(stderr,"xf86-OS/2: EnableIOPorts failed, rc=%d, dlen=%d; emergency exit\n",
rc,dlen);
DosClose(hfd);
exit(42);
}
/* Calling callgate with function 13 sets IOPL for the program */
asm volatile ("movl $13,%%ebx;.byte 0xff,0x1d;.long _callgate"
: /*no outputs */
: /*no inputs */
: "eax","ebx","ecx","edx","cc");
DosClose(hfd);
}
#endif
#if defined(Lynx) && defined(__powerpc__)
pciConfBase = (unsigned char *) smem_create("PCI-CONF",
(char *)0x80800000, 64*1024, SM_READ|SM_WRITE);
if (pciConfBase == (void *) -1)
exit(1);
#endif
}
void
disable_os_io()
{
#if defined(SVR4) || defined(SCO) || defined(ISC)
#if defined(SI86IOPL)
sysi86(SI86IOPL, 0);
#else
sysi86(SI86V86, V86SC_IOPL, 0);
#endif
#endif
#if defined(linux)
iopl(0);
#endif
#if defined(__FreeBSD__) || defined(__386BSD__)
if (ioctl(io_fd, KDDISABIO, 0) < 0) {
perror("ioctl(KDDISABIO)");
close(io_fd);
exit(1);
}
close(io_fd);
#endif
#if defined(__NetBSD__)
#if !defined(USE_I386_IOPL)
close(io_fd);
#else
if (i386_iopl(0) < 0) {
perror("i386_iopl");
exit(1);
}
#endif /* NetBSD1_1 */
#endif /* __NetBSD__ */
#if defined(__bsdi__)
if (ioctl(io_fd, PCCONDISABIOPL, 0) < 0) {
perror("ioctl(PCCONDISABIOPL)");
close(io_fd);
exit(1);
}
close(io_fd);
#endif
#if defined(MACH386)
close(io_fd);
#endif
#if defined(Lynx) && defined(__powerpc__)
smem_create(NULL, (char *) pciConfBase, 0, SM_DETACH);
smem_remove("PCI-CONF");
pciConfBase = NULL;
#endif
}
|