summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halraw/alpha/rwintbal.c
blob: f32f533b1e9729bb9c40650d7f35811ac47c5dcb (plain) (blame)
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
/*++

Copyright (c) 1990  Microsoft Corporation
Copyright (c) 1992, 1993  Digital Equipment Corporation

Module Name:

    rwintbal.c

Abstract:

    The module provides support for distributing interrupt load among
    processors for Rawhide systems.

Author:

    Matthew Buchman (DEC) 29-November-1995

Revision History:

--*/


#include "halp.h"
#include "pci.h"
#include "pcip.h"
#include "rawhide.h"
#include "pcrtc.h"

//
// The enable mask for all interrupts sourced from the IOD (all device
// interrupts, and all from PCI).  A "1" indicates the interrupt is enabled.
//

extern PULONG *HalpIodInterruptMask;

//
// Declare IOD and CPU affinity tables
//

LIST_ENTRY HalpIodVectorDataHead;
LIST_ENTRY HalpCpuVectorDataHead;

PIOD_VECTOR_DATA HalpIodVectorData;
PCPU_VECTOR_DATA HalpCpuVectorData;


//
// The number of target CPUS, mainly for performance comparison of
// one processor vs. distributed interrupt load
//

#if 1
ULONG HalpNumberOfTargetCpus = IOD_MAX_INT_TARG;
#else
ULONG HalpNumberOfTargetCpus = 1;
#endif



PVOID
HalpFindWeightedEntry(
    PLIST_ENTRY ListHead,
    WEIGHTED_SEARCH_CRITERIA SearchCriteria
    )
/*++

Routine Description:

    This routine searches a WEIGHTED list searching for the maximum  
    or minimum weight, depending on the SearchCriteria.  A WEIGHTED 
    list entry overlays the generic LIST_ENTRY provided by NT.  This 
    allows us to use the generic LIST_ENTRY routines for list 
    manipulation.  To treat this as an ordered list, we must traverse 
    this list by hand to find the maximum element.

    The entry matching the search criteria is removed from the list
    as a side effect.
    
Arguments:

    ListHead - a pointer the list head.

    SearchCriteria - either FindMaxEntry or FindMinEntry

Return Value:

    Return a pointer to the maximum element or NULL for
    an empty list.

--*/
{
    PLIST_ENTRY NextEntry;
    PLIST_ENTRY CurrentMaxMinEntry;
    PWEIGHTED_LIST_ENTRY WeightedEntry;
    LONG CurrentMaxMinWeight;


    //
    // Handle the empty list case
    //
    
    if (IsListEmpty(ListHead)) {
        return (NULL);
    }

    //
    // Traverse this list looking for the maximum weight
    //
    
    for (
            NextEntry = ListHead->Flink,
            CurrentMaxMinEntry = NULL;

            NextEntry != ListHead;

            NextEntry = NextEntry->Flink

            ) {

        //
        // The WEIGHTED_LIST_ENTRY overlays the LIST_ENTRY
        //
    
        WeightedEntry = (PWEIGHTED_LIST_ENTRY)NextEntry;

        if (CurrentMaxMinEntry == NULL) {

            CurrentMaxMinEntry = NextEntry;
            CurrentMaxMinWeight = WeightedEntry->Weight;

        } else {

            if (SearchCriteria == FindMaxWeight) {

                if (WeightedEntry->Weight > CurrentMaxMinWeight) {
                    CurrentMaxMinEntry = NextEntry;
                    CurrentMaxMinWeight = WeightedEntry->Weight;
                }

            } else {

                if (WeightedEntry->Weight < CurrentMaxMinWeight) {
                    CurrentMaxMinEntry = NextEntry;
                    CurrentMaxMinWeight = WeightedEntry->Weight;
                }

            }
        }
    }

    //
    // Remove the maximum from the list
    //
    
    RemoveEntryList(CurrentMaxMinEntry);

    return ((PVOID)CurrentMaxMinEntry);
}

// mdbfix - delete these routines later!
#if 0

//
// Declare the lower-level routine used to read PCI config space
//

VOID
HalpReadPCIConfig (
    IN PBUS_HANDLER BusHandler,
    IN PCI_SLOT_NUMBER Slot,
    IN PVOID Buffer,
    IN ULONG Offset,
    IN ULONG Length
    );


VOID
HalpFindPciBusVectors(
    IN PCONFIGURATION_COMPONENT Component,
    IN PVOID ConfigurationData
    )

