summaryrefslogblamecommitdiffstats
path: root/private/ntos/miniport/ultra124/ultra124.c
blob: 6b23bcb65a37ed67c014cea4875f659684da4d22 (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
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
















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                 
/* Copyright (c) 1992  Microsoft/UltrStor Corporation

Module Name:
    ultra124.c

Abstract:
    This is the port driver for the ULTRASTOR 124 EISA SCSI adapter.

Authors:
    Mike Glass / Edward Syu

Environment:
    kernel mode only

Notes:

Revision History:
-----------------------------------------------------------------------------
 Date           Name    Description

08/25/92 Syu    First time created. Modify from 24f source code.

11/04/92 Fong   * Change MSCP_TARGET_ERROR from 91h to A0H
                * Handle Aborted command in Startio
04/05/93 fong   fix Handle Inquiry data problem for MARCH NT release
-----------------------------------------------------------------------------

--*/

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

//
// Device extension
//

typedef struct _HW_DEVICE_EXTENSION {
    PEISA_CONTROLLER EisaController;
    UCHAR HostTargetId;
    PSCSI_REQUEST_BLOCK CSIRSrb;        // byte 24
} HW_DEVICE_EXTENSION, *PHW_DEVICE_EXTENSION;

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

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

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

BOOLEAN
Ultra124Initialize(
    IN PVOID DeviceExtension
    );

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

BOOLEAN
Ultra124Interrupt(
    IN PVOID DeviceExtension
    );

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

//
// This function is called from Ultra124StartIo.
//

BOOLEAN
BuildMscp(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    );

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

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

//
// This function is called from Ultra124Interrupt.
//

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

BOOLEAN
ReadDriveCapacity(
    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 124 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 = Ultra124Initialize;
    hwInitializationData.HwFindAdapter = Ultra124FindAdapter;
    hwInitializationData.HwStartIo = Ultra124StartIo;
    hwInitializationData.HwInterrupt = Ultra124Interrupt;
    hwInitializationData.HwResetBus = Ultra124ResetBus;

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

    hwInitializationData.NumberOfAccessRanges = 1;
    hwInitializationData.AdapterInterfaceType = Eisa;

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

    hwInitializationData.NeedPhysicalAddresses = TRUE;

    //
    // Indicate multiple requests per LUN is supported.
    //

    hwInitializationData.MultipleRequestPerLu = TRUE;

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

    hwInitializationData.AutoRequestSense = TRUE;

    //
    // 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
Ultra124FindAdapter(
    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;
    PEISA_CONTROLLER eisaController;
    ULONG eisaSlotNumber;
    PVOID eisaAddress;
    PULONG adapterCount = Context;
    UCHAR interruptLevel;

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

    for (eisaSlotNumber=*adapterCount + 1;
         eisaSlotNumber<MAXIMUM_EISA_SLOTS;
         eisaSlotNumber++) {

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

        (*adapterCount)++;

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

        eisaAddress = ScsiPortGetDeviceBase(deviceExtension,
                                            ConfigInfo->AdapterInterfaceType,
                                            ConfigInfo->SystemIoBusNumber,
                                            ScsiPortConvertUlongToPhysicalAddress(0x1000 * eisaSlotNumber),
                                            0x1000,
                                            TRUE);

        eisaController =
            (PEISA_CONTROLLER)((PUCHAR)eisaAddress + EISA_ADDRESS_BASE);

        if (ScsiPortReadPortUlong(&eisaController->BoardId) ==
                ULTRASTOR_124_EISA_ID) {
            DebugPrint((1,
                        "Ultra124: Adapter found at EISA slot %d\n",
                        eisaSlotNumber));
            break;
        }

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

        ScsiPortFreeDeviceBase(deviceExtension,
                               eisaAddress);

    } // end for (eisaSlotNumber ...

    if (!(eisaSlotNumber < MAXIMUM_EISA_SLOTS)) {

        //
        // 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 base address of EISA registers in device extension.
    //

    deviceExtension->EisaController = eisaController;
    deviceExtension->HostTargetId = ConfigInfo->InitiatorBusId[0] = 0x07; //fix to 7 for U124

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

    ConfigInfo->MaximumTransferLength = MAXIMUM_TRANSFER_LENGTH;

    //
    // Maximum number of physical segments is 32.
    //

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

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

    interruptLevel =
        ScsiPortReadPortUchar(&eisaController->InterruptLevel) & 0xF0;

    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,"Ultra124FindAdapter: No interrupt level\n"));
            return SP_RETURN_ERROR;
    }

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

    (*ConfigInfo->AccessRanges)[0].RangeStart =
        ScsiPortConvertUlongToPhysicalAddress(0x1000 * eisaSlotNumber + EISA_ADDRESS_BASE);
    (*ConfigInfo->AccessRanges)[0].RangeLength = sizeof(EISA_CONTROLLER);
    (*ConfigInfo->AccessRanges)[0].RangeInMemory = FALSE;

    return SP_RETURN_FOUND;

} // end Ultra124FindAdapter()


