summaryrefslogblamecommitdiffstats
path: root/private/ntos/nthals/halvict/ppc/pxintrpt.c
blob: 4cd20cab52d4dd4c63fdf8951133c24b1474b697 (plain) (tree)
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
































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                            
/*++

Copyright (c) 1996  International Business Machines Corporation
Copyright (c) 1996  Microsoft Corporation

Module Name:

    pxintrpt.c

Abstract:

    This module implements machine specific interrupt functions
    for IBM's PowerPC Machines.

    Code in this module was largely gathered from other modules
    in earlier versions of the HAL.

Author:

    Peter Johnston (plj@vnet.ibm.com)    Oct 1995.

Environment:

    Kernel mode.

Revision History:

    Jake Oshins
        Made it support Victory machines
    Chris Karamatas
        Merged Victory/Doral/Tiger.


--*/

#include "halp.h"
#include "eisa.h"
#include "pxfirsup.h"
#include "pci.h"
#include "pcip.h"
#include "pxmp.h"
#include "pxmpic2.h"
#include "ibmppc.h"
#include "pxintrpt.h"

#if _MSC_VER >= 1000

//
// VC++ doesn't have the same intrinsics as MCL.
//
// Although the MSR is not strictly a SPR, the compiler recognizes
// all ones (~0) as being the MSR and emits the appropriate code.
//

#define __builtin_set_msr(x)    __sregister_set(_PPC_MSR_,x)

#endif

//
// Define the context structure for use by the interrupt routine.
//


typedef BOOLEAN  (*PSECONDARY_DISPATCH)(
  PVOID InterruptRoutine,
  PVOID ServiceContext,
  PVOID TrapFrame
  );


extern ADDRESS_USAGE HalpMpicSpace;

//
// The following function is called when a machine check occurs.
//

BOOLEAN
HalpHandleMachineCheck(
  IN PKINTERRUPT Interrupt,
  IN PVOID ServiceContext
  );

//
// Provide prototype for Decrementer Interrupts on processors other
// than 0.
//

BOOLEAN
HalpHandleDecrementerInterrupt1 (
    IN PKINTERRUPT Interrupt,
    IN PVOID ServiceContext,
    IN PVOID TrapFrame
    );

BOOLEAN
HalpHandleIpi(
    IN PVOID Unused0,
    IN PVOID Unused1,
    IN PVOID TrapFrame
    );

VOID
HalpMapMpicProcessorRegisters(
    VOID
    );

VOID
HalpMapMpicSpace(
    VOID
    );

ULONG
HalpGetSystemInterruptVector(
    IN PBUS_HANDLER BusHandler,
    IN PBUS_HANDLER RootHandler,
    IN ULONG BusInterruptLevel,
    IN ULONG BusInterruptVector,
    OUT PKIRQL Irql,
    OUT PKAFFINITY Affinity
    );

VOID
HalpConnectFixedInterrupts(
    VOID
    );

#ifdef ALLOC_PRAGMA
#pragma alloc_text(INIT,HalpConnectFixedInterrupts)
#pragma alloc_text(PAGE,HalpGetPCIIrq)
#pragma alloc_text(PAGE,HalpGetSystemInterruptVector)
#pragma alloc_text(INIT,HalpMapMpicProcessorRegisters)
#pragma alloc_text(INIT,HalpMapMpicSpace)
#endif


//
// ERRATA: MPIC2 Ipi SelectProcessor registers need their addresses
//         munged.
//

ULONG Mpic2IpiBugFix;

//
// ERRATA end.
//

//
// Define globals for the pointers to MPIC Global and Interrupt Source
// address spaces.
//

PMPIC_GLOBAL_REGS           HalpMpicGlobal;
PMPIC_INTERRUPT_SOURCE_REGS HalpMpicInterruptSource;
ULONG                       HalpMpicBasePhysicalAddress;
ULONG                       HalpMpicSupportedInts;
ULONG                       HalpMpicMaxVector;


PVOID
HalpAssignReservedVirtualSpace(
    ULONG BasePage,
    ULONG LengthInPages
    );


#if defined(SOFT_HDD_LAMP)

//
// On PowerPC machines the HDD lamp is software driven.  We
// turn it on any time we take an interrupt from a Mass Storage
// Controller (assuming it isn't already on) and turn it off the 2nd
// clock tick after we turn it on if we have not received
// any more MSC interrupts since the first clock tick.
//

HDD_LAMP_STATUS HalpHddLamp;

ULONG HalpMassStorageControllerVectors;

#endif

extern UCHAR IrqlToTaskPriority[];      // in pxirql.c

//
// Save area for ISA interrupt mask resiters and level\edge control
// registers.   (Declared in pxfirsup.c).
//

