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
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
|
/* $OpenBSD: xbridge.c,v 1.86 2012/09/29 18:54:39 miod Exp $ */
/*
* Copyright (c) 2008, 2009, 2011 Miodrag Vallat.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, 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.
*/
/*
* XBow Bridge (as well as XBridge and PIC) Widget driver.
*/
/*
* IMPORTANT AUTHOR'S NOTE: I did not write any of this code under the
* influence of drugs. Looking back at that particular piece of hardware,
* I wonder if this hasn't been a terrible mistake.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <sys/evcount.h>
#include <sys/malloc.h>
#include <sys/proc.h>
#include <sys/extent.h>
#include <sys/mbuf.h>
#include <sys/mutex.h>
#include <sys/queue.h>
#include <machine/atomic.h>
#include <machine/autoconf.h>
#include <machine/bus.h>
#include <machine/cpu.h>
#include <machine/intr.h>
#include <machine/mnode.h>
#include <uvm/uvm.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcidevs.h>
#include <dev/pci/ppbreg.h>
#include <dev/cardbus/rbus.h>
#include <mips64/archtype.h>
#include <sgi/xbow/xbow.h>
#include <sgi/xbow/xbowdevs.h>
#include <sgi/xbow/widget.h>
#include <sgi/xbow/xbridgereg.h>
#ifdef TGT_OCTANE
#include <sgi/sgi/ip30.h>
#endif
#include "cardbus.h"
int xbridge_match(struct device *, void *, void *);
void xbridge_attach(struct device *, struct device *, void *);
int xbridge_print(void *, const char *);
int xbridge_submatch(struct device *, void *, void *);
int xbpci_match(struct device *, void *, void *);
void xbpci_attach(struct device *, struct device *, void *);
int xbpci_print(void *, const char *);
struct xbridge_intr;
struct xbpci_attach_args {
uint xaa_busno;
int xaa_flags;
int16_t xaa_nasid;
int xaa_widget;
uint xaa_devio_skew;
int xaa_revision;
bus_space_tag_t xaa_regt;
bus_addr_t xaa_offset;
};
struct xbpci_softc {
struct device xb_dev;
struct device *xb_bow;
/*
* Bridge register accessors.
* Due to hardware bugs, PIC registers can only be accessed
* with 64 bit operations, although the hardware was supposed
* to be directly compatible with XBridge on that aspect.
*/
uint64_t (*xb_read_reg)(bus_space_tag_t, bus_space_handle_t,
bus_addr_t);
void (*xb_write_reg)(bus_space_tag_t, bus_space_handle_t,
bus_addr_t, uint64_t);
uint xb_busno;
uint xb_nslots;
int xb_flags;
#define XF_XBRIDGE 0x01 /* is either PIC or XBridge */
#define XF_PIC 0x02 /* is PIC */
#define XF_NO_DIRECT_IO 0x04 /* no direct I/O mapping */
#define XF_PCIX 0x08 /* bus in PCIX mode */
int16_t xb_nasid;
int xb_widget;
uint xb_devio_skew; /* upper bits of devio ARCS mappings */
int xb_revision;
struct mips_pci_chipset xb_pc;
bus_space_tag_t xb_regt;
bus_space_handle_t xb_regh;
struct mips_bus_space *xb_mem_bus_space;
struct mips_bus_space *xb_mem_bus_space_sw;
struct mips_bus_space *xb_io_bus_space;
struct mips_bus_space *xb_io_bus_space_sw;
struct machine_bus_dma_tag *xb_dmat;
struct xbridge_intr *xb_intr[BRIDGE_NINTRS];
char xb_intrstr[BRIDGE_NINTRS][sizeof("irq #, xbow irq ###")];
int xb_err_intrsrc;
uint64_t xb_ier; /* copy of BRIDGE_IER value */
/*
* Device information.
*/
struct {
pcireg_t id;
uint32_t devio;
} xb_devices[MAX_SLOTS];
uint xb_devio_usemask;
/*
* Large resource view sizes
*/
bus_addr_t xb_iostart, xb_ioend;
bus_addr_t xb_memstart, xb_memend;
/*
* Resource extents for the large resource views, used during
* resource setup, then cleaned up for the MI code.
*/
char xb_ioexname[32];
struct extent *xb_ioex;
char xb_memexname[32];
struct extent *xb_memex;
};
struct xbridge_softc {
struct device sc_dev;
uint sc_nbuses;
struct mips_bus_space sc_regt;
};
#define DEVNAME(xb) ((xb)->xb_dev.dv_xname)
#define PCI_ID_EMPTY PCI_ID_CODE(PCI_VENDOR_INVALID, 0xffff);
#define SLOT_EMPTY(xb,dev) \
(PCI_VENDOR((xb)->xb_devices[dev].id) == PCI_VENDOR_INVALID || \
PCI_VENDOR((xb)->xb_devices[dev].id) == 0)
const struct cfattach xbridge_ca = {
sizeof(struct xbridge_softc), xbridge_match, xbridge_attach
};
struct cfdriver xbridge_cd = {
NULL, "xbridge", DV_DULL
};
const struct cfattach xbpci_ca = {
sizeof(struct xbpci_softc), xbpci_match, xbpci_attach
};
struct cfdriver xbpci_cd = {
NULL, "xbpci", DV_DULL
};
void xbridge_attach_hook(struct device *, struct device *,
struct pcibus_attach_args *);
int xbridge_bus_maxdevs(void *, int);
pcitag_t xbridge_make_tag(void *, int, int, int);
void xbridge_decompose_tag(void *, pcitag_t, int *, int *, int *);
int xbridge_conf_size(void *, pcitag_t);
pcireg_t xbridge_conf_read(void *, pcitag_t, int);
void xbridge_conf_write(void *, pcitag_t, int, pcireg_t);
int xbridge_intr_map(struct pci_attach_args *, pci_intr_handle_t *);
const char *xbridge_intr_string(void *, pci_intr_handle_t);
void *xbridge_intr_establish(void *, pci_intr_handle_t, int,
int (*func)(void *), void *, const char *);
void xbridge_intr_disestablish(void *, void *);
int xbridge_intr_line(void *, pci_intr_handle_t);
int xbridge_ppb_setup(void *, pcitag_t, bus_addr_t *, bus_addr_t *,
bus_addr_t *, bus_addr_t *);
int xbridge_probe_device_hook(void *, struct pci_attach_args *);
void *xbridge_rbus_parent_io(struct pci_attach_args *);
void *xbridge_rbus_parent_mem(struct pci_attach_args *);
int xbridge_get_widget(void *);
int xbridge_get_dl(void *, pcitag_t, struct sgi_device_location *);
int xbridge_pci_intr_handler(void *);
int xbridge_err_intr_handler(void *);
uint8_t xbridge_read_1(bus_space_tag_t, bus_space_handle_t, bus_size_t);
uint16_t xbridge_read_2(bus_space_tag_t, bus_space_handle_t, bus_size_t);
void xbridge_write_1(bus_space_tag_t, bus_space_handle_t, bus_size_t,
uint8_t);
void xbridge_write_2(bus_space_tag_t, bus_space_handle_t, bus_size_t,
uint16_t);
void xbridge_read_raw_2(bus_space_tag_t, bus_space_handle_t, bus_addr_t,
uint8_t *, bus_size_t);
void xbridge_write_raw_2(bus_space_tag_t, bus_space_handle_t, bus_addr_t,
const uint8_t *, bus_size_t);
void xbridge_read_raw_4(bus_space_tag_t, bus_space_handle_t, bus_addr_t,
uint8_t *, bus_size_t);
void xbridge_write_raw_4(bus_space_tag_t, bus_space_handle_t, bus_addr_t,
const uint8_t *, bus_size_t);
void xbridge_read_raw_8(bus_space_tag_t, bus_space_handle_t, bus_addr_t,
uint8_t *, bus_size_t);
void xbridge_write_raw_8(bus_space_tag_t, bus_space_handle_t, bus_addr_t,
const uint8_t *, bus_size_t);
int xbridge_space_map_devio(bus_space_tag_t, bus_addr_t, bus_size_t, int,
bus_space_handle_t *);
int xbridge_space_map_io(bus_space_tag_t, bus_addr_t, bus_size_t, int,
bus_space_handle_t *);
int xbridge_space_map_mem(bus_space_tag_t, bus_addr_t, bus_size_t, int,
bus_space_handle_t *);
int xbridge_space_region_devio(bus_space_tag_t, bus_space_handle_t,
bus_size_t, bus_size_t, bus_space_handle_t *);
int xbridge_space_region_io(bus_space_tag_t, bus_space_handle_t,
bus_size_t, bus_size_t, bus_space_handle_t *);
int xbridge_space_region_mem(bus_space_tag_t, bus_space_handle_t,
bus_size_t, bus_size_t, bus_space_handle_t *);
void xbridge_space_barrier(bus_space_tag_t, bus_space_handle_t,
bus_size_t, bus_size_t, int);
bus_addr_t xbridge_pa_to_device(paddr_t);
paddr_t xbridge_device_to_pa(bus_addr_t);
int xbridge_rbus_space_map(bus_space_tag_t, bus_addr_t, bus_size_t,
int, bus_space_handle_t *);
void xbridge_rbus_space_unmap(bus_space_tag_t, bus_space_handle_t,
bus_size_t, bus_addr_t *);
void xbridge_err_clear(struct xbpci_softc *, uint64_t);
void xbridge_err_handle(struct xbpci_softc *, uint64_t);
int xbridge_allocate_devio(struct xbpci_softc *, int, int);
void xbridge_set_devio(struct xbpci_softc *, int, uint32_t, int);
int xbridge_resource_explore(struct xbpci_softc *, pcitag_t,
struct extent *, struct extent *);
void xbridge_resource_manage(struct xbpci_softc *, pcitag_t,
struct extent *, struct extent *);
void xbridge_device_setup(struct xbpci_softc *, int, int, uint32_t);
int xbridge_extent_chomp(struct xbpci_softc *, struct extent *);
void xbridge_extent_setup(struct xbpci_softc *);
struct extent *
xbridge_mapping_setup(struct xbpci_softc *, int);
void xbridge_resource_setup(struct xbpci_softc *);
void xbridge_rrb_setup(struct xbpci_softc *, int);
const char *
xbridge_setup(struct xbpci_softc *);
uint64_t bridge_read_reg(bus_space_tag_t, bus_space_handle_t, bus_addr_t);
void bridge_write_reg(bus_space_tag_t, bus_space_handle_t, bus_addr_t,
uint64_t);
uint64_t pic_read_reg(bus_space_tag_t, bus_space_handle_t, bus_addr_t);
void pic_write_reg(bus_space_tag_t, bus_space_handle_t, bus_addr_t,
uint64_t);
static __inline__ uint64_t
xbridge_read_reg(struct xbpci_softc *xb, bus_addr_t a)
{
return (*xb->xb_read_reg)(xb->xb_regt, xb->xb_regh, a);
}
static __inline__ void
xbridge_write_reg(struct xbpci_softc *xb, bus_addr_t a, uint64_t v)
{
(*xb->xb_write_reg)(xb->xb_regt, xb->xb_regh, a, v);
}
static __inline__ void
xbridge_wbflush(struct xbpci_softc *xb, uint d)
{
while (xbridge_read_reg(xb, BRIDGE_DEVICE_WBFLUSH(d)) != 0) ;
}
static const struct machine_bus_dma_tag xbridge_dma_tag = {
NULL, /* _cookie */
_dmamap_create,
_dmamap_destroy,
_dmamap_load,
_dmamap_load_mbuf,
_dmamap_load_uio,
_dmamap_load_raw,
_dmamap_load_buffer,
_dmamap_unload,
_dmamap_sync,
_dmamem_alloc,
_dmamem_free,
_dmamem_map,
_dmamem_unmap,
_dmamem_mmap,
xbridge_pa_to_device,
xbridge_device_to_pa,
BRIDGE_DMA_DIRECT_LENGTH - 1
};
static const struct mips_pci_chipset xbridge_pci_chipset = {
.pc_attach_hook = xbridge_attach_hook,
.pc_bus_maxdevs = xbridge_bus_maxdevs,
.pc_make_tag = xbridge_make_tag,
.pc_decompose_tag = xbridge_decompose_tag,
.pc_conf_size = xbridge_conf_size,
.pc_conf_read = xbridge_conf_read,
.pc_conf_write = xbridge_conf_write,
.pc_probe_device_hook = xbridge_probe_device_hook,
.pc_get_widget = xbridge_get_widget,
.pc_get_dl = xbridge_get_dl,
.pc_intr_map = xbridge_intr_map,
.pc_intr_string = xbridge_intr_string,
.pc_intr_establish = xbridge_intr_establish,
.pc_intr_disestablish = xbridge_intr_disestablish,
.pc_intr_line = xbridge_intr_line,
.pc_ppb_setup = xbridge_ppb_setup,
#if NCARDBUS > 0
.pc_rbus_parent_io = xbridge_rbus_parent_io,
.pc_rbus_parent_mem = xbridge_rbus_parent_mem
#endif
};
/*
********************* Autoconf glue.
*/
static const struct {
uint32_t vendor;
uint32_t product;
int flags;
} xbridge_devices[] = {
/* original Bridge */
{ XBOW_VENDOR_SGI4, XBOW_PRODUCT_SGI4_BRIDGE, 0 },
/* XBridge */
{ XBOW_VENDOR_SGI3, XBOW_PRODUCT_SGI3_XBRIDGE, XF_XBRIDGE },
/* PIC */
{ XBOW_VENDOR_SGI3, XBOW_PRODUCT_SGI3_PIC, XF_PIC }
};
int
xbridge_match(struct device *parent, void *match, void *aux)
{
struct xbow_attach_args *xaa = aux;
uint i;
for (i = 0; i < nitems(xbridge_devices); i++)
if (xaa->xaa_vendor == xbridge_devices[i].vendor &&
xaa->xaa_product == xbridge_devices[i].product)
return 1;
return 0;
}
void
xbridge_attach(struct device *parent, struct device *self, void *aux)
{
struct xbridge_softc *sc = (struct xbridge_softc *)self;
struct xbow_attach_args *xaa = aux;
struct xbpci_attach_args xbpa;
int flags;
uint devio_skew;
uint i;
printf(" revision %d\n", xaa->xaa_revision);
for (i = 0; i < nitems(xbridge_devices); i++)
if (xaa->xaa_vendor == xbridge_devices[i].vendor &&
xaa->xaa_product == xbridge_devices[i].product) {
flags = xbridge_devices[i].flags;
break;
}
/* PICs are XBridges without an I/O window */
if (ISSET(flags, XF_PIC))
SET(flags, XF_XBRIDGE | XF_NO_DIRECT_IO);
/* Bridge < D lacks an I/O window */
if (!ISSET(flags, XF_XBRIDGE) && xaa->xaa_revision < 4)
SET(flags, XF_NO_DIRECT_IO);
/*
* Figure out where the ARCS devio mappings will go.
* ARCS configures all the devio in a contiguous 16MB area
* (i.e. the upper 8 bits of the DEVIO_BASE field of the
* devio registers are the same).
*
* In order to make our life simpler, on widgets where we may
* want to keep some of the ARCS mappings (because that's where
* our console device lives), we will use the same 16MB area.
*
* Otherwise, we can use whatever values we want; to keep the
* code simpler, we will nevertheless use a 16MB area as well,
* making sure it does not start at zero so that pcmcia bridges
* can be used.
*
* On Octane, the upper bits of ARCS mappings are zero, and thus
* point to the start of the widget. On Origin, they match the
* widget number.
*/
#ifdef TGT_OCTANE
if (sys_config.system_type == SGI_OCTANE &&
xaa->xaa_widget == IP30_BRIDGE_WIDGET)
devio_skew = 0;
else
#endif
devio_skew = xaa->xaa_widget;
sc->sc_nbuses = ISSET(flags, XF_PIC) ? PIC_NBUSES : BRIDGE_NBUSES;
/* make a permanent copy of the on-stack bus_space_tag */
bcopy(xaa->xaa_iot, &sc->sc_regt, sizeof(struct mips_bus_space));
/* configure and attach PCI buses */
for (i = 0; i < sc->sc_nbuses; i++) {
xbpa.xaa_busno = i;
xbpa.xaa_flags = flags;
xbpa.xaa_nasid = xaa->xaa_nasid;
xbpa.xaa_widget = xaa->xaa_widget;
xbpa.xaa_devio_skew = devio_skew;
xbpa.xaa_revision = xaa->xaa_revision;
xbpa.xaa_regt = &sc->sc_regt;
xbpa.xaa_offset = i != 0 ? BRIDGE_BUS_OFFSET : 0;
config_found_sm(&sc->sc_dev, &xbpa, xbridge_print,
xbridge_submatch);
}
}
int
xbridge_submatch(struct device *parent, void *vcf, void *aux)
{
struct cfdata *cf = vcf;
struct xbpci_attach_args *xaa = aux;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != xaa->xaa_busno)
return 0;
return (*cf->cf_attach->ca_match)(parent, vcf, aux);
}
int
xbridge_print(void *aux, const char *pnp)
{
struct xbpci_attach_args *xaa = aux;
if (pnp)
printf("xbpci at %s", pnp);
printf(" bus %d", xaa->xaa_busno);
return UNCONF;
}
int
xbpci_match(struct device *parent, void *vcf, void *aux)
{
return 1;
}
void
xbpci_attach(struct device *parent, struct device *self, void *aux)
{
struct xbpci_softc *xb = (struct xbpci_softc *)self;
struct xbpci_attach_args *xaa = (struct xbpci_attach_args *)aux;
struct pcibus_attach_args pba;
const char *errmsg = NULL;
printf(": ");
/* xbow -> xbridge -> xbpci: xbow device is our grandfather */
xb->xb_bow = parent->dv_parent;
xb->xb_busno = xaa->xaa_busno;
xb->xb_flags = xaa->xaa_flags;
xb->xb_nasid = xaa->xaa_nasid;
xb->xb_widget = xaa->xaa_widget;
xb->xb_devio_skew = xaa->xaa_devio_skew;
xb->xb_revision = xaa->xaa_revision;
if (ISSET(xb->xb_flags, XF_PIC)) {
xb->xb_nslots = PIC_NSLOTS;
xb->xb_read_reg = pic_read_reg;
xb->xb_write_reg = pic_write_reg;
} else {
xb->xb_nslots = BRIDGE_NSLOTS;
xb->xb_read_reg = bridge_read_reg;
xb->xb_write_reg = bridge_write_reg;
}
/*
* Map Bridge registers.
*/
xb->xb_regt = xaa->xaa_regt;
if (bus_space_map(xaa->xaa_regt, xaa->xaa_offset,
BRIDGE_REGISTERS_SIZE, 0, &xb->xb_regh)) {
printf("unable to map control registers\n");
return;
}
/*
* Create bus_space accessors... we inherit them from xbow, but
* need to overwrite mapping routines, and set up byteswapping
* versions.
*/
xb->xb_mem_bus_space = malloc(sizeof (*xb->xb_mem_bus_space),
M_DEVBUF, M_NOWAIT);
xb->xb_mem_bus_space_sw = malloc(sizeof (*xb->xb_mem_bus_space_sw),
M_DEVBUF, M_NOWAIT);
xb->xb_io_bus_space = malloc(sizeof (*xb->xb_io_bus_space),
M_DEVBUF, M_NOWAIT);
xb->xb_io_bus_space_sw = malloc(sizeof (*xb->xb_io_bus_space_sw),
M_DEVBUF, M_NOWAIT);
if (xb->xb_mem_bus_space == NULL || xb->xb_mem_bus_space_sw == NULL ||
xb->xb_io_bus_space == NULL || xb->xb_io_bus_space_sw == NULL)
goto fail1;
bcopy(xb->xb_regt, xb->xb_mem_bus_space, sizeof(*xb->xb_mem_bus_space));
xb->xb_mem_bus_space->bus_private = xb;
xb->xb_mem_bus_space->_space_map = xbridge_space_map_devio;
xb->xb_mem_bus_space->_space_subregion = xbridge_space_region_devio;
xb->xb_mem_bus_space->_space_barrier = xbridge_space_barrier;
bcopy(xb->xb_mem_bus_space, xb->xb_mem_bus_space_sw,
sizeof(*xb->xb_mem_bus_space));
xb->xb_mem_bus_space_sw->_space_read_1 = xbridge_read_1;
xb->xb_mem_bus_space_sw->_space_write_1 = xbridge_write_1;
xb->xb_mem_bus_space_sw->_space_read_2 = xbridge_read_2;
xb->xb_mem_bus_space_sw->_space_write_2 = xbridge_write_2;
xb->xb_mem_bus_space_sw->_space_read_raw_2 = xbridge_read_raw_2;
xb->xb_mem_bus_space_sw->_space_write_raw_2 = xbridge_write_raw_2;
xb->xb_mem_bus_space_sw->_space_read_raw_4 = xbridge_read_raw_4;
xb->xb_mem_bus_space_sw->_space_write_raw_4 = xbridge_write_raw_4;
xb->xb_mem_bus_space_sw->_space_read_raw_8 = xbridge_read_raw_8;
xb->xb_mem_bus_space_sw->_space_write_raw_8 = xbridge_write_raw_8;
bcopy(xb->xb_regt, xb->xb_io_bus_space, sizeof(*xb->xb_io_bus_space));
xb->xb_io_bus_space->bus_private = xb;
xb->xb_io_bus_space->_space_map = xbridge_space_map_devio;
xb->xb_io_bus_space->_space_subregion = xbridge_space_region_devio;
xb->xb_io_bus_space->_space_barrier = xbridge_space_barrier;
bcopy(xb->xb_io_bus_space, xb->xb_io_bus_space_sw,
sizeof(*xb->xb_io_bus_space));
xb->xb_io_bus_space_sw->_space_read_1 = xbridge_read_1;
xb->xb_io_bus_space_sw->_space_write_1 = xbridge_write_1;
xb->xb_io_bus_space_sw->_space_read_2 = xbridge_read_2;
xb->xb_io_bus_space_sw->_space_write_2 = xbridge_write_2;
xb->xb_io_bus_space_sw->_space_read_raw_2 = xbridge_read_raw_2;
xb->xb_io_bus_space_sw->_space_write_raw_2 = xbridge_write_raw_2;
xb->xb_io_bus_space_sw->_space_read_raw_4 = xbridge_read_raw_4;
xb->xb_io_bus_space_sw->_space_write_raw_4 = xbridge_write_raw_4;
xb->xb_io_bus_space_sw->_space_read_raw_8 = xbridge_read_raw_8;
xb->xb_io_bus_space_sw->_space_write_raw_8 = xbridge_write_raw_8;
xb->xb_dmat = malloc(sizeof (*xb->xb_dmat), M_DEVBUF, M_NOWAIT);
if (xb->xb_dmat == NULL)
goto fail1;
memcpy(xb->xb_dmat, &xbridge_dma_tag, sizeof(*xb->xb_dmat));
xb->xb_dmat->_cookie = xb;
/*
* Initialize PCI methods.
*/
bcopy(&xbridge_pci_chipset, &xb->xb_pc, sizeof(xbridge_pci_chipset));
xb->xb_pc.pc_conf_v = xb;
xb->xb_pc.pc_intr_v = xb;
/*
* Configure Bridge for proper operation (DMA, I/O mappings,
* RRB allocation, etc).
*/
if ((errmsg = xbridge_setup(xb)) != NULL)
goto fail2;
printf("\n");
/*
* Attach children.
*/
xbridge_extent_setup(xb);
bzero(&pba, sizeof(pba));
pba.pba_busname = "pci";
/*
* XXX pba_iot and pba_memt ought to be irrelevant, since we
* XXX return the tags a device needs in probe_device_hook();
* XXX however the pci(4) device needs a valid pba_memt for the
* XXX PCIOCGETROM* ioctls.
* XXX
* XXX Since most devices will need the byteswap tags, and those
* XXX which don't do not have PCI roms, let's pass the byteswap
* XXX versions by default.
*/
pba.pba_iot = xb->xb_io_bus_space_sw;
pba.pba_memt = xb->xb_mem_bus_space_sw;
pba.pba_dmat = xb->xb_dmat;
pba.pba_ioex = xb->xb_ioex;
pba.pba_memex = xb->xb_memex;
#ifdef DEBUG
if (xb->xb_ioex != NULL)
extent_print(xb->xb_ioex);
if (xb->xb_memex != NULL)
extent_print(xb->xb_memex);
#endif
pba.pba_pc = &xb->xb_pc;
pba.pba_domain = pci_ndomains++;
pba.pba_bus = 0;
config_found(self, &pba, xbpci_print);
return;
fail2:
free(xb->xb_dmat, M_DEVBUF);
fail1:
if (xb->xb_io_bus_space_sw != NULL)
free(xb->xb_io_bus_space_sw, M_DEVBUF);
if (xb->xb_io_bus_space != NULL)
free(xb->xb_io_bus_space, M_DEVBUF);
if (xb->xb_mem_bus_space_sw != NULL)
free(xb->xb_mem_bus_space_sw, M_DEVBUF);
if (xb->xb_mem_bus_space != NULL)
free(xb->xb_mem_bus_space, M_DEVBUF);
if (errmsg == NULL)
errmsg = "not enough memory to build bus access structures";
printf("%s\n", errmsg);
}
int
xbpci_print(void *aux, const char *pnp)
{
struct pcibus_attach_args *pba = aux;
if (pnp)
printf("%s at %s", pba->pba_busname, pnp);
printf(" bus %d", pba->pba_bus);
return UNCONF;
}
/*
********************* PCI glue.
*/
void
xbridge_attach_hook(struct device *parent, struct device *self,
struct pcibus_attach_args *pba)
{
}
pcitag_t
xbridge_make_tag(void *cookie, int bus, int dev, int func)
{
return (bus << 16) | (dev << 11) | (func << 8);
}
void
xbridge_decompose_tag(void *cookie, pcitag_t tag, int *busp, int *devp,
int *funcp)
{
if (busp != NULL)
*busp = (tag >> 16) & 0xff;
if (devp != NULL)
*devp = (tag >> 11) & 0x1f;
if (funcp != NULL)
*funcp = (tag >> 8) & 0x7;
}
int
xbridge_bus_maxdevs(void *cookie, int busno)
{
struct xbpci_softc *xb = cookie;
return busno == 0 ? xb->xb_nslots : 32;
}
int
xbridge_conf_size(void *cookie, pcitag_t tag)
{
#if 0
struct xbpci_softc *xb = cookie;
int bus, dev, fn;
xbridge_decompose_tag(cookie, tag, &bus, &dev, &fn);
/*
* IOC3 devices only implement a subset of the PCI configuration
* registers. Although xbridge_conf_{read,write} correctly
* handle the unimplemented registers, better provide a limited
* configuration space to userland.
*/
if (bus == 0 && xb->xb_devices[dev].id ==
PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC3))
return PCI_INTERRUPT_REG + 4;
#endif
return PCI_CONFIG_SPACE_SIZE;
}
pcireg_t
xbridge_conf_read(void *cookie, pcitag_t tag, int offset)
{
struct xbpci_softc *xb = cookie;
pcireg_t data;
int bus, dev, fn;
paddr_t pa;
int skip;
int s;
xbridge_decompose_tag(cookie, tag, &bus, &dev, &fn);
/*
* IOC3 devices only implement a subset of the PCI configuration
* registers (supposedly only the first 0x20 bytes, however
* writing to the second BAR also writes to the first).
*
* Depending on which particular model we encounter, things may
* seem to work, or write access to nonexisting registers would
* completely freeze the machine.
*
* We thus check for the device type here, and handle the non
* existing registers ourselves.
*/
skip = 0;
if (bus == 0 && xb->xb_devices[dev].id ==
PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC3)) {
switch (offset) {
case PCI_ID_REG:
case PCI_COMMAND_STATUS_REG:
case PCI_CLASS_REG:
case PCI_BHLC_REG:
case PCI_MAPREG_START:
/* These registers are implemented. Go ahead. */
break;
case PCI_INTERRUPT_REG:
/* This register is not implemented. Fake it. */
data = (PCI_INTERRUPT_PIN_A <<
PCI_INTERRUPT_PIN_SHIFT) |
(dev << PCI_INTERRUPT_LINE_SHIFT);
skip = 1;
break;
default:
/* These registers are not implemented. */
data = 0;
skip = 1;
break;
}
}
if (skip == 0) {
/*
* Disable interrupts on this bridge (especially error
* interrupts).
*/
s = splhigh();
xbridge_write_reg(xb, BRIDGE_IER, 0);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
if (bus != 0) {
xbridge_write_reg(xb, BRIDGE_PCI_CFG,
(bus << 16) | (dev << 11));
pa = xb->xb_regh + BRIDGE_PCI_CFG1_SPACE;
} else {
/*
* On PIC, device 0 in configuration space is the
* PIC itself, device slots are offset by one.
*/
if (ISSET(xb->xb_flags, XF_PIC))
dev++;
pa = xb->xb_regh + BRIDGE_PCI_CFG_SPACE + (dev << 12);
}
pa += (fn << 8) + offset;
if (guarded_read_4(pa, &data) != 0)
data = 0xffffffff;
xbridge_write_reg(xb, BRIDGE_IER, xb->xb_ier);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
splx(s);
}
return data;
}
void
xbridge_conf_write(void *cookie, pcitag_t tag, int offset, pcireg_t data)
{
struct xbpci_softc *xb = cookie;
int bus, dev, fn;
paddr_t pa;
int skip;
int s;
xbridge_decompose_tag(cookie, tag, &bus, &dev, &fn);
/*
* IOC3 devices only implement a subset of the PCI configuration
* registers.
* Depending on which particular model we encounter, things may
* seem to work, or write access to nonexisting registers would
* completely freeze the machine.
*
* We thus check for the device type here, and handle the non
* existing registers ourselves.
*/
skip = 0;
if (bus == 0 && xb->xb_devices[dev].id ==
PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC3)) {
switch (offset) {
case PCI_COMMAND_STATUS_REG:
/*
* Some IOC3 models do not support having this bit
* cleared (which is what pci_mapreg_probe() will
* do), so we set it unconditionnaly.
*/
data |= PCI_COMMAND_MEM_ENABLE;
/* FALLTHROUGH */
case PCI_ID_REG:
case PCI_CLASS_REG:
case PCI_BHLC_REG:
case PCI_MAPREG_START:
/* These registers are implemented. Go ahead. */
break;
default:
/* These registers are not implemented. */
skip = 1;
break;
}
}
if (skip == 0) {
/*
* Disable interrupts on this bridge (especially error
* interrupts).
*/
s = splhigh();
xbridge_write_reg(xb, BRIDGE_IER, 0);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
if (bus != 0) {
xbridge_write_reg(xb, BRIDGE_PCI_CFG,
(bus << 16) | (dev << 11));
pa = xb->xb_regh + BRIDGE_PCI_CFG1_SPACE;
} else {
/*
* On PIC, device 0 in configuration space is the
* PIC itself, device slots are offset by one.
*/
if (ISSET(xb->xb_flags, XF_PIC))
dev++;
pa = xb->xb_regh + BRIDGE_PCI_CFG_SPACE + (dev << 12);
}
pa += (fn << 8) + offset;
guarded_write_4(pa, data);
xbridge_write_reg(xb, BRIDGE_IER, xb->xb_ier);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
splx(s);
}
}
int
xbridge_probe_device_hook(void *cookie, struct pci_attach_args *pa)
{
struct xbpci_softc *xb = cookie;
/*
* Check for the hardware byteswap setting of the device we are
* interested in, and pick bus_space_tag accordingly.
* Note that the device list here must match xbridge_resource_setup().
*/
if (pa->pa_id == PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC3) ||
pa->pa_id == PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC4) ||
pa->pa_id == PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_RAD1)) {
pa->pa_iot = xb->xb_io_bus_space;
pa->pa_memt = xb->xb_mem_bus_space;
} else {
pa->pa_iot = xb->xb_io_bus_space_sw;
pa->pa_memt = xb->xb_mem_bus_space_sw;
}
return 0;
}
int
xbridge_get_widget(void *cookie)
{
struct xbpci_softc *xb = cookie;
return xb->xb_widget;
}
int
xbridge_get_dl(void *cookie, pcitag_t tag, struct sgi_device_location *sdl)
{
int bus, device, fn;
struct xbpci_softc *xb = cookie;
xbridge_decompose_tag(cookie, tag, &bus, &device, &fn);
if (bus != 0)
return 0;
sdl->nasid = xb->xb_nasid;
sdl->widget = xb->xb_widget;
sdl->bus = xb->xb_busno;
sdl->device = device;
sdl->fn = fn;
return 1;
}
/*
********************* Interrupt handling.
*/
/*
* We map each slot to its own interrupt bit, which will in turn be routed to
* the Heart or Hub widget in charge of interrupt processing.
*/
struct xbridge_intrhandler {
LIST_ENTRY(xbridge_intrhandler) xih_nxt;
struct xbridge_intr *xih_main;
int (*xih_func)(void *);
void *xih_arg;
struct evcount xih_count;
int xih_level;
int xih_device; /* device slot number */
};
struct xbridge_intr {
struct xbpci_softc *xi_bus;
int xi_intrsrc; /* interrupt source on interrupt widget */
int xi_intrbit; /* interrupt source on BRIDGE */
LIST_HEAD(, xbridge_intrhandler) xi_handlers;
};
/* how our pci_intr_handle_t are constructed... */
#define XBRIDGE_INTR_VALID 0x100
#define XBRIDGE_INTR_HANDLE(d,b) (XBRIDGE_INTR_VALID | ((d) << 3) | (b))
#define XBRIDGE_INTR_DEVICE(h) (((h) >> 3) & 07)
#define XBRIDGE_INTR_BIT(h) ((h) & 07)
int
xbridge_intr_map(struct pci_attach_args *pa, pci_intr_handle_t *ihp)
{
struct xbpci_softc *xb = pa->pa_pc->pc_conf_v;
int bus, device, intr;
int pin;
*ihp = 0;
if (pa->pa_intrpin == 0) {
/* No IRQ used. */
return 1;
}
#ifdef DIAGNOSTIC
if (pa->pa_intrpin > 4) {
printf("%s: bad interrupt pin %d\n", __func__, pa->pa_intrpin);
return 1;
}
#endif
pci_decompose_tag(pa->pa_pc, pa->pa_tag, &bus, &device, NULL);
if (pa->pa_bridgetag) {
pin = PPB_INTERRUPT_SWIZZLE(pa->pa_rawintrpin, device);
if (!ISSET(pa->pa_bridgeih[pin - 1], XBRIDGE_INTR_VALID))
return 0;
intr = XBRIDGE_INTR_BIT(pa->pa_bridgeih[pin - 1]);
} else {
/*
* For IOC3 devices, pin A is always the regular PCI interrupt,
* but wiring of interrupt pin B may vary.
* We rely upon ioc(4) being able to figure out whether it's
* an onboard chip or not, and to require interrupt pin D
* instead of B in the former case.
*/
intr = -1;
if (xb->xb_devices[device].id ==
PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC3)) {
switch (pa->pa_intrpin) {
case PCI_INTERRUPT_PIN_A:
case PCI_INTERRUPT_PIN_B:
break;
case PCI_INTERRUPT_PIN_D:
/*
* If this device is an onboard IOC3,
* interrupt pin B is wired as pin A of
* the first empty PCI slot...
*/
for (intr = 0; intr < MAX_SLOTS; intr++)
if (SLOT_EMPTY(xb, intr))
break;
/* should not happen, but fallback anyway */
if (intr >= MAX_SLOTS)
intr = -1;
break;
default:
return 1;
}
}
if (intr < 0) {
if (pa->pa_intrpin & 1)
intr = device;
else
intr = device ^ 4;
}
}
*ihp = XBRIDGE_INTR_HANDLE(device, intr);
return 0;
}
const char *
xbridge_intr_string(void *cookie, pci_intr_handle_t ih)
{
struct xbpci_softc *xb = (struct xbpci_softc *)cookie;
int intrbit = XBRIDGE_INTR_BIT(ih);
if (xb->xb_intrstr[intrbit][0] == '\0')
snprintf(xb->xb_intrstr[intrbit],
sizeof xb->xb_intrstr[intrbit], "irq %d", ih);
return xb->xb_intrstr[intrbit];
}
void *
xbridge_intr_establish(void *cookie, pci_intr_handle_t ih, int level,
int (*func)(void *), void *arg, const char *name)
{
struct xbpci_softc *xb = (struct xbpci_softc *)cookie;
struct xbridge_intr *xi;
struct xbridge_intrhandler *xih;
uint64_t int_addr;
int intrbit = XBRIDGE_INTR_BIT(ih);
int device = XBRIDGE_INTR_DEVICE(ih);
int intrsrc;
int new;
/*
* Allocate bookkeeping structure if this is the
* first time we're using this interrupt source.
*/
if ((xi = xb->xb_intr[intrbit]) == NULL) {
xi = (struct xbridge_intr *)
malloc(sizeof(*xi), M_DEVBUF, M_NOWAIT);
if (xi == NULL)
return NULL;
xi->xi_bus = xb;
xi->xi_intrbit = intrbit;
LIST_INIT(&xi->xi_handlers);
if (xbow_intr_register(xb->xb_widget, level, &intrsrc) != 0) {
free(xi, M_DEVBUF);
return NULL;
}
xi->xi_intrsrc = intrsrc;
xb->xb_intr[intrbit] = xi;
snprintf(xb->xb_intrstr[intrbit],
sizeof xb->xb_intrstr[intrbit],
"irq %d, xbow irq %d", intrbit, intrsrc);
} else
intrsrc = xi->xi_intrsrc;
/*
* Register the interrupt at the Heart or Hub level if this is the
* first time we're using this interrupt source.
*/
new = LIST_EMPTY(&xi->xi_handlers);
if (new) {
/*
* XXX The interrupt dispatcher is always registered
* XXX at IPL_BIO, in case the interrupt will be shared
* XXX between devices of different levels.
*/
if (xbow_intr_establish(xbridge_pci_intr_handler, xi, intrsrc,
IPL_BIO, NULL, NULL)) {
printf("%s: unable to register interrupt handler\n",
DEVNAME(xb));
return NULL;
}
}
xih = (struct xbridge_intrhandler *)
malloc(sizeof(*xih), M_DEVBUF, M_NOWAIT);
if (xih == NULL)
return NULL;
xih->xih_main = xi;
xih->xih_func = func;
xih->xih_arg = arg;
xih->xih_level = level;
xih->xih_device = device;
evcount_attach(&xih->xih_count, name, &xi->xi_intrsrc);
LIST_INSERT_HEAD(&xi->xi_handlers, xih, xih_nxt);
if (new) {
/*
* Note that, while PIC uses a complete XIO address,
* Bridge will only store the interrupt source and high
* bits of the address, and will reuse the widget interrupt
* address for the low 38 bits of the XIO address.
*/
if (ISSET(xb->xb_flags, XF_PIC))
int_addr = ((uint64_t)intrsrc << 48) |
(xbow_intr_address & ((1UL << 48) - 1));
else
int_addr = ((xbow_intr_address >> 30) &
0x0003ff00) | intrsrc;
xb->xb_ier |= 1 << intrbit;
xbridge_write_reg(xb, BRIDGE_INT_ADDR(intrbit), int_addr);
xbridge_write_reg(xb, BRIDGE_IER, xb->xb_ier);
/*
* INT_MODE register controls which interrupt pins cause
* ``interrupt clear'' packets to be sent for high->low
* transition.
* We enable such packets to be sent in order not to have to
* clear interrupts ourselves.
*/
xbridge_write_reg(xb, BRIDGE_INT_MODE,
xbridge_read_reg(xb, BRIDGE_INT_MODE) | (1 << intrbit));
xbridge_write_reg(xb, BRIDGE_INT_DEV,
xbridge_read_reg(xb, BRIDGE_INT_DEV) |
(device << (intrbit * 3)));
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
}
return (void *)xih;
}
void
xbridge_intr_disestablish(void *cookie, void *vih)
{
struct xbpci_softc *xb = cookie;
struct xbridge_intrhandler *xih = (struct xbridge_intrhandler *)vih;
struct xbridge_intr *xi = xih->xih_main;
int intrbit = xi->xi_intrbit;
evcount_detach(&xih->xih_count);
LIST_REMOVE(xih, xih_nxt);
if (LIST_EMPTY(&xi->xi_handlers)) {
xb->xb_ier &= ~(1 << intrbit);
xbridge_write_reg(xb, BRIDGE_INT_ADDR(intrbit), 0);
xbridge_write_reg(xb, BRIDGE_IER, xb->xb_ier);
xbridge_write_reg(xb, BRIDGE_INT_MODE,
xbridge_read_reg(xb, BRIDGE_INT_MODE) & ~(1 << intrbit));
xbridge_write_reg(xb, BRIDGE_INT_DEV,
xbridge_read_reg(xb, BRIDGE_INT_DEV) &
~(7 << (intrbit * 3)));
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
xbow_intr_disestablish(xi->xi_intrsrc);
/*
* Note we could free xb->xb_intr[intrbit] at this point,
* but it's not really worth doing.
*/
}
free(xih, M_DEVBUF);
}
int
xbridge_intr_line(void *cookie, pci_intr_handle_t ih)
{
return XBRIDGE_INTR_BIT(ih);
}
int
xbridge_err_intr_handler(void *v)
{
struct xbpci_softc *xb = (struct xbpci_softc *)v;
uint64_t isr;
isr = xbridge_read_reg(xb, BRIDGE_ISR) & ~BRIDGE_ISR_HWINTR_MASK;
xbridge_err_handle(xb, isr);
xbow_intr_clear(xb->xb_err_intrsrc);
return 1;
}
int
xbridge_pci_intr_handler(void *v)
{
struct xbridge_intr *xi = (struct xbridge_intr *)v;
struct xbpci_softc *xb = xi->xi_bus;
struct xbridge_intrhandler *xih;
int rc;
uint64_t isr;
/* XXX shouldn't happen, and assumes interrupt is not shared */
if (LIST_EMPTY(&xi->xi_handlers)) {
printf("%s: spurious irq %d\n", DEVNAME(xb), xi->xi_intrbit);
return 0;
}
/*
* Flush PCI write buffers before servicing the interrupt.
*/
LIST_FOREACH(xih, &xi->xi_handlers, xih_nxt)
xbridge_wbflush(xb, xih->xih_device);
isr = xbridge_read_reg(xb, BRIDGE_ISR);
if ((isr & ~BRIDGE_ISR_HWINTR_MASK) != 0) {
/*
* This is an error interrupt triggered by a particular
* device.
*/
xbridge_err_handle(xb, isr & ~BRIDGE_ISR_HWINTR_MASK);
if ((isr &= BRIDGE_ISR_HWINTR_MASK) == 0)
return 1;
}
if ((isr & (1L << xi->xi_intrbit)) == 0) {
/*
* May be a result of the lost interrupt workaround (see
* near the end of this function); don't complain in that
* case.
*/
rc = -1;
#ifdef DEBUG
printf("%s: irq %d but not pending in ISR %08x\n",
DEVNAME(xb), xi->xi_intrbit, isr);
#endif
} else {
rc = 0;
LIST_FOREACH(xih, &xi->xi_handlers, xih_nxt) {
splraise(xih->xih_level);
if ((*xih->xih_func)(xih->xih_arg) != 0) {
xih->xih_count.ec_count++;
rc = 1;
}
/*
* No need to lower spl here, as our caller will
* lower spl upon our return.
* However that splraise() is necessary so that
* interrupt handler code calling splx() will not
* cause our interrupt source to be unmasked.
*/
}
/* XXX assumes interrupt is not shared */
if (rc == 0)
printf("%s: spurious irq %d\n",
DEVNAME(xb), xi->xi_intrbit);
}
/*
* There is a known BRIDGE race in which, if two interrupts
* on two different pins occur within 60nS of each other,
* further interrupts on the first pin do not cause an
* interrupt to be sent.
*
* The workaround against this is to check if our interrupt
* source is still active (i.e. another interrupt is pending),
* in which case we force an interrupt anyway.
*
* The XBridge even has a nice facility to do this, where we
* do not even have to check if our interrupt is pending.
*/
if (ISSET(xb->xb_flags, XF_XBRIDGE))
xbridge_write_reg(xb, BRIDGE_INT_FORCE_PIN(xi->xi_intrbit), 1);
else {
if (xbridge_read_reg(xb, BRIDGE_ISR) & (1 << xi->xi_intrbit))
xbow_intr_set(xi->xi_intrsrc);
}
return rc;
}
/*
********************* chip register access.
*/
uint64_t
bridge_read_reg(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t a)
{
return (uint64_t)widget_read_4(t, h, a);
}
void
bridge_write_reg(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t a,
uint64_t v)
{
widget_write_4(t, h, a, (uint32_t)v);
}
uint64_t
pic_read_reg(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t a)
{
return widget_read_8(t, h, a);
}
void
pic_write_reg(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t a,
uint64_t v)
{
widget_write_8(t, h, a, v);
}
/*
********************* bus_space glue.
*/
uint8_t
xbridge_read_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o)
{
return *(volatile uint8_t *)((h + o) ^ 3);
}
uint16_t
xbridge_read_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o)
{
return *(volatile uint16_t *)((h + o) ^ 2);
}
void
xbridge_write_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o,
uint8_t v)
{
*(volatile uint8_t *)((h + o) ^ 3) = v;
}
void
xbridge_write_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o,
uint16_t v)
{
*(volatile uint16_t *)((h + o) ^ 2) = v;
}
void
xbridge_read_raw_2(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t o,
uint8_t *buf, bus_size_t len)
{
volatile uint16_t *addr = (volatile uint16_t *)((h + o) ^ 2);
len >>= 1;
while (len-- != 0) {
*(uint16_t *)buf = letoh16(*addr);
buf += 2;
}
}
void
xbridge_write_raw_2(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t o,
const uint8_t *buf, bus_size_t len)
{
volatile uint16_t *addr = (volatile uint16_t *)((h + o) ^ 2);
len >>= 1;
while (len-- != 0) {
*addr = htole16(*(uint16_t *)buf);
buf += 2;
}
}
void
xbridge_read_raw_4(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t o,
uint8_t *buf, bus_size_t len)
{
volatile uint32_t *addr = (volatile uint32_t *)(h + o);
len >>= 2;
while (len-- != 0) {
*(uint32_t *)buf = letoh32(*addr);
buf += 4;
}
}
void
xbridge_write_raw_4(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t o,
const uint8_t *buf, bus_size_t len)
{
volatile uint32_t *addr = (volatile uint32_t *)(h + o);
len >>= 2;
while (len-- != 0) {
*addr = htole32(*(uint32_t *)buf);
buf += 4;
}
}
void
xbridge_read_raw_8(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t o,
uint8_t *buf, bus_size_t len)
{
volatile uint64_t *addr = (volatile uint64_t *)(h + o);
len >>= 3;
while (len-- != 0) {
*(uint64_t *)buf = letoh64(*addr);
buf += 8;
}
}
void
xbridge_write_raw_8(bus_space_tag_t t, bus_space_handle_t h, bus_addr_t o,
const uint8_t *buf, bus_size_t len)
{
volatile uint64_t *addr = (volatile uint64_t *)(h + o);
len >>= 3;
while (len-- != 0) {
*addr = htole64(*(uint64_t *)buf);
buf += 8;
}
}
int
xbridge_space_map_devio(bus_space_tag_t t, bus_addr_t offs, bus_size_t size,
int flags, bus_space_handle_t *bshp)
{
struct xbpci_softc *xb = (struct xbpci_softc *)t->bus_private;
bus_addr_t bpa;
#ifdef DIAGNOSTIC
bus_addr_t start, end;
uint d;
#endif
if ((offs >> 24) != xb->xb_devio_skew)
return EINVAL; /* not a devio mapping */
/*
* Figure out which devio `slot' we are using, and make sure
* we do not overrun it.
*/
bpa = offs & ((1UL << 24) - 1);
#ifdef DIAGNOSTIC
for (d = 0; d < xb->xb_nslots; d++) {
start = PIC_DEVIO_OFFS(xb->xb_busno, d);
end = start + BRIDGE_DEVIO_SIZE(d);
if (bpa >= start && bpa < end) {
if (bpa + size > end)
return EINVAL;
else
break;
}
}
if (d == xb->xb_nslots)
return EINVAL;
#endif
/*
* Note we can not use our own bus_base because it might not point
* to our small window. Instead, use the one used by the xbridge
* driver itself, which _always_ points to the short window.
*/
*bshp = xb->xb_regt->bus_base + bpa;
return 0;
}
int
xbridge_space_map_io(bus_space_tag_t t, bus_addr_t offs, bus_size_t size,
int flags, bus_space_handle_t *bshp)
{
struct xbpci_softc *xb = (struct xbpci_softc *)t->bus_private;
/*
* Base address is either within the devio area, or our direct
* window.
*/
if ((offs >> 24) == xb->xb_devio_skew)
return xbridge_space_map_devio(t, offs, size, flags, bshp);
#ifdef DIAGNOSTIC
/* check that this does not overflow the mapping */
if (offs < xb->xb_iostart || offs + size - 1 > xb->xb_ioend)
return EINVAL;
#endif
*bshp = (t->bus_base + offs);
return 0;
}
int
xbridge_space_map_mem(bus_space_tag_t t, bus_addr_t offs, bus_size_t size,
int flags, bus_space_handle_t *bshp)
{
#if defined(TGT_ORIGIN) || defined(DIAGNOSTIC)
struct xbpci_softc *xb = (struct xbpci_softc *)t->bus_private;
#endif
/*
* Base address is either within the devio area, or our direct
* window. Except on Octane where we never setup devio memory
* mappings, because the large mapping is always available.
*/
#ifdef TGT_ORIGIN
if (sys_config.system_type != SGI_OCTANE &&
(offs >> 24) == xb->xb_devio_skew)
return xbridge_space_map_devio(t, offs, size, flags, bshp);
#endif
#ifdef DIAGNOSTIC
/* check that this does not overflow the mapping */
if (offs < xb->xb_memstart || offs + size - 1 > xb->xb_memend)
return EINVAL;
#endif
*bshp = (t->bus_base + offs);
return 0;
}
int
xbridge_space_region_devio(bus_space_tag_t t , bus_space_handle_t bsh,
bus_size_t offset, bus_size_t size, bus_space_handle_t *nbshp)
{
#ifdef DIAGNOSTIC
struct xbpci_softc *xb = (struct xbpci_softc *)t->bus_private;
bus_addr_t bpa;
bus_addr_t start, end;
uint d;
#endif
#ifdef DIAGNOSTIC
/*
* Note we can not use our own bus_base because it might not point
* to our small window. Instead, use the one used by the xbridge
* driver itself, which _always_ points to the short window.
*/
bpa = (bus_addr_t)bsh - xb->xb_regt->bus_base;
if ((bpa >> 24) != 0)
return EINVAL; /* not a devio mapping */
/*
* Figure out which devio `slot' we are using, and make sure
* we do not overrun it.
*/
for (d = 0; d < xb->xb_nslots; d++) {
start = PIC_DEVIO_OFFS(xb->xb_busno, d);
end = start + BRIDGE_DEVIO_SIZE(d);
if (bpa >= start && bpa < end) {
if (bpa + offset + size > end)
return EINVAL;
else
break;
}
}
if (d == xb->xb_nslots)
return EINVAL;
#endif
*nbshp = bsh + offset;
return 0;
}
int
xbridge_space_region_io(bus_space_tag_t t, bus_space_handle_t bsh,
bus_size_t offset, bus_size_t size, bus_space_handle_t *nbshp)
{
struct xbpci_softc *xb = (struct xbpci_softc *)t->bus_private;
bus_addr_t bpa;
/*
* Note we can not use our own bus_base because it might not point
* to our small window. Instead, use the one used by the xbridge
* driver itself, which _always_ points to the short window.
*/
bpa = (bus_addr_t)bsh - xb->xb_regt->bus_base;
if ((bpa >> 24) == 0)
return xbridge_space_region_devio(t, bsh, offset, size, nbshp);
#ifdef DIAGNOSTIC
/* check that this does not overflow the mapping */
bpa = (bus_addr_t)bsh - t->bus_base;
if (bpa + offset + size - 1 > xb->xb_ioend)
return EINVAL;
#endif
*nbshp = bsh + offset;
return 0;
}
int
xbridge_space_region_mem(bus_space_tag_t t, bus_space_handle_t bsh,
bus_size_t offset, bus_size_t size, bus_space_handle_t *nbshp)
{
#if defined(TGT_ORIGIN) || defined(DIAGNOSTIC)
struct xbpci_softc *xb = (struct xbpci_softc *)t->bus_private;
bus_addr_t bpa;
#endif
/*
* Base address is either within the devio area, or our direct
* window. Except on Octane where we never setup devio memory
* mappings, because the large mapping is always available.
*/
#ifdef TGT_ORIGIN
if (sys_config.system_type != SGI_OCTANE) {
/*
* Note we can not use our own bus_base because it might not
* point to our small window. Instead, use the one used by
* the xbridge driver itself, which _always_ points to the
* short window.
*/
bpa = (bus_addr_t)bsh - xb->xb_regt->bus_base;
if ((bpa >> 24) == 0)
return xbridge_space_region_devio(t, bsh, offset, size,
nbshp);
}
#endif
#ifdef DIAGNOSTIC
/* check that this does not overflow the mapping */
bpa = (bus_addr_t)bsh - t->bus_base;
if (bpa + offset + size - 1 > xb->xb_memend)
return EINVAL;
#endif
*nbshp = bsh + offset;
return 0;
}
void
xbridge_space_barrier(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offs,
bus_size_t len, int flags)
{
struct xbpci_softc *xb = (struct xbpci_softc *)t->bus_private;
bus_addr_t bpa, start, end;
uint d, devmin, devmax;
mips_sync();
if (flags & BUS_SPACE_BARRIER_WRITE) {
/*
* Try to figure out which device we are working for, and
* flush its PCI write buffer.
* This is ugly; we really need to be able to provide a
* different bus_space_tag_t to each slot, to be able
* to tell them apart.
*/
if (t->_space_map == xbridge_space_map_devio) {
bpa = (bus_addr_t)h - xb->xb_regt->bus_base;
for (d = 0; d < xb->xb_nslots; d++) {
start = PIC_DEVIO_OFFS(xb->xb_busno, d);
end = start + BRIDGE_DEVIO_SIZE(d);
if (bpa >= start && bpa < end)
break;
}
devmin = d;
devmax = d + 1;
/* should not happen */
if (d == xb->xb_nslots) {
devmin = 0;
devmax = xb->xb_nslots;
}
} else {
/* nothing better came up my sleeve... */
devmin = 0;
devmax = xb->xb_nslots;
}
for (d = devmin; d < devmax; d++)
xbridge_wbflush(xb, d);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
}
}
/*
********************* bus_dma helpers
*/
/*
* Since the common bus_dma code makes sure DMA-able memory is allocated
* within the dma_constraint limits, which are set to the direct DMA
* window, we do not need to check for addresses outside this range here.
*/
bus_addr_t
xbridge_pa_to_device(paddr_t pa)
{
return (pa - dma_constraint.ucr_low) + BRIDGE_DMA_DIRECT_BASE;
}
paddr_t
xbridge_device_to_pa(bus_addr_t addr)
{
return (addr - BRIDGE_DMA_DIRECT_BASE) + dma_constraint.ucr_low;
}
/*
********************* Bridge configuration code.
*/
const char *
xbridge_setup(struct xbpci_softc *xb)
{
paddr_t pa;
uint64_t status, ctrl, int_addr, dirmap;
int mode, speed, dev;
status = xbridge_read_reg(xb, WIDGET_STATUS);
ctrl = xbridge_read_reg(xb, WIDGET_CONTROL);
/*
* Print bus mode and speed.
*/
mode = ISSET(xb->xb_flags, XF_PIC) &&
ISSET(status, PIC_WIDGET_STATUS_PCIX_MODE);
if (mode != 0) {
SET(xb->xb_flags, XF_PCIX);
speed = (status & PIC_WIDGET_STATUS_PCIX_SPEED_MASK) >>
PIC_WIDGET_STATUS_PCIX_SPEED_SHIFT;
} else if (ISSET(xb->xb_flags, XF_XBRIDGE)) {
speed = (ctrl & BRIDGE_WIDGET_CONTROL_SPEED_MASK) >>
BRIDGE_WIDGET_CONTROL_SPEED_SHIFT;
} else
speed = 0;
/* 0 = 33 MHz, 1 = 66 MHz, 2 = 100 MHz, 3 = 133 MHz */
speed = (speed & 2 ? 100 : 33) + (speed & 1 ? 33 : 0);
printf("%d MHz %s bus", speed, mode ? "PCIX" : "PCI");
/*
* Gather device identification for all slots.
* We need this to be able to allocate RRBs correctly, and also
* to be able to check quickly whether a given device is an IOC3.
*/
for (dev = 0; dev < xb->xb_nslots; dev++) {
if (ISSET(xb->xb_flags, XF_PIC))
pa = xb->xb_regh + BRIDGE_PCI_CFG_SPACE +
((dev + 1) << 12) + PCI_ID_REG;
else
pa = xb->xb_regh + BRIDGE_PCI_CFG_SPACE +
(dev << 12) + PCI_ID_REG;
if (guarded_read_4(pa, &xb->xb_devices[dev].id) != 0)
xb->xb_devices[dev].id = PCI_ID_EMPTY;
}
/*
* Configure the direct DMA window to access the 2GB memory
* window selected as our DMA memory range.
*/
dirmap = (dma_constraint.ucr_low >> BRIDGE_DIRMAP_BASE_SHIFT) &
BRIDGE_DIRMAP_BASE_MASK;
switch (sys_config.system_type) {
default:
#ifdef TGT_ORIGIN
dirmap |= kl_hub_widget[
IP27_PHYS_TO_NODE(dma_constraint.ucr_low)] <<
BRIDGE_DIRMAP_WIDGET_SHIFT;
break;
#endif
#ifdef TGT_OCTANE
case SGI_OCTANE:
dirmap |= IP30_HEART_WIDGET << BRIDGE_DIRMAP_WIDGET_SHIFT;
break;
#endif
}
xbridge_write_reg(xb, BRIDGE_DIR_MAP, dirmap);
/*
* Allocate RRB for the existing devices.
*/
xbridge_rrb_setup(xb, 0);
xbridge_rrb_setup(xb, 1);
/*
* Disable byteswapping on PIO accesses through the large window
* (we handle this at the bus_space level). It should not have
* been enabled by ARCS, since IOC serial console relies on this,
* but better enforce this anyway.
*/
ctrl &= ~BRIDGE_WIDGET_CONTROL_IO_SWAP;
ctrl &= ~BRIDGE_WIDGET_CONTROL_MEM_SWAP;
xbridge_write_reg(xb, WIDGET_CONTROL, ctrl);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
/*
* The PROM will only configure the onboard devices. Set up
* any other device we might encounter.
*/
xbridge_resource_setup(xb);
/*
* Older Bridge chips needs to run with pci timeouts
* disabled.
*/
if (!ISSET(xb->xb_flags, XF_XBRIDGE) && xb->xb_revision < 4) {
xbridge_write_reg(xb, BRIDGE_BUS_TIMEOUT,
xbridge_read_reg(xb, BRIDGE_BUS_TIMEOUT) &
~BRIDGE_BUS_PCI_RETRY_CNT_MASK);
}
/*
* AT&T/Lucent USS-302 and USS-312 USB controllers require
* a larger PCI retry hold interval for proper operation.
*/
for (dev = 0; dev < xb->xb_nslots; dev++) {
if (xb->xb_devices[dev].id ==
PCI_ID_CODE(PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_USBHC) ||
xb->xb_devices[dev].id ==
PCI_ID_CODE(PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_USBHC2)) {
ctrl = xbridge_read_reg(xb, BRIDGE_BUS_TIMEOUT);
ctrl &= ~BRIDGE_BUS_PCI_RETRY_HOLD_MASK;
ctrl |= (4 << BRIDGE_BUS_PCI_RETRY_HOLD_SHIFT);
xbridge_write_reg(xb, BRIDGE_BUS_TIMEOUT, ctrl);
break;
}
}
/*
* Setup interrupt handling.
*
* Note that, on PIC, the `lower address' register is a 64 bit
* register and thus need to be initialized with the whole 64 bit
* address; the `upper address' register is hardwired to zero and
* ignores writes, so we can use the same logic on Bridge and PIC.
*
* Also, on Octane, we need to keep otherwise unused interrupt source
* #6 enabled on the obio widget, as it controls routing of the
* power button interrupt (and to make things more complicated than
* necessary, this pin is wired to a particular Heart interrupt
* register bit, so interrupts on this pin will never be seen at the
* Bridge level).
*/
#ifdef TGT_OCTANE
if (sys_config.system_type == SGI_OCTANE &&
xb->xb_widget == IP30_BRIDGE_WIDGET)
xb->xb_ier = 1 << 6;
else
#endif
xb->xb_ier = 0;
xbridge_write_reg(xb, BRIDGE_IER, 0);
xbridge_write_reg(xb, BRIDGE_INT_MODE, 0);
xbridge_write_reg(xb, BRIDGE_INT_DEV, 0);
int_addr = xbow_intr_address & ((1UL << 48) - 1);
switch (sys_config.system_type) {
default:
#ifdef TGT_ORIGIN
int_addr |= (uint64_t)kl_hub_widget[masternasid] << 48;
break;
#endif
#ifdef TGT_OCTANE
case SGI_OCTANE:
int_addr |= (uint64_t)IP30_HEART_WIDGET << 48;
break;
#endif
}
xbridge_write_reg(xb, WIDGET_INTDEST_ADDR_LOWER, int_addr);
xbridge_write_reg(xb, WIDGET_INTDEST_ADDR_UPPER, int_addr >> 32);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
/*
* Register an error interrupt handler.
*/
if (xbow_intr_register(xb->xb_widget, IPL_HIGH,
&xb->xb_err_intrsrc) != 0)
return "can't allocate error interrupt source";
if (xbow_intr_establish(xbridge_err_intr_handler, xb,
xb->xb_err_intrsrc, IPL_HIGH, DEVNAME(xb), NULL))
return "unable to register error interrupt handler";
xbridge_err_clear(xb, 0);
xbridge_write_reg(xb, BRIDGE_INT_HOST_ERR, xb->xb_err_intrsrc);
/*
* Enable as many error interrupt sources as possible; older
* Bridge chips need to have a few of them kept masked to
* avoid hitting hardware issues.
*/
xb->xb_ier |= (ISSET(xb->xb_flags, XF_PIC) ?
PIC_ISR_ERRMASK : BRIDGE_ISR_ERRMASK) &
~(BRIDGE_ISR_MULTIPLE_ERR | BRIDGE_ISR_SSRAM_PERR |
BRIDGE_ISR_GIO_BENABLE_ERR);
if (xb->xb_busno != 0) {
/* xtalk errors will only show up on bus #0 */
xb->xb_ier &= ~(BRIDGE_ISR_UNSUPPORTED_XOP |
BRIDGE_ISR_LLP_REC_SNERR | BRIDGE_ISR_LLP_REC_CBERR |
BRIDGE_ISR_LLP_RCTY | BRIDGE_ISR_LLP_TX_RETRY |
BRIDGE_ISR_LLP_TCTY);
}
if (!ISSET(xb->xb_flags, XF_XBRIDGE)) {
if (xb->xb_revision < 2)
xb->xb_ier &= ~(BRIDGE_ISR_UNEXPECTED_RESP |
BRIDGE_ISR_PCI_MASTER_TMO |
BRIDGE_ISR_RESP_XTALK_ERR |
BRIDGE_ISR_LLP_TX_RETRY | BRIDGE_ISR_XREAD_REQ_TMO);
if (xb->xb_revision < 3)
xb->xb_ier &= ~BRIDGE_ISR_BAD_XRESP_PACKET;
}
xbridge_write_reg(xb, BRIDGE_IER, xb->xb_ier);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
return NULL;
}
/*
* Handle PCI errors.
*/
void
xbridge_err_handle(struct xbpci_softc *xb, uint64_t isr)
{
uint64_t pci_err, wid_err, resp_err;
wid_err = xbridge_read_reg(xb, WIDGET_ERR_ADDR_LOWER);
if (!ISSET(xb->xb_flags, XF_PIC))
wid_err |= xbridge_read_reg(xb, WIDGET_ERR_ADDR_UPPER) << 32;
pci_err = xbridge_read_reg(xb, BRIDGE_PCI_ERR_LOWER);
if (!ISSET(xb->xb_flags, XF_PIC))
pci_err |= xbridge_read_reg(xb, BRIDGE_PCI_ERR_UPPER) << 32;
resp_err = xbridge_read_reg(xb, BRIDGE_WIDGET_RESP_LOWER);
if (!ISSET(xb->xb_flags, XF_PIC))
resp_err |=
xbridge_read_reg(xb, BRIDGE_WIDGET_RESP_UPPER) << 32;
/* XXX give more detailed information */
printf("%s: error interrupt, isr %p wid %p pci %p resp %p\n",
DEVNAME(xb), isr, wid_err, pci_err, resp_err);
xbridge_err_clear(xb, isr);
}
/*
* Clear any error condition.
*/
void
xbridge_err_clear(struct xbpci_softc *xb, uint64_t isr)
{
if (ISSET(xb->xb_flags, XF_PIC)) {
if (isr == 0)
isr = xbridge_read_reg(xb, BRIDGE_ISR) &
~BRIDGE_ISR_HWINTR_MASK;
xbridge_write_reg(xb, BRIDGE_ICR, isr);
} else
xbridge_write_reg(xb, BRIDGE_ICR, BRIDGE_ICR_ALL);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
}
/*
* Build a not-so-pessimistic RRB allocation register value.
*/
void
xbridge_rrb_setup(struct xbpci_softc *xb, int odd)
{
uint rrb[MAX_SLOTS / 2]; /* tentative rrb assignment */
uint total; /* rrb count */
uint32_t proto; /* proto rrb value */
int dev, i, j;
/*
* First, try to allocate as many RRBs per device as possible.
*/
total = 0;
for (i = 0; i < nitems(rrb); i++) {
dev = (i << 1) + !!odd;
if (dev >= xb->xb_nslots || SLOT_EMPTY(xb, dev))
rrb[i] = 0;
else {
rrb[i] = 4; /* optimistic value */
total += 4;
}
}
/*
* Then, try to reduce greed until we do not claim more than
* the 8 RRBs we can afford.
*/
if (total > 8) {
/*
* All devices should be able to live with 3 RRBs, so
* reduce their allocation from 4 to 3.
*/
for (i = 0; i < nitems(rrb); i++) {
if (rrb[i] == 4) {
rrb[i]--;
if (--total == 8)
break;
}
}
}
if (total > 8) {
/*
* There are too many devices for 3 RRBs per device to
* be possible. Attempt to reduce from 3 to 2, except
* for isp(4) devices.
*/
for (i = 0; i < nitems(rrb); i++) {
if (rrb[i] == 3) {
dev = (i << 1) + !!odd;
if (PCI_VENDOR(xb->xb_devices[dev].id) !=
PCI_VENDOR_QLOGIC) {
rrb[i]--;
if (--total == 8)
break;
}
}
}
}
if (total > 8) {
/*
* Too bad, we need to shrink the RRB allocation for
* isp devices too. We'll try to favour the lowest
* slots, though, hence the reversed loop order.
*/
for (i = nitems(rrb) - 1; i >= 0; i--) {
if (rrb[i] == 3) {
rrb[i]--;
if (--total == 8)
break;
}
}
}
/*
* Now build the RRB register value proper.
*/
proto = 0;
for (i = 0; i < nitems(rrb); i++) {
for (j = 0; j < rrb[i]; j++)
proto = (proto << RRB_SHIFT) | (RRB_VALID | i);
}
xbridge_write_reg(xb, odd ? BRIDGE_RRB_ODD : BRIDGE_RRB_EVEN, proto);
}
/*
* Configure PCI resources for all devices.
*/
void
xbridge_resource_setup(struct xbpci_softc *xb)
{
pci_chipset_tag_t pc = &xb->xb_pc;
int dev, nfuncs;
pcitag_t tag;
pcireg_t id, bhlcr;
uint32_t devio;
int need_setup;
uint secondary, nppb, npccbb, ppbstride;
const struct pci_quirkdata *qd;
/*
* On Octane, we will want to map everything through the large
* windows, whenever possible.
*
* Set up these mappings now.
*/
if (sys_config.system_type == SGI_OCTANE) {
xb->xb_ioex = xbridge_mapping_setup(xb, 1);
xb->xb_memex = xbridge_mapping_setup(xb, 0);
}
/*
* Configure all regular PCI devices.
*/
#ifdef DEBUG
for (dev = 0; dev < xb->xb_nslots; dev++)
printf("device %d: devio %08x\n",
dev, xbridge_read_reg(xb, BRIDGE_DEVICE(dev)));
#endif
nppb = npccbb = 0;
for (dev = 0; dev < xb->xb_nslots; dev++) {
if (SLOT_EMPTY(xb, dev))
continue;
/*
* Count ppb and pccbb devices, we will need their number later.
*/
tag = pci_make_tag(pc, 0, dev, 0);
bhlcr = pci_conf_read(pc, tag, PCI_BHLC_REG);
if (PCI_HDRTYPE_TYPE(bhlcr) == 1)
nppb++;
if (PCI_HDRTYPE_TYPE(bhlcr) == 2)
npccbb++;
/*
* We want to avoid changing mapping configuration for
* devices which have been setup by ARCS.
*
* On Octane, the whole on-board I/O widget has been
* set up, with direct mappings into widget space.
*
* On Origin, since direct mappings are expensive,
* everything set up by ARCS has a valid devio
* mapping; those can be identified as they sport the
* widget number in the high address bits.
*
* We will only fix the device-global devio flags on
* devices which have been set up by ARCS. Otherwise,
* we'll need to perform proper PCI resource allocation.
*/
id = xb->xb_devices[dev].id;
devio = xbridge_read_reg(xb, BRIDGE_DEVICE(dev));
if (id != PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC3) &&
id != PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC4))
need_setup = 1;
else
need_setup = xb->xb_busno != 0 || xb->xb_devio_skew !=
((devio & BRIDGE_DEVICE_BASE_MASK) >>
(24 - BRIDGE_DEVICE_BASE_SHIFT));
/*
* Enable byte swapping for DMA, except on IOC3, IOC4 and
* RAD1 devices.
*/
if (id == PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC3) ||
id == PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC4) ||
id == PCI_ID_CODE(PCI_VENDOR_SGI, PCI_PRODUCT_SGI_RAD1))
devio &=
~(BRIDGE_DEVICE_SWAP_PMU | BRIDGE_DEVICE_SWAP_DIR);
else
devio |=
BRIDGE_DEVICE_SWAP_PMU | BRIDGE_DEVICE_SWAP_DIR;
/*
* Disable write gathering.
*/
devio &=
~(BRIDGE_DEVICE_WGATHER_PMU | BRIDGE_DEVICE_WGATHER_DIR);
/*
* Disable prefetching - on-board isp(4) controllers on
* Octane are set up with this, but this confuses the
* driver.
*/
devio &= ~BRIDGE_DEVICE_PREFETCH;
/*
* Force cache coherency.
*/
devio |= BRIDGE_DEVICE_COHERENT;
if (need_setup == 0) {
xbridge_set_devio(xb, dev, devio, 1);
continue;
}
/*
* Clear any residual devio mapping.
*/
devio &= ~BRIDGE_DEVICE_BASE_MASK;
devio &= ~BRIDGE_DEVICE_IO_MEM;
xbridge_set_devio(xb, dev, devio, 0);
/*
* We now need to perform the resource allocation for this
* device, which has not been setup by ARCS.
*/
qd = pci_lookup_quirkdata(PCI_VENDOR(id), PCI_PRODUCT(id));
if (PCI_HDRTYPE_MULTIFN(bhlcr) ||
(qd != NULL && (qd->quirks & PCI_QUIRK_MULTIFUNCTION) != 0))
nfuncs = 8;
else
nfuncs = 1;
xbridge_device_setup(xb, dev, nfuncs, devio);
}
/*
* Configure PCI-PCI and PCI-CardBus bridges, if any.
*
* We do this after all the other PCI devices have been configured
* in order to favour them during resource allocation.
*/
if (npccbb != 0) {
/*
* If there are PCI-CardBus bridges, we really want to be
* able to have large resource spaces...
*/
if (xb->xb_ioex == NULL)
xb->xb_ioex = xbridge_mapping_setup(xb, 1);
if (xb->xb_memex == NULL)
xb->xb_memex = xbridge_mapping_setup(xb, 0);
}
secondary = 1;
ppbstride = nppb == 0 ? 0 : (255 - npccbb) / nppb;
for (dev = 0; dev < xb->xb_nslots; dev++) {
if (SLOT_EMPTY(xb, dev))
continue;
tag = pci_make_tag(pc, 0, dev, 0);
bhlcr = pci_conf_read(pc, tag, PCI_BHLC_REG);
switch (PCI_HDRTYPE_TYPE(bhlcr)) {
case 1: /* PCI-PCI bridge */
ppb_initialize(pc, tag, 0, secondary,
secondary + ppbstride - 1);
secondary += ppbstride;
break;
case 2: /* PCI-CardBus bridge */
/*
* We do not expect cardbus devices to sport
* PCI-PCI bridges themselves, so only one
* PCI bus will do.
*/
pccbb_initialize(pc, tag, 0, secondary, secondary);
secondary++;
break;
}
}
if (xb->xb_ioex != NULL) {
extent_destroy(xb->xb_ioex);
xb->xb_ioex = NULL;
}
if (xb->xb_memex != NULL) {
extent_destroy(xb->xb_memex);
xb->xb_memex = NULL;
}
}
/*
* Make the Octane flash area unavailable in the PCI space extents, so
* that we do not try to map devices in its area.
*/
int
xbridge_extent_chomp(struct xbpci_softc *xb, struct extent *ex)
{
#ifdef TGT_OCTANE
/*
* On Octane, the boot PROM is part of the onboard IOC3
* device, and is accessible through the PCI memory space
* (and maybe through the PCI I/O space as well).
*
* To avoid undebuggable surprises, make sure we never use
* this space.
*/
if (sys_config.system_type == SGI_OCTANE &&
xb->xb_widget == IP30_BRIDGE_WIDGET) {
u_long fmin, fmax;
/*
* This relies upon the knowledge that both flash bases
* are contiguous, to perform only one extent operation.
* I don't think we need to be pedantic to the point of
* doing this in two steps, really -- miod
*/
fmin = max(IP30_FLASH_BASE, ex->ex_start);
fmax = min(IP30_FLASH_ALT + IP30_FLASH_SIZE - 1, ex->ex_end);
if (fmax >= fmin)
return extent_alloc_region(ex, fmin, fmax + 1 - fmin,
EX_NOWAIT | EX_MALLOCOK);
}
#endif
return 0;
}
/*
* Build resource extents for the MI PCI code to play with.
* These extents cover the configured devio areas, and the large resource
* views, if applicable.
*/
void
xbridge_extent_setup(struct xbpci_softc *xb)
{
int dev;
int errors;
bus_addr_t start, end;
uint32_t devio;
snprintf(xb->xb_ioexname, sizeof(xb->xb_ioexname), "%s_io",
DEVNAME(xb));
xb->xb_ioex = extent_create(xb->xb_ioexname, 0, 0xffffffff,
M_DEVBUF, NULL, 0, EX_NOWAIT | EX_FILLED);
if (xb->xb_ioex != NULL) {
errors = 0;
/* make all configured devio ranges available... */
for (dev = 0; dev < xb->xb_nslots; dev++) {
devio = xb->xb_devices[dev].devio;
if (devio == 0 || ISSET(devio, BRIDGE_DEVICE_IO_MEM))
continue;
start = (devio & BRIDGE_DEVICE_BASE_MASK) <<
BRIDGE_DEVICE_BASE_SHIFT;
if (start == 0)
continue;
if (extent_free(xb->xb_ioex, start,
BRIDGE_DEVIO_SIZE(dev), EX_NOWAIT) != 0) {
errors++;
break;
}
}
/* ...as well as the large views, if any */
if (xb->xb_ioend != 0) {
start = xb->xb_iostart;
if (start == 0)
start = 1;
end = xb->xb_devio_skew << 24;
if (start < end)
if (extent_free(xb->xb_ioex, start,
end, EX_NOWAIT) != 0)
errors++;
start = (xb->xb_devio_skew + 1) << 24;
if (start < xb->xb_iostart)
start = xb->xb_iostart;
if (extent_free(xb->xb_ioex, start,
xb->xb_ioend + 1 - start, EX_NOWAIT) != 0)
errors++;
}
if (xbridge_extent_chomp(xb, xb->xb_ioex) != 0)
errors++;
if (errors != 0) {
extent_destroy(xb->xb_ioex);
xb->xb_ioex = NULL;
}
}
snprintf(xb->xb_memexname, sizeof(xb->xb_memexname), "%s_mem",
DEVNAME(xb));
xb->xb_memex = extent_create(xb->xb_memexname, 0, 0xffffffff,
M_DEVBUF, NULL, 0, EX_NOWAIT | EX_FILLED);
if (xb->xb_memex != NULL) {
errors = 0;
/* make all configured devio ranges available... */
for (dev = 0; dev < xb->xb_nslots; dev++) {
devio = xb->xb_devices[dev].devio;
if (devio == 0 || !ISSET(devio, BRIDGE_DEVICE_IO_MEM))
continue;
start = (devio & BRIDGE_DEVICE_BASE_MASK) <<
BRIDGE_DEVICE_BASE_SHIFT;
if (start == 0)
continue;
if (extent_free(xb->xb_memex, start,
BRIDGE_DEVIO_SIZE(dev), EX_NOWAIT) != 0) {
errors++;
break;
}
}
/* ...as well as the large views, if any */
if (xb->xb_memend != 0) {
start = xb->xb_memstart;
if (start == 0)
start = 1;
end = xb->xb_devio_skew << 24;
if (start < end)
if (extent_free(xb->xb_memex, start,
end, EX_NOWAIT) != 0)
errors++;
start = (xb->xb_devio_skew + 1) << 24;
if (start < xb->xb_memstart)
start = xb->xb_memstart;
if (extent_free(xb->xb_memex, start,
xb->xb_memend + 1 - start, EX_NOWAIT) != 0)
errors++;
}
if (xbridge_extent_chomp(xb, xb->xb_memex) != 0)
errors++;
if (errors != 0) {
extent_destroy(xb->xb_memex);
xb->xb_memex = NULL;
}
}
}
struct extent *
xbridge_mapping_setup(struct xbpci_softc *xb, int io)
{
bus_addr_t membase, offs;
bus_size_t len;
paddr_t base;
u_long start, end;
struct extent *ex = NULL;
if (io) {
/*
* I/O mappings are available in the widget at offset
* BRIDGE_PCI_IO_SPACE_BASE onwards, but weren't working
* correctly until Bridge revision 4 (apparently, what
* didn't work was the byteswap logic).
*
* Also, this direct I/O space is not supported on PIC
* widgets.
*/
if (!ISSET(xb->xb_flags, XF_NO_DIRECT_IO)) {
offs = BRIDGE_PCI_IO_SPACE_BASE;
len = BRIDGE_PCI_IO_SPACE_LENGTH;
base = xbow_widget_map_space(xb->xb_bow,
xb->xb_widget, &offs, &len);
} else
base = 0;
if (base != 0) {
if (offs + len > BRIDGE_PCI_IO_SPACE_BASE +
BRIDGE_PCI_IO_SPACE_LENGTH)
len = BRIDGE_PCI_IO_SPACE_BASE +
BRIDGE_PCI_IO_SPACE_LENGTH - offs;
#ifdef DEBUG
printf("direct io %p-%p base %p\n",
offs, offs + len - 1, base);
#endif
offs -= BRIDGE_PCI_IO_SPACE_BASE;
ex = extent_create("xbridge_direct_io",
offs == 0 ? 1 : offs, offs + len - 1,
M_DEVBUF, NULL, 0, EX_NOWAIT);
/*
* Note that we do not need to invoke
* xbridge_extent_chomp() here since we will
* reserve the whole devio area.
*/
if (ex != NULL) {
xb->xb_io_bus_space->bus_base = base - offs;
xb->xb_io_bus_space->_space_map =
xbridge_space_map_io;
xb->xb_io_bus_space->_space_subregion =
xbridge_space_region_io;
xb->xb_io_bus_space_sw->bus_base = base - offs;
xb->xb_io_bus_space_sw->_space_map =
xbridge_space_map_io;
xb->xb_io_bus_space_sw->_space_subregion =
xbridge_space_region_io;
xb->xb_iostart = offs;
xb->xb_ioend = offs + len - 1;
}
}
} else {
/*
* Memory mappings are available in the widget at offset
* BRIDGE_PCI#_MEM_SPACE_BASE onwards.
*/
membase = xb->xb_busno == 0 ? BRIDGE_PCI0_MEM_SPACE_BASE :
BRIDGE_PCI1_MEM_SPACE_BASE;
offs = membase;
len = BRIDGE_PCI_MEM_SPACE_LENGTH;
base = xbow_widget_map_space(xb->xb_bow,
xb->xb_widget, &offs, &len);
if (base != 0) {
/*
* Only the low 30 bits of memory BAR are honoured
* by the hardware, thus restricting memory mappings
* to 1GB.
*/
if (offs + len > membase + BRIDGE_PCI_MEM_SPACE_LENGTH)
len = membase + BRIDGE_PCI_MEM_SPACE_LENGTH -
offs;
#ifdef DEBUG
printf("direct mem %p-%p base %p\n",
offs, offs + len - 1, base);
#endif
offs -= membase;
ex = extent_create("xbridge_direct_mem",
offs == 0 ? 1 : offs, offs + len - 1,
M_DEVBUF, NULL, 0, EX_NOWAIT);
/*
* Note that we do not need to invoke
* xbridge_extent_chomp() here since we will
* reserve the whole devio area.
*/
if (ex != NULL) {
xb->xb_mem_bus_space->bus_base = base - offs;
xb->xb_mem_bus_space->_space_map =
xbridge_space_map_mem;
xb->xb_mem_bus_space->_space_subregion =
xbridge_space_region_mem;
xb->xb_mem_bus_space_sw->bus_base = base - offs;
xb->xb_mem_bus_space_sw->_space_map =
xbridge_space_map_mem;
xb->xb_mem_bus_space_sw->_space_subregion =
xbridge_space_region_mem;
xb->xb_memstart = offs;
xb->xb_memend = offs + len - 1;
}
}
}
if (ex != NULL) {
/*
* Remove the devio mapping range from the extent
* to avoid ambiguous mappings.
*
* Note that xbow_widget_map_space() may have returned
* a range in which the devio area does not appear.
*/
start = xb->xb_devio_skew << 24;
end = (xb->xb_devio_skew + 1) << 24;
if (end >= ex->ex_start && start <= ex->ex_end) {
if (start < ex->ex_start)
start = ex->ex_start;
if (end > ex->ex_end + 1)
end = ex->ex_end + 1;
if (extent_alloc_region(ex, start, end - start,
EX_NOWAIT | EX_MALLOCOK) != 0) {
printf("%s: failed to expurge devio range"
" from %s large extent\n",
DEVNAME(xb), io ? "i/o" : "mem");
extent_destroy(ex);
ex = NULL;
}
}
}
return ex;
}
/*
* Flags returned by xbridge_resource_explore()
*/
#define XR_IO 0x01 /* needs I/O mappings */
#define XR_MEM 0x02 /* needs memory mappings */
#define XR_IO_OFLOW_S 0x04 /* can't fit I/O in a short devio */
#define XR_MEM_OFLOW_S 0x08 /* can't fit memory in a short devio */
#define XR_IO_OFLOW 0x10 /* can't fit I/O in a large devio */
#define XR_MEM_OFLOW 0x20 /* can't fit memory in a large devio */
int
xbridge_resource_explore(struct xbpci_softc *xb, pcitag_t tag,
struct extent *ioex, struct extent *memex)
{
pci_chipset_tag_t pc = &xb->xb_pc;
pcireg_t bhlc, type, addr, mask;
bus_addr_t base;
bus_size_t size;
int reg, reg_start, reg_end, reg_rom;
int rc = 0;
bhlc = pci_conf_read(pc, tag, PCI_BHLC_REG);
switch (PCI_HDRTYPE_TYPE(bhlc)) {
case 0:
reg_start = PCI_MAPREG_START;
reg_end = PCI_MAPREG_END;
reg_rom = PCI_ROM_REG;
break;
case 1: /* PCI-PCI bridge */
reg_start = PCI_MAPREG_START;
reg_end = PCI_MAPREG_PPB_END;
reg_rom = 0; /* 0x38 */
break;
case 2: /* PCI-CardBus bridge */
reg_start = PCI_MAPREG_START;
reg_end = PCI_MAPREG_PCB_END;
reg_rom = 0;
break;
default:
return rc;
}
for (reg = reg_start; reg < reg_end; reg += 4) {
if (pci_mapreg_probe(pc, tag, reg, &type) == 0)
continue;
if (pci_mapreg_info(pc, tag, reg, type, NULL, &size, NULL))
continue;
switch (type) {
case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT:
reg += 4;
/* FALLTHROUGH */
case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT:
rc |= XR_MEM;
if (memex != NULL) {
if (size > memex->ex_end - memex->ex_start)
rc |= XR_MEM_OFLOW | XR_MEM_OFLOW_S;
else if (extent_alloc(memex, size, size,
0, 0, 0, &base) != 0)
rc |= XR_MEM_OFLOW | XR_MEM_OFLOW_S;
else if (base >= BRIDGE_DEVIO_SHORT)
rc |= XR_MEM_OFLOW_S;
} else
rc |= XR_MEM_OFLOW | XR_MEM_OFLOW_S;
break;
case PCI_MAPREG_TYPE_IO:
rc |= XR_IO;
if (ioex != NULL) {
if (size > ioex->ex_end - ioex->ex_start)
rc |= XR_IO_OFLOW | XR_IO_OFLOW_S;
else if (extent_alloc(ioex, size, size,
0, 0, 0, &base) != 0)
rc |= XR_IO_OFLOW | XR_IO_OFLOW_S;
else if (base >= BRIDGE_DEVIO_SHORT)
rc |= XR_IO_OFLOW_S;
} else
rc |= XR_IO_OFLOW | XR_IO_OFLOW_S;
break;
}
}
if (reg_rom != 0) {
addr = pci_conf_read(pc, tag, reg_rom);
pci_conf_write(pc, tag, reg_rom, ~PCI_ROM_ENABLE);
mask = pci_conf_read(pc, tag, reg_rom);
pci_conf_write(pc, tag, reg_rom, addr);
size = PCI_ROM_SIZE(mask);
if (size != 0) {
rc |= XR_MEM;
if (memex != NULL) {
if (size > memex->ex_end - memex->ex_start)
rc |= XR_MEM_OFLOW | XR_MEM_OFLOW_S;
else if (extent_alloc(memex, size, size,
0, 0, 0, &base) != 0)
rc |= XR_MEM_OFLOW | XR_MEM_OFLOW_S;
else if (base >= BRIDGE_DEVIO_SHORT)
rc |= XR_MEM_OFLOW_S;
} else
rc |= XR_MEM_OFLOW | XR_MEM_OFLOW_S;
}
}
return rc;
}
void
xbridge_resource_manage(struct xbpci_softc *xb, pcitag_t tag,
struct extent *ioex, struct extent *memex)
{
pci_chipset_tag_t pc = &xb->xb_pc;
pcireg_t bhlc, type, mask;
bus_addr_t base;
bus_size_t size;
int reg, reg_start, reg_end, reg_rom;
bhlc = pci_conf_read(pc, tag, PCI_BHLC_REG);
switch (PCI_HDRTYPE_TYPE(bhlc)) {
case 0:
reg_start = PCI_MAPREG_START;
reg_end = PCI_MAPREG_END;
reg_rom = PCI_ROM_REG;
break;
case 1: /* PCI-PCI bridge */
reg_start = PCI_MAPREG_START;
reg_end = PCI_MAPREG_PPB_END;
reg_rom = 0; /* 0x38 */
break;
case 2: /* PCI-CardBus bridge */
reg_start = PCI_MAPREG_START;
reg_end = PCI_MAPREG_PCB_END;
reg_rom = 0;
break;
default:
return;
}
for (reg = reg_start; reg < reg_end; reg += 4) {
if (pci_mapreg_probe(pc, tag, reg, &type) == 0)
continue;
if (pci_mapreg_info(pc, tag, reg, type, &base, &size, NULL))
continue;
/*
* Note that we do not care about the existing BAR values,
* since these devices either have not been setup by ARCS
* or do not matter for early system setup (such as
* optional IOC3 PCI boards, which will get setup by
* ARCS but can be reinitialized as we see fit).
*/
#ifdef DEBUG
printf("tag %04x bar %02x type %d base %p size %p",
tag, reg, type, base, size);
#endif
switch (type) {
case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT:
/*
* Since our mapping ranges are restricted to
* at most 30 bits, the upper part of the 64 bit
* BAR registers is always zero.
*/
pci_conf_write(pc, tag, reg + 4, 0);
/* FALLTHROUGH */
case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT:
if (memex != NULL) {
if (extent_alloc(memex, size, size, 0, 0, 0,
&base) != 0)
base = 0;
} else
base = 0;
break;
case PCI_MAPREG_TYPE_IO:
if (ioex != NULL) {
if (extent_alloc(ioex, size, size, 0, 0, 0,
&base) != 0)
base = 0;
} else
base = 0;
break;
}
#ifdef DEBUG
printf(" setup at %p\n", base);
#endif
pci_conf_write(pc, tag, reg, base);
if (type == (PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT))
reg += 4;
}
if (reg_rom != 0) {
base = (bus_addr_t)pci_conf_read(pc, tag, reg_rom);
pci_conf_write(pc, tag, reg_rom, ~PCI_ROM_ENABLE);
mask = pci_conf_read(pc, tag, reg_rom);
size = PCI_ROM_SIZE(mask);
if (size != 0) {
#ifdef DEBUG
printf("bar %02x type rom base %p size %p",
reg_rom, base, size);
#endif
if (memex != NULL) {
if (extent_alloc(memex, size, size, 0, 0, 0,
&base) != 0)
base = 0;
} else
base = 0;
#ifdef DEBUG
printf(" setup at %p\n", base);
#endif
} else
base = 0;
/* ROM intentionally left disabled */
pci_conf_write(pc, tag, reg_rom, base);
}
}
void
xbridge_device_setup(struct xbpci_softc *xb, int dev, int nfuncs,
uint32_t devio)
{
pci_chipset_tag_t pc = &xb->xb_pc;
int function;
pcitag_t tag;
pcireg_t id, csr;
uint32_t baseio;
int resources;
int io_devio, mem_devio;
struct extent *ioex, *memex;
/*
* In a first step, we enumerate all the requested resources,
* and check if they could fit within devio mappings.
*
* If devio can't afford us the mappings we need, we'll
* try and allocate a large window.
*/
/*
* Allocate extents to use for devio mappings if necessary.
* This can fail; in that case we'll try to use a large mapping
* whenever possible, or silently fail to configure the device.
*/
if (xb->xb_ioex != NULL)
ioex = NULL;
else {
ioex = extent_create("xbridge_io",
0, BRIDGE_DEVIO_LARGE - 1,
M_DEVBUF, NULL, 0, EX_NOWAIT);
#ifdef DEBUG
if (ioex == NULL)
printf("%s: ioex extent_create failed\n");
#endif
}
if (xb->xb_memex != NULL)
memex = NULL;
else {
memex = extent_create("xbridge_mem",
0, BRIDGE_DEVIO_LARGE - 1,
M_DEVBUF, NULL, 0, EX_NOWAIT);
#ifdef DEBUG
if (memex == NULL)
printf("%s: memex extent_create failed\n");
#endif
}
resources = 0;
for (function = 0; function < nfuncs; function++) {
tag = pci_make_tag(pc, 0, dev, function);
id = pci_conf_read(pc, tag, PCI_ID_REG);
if (PCI_VENDOR(id) == PCI_VENDOR_INVALID ||
PCI_VENDOR(id) == 0)
continue;
csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr &
~(PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MEM_ENABLE));
resources |= xbridge_resource_explore(xb, tag, ioex, memex);
}
#ifdef DEBUG
printf("resources mask: %02x\n", resources);
#endif
if (memex != NULL) {
extent_destroy(memex);
memex = NULL;
}
if (ioex != NULL) {
extent_destroy(ioex);
ioex = NULL;
}
/*
* In a second step, if resources can be mapped using devio slots,
* allocate them. Otherwise, or if we can't get a devio slot
* big enough for the resources we need to map, we'll need
* to get a large window mapping.
*
* Note that, on Octane, we try to avoid using devio whenever
* possible.
*/
io_devio = -1;
if (ISSET(resources, XR_IO)) {
if (!ISSET(resources, XR_IO_OFLOW) &&
(sys_config.system_type != SGI_OCTANE ||
xb->xb_ioex == NULL))
io_devio = xbridge_allocate_devio(xb, dev,
ISSET(resources, XR_IO_OFLOW_S));
if (io_devio >= 0) {
baseio = (xb->xb_devio_skew << 24) |
PIC_DEVIO_OFFS(xb->xb_busno, io_devio);
xbridge_set_devio(xb, io_devio, devio |
(baseio >> BRIDGE_DEVICE_BASE_SHIFT), 1);
ioex = extent_create("xbridge_io", baseio,
baseio + BRIDGE_DEVIO_SIZE(io_devio) - 1,
M_DEVBUF, NULL, 0, EX_NOWAIT);
} else {
/*
* Try to get a large window mapping if we don't
* have one already.
*/
if (xb->xb_ioex == NULL)
xb->xb_ioex = xbridge_mapping_setup(xb, 1);
}
}
mem_devio = -1;
if (ISSET(resources, XR_MEM)) {
if (!ISSET(resources, XR_MEM_OFLOW) &&
sys_config.system_type != SGI_OCTANE)
mem_devio = xbridge_allocate_devio(xb, dev,
ISSET(resources, XR_MEM_OFLOW_S));
if (mem_devio >= 0) {
baseio = (xb->xb_devio_skew << 24) |
PIC_DEVIO_OFFS(xb->xb_busno, mem_devio);
xbridge_set_devio(xb, mem_devio, devio |
BRIDGE_DEVICE_IO_MEM |
(baseio >> BRIDGE_DEVICE_BASE_SHIFT), 1);
memex = extent_create("xbridge_mem", baseio,
baseio + BRIDGE_DEVIO_SIZE(mem_devio) - 1,
M_DEVBUF, NULL, 0, EX_NOWAIT);
} else {
/*
* Try to get a large window mapping if we don't
* have one already.
*/
if (xb->xb_memex == NULL)
xb->xb_memex = xbridge_mapping_setup(xb, 0);
}
}
/*
* Finally allocate the resources proper and update the
* device BARs accordingly.
*/
for (function = 0; function < nfuncs; function++) {
tag = pci_make_tag(pc, 0, dev, function);
id = pci_conf_read(pc, tag, PCI_ID_REG);
if (PCI_VENDOR(id) == PCI_VENDOR_INVALID ||
PCI_VENDOR(id) == 0)
continue;
xbridge_resource_manage(xb, tag,
ioex != NULL ? ioex : xb->xb_ioex,
memex != NULL ? memex : xb->xb_memex);
}
if (memex != NULL)
extent_destroy(memex);
if (ioex != NULL)
extent_destroy(ioex);
}
int
xbridge_ppb_setup(void *cookie, pcitag_t tag, bus_addr_t *iostart,
bus_addr_t *ioend, bus_addr_t *memstart, bus_addr_t *memend)
{
struct xbpci_softc *xb = cookie;
pci_chipset_tag_t pc = &xb->xb_pc;
uint32_t base, devio;
bus_size_t exsize;
u_long exstart;
int dev, devio_idx, tries;
pci_decompose_tag(pc, tag, NULL, &dev, NULL);
devio = xbridge_read_reg(xb, BRIDGE_DEVICE(dev));
/*
* Since our caller computes resource needs starting at zero, we
* can ignore the start values when computing the amount of
* resources we'll need.
*/
/*
* Try and allocate I/O resources first, as we may not be able
* to use a large I/O mapping, in which case we want to use our
* reserved devio for this purpose.
*/
exsize = *ioend;
*iostart = 0xffffffff;
*ioend = 0;
if (exsize++ != 0) {
/* try to allocate through a devio slot whenever possible... */
if (exsize < BRIDGE_DEVIO_SHORT)
devio_idx = xbridge_allocate_devio(xb, dev, 0);
else if (exsize < BRIDGE_DEVIO_LARGE)
devio_idx = xbridge_allocate_devio(xb, dev, 1);
else
devio_idx = -1;
/* ...if it fails, try the large view.... */
if (devio_idx < 0 && xb->xb_ioex == NULL)
xb->xb_ioex = xbridge_mapping_setup(xb, 1);
/* ...if it is not available, try to get a devio slot anyway. */
if (devio_idx < 0 && xb->xb_ioex == NULL) {
if (exsize > BRIDGE_DEVIO_SHORT)
devio_idx = xbridge_allocate_devio(xb, dev, 1);
if (devio_idx < 0)
devio_idx = xbridge_allocate_devio(xb, dev, 0);
}
if (devio_idx >= 0) {
base = (xb->xb_devio_skew << 24) |
PIC_DEVIO_OFFS(xb->xb_busno, devio_idx);
xbridge_set_devio(xb, devio_idx, devio |
(base >> BRIDGE_DEVICE_BASE_SHIFT), 1);
*iostart = base;
*ioend = base + BRIDGE_DEVIO_SIZE(devio_idx) - 1;
} else if (xb->xb_ioex != NULL) {
/*
* We know that the direct I/O resource range fits
* within the 32 bit address space, so our allocation,
* if successful, will work as a 32 bit i/o range.
*/
if (exsize < 1UL << 12)
exsize = 1UL << 12;
for (tries = 0; tries < 5; tries++) {
if (extent_alloc(xb->xb_ioex, exsize,
1UL << 12, 0, 0, EX_NOWAIT | EX_MALLOCOK,
&exstart) == 0) {
*iostart = exstart;
*ioend = exstart + exsize - 1;
break;
}
exsize >>= 1;
if (exsize < 1UL << 12)
break;
}
}
}
exsize = *memend;
*memstart = 0xffffffff;
*memend = 0;
if (exsize++ != 0) {
/* try to allocate through a devio slot whenever possible... */
if (exsize < BRIDGE_DEVIO_SHORT)
devio_idx = xbridge_allocate_devio(xb, dev, 0);
else if (exsize < BRIDGE_DEVIO_LARGE)
devio_idx = xbridge_allocate_devio(xb, dev, 1);
else
devio_idx = -1;
/* ...if it fails, try the large view.... */
if (devio_idx < 0 && xb->xb_memex == NULL)
xb->xb_memex = xbridge_mapping_setup(xb, 0);
/* ...if it is not available, try to get a devio slot anyway. */
if (devio_idx < 0 && xb->xb_memex == NULL) {
if (exsize > BRIDGE_DEVIO_SHORT)
devio_idx = xbridge_allocate_devio(xb, dev, 1);
if (devio_idx < 0)
devio_idx = xbridge_allocate_devio(xb, dev, 0);
}
if (devio_idx >= 0) {
base = (xb->xb_devio_skew << 24) |
PIC_DEVIO_OFFS(xb->xb_busno, devio_idx);
xbridge_set_devio(xb, devio_idx, devio |
BRIDGE_DEVICE_IO_MEM |
(base >> BRIDGE_DEVICE_BASE_SHIFT), 1);
*memstart = base;
*memend = base + BRIDGE_DEVIO_SIZE(devio_idx) - 1;
} else if (xb->xb_memex != NULL) {
/*
* We know that the direct memory resource range fits
* within the 32 bit address space, and is limited to
* 30 bits, so our allocation, if successful, will
* work as a 32 bit memory range.
*/
if (exsize < 1UL << 20)
exsize = 1UL << 20;
for (tries = 0; tries < 5; tries++) {
if (extent_alloc(xb->xb_memex, exsize,
1UL << 20, 0, 0, EX_NOWAIT | EX_MALLOCOK,
&exstart) == 0) {
*memstart = exstart;
*memend = exstart + exsize - 1;
break;
}
exsize >>= 1;
if (exsize < 1UL << 20)
break;
}
}
}
return 0;
}
#if NCARDBUS > 0
static struct rb_md_fnptr xbridge_rb_md_fn = {
xbridge_rbus_space_map,
xbridge_rbus_space_unmap
};
int
xbridge_rbus_space_map(bus_space_tag_t t, bus_addr_t addr, bus_size_t size,
int flags, bus_space_handle_t *bshp)
{
return bus_space_map(t, addr, size, flags, bshp);
}
void
xbridge_rbus_space_unmap(bus_space_tag_t t, bus_space_handle_t h,
bus_size_t size, bus_addr_t *addrp)
{
bus_space_unmap(t, h, size);
*addrp = h - t->bus_base;
}
void *
xbridge_rbus_parent_io(struct pci_attach_args *pa)
{
struct extent *ex = pa->pa_ioex;
bus_addr_t start, end;
rbus_tag_t rb = NULL;
/*
* We want to force I/O mappings to lie in the low 16 bits
* area. This is mandatory for 16-bit pcmcia devices; and
* although 32-bit cardbus devices could use a larger range,
* the pccbb driver doesn't enable the large I/O windows.
*/
if (ex != NULL) {
start = 0;
end = 0x10000;
if (start < ex->ex_start)
start = ex->ex_start;
if (end > ex->ex_end)
end = ex->ex_end;
if (start < end) {
rb = rbus_new_root_share(pa->pa_iot, ex,
start, end - start);
if (rb != NULL)
rb->rb_md = &xbridge_rb_md_fn;
}
}
/*
* We are not allowed to return NULL. If we can't provide
* resources, return a valid body which will fail requests.
*/
if (rb == NULL)
rb = rbus_new_body(pa->pa_iot, NULL, 0, 0, RBUS_SPACE_INVALID);
return rb;
}
void *
xbridge_rbus_parent_mem(struct pci_attach_args *pa)
{
struct xbpci_softc *xb = pa->pa_pc->pc_conf_v;
struct extent *ex = pa->pa_memex;
bus_addr_t start;
rbus_tag_t rb = NULL;
/*
* There is no restriction for the memory mappings,
* however we need to make sure these won't hit the
* devio range (for md_space_unmap to work correctly).
*/
if (ex != NULL) {
start = (xb->xb_devio_skew + 1) << 24;
if (start < ex->ex_start)
start = ex->ex_start;
if (start < ex->ex_end) {
rb = rbus_new_root_share(pa->pa_memt, ex,
start, ex->ex_end - start);
if (rb != NULL)
rb->rb_md = &xbridge_rb_md_fn;
}
}
/*
* We are not allowed to return NULL. If we can't provide
* resources, return a valid body which will fail requests.
*/
if (rb == NULL)
rb = rbus_new_body(pa->pa_iot, NULL, 0, 0, RBUS_SPACE_INVALID);
return rb;
}
#endif /* NCARDBUS > 0 */
int
xbridge_allocate_devio(struct xbpci_softc *xb, int dev, int wantlarge)
{
#ifdef DEBUG
int orig_dev = dev;
#endif
/*
* If the preferred slot is available and matches the size requested,
* use it.
*/
if (!ISSET(xb->xb_devio_usemask, 1 << dev)) {
if (BRIDGE_DEVIO_SIZE(dev) >=
wantlarge ? BRIDGE_DEVIO_LARGE : BRIDGE_DEVIO_SHORT) {
#ifdef DEBUG
printf("%s(%d,%d): using reserved entry\n",
__func__, dev, wantlarge);
#endif
return dev;
}
}
/*
* Otherwise pick the smallest available devio matching our size
* request.
*/
for (dev = 0; dev < xb->xb_nslots; dev++) {
if (ISSET(xb->xb_devio_usemask, 1 << dev))
continue; /* devio in use */
if (!SLOT_EMPTY(xb, dev))
continue; /* devio to be used soon */
if (BRIDGE_DEVIO_SIZE(dev) >=
wantlarge ? BRIDGE_DEVIO_LARGE : BRIDGE_DEVIO_SHORT) {
#ifdef DEBUG
printf("%s(%d,%d): using unused entry %d\n",
__func__, orig_dev, wantlarge, dev);
#endif
return dev;
}
}
#ifdef DEBUG
printf("%s(%d,%d): no entry available\n",
__func__, orig_dev, wantlarge);
#endif
return -1;
}
void
xbridge_set_devio(struct xbpci_softc *xb, int dev, uint32_t devio, int final)
{
xbridge_write_reg(xb, BRIDGE_DEVICE(dev), devio);
(void)xbridge_read_reg(xb, WIDGET_TFLUSH);
xb->xb_devices[dev].devio = devio;
if (final)
SET(xb->xb_devio_usemask, 1 << dev);
#ifdef DEBUG
printf("device %d: new %sdevio %08x\n",
dev, final ? "final " : "", devio);
#endif
}
|