/*++

Routine Description:

    This routine finds all device interrupt vectors for the PCI bus
    handler obtained from the configuration tree and sets the
    corresponding bits in the VectorPresent bitmap for the IOD.

Arguments:

    Component - The ARC configuration component for this bus.

    ConfigurationData - The configuration data payload (or NULL).

Return Value:

    None.

--*/
{
    ARC_PCI_CONFIGURATION ArcPciConfiguration;
    ULONG BusNumber;
    ULONG HwBusNumber;
    BOOLEAN BusIsAcrossPPB;
    PBUS_HANDLER BusHandler;
    PPCIPBUSDATA BusData;
    PCIPBUSDATA BusContext;
    RTL_BITMAP DevicePresent;
    PCI_SLOT_NUMBER SlotNumber;
    PIOD_VECTOR_DATA IodIoVectors;
    ULONG DeviceNumber;
    ULONG NextDevice;
    ULONG FunctionNumber;
    ULONG InterruptLine;
    PCI_COMMON_CONFIG CommonConfig;
    
    //
    // Copy the configuration data from the component.
    //

    RtlCopyMemory(
        &ArcPciConfiguration,
        ConfigurationData,
        sizeof (ARC_PCI_CONFIGURATION)
    );

    //
    // Use the values provided.
    //

    BusNumber = ArcPciConfiguration.BusNumber;
    HwBusNumber = ArcPciConfiguration.HwBusNumber;
    BusIsAcrossPPB = ArcPciConfiguration.BusIsAcrossPPB;
    IodIoVectors = HalpIodVectorData + HwBusNumber;

    //
    // Initialize the BusNumber for this IOD now.
    // We might want to use it later to obtain the bus handler
    //

    IodIoVectors->BusNumber = BusNumber;

    //
    // Allocate and initialize the handler for this bus.  N.B. device-present
    // checking is disabled at this point.  We will enable it below.
    //

    BusHandler = HaliHandlerForBus(
                     PCIBus,
                     BusNumber
                 );

    //
    // Get a pointer to the bus-specific data.
    //

    BusData = (PPCIPBUSDATA)BusHandler->BusData;

    //
    // Use the device-present bitmap for this bus to query configuration
    // Space for InterruptLine values. 
    //

    //
    // Initialize the device-present bitmap for this bus.
    //

    HalpInitializeBitMap(
        &BusContext.DevicePresent,
        BusContext.DevicePresentBits,
        PCI_MAX_DEVICES * PCI_MAX_FUNCTION
        );

    //
    // Copy the bitmap from the bus handler.
    //

    RtlCopyMemory(
        &BusContext.DevicePresentBits,
        &BusData->DevicePresentBits,
        sizeof (BusData->DevicePresentBits)
    );


    //
    // Starting with device 0, scan the device present
    // bitmap.
    //
    
    DeviceNumber = 0;
    
    while ( (DeviceNumber =
                HalpFindSetBitsAndClear(
                    &BusContext.DevicePresent,
                    1,
                    DeviceNumber
                    ) ) != -1 ) {

        //
        // Initialize the slot number.
        //

        SlotNumber.u.AsULONG = 0;
        SlotNumber.u.bits.DeviceNumber = DeviceNumber;

        //
        // Loop through each function number.
        //

        for (FunctionNumber = 0;
             FunctionNumber < PCI_MAX_FUNCTION;
             FunctionNumber++) {

            SlotNumber.u.bits.FunctionNumber = FunctionNumber;

            //
            // Read the common configuration header.
            //

            HalpReadPCIConfig(
                BusHandler,
                SlotNumber,
                &CommonConfig,
                0,
                PCI_COMMON_HDR_LENGTH
            );

            //
            // If the Vendor ID is invalid, then no device is present
            // at this device/function number.
            //

            if (CommonConfig.VendorID == PCI_INVALID_VENDORID) {
                if (FunctionNumber == 0) {
                    break;
                }
                continue;
            }

            //
            // Obtain the vector assigned to this Device:Function
            // during PCI configuration.
            //

            if (CommonConfig.u.type0.InterruptLine) {

                //
                // Obtain vector and normalize
                //
                
                InterruptLine =CommonConfig.u.type0.InterruptLine; 
                InterruptLine -= (RawhidePinToLineOffset + 1);

                //
                // Determine if this is a shared vector
                //
                
                if ( HalpAreBitsSet(
                        &IodIoVectors->VectorPresent[0],
                        InterruptLine,
                        1
                        ) == TRUE ) {

                    //
                    // Indicate vector is shared in bitmap
                    // 
                            
                    HalpSetBits(
                        &IodIoVectors->SharedVector[0],
                        InterruptLine,
                        1
                        );                     

                    HalpDumpBitMap(&IodIoVectors->SharedVector[0]);

                } else {

                    //
                    // Indicate device is present in bitmap
                    //

                    HalpSetBits(
                        &IodIoVectors->VectorPresent[0],
                        InterruptLine,
                        1
                        );                     

                    HalpDumpBitMap(&IodIoVectors->VectorPresent[0]);

                }

                //
                // Increment the weight
                //
                
                IodIoVectors->ListEntry.Weight++;

            } // if (CommonConfig.InterruptLine)
            
            //
            // If this is not a multi-function device, then terminate
            // the function number loop.
            //

            if ((CommonConfig.HeaderType & PCI_MULTIFUNCTION) == 0) {
                break;
            }
            
        } // for (FunctionNumber...)

    } // while (DeviceNumber != -1)
}


VOID
HalpFindAllPciVectors(
    IN PCONFIGURATION_COMPONENT_DATA Root
    )
/*++

Routine Description:

    This function loops through each multi-function adapter component
    in the ARC configuration tree and calls HalpFindPciBusVectors()
    searching for device vectors.

Arguments:

    Root - The root of the ARC configuration tree.

Return Value:

    None.

--*/
{
    ULONG Key;
    PCONFIGURATION_COMPONENT_DATA Adapter;

    //
    // Loop through each multi-function adapter component in the ARC
    // configuration tree.
    //

    for (Key = 0; TRUE; Key++) {

        //
        // Get a pointer to the component data.
        //

        Adapter = KeFindConfigurationEntry(
                      Root,
                      AdapterClass,
                      MultiFunctionAdapter,
                      &Key
                  );

        //
        // If there are no more multi-function adapters in the ARC
        // configuration tree, then we're done.
        //

        if (Adapter == NULL) {
            break;
        }

        //
        // Ascertain whether this is a PCI multi-function adapter component.
        // If so, find the device vectors.
        //

        if (stricmp(Adapter->ComponentEntry.Identifier, "PCI") == 0) {
            HalpFindPciBusVectors(
                &Adapter->ComponentEntry,
                Adapter->ConfigurationData
            );
        }
    }
}