extern UCHAR HalpSioInterrupt1Mask;
extern UCHAR HalpSioInterrupt2Mask;
extern UCHAR HalpSioInterrupt1Level;
extern UCHAR HalpSioInterrupt2Level;


VOID
HalpMapMpicProcessorRegisters(
    VOID
    )

/*++

Routine Description:


    Map MPIC per-processor registers for this processor.   Note
    that although the logical processor Prcb->Number, may not be
    the physical processor bt the same number.   We must map the
    registers appropriate to this physical processor.
    Also, the VA of this space will only ever be used by THIS
    processor so we will use HAL reserved space rather than an
    address assigned by MmMapIoSpace, the only reason for this
    is to save the system a page per processor (not a big deal).

Arguments:

    None.

Return Value:

    None.

--*/

{
    ULONG PerProcessorRegs;
    ULONG i;
    PerProcessorRegs = HalpMpicBasePhysicalAddress + MPIC_PROCESSOR_0_OFFSET +
                       (HALPCR->PhysicalProcessor * MPIC_PROCESSOR_REGS_SIZE);

    HALPCR->MpicProcessorBase = HalpAssignReservedVirtualSpace(
                                    PerProcessorRegs >> PAGE_SHIFT,
                                    1);

    if ( !HALPCR->MpicProcessorBase ) {
        KeBugCheck(MISMATCHED_HAL);
    }

    //
    // Set priority for this processor to mask ALL interrupts.
    //

    HALPCR->MpicProcessorBase->TaskPriority = MPIC_MAX_PRIORITY;
    HALPCR->HardPriority = MPIC_MAX_PRIORITY;
    HALPCR->PendingInterrupts = 0;
    MPIC_SYNC();

    //
    // Reading the Acknowledge register now would give us the spurious
    // vector,... but,... clear the In-Service Register just in case
    // there's something still in it.   This is done by writing to the
    // EOI register.
    //
    // There could potentially be one in service interrupt for each
    // level the MPIC supports, so do it that many times.
    //

    for ( i = 0 ; i < MPIC_SUPPORTED_IPI ; i++ ) {
        HALPCR->MpicProcessorBase->EndOfInterrupt = 0;
        MPIC_SYNC();
    }
}


VOID
HalpMapMpicSpace(
    VOID
    )

/*++

Routine Description:

    Locate and map the MPIC 2 (or 2A) controller.  Initialize
    all interrupts disabled.

Arguments:

    None.

Return Value:

    None.

--*/

