File: chip_intel_82371AB.c

package info (click to toggle)
faumachine 20100527-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 53,836 kB
  • ctags: 20,552
  • sloc: ansic: 179,550; asm: 3,645; makefile: 3,611; perl: 2,103; sh: 1,529; python: 600; xml: 563; lex: 210; vhdl: 204
file content (3852 lines) | stat: -rw-r--r-- 82,337 bytes parent folder | download
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
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
/*
 * $Id: chip_intel_82371AB.c,v 1.488 2009-11-12 12:05:23 vrsieh Exp $
 *
 * Copyright (C) 2003-2009 FAUmachine Team <info@faumachine.org>.
 * This program is free software. You can redistribute it and/or modify it
 * under the terms of the GNU General Public License, either version 2 of
 * the License, or (at your option) any later version. See COPYING.
 */

/*
 * This is an implementation of the south bridge of the
 * Intel 440BX chipset.
 */

#include "config.h"

#include <assert.h>
#include <errno.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>

#include "fixme.h"
#include "glue-log.h"
#include "glue-main.h"
#include "glue-storage.h"

#include "chip_intel_82371AB.h"

struct cpssp {
	/*
	 * Config
	 */

	/*
	 * Signals
	 */
	/* External Signals */
	/* PCI Bus Interface */
	struct sig_pci_bus_main *sig_pci_bus_main;
	struct sig_boolean *sig_n_pcirst;

	/* ISA Bus Interface */
	struct sig_isa_bus_main *sig_isa_bus;
	struct sig_boolean *sig_n_rstdrv;

	/* X-Bus Interface */
	struct sig_boolean *sig_a20gate;
	int state_a20gate;
	struct sig_boolean *sig_n_rcin;
	unsigned int state_n_rcin;
	struct sig_cs *sig_n_bioscs;
	struct sig_cs *sig_n_kbccs;

	/* DMA Signals */
	struct sig_isa_bus_dma *sig_isa_bus_dma[8];

	/* Interrupt Controller / APIC Signals */
	struct sig_cs *sig_n_apiccs;
	struct sig_boolean_or *isa_bus_int[16];
	struct sig_boolean_or *pci_bus_int[4];

	/* CPU Interface Signals */
	struct sig_boolean *sig_a20m;
	struct sig_boolean *sig_n_cpurst;
	struct sig_boolean *sig_n_init;
	struct sig_boolean_or *sig_n_ferr;
	struct sig_boolean *sig_n_ignne;
	struct sig_boolean_or *sig_intr;
	struct sig_boolean_or *sig_nmi;
	struct sig_boolean *sig_smi;

	/* Clocking Signals */
	
	/* IDE Signals */
	struct sig_ide_bus *sig_ide[2];

	/* Universal Serial Bus Signals */
	struct sig_usb_bus_main *sig_usb[2];

	/* Power Management Signals */
	struct sig_std_logic *sig_n_pwrbtn;
	struct sig_std_logic *sig_n_rsmrst;
	unsigned int state_n_rsmrst;
	struct sig_i2c_bus *sig_i2cbus;
	struct sig_boolean *sig_n_susa;
	struct sig_boolean *sig_n_susb;
	struct sig_std_logic *sig_n_susc;

	/* Other System And Test Signals */
	struct sig_boolean *sig_pwrok;
	struct sig_sound *sig_spkr;

	/* Power And Ground Signals */
	struct sig_boolean *sig_vcc;
	unsigned int state_vcc;
#define state_power state_vcc
	struct sig_boolean *sig_vcc_rtc;
	struct sig_boolean *sig_vcc_sus;
	unsigned int state_vcc_sus;
	struct sig_boolean *sig_vcc_usb;
	struct sig_boolean *sig_vref;

	/* FIXME */
	struct sig_boolean *sig_ide_busy;

	/* Internal Signals */
	unsigned int speaker_data_enable;
	unsigned long long speaker_period;

	/*
	 * State
	 */
	unsigned int reset_triggered;
	unsigned int init_triggered;
	unsigned int memory_refresh;

	/* Config Space */
	/* Page 54 */
	uint16_t pcicmd;
	/* Page 55 */
	uint16_t pcists;
	/* Page 56 */
	uint8_t iort;
	/* Page 55 */
	uint16_t xbcs;
	/* Page 59 */
	uint8_t pirqrca;
	uint8_t pirqrcb;
	uint8_t pirqrcc;
	uint8_t pirqrcd;
	/* Page 59 */
	uint8_t serirqc;
	/* Page 60 */
	uint8_t tom;
	/* Page 61 */
	uint16_t mstat;
	/* Page 61 */
	uint8_t mbdma0;
	uint8_t mbdma1;
	/* Page 62 */
	uint8_t apicbase;
	/* Page 62 */
	uint8_t dlc;
	/* Page 63 */
	uint16_t pdmacfg;
	/* Page 64 */
	uint16_t ddmabp0;
	uint16_t ddmabp1;
	/* Page 65 */
	uint32_t gencfg;
	/* Page 67 */
	uint8_t rtccfg;

	/* I/O Space */
	unsigned char r92;

	uint8_t state_inta;

	unsigned char state_ferr;

	uint8_t dma_page[16];	/* 0: reserved */
				/* 1: ctrl 0, chan 2 */
				/* 2: ctrl 0, chan 3 */
				/* 3: ctrl 0, chan 1 */
				/* 4: reserved */
				/* 5: reserved */
				/* 6: reserved */
				/* 7: ctrl 0, chan 0 */
				/* 8: reserved */
				/* 9: ctrl 1, chan 2 */
				/* A: ctrl 1, chan 3 */
				/* B: ctrl 1, chan 1 */
				/* C: reserved */
				/* D: reserved */
				/* E: reserved */
				/* F: ctrl 1, chan 0 */

#define STATE
	/* IDE */
#define NAME		ide
#define NAME_(x)	ide_ ## x
#define SNAME		"ide"
#include "arch_ide_controller.c"
#undef SNAME
#undef NAME_
#undef NAME

	/* USB */
#define NAME		usb_controller
#define NAME_(x)	usb_controller_ ## x
#define SNAME		"usb_controller"
#include "arch_usb_controller.c"
#undef SNAME
#undef NAME_
#undef NAME

	/* Power Management */
#define NAME		power
#define NAME_(x)	power_ ## x
#define SNAME		"power"
#include "arch_power_management.c"
#undef SNAME
#undef NAME_
#undef NAME

	/* RTC */
#define NAME		rtc
#define NAME_(x)	rtc_ ## x
#define SNAME		"rtc"
#include "arch_rtc.c"
#undef SNAME
#undef NAME_
#undef NAME

	/* DMA */
#define NAME		dma0
#define NAME_(x)	dma0_ ## x
#define SNAME		"dma0"
#include "arch_dma.c"
#undef SNAME
#undef NAME_
#undef NAME
#define NAME		dma1
#define NAME_(x)	dma1_ ## x
#define SNAME		"dma1"
#include "arch_dma.c"
#undef SNAME
#undef NAME_
#undef NAME

	/* PICs */
#define NAME		pic0
#define NAME_(x)	pic0_ ## x
#define SNAME		"pic0"
#include "arch_pic.c"
#undef SNAME
#undef NAME_
#undef NAME
#define NAME		pic1
#define NAME_(x)	pic1_ ## x
#define SNAME		"pic1"
#include "arch_pic.c"
#undef SNAME
#undef NAME_
#undef NAME

	/* PITs */
#define NAME		pit
#define NAME_(x)	pit_ ## x
#define SNAME		"pit"
#include "arch_pit.c"
#undef SNAME
#undef NAME_
#undef NAME

	/* PPI */
#define NAME		ppi
#define NAME_(x)	ppi_ ## x
#define SNAME		"ppi"
#include "arch_ppi.c"
#undef SNAME
#undef NAME_
#undef NAME

#undef STATE
};

#define min(x,y) ((x) < (y)) ? (x) : (y)

/* Forward target */
enum fw_target { IOAPIC, BIOS, ISA };


/*
 * Glue functions.
 */
/* forward */ static void
pic0_isa_bus_int2_set(struct cpssp *cpssp, unsigned int val);
/* forward */ static void
pic1_cas_in_set(struct cpssp *cpssp, unsigned int val);
/* forward */ static int
pit_timer_get(struct cpssp *cpssp, unsigned int ch);
/* forward */ static void
pit_gate_set(struct cpssp *cpssp, unsigned int ch, unsigned char val);

/*
 * DMA Output Functions
 */
static const unsigned int chanreg[8] = {
	0x7, 0x3, 0x1, 0x2,
	0xf, 0xb, 0x9, 0xa,
};

static inline void
dma0_ack_out(
	struct cpssp *cpssp,
	uint16_t offset,
	unsigned char chan,
	unsigned int tc
)
{
	uint8_t page;
	unsigned long pa;
	uint32_t val32;
	uint8_t val8;

	assert(/* 0 <= chan && */ chan < 4);

	page = cpssp->dma_page[chanreg[chan + 0]];

	pa = (page << 16) | offset;

	sig_pci_bus_mr(cpssp->sig_pci_bus_main, cpssp,
			pa & ~3, 1 << (pa & 3), &val32);
	val8 = val32 >> ((pa & 3) * 8);
	sig_isa_bus_dma_ack_outb(cpssp->sig_isa_bus_dma[chan], cpssp, tc, val8);
}

static inline void
dma0_ack_in(
	struct cpssp *cpssp,
	uint16_t offset,
	unsigned char chan,
	unsigned int tc
)
{
	uint8_t page;
	unsigned long pa;
	uint32_t val32;
	uint8_t val8;

	assert(/* 0 <= chan && */ chan < 4);

	page = cpssp->dma_page[chanreg[chan + 0]];

	pa = (page << 16) | offset;

	sig_isa_bus_dma_ack_inb(cpssp->sig_isa_bus_dma[chan], cpssp, tc, &val8);
	val32 = val8 << ((pa & 3) * 8);
	sig_pci_bus_mw(cpssp->sig_pci_bus_main, cpssp,
			pa & ~3, 1 << (pa & 3), val32);
}

static inline void
dma0_ack_verify(
	struct cpssp *cpssp,
	unsigned char chan,
	unsigned int tc
)
{
	sig_isa_bus_dma_ack_verifyb(cpssp->sig_isa_bus_dma[chan], cpssp, tc);
}

static inline void
dma1_ack_out(
	struct cpssp *cpssp,
	uint16_t offset,
	unsigned char chan,
	unsigned int tc
)
{
	uint8_t page;
	unsigned long pa;
	uint32_t val32;
	uint16_t val16;

	assert(/* 0 <= chan && */ chan < 4);

	page = cpssp->dma_page[chanreg[chan + 4]];

	pa = (page << 16) | (offset << 1);

	sig_pci_bus_mr(cpssp->sig_pci_bus_main, cpssp,
			pa & ~3, 3 << (pa & 3), &val32);
	val16 = val32 >> ((pa & 3) * 8);
	sig_isa_bus_dma_ack_outw(cpssp->sig_isa_bus_dma[chan], cpssp, tc, val16);
}

static inline void
dma1_ack_in(
	struct cpssp *cpssp,
	uint16_t offset,
	unsigned char chan,
	unsigned int tc
)
{
	uint8_t page;
	unsigned long pa;
	uint32_t val32;
	uint16_t val16;

	assert(/* 0 <= chan && */ chan < 4);

	page = cpssp->dma_page[chanreg[chan + 4]];

	pa = (page << 16) | (offset << 1);

	sig_isa_bus_dma_ack_inw(cpssp->sig_isa_bus_dma[chan], cpssp, tc, &val16);
	val32 = val16 << ((pa & 3) * 8);
	sig_pci_bus_mw(cpssp->sig_pci_bus_main, cpssp,
			pa & ~3, 3 << (pa & 3), val32);
}

static inline void
dma1_ack_verify(
	struct cpssp *cpssp,
	unsigned char chan,
	unsigned int tc
)
{
	sig_isa_bus_dma_ack_verifyw(cpssp->sig_isa_bus_dma[chan], cpssp, tc);
}

/*
 * IDE Output Functions
 */
static inline void
ide_0_irqrq_out_set(struct cpssp *cpssp, unsigned int val)
{
	sig_boolean_or_set(cpssp->isa_bus_int[14], cpssp, val);
}

static inline void
ide_1_irqrq_out_set(struct cpssp *cpssp, unsigned int val)
{
	sig_boolean_or_set(cpssp->isa_bus_int[15], cpssp, val);
}

static inline void
ide_0_inw(struct cpssp *cpssp, unsigned short *valp, unsigned short port)
{
	sig_ide_bus_inw(cpssp->sig_ide[0], port, valp);
}

static inline void
ide_1_inw(struct cpssp *cpssp, unsigned short *valp, unsigned short port)
{
	sig_ide_bus_inw(cpssp->sig_ide[1], port, valp);
}

static inline void
ide_0_outw(struct cpssp *cpssp, unsigned short val, unsigned short port)
{
	sig_ide_bus_outw(cpssp->sig_ide[0], port, val);
}

static inline void
ide_1_outw(struct cpssp *cpssp, unsigned short val, unsigned short port)
{
	sig_ide_bus_outw(cpssp->sig_ide[1], port, val);
}

static void
ide_busy_set(struct cpssp *cpssp, unsigned int val)
{
	sig_boolean_set(cpssp->sig_ide_busy, cpssp, val);
}

static inline int
ide_mem_write(
	struct cpssp *cpssp,
	uint32_t addr,
	unsigned int bs,
	uint32_t val
)
{
	return sig_pci_bus_mw(cpssp->sig_pci_bus_main, cpssp, addr, bs, val);
}