VOID
HalpBalanceVectorLoadForIod(
    PIOD_VECTOR_DATA IodVectorData
    )
/*++

Routine Description:

    Balance the vector load for the given IOD among the
    CPU pair.  The basic algorithm is:

        1. Find a device present from the bitmap.
        2. Choose the CPUwith the minimum vector load.
        3. Assign the device vector from (1) to this CPU
           and update the CPU's vector load (weight) by 1.
        4. If the vector is shared (multiple devices
           connect), update the CPU's vector load by 1.
           While this does not accurately reflect the
           actual vector's sharing the device, it will
           due for algorithmic simplicity.
        5. Update the CPU's IOD service mask.
        6. repeat for all vectors. 


Arguments:

    IodListHead - head of temporary IOD vector info list.
    
Return Value:

    None.

--*/
{
    RTL_BITMAP VectorPresent;
    ULONG VectorPresentBits;
    ULONG IRRBitNumber;
    ULONG InterruptBit;

    HalpInitializeBitMap(
        &VectorPresent,
        (PULONG)&VectorPresentBits,
        32 
        );

    //
    // Copy the device present bitmap from the IOD information.
    //

    RtlCopyMemory(
        &VectorPresentBits,
        &IodVectorData->VectorPresentBits[0],
        sizeof (IodVectorData->VectorPresentBits[0])
    );

    //
    // Now that we have a copy of all device vectors for this
    // IOD, clear the device present bitmap for target 0.
    // This was only being used as temporary storage.
    //

    HalpClearAllBits(&IodVectorData->VectorPresent[0]);
            
    //
    // Start with the first IRR bit.
    //

    IRRBitNumber = 0;

    //
    // Find the next Device present.
    // Remember that this bitmap actually represents
    // the interrupt vector assigned to devices.
    //
    
    while (( IRRBitNumber =
                HalpFindSetBitsAndClear(
                    &VectorPresent,
                    1,
                    IRRBitNumber) ) != -1 ) {
                                        
        InterruptBit = (1 << IRRBitNumber);

        //
        // Assign the vector for this IOD
        //
        
        HalpAssignInterruptForIod(IodVectorData, InterruptBit);
        
    }

}


VOID
HalpBalanceIoVectorLoad(
    PLIST_ENTRY IodListHead
    )
/*++

Routine Description:

    Balance the vector load among the set of processors.
    The basic algorithm is:

        1. Find an IOD to process:
        
           From the IOD set, find the IOD  with the maximum
           number of vectors, and permanantly remove this
           IOD from the set.

        2. Find a CPU pair that will act as targets for
           the selected IOD interrupts:
           
           a. From the CPU set, find the first CPU with the
              minimum number of vectors assigned and temporarily
              remove this CPU from the CPU set.
              
           b. From the CPU set, find the second CPU with the
              minimum number of vectors assigned and temporarily
              remove this CPU from the CPU set.

        3. Call HalpBalanceIodVectorLoad to divide the IOD
           vectors among the two CPU's.
           
        5. Add the CPU's back the the CPU set.  This makes them
           available for selection during the next iteration.

        6. Repeat until the IOD set is empty.
    
Arguments:

    IodListHead - head of temporary IOD vector info list.
    
Return Value:

    None.

--*/
{
    PIOD_VECTOR_DATA IodVectorData;
    
    //
    // Balance the vector load for each IOD,
    // assigning vector affinity in the process
    //
    
    while (!IsListEmpty(IodListHead)) {

        //
        // Find the IOD with the maximum number of
        // vectors.  It is removed from the list as
        // a side effect.
        //
        
        IodVectorData = (PIOD_VECTOR_DATA)
            HalpFindWeightedEntry(IodListHead, FindMaxWeight);

        //
        // Assign the interrupt vector affinity for this IOD
        //

        HalpBalanceVectorLoadForIod( 
            IodVectorData
            );
        
        //
        // Add this to the global list of IOD's.  
        // Use shortcut to obtain LIST_ENTRY.
        //

        InsertHeadList(
            &HalpIodVectorDataHead, 
            &IodVectorData->ListEntry.ListEntry
            );

    }

}


VOID
HalpInitializeIoVectorAffinity(
    PLOADER_PARAMETER_BLOCK LoaderBlock
    )