{
    ULONG MpicBasePhysicalAddress = 0;
    ULONG DeviceVendor;
    ULONG i;
    ULONG SlotNumber;
    MPIC_ISVP InterruptSource;
    MPIC_IPIVP IpiSource;

    //
    // Find the MPIC controller.
    // This should probably be passed in in the h/w config, but
    // neither the configuration nor the PCI bus have been initialized
    // yet.   So, search for it using Phase 0 routines.
    //

    for ( SlotNumber = 0; SlotNumber < 32 ; SlotNumber++ ) {
        HalpPhase0GetPciDataByOffset(
                      0,
                      SlotNumber,
                      &DeviceVendor,
                      FIELD_OFFSET(PCI_COMMON_CONFIG, VendorID),
                      sizeof(DeviceVendor)
                      );
        if ( (DeviceVendor == MPIC2_PCI_VENDOR_DEVICE)  ||
             (DeviceVendor == MPIC2A_PCI_VENDOR_DEVICE) ||
             (DeviceVendor == HYDRA_PCI_VENDOR_DEVICE ) ) {
            HalpPhase0GetPciDataByOffset(
                                  0,
                                  SlotNumber,
                                  &MpicBasePhysicalAddress,
                                  FIELD_OFFSET(PCI_COMMON_CONFIG, u.type0.BaseAddresses[0]),
                                  sizeof(MpicBasePhysicalAddress)
                                  );
            break;
        }
    }


    //
    // Assert that (a) we found it, and (b) if MPIC2, its I/O space
    // really is I/O space, or, if MPIC2A, its I/O space is PCI
    // memory space.
    //

    if ( !MpicBasePhysicalAddress) {
        KeBugCheck(MISMATCHED_HAL);
    }

    // Default to standard MPIC
    HalpMpicSupportedInts = MPIC_SUPPORTED_INTS;

    switch ( DeviceVendor ) {

    case MPIC2_PCI_VENDOR_DEVICE:
        if ( !(MpicBasePhysicalAddress & 0x1) ) {
            KeBugCheck(MISMATCHED_HAL);
        }
        MpicBasePhysicalAddress |= 0x80000000;

        //
        // ERRATA: MPIC2 bug, the IPI SelectProcessor registers need to be
        // munged.
        //

        Mpic2IpiBugFix = 0x2;

        //
        // ERRATA end.
        //
        break;

    case HYDRA_PCI_VENDOR_DEVICE:
        //
        // For Tiger: MPIC is within Hydra, so we add 0x40000 to Hydra Base to
        // reach MPIC space - IBMCPK
        //
        MpicBasePhysicalAddress += 0x40000;

        HalpMpicSupportedInts = HYDRA_MPIC_SUPPORTED_INTS;

        // Fall thru.

    case MPIC2A_PCI_VENDOR_DEVICE:
        if ( MpicBasePhysicalAddress & 0x1 ) {
            KeBugCheck(MISMATCHED_HAL);
        }
        MpicBasePhysicalAddress |= 0xc0000000;
        break;

    default:
        KeBugCheck(MISMATCHED_HAL);
    }

    //
    // Remove lower 2 bits, (I/O space indicator and "reserved").
    //

    MpicBasePhysicalAddress &= ~0x3;

    HalpMpicBasePhysicalAddress = MpicBasePhysicalAddress;

    //
    // Map MPIC Global Registers and Interrupt Source Configuration
    // registers.

    HalpMpicGlobal = HalpAssignReservedVirtualSpace(
                  (MpicBasePhysicalAddress + MPIC_GLOBAL_OFFSET) >> PAGE_SHIFT,
                  1);
    if ( !HalpMpicGlobal ) {
        KeBugCheck(MISMATCHED_HAL);
    }

    HalpMpicInterruptSource = HalpAssignReservedVirtualSpace(
        (MpicBasePhysicalAddress + MPIC_INTERRUPT_SOURCE_OFFSET) >> PAGE_SHIFT,
        1);

    if ( !HalpMpicInterruptSource ) {
        KeBugCheck(MISMATCHED_HAL);
    }

    HalpMpicGlobal->Configuration.Mode = MPIC_MIXED_MODE;

    if ( DeviceVendor == HYDRA_PCI_VENDOR_DEVICE ) {
        //
        // Set Hydra Feature Register bit MpicIsMaster (bit 8).
        //

        PVOID HydraBase = HalpAssignReservedVirtualSpace(
                         (MpicBasePhysicalAddress - 0x40000) >> PAGE_SHIFT,
                         1);
        PULONG HydraFeatureRegister = (PULONG)((ULONG)HydraBase + 0x38);
        if ( !HydraBase ) {
            KeBugCheck(MISMATCHED_HAL);
        }

        *HydraFeatureRegister |= 0x100;

        HalpReleaseReservedVirtualSpace(HydraBase, 1);
    }

    //
    // Disable all interrupt sources.
    //

    *(PULONG)&InterruptSource = 0;

    InterruptSource.Priority = 0;
    InterruptSource.Sense = 1;
    InterruptSource.Polarity = 0;

    for ( i = 0 ; i < HalpMpicSupportedInts ; i++ ) {
        InterruptSource.Vector = i + MPIC_BASE_VECTOR;
        MPIC_WAIT_SOURCE(i);
        HalpMpicInterruptSource->Int[i].VectorPriority = InterruptSource;
        MPIC_WAIT_SOURCE(i);
        HalpMpicInterruptSource->Int[i].SelectProcessor = 0;
    }

    MPIC_SYNC();

    //
    // Set source 0 (the 8259) to Active High, Level Triggered.
    //

    MPIC_WAIT_SOURCE(0);
    HalpMpicInterruptSource->Int[0].VectorPriority.Polarity = 1;
    MPIC_SYNC();


    //
    // Set IPI Vector/Priority.  0 is the only one we really
    // use.   However, we set 3 to the MAX and NMI so we can
    // use it to wake the dead when debugging (maybe).
    //
    // Set IPI 0 to overload vector 30 which is one of the reserved
    // vectors on DORAL.
    // Set IPI 1 & 2 to do nothing.
    // Set IPI 3 to overload vector 29 which is reserved on DORAL.  ALSO,
    // set IPI 3 NMI.  (Priority is irrelevant).
    //

    *(PULONG)&IpiSource = 0;

    IpiSource.Vector = MPIC_IPI0_VECTOR;
    IpiSource.Priority = 14;
    MPIC_WAIT_IPI_SOURCE(0);
    HalpMpicGlobal->Ipi[0].VectorPriority = IpiSource;

    IpiSource.Vector = MPIC_IPI1_VECTOR;
    IpiSource.Priority = 0;
    MPIC_WAIT_IPI_SOURCE(1);
    HalpMpicGlobal->Ipi[1].VectorPriority = IpiSource;

    IpiSource.Vector = MPIC_IPI2_VECTOR;
    MPIC_WAIT_IPI_SOURCE(2);
    HalpMpicGlobal->Ipi[2].VectorPriority = IpiSource;

    IpiSource.Vector = MPIC_IPI3_VECTOR;
    IpiSource.NMI = 1;
    MPIC_WAIT_IPI_SOURCE(3);
    HalpMpicGlobal->Ipi[3].VectorPriority = IpiSource;
    MPIC_SYNC();

    //
    // Initialize per processor registers for this processor.
    //

    HalpMapMpicProcessorRegisters();

    //
    // Register this I/O space as in-use.
    //

    MpicBasePhysicalAddress &= 0x7FFFFFFF; // Get bus-relative address

    // Length can only be a USHORT, so we do this four times
    HalpMpicSpace.Element[0].Start = MpicBasePhysicalAddress;
    HalpMpicSpace.Element[0].Length = 0xFFFF;
    HalpMpicSpace.Element[1].Start = MpicBasePhysicalAddress + 0x10000;
    HalpMpicSpace.Element[1].Length = 0xFFFF;
    HalpMpicSpace.Element[2].Start = MpicBasePhysicalAddress + 0x20000;
    HalpMpicSpace.Element[2].Length = 0xFFFF;
    HalpMpicSpace.Element[3].Start = MpicBasePhysicalAddress + 0x30000;
    HalpMpicSpace.Element[3].Length = 0xFFFF;

    switch ( DeviceVendor ) {
    case MPIC2_PCI_VENDOR_DEVICE:

        HalpMpicSpace.Type = CmResourceTypePort;
        break;

    case HYDRA_PCI_VENDOR_DEVICE:
    case MPIC2A_PCI_VENDOR_DEVICE:

        HalpMpicSpace.Type = CmResourceTypeMemory;
        break;
    }

    HalpRegisterAddressUsage(&HalpMpicSpace);
}