static inline int
ide_mem_read(
	struct cpssp *cpssp,
	uint32_t addr,
	unsigned int bs,
	uint32_t *valp
)
{
	return sig_pci_bus_mr(cpssp->sig_pci_bus_main, cpssp, addr, bs, valp);
}

/*
 * USB Output Functions
 */
static void
usb0_reset_set(struct cpssp *cpssp, int val)
{
	sig_usb_bus_reset_set(cpssp->sig_usb[0], cpssp, val);
}

static void
usb0_send_token(struct cpssp *cpssp, int pid, int addr, int endp)
{
	sig_usb_bus_send_token(cpssp->sig_usb[0], cpssp, pid, addr, endp);
}

static void
usb0_send_sof(
	struct cpssp *cpssp,
	int frame_num
)
{
	sig_usb_bus_send_sof(cpssp->sig_usb[0], cpssp, frame_num);
}

static void
usb0_send_data(
	struct cpssp *cpssp,
	int pid,
	uint8_t *data,
	unsigned int length,
	uint16_t crc16
)
{
	sig_usb_bus_send_data(cpssp->sig_usb[0], cpssp, pid, length, data, crc16);
}

static void
usb0_send_handshake(
	struct cpssp *cpssp,
	int pid
)
{
	sig_usb_bus_send_handshake(cpssp->sig_usb[0], cpssp, pid);
}

static void
usb1_reset_set(struct cpssp *cpssp, int val)
{
	sig_usb_bus_reset_set(cpssp->sig_usb[1], cpssp, val);
}

static void
usb1_send_token(struct cpssp *cpssp, int pid, int addr, int endp)
{
	sig_usb_bus_send_token(cpssp->sig_usb[1], cpssp, pid, addr, endp);
}

static void
usb1_send_sof(
	struct cpssp *cpssp,
	int frame_num
)
{
	sig_usb_bus_send_sof(cpssp->sig_usb[1], cpssp, frame_num);
}

static void
usb1_send_data(
	struct cpssp *cpssp,
	int pid,
	uint8_t *data,
	unsigned int length,
	uint16_t crc16
)
{
	sig_usb_bus_send_data(cpssp->sig_usb[1], cpssp, pid, length, data, crc16);
}

static void
usb1_send_handshake(
	struct cpssp *cpssp,
	int pid
)
{
	sig_usb_bus_send_handshake(cpssp->sig_usb[1], cpssp, pid);
}

static inline long
usb_mem_write(
	struct cpssp *cpssp,
	uint32_t addr,
	unsigned int bs,
	uint32_t val
)
{
	return sig_pci_bus_mw(cpssp->sig_pci_bus_main, cpssp, addr, bs, val);
}

static inline long
usb_mem_read(
	struct cpssp *cpssp,
	uint32_t addr,
	unsigned int bs,
	uint32_t *valp
)
{
	return sig_pci_bus_mr(cpssp->sig_pci_bus_main, cpssp, addr, bs, valp);
}

static inline void
usb_irqrq_out_set(struct cpssp *cpssp, unsigned int val)
{
	/* USB is hardwired to INTD */
	/* INTD is INOUT signal (wired or). */
	sig_boolean_or_set(cpssp->pci_bus_int[3], cpssp, val);
}

/*
 * Power Management Output Functions
 */
static inline void
power_smi_out_set(struct cpssp *cpssp, unsigned int val)
{
	sig_boolean_set(cpssp->sig_smi, cpssp, val);
}

static inline void
power_irqrq_out_set(struct cpssp *cpssp, unsigned int val)
{
	/* Power Management is hardwired to IRQ9 */
	sig_boolean_or_set(cpssp->isa_bus_int[9], cpssp, val);
}

static inline int
power_smbus_read_byte_data(
	struct cpssp *cpssp,
	unsigned char addr,
	unsigned char cmd,
	unsigned char *data
)
{
	int ret;

	ret = sig_i2c_bus_write_bytes(
		cpssp->sig_i2cbus, cpssp, addr & (~1), 1, &cmd);
	if (ret != 1) {
		return -1;
	}

	sig_i2c_bus_read_bytes(cpssp->sig_i2cbus, cpssp, addr | 1, 1, data);
	sig_i2c_bus_stop_transaction(cpssp->sig_i2cbus, cpssp);
	return 0;
}

static inline int
power_smbus_write_byte_data(
	struct cpssp *cpssp,
	unsigned char addr,
	unsigned char cmd,
	unsigned char data
)
{
	int ret;
	unsigned char buf[2];
	buf[0] = cmd;
	buf[1] = data;

	ret = sig_i2c_bus_write_bytes(
		cpssp->sig_i2cbus, cpssp, addr & (~1), 2, buf);
	sig_i2c_bus_stop_transaction(cpssp->sig_i2cbus, cpssp);

	if (ret == 2) {
		return 0;
	}

	return -1;
}

static inline int
power_smbus_read_block_data(
	struct cpssp *cpssp,
	unsigned char addr,
	unsigned char cmd,
	unsigned char *cnt,
	unsigned char *data
)
{
	/* FIXME potyra */
	assert(0);
	return -1;
}

static inline int
power_smbus_write_block_data(
	struct cpssp *cpssp,
	unsigned char addr,
	unsigned char cmd,
	unsigned char cnt,
	unsigned char *data
)
{
	/* FIXME potyra */
	assert(0);
	return -1;
}

static void
power_n_susc_set(struct cpssp *cpssp, unsigned int n_val)
{
	if (n_val) {
		sig_std_logic_set(cpssp->sig_n_susc, cpssp, SIG_STD_LOGIC_Z);
	} else {
		sig_std_logic_set(cpssp->sig_n_susc, cpssp, SIG_STD_LOGIC_0);
	}
}

/*
 * PIC Input/Output Functions
 */
extern inline void
pic0_irq_out_set(struct cpssp *cpssp, unsigned int value)
{
	sig_boolean_or_set(cpssp->sig_intr, cpssp, value);
}

static void
pic0_cas_out_set(struct cpssp *cpssp, unsigned int value)
{
	pic1_cas_in_set(cpssp, value);
}

static inline void
pic1_irq_out_set(struct cpssp *cpssp, unsigned int value)
{
	pic0_isa_bus_int2_set(cpssp, value);
}

static void
pic1_cas_out_set(struct cpssp *cpssp, unsigned int value)
{
	fixme();
}

/*
 * PIT Output Functions
 */
extern inline void
pit_out_val_set(struct cpssp *cpssp, unsigned int ch, unsigned int val)
{
	if (ch == 0) {
		/* interrupt timer */
		sig_boolean_or_set(cpssp->isa_bus_int[0], cpssp, val);
	} else if (ch == 1 && val == 0) {
		/* pulse of memory refresh timer */
		cpssp->memory_refresh ^= 1;
	}
}

static inline void
pit_out_period_set(struct cpssp *cpssp, unsigned int ch, unsigned long long val)
{
	if (ch == 2) {
		cpssp->speaker_period = val;
		sig_sound_attr_set(cpssp->sig_spkr, cpssp,
			cpssp->speaker_data_enable, cpssp->speaker_period);
	}
}

/*
 * PPI Output Functions
 */
static inline unsigned int
ppi_in4_get(struct cpssp *cpssp)
{
	return cpssp->memory_refresh;
}

static inline unsigned int
ppi_in5_get(struct cpssp *cpssp)
{
	return pit_timer_get(cpssp, 2);
}

static inline void
ppi_out0_set(struct cpssp *cpssp, unsigned int val)
{
	pit_gate_set(cpssp, 2, val);
}

static inline void
ppi_out1_set(struct cpssp *cpssp, unsigned int val)
{
	cpssp->speaker_data_enable = val;
	sig_sound_attr_set(cpssp->sig_spkr, cpssp,
		cpssp->speaker_data_enable, cpssp->speaker_period);
}

/*
 * RTC output functions.
 */
static inline void
rtc_irq_set(struct cpssp *cpssp, unsigned int val)
{
	sig_boolean_or_set(cpssp->isa_bus_int[8], cpssp, val);
}

/* Include Core compenents */
#define BEHAVIOR

#define NAME		power
#define NAME_(x)	power_ ## x
#define SNAME		"power"
#include "arch_power_management.c"
#undef SNAME
#undef NAME_
#undef NAME

#define NAME		usb_controller
#define NAME_(x)	usb_controller_ ## x
#define SNAME		"usb_controller"
#include "arch_usb_controller.c"
#undef SNAME
#undef NAME_
#undef NAME

#define NAME		ide
#define NAME_(x)	ide_ ## x
#define SNAME		"ide"
#include "arch_ide_controller.c"
#undef SNAME
#undef NAME_
#undef NAME

/* First DMA Controller */
#define NAME		dma0
#define NAME_(x)	dma0_ ## x
#define SNAME		"dma0"
#include "arch_dma.c"
#undef SNAME
#undef NAME_
#undef NAME

/* Second DMA Controller */
#define NAME		dma1
#define NAME_(x)	dma1_ ## x
#define SNAME		"dma1"
#include "arch_dma.c"
#undef SNAME
#undef NAME_
#undef NAME

/* First PIC (master) */
#define MASTER		1
#define ELCR_MASK	0xf8	/* Can't set bits 0-2. */
#define NAME		pic0
#define NAME_(x)	pic0_ ## x
#define SNAME		"pic0"
#include "arch_pic.c"
#undef SNAME
#undef NAME_
#undef NAME
#undef ELCR_MASK
#undef MASTER

/* Second PIC (slave) */
#define MASTER		0
#define ELCR_MASK	0xde	/* Can't set bits 0 and 5. */
#define NAME		pic1
#define NAME_(x)	pic1_ ## x
#define SNAME		"pic1"
#include "arch_pic.c"
#undef SNAME
#undef NAME_
#undef NAME
#undef ELCR_MASK
#undef MASTER

/* PIT */
#define NAME		pit
#define NAME_(x)	pit_ ## x
#define SNAME		"pit"
#include "arch_pit.c"
#undef SNAME
#undef NAME_
#undef NAME

/* PPI */
#define NAME		ppi
#define NAME_(x)	ppi_ ## x
#define SNAME		"ppi"
#include "arch_ppi.c"
#undef SNAME
#undef NAME_
#undef NAME

#define NAME		rtc
#define NAME_(x)	rtc_ ## x
#define SNAME		"rtc"
#include "arch_rtc.c"
#undef SNAME
#undef NAME_
#undef NAME

#undef BEHAVIOR

static void
ide0_dmarq_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	ide_dmarq_set(cpssp, 0, val);
}

static void
ide1_dmarq_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	ide_dmarq_set(cpssp, 1, val);
}

static void
ide0_irqrq_in_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	ide_irqrq_in_set(cpssp, 0, val);
}

static void
ide1_irqrq_in_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	ide_irqrq_in_set(cpssp, 1, val);
}

static void
chip_intel_82371AB_a20m_update(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;
	unsigned int val0;
	unsigned int val1;

	val0 = (cpssp->r92 >> 1) & 1;
	val1 = cpssp->state_a20gate;

	sig_boolean_set(cpssp->sig_a20m, cpssp, val0 | val1);
}

static void
chip_intel_82371AB_reset_update(struct cpssp *cpssp)
{
	unsigned int n_reset;

	/* Reset ConfigSpace */
	cpssp->pcicmd = 0x0007; /* Some bits hard-wired to '1'. */
	cpssp->pcists = 0x0000 | (0x1 << 9) | (1 << 7);

	cpssp->iort = 0x4d;
	cpssp->xbcs = 0x0003;

	cpssp->pirqrca = 9;
	cpssp->pirqrcb = 10;
	cpssp->pirqrcc = 11;
	cpssp->pirqrcd = 12;

	cpssp->serirqc = 0x10;

	cpssp->tom = 0x02;

	cpssp->mstat = 0x0000;

	cpssp->mbdma0 = 0x04;
	cpssp->mbdma1 = 0x04;

	cpssp->apicbase = 0x00;

	cpssp->dlc = 0x00;

	cpssp->pdmacfg = 0x0000;

	cpssp->ddmabp0 = 0x0000;
	cpssp->ddmabp1 = 0x0000;

	cpssp->gencfg = 0x00000000;

	cpssp->rtccfg = 0x21;

	cpssp->memory_refresh = 1;

	cpssp->r92 = (1 << 1) | (0 << 1);

	cpssp->state_a20gate = 0;
	cpssp->state_ferr = 0;

	chip_intel_82371AB_a20m_update(cpssp);

	ide_reset(cpssp);
	pic0_reset(cpssp);
	pic1_reset(cpssp);
	pit_reset(cpssp);
	ppi_reset(cpssp);
	dma0_reset(cpssp);
	dma1_reset(cpssp);
	rtc_reset(cpssp);
	usb_controller_reset(cpssp);
	power_reset(cpssp);

	n_reset = ! cpssp->reset_triggered;

	sig_boolean_set(cpssp->sig_n_cpurst, cpssp, n_reset);
	sig_boolean_set(cpssp->sig_n_pcirst, cpssp, n_reset);
	sig_boolean_set(cpssp->sig_n_rstdrv, cpssp, n_reset);
}

static void
chip_intel_82371AB_reset_event(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (cpssp->reset_triggered) {
		cpssp->reset_triggered = 0;
		chip_intel_82371AB_reset_update(cpssp);
	}
}

static void
chip_intel_82371AB_reset_trigger(struct cpssp *cpssp)
{
	cpssp->reset_triggered = 1;
	chip_intel_82371AB_reset_update(cpssp);
	time_call_after(TIME_HZ / 500,
			chip_intel_82371AB_reset_event, cpssp);
}