/*++

Routine Description:

    The IOD and CPU vector information tables are used balance the
    interrupt load from all IOD's among the set of available CPU's.

    Allocate and initialize the IOD and CPU vector information tables,
    pre-assign vectors for EISA, I2c, SoftErr, and HardErr, and
    call HalpIoVectorLoad() to assign IOD vectors to CPU's.
    
Arguments:

    LoaderParameterBlock - supplies a pointer to the loader block.
    
Return Value:

    None.

--*/
{
    MC_DEVICE_MASK IodMask = HalpIodMask;
    MC_DEVICE_MASK CpuMask = HalpCpuMask;
    PIOD_VECTOR_DATA IodVectorData;
    PCPU_VECTOR_DATA CpuVectorData;
    LIST_ENTRY IodListHead;
    ULONG LogicalNumber;
    ULONG Target;
    
    //
    // Allocate the IOD device affinity table.
    //

    HalpIodVectorData = (PIOD_VECTOR_DATA)
                        ExAllocatePool(
                            NonPagedPool,
                            sizeof(IOD_VECTOR_DATA)* HalpNumberOfIods
                            );

    RtlZeroMemory(
        HalpIodVectorData,
        sizeof(IOD_VECTOR_DATA)*HalpNumberOfIods
        );

    //
    // Initialize the IOD vector affinity list.
    //
    
    InitializeListHead(&HalpIodVectorDataHead);
    InitializeListHead(&IodListHead);
    
    for (   LogicalNumber = 0, IodVectorData = HalpIodVectorData;
            LogicalNumber < HalpNumberOfIods;
            LogicalNumber++, IodVectorData++ ) {


        //
        // Initialize bitmaps for each target.

        for (Target = 0; Target < IOD_MAX_INT_TARG; Target++) {

            //
            // The VectorBitmap represents the devices on this IOD 
            // that been assigned vectors and to which target the
            // vectors have been assigned.
            //


            HalpInitializeBitMap(
                &IodVectorData->VectorPresent[Target] ,
                (PULONG)&IodVectorData->VectorPresentBits[Target],
                32
                );

            //
            // The SharedBitmap represents vectors that are shared
            // by devices on this IOD.  It is used to make decisions
            // on which target to assign vectors.
            //
            
            HalpInitializeBitMap(
                &IodVectorData->SharedVector[Target],
                (PULONG)&IodVectorData->SharedVectorBits[Target],
                32
                );

        }

        //
        // Assign the device number.  This cooresponds to the logical
        // IOD number.
        //

        IodVectorData->HwBusNumber = LogicalNumber;

        //
        // Add this IOD to temporary list.  The IOD will be added
        // to permanent list after it is processed.
        //

        InsertTailList(
            &IodListHead, 
            &IodVectorData->ListEntry.ListEntry
            );

    }        

    //
    // Allocate the CPU IO device affinity table.
    //

    HalpCpuVectorData = (PCPU_VECTOR_DATA)
                        ExAllocatePool(
                            NonPagedPool,
                            sizeof(CPU_VECTOR_DATA) * HalpNumberOfCpus
                            );

    RtlZeroMemory(
        HalpCpuVectorData,
        sizeof(CPU_VECTOR_DATA)*HalpNumberOfCpus
        );
        
    //
    // Initialize the CPU vector affinity list.
    //

    InitializeListHead(&HalpCpuVectorDataHead);
    
    for (   LogicalNumber = 0, CpuVectorData = HalpCpuVectorData;
            LogicalNumber < HalpNumberOfCpus;
            LogicalNumber++, CpuVectorData++ ) {

        //
        // Assign the device number.  This cooresponds to the logical
        // CPU number.
        //
        
        CpuVectorData->LogicalNumber = LogicalNumber;
        CpuVectorData->McDeviceId.Gid = GidPrimary;

        switch (LogicalNumber) {

        case 0:

            CpuVectorData->McDeviceId.Mid = MidCpu1;
            break;

        case 1:

            CpuVectorData->McDeviceId.Mid = MidCpu1;
            break;

        case 2:

            CpuVectorData->McDeviceId.Mid = MidCpu2;
            break;

        case 3:

            CpuVectorData->McDeviceId.Mid = MidCpu3;
            break;

        }
        //
        // Insert this CPU into the list
        //
        
        InsertTailList(
            &HalpCpuVectorDataHead, 
            &CpuVectorData->ListEntry.ListEntry
            );

    }
    
    //
    // Find all PCI Iod Vectors.
    //                                

    HalpFindAllPciVectors(LoaderBlock->ConfigurationRoot);

    //
    // Preassign error vectors for all IOD's  as well as EISA, EISANMI
    // and I2c vectors to the primary processor.
    //
 
    HalpAssignPrimaryProcessorVectors(&IodListHead);

    //
    // Balance the IO vector load among the CPU's
    //
 
    HalpBalanceIoVectorLoad(&IodListHead);

#if HALDBG

    HalpDumpIoVectorAffinity();

#endif
             
}


VOID
HalpAssignIodInterrupts(
    MC_DEVICE_ID McDeviceId,
    ULONG PciBusNumber,
    va_list Arguments
    )

/*++

Routine Description:

    This enumeration routine assigns the Rawhide interrupts for the
    corresponding IOD and sets up the target CPU's.  The interrupts
    are initialized with the values determined by 
    HalpInitializeIoVectorAffinity()

    Interrupts were previously routed to the primary processor
    by HalpInitializeIodInterrupts.  Now that All processors are
    started, we must reassign HardErr, Eisa, and EisaNMI interrupts.

    The logical bus is assigned from the static variable PciBusNumber, which is
    incremented with each invokation.
                                                                    
Arguments:

    McDeviceId - Supplies the MC Bus Device ID of the IOD to be intialized

    PciBusNumber - Logical (Hardware) bus number.

    Arguments - Variable Arguments. None for this routine.
    
Return Value:

    None.

--*/