VOID
HalpConnectFixedInterrupts(
    VOID
    )

/*++

Routine Description:

    Set required interrupt vectors in the PCR, called once on each
    processor in the system.

Arguments:

    None.

Return Value:

    None.

--*/

{
    //
    // Connect the machine check handler
    //

    PCR->InterruptRoutine[MACHINE_CHECK_VECTOR] =
                          (PKINTERRUPT_ROUTINE)HalpHandleMachineCheck;

    //
    // Connect the external interrupt handler
    //

    PCR->InterruptRoutine[EXTERNAL_INTERRUPT_VECTOR] =
                          (PKINTERRUPT_ROUTINE)HalpHandleExternalInterrupt;


    //
    // Connect directly to the decrementer handler.  Processor 0 uses
    // HalpHandleDecrementerInterrupt, other processors use
    // HalpHandleDecrementerInterrupt1.
    //

    PCR->InterruptRoutine[DECREMENT_VECTOR] =
                         (PKINTERRUPT_ROUTINE)HalpHandleDecrementerInterrupt1;

    //
    // Connect the Inter-Processor Interrupt (IPI) handler.
    //

    PCR->InterruptRoutine[MPIC_IPI0_VECTOR + DEVICE_VECTORS] =
                                       (PKINTERRUPT_ROUTINE)HalpHandleIpi;

    //
    // Connect the Profile interrupt (Timer 1 IRQ0) handler.
    //

    PCR->InterruptRoutine[PROFILE_LEVEL] =
                              (PKINTERRUPT_ROUTINE)HalpHandleProfileInterrupt;

    //
    // Enable the clock interrupt
    //

    HalpUpdateDecrementer(1000);        // Get those decrementer ticks going


}

BOOLEAN
HalpHandleExternalInterrupt(
    IN PKINTERRUPT Interrupt,
    IN PVOID ServiceContext,
    IN PVOID TrapFrame
    )

/*++

Routine Description:

    This routine is entered as the result of an interrupt being generated
    via the vector that is connected to an interrupt object that describes
    the SIO device interrupts. Its function is to call the second
    level interrupt dispatch routine and acknowledge the interrupt at the SIO
    controller.

    N.B. This routine in entered and left with external interrupts disabled.


Arguments:

    Interrupt - Supplies a pointer to the interrupt object.

    ServiceContext - Supplies a pointer to the SIO interrupt acknowledge
        register.

      None.

Return Value:

    Returns the value returned from the second level routine.

--*/