static void
chip_intel_82371AB_vcc_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	cpssp->state_vcc = val;
}

static void
chip_intel_82371AB_vcc_sus_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	cpssp->state_vcc_sus = val;

	power_power_set(cpssp, val);
}

static void
chip_intel_82371AB_n_rsmrst_set(void *_css, unsigned int n_val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	switch (n_val) {
	case SIG_STD_LOGIC_0: n_val = 0; break;
	case SIG_STD_LOGIC_H: n_val = 1; break;
	default: return; /* Might happen during startup. */
	}

	if (! n_val) {
		/* Resume Reset Event */
		chip_intel_82371AB_reset_trigger(cpssp);
	}
}

static void
chip_intel_82371AB_rcin_set(void *_css, unsigned int n_val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	cpssp->state_n_rcin = n_val;
	if (! n_val) {
		/* Keyboard Controller Reset Event */
		chip_intel_82371AB_reset_trigger(cpssp);
	}
}

static void
chip_intel_82371AB_n_ferr_set(void *_css, unsigned int n_val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if(cpssp->state_ferr == 0 && n_val) {
		cpssp->state_ferr = 1;
		sig_boolean_or_set(cpssp->isa_bus_int[13], cpssp, 1);
	} else if(cpssp->state_ferr == 2 && !n_val) {
		cpssp->state_ferr = 0;
		sig_boolean_set(cpssp->sig_n_ignne, cpssp, 0);
	}
}

static void
chip_intel_82371AB_init_update(struct cpssp *cpssp)
{
	unsigned int n_init;

	n_init = ! cpssp->init_triggered;

	sig_boolean_set(cpssp->sig_n_init, cpssp, n_init);
}

static void
chip_intel_82371AB_init_event(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (cpssp->init_triggered) {
		cpssp->init_triggered = 0;
		chip_intel_82371AB_init_update(cpssp);
	}
}

static void
chip_intel_82371AB_init_trigger(struct cpssp *cpssp)
{
	cpssp->init_triggered = 1;
	time_call_after(TIME_HZ / 500,
			chip_intel_82371AB_init_event, cpssp);
	chip_intel_82371AB_init_update(cpssp);
}

static void
chip_intel_82371AB_pwrok_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (val) {
		/* Power On Event */
		chip_intel_82371AB_reset_trigger(cpssp);
		chip_intel_82371AB_init_trigger(cpssp);
	}
}

static enum fw_target
chip_intel_82371AB_get_forward(
	struct cpssp *cpssp,
	unsigned long pa,
	unsigned int rw,
	unsigned long *start,
	unsigned long *end
)
{
	uint32_t mask;
	uint32_t addr;

	/*
	 * Test forwarding to APIC.
	 */
	mask = ~(((cpssp->apicbase >> 6) & 1) << 12);
	addr = 0xfec00000 | (((cpssp->apicbase >> 0) & 0x3f) << 10);
	if ((pa & mask) == addr
	 || (pa & mask) == addr + 0x10) {
		/* I/O-APIC selected. */
		*start = addr;
		*end = *start + 0x20;
		return IOAPIC;
	}

	/*
	 * Test forwarding to BIOS.
	 */
	if ((0x000f0000 <= pa && pa <= 0x000fffff)
	 || (0xffff0000 <= pa && pa <= 0xffffffff)) {
		/* Accessing top 64kBytes of BIOS */
		pa |= 0xfff00000;
		goto bios;
	}
	if (((cpssp->xbcs >> 6) & 1)
	 && ((0x000e0000 <= pa && pa <= 0x000effff)
	  || (0xfffe0000 <= pa && pa <= 0xfffeffff))) {
		/* Accessing lower 64kBytes of BIOS */
		pa |= 0xfff00000;
		goto bios;
	}
	if (((cpssp->xbcs >> 7) & 1)
	 && ((0xfff80000 <= pa && pa <= 0xfffdffff))) {
		/* Accessing 384kBytes Extended BIOS */
		goto bios;
	}
	if (((cpssp->xbcs >> 9) & 1)
	 && ((0xfff00000 <= pa && pa <= 0xfff7ffff))) {
		/* Accessing 1MByte Extended BIOS */
	bios:;
		*start = pa & 0x000f0000;
		*end = *start + 0x10000;
		return BIOS;
	}

	/* Forward to ISA */

	*start = pa & 0xffff0000;
	*end = *start + 0x10000;
	return ISA;
}


static int
chip_intel_82371AB_inb(void *_css, uint8_t *valp, uint16_t port)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	/*
	 * 82371AB, pp. 44
	 */
	switch (port) {
	case 0x0000 ... 0x001f:
		dma0_inb(cpssp, valp, port & 0xf);
		return 0;

	case 0x0020: case 0x0021: case 0x0024: case 0x0025:
	case 0x0028: case 0x0029: case 0x002c: case 0x002d:
	case 0x0030: case 0x0031: case 0x0034: case 0x0035:
	case 0x0038: case 0x0039: case 0x003c: case 0x003d:
		pic0_inb(cpssp, valp, port & 0x1);
		return 0;

	case 0x0040 ... 0x0043:
	case 0x0050 ... 0x0053:
		/* PIT 0 */
		pit_inb(cpssp, valp, port & 0x3);
		return 0;

	case 0x0060:
		/* Reset X-Bus IRQ12/M and IRQ1 */
		/* FIXME VOSSI */

		/* FALLTRHOUGH */
	case 0x0064:
		/* Keyboard Controller */
		if (1) {
			sig_cs_readb(cpssp->sig_n_kbccs, cpssp, valp, port);
			return 0;
		} else {
			/* Forward to ISA Bus */
			break;
		}

	case 0x0061: case 0x0063: case 0x0065: case 0x0067:
		/* PPI */
		ppi_inb(cpssp, valp);
		return 0;

	case 0x0072:
	case 0x0073:
		/* RTC */
		if ((cpssp->rtccfg >> 2) & 1) {
			rtc_inb(cpssp, valp, port & 3);
			return 0;
		}
		/*FALLTHROUGH*/
	case 0x0070: case 0x0074: case 0x0076:
	case 0x0071: case 0x0075: case 0x0077:
		rtc_inb(cpssp, valp, port & 1);
		return 0;

	case 0x0080: case 0x0090:
	case 0x0081: case 0x0091:
	case 0x0082: /* 0x0092: See below! */
	case 0x0083: case 0x0093:
	case 0x0084: case 0x0094:
	case 0x0085: case 0x0095:
	case 0x0086: case 0x0096:
	case 0x0087: case 0x0097:
	case 0x0088: case 0x0098:
	case 0x0089: case 0x0099:
	case 0x008a: case 0x009a:
	case 0x008b: case 0x009b:
	case 0x008c: case 0x009c:
	case 0x008d: case 0x009d:
	case 0x008e: case 0x009e:
	case 0x008f: case 0x009f:
		*valp = cpssp->dma_page[port & 0xf];
		return 0;

	case 0x0092:
		/* A20 gate */
		*valp = cpssp->r92;
		return 0;

	case 0x00a0: case 0x00a1: case 0x00a4: case 0x00a5:
	case 0x00a8: case 0x00a9: case 0x00ac: case 0x00ad:
	case 0x00b0: case 0x00b1: case 0x00b4: case 0x00b5:
	case 0x00b8: case 0x00b9: case 0x00bc: case 0x00bd:
		pic1_inb(cpssp, valp, port & 0x1);
		return 0;

	case 0x00b2: case 0x00b3:
		/* Advanced Power Management */
		power_inb(cpssp, valp, port);
		return 0;

	case 0x00c0 ... 0x00df:
		dma1_inb(cpssp, valp, (port >> 1) & 0xf);
		return 0;

	case 0x00f0:
		/* Coprocessor Error */
		fprintf(stderr,
			"WARNING: Reading from write-only Coprocessor Error Register 0x%02x\n",
			port);

		/* Forward to ISA Bus */
		break;

	case 0x04d0:
		/* PIC0 ELCR - Edge/Level Control Register */
		pic0_inb(cpssp, valp, 2);
		return 0;
	case 0x04d1:
		/* PIC1 ELCR - Edge/Level Control Register */
		pic1_inb(cpssp, valp, 2);
		return 0;

	case 0x0cf9:
		/* Reset Control */
		/* 82371AB (PIIX4) Page 88 */
		*valp = 0;
		return 0;

	default:
		break;
	}

	if (power_inb(cpssp, valp, port) == 0
	 || usb_controller_inb(cpssp, valp, port) == 0
	 || sig_isa_bus_inb(cpssp->sig_isa_bus, cpssp, valp, port) == 0) {
		return 0;
	}
	
	return 1;
}

static int
chip_intel_82371AB_inw(void *_css, uint16_t *valp, uint16_t port)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (power_inw(cpssp, valp, port) == 0
	 || usb_controller_inw(cpssp, valp, port) == 0
	 || sig_isa_bus_inw(cpssp->sig_isa_bus, cpssp, valp, port) == 0) {
		return 0;
	}

	return 1;
}

static int
chip_intel_82371AB_inl(void *_css, uint32_t *valp, uint16_t port)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (power_inl(cpssp, valp, port) == 0
	 || usb_controller_inl(cpssp, valp, port) == 0) {
		return 0;
	}

	return 1;
}

static int
chip_intel_82371AB_ior(
	void *_css,
	uint32_t addr,
	unsigned int bs,
	uint32_t *valp
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;
	uint8_t val8;
	uint16_t val16;
	int ret;

	assert(! (addr & 3));

	if (ide_ior(cpssp, addr, bs, valp) == 0) {
		return 0;
	}

	/* FIXME VOSSI */
	switch (bs) {
	case 0x1 << 0:
		ret = chip_intel_82371AB_inb(cpssp, &val8, addr + 0);
		if (ret == 0) {
			*valp &= ~(0xff << 0);
			*valp |= val8 << 0;
			return 0;
		}
		break;
	case 0x1 << 1:
		ret = chip_intel_82371AB_inb(cpssp, &val8, addr + 1);
		if (ret == 0) {
			*valp &= ~(0xff << 8);
			*valp |= val8 << 8;
			return 0;
		}
		break;
	case 0x1 << 2:
		ret = chip_intel_82371AB_inb(cpssp, &val8, addr + 2);
		if (ret == 0) {
			*valp &= ~(0xff << 16);
			*valp |= val8 << 16;
			return 0;
		}
		break;
	case 0x1 << 3:
		ret = chip_intel_82371AB_inb(cpssp, &val8, addr + 3);
		if (ret == 0) {
			*valp &= ~(0xff << 24);
			*valp |= val8 << 24;
			return 0;
		}
		break;
	case 0x3 << 0:
		ret = chip_intel_82371AB_inw(cpssp, &val16, addr + 0);
		if (ret == 0) {
			*valp &= ~(0xffff << 0);
			*valp |= val16 << 0;
			return 0;
		}
		break;
	case 0x3 << 1:
		ret = chip_intel_82371AB_inb(cpssp, &val8, addr + 1);
		if (ret != 0) break;
		val16 = val8 << 8;
		ret = chip_intel_82371AB_inb(cpssp, &val8, addr + 2);
		if (ret == 0) {
			val16 |= val8;
			*valp &= ~(0xffff << 8);
			*valp |= val16 << 8;
			return 0;
		}
		break;
	case 0x3 << 2:
		ret = chip_intel_82371AB_inw(cpssp, &val16, addr + 2);
		if (ret == 0) {
			*valp &= ~(0xffff << 16);
			*valp |= val16 << 16;
			return 0;
		}
		break;
	case 0xf << 0:
		ret = chip_intel_82371AB_inl(cpssp, valp, addr + 0);
		if (ret == 0) {
			return 0;
		}
		break;
	default:
		fprintf(stderr, "%s 0x%08lx 0x%x\n", __FUNCTION__,
				(unsigned long) addr, bs);
		assert(0);
	}
	return -1;
}

static int
chip_intel_82371AB_io_responsible(
	struct cpssp *cpssp,
	uint32_t port,
	unsigned int bs,
	int wflag
)
{
	/*
	 * 82371AB (PIIX4), page 44.
	 */
	switch (port) {
	case 0x0000:
	case 0x0004:
	case 0x0008:
	case 0x000c:
		return 1;

	case 0x0020: case 0x0024: case 0x0028: case 0x002c:
	case 0x0030: case 0x0034: case 0x0038: case 0x003c:
		if (bs == (1 << 0)
		 || bs == (1 << 1)) {
			return 1;
		}
		break;

	case 0x0040:
	case 0x0050:
		return 1;

	case 0x0060:
		if (bs == (1 << 0)
		 || bs == (1 << 1)
		 || bs == (1 << 3)) {
			return 1;
		}
		break;

	case 0x0064:
		if (bs == (1 << 1)
		 || bs == (1 << 3)) {
			return 1;
		}
		break;

	/* Some missing - FIXME */

	case 0x00a0: case 0x00a4:
	case 0x00a8: case 0x00ac:
	case 0x00b0: case 0x00b4:
	case 0x00b8: case 0x00bc:
		if (bs == (1 << 0)
		 || bs == (1 << 1)) {
			return 1;
		}
		break;

	/* Some missing - FIXME */

	case 0x04d0:
		if (bs == (1 << 0)
		 || bs == (1 << 1)) {
			return 1;
		}
		break;

	/* Some missing - FIXME */

	}

	return 0;
}

static int
chip_intel_82371AB_ior_info(
	void *_css,
	uint32_t port,
	unsigned int bs,
	int (**cfp)(void *, uint32_t, unsigned int, uint32_t *),
	void **csp
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (chip_intel_82371AB_io_responsible(cpssp, port, bs, 0)) {
		*cfp = chip_intel_82371AB_ior;
		*csp = cpssp;
		return 0;
	}

	return ide_ior_info(cpssp, port, bs, cfp, csp);
}