{
    PIOD_VECTOR_DATA IodVectorData;
    IOD_INT_MASK IntMask;
    IOD_INT_TARGET_DEVICE IntTarg;
    PVOID IntMaskQva;
    ULONG Target;

    IodVectorData = HalpIodVectorData + PciBusNumber;

    //
    // Disable MCI bus interrupts
    //

    WRITE_IOD_REGISTER_NEW(
        McDeviceId,
        &((PIOD_INT_CSRS)(IOD_INT_CSRS_QVA))->IntCtrl,
        (IOD_INT_CTL_DISABLE_IO_INT | IOD_INT_CTL_DISABLE_VECT_WRITE)
        );
    
    //
    // Initialize the target register base on assigned values
    //

    IntTarg.Int0TargDevId = (ULONG)IodVectorData->IntTarg[0].all;
    IntTarg.Int1TargDevId = (ULONG)IodVectorData->IntTarg[1].all;

    //
    // Write the target register.
    //

    WRITE_IOD_REGISTER_NEW(
        McDeviceId,
        &((PIOD_INT_CSRS)(IOD_INT_CSRS_QVA))->IntTarg,
        IntTarg.all
        );

    //
    // Write the mask bits for target 0 and 1
    //

    for (Target = 0; Target < IOD_MAX_INT_TARG; Target++) {

        //
        // Obtain the target IRR QVA
        //
        
        if (Target) {

            IntMaskQva = (PVOID)&((PIOD_INT_CSRS)(IOD_INT_CSRS_QVA))->IntMask1;

        } else {

            IntMaskQva = (PVOID)&((PIOD_INT_CSRS)(IOD_INT_CSRS_QVA))->IntMask0;

        }
        IntMask.all = IodVectorData->IntMask[Target].all;

        WRITE_IOD_REGISTER_NEW(
            McDeviceId,
            IntMaskQva,
            IntMask.all
            );

    }
    
    //
    // Enable Interrupts.
    //
    
    WRITE_IOD_REGISTER_NEW(
        McDeviceId,
        &((PIOD_INT_CSRS)(IOD_INT_CSRS_QVA))->IntCtrl,
        IOD_INT_CTL_ENABLE_IO_INT
        );

}

#endif // STATIC BALANCE


VOID
HalpInitializeVectorBalanceData(
    VOID
    )
/*++

Routine Description:

    The IOD and CPU vector information tables are used balance the
    interrupt load from all IOD's among the set of available CPU's.

    Allocate and initialize the IOD and CPU vector information tables,
    pre-assign vectors for EISA, I2c, SoftErr, and HardErr, and
    call HalpIoVectorLoad() to assign IOD vectors to CPU's.
    
Arguments:

    LoaderParameterBlock - supplies a pointer to the loader block.
    
Return Value:

    None.

--*/
{
    MC_DEVICE_MASK IodMask = HalpIodMask;
    MC_DEVICE_MASK CpuMask = HalpCpuMask;
    PIOD_VECTOR_DATA IodVectorData;
    ULONG LogicalNumber;
    ULONG Target;
    
    //
    // Allocate the IOD device affinity table.
    //

    HalpIodVectorData = (PIOD_VECTOR_DATA)
                        ExAllocatePool(
                            NonPagedPool,
                            sizeof(IOD_VECTOR_DATA)* HalpNumberOfIods
                            );

    RtlZeroMemory(
        HalpIodVectorData,
        sizeof(IOD_VECTOR_DATA)*HalpNumberOfIods
        );

    //
    // Initialize the IOD vector affinity list.
    //
    
    InitializeListHead(&HalpIodVectorDataHead);
    
    for (   LogicalNumber = 0, IodVectorData = HalpIodVectorData;
            LogicalNumber < HalpNumberOfIods;
            LogicalNumber++, IodVectorData++ ) {

        //
        // Assign the device number.  This cooresponds to the logical
        // IOD number.
        //

        IodVectorData->HwBusNumber = LogicalNumber;

        //
        // Add this IOD to temporary list.  The IOD will be added
        // to permanent list after it is processed.
        //

        InsertTailList(
            &HalpIodVectorDataHead, 
            &IodVectorData->ListEntry.ListEntry
            );

    }        

    //
    // Allocate the CPU vector data table for the maximum 
    // processor configuration.
    //

    HalpCpuVectorData = (PCPU_VECTOR_DATA)
                        ExAllocatePool(
                            NonPagedPool,
                            sizeof(CPU_VECTOR_DATA)*HalpNumberOfCpus
                            );

    RtlZeroMemory(
        HalpCpuVectorData,
        sizeof(CPU_VECTOR_DATA)*HalpNumberOfCpus
        );
        
    //
    // Initialize the CPU vector affinity list.
    // CPU's will add their entry later.
    //

    InitializeListHead(&HalpCpuVectorDataHead);

}


VOID
HalpInitializeCpuVectorData(
    ULONG LogicalCpu
    )