{
    PSECONDARY_DISPATCH SioHandler;
    PKINTERRUPT SioInterrupt;
    USHORT Vector;
    BOOLEAN returnValue;
    UCHAR  OldIrql;
    USHORT Isr;
    ULONG  TaskPriority;

    //
    // Read the MPIC interrupt vector.
    //

    Vector = (USHORT)(HALPCR->MpicProcessorBase->Acknowledge & 0xff);

    //
    // Check for cancelled (spurious) interrupts.
    //

    if ( Vector == 0xff ) {
        return 0;
    }

    //
    // Check for 8259 interrupt.
    //

    if ( Vector == MPIC_8259_VECTOR ) {

        //
        // Read the 8259 interrupt vector.
        //

        Vector = READ_REGISTER_UCHAR(HalpInterruptBase);

        //
        // Acknowledge this interrupt immediately in the MPIC2
        // controller so higher priority 8259 interrupts can be
        // delivered.
        //

        HALPCR->MpicProcessorBase->EndOfInterrupt = 0;

        //
        // Check for NMI interrupt before we raise irql since we would
        // raise to a bogus level.
        //

        if (Vector == 0xFF) {

           HalpHandleMachineCheck(NULL, NULL);
        }

        //
        // check for spurious interrupt
        //

        if (Vector == SPURIOUS_VECTOR) {

            WRITE_REGISTER_UCHAR(
                &((PEISA_CONTROL)HalpIoControlBase)->Interrupt1ControlPort0,
                0x0B);
            Isr = READ_REGISTER_UCHAR(
                &((PEISA_CONTROL)HalpIoControlBase)->Interrupt1ControlPort0);

            if (!(Isr & 0x80)) {

                //
                // Spurious interrupt
                //

                return 0;
            }
        }

#if defined(SOFT_HDD_LAMP)

    } else if ( HalpMassStorageControllerVectors & ( 1 << Vector) ) {
        //
        // On any Mass Storage Controller interrupt, light the HDD lamp.
        // The system timer routines will turn it off again in a little
        // while.
        //

        if ( !HalpHddLamp.Count ) {
            *(PUCHAR)((PUCHAR)HalpIoControlBase + HDD_LAMP_PORT) = 1;
        }
        HalpHddLamp.Count = 10;

#endif

    }

    //
    // Raise IRQL - We rely on the MPIC and 8259 controllers to
    // hold off any lower or equal priority interrupts.  Therefore
    // all we need do is update the PCRs notion of IRQL and re
    // enable interrupts.
    //

    OldIrql = PCR->CurrentIrql;
    PCR->CurrentIrql = HalpVectorToIrql[Vector];
    HalpEnableInterrupts();

    //
    // Dispatch to the secondary interrupt service routine.
    //

    SioHandler = (PSECONDARY_DISPATCH)
                    PCR->InterruptRoutine[DEVICE_VECTORS + Vector];
    SioInterrupt = CONTAINING_RECORD(SioHandler,
                                      KINTERRUPT,
                                      DispatchCode[0]);

    returnValue = SioHandler(SioInterrupt,
                              SioInterrupt->ServiceContext,
                              TrapFrame
                              );

    //
    // Clear the interrupt in the appropriate controller.  To
    // avoid the possibility of being drowned with interrupts
    // at this level, disable interrupts first (we need to
    // return to our caller with interrupts disabled anyway).
    //

    HalpDisableInterrupts();

    if ( Vector < MPIC_8259_VECTOR ) {
        //
        // Dismiss the interrupt in the SIO interrupt controllers.
        //
        // If this is a cascaded interrupt then the interrupt must
        // be dismissed in both controllers.
        //

        if (Vector & 0x08) {

            WRITE_REGISTER_UCHAR(
                &((PEISA_CONTROL) HalpIoControlBase)->Interrupt2ControlPort0,
                NONSPECIFIC_END_OF_INTERRUPT
                );

        }

        WRITE_REGISTER_UCHAR(
            &((PEISA_CONTROL) HalpIoControlBase)->Interrupt1ControlPort0,
            NONSPECIFIC_END_OF_INTERRUPT
            );


    } else {

        HALPCR->MpicProcessorBase->EndOfInterrupt = 0;
    }

    //
    // Lower IRQL without enabling external interrupts.   It is
    // possible that Irql was raised above this level and lowered
    // back to this level in the mean time.  If so, the TaskPriority
    // will have been adjusted and we need to adjust it downwards.
    //

    PCR->CurrentIrql = OldIrql;

    TaskPriority = IrqlToTaskPriority[OldIrql];

    if ( TaskPriority < HALPCR->HardPriority ) {
        HALPCR->MpicProcessorBase->TaskPriority = TaskPriority;
        HALPCR->HardPriority = TaskPriority;
    }

    return returnValue;
}


VOID
HalpEnableSioInterrupt(
    IN ULONG Vector,
    IN KINTERRUPT_MODE InterruptMode
    )

/*++

Routine Description:

    This function enables the SIO interrupt and sets
    the level/edge register to the requested value.

Arguments:

    Vector - Supplies the vector of the  interrupt that is enabled.

    InterruptMode - Supplies the mode of the interrupt; LevelSensitive or
        Latched.

Return Value:

     None.

--*/