BOOLEAN
Ultra124Initialize(
    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;
    PEISA_CONTROLLER eisaController = deviceExtension->EisaController;

    DebugPrint((3,"Ultra124Initialize: Enter routine\n"));


    //
    // Enable system doorbell interrupt.
    //

    ScsiPortWritePortUchar(&eisaController->SystemDoorBellMask,
        US_ENABLE_SYSTEM_INTERRUPT+US_ENABLE_CSIR_INTERRUPT+US_ENABLE_MSCP_INTERRUPT);

    return(TRUE);

} // end Ultra124Initialize()


BOOLEAN
Ultra124StartIo(
    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;
    PEISA_CONTROLLER eisaController = deviceExtension->EisaController;
    PMSCP mscp;
    PUCHAR mscpbuffer;
    PSCSI_REQUEST_BLOCK abortedSrb;
    ULONG physicalMscp;
    ULONG length;
    ULONG i = 0;

    DebugPrint((2,"Ultra124StartIo: Enter routine\n"));

    //DEBUGSTOP();

    ASSERT(Srb->SrbStatus == SRB_STATUS_PENDING);

    //
    // Make sure that the request is for a valid SCSI bus and LUN as
    // the Ultra124 SCSI card does random things if address is wrong.
    //

    if (Srb->PathId != 0 || Srb->Lun != 0) {

        //
        // The Ultra124 card only supports logical unit zero and one bus.
        //
        DebugPrint((1,"Ultra124StartIo: Invalid LUN\n"));

        Srb->SrbStatus = SRB_STATUS_INVALID_LUN;
        ScsiPortNotification(RequestComplete,
                             deviceExtension,
                             Srb);
        //
        // Adapter ready for next request.
        //

        ScsiPortNotification(NextRequest,
                             deviceExtension,
                             NULL);

        return TRUE;
    }

    //
    // Get MSCP from SRB.
    //

    mscp = Srb->SrbExtension;
    mscpbuffer = (PUCHAR) mscp;

    for (i=0; i<sizeof(MSCP); i++)                              //initialize as 0
        (UCHAR) mscpbuffer[i] = 0;

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

    mscp->SrbAddress = Srb;

    //
    // 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:
            DebugPrint((3,"Ultra124StartIo: SCSI Execute IO\n"));

            if (Srb->Cdb[0] == SCSIOP_READ_CAPACITY) {
                DebugPrint((3,"Ultra124StartIo: SCSI Read Capacity\n"));

                if (ReadDriveCapacity(deviceExtension, Srb)) {
                    ScsiPortNotification(NextRequest,
                                         deviceExtension,
                                         NULL);

                    return TRUE;
                }
                else {
                    Srb->SrbStatus = SRB_STATUS_INVALID_REQUEST;
                    ScsiPortNotification(RequestComplete,
                                         deviceExtension,
                                         Srb);
                    ScsiPortNotification(NextRequest,
                                         deviceExtension,
                                          NULL);

                    return TRUE;
                }
            }
            else {
            //
            // Build MSCP for this request.
            //
                if (!(BuildMscp(deviceExtension, Srb))) {
                    //
                    // Set error, complete request
                    // and signal ready for next request.
                    //
                    DebugPrint((1,"Ultra124StartIo: BuildMscp Fail\n"));
                    Srb->SrbStatus = SRB_STATUS_INVALID_REQUEST;
                    ScsiPortNotification(RequestComplete,
                                         deviceExtension,
                                         Srb);
                     ScsiPortNotification(NextRequest,
                                         deviceExtension,
                                         NULL);

                    return TRUE;
                }

            }
            break;

//{$8_24
        case SRB_FUNCTION_RESET_BUS:

            //
            // Reset Ultra124 and SCSI bus.
            //

            DebugPrint((1, "Ultra124StartIo: Reset bus request received\n"));

            if (!Ultra124ResetBus( deviceExtension, Srb->PathId)) {
                 DebugPrint((1,"Ultra124StartIo: Reset bus failed\n"));
                 Srb->SrbStatus = SRB_STATUS_ERROR;
             }
            else {
                DebugPrint((1,"Ultra124StartIo: Reset bus O.K.\n"));
                Srb->SrbStatus = SRB_STATUS_SUCCESS;
            }

            ScsiPortNotification(RequestComplete,
                                 deviceExtension,
                                 Srb);
            ScsiPortNotification(NextRequest,
                                 deviceExtension,
                                 NULL);

            return TRUE;

//$11_4
        case  SRB_FUNCTION_ABORT_COMMAND:

            DebugPrint((1, "Ultra124StartIo: 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, "Ultra124StartIo: 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 {

                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);

            }
            return TRUE;

//$8_24}
        default:

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

            DebugPrint((1,"Ultra124StartIo: Request Not Support\n"));

            Srb->SrbStatus = SRB_STATUS_INVALID_REQUEST;

            ScsiPortNotification(RequestComplete,
                                 deviceExtension,
                                 Srb);
            ScsiPortNotification(NextRequest,
                                 deviceExtension,
                                 NULL);

            return TRUE;

    } // end switch

    //
    // Write MSCP pointer and command to mailbox.
    //


    DebugPrint((3,"Ultra124StartIo: Check if OGM available\n"));

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

        if (!(ScsiPortReadPortUchar(&eisaController->LocalDoorBellInterrupt) & US_MSCP_IN_USE)) {
            break;
        }
        else {
            //
            // Stall 1 microsecond before trying again.
            //
            ScsiPortStallExecution(1);
        }
    }

    if (i == 500) {
        //
        // Let operating system time out SRB.
        //
        DebugPrint((1,"Ultra124StartIo: Timed out waiting for mailbox\n"));
            //
            // 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;

    }
    else {

        //
        // Write MSCP pointer to mailbox.
        //
        DebugPrint((2,"Ultra124StartIo: Send out OGM (Log.Addr %lx)\n",mscp));
        ScsiPortWritePortUlong(&eisaController->OutGoingMailPointer,
                               physicalMscp);
        //
        // Send MAIL OUT
        // Ring the local doorbell.
        //
        ScsiPortWritePortUchar(&eisaController->LocalDoorBellInterrupt,
                               US_MSCP_IN_USE);
    }

    //
    // Adapter ready for next request.
    //
    ScsiPortNotification(NextLuRequest,
                         deviceExtension,
                         Srb->PathId,
                         Srb->TargetId,
                         Srb->Lun);

    return TRUE;

} // end Ultra124StartIo()