static int
chip_intel_82371AB_outb(void *_css, uint8_t val, uint16_t port)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	/*
	 * 82371AB, pp. 44
	 */
	switch (port) {
	case 0x0000 ... 0x001f:
		dma0_outb(cpssp, val, port & 0xf);
		return 0;
	case 0x0020: case 0x0021: case 0x0024: case 0x0025:
	case 0x0028: case 0x0029: case 0x002c: case 0x002d:
	case 0x0030: case 0x0031: case 0x0034: case 0x0035:
	case 0x0038: case 0x0039: case 0x003c: case 0x003d:
		pic0_outb(cpssp, val, port & 0x1);
		return 0;

	case 0x0040 ... 0x0043:
	case 0x0050 ... 0x0053:
		/* PIT 0 */
		pit_outb(cpssp, val, port & 0x3);
		return 0;

	case 0x0060:
		/* Reset X-Bus IRQ12/M and IRQ1 */
		/* FIXME VOSSI */

		/* FALLTRHOUGH */
	case 0x0064:
		/* Keyboard Controller */
		if (1) {
			sig_cs_writeb(cpssp->sig_n_kbccs, cpssp, val, port);
			return 0;
		} else {
			/* Forward to ISA Bus */
			break;
		}

	case 0x0061: case 0x0063: case 0x0065: case 0x0067:
		/* PPI */
		ppi_outb(cpssp, val);
		return 0;

	case 0x0072:
	case 0x0073:
		/* RTC */
		if ((cpssp->rtccfg >> 2) & 1) {
			rtc_outb(cpssp, val, port & 3);
			return 0;
		}
		/*FALLTHROUGH*/
	case 0x0070: case 0x0074: case 0x0076:
	case 0x0071: case 0x0075: case 0x0077:
		rtc_outb(cpssp, val, port & 1);
		return 0;

	case 0x0080: case 0x0090:
	case 0x0081: case 0x0091:
	case 0x0082: /* 0x0092: See below! */
	case 0x0083: case 0x0093:
	case 0x0084: case 0x0094:
	case 0x0085: case 0x0095:
	case 0x0086: case 0x0096:
	case 0x0087: case 0x0097:
	case 0x0088: case 0x0098:
	case 0x0089: case 0x0099:
	case 0x008a: case 0x009a:
	case 0x008b: case 0x009b:
	case 0x008c: case 0x009c:
	case 0x008d: case 0x009d:
	case 0x008e: case 0x009e:
	case 0x008f: case 0x009f:
		cpssp->dma_page[port & 0xf] = val;
		return 0;

	case 0x0092:
		/* P92 -- Port 92 Register */
		/* 82371AB (PIIX4) Page 87 */

		/*
		 * FAST_INIT
		 *
		 * On 0->1 Edge Trigger CPU Init.
		 */
		if (! ((cpssp->r92 >> 0) & 1)
		 && (val >> 0) & 1) {
			/* Trigger CPU Init */
			chip_intel_82371AB_init_trigger(cpssp);
		}
		cpssp->r92 &= ~(1 << 0);
		cpssp->r92 |= val & (1 << 0);

		/*
		 * FAST_A20
		 */
		cpssp->r92 &= ~(1 << 1);
		cpssp->r92 |= val & (1 << 1);
		chip_intel_82371AB_a20m_update(cpssp);
		return 0;

	case 0x00a0: case 0x00a1: case 0x00a4: case 0x00a5:
	case 0x00a8: case 0x00a9: case 0x00ac: case 0x00ad:
	case 0x00b0: case 0x00b1: case 0x00b4: case 0x00b5:
	case 0x00b8: case 0x00b9: case 0x00bc: case 0x00bd:
		pic1_outb(cpssp, val, port & 0x1);
		return 0;

	case 0x00b2: case 0x00b3:
		/* Advanced Power Management Control */
		power_outb(cpssp, val, port);
		return 0;

	case 0x00c0 ... 0x00df:
		dma1_outb(cpssp, val, (port >> 1) & 0xf);
		return 0;

	case 0x00f0:
		/* Coprocessor Error */
		if(cpssp->state_ferr == 1) {
			cpssp->state_ferr = 2;
			sig_boolean_set(cpssp->sig_n_ignne, cpssp, 1);
			sig_boolean_or_set(cpssp->isa_bus_int[13], cpssp, 0);
		}
		/* FIXME VOSSI */
		fprintf(stderr,
			"WARNING: Writing to unimplemented Coprocessor Error Register 0x%02x\n",
			port);

		/* Forward to ISA Bus */
		break;

	case 0x04d0:
		/* PIC0 ELCR - Edge/Level Control Register */
		pic0_outb(cpssp, val, 2);
		return 0;
	case 0x04d1:
		/* PIC1 ELCR - Edge/Level Control Register */
		pic1_outb(cpssp, val, 2);
		return 0;

	case 0x0cf9:
		/* Reset Control */
		/* 82371AB (PIIX4) Page 88 */
		if ((val >> 1) & 1) {
			/* Initiate hard reset to CPU. */
			/* Do reset of CPU only - FIXME */
			chip_intel_82371AB_reset_trigger(cpssp);
		} else {
			/* Initiate soft reset to CPU. */
			chip_intel_82371AB_init_trigger(cpssp);
		}
		return 0;

	default:
		break;
	}

	if (power_outb(cpssp, val, port) == 0
	 || usb_controller_outb(cpssp, val, port) == 0
	 || sig_isa_bus_outb(cpssp->sig_isa_bus, cpssp, val, port) == 0) {
		return 0;
	}

	return 1;
}

static int
chip_intel_82371AB_outw(void *_css, uint16_t val, uint16_t port)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (power_outw(cpssp, val, port) == 0
	 || usb_controller_outw(cpssp, val, port) == 0
	 || sig_isa_bus_outw(cpssp->sig_isa_bus, cpssp, val, port) == 0) {
		return 0;
	}

	return 1;
}

static int
chip_intel_82371AB_outl(void *_css, uint32_t val, uint16_t port)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (power_outl(cpssp, val, port) == 0
	 || usb_controller_outl(cpssp, val, port) == 0) {
		return 0;
	}

	return 1;
}

static int
chip_intel_82371AB_iow(
	void *_css,
	uint32_t addr,
	unsigned int bs,
	uint32_t val
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;
	uint8_t val8;
	uint16_t val16;
	int ret;

	assert(! (addr & 3));

	if (ide_iow(cpssp, addr, bs, val) == 0) {
		return 0;
	}

	/* FIXME VOSSI */
	switch (bs) {
	case 0x1 << 0:
		val8 = val >> 0;
		ret = chip_intel_82371AB_outb(cpssp, val8, addr + 0);
		if (ret == 0) {
			return 0;
		}
		break;
	case 0x1 << 1:
		val8 = val >> 8;
		ret = chip_intel_82371AB_outb(cpssp, val8, addr + 1);
		if (ret == 0) {
			return 0;
		}
		break;
	case 0x1 << 2:
		val8 = val >> 16;
		ret = chip_intel_82371AB_outb(cpssp, val8, addr + 2);
		if (ret == 0) {
			return 0;
		}
		break;
	case 0x1 << 3:
		val8 = val >> 24;
		ret = chip_intel_82371AB_outb(cpssp, val8, addr + 3);
		if (ret == 0) {
			return 0;
		}
		break;
	case 0x3 << 0:
		val16 = val >> 0;
		ret = chip_intel_82371AB_outw(cpssp, val16, addr + 0);
		if (ret == 0) {
			return 0;
		}
		break;
	case 0x3 << 1:
		val16 = val >> 8;
		ret = chip_intel_82371AB_outw(cpssp, val16, addr + 1);
		if (ret == 0) {
			return 0;
		}
		break;
	case 0x3 << 2:
		val16 = val >> 16;
		ret = chip_intel_82371AB_outw(cpssp, val16, addr + 2);
		if (ret == 0) {
			return 0;
		}
		break;
	case 0xf << 0:
		ret = chip_intel_82371AB_outl(cpssp, val, addr + 0);
		if (ret == 0) {
			return 0;
		}
		break;
	default:
		fprintf(stderr, "Byteselect: %0x\n",bs);
		assert(0);
	}
	return -1;
}

static int
chip_intel_82371AB_iow_info(
	void *_css,
	uint32_t port,
	unsigned int bs,
	int (**cfp)(void *, uint32_t, unsigned int, uint32_t),
	void **csp
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if (chip_intel_82371AB_io_responsible(cpssp, port, bs, 1)) {
		*cfp = chip_intel_82371AB_iow;
		*csp = cpssp;
		return 0;
	}

	return ide_iow_info(cpssp, port, bs, cfp, csp);
}

static int
chip_intel_82371AB_mr(
	void *_css,
	uint32_t addr,
	unsigned int bs,
	uint32_t *valp
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;
	unsigned long start;
	unsigned long end;
	int forward;
	uint8_t val8;
	uint16_t val16;
	int ret;

	forward = chip_intel_82371AB_get_forward(cpssp, addr, 2, &start, &end);

	switch (forward) {
	case IOAPIC:
		if (bs == 0xf) {
			ret = sig_cs_readl(cpssp->sig_n_apiccs, cpssp, valp, (addr >> 4) & 1);
			assert(ret == 0);
			return 0;
		} else {
			return -1;
		}

	case BIOS:
		*valp = 0;
		addr &= 0x000fffff;
		if ((bs >> 0) & 1) {
			sig_cs_readb(cpssp->sig_n_bioscs, cpssp, &val8, addr + 0);
			*valp |= val8 << 0;
		}
		if ((bs >> 1) & 1) {
			sig_cs_readb(cpssp->sig_n_bioscs, cpssp, &val8, addr + 1);
			*valp |= val8 << 8;
		}
		if ((bs >> 2) & 1) {
			sig_cs_readb(cpssp->sig_n_bioscs, cpssp, &val8, addr + 2);
			*valp |= val8 << 16;
		}
		if ((bs >> 3) & 1) {
			sig_cs_readb(cpssp->sig_n_bioscs, cpssp, &val8, addr + 3);
			*valp |= val8 << 24;
		}
		return 0;

	case ISA:
		ret = -1;

		*valp = 0;
		if (((bs >> 0) & 3) == 3) {
			ret &= sig_isa_bus_readw(cpssp->sig_isa_bus, cpssp, addr + 0, &val16);
			*valp |= val16 << 0;
		} else {
			if ((bs >> 0) & 1) {
				ret &= sig_isa_bus_readb(cpssp->sig_isa_bus, cpssp, addr + 0, &val8);
				*valp |= val8 << 0;
			}
			if ((bs >> 1) & 1) {
				ret &= sig_isa_bus_readb(cpssp->sig_isa_bus, cpssp, addr + 1, &val8);
				*valp |= val8 << 8;
			}
		}
		if (((bs >> 2) & 3) == 3) {
			ret &= sig_isa_bus_readw(cpssp->sig_isa_bus, cpssp, addr + 2, &val16);
			*valp |= val16 << 16;
		} else {
			if ((bs >> 2) & 1) {
				ret &= sig_isa_bus_readb(cpssp->sig_isa_bus, cpssp, addr + 2, &val8);
				*valp |= val8 << 16;
			}
			if ((bs >> 3) & 1) {
				ret &= sig_isa_bus_readb(cpssp->sig_isa_bus, cpssp, addr + 3, &val8);
				*valp |= val8 << 24;
			}
		}
		return ret;

	default:
		assert (0);
	}
}

static int
chip_intel_82371AB_mw(
	void *_css,
	uint32_t addr,
	unsigned int bs,
	uint32_t val
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;
	unsigned long start;
	unsigned long end;
	int forward;
	uint8_t val8;
	uint16_t val16;
	int ret;

	forward = chip_intel_82371AB_get_forward(cpssp, addr, 1, &start, &end);

	switch(forward) {
	case IOAPIC:
		/* FIXME VOSSI */
		if (bs == 0xf) {
			ret = sig_cs_writel(cpssp->sig_n_apiccs, cpssp,
					val, (addr >> 4) & 1);
			assert(ret == 0);
			return 0;
		}
		return -1;

	case BIOS:
		addr &= 0x000fffff;

		if (! ((cpssp->xbcs >> 2) & 1)) {
			/* Write access disabled. */
			/* Don't generate BIOSCS# */
			/* 82371AB (PIIX4) page 58 */
			return 0;
		}

		if ((bs >> 0) & 1) {
			val8 = val >> 0;
			sig_cs_writeb(cpssp->sig_n_bioscs, cpssp, val8, addr + 0);
		}
		if ((bs >> 1) & 1) {
			val8 = val >> 8;
			sig_cs_writeb(cpssp->sig_n_bioscs, cpssp, val8, addr + 1);
		}
		if ((bs >> 2) & 1) {
			val8 = val >> 16;
			sig_cs_writeb(cpssp->sig_n_bioscs, cpssp, val8, addr + 2);
		}
		if ((bs >> 3) & 1) {
			val8 = val >> 24;
			sig_cs_writeb(cpssp->sig_n_bioscs, cpssp, val8, addr + 3);
		}
		return 0;

	case ISA:
		ret = -1;
		if ((0x000e0000UL <= addr && addr <= 0x000fffffUL) 
		 || (0xfff00000UL <= addr /* && addr <= 0xffffffffUL */)) {
			faum_log(FAUM_LOG_ERROR, "82371AB", "",
				"Writing to ISA-bus on region usually reserved for BIOS.\n");
		}
		if (((bs >> 0) & 3) == 3) {
			val16 = val >> 0;
			ret &= sig_isa_bus_writew(cpssp->sig_isa_bus, cpssp,
					addr + 0, val16);
		} else {
			if ((bs >> 0) & 1) {
				val8 = val >> 0;
				ret &= sig_isa_bus_writeb(cpssp->sig_isa_bus, cpssp,
						addr + 0, val8);
			}
			if ((bs >> 1) & 1) {
				val8 = val >> 8;
				ret &= sig_isa_bus_writeb(cpssp->sig_isa_bus, cpssp,
						addr + 1, val8);
			}
		}
		if (((bs >> 2) & 3) == 3) {
			val16 = val >> 16;
			ret &= sig_isa_bus_writew(cpssp->sig_isa_bus, cpssp,
					addr + 2, val16);
		} else {
			if ((bs >> 2) & 1) {
				val8 = val >> 16;
				ret &= sig_isa_bus_writeb(cpssp->sig_isa_bus, cpssp,
						addr + 2, val8);
			}
			if ((bs >> 3) & 1) {
				val8 = val >> 24;
				ret &= sig_isa_bus_writeb(cpssp->sig_isa_bus, cpssp,
						addr + 3, val8);
			}
		}
		return ret;

	default:
		assert (0);
	}
}