{

    //
    // Calculate the SIO interrupt vector.
    //

    Vector -= DEVICE_VECTORS;

    //
    // Determine if this vector is for interrupt controller 1 or 2.
    //

    if (Vector & 0x08) {

        //
        // The interrupt is in controller 2.
        //

        Vector &= 0x7;

        HalpSioInterrupt2Mask &= (UCHAR) ~(1 << Vector);
        WRITE_REGISTER_UCHAR(
            &((PEISA_CONTROL) HalpIoControlBase)->Interrupt2ControlPort1,
            HalpSioInterrupt2Mask
            );

       //
       // Set the level/edge control register.
       //

       if (InterruptMode == LevelSensitive) {

           HalpSioInterrupt2Level |= (UCHAR) (1 << Vector);

       } else {

           HalpSioInterrupt2Level &= (UCHAR) ~(1 << Vector);

       }

       WRITE_REGISTER_UCHAR(
            &((PEISA_CONTROL) HalpIoControlBase)->Interrupt2EdgeLevel,
            HalpSioInterrupt2Level
            );

    } else {

        //
        // The interrupt is in controller 1.
        //

        Vector &= 0x7;

        HalpSioInterrupt1Mask &= (UCHAR) ~(1 << Vector);
        WRITE_REGISTER_UCHAR(
            &((PEISA_CONTROL) HalpIoControlBase)->Interrupt1ControlPort1,
            HalpSioInterrupt1Mask
            );

       //
       // Set the level/edge control register.
       //

       if (InterruptMode == LevelSensitive) {

           HalpSioInterrupt1Level |= (UCHAR) (1 << Vector);

       } else {

           HalpSioInterrupt1Level &= (UCHAR) ~(1 << Vector);

       }

       WRITE_REGISTER_UCHAR(
            &((PEISA_CONTROL) HalpIoControlBase)->Interrupt1EdgeLevel,
            HalpSioInterrupt1Level
            );
    }

}

VOID
HalpDisableSioInterrupt(
    IN ULONG Vector
    )

/*++

Routine Description:

    This function Disables the SIO interrupt.

Arguments:

    Vector - Supplies the vector of the EISA interrupt that is Disabled.

Return Value:

     None.

--*/

{

    //
    // Calculate the SIO interrupt vector.
    //

    Vector -= DEVICE_VECTORS;

    //
    // Determine if this vector is for interrupt controller 1 or 2.
    //

    if (Vector & 0x08) {

        //
        // The interrupt is in controller 2.
        //

        Vector &= 0x7;

        HalpSioInterrupt2Mask |= (UCHAR) 1 << Vector;
        WRITE_REGISTER_UCHAR(
            &((PEISA_CONTROL) HalpIoControlBase)->Interrupt2ControlPort1,
            HalpSioInterrupt2Mask
            );

    } else {

        //
        // The interrupt is in controller 1.
        //

        Vector &= 0x7;

        HalpSioInterrupt1Mask |= (ULONG) 1 << Vector;
        WRITE_REGISTER_UCHAR(
            &((PEISA_CONTROL) HalpIoControlBase)->Interrupt1ControlPort1,
            HalpSioInterrupt1Mask
            );

    }

}

VOID
HalpEnableMpicInterrupt(
    IN ULONG Vector
    )

/*++

Routine Description:

    This function enables the MPIC interrupt at the source.

Arguments:

    Vector - Supplies the vector of the  interrupt that is enabled.

Return Value:

     None.

--*/

{
    MPIC_ISVP VectorPriority;

    //
    // Calculate the MPIC source.
    //

    ULONG Source = Vector - (DEVICE_VECTORS + MPIC_BASE_VECTOR);

    MPIC_WAIT_SOURCE(Source);

    VectorPriority = HalpMpicInterruptSource->Int[Source].VectorPriority;

    if (Source == 0) {  // special 8259 case
        VectorPriority.Priority = 2;
    } else if (Source < MPIC_SUPPORTED_INTS) {
        VectorPriority.Priority = (Source / 2) + 3;
    } else {
        // Extra hydra poles get the same (highest) priority
        VectorPriority.Priority = 10;
    }
    HalpMpicInterruptSource->Int[Source].VectorPriority = VectorPriority;


    MPIC_WAIT_SOURCE(Source);

    HalpMpicInterruptSource->Int[Source].SelectProcessor =
        1 << HALPCR->PhysicalProcessor;
}

VOID
HalpDisableMpicInterrupt(
    IN ULONG Vector
    )

/*++

Routine Description:

    This function Disables the SIO interrupt.

Arguments:

    Vector - Supplies the vector of the ESIA interrupt that is Disabled.

Return Value:

     None.

--*/