BOOLEAN
Ultra124Interrupt(
    IN PVOID HwDeviceExtension
    )

/*++

Routine Description:

    This is the interrupt service routine for the Ultra124 SCSI adapter.
    It reads the 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;
    PEISA_CONTROLLER eisaController = deviceExtension->EisaController;
    ULONG physicalMscp;
    UCHAR mscpStatus, csirStatus;
    UCHAR InterruptMode;
    UCHAR CDBOpcode;
    ULONG BlockSize, TotalBlock;
    PINQUIRYDATA InquiryBuffer;
    PSCSI_READCAPACITY ReadCapacityBuffer;

    CONST UCHAR VendorId[] = "ULTRSTOR";
    CONST UCHAR ProductId[] = "U124 DiskArray  ";
    CONST UCHAR ProductRevisionLevel[] = "1.00";
    UCHAR i;

    //
    // Check interrupt pending.
    //
    // Check CSIR command


    DebugPrint((2,"Ultra124Interrupt: Enter routine\n"));

    //DEBUGSTOP();


    InterruptMode = ScsiPortReadPortUchar(&eisaController->SystemDoorBellInterrupt);

    InterruptMode &= US_CSIR_COMPLETE + US_MSCP_COMPLETE;

    switch (InterruptMode) {

        case US_CSIR_COMPLETE:

            DebugPrint((3, "U124Interrupt: CSIR interrupt\n"));

            csirStatus = ScsiPortReadPortUchar(&eisaController->CSPByte0);

            srb = deviceExtension->CSIRSrb;

            if (!(csirStatus & CSIR_ERROR)) {

                CDBOpcode = srb->Cdb[0];

                switch (CDBOpcode) {

                    case SCSIOP_READ_CAPACITY:

                        TotalBlock = ScsiPortReadPortUlong((PULONG)(&eisaController->CSPByte2));
                        BlockSize = 0x200;
                        DebugPrint((3, "U124Interrupt(ReadCapacity): TotalBock %ld\n",TotalBlock ));
                        ReadCapacityBuffer = (PSCSI_READCAPACITY) srb->DataBuffer;
                        DebugPrint((3, "U124Interrupt: SRB Data Buffer -> %lx\n",
                                    srb->DataBuffer));
                        DebugPrint((3, "U124Interrupt: Inquiry Buffer -> %lx\n",
                                        ReadCapacityBuffer));
                        INTEL4_TO_SCSI4((PSCSI_4_BYTE) ReadCapacityBuffer->BlockCount,
                                        (PINTEL_4_BYTE) &TotalBlock);
                        INTEL4_TO_SCSI4((PSCSI_4_BYTE) ReadCapacityBuffer->BlockLength,
                                        (PINTEL_4_BYTE) &BlockSize);
                        break;

                    default:
                        break;
                }

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

            }
            else {
                DebugPrint((1, "U124Interrupt: CSIR interrupt with Error\n"));
                                MapErrorToSrbStatus(deviceExtension, srb);
             }

            // Call notification routine for the SRB.

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

            // Reset system doorbell interrupt.

            ScsiPortWritePortUchar(&eisaController->SystemDoorBellInterrupt,
                                   US_RESET_CSIR_COMPLETE);

            return TRUE;

        case US_MSCP_COMPLETE:

            DebugPrint((3, "U124Interrupt: MSCP interrupt\n"));
            physicalMscp = ScsiPortReadPortUlong(&eisaController->InComingMailPointer);
            //
            // Get virtual MSCP address.
            //
            mscp = ScsiPortGetVirtualAddress(deviceExtension,
                                             ScsiPortConvertUlongToPhysicalAddress(physicalMscp));
            //
            // Make sure the physical address was valid.
            //
            if (mscp == NULL) {
                DebugPrint((1,"Ultra124Interrupt: No MSCP found\n"));
                // Reset system doorbell interrupt.
                ScsiPortWritePortUchar(&eisaController->SystemDoorBellInterrupt,
                                       US_RESET_MSCP_COMPLETE);

                return FALSE;
            }

            srb = mscp->SrbAddress;             // get SRB
            if (srb == NULL) {

                DebugPrint((1, "U124Interrupt: Srb in MSCP is NULL.\n"));

                ScsiPortWritePortUchar(&eisaController->SystemDoorBellInterrupt,
                                       US_RESET_MSCP_COMPLETE);
                return FALSE;
            }

            DebugPrint((2, "U124Interrupt: MSCP Log. Addr ->%lx\n",mscp));
            DebugPrint((2, "U124Interrupt: SRB Log. Addr ->%lx\n",srb));
            mscpStatus = mscp->OperationCode;       //Error Code

            if (mscpStatus & MSCP_ERROR) {

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

                DebugPrint((1, "U124Interrupt: MSCP Done Fail.\n"));
                MapErrorToSrbStatus(deviceExtension, srb);
            }
            else {
                DebugPrint((3, "U124Interrupt: MSCP Status O.K.\n"));
                CDBOpcode = srb->Cdb[0];

                switch (CDBOpcode) {
                    case SCSIOP_INQUIRY:
                        DebugPrint((3, "U124Interrupt: SCSI Inquiry Command done\n"));

                        InquiryBuffer = (PINQUIRYDATA) srb->DataBuffer;

                        //
                        // clear the InquiryBuffer before filling in data to avoid
                        // garbage data in buffer (because some field in Inquiry data
                        // structure are defined in bits value.
                        //

                        for (i=0; i<srb->DataTransferLength; i++) {
                          *((PUCHAR) InquiryBuffer+i) = 0;
                        }

                        DebugPrint((3, "U124Interrupt: SRB Data Buffer -> %lx\n",
                                    srb->DataBuffer));

                        DebugPrint((3, "U124Interrupt: Inquiry Buffer -> %lx\n",
                                    InquiryBuffer));
                        InquiryBuffer->DeviceType = DIRECT_ACCESS_DEVICE;
                        InquiryBuffer->DeviceTypeModifier = 0;                  //not removable

                        InquiryBuffer->Versions = 0x02;                 //scsi 2
                        InquiryBuffer->ResponseDataFormat = 0x02;                       //scsi 2
                        InquiryBuffer->AdditionalLength = 0x8f;                 //scsi 2

                        InquiryBuffer->SoftReset = 0;                   //scsi 2
                        InquiryBuffer->CommandQueue = 1;
                        InquiryBuffer->Reserved2 = 0;
                        InquiryBuffer->LinkedCommands = 1;
                        InquiryBuffer->Synchronous = 1;
                        InquiryBuffer->Wide16Bit = 0;
                        InquiryBuffer->Wide32Bit = 0;
                        InquiryBuffer->RelativeAddressing = 1;

                        for (i=0; i<8; i++)
                                (UCHAR) InquiryBuffer->VendorId[i] = (UCHAR) VendorId[i];

                        for (i=0; i<16; i++)
                                (UCHAR) InquiryBuffer->ProductId[i] = (UCHAR) ProductId[i];

                        for (i=0; i<4; i++)
                                (UCHAR) InquiryBuffer->ProductRevisionLevel[i] = (UCHAR) ProductRevisionLevel[i];

                        break;

                    default:
                        DebugPrint((2, "U124Interrupt: SCSI command -> %x\n", CDBOpcode));
                        break;
                }
                srb->SrbStatus = SRB_STATUS_SUCCESS;
                srb->ScsiStatus = SCSISTAT_GOOD;
            }
            //
            // Call notification routine for the SRB.
            //
            ScsiPortNotification(RequestComplete,
                                 (PVOID)deviceExtension,
                                 srb);
            ScsiPortWritePortUchar(&eisaController->SystemDoorBellInterrupt,
                                   US_RESET_MSCP_COMPLETE);

            return TRUE;

        default:
            //
            // Handle spurious interrupt.
            //
            DebugPrint((1,"Ultra124Interrupt: Spurious interrupt\n"));
            //
            // Log the error.
            //

            ScsiPortLogError(HwDeviceExtension,
                             NULL,
                             0,
                             deviceExtension->HostTargetId,
                             0,
                             SP_INTERNAL_ADAPTER_ERROR,
                             0
                             );

            return FALSE;

    }


} // end Ultra124Interrupt()


BOOLEAN
BuildMscp(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    )

/*++

Routine Description:

    Build MSCP for Ultra124 from SRB.

Arguments:

    DeviceExtenson
    SRB

Return Value:
        TRUE:   MSCP command ready to send
        FALSE:  no U124 command match this SCSI pass thru command
--*/