static int
chip_intel_82371AB_map_r(
	void *_css,
	unsigned long pa,
	char **haddr_p
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;
	unsigned long start;
	unsigned long end;
	/* Forward to what */
	int forward;
	char *haddr_mw;

	forward = chip_intel_82371AB_get_forward(cpssp, pa, 2, &start, &end);
	
	/* Forward access */
	switch (forward) {
	case IOAPIC:
		*haddr_p = NULL;
		return 0;
	case BIOS:
		/* BIOS */
		/* FIXME JOSEF: bios on isa bus or not ? */
		/* Forward to ISA 16MB MB Limit */
		pa &= 0x000fffff;
		if (sig_cs_map(cpssp->sig_n_bioscs, cpssp, pa,
					haddr_p, &haddr_mw) == 0) {
			return 0;
		}
		break;
	case ISA:
		/* ISA bus */
		if (sig_isa_bus_map(cpssp->sig_isa_bus, cpssp, pa,
					haddr_p, &haddr_mw) == 0) {
			return 0;
		}
		break;
	default:
		assert(0);
	}

	return 1;
}

static int
chip_intel_82371AB_map_w(
	void *_css,
	unsigned long pa,
	char **haddr_p
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;
	unsigned long start;
	unsigned long end;
	/* Forward to what */
	int forward;
	char *haddr_mr;

	forward = chip_intel_82371AB_get_forward(cpssp, pa, 2, &start, &end);
	
	/* Forward access */
	switch (forward) {
	case IOAPIC:
		*haddr_p = NULL;
		return 0;
	case BIOS:
		/* BIOS */
		/* FIXME JOSEF: bios on isa bus or not ? */
		/* Forward to ISA 16MB MB Limit */
		pa &= 0x000fffff;
		if (sig_cs_map(cpssp->sig_n_bioscs, cpssp, pa,
					&haddr_mr, haddr_p) == 0) {
			return 0;
		}
		break;
	case ISA:
		/* ISA bus */
		if (sig_isa_bus_map(cpssp->sig_isa_bus, cpssp, pa,
					&haddr_mr, haddr_p) == 0) {
			return 0;
		}
		break;
	default:
		assert(0);
	}

	return 1;
}

#if 0
static const unsigned char *
chip_intel_82371AB_ide_report(unsigned char addr)
{
	switch (addr) {
	case 0x00 ... 0x01: return ("Vendor ID"); /* read only */
	case 0x02 ... 0x03: return ("Device ID"); /* read only */
	case 0x04 ... 0x05: return ("PCI Command");
	case 0x06 ... 0x07: return ("PCI Device Status");
	case 0x08:          return ("Revision ID"); /* read only */
	case 0x09 ... 0x0B: return ("Class Code"); /* read only */
	case 0x0D:          return ("Master Latency Timing");
	case 0x0E:          return ("Header Type"); /* read only */
	case 0x10 ... 0x1F: return ("PCI Base Address (unused)");
	case 0x20 ... 0x23: return ("Bus Master Interface Base Address");
	case 0x24 ... 0x27: return ("PCI Base Address (unused)");
	case 0x30 ... 0x33: return ("PCI ROM Address (unused)");
	case 0x40 ... 0x41: return ("IDE Timing (Primary)");
	case 0x42 ... 0x43: return ("IDE Timing (Secondary)");
	case 0x44:          return ("Slave IDE Timing");
	case 0x48:          return ("Ultra DMA/33 Control");
	case 0x4A ... 0x4B: return ("Ultra DMA/33 Timing");
	case 0xFF:          return ("PCI Base Class Others (unused)");

	default:            return ("unknown");
	}
}
#endif

/* ----------------------------------------------------------------- */
/* PCI to ISA/EIO Bridge                                             */
/* ----------------------------------------------------------------- */

static void
_chip_intel_82371AB_cread(
	struct cpssp *cpssp,
	uint8_t addr,
	unsigned int bsel,
	uint32_t *valp
)
{
	assert(/* 0x00 <= addr && addr <= 0x100 && */ (addr & 0x3) == 0);
	assert(1 <= bsel && bsel <= 0xf);

	*valp = 0x00000000;

	switch (addr) {
	case 0x00:
		/* Vendor Identification Register */
		/* Page 53 */
		if ((bsel >> 0) & 1) {
			*valp |= 0x86 << 0;
		}
		if ((bsel >> 1) & 1) {
			*valp |= 0x80 << 8;
		}

		/* Device Identification Register */
		/* Page 53 */
		if ((bsel >> 2) & 1) {
			*valp |= 0x10 << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= 0x71 << 24;
		}
		break;

	case 0x04:
		/* PCI Command Register */
		/* Page 54 */
		if ((bsel >> 0) & 1) {
			*valp |= ((cpssp->pcicmd >> 0) & 0xff) << 0;
		}
		if ((bsel >> 1) & 1) {
			*valp |= ((cpssp->pcicmd >> 8) & 0xff) << 8;
		}

		/* PCI Device Status Register */
		/* Page 55 */
		if ((bsel >> 2) & 1) {
			*valp |= ((cpssp->pcists >> 0) & 0xff) << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= ((cpssp->pcists >> 8) & 0xff) << 24;
		}
		break;

	case 0x08:
		/* Revision Identification Register */
		/* Page 55 */
		if ((bsel >> 0) & 1) {
			*valp |= 0x02 << 0; /* FIXME */
		}

		/* Class Code Register */
		/* Page 56 */
		if ((bsel >> 1) & 1) {
			*valp |= 0x00 << 8;
		}
		if ((bsel >> 2) & 1) {
			*valp |= 0x01 << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= 0x06 << 24;
		}
		break;

	case 0x0c:
		/* Unused */
		/* Unused */

		/* Header Type Register */
		/* Page 56 */
		if ((bsel >> 2) & 1) {
			*valp |= 0x80 << 16;
		}

		/* Unused */
		break;

	case 0x10:
		/* PCI Base Address Register 0 */
		/* Unused */
		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x14:
		/* PCI Base Address Register 1 */
		/* Unused */
		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x18:
		/* PCI Base Address Register 2 */
		/* Unused */
		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x1c:
		/* PCI Base Address Register 3 */
		/* Unused */
		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x20:
		/* PCI Base Address Register 4 */
		/* Unused */
		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x24:
		/* PCI Base Address Register 5 */
		/* Unused */
		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x2c:
		/* Subsystem Vendor ID Register */
		/* Unused */
		/* Unused */

		/* Subsystem ID Register */
		/* Unused */
		/* Unused */
		break;

	case 0x30:
		/* PCI ROM Address Register */
		/* Unused */
		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x34:
		/* PCI Capability List Register */
		/* Unused */
		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x3c:
		/* PCI Interrupt Line Register */
		/* Unused */

		/* PCI Interrupt Pin Register */
		/* Unused */

		/* PCI Min Gnt Register */
		/* Unused */

		/* PCI Max Lat Register */
		/* Unused */
		break;

	case 0x4c:
		/* ISA I/O Recovery Timer Register */
		/* Page 56 */
		if ((bsel >> 0) & 1) {
			*valp |= cpssp->iort << 0;
		}

		/* Unused */

		/* X-Bus Chip Select Register */
		/* Page 57 */
		if ((bsel >> 2) & 1) {
			*valp |= ((cpssp->xbcs >> 0) & 0xff) << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= ((cpssp->xbcs >> 8) & 0xff) << 24;
		}
		break;

	case 0x60:
		/* PIRQx Route Control Registers. */
		/* Page 59 */
		if ((bsel >> 0) & 1) {
			*valp |= cpssp->pirqrca << 0;
		}
		if ((bsel >> 1) & 1) {
			*valp |= cpssp->pirqrcb << 8;
		}
		if ((bsel >> 2) & 1) {
			*valp |= cpssp->pirqrcc << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= cpssp->pirqrcd << 24;
		}
		break;

	case 0x64:
		/* Serial IRQ Control Register */
		/* Page 59 */
		if ((bsel >> 0) & 1) {
			*valp |= cpssp->serirqc << 0;
		}

		/* Unused */
		/* Unused */
		/* Unused */
		break;

	case 0x68:
		/* Unused */

		/* Top of Memory Register */
		/* Page 60 */
		if ((bsel >> 1) & 1) {
			*valp |= cpssp->tom << 8;
		}

		/* Miscellaneous Status Register */
		/* Page 61 */
		if ((bsel >> 2) & 1) {
			*valp |= ((cpssp->mstat >> 0) & 0xff) << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= ((cpssp->mstat >> 8) & 0xff) << 24;
		}
		break;

	case 0x74:
		/* Unused */
		/* Unused */

		/* Motherboard Device DMA Control Registers */
		/* Page 61 */
		if ((bsel >> 2) & 1) {
			*valp |= cpssp->mbdma0 << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= cpssp->mbdma1 << 24;
		}
		break;

	case 0x80:
		/* APIC Base Address Relocation Register */
		/* Page 62 */
		if ((bsel >> 0) & 1) {
			*valp |= cpssp->apicbase << 0;
		}

		/* Unused */

		/* Deterministic Latency Control Register */
		/* Page 62 */
		if ((bsel >> 2) & 1) {
			*valp |= cpssp->dlc << 16;
		}

		/* Unused */
		break;

	case 0x90:
		/* PCI DMA Configuration Register */
		/* Page 63 */
		if ((bsel >> 0) & 1) {
			*valp |= ((cpssp->pdmacfg >> 0) & 0xff) << 0;
		}
		if ((bsel >> 1) & 1) {
			*valp |= ((cpssp->pdmacfg >> 8) & 0xff) << 8;
		}

		/* Distributed DMA Slave Base Pointer Registers */
		/* Page 64 */
		if ((bsel >> 2) & 1) {
			*valp |= ((cpssp->ddmabp0 >> 0) & 0xff) << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= ((cpssp->ddmabp0 >> 8) & 0xff) << 24;
		}
		break;

	case 0x94:
		/* Distributed DMA Slave Base Pointer Registers */
		/* Page 64 */
		if ((bsel >> 0) & 1) {
			*valp |= ((cpssp->ddmabp1 >> 0) & 0xff) << 0;
		}
		if ((bsel >> 1) & 1) {
			*valp |= ((cpssp->ddmabp1 >> 8) & 0xff) << 8;
		}

		/* Unused */
		/* Unused */
		break;

	case 0xb0:
		/* General Configuration Register */
		/* Page 65 */
		if ((bsel >> 0) & 1) {
			*valp |= ((cpssp->gencfg >> 0) & 0xff) << 0;
		}
		if ((bsel >> 1) & 1) {
			*valp |= ((cpssp->gencfg >> 8) & 0xff) << 8;
		}
		if ((bsel >> 2) & 1) {
			*valp |= ((cpssp->gencfg >> 16) & 0xff) << 16;
		}
		if ((bsel >> 3) & 1) {
			*valp |= ((cpssp->gencfg >> 24) & 0xff) << 24;
		}
		break;

	case 0xcb:
		/* Unused */
		/* Unused */
		/* Unused */

		/* Real Time Clock Configuration */
		/* Page 67 */
		if ((bsel >> 3) & 1) {
			*valp |= cpssp->rtccfg << 24;
		}
		break;

	default:
		fprintf(stderr, "WARNING: 82371AB: Reading");
		if ((bsel >> 0) & 1) {
			fprintf(stderr, " 0x%02x", addr + 0);
			*valp |= 0 << 0;
		}
		if ((bsel >> 1) & 1) {
			fprintf(stderr, " 0x%02x", addr + 1);
			*valp |= 0 << 8;
		}
		if ((bsel >> 2) & 1) {
			fprintf(stderr, " 0x%02x", addr + 2);
			*valp |= 0 << 16;
		}
		if ((bsel >> 3) & 1) {
			fprintf(stderr, " 0x%02x", addr + 3);
			*valp |= 0 << 24;
		}
		fprintf(stderr, " (Returning 0)\n");
		break;
	}
}