{
    MPIC_ISVP VectorPriority;
    //
    // Calculate the MPIC source.
    //

    ULONG Source = Vector - (DEVICE_VECTORS + MPIC_BASE_VECTOR);

    MPIC_WAIT_SOURCE(Source);

    VectorPriority = HalpMpicInterruptSource->Int[Source].VectorPriority;
    VectorPriority.Priority = 0;
    HalpMpicInterruptSource->Int[Source].VectorPriority = VectorPriority;

    if (HalpSystemType == IBM_DORAL) {

         MPIC_WAIT_SOURCE(Source);

         HalpMpicInterruptSource->Int[Source].SelectProcessor = 0;

    }
}

BOOLEAN
HalpInitializeInterrupts (
    VOID
    )

/*++

Routine Description:

    This routine is called from phase 0 initialization, it initializes the
    8259 interrupt controller ( currently it masks all 8259 interrupts).


Arguments:

    None.

Return Value:


--*/

{
   ULONG Vector;

   //
   // Mask all 8259 interrupts (except the cascade interrupt)
   //

   for (Vector=0;Vector<16;Vector++) {
      if (Vector == 2)
         continue;
      HalpDisableSioInterrupt(Vector + DEVICE_VECTORS);
   }

   //
   // Map MPIC space and mask interrupts.
   //

   HalpMapMpicSpace();

   //
   // Set appropriate Interrupt Vector to Irql mapping for this
   // machine.
   //

   HalpMpicMaxVector = MPIC_BASE_VECTOR + DEVICE_VECTORS +
                       HalpMpicSupportedInts - 1;

   //
   // Reserve the external interrupt vector for exclusive use by the HAL.
   //

   PCR->ReservedVectors |= (1 << EXTERNAL_INTERRUPT_VECTOR);

   return TRUE;

}


KINTERRUPT_MODE
HalpGetInterruptMode (
    IN ULONG Vector,
    IN KIRQL Irql,
    IN KINTERRUPT_MODE InterruptMode
    )
/*++

Routine Description:

    Force interrupt mode for (machine specific) interrupt vectors.
    If the vector is not one of those hardwired, return the caller's
    requested mode.

    On Doral, all ISA style interrupts (8259) except 13 (Power
    Management) are edge sensitive.   13 is level sensitive.

Arguments:

    Vector - Vector for which translation is being requested.
    Irql   - Not used.
    InterruptMode - Requested mode.

Return Value:

    Interrupt mode for this vector.

--*/


{
    if ((HalpSystemType == IBM_TIGER) &&
         (Vector == DEVICE_VECTORS + 15)) {
        return LevelSensitive;
    } else if ( Vector == (DEVICE_VECTORS + 13) ) {
        return LevelSensitive;
    } else {
        return Latched;
    }
}

VOID
HalpSetInterruptMode (
    IN ULONG Vector,
    IN KIRQL Irql
    )
/*++

Routine Description:

    Correct the interrupt mode for a given vector.   This is a no-op
    as the correct interrupt mode was assigned in HalpGetInterruptMode.

Arguments:

    Vector - Vector to correct.  (Not used).
    Irql   - Not used.

Return Value:

    None.

--*/

{
   return;
}


ULONG
HalpGetSystemInterruptVector(
    IN PBUS_HANDLER BusHandler,
    IN PBUS_HANDLER RootHandler,
    IN ULONG BusInterruptLevel,
    IN ULONG BusInterruptVector,
    OUT PKIRQL Irql,
    OUT PKAFFINITY Affinity
    )

/*++

Routine Description:

Arguments:

    BusInterruptLevel - Supplies the bus specific interrupt level.

    BusInterruptVector - Supplies the bus specific interrupt vector.

    Irql - Returns the system request priority.

    Affinity - Returns the system wide irq affinity.

Return Value:

    Returns the system interrupt vector corresponding to the specified device.

--*/
{

    UNREFERENCED_PARAMETER( BusHandler );
    UNREFERENCED_PARAMETER( RootHandler );

    *Affinity = 1;

    //
    // Set the IRQL level.  Map the interrupt controllers priority scheme to
    // NT irql values.  The SIO prioritizes irq's as follows:
    //
    //  irq0, irq1, irq8, irq9 ... irq15, irq3, irq4 ... irq7.
    //
    // The MPIC is a straight mapping.
    //

    *Irql = HalpVectorToIrql[BusInterruptLevel];


    //
    // The vector is equal to the specified bus level plus the DEVICE_VECTORS.
    //

    return(BusInterruptLevel + DEVICE_VECTORS);

}

VOID
HalDisableSystemInterrupt (
    IN ULONG Vector,
    IN KIRQL Irql
    )

/*++

Routine Description:

    This routine disables the specified system interrupt.

Arguments:

    Vector - Supplies the vector of the system interrupt that is disabled.

    Irql - Supplies the IRQL of the interrupting source.

Return Value:

    None.

--*/