{
    PMSCP mscp = Srb->SrbExtension;
    UCHAR CDBopcode;


    DebugPrint((3,"BuildMscp: Enter routine\n"));

    //
    // Set MSCP command.
    //

    mscp->DriveControl = Srb->TargetId << 5;
    CDBopcode = Srb->Cdb[0];                                //get SCSI CDB opcode
    DebugPrint((2, "U124BuildMSCP: SCSI command -> %x\n", CDBopcode));

    switch (CDBopcode) {
        case SCSIOP_INQUIRY:
                mscp->OperationCode = MSCP_TEST_DRIVE_READY;  //use for inquiry
                break;

        case SCSIOP_TEST_UNIT_READY:
                mscp->OperationCode = MSCP_TEST_DRIVE_READY;
                break;

        case SCSIOP_REZERO_UNIT:
                mscp->OperationCode = MSCP_REZERO_DRIVE;
                break;

        case SCSIOP_READ:
                mscp->OperationCode = MSCP_READ_SECTOR;
                SCSI4_TO_INTEL4((PINTEL_4_BYTE)&mscp->DriveLBA, (PSCSI_4_BYTE)&Srb->Cdb[C10_LBA_4]);
                break;

        case SCSIOP_READ6:
                mscp->OperationCode = MSCP_READ_SECTOR;
                SCSI2_TO_INTEL4((PINTEL_4_BYTE)&mscp->DriveLBA, (PSCSI_2_BYTE)&Srb->Cdb[C6_LBA_2]);
                break;

        case SCSIOP_WRITE:
                mscp->OperationCode = MSCP_WRITE_SECTOR;
                SCSI4_TO_INTEL4((PINTEL_4_BYTE)&mscp->DriveLBA, (PSCSI_4_BYTE)&Srb->Cdb[C10_LBA_4]);
                break;

        case SCSIOP_WRITE6:
                mscp->OperationCode = MSCP_WRITE_SECTOR;
                SCSI2_TO_INTEL4((PINTEL_4_BYTE)&mscp->DriveLBA, (PSCSI_2_BYTE)&Srb->Cdb[C6_LBA_2]);
                break;

        case SCSIOP_VERIFY:
                mscp->OperationCode = MSCP_VERIFY_SECTOR;
                SCSI4_TO_INTEL4((PINTEL_4_BYTE)&mscp->DriveLBA, (PSCSI_4_BYTE)&Srb->Cdb[C10_LBA_4]);
                break;

        case SCSIOP_VERIFY6:
                mscp->OperationCode = MSCP_VERIFY_SECTOR;
                SCSI2_TO_INTEL4((PINTEL_4_BYTE)&mscp->DriveLBA, (PSCSI_2_BYTE)&Srb->Cdb[C6_LBA_2]);
                break;

        case SCSIOP_SEEK:
                mscp->OperationCode = MSCP_SEEK_DRIVE;
                SCSI4_TO_INTEL4((PINTEL_4_BYTE)&mscp->DriveLBA, (PSCSI_4_BYTE)&Srb->Cdb[C10_LBA_4]);
                break;

        case SCSIOP_SEEK6:
                mscp->OperationCode = MSCP_SEEK_DRIVE;
                SCSI2_TO_INTEL4((PINTEL_4_BYTE)&mscp->DriveLBA, (PSCSI_2_BYTE)&Srb->Cdb[C6_LBA_2]);
                break;

        default:
                return FALSE;                   // no U124 command match this SCSI pass thru command
                break;

    }

    //
    // Build SGL in MSCP if data transfer.
    //
    if (Srb->DataTransferLength > 0) {
        //
        // Build scattergather descriptor list.
        //
        BuildSgl(DeviceExtension, Srb);
    }
    else {
        //
        // Set up MSCP for no data transfer.
        //
        mscp->DataLength = 0;
        mscp->SgDescriptorCount = 0;
    }
    DebugPrint((2, "U124StartIO: Build MSCP done, MSCP-> %lx\n",mscp));

    return TRUE;

} // 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 {
        DebugPrint((3, "BuildSgl: Data buffer %lx\n", dataPointer));
        //
        // Get physical address and length of contiguous
        // physical buffer.
        //
        physicalAddress =
            ScsiPortConvertPhysicalAddressToUlong(
                ScsiPortGetPhysicalAddress(DeviceExtension,
                                           Srb,
                                           dataPointer,
                                           &length));

        DebugPrint((3, "BuildSgl: Physical address %lx\n", physicalAddress));
        DebugPrint((3, "Sgl: Data length %lx\n", length));
        DebugPrint((3, "BuildSgl: Bytes left %lx\n", bytesLeft));

        //
        // 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.
        //

    }
    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->DriveControl |= EnableScatterGather;
    }

    DebugPrint((2,"BuildSgl: SG-> %d, XfrBuffer-> %lx, XfrLength-> %lx\n",
                   descriptorCount, mscp->DataPointer, mscp->DataLength));
    return;

} // end BuildSgl()