static void
_chip_intel_82371AB_cwrite(
	struct cpssp *cpssp,
	uint8_t addr,
	unsigned int bsel,
	uint32_t val
)
{
	assert(/* 0x00 <= addr && addr < 0x100 && */ (addr & 0x3) == 0);
	assert(0x1 <= bsel && bsel <= 0xf);

	switch (addr) {
	case 0x00:
		/* Vendor Identification */
		/* Page 53 */
		/* Read-only */
		/* Read-only */

		/* Device Identification */
		/* Page 53 */
		/* Read-only */
		/* Read-only */
		break;

	case 0x04:
		/* PCI Command */
		/* Page 54 */
		/* Some bits are hardwired to '0'/'1'. */
		if ((bsel >> 0) & 1) {
			val &= ~(1 << 7);	/* Address and Data Stepping Enable */
			val &= ~(1 << 6);	/* Parity Error Detect Enable */
			val &= ~(1 << 5);	/* VGA Palette Snoop Enable */
			val &= ~(1 << 4);	/* Memory Write and Invalidate */
			val |=  (1 << 2);	/* Bus Master */
			val |=  (1 << 1);	/* Memory Access */
			val |=  (1 << 0);	/* I/O Space Access */
			cpssp->pcicmd &= ~(0xff << 0);
			cpssp->pcicmd |= ((val >> 0) & 0xff) << 0;
		}
		/* Some bits are hardwired to '0'. */
		if ((bsel >> 1) & 1) {
			val &= ~(1 << 15);	/* Reserved */
			val &= ~(1 << 14);	/* Reserved */
			val &= ~(1 << 13);	/* Reserved */
			val &= ~(1 << 12);	/* Reserved */
			val &= ~(1 << 11);	/* Reserved */
			val &= ~(1 << 10);	/* Reserved */
			val &= ~(1 <<  9);	/* Fast Back-to-Back Enable */
			cpssp->pcicmd &= ~(0xff << 8);
			cpssp->pcicmd |= ((val >> 8) & 0xff) << 8;
		}
		break;

		/* PCI Device Status Register */
		/* Page 55 */
		if ((bsel >> 2) & 1) {
			/* Bit 7 is read-only. */
			/* Bits 6-0 are reserved. */
		}
		if ((bsel >> 3) & 1) {
			/* Bit 15 is read-only. */
			if ((val >> (14+16)) & 1) {
				cpssp->pcists &= ~(1 << 14);
			}
			if ((val >> (13+16)) & 1) {
				cpssp->pcists &= ~(1 << 13);
			}
			if ((val >> (12+16)) & 1) {
				cpssp->pcists &= ~(1 << 12);
			}
			if ((val >> (11+16)) & 1) {
				cpssp->pcists &= ~(1 << 11);
			}
			/* Bits 10-9 are read-only. */
			/* Bit 8 is read-only. */
		}
		break;

	case 0x08:
		/* Revision Identification Register */
		/* Page 55 */
		if ((bsel >> 0) & 1) {
			/* Read-only */
		}

		/* Class Code Register */
		/* Page 56 */
		if ((bsel >> 1) & 1) {
			/* Read-only */
		}
		if ((bsel >> 2) & 1) {
			/* Read-only */
		}

		/* Header Type Register */
		/* Page 56 */
		if ((bsel >> 3) & 1) {
			/* Read-only */
		}
		break;

	case 0x4c:
		/* ISA I/O Recovery Timer. */
		/* Page 56 */
		if ((bsel >> 0) & 1) {
			cpssp->iort = (val >> 0) & 0xff;
		}

		if ((bsel >> 1) & 1) {
			/* Unused */
		}

		/* X-Bus Chip Select Register */
		/* Page 57 */

		/* FIXME: flushes required / sufficient? */

		if ((bsel >> 2) & 1) {
			unsigned int n_xbcs;

			n_xbcs = cpssp->xbcs & 0xc4;

			cpssp->xbcs &= ~(0xff << 0);
			cpssp->xbcs |= ((val >> 16) & 0xff) << 0;

			if (n_xbcs != (cpssp->xbcs & 0xc4)) {
				/* Flush ISA's BIOS area. */
				sig_pci_bus_unmap(cpssp->sig_pci_bus_main,
						cpssp, 0x000e0000, 0x20000);
				/* Flush PCI's BIOS area. */
				sig_pci_bus_unmap(cpssp->sig_pci_bus_main,
						cpssp, 0xfff00000, 0x100000);
			}
		}
		if ((bsel >> 3) & 1) {
			unsigned int n_xbcs;

			n_xbcs = (cpssp->xbcs >> 8) & 2;

			cpssp->xbcs &= ~(0xff << 8);
			cpssp->xbcs |= ((val >> 24) & 0xff) << 8;

			if(n_xbcs != ((cpssp->xbcs >> 8) & 2)) {
				/* Flush ISA's BIOS area. */
				sig_pci_bus_unmap(cpssp->sig_pci_bus_main,
						cpssp, 0x000e0000, 0x20000);
				/* Flush PCI's BIOS area. */
				sig_pci_bus_unmap(cpssp->sig_pci_bus_main,
						cpssp, 0xfff00000, 0x100000);
			}
		}
		break;

		/* PIRQx Route Control Registers */
		/* Page 59 */
	case 0x60:
		if ((bsel >> 0) & 1) {
			val &= 0x8f << 0;
			cpssp->pirqrca = (val >> 0) & 0xff;
		}
		if ((bsel >> 1) & 1) {
			val &= 0x8f << 8;
			cpssp->pirqrcb = (val >> 8) & 0xff;
		}
		if ((bsel >> 2) & 1) {
			val &= 0x8f << 16;
			cpssp->pirqrcc = (val >> 16) & 0xff;
		}
		if ((bsel >> 3) & 1) {
			val &= 0x8f << 24;
			cpssp->pirqrcd = (val >> 24) & 0xff;
		}
		break;

	case 0x64:
		/* Serial IRQ Control Register */
		/* Page 59 */
		if ((bsel >> 0) & 1) {
			cpssp->serirqc = (val >> 0) & 0xff;
		}

		if ((bsel >> 1) & 1) {
			/* Unused */
		}
		if ((bsel >> 2) & 1) {
			/* Unused */
		}
		if ((bsel >> 3) & 1) {
			/* Unused */
		}
		break;

	case 0x69:
		if ((bsel >> 0) & 1) {
			/* Unused */
		}

		/* Top of Memory Register */
		/* Page 60 */
		if ((bsel >> 1) & 1) {
			val &= ~((1 << 0) << 8); /* Reserved */
			cpssp->tom = (val >> 8) & 0xff;
		}

		/* Miscellaneous Status Register */
		/* Page 61 */
		if ((bsel >> 2) & 1) {
			if ((val >> (7 + 16)) & 1) {
				cpssp->mstat &= ~(1 << 7);
			}
		}
		if ((bsel >> 3) & 1) {
			if ((val >> (15 + 16)) & 1) {
				cpssp->mstat &= ~(1 << 15);
			}
		}
		break;

	case 0x76:
		if ((bsel >> 0) & 1) {
			/* Unused */
		}
		if ((bsel >> 1) & 1) {
			/* Unused */
		}
		
		/* Motherboard Device DMA Control Register */
		/* Page 61 */
		if ((bsel >> 2) & 1) {
			val &= 0x8f << 16; /* Masking "reserved" bits. */
			val |= 0x04 << 16; /* Hard-wired to '1' */
			cpssp->mbdma0 = (val >> 16) & 0xff;
		}
		if ((bsel >> 3) & 1) {
			val &= (0x8f << 24); /* Masking "reserved" bits. */
			val |= (0x04 << 24); /* Hard-wired to '1' */
			cpssp->mbdma1 = (val >> 24) & 0xff;
		}
		break;

	case 0x80:
		/* APIC Base Address Relocation Register */
		/* Page 62 */
		if ((bsel >> 0) & 1) {
			fprintf(stderr, "Setting apicbase to 0x%02x\n", val & 0xff);
			cpssp->apicbase = (val >> 0) & 0xff;
		}

		if ((bsel >> 1) & 1) {
			/* Unused */
		}

		/* Deterministic Latency Control */
		/* Page 62 */
		if ((bsel >> 2) & 1) {
			val &= 0x0f << 16; /* Masking "reserved" bits. */
			cpssp->dlc = (val >> 16) & 0xff;
		}

		if ((bsel >> 3) & 1) {
			/* Unused */
		}
		break;

	case 0x90:
		/* PCI DMA Configuration Register */
		/* Page 63 */
		if ((bsel >> 0) & 1) {
			cpssp->pdmacfg &= ~(0xff << 0);
			cpssp->pdmacfg |= ((val >> 0) & 0xff) << 0;
		}
		if ((bsel >> 1) & 1) {
			val &= 0xfc << 8; /* Masking "reserved" bits. */
			cpssp->pdmacfg &= ~(0xff << 8);
			cpssp->pdmacfg |= ((val >> 8) & 0xff) << 8;
		}

		/* Distributed DMA Slave Base Pointer Registers */
		/* Page 64 */
		if ((bsel >> 2) & 1) {
			val &= 0xc0 << 16; /* Masking "reserved" bits. */
			cpssp->ddmabp0 &= ~(0xff << 0);
			cpssp->ddmabp0 |= ((val >> 16) & 0xff) << 0;
		}
		if ((bsel >> 3) & 1) {
			cpssp->ddmabp0 &= ~(0xff << 8);
			cpssp->ddmabp0 |= ((val >> 24) & 0xff) << 8;
		}
		break;

	case 0x94:
		if ((bsel >> 0) & 1) {
			val &= 0xc0 << 0; /* Masking "reserved" bits. */
			cpssp->ddmabp1 &= ~(0xff << 0);
			cpssp->ddmabp1 |= ((val >> 0) & 0xff) << 0;
		}
		if ((bsel >> 1) & 1) {
			cpssp->ddmabp1 &= ~(0xff << 8);
			cpssp->ddmabp1 |= ((val >> 8) & 0xff) << 8;
		}

		if ((bsel >> 2) & 1) {
			/* Unused */
		}
		if ((bsel >> 3) & 1) {
			/* Unused */
		}
		break;

	case 0xb0:
		/* General Configuration Register */
		/* Page 65 */
		if ((bsel >> 0) & 1) {
			val &= 0x7f << 0; /* Masking "reserved" bits. */
			cpssp->gencfg &= ~(0xff << 0);
			cpssp->gencfg |= ((val >> 0) & 0xff) << 0;
		}
		if ((bsel >> 1) & 1) {
			val &= 0xdf << 8; /* Masking "reserved" bits. */
			cpssp->gencfg &= ~(0xff << 8);
			cpssp->gencfg |= ((val >> 8) & 0xff) << 8;
		}
		if ((bsel >> 2) & 1) {
			cpssp->gencfg &= ~(0xff << 16);
			cpssp->gencfg |= ((val >> 16) & 0xff) << 16;
		}
		if ((bsel >> 3) & 1) {
			val &= 0xfb << 24; /* Masking "reserved" bits. */
			cpssp->gencfg &= ~(0xff << 24);
			cpssp->gencfg |= ((val >> 24) & 0xff) << 24;
		}
		break;

	case 0xc8:
		if ((bsel >> 0) & 1) {
			/* Unused */
		}
		if ((bsel >> 1) & 1) {
			/* Unused */
		}
		if ((bsel >> 2) & 1) {
			/* Unused */
		}

		/* Real Time Clock Configuration */
		/* Page 67 */
		if ((bsel >> 3) & 1) {
			val &= ~(1 << (7 + 24));	/* Reserved */
			val &= ~(1 << (6 + 24));	/* Reserved */
			cpssp->rtccfg = (val >> 24) & 0xff;
		}
		break;

	default:
		if (addr < 0x40) {
			/*
			 * Writing to reserved config space registers
			 * *below* 0x40 is allowed. Value written is
			 * discarded.
			 */
			/* Nothing to do... */

		} else {
			/*
			 * Writing to reserved config space registers
			 * *above* 0x3f is *not* allowed. Programming error.
			 */
			faum_log(FAUM_LOG_WARNING, "82371AB (PCI to ISA/EIO)", "",
					"Writing 0x%02x to reserved register 0x%02x.\n",
					val, addr);
		}
		break;
	};
}

/* ----------------------------------------------------------------- */
/* Dispatcher                                                        */
/* ----------------------------------------------------------------- */

static void
chip_intel_82371AB_a20gate_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	cpssp->state_a20gate = val;

	chip_intel_82371AB_a20m_update(cpssp);
}

static int
chip_intel_82371AB_c0r(
	void *_css,
	uint32_t addr,
	unsigned int bsel,
	uint32_t *valp
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	switch ((addr >> 8) & 7) {
	case 0:
		_chip_intel_82371AB_cread(cpssp, addr & 0xfc, bsel, valp);
		return 0;
	case 1:
		ide_cread(cpssp, addr & 0xfc, bsel, valp);
		return 0;
	case 2:
		usb_controller_cread(cpssp, addr & 0xfc, bsel, valp);
		return 0;
	case 3:
		power_cread(cpssp, addr & 0xfc, bsel, valp);
		return 0;
	default:
		return -1;
	}
}

static int
chip_intel_82371AB_c0w(
	void *_css,
	uint32_t addr,
	unsigned int bsel,
	uint32_t val
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	switch ((addr >> 8) & 7) {
	case 0:
		_chip_intel_82371AB_cwrite(cpssp, addr & 0xfc, bsel, val);
		return 0;
	case 1:
		ide_cwrite(cpssp, addr & 0xfc, bsel, val);
		return 0;
	case 2:
		usb_controller_cwrite(cpssp, addr & 0xfc, bsel, val);
		return 0;
	case 3:
		power_cwrite(cpssp, addr & 0xfc, bsel, val);
		return 0;
	default:
		return -1;
	}
}

static int
chip_intel_82371AB_bios_unmap(
	void *_cpssp,
	unsigned long pa,
	unsigned long len
)
{
	struct cpssp *cpssp = _cpssp;

	/* Flush ISA's BIOS area. */
	sig_pci_bus_unmap(cpssp->sig_pci_bus_main,
			cpssp, 0x000e0000, 0x20000);
	/* Flush PCI's BIOS area. */
	sig_pci_bus_unmap(cpssp->sig_pci_bus_main,
			cpssp, 0xfff00000, 0x100000);

	return 0;
}