/*++

Routine Description:

    Allocate and initialize the CPU vector entry for this logical
    CPU and add it to the global list,
    
Arguments:

    LogicalCpu - Logical CPU number assigned by HalStartNextProcessor().
    
Return Value:

    None.

--*/
{
    MC_DEVICE_MASK CpuMask = HalpCpuMask;
    PCPU_VECTOR_DATA CpuVectorData;
    ULONG Target;
    
    //
    // Use the logical processor number to offset into in the 
    // global CPU table.
    //

    CpuVectorData = HalpCpuVectorData + LogicalCpu;

    //
    // Initalize CPU vector data fields
    //

    CpuVectorData->LogicalNumber = LogicalCpu;
    
    //
    // Insert into global list
    //

    InsertTailList(
        &HalpCpuVectorDataHead, 
        &CpuVectorData->ListEntry.ListEntry
        );
    
#if HALDBG
    DbgPrint(
        "Initialized vector data for CPU %d (%d, %d)\n",
        CpuVectorData->LogicalNumber,
        HalpLogicalToPhysicalProcessor[LogicalCpu].Gid,
        HalpLogicalToPhysicalProcessor[LogicalCpu].Mid
        );
#endif

}


VOID
HalpAssignPrimaryProcessorVectors(
    PLIST_ENTRY IodListHead
    )
/*++

Routine Description:
    
    Assign primary processor vectors.  This includes the following:

        HardErr
        SoftErr
        Eisa
        EisaNMI
        I2cBus
        I2cCtrl 

    By having the primary processor handle the error vectors, we
    prevent hard errors from being serviced by multiple
    processors.

Arguments:

    IodListHead - head of temporary IOD vector info list.
    
Return Value:

    None.

--*/
{
    PLIST_ENTRY ListEntry;
    PIOD_VECTOR_DATA IodVectorData;
    PCPU_VECTOR_DATA PrimaryCpuVectorData;
    MC_DEVICE_ID McDeviceId;
    ULONG Target;
    
    //
    // Obtain the vector data structure for the primary processor
    //

    PrimaryCpuVectorData = HalpCpuVectorData;

    //
    // Assign the hard and soft error interrupt for each IOD
    // to the primary processor
    //
    
    for (   ListEntry = IodListHead->Flink;
            ListEntry != IodListHead;
            ListEntry = ListEntry->Flink ) {

        //
        // Obtain the IOD vector data.
        //

        IodVectorData = (PIOD_VECTOR_DATA)ListEntry;

        McDeviceId = HalpIodLogicalToPhysical[IodVectorData->HwBusNumber];
        
#if HALDBG
        DbgPrint(
            "Assign IOD (%d, %d) Target 0 to Primary Processor\n",
            McDeviceId.Gid,
            McDeviceId.Mid
            );
#endif

        //
        // Assign the Target 0 CPU for this IOD
        //

        IodVectorData->TargetCpu[0] = PrimaryCpuVectorData;

        //
        // Assign the SoftErr and HardErr interrupts to each IOD
        //

        IodVectorData->IntMask[0].all |= (1 << IodHardErrIrrBit);
        IodVectorData->IntMask[0].all |= (1 << IodSoftErrIrrBit);
        
            
#if HALDBG
        DbgPrint(
            "Assign IOD (%d, %d) HardError to Target 0, CPU 0\n",
            McDeviceId.Gid,
            McDeviceId.Mid
            );
#endif

        //
        // Assign the Eisa, EisaNMI, and I2C interrupts for PCI bus 0 
        // to the primary processor.
        //

        if (IodVectorData->HwBusNumber == 0) {

            IodVectorData->IntMask[0].all |= (1 << IodEisaIrrBit);
// mdbfix - I2c not enabled
//            IodVectorData->IntMask[0].all |= (1 << IodI2cBusIrrBit);
//            IodVectorData->IntMask[0].all |= (1 << IodI2cCtrlIrrBit);
            IodVectorData->IntMask[0].all |= (1 << IodEisaNmiIrrBit);

#if HALDBG
            DbgPrint(
                "Assign IOD (%d, %d) EISA & EISANMI to Target 0, CPU 0\n",
                McDeviceId.Gid,
                McDeviceId.Mid
            );
#endif

// mdbfix - 
#if 0
            //
            // Weight this Processor for EISA vectors KBD, MOUSE, etc.
            //

            PrimaryCpuVectorData->ListEntry.Weight++;
#endif
        }

        //
        // Initialize the affinity mask, target, and CPU vector link
        //

        IodVectorData->Affinity[0] |= 1;

        IodVectorData->IntTarg[0] = 
            HalpLogicalToPhysicalProcessor[HAL_PRIMARY_PROCESSOR];

        IodVectorData->TargetCpu[0] = PrimaryCpuVectorData;

    }

}
                   

ULONG
HalpAssignInterruptForIod(
    PIOD_VECTOR_DATA IodVectorData,
    ULONG InterruptBit
    )
/*++

Routine Description:

Arguments:

    IodVectorData - IOD to assign interrupt    

    InterruptBit - Interrupt bit in the IRR to set

Return Value:

    Return the logical CPU number assigned the interrupt 

--*/