BOOLEAN
Ultra124ResetBus(
    IN PVOID HwDeviceExtension,
    IN ULONG PathId
)

/*++

Routine Description:

    Reset Ultra124 SCSI adapter and SCSI bus.

Arguments:

    HwDeviceExtension - HBA miniport driver's adapter data storage

Return Value:

    Nothing.

--*/

{
    PHW_DEVICE_EXTENSION deviceExtension = HwDeviceExtension;
    PEISA_CONTROLLER eisaController = deviceExtension->EisaController;
    ULONG j;

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



    UNREFERENCED_PARAMETER(PathId);
    DebugPrint((1,"ResetBus: Reset Ultra124 and SCSI bus\n"));
    DebugPrint((3,"Ultra124ResetBUS: Enter routine\n"));

    //
    // Reset SCSI bus (use Reset HostAdapter).
    //
    ScsiPortWritePortUchar(&eisaController->LocalDoorBellInterrupt,
                           US_HBA_RESET);

    //
    // Wait for local processor to clear reset bit.
    //
    for (j=0; j<200000; j++) {
        if (!(ScsiPortReadPortUchar(&eisaController->LocalDoorBellInterrupt) &
                                    US_HBA_RESET)) {
            DebugPrint((1,"Ultra124ResetBUS: Reset H/A O.K.\n"));
            break;
        }

        ScsiPortStallExecution(10);

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


    if (j == 200000) {
        DebugPrint((1,"Ultra124ResetBUS: Reset H/A Fail\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;

    }
    DebugPrint((1,"Ultra124ResetBUS: Reset H/A Fail\n"));

    //
    // Complete all outstanding requests.
    //
    ScsiPortCompleteRequest(deviceExtension,
                            (UCHAR)0,
                            (UCHAR)-1,
                            (UCHAR)-1,
                            SRB_STATUS_BUS_RESET);

    return TRUE;

} // end Ultra124ResetBus()


VOID
MapErrorToSrbStatus(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    )

/*++

Routine Description:

    Translate Ultra124 error to SRB error.

Arguments:

    Device Extension for logging error
    SRB

Return Value:

    Updated SRB

--*/

{
    ULONG logError = 0;
    UCHAR srbStatus;
    PMSCP mscp = Srb->SrbExtension;
    PUCHAR mscpbuffer;
    PSENSE_DATA sensebuffer = Srb->SenseInfoBuffer;
    UCHAR i;

    DebugPrint((3,"Ultra124MapErrorToSrbStatus: Enter routine\n"));
    mscpbuffer = (PUCHAR) Srb->SrbExtension;
    Srb->ScsiStatus = SCSISTAT_GOOD;                        //only check-condition set when TARGET error

    switch (mscp->OperationCode) {
        case MSCP_TARGET_ERROR:

            //
            // clear the sensebuffer to 0
            //
              for (i=0; i< Srb->SenseInfoBufferLength; i++) {
                *((PUCHAR) sensebuffer+i) = 0;
              }

            DebugPrint((1,"MapErrorToSrbStatus: HA_TARGET_ERROR\n"));
            DebugPrint((1,"MapErrorToSrbStatus: srb->SenseInfoBufferLength = %d\n",Srb->SenseInfoBufferLength));

            sensebuffer->SenseKey = (UCHAR) mscpbuffer[7];
            sensebuffer->AdditionalSenseCode = (UCHAR) mscpbuffer[6];
            sensebuffer->AdditionalSenseCodeQualifier = (UCHAR) mscpbuffer[5];
            Srb->ScsiStatus = SCSISTAT_CHECK_CONDITION;
            srbStatus = SRB_STATUS_ERROR | SRB_STATUS_AUTOSENSE_VALID;
            break;

        case MSCP_DRIVE_FAULT:
            DebugPrint((1,"MapErrorToSrbStatus: Device not found\n"));
            srbStatus = SRB_STATUS_NO_DEVICE;
            break;

        case MSCP_DRIVE_NOT_PRESENT:
        case MSCP_LOG_DRIVE_UNDEFINE:
        case MSCP_LOG_DRIVE_NOT_READY:
            DebugPrint((1,"MapErrorToSrbStatus: MSCP_LOG_DRIVE_NOT_READY\n"));
            srbStatus = SRB_STATUS_SELECTION_TIMEOUT;
            break;

        case MSCP_ADAPTER_ERROR:
            switch ((UCHAR) mscpbuffer[7]) {
                case HA_SELECTION_TIME_OUT:
                    DebugPrint((1,"MapErrorToSrbStatus: HA_SELECTION_TIME_OUT\n"));
                    srbStatus = SRB_STATUS_SELECTION_TIMEOUT;
                    break;

                case HA_DATA_OVER_UNDER_RUN:
                    DebugPrint((1,"MapErrorToSrbStatus: HA_DATA_OVER_UNDER_RUN\n"));
                    logError = SP_PROTOCOL_ERROR;
                    srbStatus = SRB_STATUS_DATA_OVERRUN;
                    break;

                case HA_BUS_FREE_ERROR:
                    DebugPrint((1,"MapErrorToSrbStatus: HA_BUS_FREE\n"));
                    logError = SP_PROTOCOL_ERROR;
                    srbStatus = SRB_STATUS_UNEXPECTED_BUS_FREE;
                    break;

                case HA_INVALID_PHASE:
                    DebugPrint((1,"MapErrorToSrbStatus: HA_INVALID_PHASE\n"));
                    logError = SP_PROTOCOL_ERROR;
                    srbStatus = SRB_STATUS_PHASE_SEQUENCE_FAILURE;
                    break;

                case HA_ILLEGAL_COMMAND:
                    DebugPrint((1,"MapErrorToSrbStatus: HA_ILLEGAL_COMMAND\n"));
                    srbStatus = SRB_STATUS_INVALID_REQUEST;
                    break;

                case HA_REQ_SENSE_ERROR:
                    DebugPrint((1,"MapErrorToSrbStatus: HA_REQ_SENSE_ERROR\n"));
                    srbStatus = SRB_STATUS_REQUEST_SENSE_FAILED;
                    break;

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

                case HA_TIME_OUT_ERROR:
                    DebugPrint((1,"MapErrorToSrbStatus: HA_DATA_TIME_OUT_ERROR\n"));
                    srbStatus = SRB_STATUS_COMMAND_TIMEOUT;
                    break;

                default:
                    DebugPrint((1,"MapErrorToSrbStatus: General Failure\n"));
                    srbStatus = SRB_STATUS_ERROR;

            }
            break;

        case MSCP_INVALID_COMMAND:
        case MSCP_INVALID_PARAMETER:
        case MSCP_INVALID_DATA_LIST:
            DebugPrint((1,"MapErrorToSrbStatus: Invalid command\n"));
            srbStatus = SRB_STATUS_INVALID_REQUEST;
            break;

        default:
            DebugPrint((1,"MapErrorToSrbStatus: Unknown Error\n"));
            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->OperationCode
                        );
    }

    //
    // Set SRB status.
    //
    Srb->SrbStatus = srbStatus;

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

} // end MapErrorToSrbStatus()


BOOLEAN
ReadDriveCapacity(
    IN PHW_DEVICE_EXTENSION DeviceExtension,
    IN PSCSI_REQUEST_BLOCK Srb
    )

/*++

Routine Description:

    Build Read Drive Capacity CSIR command from SRB

Arguments:

    DeviceExtenson
    SRB

Return Value:
        TRUE:   CSIR command
        FALSE:  CSIR command not ready
--*/

{
    PHW_DEVICE_EXTENSION deviceExtension = DeviceExtension;
    PEISA_CONTROLLER eisaController = deviceExtension->EisaController;
    PMSCP mscp = Srb->SrbExtension;
    ULONG i;
    UCHAR CDBopcode;


    DebugPrint((3,"ReadDriveCapcity: Enter routine\n"));

    //
    // Set CSIR command.
    //

    deviceExtension->CSIRSrb = Srb;                 //save for later reference
    CDBopcode = Srb->Cdb[0];                        //get SCSI CDB opcode
    mscp->CSIRBuffer.CSIROpcode =  CSIR_READ_CAPACITY;
    mscp->CSIRBuffer.CSIR1 = (Srb->TargetId) << 5;   //drive ID
    ScsiPortWritePortUchar(&eisaController->CSPByte0,
                           CSIR_READ_CAPACITY);
    ScsiPortWritePortUchar(&eisaController->CSPByte1,
                           mscp->CSIRBuffer.CSIR1);

    for (i=0; i<500; i++) {
        if (!(ScsiPortReadPortUchar(&eisaController->LocalDoorBellInterrupt) &
            US_CSIR_IN_USE)) {

            DebugPrint((3,"Ultra124StartIo: Read Capacity (CSIR)\n"));
            break;
        }
        else {
            //
            // Stall 1 microsecond before trying again.
            //
            ScsiPortStallExecution(1);
        }
    }

    if (i == 500) {
        //
        // Let operating system time out SRB.
        //
        DebugPrint((1,"Ultra124StartIo: Timed out waiting for CSIR\n"));
        return FALSE;

    }
    else {
        //
        // Send CSIR command IN
        // Ring the local doorbell.
        //

        DebugPrint((1,"Ultra124StartIo: Send out CSIR\n"));
        ScsiPortWritePortUchar(&eisaController->LocalDoorBellInterrupt,
                               US_CSIR_IN_USE);

    }

    return TRUE;

} // end ReadDriveCapacity()