summaryrefslogtreecommitdiffstats
path: root/private/ntos/miniport/ultra14f/ultra14f.c
blob: 9f406c51523a9af13dd07c30539a210544ee4a16 (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
/*++

Copyright (c) 1992  Microsoft Corporation

Module Name:

    ultra14f.c

Abstract:

    This is the port driver for the ULTRASTOR 14F ISA SCSI adapter.

Author:

    Stephen Fong

Environment:

    kernel mode only

Notes:

Revision History:

--*/

#include "miniport.h"
#include "ultra14f.h"           // includes scsi.h

CONST ULONG AdapterAddresses[] = {0X330, 0X340, /* 0X310, */ 0X240, 0X230, 0X210, 0X140, 0X130, 0};

//
// Logical Unit extension
//
typedef struct _SPECIFIC_LU_EXTENSION {
    UCHAR DisconnectErrorCount; // keep track of # of disconnect error
} SPECIFIC_LU_EXTENSION, *PSPECIFIC_LU_EXTENSION;

//
// Device extension
//

typedef struct _HW_DEVICE_EXTENSION {
    PU14_BASEIO_ADDRESS U14_BaseIO_Address;
    UCHAR HostTargetId;
} HW_DEVICE_EXTENSION, *PHW_DEVICE_EXTENSION;


//
// Function declarations
//
// Functions that start with 'Ultra14f' are entry points
// for the OS port driver.
//

ULONG
DriverEntry(
    IN PVOID DriverObject,
    IN PVOID Argument2
    );

ULONG
Ultra14fFindAdapter(
    IN PVOID DeviceExtension,
    IN PVOID Context,
    IN PVOID BusInformation,
    IN PCHAR ArgumentString,
    IN OUT PPORT_CONFIGURATION_INFORMATION ConfigInfo,
    OUT PBOOLEAN Again
    );

BOOLEAN
Ultra14fInitialize(
    IN PVOID DeviceExtension
    );

BOOLEAN
Ultra14fStartIo(
    IN PVOID DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    );

BOOLEAN
Ultra14fInterrupt(
    IN PVOID DeviceExtension
    );

BOOLEAN
Ultra14fResetBus(
    IN PVOID HwDeviceExtension,
    IN ULONG PathId
    );

//
// This function is called from Ultra14fStartIo.
//

VOID
BuildMscp(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb,
    IN PSPECIFIC_LU_EXTENSION luExtension
    );

//
// This function is called from BuildMscp.
//

VOID
BuildSgl(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    );

//
// This function is called from Ultra14fInterrupt.
//

VOID
MapErrorToSrbStatus(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    );


ULONG
DriverEntry (
    IN PVOID DriverObject,
    IN PVOID Argument2
    )

/*++

Routine Description:

    Installable driver initialization entry point for system.

Arguments:

    Driver Object

Return Value:

    Status from ScsiPortInitialize()

--*/

{
    HW_INITIALIZATION_DATA hwInitializationData;
    ULONG i;
    ULONG AdapterCount = 0;

    DebugPrint((1,"\n\nSCSI UltraStor 14f MiniPort Driver\n"));

    //
    // Zero out structure.
    //

    for (i=0; i<sizeof(HW_INITIALIZATION_DATA); i++) {
       ((PUCHAR)&hwInitializationData)[i] = 0;
    }

    //
    // Set size of hwInitializationData.
    //

    hwInitializationData.HwInitializationDataSize =
        sizeof(HW_INITIALIZATION_DATA);

    //
    // Set entry points.
    //

    hwInitializationData.HwInitialize = Ultra14fInitialize;
    hwInitializationData.HwFindAdapter = Ultra14fFindAdapter;
    hwInitializationData.HwStartIo = Ultra14fStartIo;
    hwInitializationData.HwInterrupt = Ultra14fInterrupt;
    hwInitializationData.HwResetBus = Ultra14fResetBus;

    //
    // Set number of access ranges and bus type.
    //

    hwInitializationData.NumberOfAccessRanges = 1;
    hwInitializationData.AdapterInterfaceType = Isa;

    //
    // Indicate no buffer mapping but will need physical addresses.
    //

    hwInitializationData.NeedPhysicalAddresses = TRUE;

    //
    // Indicate auto request sense is supported.
    //

    hwInitializationData.AutoRequestSense = TRUE;

    //
    // Specify size of logical unit extension.
    //
    hwInitializationData.SpecificLuExtensionSize = sizeof(SPECIFIC_LU_EXTENSION);

    //
    // Specify size of extensions.
    //

    hwInitializationData.DeviceExtensionSize = sizeof(HW_DEVICE_EXTENSION);

    //
    // Ask for SRB extensions for MSCPs.
    //

    hwInitializationData.SrbExtensionSize = sizeof(MSCP);

    return ScsiPortInitialize(DriverObject,
                              Argument2,
                              &hwInitializationData,
                              &AdapterCount);

} // end DriverEntry()


ULONG
Ultra14fFindAdapter(
    IN PVOID HwDeviceExtension,
    IN PVOID Context,
    IN PVOID BusInformation,
    IN PCHAR ArgumentString,
    IN OUT PPORT_CONFIGURATION_INFORMATION ConfigInfo,
    OUT PBOOLEAN Again
    )

/*++

Routine Description:

    This function is called by the OS-specific port driver after
    the necessary storage has been allocated, to gather information
    about the adapter's configuration.

Arguments:

    HwDeviceExtension - HBA miniport driver's adapter data storage
    ConfigInfo - Configuration information structure describing HBA

Return Value:

    TRUE if adapter present in system

--*/

{
    PHW_DEVICE_EXTENSION deviceExtension = HwDeviceExtension;
    PU14_BASEIO_ADDRESS baseIoAddress;
    PVOID ioSpace;
    PULONG adapterCount = Context;
    UCHAR interruptLevel;
    UCHAR dmaChannel;
    UCHAR productId1;
    UCHAR productId2;

    //
    // Check to see if adapter present in system.
    //

    while (AdapterAddresses[*adapterCount]) {

        //
        // Get the system address for this card.
        // The card uses I/O space.
        //

        baseIoAddress = ScsiPortGetDeviceBase(
            deviceExtension,                    // HwDeviceExtension
            ConfigInfo->AdapterInterfaceType,   // AdapterInterfaceType
            ConfigInfo->SystemIoBusNumber,      // SystemIoBusNumber
            ScsiPortConvertUlongToPhysicalAddress(AdapterAddresses[*adapterCount]),
            0x10,                               // NumberOfBytes
            TRUE                                // InIoSpace
        );

        //
        // Update the adapter count to indicate this IO addr has been checked.
        //

        (*adapterCount)++;

        productId1 = ScsiPortReadPortUchar(&baseIoAddress->ProductId1);
        productId2 = ScsiPortReadPortUchar(&baseIoAddress->ProductId2);

        if ((productId1 == ULTRASTOR_14F_ID1) &&
            ((productId2 & (0xF0)) == ULTRASTOR_14F_ID2)) {

            DebugPrint((1,
                        "Ultra14f: Adapter found at io address %x\n",
                        baseIoAddress));

            break;
        }

        //
        // If an adapter was not found unmap it.
        //

        ScsiPortFreeDeviceBase(deviceExtension,
                               baseIoAddress);

    } // end while (AdapterAddress ...

    if (!AdapterAddresses[*adapterCount]) {

        //
        // No adapter was found.  Indicate that we are done and there are no
        // more adapters here. Clear the adapter count for the next bus.
        //

        *Again = FALSE;
        *adapterCount = 0;
        return SP_RETURN_NOT_FOUND;
    }

    //
    // There is still more to look at.
    //

    *Again = TRUE;

    //
    // Store IO base address of Ultra 14F in device extension.
    //


    deviceExtension->U14_BaseIO_Address = baseIoAddress;

    deviceExtension->HostTargetId = ConfigInfo->InitiatorBusId[0] =
        ScsiPortReadPortUchar(&baseIoAddress->Config2) & 0x07;

    //
    // Indicate maximum transfer length in bytes.
    //

    ConfigInfo->MaximumTransferLength = MAXIMUM_TRANSFER_LENGTH;

    //
    // The supported maximum number of physical segments is 17,
    // but 16 is used to circumvent a firmware bug.
    //

    ConfigInfo->NumberOfPhysicalBreaks = MAXIMUM_SG_DESCRIPTORS;

    ConfigInfo->ScatterGather = TRUE;
    ConfigInfo->Master = TRUE;
    ConfigInfo->NumberOfBuses = 1;

    //
    // Get the system interrupt vector and IRQL.
    //

    interruptLevel =
        ScsiPortReadPortUchar(&baseIoAddress->Config1) & 0x30;

    switch (interruptLevel) {
    case US_INTERRUPT_LEVEL_15:
        ConfigInfo->BusInterruptLevel = 15;
        break;
    case US_INTERRUPT_LEVEL_14:
        ConfigInfo->BusInterruptLevel = 14;
        break;
    case US_INTERRUPT_LEVEL_11:
        ConfigInfo->BusInterruptLevel = 11;
        break;
    case US_INTERRUPT_LEVEL_10:
        ConfigInfo->BusInterruptLevel = 10;
        break;
    default:
        DebugPrint((1,"Ultra24fConfiguration: No interrupt level\n"));
        return SP_RETURN_ERROR;
    }

    DebugPrint((2,"Ultra14f: IRQ Configurated at %x\n",
                ConfigInfo->BusInterruptLevel));

    //
    // If product sub-model is 1 (indicate 34L), don't setup DMA
    //

    if (!(productId2 & 0x01)) {

        //
        // Get the dma Channel
        //

        dmaChannel =
            ScsiPortReadPortUchar(&baseIoAddress->Config1) & 0xC0;

        switch (dmaChannel) {
        case US_DMA_CHANNEL_5:
            ConfigInfo->DmaChannel = 5;
            break;
        case US_DMA_CHANNEL_6:
            ConfigInfo->DmaChannel = 6;
            break;
        case US_DMA_CHANNEL_7:
            ConfigInfo->DmaChannel = 7;
            break;
        case US_DMA_CHANNEL_5_RESERVED:
            ConfigInfo->DmaChannel = 5;
            break;
        default:
            DebugPrint((1,"Ultra14fFindAdapter: Invalid DMA channel\n"));
            return SP_RETURN_ERROR;
        } //end switch

        DebugPrint((2,"Ultra14f: DMA Configurated at %x\n",
                    ConfigInfo->DmaChannel));

    }   //end if

    //
    // Check if ISA TSR port is enabled.
    //

    if ((ScsiPortReadPortUchar(&baseIoAddress->Config2) & 0xC0) ==
         US_ISA_SECONDARY_ADDRESS) {

            DebugPrint((1,
                        "Ultra14fFindAdapter: ATDISK emulation at secondary address\n"));

            ConfigInfo->AtdiskSecondaryClaimed = TRUE;

    } else if ((ScsiPortReadPortUchar(&baseIoAddress->Config2) & 0xC0) ==
               US_ISA_PRIMARY_ADDRESS) {

            DebugPrint((1,
                        "Ultra24fConfiguration: ATDISK emulation at primary address\n"));

            ConfigInfo->AtdiskPrimaryClaimed = TRUE;
    }

    //
    // Fill in the access array information.
    //

    (*ConfigInfo->AccessRanges)[0].RangeStart =
        ScsiPortConvertUlongToPhysicalAddress(AdapterAddresses[*adapterCount - 1]);

    (*ConfigInfo->AccessRanges)[0].RangeLength = 16;
    (*ConfigInfo->AccessRanges)[0].RangeInMemory = FALSE;

    return SP_RETURN_FOUND;

} // end Ultra14fFindAdapter()


BOOLEAN
Ultra14fInitialize(
    IN PVOID HwDeviceExtension
    )

/*++

Routine Description:

    Inititialize adapter.

Arguments:

    HwDeviceExtension - HBA miniport driver's adapter data storage

Return Value:

    TRUE - if initialization successful.
    FALSE - if initialization unsuccessful.

--*/

{
    PHW_DEVICE_EXTENSION deviceExtension = HwDeviceExtension;
    PU14_BASEIO_ADDRESS u14_baseio_address = deviceExtension->U14_BaseIO_Address;
    UCHAR status;
    ULONG i;

    //
    // issue a Soft reset and a SCSI bus reset to Ultra14F
    //

    ScsiPortWritePortUchar(&u14_baseio_address->LocalDoorBellInterrupt,
                           US_HA_SOFT_RESET);

    ScsiPortStallExecution(500*1000); //stall about 0.5 seconds

    //
    // Wait up to 1500,000 microseconds (1.5 sec) for adapter to initialize
    // Keep polling for Soft Reset bit to be clear.
    //

    for (i = 0; i < 150000; i++) {

        ScsiPortStallExecution(10);

        status = ScsiPortReadPortUchar(
                     &u14_baseio_address->LocalDoorBellInterrupt);

        if (!(status & US_HA_SOFT_RESET)) {

            break;
        }
    }

    //
    // Check if reset failed or succeeded.
    //

    if (status & US_HA_SOFT_RESET) {
        DebugPrint((1, "Ultra14F, HwInitialize:  Soft reset failed.\n"));
    }

    //
    // Enable ICMINT and SINTEN
    //

    ScsiPortWritePortUchar(&u14_baseio_address->SystemDoorBellMask,
                           US_ENABLE_ICMINT+US_ENABLE_SYSTEM_DOORBELL);

    //
    // reset the ICMINT
    //

    ScsiPortWritePortUchar(&u14_baseio_address->SystemDoorBellInterrupt,
                           US_RESET_ICMINT);

    return(TRUE);

    //
    // Enable system doorbell interrupt and Incoming mail interrupt.
    //

    ScsiPortWritePortUchar(&u14_baseio_address->SystemDoorBellMask,
                          (US_ENABLE_ICMINT + US_ENABLE_SYSTEM_DOORBELL));

} // end Ultra14fInitialize()


BOOLEAN
Ultra14fStartIo(
    IN PVOID HwDeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    )

/*++

Routine Description:

    This routine is called from the SCSI port driver synchronized
    with the kernel to send an MSCP.

Arguments:

    HwDeviceExtension - HBA miniport driver's adapter data storage
    Srb - IO request packet

Return Value:

    TRUE

--*/

{
    PHW_DEVICE_EXTENSION deviceExtension = HwDeviceExtension;
    PU14_BASEIO_ADDRESS u14_baseio_address = deviceExtension->U14_BaseIO_Address;
    PSPECIFIC_LU_EXTENSION luExtension;
    PMSCP mscp;
    PSCSI_REQUEST_BLOCK abortedSrb;
    ULONG physicalMscp;
    ULONG length;
    ULONG i = 0;

    //
    // Check for ABORT command.
    //

    if (Srb->Function == SRB_FUNCTION_ABORT_COMMAND) {

        DebugPrint((1, "Ultra14fStartIo: Received Abort command\n"));

        //
        // Verify that SRB to abort is still outstanding.
        //

        abortedSrb = ScsiPortGetSrb(deviceExtension,
                                    Srb->PathId,
                                    Srb->TargetId,
                                    Srb->Lun,
                                    Srb->QueueTag);

        if (abortedSrb != Srb->NextSrb ||
            abortedSrb->SrbStatus != SRB_STATUS_PENDING) {

            DebugPrint((1, "Ultra14fStartIo: SRB to abort already completed\n"));

            //
            // Complete abort SRB.
            //

            Srb->SrbStatus = SRB_STATUS_ABORT_FAILED;

            ScsiPortNotification(RequestComplete,
                                 deviceExtension,
                                 Srb);
            //
            // Adapter ready for next request.
            //

            ScsiPortNotification(NextRequest,
                                 deviceExtension,
                                 NULL);

        } else {

            //
            // Check if interrupt pending.
            //

            if (ScsiPortReadPortUchar(&u14_baseio_address->SystemDoorBellInterrupt)
                & US_ICMINT) {

                DebugPrint((1,"Ultra14fStartIo: Interrupt pending\n"));

                //
                // Reset the ICMINT system doorbell interrupt.
                //

                ScsiPortWritePortUchar(&u14_baseio_address->SystemDoorBellInterrupt,
                                       US_RESET_ICMINT);

                //
                // Abort the outstanding SRB.
                //

                abortedSrb->SrbStatus = SRB_STATUS_ABORTED;

                ScsiPortNotification(RequestComplete,
                                     deviceExtension,
                                     abortedSrb);

                //
                // Complete abort SRB.
                //

                Srb->SrbStatus = SRB_STATUS_SUCCESS;

                ScsiPortNotification(RequestComplete,
                                     deviceExtension,
                                     Srb);

                //
                // Adapter ready for next request.
                //

                ScsiPortNotification(NextRequest,
                                     deviceExtension,
                                     NULL);
            } else {

                //
                // Ultra14f adapter does not support the abort command.
                // Reset the bus. The reset routine will complete all
                // outstanding requests and indicate ready for next request.
                //

                if (!Ultra14fResetBus(deviceExtension, Srb->PathId)) {

                    DebugPrint((1,
                                "Ultra14fStartIo: Reset scsi bus failed\n"));
                }

                //
                // Adapter ready for next request.
                //

                ScsiPortNotification(NextRequest,
                                     deviceExtension,
                                     NULL);
            }
        }

        return TRUE;

    } else {

        //
        // This is a request to a device.
        //

        mscp = Srb->SrbExtension;

        //
        // Save SRB back pointer in MSCP.
        //

        mscp->SrbAddress = Srb;
        mscp->AbortSrb = NULL;
    }

    //
    // Get MSCP physical address.
    //

    physicalMscp =
        ScsiPortConvertPhysicalAddressToUlong(
            ScsiPortGetPhysicalAddress(deviceExtension, NULL, mscp, &length));

    //
    // Assume physical address is contiguous for size of ECB.
    //

    ASSERT(length >= sizeof(MSCP));

    switch (Srb->Function) {

        case SRB_FUNCTION_EXECUTE_SCSI:

            //
            // Determine the logical unit that this request is for.
            //

            luExtension = ScsiPortGetLogicalUnit(deviceExtension,
                                         Srb->PathId,
                                         Srb->TargetId,
                                         Srb->Lun);
            //
            // Build MSCP for this request.
            //

            BuildMscp(deviceExtension, Srb, luExtension);

            break;

        default:

            //
            // Set error, complete request
            // and signal ready for next request.
            //

            Srb->SrbStatus = SRB_STATUS_INVALID_REQUEST;

            ScsiPortNotification(RequestComplete,
                         deviceExtension,
                         Srb);

            ScsiPortNotification(NextRequest,
                         deviceExtension,
                         NULL);

            return TRUE;

    } // end switch

    //
    // wait for a free OGM Slot (OGMINT to be clear)
    //

    for (i=0; i<50000; i++) {

        if (!(ScsiPortReadPortUchar(
            &u14_baseio_address->LocalDoorBellInterrupt) &
            US_OGMINT)) {
                break;

        } else {

            //
            // Stall 1 microsecond before trying again.
            //

            ScsiPortStallExecution(1);
        }
    }

    if (i == 50000) {

        //
        // Let operating system time out SRB.
        //

        DebugPrint((1,"Ultra14fStartIo: Timed out waiting for mailbox\n"));

    } else {

        //
        // Write MSCP pointer to mailbox.
        //

        ScsiPortWritePortUlong(&u14_baseio_address->OutGoingMailPointer,
                               physicalMscp);

        //
        // Issue a OGMINT to send to the host adapter
        //

        ScsiPortWritePortUchar(&u14_baseio_address->LocalDoorBellInterrupt,
                               US_OGMINT);

        if (!mscp->DisableDisconnect) {
    
            //
            // Adapter ready for next request.
            //
        
            ScsiPortNotification(NextRequest, deviceExtension);
    
        }
    }

    return TRUE;

} // end Ultra14fStartIo()


BOOLEAN
Ultra14fInterrupt(
    IN PVOID HwDeviceExtension
    )

/*++

Routine Description:

    This is the interrupt service routine for the Ultra14f SCSI adapter.
    It reads the system Doorbell interrupt register to determine if the
    adapter is indeed the source of the interrupt and clears the interrupt at
    the device.
    If the adapter is interrupting because a mailbox is full, the MSCP is
    retrieved to complete the request.

Arguments:

    HwDeviceExtension - HBA miniport driver's adapter data storage

Return Value:

    TRUE if MailboxIn full

--*/

{
    PHW_DEVICE_EXTENSION deviceExtension = HwDeviceExtension;
    PMSCP mscp;
    PSCSI_REQUEST_BLOCK srb;
    PU14_BASEIO_ADDRESS u14_baseio_address =
        deviceExtension->U14_BaseIO_Address;
    ULONG physicalMscp;

    //
    // Check interrupt pending.
    //

    if (!(ScsiPortReadPortUchar(&u14_baseio_address->SystemDoorBellInterrupt)
        & US_ICMINT)) {

        //
        // Handle spurious interrupt.
        //

        DebugPrint((2,"Ultra14fInterrupt: Spurious interrupt\n"));

        return FALSE;
    }

    //
    // Get physical address of MSCP
    //

    physicalMscp = ScsiPortReadPortUlong(
                       &u14_baseio_address->InComingMailPointer);

    //
    // Get virtual MSCP address.
    //

    mscp = ScsiPortGetVirtualAddress(deviceExtension,
                     ScsiPortConvertUlongToPhysicalAddress(physicalMscp));

    //
    // Make sure the physical address was valid.
    //

    if (mscp == NULL) {

        ScsiPortWritePortUchar(&u14_baseio_address->SystemDoorBellInterrupt,
                               US_RESET_ICMINT);

        DebugPrint((1,"\n\nUltra14f Interrupt: recieve NULL MSCP\n"));

        return FALSE;

    } else {

        //
        // Get SRB from MSCP.
        //

        srb = mscp->SrbAddress;

        //
        // Check status of completing MSCP in mailbox. and update SRB statuses
        //

        if (!((mscp->AdapterStatus) | (mscp->TargetStatus))) {

                srb->SrbStatus = SRB_STATUS_SUCCESS;
                srb->ScsiStatus = SCSISTAT_GOOD;

        } else {

            //
            // Translate adapter status to SRB status
            // and log error if necessary.
            //

            MapErrorToSrbStatus(deviceExtension, srb);

        }
    }

    if (mscp->DisableDisconnect) {

        //
        // Adapter ready for next request.
        //
    
        ScsiPortNotification(NextRequest, deviceExtension);

    }

    //
    // Call notification routine for the SRB.
    //

    ScsiPortNotification(RequestComplete,
                         (PVOID)deviceExtension,
                         srb);

    //
    // Reset the ICMINT system doorbell interrupt.
    //

    ScsiPortWritePortUchar(&u14_baseio_address->SystemDoorBellInterrupt,
                           US_RESET_ICMINT);

    return TRUE;

} // end Ultra14fInterrupt()


VOID
BuildMscp(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb,
    IN PSPECIFIC_LU_EXTENSION luExtension
    )

/*++

Routine Description:

    Build MSCP for Ultra14f from SRB.

Arguments:

    DeviceExtenson
    SRB

Return Value:

    Nothing.

--*/

{
    PMSCP mscp = Srb->SrbExtension;
    ULONG length;

    //
    // Set MSCP command.
    //

    mscp->OperationCode = MSCP_OPERATION_SCSI_COMMAND;

    //
    // Check SRB for disabled disconnect.
    //
    // NOTE: UltraStor 14f SCSI adapter does not
    //       support disabling synchronous transfer
    //       per request.
    //

    if (Srb->SrbFlags & SRB_FLAGS_DISABLE_DISCONNECT) {
        mscp->DisableDisconnect = TRUE;
    } else {

        //
        // Earlier ultra14f firmware has a bug with disconnect.
        // A counter is used here to check whether or not to disable
        // disconnect due to disconnect related problem that already happened
        // for the requested device,
        //

        if (luExtension->DisconnectErrorCount >= 5) {

            if (luExtension->DisconnectErrorCount == 5) {

                ScsiPortLogError(DeviceExtension,
                                 NULL,
                                 0,
                                 DeviceExtension->HostTargetId,
                                 0,
                                 SP_BAD_FW_WARNING,
                                 1 << 16);
            }

            mscp->DisableDisconnect = TRUE;

        }
        else {

            mscp->DisableDisconnect = FALSE;

        }
    }


    //
    // Set channel, target id and lun.
    //

    mscp->Channel = Srb->PathId;
    mscp->TargetId = Srb->TargetId;
    mscp->Lun = Srb->Lun;

    //
    // Set CDB length and copy to MSCP.
    //

    mscp->CdbLength = Srb->CdbLength;
    ScsiPortMoveMemory(mscp->Cdb, Srb->Cdb, Srb->CdbLength);

    //
    // Build SGL in MSCP if data transfer.
    //

    if (Srb->DataTransferLength > 0) {

        //
        // Build scattergather descriptor list.
        //

        BuildSgl(DeviceExtension, Srb);

        //
        // Set transfer direction.
        //

        if (Srb->SrbFlags & SRB_FLAGS_DATA_OUT) {

            //
            // Write request.
            //

            mscp->TransferDirection = MSCP_TRANSFER_OUT;

        } else if (Srb->SrbFlags & SRB_FLAGS_DATA_IN) {

            //
            // Read request.
            //

            mscp->TransferDirection = MSCP_TRANSFER_IN;
        }

    } else {

        //
        // Set up MSCP for no data transfer.
        //

        mscp->TransferDirection = MSCP_NO_TRANSFER;
        mscp->DataLength = 0;
        mscp->ScatterGather = FALSE;
        mscp->SgDescriptorCount = 0;
    }

    //
    // Setup auto sense if necessary.
    //

    if (Srb->SenseInfoBufferLength != 0 &&
        !(Srb->SrbFlags & SRB_FLAGS_DISABLE_AUTOSENSE)) {

        //
        // Set the flag to enable auto sense and fill in the address and
        // length of the sense buffer.
        //

        mscp->RequestSenseLength = Srb->SenseInfoBufferLength;
        mscp->RequestSensePointer = ScsiPortConvertPhysicalAddressToUlong(
            ScsiPortGetPhysicalAddress(DeviceExtension,
                                       Srb,
                                       Srb->SenseInfoBuffer,
                                       &length));

        ASSERT(length >= Srb->SenseInfoBufferLength);

    } else {

        //
        // Ultra14F uses nonzero request sense pointer
        // as an indication of autorequestsense.
        //

        mscp->RequestSenseLength = 0;
        mscp->RequestSensePointer = 0;
    }

    //
    // Zero out command link, status and abort fields.
    //

    mscp->CommandLink = 0;
    mscp->CommandLinkId = 0;
    mscp->AdapterStatus = 0;
    mscp->TargetStatus = 0;
    mscp->AbortSrb = 0;

    //
    // Bypass cache.
    //

    mscp->UseCache = FALSE;

    return;

} // end BuildMscp()


VOID
BuildSgl(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    )

/*++

Routine Description:

    This routine builds a scatter/gather descriptor list in the MSCP.

Arguments:

    DeviceExtension
    Srb

Return Value:

    None

--*/

{
    PVOID dataPointer = Srb->DataBuffer;
    ULONG bytesLeft = Srb->DataTransferLength;
    PMSCP mscp = Srb->SrbExtension;
    PSDL sdl = &mscp->Sdl;
    ULONG physicalSdl;
    ULONG physicalAddress;
    ULONG length;
    ULONG descriptorCount = 0;

    //
    // Get physical SDL address.
    //

    physicalSdl = ScsiPortConvertPhysicalAddressToUlong(
        ScsiPortGetPhysicalAddress(DeviceExtension, NULL,
        sdl, &length));

    //
    // Assume physical memory contiguous for sizeof(SGL) bytes.
    //

    ASSERT(length >= sizeof(SDL));

    //
    // Create SDL segment descriptors.
    //

    do {

        //
        // Get physical address and length of contiguous
        // physical buffer.
        //

        physicalAddress =
            ScsiPortConvertPhysicalAddressToUlong(
                ScsiPortGetPhysicalAddress(DeviceExtension,
                                           Srb,
                                           dataPointer,
                                           &length));

        //
        // If length of physical memory is more
        // than bytes left in transfer, use bytes
        // left as final length.
        //

        if  (length > bytesLeft) {
            length = bytesLeft;
        }

        sdl->Descriptor[descriptorCount].Address = physicalAddress;
        sdl->Descriptor[descriptorCount].Length = length;

        //
        // Adjust counts.
        //

        dataPointer = (PUCHAR)dataPointer + length;
        bytesLeft -= length;
        descriptorCount++;

    } while (bytesLeft);

    //
    // Check for only one descriptor. As an optimization, in these
    // cases, use nonscattergather requests.
    //

    if (descriptorCount == 1) {

        //
        // Set descriptor count to 0.
        //

        mscp->SgDescriptorCount = 0;

        //
        // Set data pointer to data buffer.
        //

        mscp->DataPointer = physicalAddress;

        //
        // Set data transfer length.
        //

        mscp->DataLength = Srb->DataTransferLength;

        //
        // Clear scattergather bit.
        //

        mscp->ScatterGather = FALSE;

    } else {

        //
        // Write SDL count to MSCP.
        //

        mscp->SgDescriptorCount = (UCHAR)descriptorCount;

        //
        // Write SGL address to ECB.
        //

        mscp->DataPointer = physicalSdl;

        mscp->DataLength = Srb->DataTransferLength;

        //
        // Indicate scattergather operation.
        //

        mscp->ScatterGather = TRUE;
    }

    return;

} // end BuildSgl()


BOOLEAN
Ultra14fResetBus(
    IN PVOID HwDeviceExtension,
    IN ULONG PathId
)

/*++

Routine Description:

    Reset Ultra14f SCSI adapter and SCSI bus.

Arguments:

    HwDeviceExtension - HBA miniport driver's adapter data storage

Return Value:

    Nothing.

--*/

{

    PHW_DEVICE_EXTENSION deviceExtension = HwDeviceExtension;
    PU14_BASEIO_ADDRESS u14_baseio_address =
        deviceExtension->U14_BaseIO_Address;
    ULONG j;

    //
    // The Ultra14f only supports a single SCSI channel.
    //

    UNREFERENCED_PARAMETER(PathId);


    //
    // Reset SCSI bus.
    //

    ScsiPortWritePortUchar(&u14_baseio_address->LocalDoorBellInterrupt,
                          (US_HA_SOFT_RESET | US_ENABLE_SCSI_BUS_RESET));

    //
    // Wait for local processor to clear both reset bits.
    //

    for (j=0; j<200000; j++) {

        if (!(ScsiPortReadPortUchar(&u14_baseio_address->LocalDoorBellInterrupt) &
              (US_HA_SOFT_RESET | US_ENABLE_SCSI_BUS_RESET))) {

            break;
        }

        ScsiPortStallExecution(10);

    } // end for (j=0 ...

    if (j == 200000) {

        DebugPrint((1,"Ultra14fResetBus: Reset timed out\n"));

        //
        // Busy has not gone low.  Assume the card is gone.
        // Log the error and fail the request.
        //

        ScsiPortLogError(deviceExtension,
                         NULL,
                         0,
                         deviceExtension->HostTargetId,
                         0,
                         SP_INTERNAL_ADAPTER_ERROR,
                         3 << 16);

        return FALSE;
    }

    // ScsiPortStallExecution(200*1000);   // has to wait about 2 seconds
                                           // for F/W to be actually ready
                                           // don't do this for now until
                                           // Ha_Inquiry is implemented later

    //
    // Complete all outstanding requests.
    //

    ScsiPortCompleteRequest(deviceExtension,
                            (UCHAR)0,
                            (UCHAR)-1,
                            (UCHAR)-1,
                            SRB_STATUS_BUS_RESET);

    //
    // Adapter ready for next request.
    //

    ScsiPortNotification(NextRequest,
                         deviceExtension,
                         NULL);

    return TRUE;

} // end Ultra14fResetBus()


VOID
MapErrorToSrbStatus(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    )
/*++

Routine Description:

    Translate Ultra14f error to SRB error.

Arguments:

    Device Extension for logging error
    SRB

Return Value:

    Updated SRB

--*/

{
    ULONG logError = 0;
    UCHAR srbStatus;
    PMSCP mscp = Srb->SrbExtension;
    PSPECIFIC_LU_EXTENSION luExtension;

    switch (mscp->AdapterStatus) {

    case MSCP_NO_ERROR:
        srbStatus = SRB_STATUS_ERROR | SRB_STATUS_AUTOSENSE_VALID;
        break;

    case MSCP_SELECTION_TIMEOUT:
        srbStatus = SRB_STATUS_SELECTION_TIMEOUT;
        DebugPrint((1,"MapErrorToSrbStatus: Target SCSI device not found\n"));
        break;

    case MSCP_BUS_UNDER_OVERRUN:
        DebugPrint((1,"MapErrorToSrbStatus: Data over/underrun\n"));
        srbStatus = SRB_STATUS_DATA_OVERRUN;
        break;

    case MSCP_UNEXPECTED_BUS_FREE:

        //
        // Ultra14F older firmware has a bug that causes unexpected bus free
        // error and invalid SCSI command errors during disconnect. A counter
        // is used here to keep track of the number of such error for each
        // device. When the number of maximum disconnected error count is
        // reached, the driver will disable disconnect for the device with the
        // disconnected problem.
        //

        DebugPrint((1,"MapErrorToSrbStatus: Unexpected bus free\n"));

        //
        // Determine the logical unit that this request is for.
        //

        luExtension = ScsiPortGetLogicalUnit(DeviceExtension,
                                         Srb->PathId,
                                         Srb->TargetId,
                                         Srb->Lun);
        logError = SP_PROTOCOL_ERROR;
        luExtension->DisconnectErrorCount += 1;
        srbStatus = SRB_STATUS_UNEXPECTED_BUS_FREE;
        break;

    case MSCP_ILLEGAL_SCSI_COMMAND:

        //
        // Ultra14F older firmware has a bug that causes unexpected bus free
        // error and invalid SCSI command errors during disconnect. A counter
        // is used here to keep track of the number of such error for each
        // device. When the number of maximum disconnected error count is
        // reached, the driver will disable disconnect for the device with the
        // disconnected problem.
        //

        DebugPrint((1,"MapErrorToSrbStatus: Illegal SCSI Command\n"));

        //
        // Determine the logical unit that this request is for.
        //

        luExtension = ScsiPortGetLogicalUnit(DeviceExtension,
                                         Srb->PathId,
                                         Srb->TargetId,
                                         Srb->Lun);
        luExtension->DisconnectErrorCount += 1;
        srbStatus = SRB_STATUS_INVALID_REQUEST;
        break;

    case MSCP_INVALID_PHASE_CHANGE:
        DebugPrint((1,"MapErrorToSrbStatus: Invalid bus phase\n"));
        logError = SP_PROTOCOL_ERROR;
        srbStatus = SRB_STATUS_PHASE_SEQUENCE_FAILURE;
        break;

    case MSCP_INVALID_COMMAND:
    case MSCP_INVALID_PARAMETER:
    case MSCP_INVALID_DATA_LIST:
    case MSCP_INVALID_SG_LIST:
//    case MSCP_ILLEGAL_SCSI_COMMAND:
        DebugPrint((1,"MapErrorToSrbStatus: Invalid command %x\n", mscp->AdapterStatus));
        srbStatus = SRB_STATUS_INVALID_REQUEST;
        break;

    case MSCP_BUS_RESET_ERROR:
        DebugPrint((1,"MapErrorToSrbStatus: Bus reset\n"));
        srbStatus = SRB_STATUS_BUS_RESET;
        break;

    case MSCP_ABORT_NOT_FOUND:
    case MSCP_SCSI_BUS_ABORT_ERROR:
        DebugPrint((1,"MapErrorToSrbStatus: Abort not found\n"));
        srbStatus = SRB_STATUS_ABORT_FAILED;
        break;

    default:
        logError = SP_PROTOCOL_ERROR;
        srbStatus = SRB_STATUS_ERROR;
        break;

    } // end switch ...

    //
    // Log error if indicated.
    //

    if (logError) {

        ScsiPortLogError(
            DeviceExtension,
            Srb,
            Srb->PathId,
            Srb->TargetId,
            Srb->Lun,
            logError,
            2 << 16 | mscp->AdapterStatus
            );
    }

    //
    // Set SRB status.
    //

    Srb->SrbStatus = srbStatus;

    //
    // Set target SCSI status in SRB.
    //

    Srb->ScsiStatus = mscp->TargetStatus;

    return;

} // end MapErrorToSrbStatus()