{
    PCPU_VECTOR_DATA TargetCpu;
    MC_DEVICE_ID McDeviceId;
    IOD_INT_TARGET_DEVICE IntTarg;
    ULONG Target;
    ULONG LogicalCpu;
    
    McDeviceId = HalpIodLogicalToPhysical[IodVectorData->HwBusNumber];

#if HALDBG

    DbgPrint(
        "Assigning IOD (%d, %d) Interrupt 0x%x\n", 
        McDeviceId.Gid,
        McDeviceId.Mid,
        InterruptBit
        );
#endif

    //
    // If both of the target CPU's have not been assigned,
    // assign them now.
    //

    if ( !IodVectorData->TargetCpu[0] || !IodVectorData->TargetCpu[1] ) {
    

        for (Target = 0; Target < HalpNumberOfTargetCpus; Target++) {
 
            if ((TargetCpu = IodVectorData->TargetCpu[Target]) == NULL) {
            
                TargetCpu = (PCPU_VECTOR_DATA)
                    HalpFindWeightedEntry(
                        &HalpCpuVectorDataHead, 
                        FindMinWeight
                        );
    
                //
                // Handle for UP and second target not assigned
                //

                if (TargetCpu == NULL) {

                    break;

                }

#if HALDBG
                DbgPrint(
                    "IOD (%d, %d) Target %d assigned to CPU %d\n", 
                    McDeviceId.Gid,
                    McDeviceId.Mid,
                    Target,
                    TargetCpu->LogicalNumber
                    );
#endif

                LogicalCpu = TargetCpu->LogicalNumber;

                //
                // Initialize the affinity mask, target, and CPU vector link
                //

                IodVectorData->Affinity[Target] |= (1 << LogicalCpu);
                IodVectorData->IntTarg[Target] = 
                    HalpLogicalToPhysicalProcessor[LogicalCpu];
                IodVectorData->TargetCpu[Target] = TargetCpu;

                //
                // Initialize the MC_DEVICE_ID for this target.
                //

    
                //
                // Read the target register.
                //

                IntTarg.all = READ_IOD_REGISTER_NEW(
                    McDeviceId,
                    &((PIOD_INT_CSRS)(IOD_INT_CSRS_QVA))->IntTarg
                    );


                //
                // Obtain the Target assigned by Vector Balancing
                //

                if (Target) {

                    IntTarg.Int1TargDevId = (ULONG)
                        IodVectorData->IntTarg[Target].all;

                } else {

                    IntTarg.Int1TargDevId = (ULONG)
                        IodVectorData->IntTarg[Target].all;

                }

                //
                // Write the target register.
                //

                WRITE_IOD_REGISTER_NEW(
                    McDeviceId,
                    &((PIOD_INT_CSRS)(IOD_INT_CSRS_QVA))->IntTarg,
                    IntTarg.all
                    );

            } else {

                //
                // Remove this entry from the list before assigning
                // the next CPU
                // 

                RemoveEntryList(&TargetCpu->ListEntry.ListEntry);

            }
        }
        
        //
        // Add the CPU's back to the global list.
        //

        for (Target = 0; Target < HalpNumberOfTargetCpus; Target++) {
 
            if (IodVectorData->TargetCpu[Target]) {
    
                InsertTailList(
                    &HalpCpuVectorDataHead, 
                    &IodVectorData->TargetCpu[Target]->ListEntry.ListEntry
                    ); 

            }
        }
        
    }

    //
    // Determine if the vector has already been assigned a target.
    // If so, return the target cpu that is was assigned to.
    // If not Choose the CPU with the minimum weight.  The weight 
    // is an indication of how many PCI vectors have already been 
    // assigned to a CPU.
    //

    if ( (IodVectorData->TargetCpu[0] != NULL) &&
         (IodVectorData->IntMask[0].all & InterruptBit) ) {

        Target = 0;

    } else if ( (IodVectorData->TargetCpu[1] != NULL) &&
                (IodVectorData->IntMask[1].all & InterruptBit) ) {

        Target = 1;

    } else if ( !IodVectorData->TargetCpu[1] ) {

        //
        // If the second target CPU was not assigned, 
        // this is a UP system so choose target 0.
        // 
        
        Target = 0;

    } else if ( IodVectorData->TargetCpu[0]->ListEntry.Weight < 
                IodVectorData->TargetCpu[1]->ListEntry.Weight      ) {

        //
        // Target 0 currently has a lower interrupt load
        //

        Target = 0;

    } else {

        //
        // Target 1 currently has a lower interrupt load
        //

        Target = 1;

    } 

    TargetCpu = IodVectorData->TargetCpu[Target];
    LogicalCpu = TargetCpu->LogicalNumber;

#if HALDBG
    DbgPrint(
        "Assign IOD (%d, %d) Interrupt 0x%x to Target %d, CPU %d\n",
        McDeviceId.Gid,
        McDeviceId.Mid,
        InterruptBit,
        Target,
        TargetCpu->LogicalNumber
        );

#endif

    //
    // Enable this vector in the IOD Interrupt Mask
    // This value is written later to the IntReq register
    //

    IodVectorData->IntMask[Target].all |= InterruptBit;
            
    //
    // Update the weight of the target CPU.
    //

    TargetCpu->ListEntry.Weight++;

    return (LogicalCpu);

}

#if HALDBG
//
// Declare the lower-level routine used to read PCI config space
//

VOID
HalpReadPCIConfig (
    IN PBUS_HANDLER BusHandler,
    IN PCI_SLOT_NUMBER Slot,
    IN PVOID Buffer,
    IN ULONG Offset,
    IN ULONG Length
    );


VOID
HalpDumpIoVectorAffinity(
    VOID
    )