static int
chip_intel_82371AB_inta_addr(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic0_inta_begin(cpssp, &cpssp->state_inta);
	pic1_inta_begin(cpssp, &cpssp->state_inta);

	return 0;
}

static int
chip_intel_82371AB_inta_data(void *_css, uint8_t *valp)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_inta_end(cpssp);
	pic0_inta_end(cpssp);

	*valp = cpssp->state_inta;

	return 0;
}

static void
chip_intel_82371AB_pci_bus_intA_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if ((cpssp->pirqrca >> 7) & 1) {
		/* IRQ Routing for this line disabled. */
		return;
	}

	sig_boolean_or_set(cpssp->isa_bus_int[cpssp->pirqrca & 0xf], cpssp, val);
}

static void
chip_intel_82371AB_pci_bus_intB_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if ((cpssp->pirqrcb >> 7) & 1) {
		/* IRQ Routing for this line disabled. */
		return;
	}

	sig_boolean_or_set(cpssp->isa_bus_int[cpssp->pirqrcb & 0xf], cpssp, val);
}

static void
chip_intel_82371AB_pci_bus_intC_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if ((cpssp->pirqrcc >> 7) & 1) {
		/* IRQ Routing for this line disabled. */
		return;
	}

	sig_boolean_or_set(cpssp->isa_bus_int[cpssp->pirqrcc & 0xf], cpssp, val);
}

static void
chip_intel_82371AB_pci_bus_intD_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	if ((cpssp->pirqrcd >> 7) & 1) {
		/* IRQ Routing for this line disabled. */
		return;
	}

	sig_boolean_or_set(cpssp->isa_bus_int[cpssp->pirqrcd & 0xf], cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int0_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic0_isa_bus_int0_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int1_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic0_isa_bus_int1_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int3_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic0_isa_bus_int3_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int4_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic0_isa_bus_int4_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int5_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic0_isa_bus_int5_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int6_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic0_isa_bus_int6_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int7_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic0_isa_bus_int7_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int8_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_isa_bus_int0_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_int9_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_isa_bus_int1_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_intA_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_isa_bus_int2_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_intB_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_isa_bus_int3_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_intC_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_isa_bus_int4_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_intD_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_isa_bus_int5_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_intE_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_isa_bus_int6_set(cpssp, val);
}

static void
chip_intel_82371AB_isa_bus_intF_set(void *_css, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	pic1_isa_bus_int7_set(cpssp, val);
}

static int
chip_intel_82371AB_isa_bus_dma0_req(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	dma0_req(cpssp, 0);

	return 0;
}

static int
chip_intel_82371AB_isa_bus_dma1_req(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	dma0_req(cpssp, 1);

	return 0;
}

static int
chip_intel_82371AB_isa_bus_dma2_req(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	dma0_req(cpssp, 2);

	return 0;
}

static int
chip_intel_82371AB_isa_bus_dma3_req(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	dma0_req(cpssp, 3);

	return 0;
}

static int
chip_intel_82371AB_isa_bus_dma5_req(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	dma1_req(cpssp, 1);

	return 0;
}

static int
chip_intel_82371AB_isa_bus_dma6_req(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	dma1_req(cpssp, 2);

	return 0;
}

static int
chip_intel_82371AB_isa_bus_dma7_req(void *_css)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	dma1_req(cpssp, 3);

	return 0;
}

static __attribute__((__noreturn__)) void
chip_intel_82371AB_usb0_reset_set(
	void *_css,
	int val
)
{
	assert(0);
}

static void
chip_intel_82371AB_usb0_speed_set(
	void *_css,
	int val
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb0_speed_set(cpssp, val);
}

static void
chip_intel_82371AB_usb0_recv_token(void *_css, int pid, int addr, int endp)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb0_recv_token(cpssp, pid, addr, endp);
}

static void
chip_intel_82371AB_usb0_recv_sof(
	void *_css,
	int frame_num
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb0_recv_sof(cpssp, frame_num);
}

static void
chip_intel_82371AB_usb0_recv_data(
	void *_css,
	int pid,
	unsigned int length,
	uint8_t *data,
	uint16_t crc16
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb0_recv_data(cpssp, pid, length, data, crc16);
}

static void
chip_intel_82371AB_usb0_recv_handshake(void *_css, int pid)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb0_recv_handshake(cpssp, pid);
}

static __attribute__((__noreturn__)) void
chip_intel_82371AB_usb1_reset_set(
	void *_css,
	int val
)
{
	assert(0);
}

static void
chip_intel_82371AB_usb1_speed_set(
	void *_css,
	int val
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb1_speed_set(cpssp, val);
}

static void
chip_intel_82371AB_usb1_recv_token(void *_css, int pid, int addr, int endp)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb1_recv_token(cpssp, pid, addr, endp);
}

static void
chip_intel_82371AB_usb1_recv_sof(
	void *_css,
	int frame_num
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb1_recv_sof(cpssp, frame_num);
}

static void
chip_intel_82371AB_usb1_recv_data(
	void *_css,
	int pid,
	unsigned int length,
	uint8_t *data,
	uint16_t crc16
)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb1_recv_data(cpssp, pid, length, data, crc16);
}

static void
chip_intel_82371AB_usb1_recv_handshake(void *_css, int pid)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	usb_controller_usb1_recv_handshake(cpssp, pid);
}

static void
chip_intel_82371AB_n_pwrbtn_set(void *_css, unsigned int n_val)
{
	struct cpssp *cpssp = (struct cpssp *) _css;

	switch (n_val) {
	case SIG_STD_LOGIC_0: n_val = 0; break;
	case SIG_STD_LOGIC_H: n_val = 1; break;
	default: return; /* Might happen during startup. */
	}

	power_n_button_set(cpssp, n_val);
}

void *
chip_intel_82371AB_create(
	const char *name,
	const char *rtc_start,
	struct sig_manage *port_manage,
	struct sig_pci_bus_main *port_pci_bus,
	struct sig_pci_bus_idsel *port_idsel,
	struct sig_boolean *port_pcirst_hash_,
	struct sig_isa_bus_main *port_isa_bus,
	struct sig_boolean *port_rstdrv_hash_,
	struct sig_boolean *port_a20gate,
	struct sig_cs *port_n_bios_cs,
	struct sig_cs *port_n_kbccs,
	struct sig_boolean *port_kbc_reset_hash_,
	struct sig_isa_bus_dma *port_dma0,
	struct sig_isa_bus_dma *port_dma1,
	struct sig_isa_bus_dma *port_dma2,
	struct sig_isa_bus_dma *port_dma3,
	struct sig_isa_bus_dma *port_dma5,
	struct sig_isa_bus_dma *port_dma6,
	struct sig_isa_bus_dma *port_dma7,
	struct sig_cs *port_ioapic_cs,
	struct sig_boolean_or *port_irq0,
	struct sig_boolean_or *port_irq1,
	struct sig_boolean_or *port_irq3,
	struct sig_boolean_or *port_irq4,
	struct sig_boolean_or *port_irq5,
	struct sig_boolean_or *port_irq6,
	struct sig_boolean_or *port_irq7,
	struct sig_boolean_or *port_irq8,
	struct sig_boolean_or *port_irq9,
	struct sig_boolean_or *port_irq10,
	struct sig_boolean_or *port_irq11,
	struct sig_boolean_or *port_irq12,
	struct sig_boolean_or *port_irq13,
	struct sig_boolean_or *port_irq14,
	struct sig_boolean_or *port_irq15,
	struct sig_boolean_or *port_pirqA_hash_,
	struct sig_boolean_or *port_pirqB_hash_,
	struct sig_boolean_or *port_pirqC_hash_,
	struct sig_boolean_or *port_pirqD_hash_,
	struct sig_boolean *port_a20m,
	struct sig_boolean *port_cpurst_hash_,
	struct sig_boolean *port_init_hash_,
	struct sig_boolean_or *port_ferr_hash_,
	struct sig_boolean *port_ignne_hash_,
	struct sig_boolean_or *port_intr,
	struct sig_boolean_or *port_nmi,
	struct sig_boolean *port_smi,
	struct sig_ide_bus *port_ide0,
	struct sig_ide_bus *port_ide1,
	struct sig_usb_bus_main *port_usb0,
	struct sig_usb_bus_main *port_usb1,
	struct sig_std_logic *port_power_btn_hash_,
	struct sig_std_logic *port_reset_btn_hash_,
	struct sig_i2c_bus *port_i2cbus,
	struct sig_boolean *port_n_susa,
	struct sig_boolean *port_n_susb,
	struct sig_std_logic *port_n_susc,
	struct sig_boolean *port_pwr_ok,
	struct sig_sound *port_spkr,
	struct sig_boolean *port_vcc,
	struct sig_boolean *port_vcc_rtc,
	struct sig_boolean *port_vcc_sus,
	struct sig_boolean *port_vcc_usb,
	struct sig_boolean *port_vref,

	/* FIXME */
	struct sig_boolean *port_ide_busy
)
{
	static const struct sig_pci_bus_main_funcs pci_bus_funcs = {
		.ior_info =	chip_intel_82371AB_ior_info,
		.iow_info =	chip_intel_82371AB_iow_info,
		.ior =		chip_intel_82371AB_ior,
		.iow =		chip_intel_82371AB_iow,

		.mr =		chip_intel_82371AB_mr,
		.mw =		chip_intel_82371AB_mw,
		.map_r =	chip_intel_82371AB_map_r,
		.map_w =	chip_intel_82371AB_map_w,

		.inta_addr =	chip_intel_82371AB_inta_addr,
		.inta_data =	chip_intel_82371AB_inta_data,
	};
	static const struct sig_pci_bus_idsel_funcs idsel_funcs = {
		.c0r =		chip_intel_82371AB_c0r,
		.c0w =		chip_intel_82371AB_c0w,
	};
	static const struct sig_cs_funcs n_bios_cs_funcs = {
		.unmap =	chip_intel_82371AB_bios_unmap,
	};
	static const struct sig_boolean_funcs a20gate_funcs = {
		.set = chip_intel_82371AB_a20gate_set,
	};
	static const struct sig_boolean_funcs kbc_reset_hash__funcs = {
		.set =	chip_intel_82371AB_rcin_set,
	};
	static const struct sig_isa_bus_dma_funcs dma0_funcs = {
		.req = chip_intel_82371AB_isa_bus_dma0_req,
	};
	static const struct sig_isa_bus_dma_funcs dma1_funcs = {
		.req = chip_intel_82371AB_isa_bus_dma1_req,
	};
	static const struct sig_isa_bus_dma_funcs dma2_funcs = {
		.req = chip_intel_82371AB_isa_bus_dma2_req,
	};
	static const struct sig_isa_bus_dma_funcs dma3_funcs = {
		.req = chip_intel_82371AB_isa_bus_dma3_req,
	};
	static const struct sig_isa_bus_dma_funcs dma5_funcs = {
		.req = chip_intel_82371AB_isa_bus_dma5_req,
	};
	static const struct sig_isa_bus_dma_funcs dma6_funcs = {
		.req = chip_intel_82371AB_isa_bus_dma6_req,
	};
	static const struct sig_isa_bus_dma_funcs dma7_funcs = {
		.req = chip_intel_82371AB_isa_bus_dma7_req,
	};
	static const struct sig_boolean_or_funcs irq0_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int0_set,
	};
	static const struct sig_boolean_or_funcs irq1_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int1_set,
	};
	static const struct sig_boolean_or_funcs irq3_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int3_set,
	};
	static const struct sig_boolean_or_funcs irq4_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int4_set,
	};
	static const struct sig_boolean_or_funcs irq5_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int5_set,
	};
	static const struct sig_boolean_or_funcs irq6_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int6_set,
	};
	static const struct sig_boolean_or_funcs irq7_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int7_set,
	};
	static const struct sig_boolean_or_funcs irq8_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int8_set,
	};
	static const struct sig_boolean_or_funcs irq9_funcs = {
		.set =	chip_intel_82371AB_isa_bus_int9_set,
	};
	static const struct sig_boolean_or_funcs irq10_funcs = {
		.set =	chip_intel_82371AB_isa_bus_intA_set,
	};
	static const struct sig_boolean_or_funcs irq11_funcs = {
		.set =	chip_intel_82371AB_isa_bus_intB_set,
	};
	static const struct sig_boolean_or_funcs irq12_funcs = {
		.set =	chip_intel_82371AB_isa_bus_intC_set,
	};
	static const struct sig_boolean_or_funcs irq13_funcs = {
		.set =	chip_intel_82371AB_isa_bus_intD_set,
	};
	static const struct sig_boolean_or_funcs irq14_funcs = {
		.set =	chip_intel_82371AB_isa_bus_intE_set,
	};
	static const struct sig_boolean_or_funcs irq15_funcs = {
		.set =	chip_intel_82371AB_isa_bus_intF_set,
	};
	static const struct sig_boolean_or_funcs pirqA_hash__funcs = {
		.set =	chip_intel_82371AB_pci_bus_intA_set,
	};
	static const struct sig_boolean_or_funcs pirqB_hash__funcs = {
		.set =	chip_intel_82371AB_pci_bus_intB_set,
	};
	static const struct sig_boolean_or_funcs pirqC_hash__funcs = {
		.set =	chip_intel_82371AB_pci_bus_intC_set,
	};
	static const struct sig_boolean_or_funcs pirqD_hash__funcs = {
		.set =	chip_intel_82371AB_pci_bus_intD_set,
	};
	static const struct sig_boolean_or_funcs ferr_hash__funcs = {
		.set =	chip_intel_82371AB_n_ferr_set,
	};
	static const struct sig_ide_bus_controller_funcs ide0_funcs = {
		.irq = ide0_irqrq_in_set,
		.dmarq_set = ide0_dmarq_set,
	};
	static const struct sig_ide_bus_controller_funcs ide1_funcs = {
		.irq = ide1_irqrq_in_set,
		.dmarq_set = ide1_dmarq_set,
	};
	static const struct sig_usb_bus_main_funcs usb0_funcs = {
		.reset_set = chip_intel_82371AB_usb0_reset_set,
		.speed_set = chip_intel_82371AB_usb0_speed_set,
		.recv_token = chip_intel_82371AB_usb0_recv_token,
		.recv_sof = chip_intel_82371AB_usb0_recv_sof,
		.recv_data = chip_intel_82371AB_usb0_recv_data,
		.recv_handshake = chip_intel_82371AB_usb0_recv_handshake,
	};
	static const struct sig_usb_bus_main_funcs usb1_funcs = {
		.reset_set = chip_intel_82371AB_usb1_reset_set,
		.speed_set = chip_intel_82371AB_usb1_speed_set,
		.recv_token = chip_intel_82371AB_usb1_recv_token,
		.recv_sof = chip_intel_82371AB_usb1_recv_sof,
		.recv_data = chip_intel_82371AB_usb1_recv_data,
		.recv_handshake = chip_intel_82371AB_usb1_recv_handshake,
	};
	static const struct sig_std_logic_funcs power_btn_hash__funcs = {
		.set = chip_intel_82371AB_n_pwrbtn_set,
	};
	static const struct sig_std_logic_funcs reset_btn_hash__funcs = {
		.set =	chip_intel_82371AB_n_rsmrst_set,
	};
	static const struct sig_i2c_bus_funcs i2cbus_funcs = {
		/* only acts as i2c master, not interested in begin called back */
		.read_byte = NULL,
	};
	static const struct sig_boolean_funcs pwr_ok_funcs = {
		.set =	chip_intel_82371AB_pwrok_set,
	};
	static const struct sig_boolean_funcs vcc_funcs = {
		.set =	chip_intel_82371AB_vcc_set,
	};