{

    KIRQL OldIrql;

    //
    // Raise IRQL to the highest level and acquire device enable spinlock.
    //

    KeRaiseIrql(HIGH_LEVEL, &OldIrql);
    KiAcquireSpinLock(&HalpSystemInterruptLock);

    if (Vector >= DEVICE_VECTORS ) {
        if ( Vector < DEVICE_VECTORS + MPIC_BASE_VECTOR ) {

            HalpDisableSioInterrupt(Vector);

        } else if ( Vector <= HalpMpicMaxVector ) {

            HalpDisableMpicInterrupt(Vector);
       }
    }

    //
    // Release the device enable spin lock and lower IRQL to the previous level.
    //

    KiReleaseSpinLock(&HalpSystemInterruptLock);
    KeLowerIrql(OldIrql);
    return;
}

BOOLEAN
HalEnableSystemInterrupt (
    IN ULONG Vector,
    IN KIRQL Irql,
    IN KINTERRUPT_MODE InterruptMode
    )

/*++

Routine Description:

    This routine enables the specified system interrupt.

Arguments:

    Vector - Supplies the vector of the system interrupt that is enabled.

    Irql - Supplies the IRQL of the interrupting source.

    InterruptMode - Supplies the mode of the interrupt; LevelSensitive or
        Latched.

Return Value:

    TRUE if the system interrupt was enabled

--*/

{

    KIRQL OldIrql;
    KINTERRUPT_MODE TranslatedInterruptMode;

    //
    // Raise IRQL to the highest level and acquire device enable spinlock.
    //

    KeRaiseIrql(HIGH_LEVEL, &OldIrql);
    KiAcquireSpinLock(&HalpSystemInterruptLock);

    if ( Vector >= DEVICE_VECTORS ) {
        if ( Vector < DEVICE_VECTORS + MPIC_BASE_VECTOR ) {

           //
           // It's an 8259 vector.
           //
           // Get translated interrupt mode
           //


           TranslatedInterruptMode = HalpGetInterruptMode(Vector,
                                                          Irql,
                                                          InterruptMode);


           HalpEnableSioInterrupt(Vector, TranslatedInterruptMode);

        } else if ( Vector <= HalpMpicMaxVector ) {

           HalpEnableMpicInterrupt(Vector);
       }
    }

    //
    // Release the device enable spin lock and lower IRQL to the previous level.
    //

    KiReleaseSpinLock(&HalpSystemInterruptLock);
    KeLowerIrql(OldIrql);
    return TRUE;
}

VOID
HalRequestIpi (
    IN ULONG Mask
    )

/*++

Routine Description:

    This routine requests an interprocessor interrupt on a set of processors.

Arguments:

    Mask - Supplies the set of processors that are sent an interprocessor
        interrupt.

Return Value:

    None.

--*/

{
    extern ULONG  Mpic2IpiBugFix;
    extern ULONG  HalpPhysicalIpiMask[];
    ULONG         BugFix = Mpic2IpiBugFix;
    ULONG         PhysicalMask = 0;
    PULONG        PhysicalIpiMask = HalpPhysicalIpiMask;
    ULONG         OldMsr = __builtin_get_msr();

    //
    // Request an interprocessor interrupt on each of the specified target
    // processors.
    //

    __builtin_set_msr(OldMsr & 0xffff7fff);  // Disable Interrupts

    //
    // Mask is a mask of logical CPUs.  Convert it to a mask of
    // Physical CPUs so the IPI requests will be distributed
    // properly.
    //

    do {
        if ( Mask & 1 ) {
            PhysicalMask |= *PhysicalIpiMask;
        }
        PhysicalIpiMask++;
        Mask >>= 1;
    } while ( Mask );

    //
    // Send the IPI interrupt(s).
    //

    HALPCR->MpicProcessorBase->Ipi[0 ^ BugFix].SelectProcessor = PhysicalMask;

    __builtin_set_msr(OldMsr);               // Restore previous interrupt
                                             // setting.
    return;
}

BOOLEAN
HalAcknowledgeIpi (VOID)

/*++

Routine Description:

    This routine aknowledges an interprocessor interrupt on a set of
     processors.

Arguments:

    None

Return Value:

    TRUE if the IPI is valid; otherwise FALSE is returned.

--*/

{
    return (TRUE);
}

BOOLEAN
HalpHandleIpi(
    IN PVOID Unused0,
    IN PVOID Unused1,
    IN PVOID TrapFrame
    )

/*++

Routine Description:

    This routine is entered as the result of an Inter-Processor Interrupt
    being received by this processor.  It passes the request onto the
    kernel.

Arguments:

    Unused0        - Not used.
    Unused1        - Not used.
    TrapFrame      - Volatile context at time interrupt occured.

Return Value:

    Returns TRUE (this routine always succeeds).

--*/

{
    KeIpiInterrupt(TrapFrame);

    return TRUE;
}