/*++

Routine Description:

    Dump IO vector Affinity Assignment    
Arguments:

    None.
    
Return Value:

    None.

--*/
{

    
    PIOD_VECTOR_DATA IodVectorData;
    PCPU_VECTOR_DATA CpuVectorData;
    MC_DEVICE_ID McDeviceId;
    MC_ENUM_CONTEXT mcCtx;
    PCI_COMMON_CONFIG CommonConfig;
    PBUS_HANDLER BusHandler;
    PPCIPBUSDATA BusData;
    PCIPBUSDATA BusContext;
    RTL_BITMAP DevicePresent;
    PCI_SLOT_NUMBER SlotNumber;
    PLIST_ENTRY NextEntry;
    ULONG HwBusNumber;
    ULONG BusNumber;
    ULONG DeviceNumber;
    ULONG FunctionNumber;
    ULONG Target;


    DbgPrint("Dump IOD VECTOR DATA\n\n");

    //
    // Traverse Iod Vector Data List 
    //
    
    for (
            NextEntry = HalpIodVectorDataHead.Flink;
            NextEntry != &HalpIodVectorDataHead;
            NextEntry = NextEntry->Flink
            ) {


        IodVectorData = (PIOD_VECTOR_DATA) NextEntry;
        HwBusNumber = IodVectorData->HwBusNumber;
        BusNumber = IodVectorData->BusNumber;
        McDeviceId = HalpIodLogicalToPhysical[HwBusNumber];

        DbgPrint(
            "\n\nIod: Logical %d, Physical (%d, %d)\n\n",
            HwBusNumber,
            McDeviceId.Gid,
            McDeviceId.Mid
            );

    
        BusHandler = HaliHandlerForBus(PCIBus,BusNumber);

        //
        // Get a pointer to the bus-specific data.
        //

        BusData = (PPCIPBUSDATA)BusHandler->BusData;

        //
        // Use the device-present bitmap for this bus to query configuration
        // Space for InterruptLine values. 
        //

        //
        // Initialize the device-present bitmap for this bus.
        //

        HalpInitializeBitMap(
            &BusContext.DevicePresent,
            BusContext.DevicePresentBits,
            PCI_MAX_DEVICES * PCI_MAX_FUNCTION
            );

        //
        // Copy the bitmap from the bus handler.
        //

        RtlCopyMemory(
            &BusContext.DevicePresentBits,
            &BusData->DevicePresentBits,
            sizeof (BusData->DevicePresentBits)
        );


        //
        // Starting with device 0, scan the device present
        // bitmap.
        //
    
        DeviceNumber = 0;
    
        DbgPrint("Devices Present on Bus:\n\n");

        while ( (DeviceNumber =
                    HalpFindSetBitsAndClear(
                        &BusContext.DevicePresent,
                        1,
                        DeviceNumber
                        ) ) != -1 ) {

            DbgPrint("Device Number %d\n", DeviceNumber);

            //
            // Initialize the slot number.
            //

            SlotNumber.u.AsULONG = 0;
            SlotNumber.u.bits.DeviceNumber = DeviceNumber;

            //
            // Loop through each function number.
            //

            for (FunctionNumber = 0;
                 FunctionNumber < PCI_MAX_FUNCTION;
                 FunctionNumber++) {

                SlotNumber.u.bits.FunctionNumber = FunctionNumber;

                //
                // Read the common configuration header.
                //

                HalpReadPCIConfig(
                    BusHandler,
                    SlotNumber,
                    &CommonConfig,
                    0,
                    PCI_COMMON_HDR_LENGTH
                );

                //
                // If the Vendor ID is invalid, then no device is present
                // at this device/function number.
                //

                if (CommonConfig.VendorID == PCI_INVALID_VENDORID) {
                    if (FunctionNumber == 0) {
                        break;
                    }
                    continue;
                }

                DbgPrint(
                    "Device %d, Function %d\n",
                    DeviceNumber,
                    FunctionNumber
                    );

                DbgPrint(
                    "VendorId 0x%x, InterruptLine 0x%x\n", 
                    CommonConfig.VendorID,
                    CommonConfig.u.type0.InterruptLine
                    );

                //
                // If this is not a multi-function device, then terminate
                // the function number loop.
                //

                if ((CommonConfig.HeaderType & PCI_MULTIFUNCTION) == 0) {
                    break;
                }
            
            } // for (FunctionNumber...)

        } // while (DeviceNumber)


        DbgPrint("\nIOD Targets:\n\n");

        for (Target = 0; Target < IOD_MAX_INT_TARG; Target++) {

            DbgPrint(
                "DevId: (%d, %d), Mask: 0x%x\n",
                IodVectorData->IntTarg[Target].Gid,
                IodVectorData->IntTarg[Target].Mid,
                IodVectorData->IntMask[Target].all
                );
            
        }

    } //for (IodVectorData)

    DbgPrint("\nDump CPU VECTOR DATA\n\n");

    for (
            NextEntry = HalpCpuVectorDataHead.Flink;
            NextEntry != &HalpCpuVectorDataHead;
            NextEntry = NextEntry->Flink
            ) {


        CpuVectorData = (PCPU_VECTOR_DATA) NextEntry;
        McDeviceId = 
            HalpLogicalToPhysicalProcessor[CpuVectorData->LogicalNumber];

        DbgPrint(
            "Cpu: Logical %d Physical (%d,%d)\n",
            CpuVectorData->LogicalNumber,
            McDeviceId.Gid,
            McDeviceId.Mid
            );

    }
            
}

#endif // HALDBG