#if 0 /* FIXME */
	static const struct sig_boolean_funcs vcc_rtc_funcs = {
		/* FIXME */
	};
#endif
	static const struct sig_boolean_funcs vcc_sus_funcs = {
		.set =	chip_intel_82371AB_vcc_sus_set,
	};
	struct cpssp *cpssp;

	cpssp = malloc(sizeof(*cpssp));
	assert(cpssp);

	system_name_push(name);

	cpssp->speaker_period = (unsigned long long) -1;

	pic0_init(cpssp);
	pic1_init(cpssp);
	pit_init(cpssp);
	ppi_init(cpssp);
	dma0_init(cpssp);
	dma1_init(cpssp);
	ide_init(cpssp);
	usb_controller_create(cpssp, "(82371AB)", PCI_INT_D);
	usb_controller_init(cpssp);
	power_init(cpssp);
	rtc_create(cpssp, "rtc", rtc_start);
	rtc_init(cpssp);

	/* Call */
	cpssp->sig_pci_bus_main = port_pci_bus;
	sig_pci_bus_main_connect(port_pci_bus, cpssp, &pci_bus_funcs);

	sig_pci_bus_idsel_connect(port_idsel, cpssp, &idsel_funcs);

	cpssp->sig_isa_bus = port_isa_bus;

	cpssp->sig_n_bioscs = port_n_bios_cs;
	sig_cs_connect(port_n_bios_cs, cpssp, &n_bios_cs_funcs);

	cpssp->sig_n_kbccs = port_n_kbccs;

	cpssp->sig_isa_bus_dma[0x0] = port_dma0;
	sig_isa_bus_dma_connect(port_dma0, cpssp, &dma0_funcs);

	cpssp->sig_isa_bus_dma[0x1] = port_dma1;
	sig_isa_bus_dma_connect(port_dma1, cpssp, &dma1_funcs);

	cpssp->sig_isa_bus_dma[0x2] = port_dma2;
	sig_isa_bus_dma_connect(port_dma2, cpssp, &dma2_funcs);

	cpssp->sig_isa_bus_dma[0x3] = port_dma3;
	sig_isa_bus_dma_connect(port_dma3, cpssp, &dma3_funcs);

	cpssp->sig_isa_bus_dma[0x4] = (void *) 0;

	cpssp->sig_isa_bus_dma[0x5] = port_dma5;
	sig_isa_bus_dma_connect(port_dma5, cpssp, &dma5_funcs);

	cpssp->sig_isa_bus_dma[0x6] = port_dma6;
	sig_isa_bus_dma_connect(port_dma6, cpssp, &dma6_funcs);

	cpssp->sig_isa_bus_dma[0x7] = port_dma7;
	sig_isa_bus_dma_connect(port_dma7, cpssp, &dma7_funcs);

	cpssp->sig_n_apiccs = port_ioapic_cs;

	cpssp->sig_ide[0] = port_ide0;
	sig_ide_bus_connect_controller(port_ide0, cpssp, &ide0_funcs);

	cpssp->sig_ide[1] = port_ide1;
	sig_ide_bus_connect_controller(port_ide1, cpssp, &ide1_funcs);

	cpssp->sig_usb[0] = port_usb0;
	sig_usb_bus_main_connect(port_usb0, cpssp, &usb0_funcs);

	cpssp->sig_usb[1] = port_usb1;
	sig_usb_bus_main_connect(port_usb1, cpssp, &usb1_funcs);

	cpssp->sig_i2cbus = port_i2cbus;
	sig_i2c_bus_connect_cooked(port_i2cbus, cpssp, &i2cbus_funcs);

	/* Out */
	cpssp->sig_n_pcirst = port_pcirst_hash_;
	sig_boolean_connect_out(port_pcirst_hash_, cpssp, 0);

	cpssp->sig_n_rstdrv = port_rstdrv_hash_;
	sig_boolean_connect_out(port_rstdrv_hash_, cpssp, 0);

	cpssp->isa_bus_int[0x0] = port_irq0;
	sig_boolean_or_connect_out(port_irq0, cpssp, 0);

	cpssp->isa_bus_int[0x1] = port_irq1;
	sig_boolean_or_connect_out(port_irq1, cpssp, 0);

	cpssp->isa_bus_int[0x3] = port_irq3;
	sig_boolean_or_connect_out(port_irq3, cpssp, 0);

	cpssp->isa_bus_int[0x4] = port_irq4;
	sig_boolean_or_connect_out(port_irq4, cpssp, 0);

	cpssp->isa_bus_int[0x5] = port_irq5;
	sig_boolean_or_connect_out(port_irq5, cpssp, 0);

	cpssp->isa_bus_int[0x6] = port_irq6;
	sig_boolean_or_connect_out(port_irq6, cpssp, 0);

	cpssp->isa_bus_int[0x7] = port_irq7;
	sig_boolean_or_connect_out(port_irq7, cpssp, 0);

	cpssp->isa_bus_int[0x8] = port_irq8;
	sig_boolean_or_connect_out(port_irq8, cpssp, 0);

	cpssp->isa_bus_int[0x9] = port_irq9;
	sig_boolean_or_connect_out(port_irq9, cpssp, 0);

	cpssp->isa_bus_int[0xA] = port_irq10;
	sig_boolean_or_connect_out(port_irq10, cpssp, 0);

	cpssp->isa_bus_int[0xB] = port_irq11;
	sig_boolean_or_connect_out(port_irq11, cpssp, 0);

	cpssp->isa_bus_int[0xC] = port_irq12;
	sig_boolean_or_connect_out(port_irq12, cpssp, 0);

	cpssp->isa_bus_int[0xD] = port_irq13;
	sig_boolean_or_connect_out(port_irq13, cpssp, 0);

	cpssp->isa_bus_int[0xE] = port_irq14;
	sig_boolean_or_connect_out(port_irq14, cpssp, 0);

	cpssp->isa_bus_int[0xF] = port_irq15;
	sig_boolean_or_connect_out(port_irq15, cpssp, 0);

	cpssp->pci_bus_int[3] = port_pirqD_hash_;
	sig_boolean_or_connect_out(port_pirqD_hash_, cpssp, 0);

	cpssp->sig_a20m = port_a20m;
	sig_boolean_connect_out(port_a20m, cpssp, 0);

	cpssp->sig_n_cpurst = port_cpurst_hash_;
	sig_boolean_connect_out(port_cpurst_hash_, cpssp, 0);

	cpssp->sig_n_init = port_init_hash_;
	sig_boolean_connect_out(port_init_hash_, cpssp, 0);

	cpssp->sig_n_ignne = port_ignne_hash_;
	sig_boolean_connect_out(port_ignne_hash_, cpssp, 0);

	cpssp->sig_intr = port_intr;
	sig_boolean_or_connect_out(port_intr, cpssp, 0);

	cpssp->sig_nmi = port_nmi;
	sig_boolean_or_connect_out(port_nmi, cpssp, 0);

	cpssp->sig_smi = port_smi;
	sig_boolean_connect_out(port_smi, cpssp, 0);

	cpssp->sig_n_susa = port_n_susa;

	cpssp->sig_n_susb = port_n_susb;

	cpssp->sig_n_susc = port_n_susc;
	sig_std_logic_connect_out(port_n_susc, cpssp, SIG_STD_LOGIC_Z);

	cpssp->sig_spkr = port_spkr;

	cpssp->sig_ide_busy = port_ide_busy;
	sig_boolean_connect_out(port_ide_busy, cpssp, 0);

	/* In */
	cpssp->sig_a20gate = port_a20gate;
	sig_boolean_connect_in(port_a20gate, cpssp, &a20gate_funcs);

	cpssp->sig_n_rcin = port_kbc_reset_hash_;
	sig_boolean_connect_in(port_kbc_reset_hash_, cpssp, &kbc_reset_hash__funcs);

	sig_boolean_or_connect_in(port_irq0, cpssp, &irq0_funcs);

	sig_boolean_or_connect_in(port_irq1, cpssp, &irq1_funcs);

	sig_boolean_or_connect_in(port_irq3, cpssp, &irq3_funcs);

	sig_boolean_or_connect_in(port_irq4, cpssp, &irq4_funcs);

	sig_boolean_or_connect_in(port_irq5, cpssp, &irq5_funcs);

	sig_boolean_or_connect_in(port_irq6, cpssp, &irq6_funcs);

	sig_boolean_or_connect_in(port_irq7, cpssp, &irq7_funcs);

	sig_boolean_or_connect_in(port_irq8, cpssp, &irq8_funcs);

	sig_boolean_or_connect_in(port_irq9, cpssp, &irq9_funcs);

	sig_boolean_or_connect_in(port_irq10, cpssp, &irq10_funcs);

	sig_boolean_or_connect_in(port_irq11, cpssp, &irq11_funcs);

	sig_boolean_or_connect_in(port_irq12, cpssp, &irq12_funcs);

	sig_boolean_or_connect_in(port_irq13, cpssp, &irq13_funcs);

	sig_boolean_or_connect_in(port_irq14, cpssp, &irq14_funcs);

	sig_boolean_or_connect_in(port_irq15, cpssp, &irq15_funcs);

	cpssp->pci_bus_int[0] = port_pirqA_hash_;
	sig_boolean_or_connect_in(port_pirqA_hash_, cpssp, &pirqA_hash__funcs);

	cpssp->pci_bus_int[1] = port_pirqB_hash_;
	sig_boolean_or_connect_in(port_pirqB_hash_, cpssp, &pirqB_hash__funcs);

	cpssp->pci_bus_int[2] = port_pirqC_hash_;
	sig_boolean_or_connect_in(port_pirqC_hash_, cpssp, &pirqC_hash__funcs);

	sig_boolean_or_connect_in(port_pirqD_hash_, cpssp, &pirqD_hash__funcs);

	cpssp->sig_n_ferr = port_ferr_hash_;
	sig_boolean_or_connect_in(port_ferr_hash_, cpssp, &ferr_hash__funcs);

	cpssp->sig_n_pwrbtn = port_power_btn_hash_;
	sig_std_logic_connect_in(port_power_btn_hash_, cpssp, &power_btn_hash__funcs);

	cpssp->sig_n_rsmrst = port_reset_btn_hash_;
	sig_std_logic_connect_in(port_reset_btn_hash_, cpssp, &reset_btn_hash__funcs);

	cpssp->sig_pwrok = port_pwr_ok;
	sig_boolean_connect_in(port_pwr_ok, cpssp, &pwr_ok_funcs);

	cpssp->sig_vcc = port_vcc;
	sig_boolean_connect_in(port_vcc, cpssp, &vcc_funcs);

	cpssp->sig_vcc_rtc = port_vcc_rtc;
#if 0	/* FIXME */
	sig_boolean_connect_in(port_vcc_rtc, cpssp, &vcc_rtc_funcs);
#endif

	cpssp->sig_vcc_sus = port_vcc_sus;
	sig_boolean_connect_in(port_vcc_sus, cpssp, &vcc_sus_funcs);

	cpssp->sig_vcc_usb = port_vcc_usb;

	cpssp->sig_vref = port_vref;

	system_name_pop();

	return cpssp;
}

void
chip_intel_82371AB_destroy(void *_cpssp)
{
	struct cpssp *cpssp = _cpssp;

	rtc_destroy(cpssp);
	usb_controller_destroy(cpssp);

	free(cpssp);
}