1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
|
/* $OpenBSD: mpt_openbsd.c,v 1.24 2005/07/20 03:20:06 marco Exp $ */
/* $NetBSD: mpt_netbsd.c,v 1.7 2003/07/14 15:47:11 lukem Exp $ */
/*
* Copyright (c) 2004 Milos Urbanek
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* Copyright (c) 2003 Wasabi Systems, Inc.
* All rights reserved.
*
* Written by Jason R. Thorpe for Wasabi Systems, Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed for the NetBSD Project by
* Wasabi Systems, Inc.
* 4. The name of Wasabi Systems, Inc. may not be used to endorse
* or promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Copyright (c) 2000, 2001 by Greg Ansley
* Partially derived from Matt Jacob's ISP driver.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice immediately at the beginning of the file, without modification,
* this list of conditions, and the following disclaimer.
* 2. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* Additional Copyright (c) 2002 by Matthew Jacob under same license.
*/
/*
* mpt_openbsd.c:
*
* OpenBSD-specific routines for LSI Fusion adapters. Includes some
* bus_dma glue, and SCSI glue.
*
* Adapted from the NetBSD "mpt" driver by Milos Urbanek for
* ZOOM International, s.r.o.
*/
#include <sys/cdefs.h>
/* __KERNEL_RCSID(0, "$NetBSD: mpt_netbsd.c,v 1.7 2003/07/14 15:47:11 lukem Exp $"); */
#include <dev/ic/mpt.h> /* pulls in all headers */
void mpt_run_ppr(mpt_softc_t *, int);
int mpt_ppr(mpt_softc_t *, struct scsi_link *, int, int);
int mpt_poll(mpt_softc_t *, struct scsi_xfer *, int);
void mpt_timeout(void *);
void mpt_done(mpt_softc_t *, uint32_t);
int mpt_run_xfer(mpt_softc_t *, struct scsi_xfer *);
void mpt_check_xfer_settings(mpt_softc_t *, struct scsi_xfer *, MSG_SCSI_IO_REQUEST *);
void mpt_ctlop(mpt_softc_t *, void *vmsg, uint32_t);
void mpt_event_notify_reply(mpt_softc_t *, MSG_EVENT_NOTIFY_REPLY *);
int mpt_action(struct scsi_xfer *);
void mpt_minphys(struct buf *);
#if NBIO > 0
int mpt_ioctl(struct device *, u_long, caddr_t);
#endif
struct cfdriver mpt_cd = {
NULL, "mpt", DV_DULL
};
/* the below structure is so we have a default dev struct for our link struct */
static struct scsi_device mpt_dev = {
NULL, /* Use default error handler */
NULL, /* have a queue, served by this */
NULL, /* have no async handler */
NULL, /* Use default 'done' routine */
};
enum mpt_scsi_speed { U320, U160, U80 };
/*
* try speed and
* return 0 if failed
* return 1 if passed
*/
int
mpt_ppr(mpt_softc_t *mpt, struct scsi_link *sc_link, int speed, int flags)
{
fCONFIG_PAGE_SCSI_DEVICE_0 page0;
fCONFIG_PAGE_SCSI_DEVICE_1 page1;
uint8_t tp;
int error;
struct scsi_inquiry_data inqbuf;
if (mpt->verbose > 1) {
mpt_prt(mpt, "Entering PPR");
}
if (mpt->is_fc) {
/*
* SCSI transport settings don't make any sense for
* Fibre Channel; silently ignore the request.
*/
return 1; /* success */
}
/*
* Always allow disconnect; we don't have a way to disable
* it right now, in any case.
*/
mpt->mpt_disc_enable |= (1 << sc_link->target);
/*
* Enable tagged queueing.
*/
if (sc_link->quirks & SDEV_NOTAGS)
mpt->mpt_tag_enable &= ~(1 << sc_link->target);
else
mpt->mpt_tag_enable |= (1 << sc_link->target);
page1 = mpt->mpt_dev_page1[sc_link->target];
/*
* Set the wide/narrow parameter for the target.
*/
if (sc_link->quirks & SDEV_NOWIDE)
page1.RequestedParameters &= ~MPI_SCSIDEVPAGE1_RP_WIDE;
else {
page1.RequestedParameters |= MPI_SCSIDEVPAGE1_RP_WIDE;
}
/*
* Set the synchronous parameters for the target.
*/
page1.RequestedParameters &=
~(MPI_SCSIDEVPAGE1_RP_MIN_SYNC_PERIOD_MASK |
MPI_SCSIDEVPAGE1_RP_MAX_SYNC_OFFSET_MASK |
MPI_SCSIDEVPAGE1_RP_DT | MPI_SCSIDEVPAGE1_RP_QAS |
MPI_SCSIDEVPAGE1_RP_IU);
if (!(sc_link->quirks & SDEV_NOSYNC)) {
int factor, offset, np;
/*
* Factor:
* 0x08 = U320 = 6.25ns
* 0x09 = U160 = 12.5ns
* 0x0a = U80 = 25ns
*/
factor = (mpt->mpt_port_page0.Capabilities >> 8) & 0xff;
offset = (mpt->mpt_port_page0.Capabilities >> 16) & 0xff;
np = 0;
switch (speed) {
case U320:
/* do nothing */
break;
case U160:
factor = 0x09; /* force U160 */
break;
case U80:
factor = 0x0a; /* force U80 */
}
if (factor < 0x9) {
/* Ultra320 enable QAS & IU */
np |= MPI_SCSIDEVPAGE1_RP_QAS | MPI_SCSIDEVPAGE1_RP_IU;
}
if (factor < 0xa) {
/* >= Ultra160 enable DT transfer */
np |= MPI_SCSIDEVPAGE1_RP_DT;
}
np |= (factor << 8) | (offset << 16);
page1.RequestedParameters |= np;
}
/* write parameters out to chip */
if (mpt_write_cfg_page(mpt, sc_link->target, &page1.Header)) {
mpt_prt(mpt, "unable to write Device Page 1");
return 0;
}
/* make sure the parameters were written */
if (mpt_read_cfg_page(mpt, sc_link->target, &page1.Header)) {
mpt_prt(mpt, "unable to read back Device Page 1");
return 0;
}
mpt->mpt_dev_page1[sc_link->target] = page1;
if (mpt->verbose > 1) {
mpt_prt(mpt,
"SPI Target %d Page 1: RequestedParameters %x Config %x",
sc_link->target,
mpt->mpt_dev_page1[sc_link->target].RequestedParameters,
mpt->mpt_dev_page1[sc_link->target].Configuration);
}
/*
* use INQUIRY for PPR two reasons:
* 1) actually transfer data at requested speed
* 2) no need to test for TUR QUIRK
*/
error = scsi_inquire(sc_link, &inqbuf, flags);
if (error) {
mpt_prt(mpt, "Invalid INQUIRY on target: %d", sc_link->target);
return 0;
}
/* read page 0 back to figure out if the PPR worked */
page0 = mpt->mpt_dev_page0[sc_link->target];
if (mpt_read_cfg_page(mpt, sc_link->target, &page0.Header)) {
mpt_prt(mpt, "unable to read Device Page 0");
return 0;
}
if (mpt->verbose > 1) {
mpt_prt(mpt,
"SPI Tgt %d Page 0: NParms %x Information %x",
sc_link->target,
page0.NegotiatedParameters, page0.Information);
}
if (!(page0.NegotiatedParameters & 0x07) && (speed == U320)) {
/*
* if lowest 3 aren't set the PPR probably failed,
* retry with other parameters
*/
if (mpt->verbose > 1) {
mpt_prt(mpt, "U320 PPR failed");
}
return 0;
}
if ((((page0.NegotiatedParameters >> 8) & 0xff) > 0x09) &&
(speed == U160)) {
/* if transfer period > 0x09 then U160 PPR failed, retry */
if (mpt->verbose > 1) {
mpt_prt(mpt, "U160 PPR failed");
}
return 0;
}
/*
* Bit 3 - PPR rejected: IOC sets this if the device rejects PPR.
* Bit 2 - WDTR rejected: IOC sets this if the device rejects WDTR.
* Bit 1 - SDTR Rejected: IOC sets this if the device rejects SDTR.
* Bit 0 - 1 A SCSI SDTR, WDTR, or PPR negotiation has occurred.
*/
if (page0.Information & 0x0e) {
/* target rejected PPR message */
mpt_prt(mpt, "Target %d rejected PPR message with %02x",
sc_link->target,
(uint8_t)page0.Information);
return 0;
}
/* print PPR results */
switch ((page0.NegotiatedParameters >> 8) & 0xff) {
case 0x08:
tp = 160;
break;
case 0x09:
tp = 80;
break;
case 0x0a:
tp = 40;
break;
case 0x0b:
tp = 20;
break;
case 0x0c:
tp = 10;
break;
default:
tp = 0;
}
mpt_prt(mpt,
"target %d %s at %dMHz width %dbit offset %d QAS %d DT %d IU %d",
sc_link->target,
tp ? "Synchronous" : "Asynchronous",
tp,
(page0.NegotiatedParameters & 0x20000000) ? 16 : 8,
(page0.NegotiatedParameters >> 16) & 0xff,
(page0.NegotiatedParameters & 0x04) ? 1 : 0,
(page0.NegotiatedParameters & 0x02) ? 1 : 0,
(page0.NegotiatedParameters & 0x01) ? 1 : 0);
return 1; /* success */
}
/*
* Run PPR on all attached devices
*/
void
mpt_run_ppr(mpt_softc_t *mpt, int flags)
{
struct scsi_link *sc_link;
struct device *dev;
u_int8_t target;
u_int16_t buswidth;
/* walk device list */
for (dev = TAILQ_FIRST(&alldevs); dev != NULL;
dev = TAILQ_NEXT(dev, dv_list)) {
if (dev->dv_parent == (struct device *)mpt) {
/* found scsibus softc */
buswidth = ((struct scsi_link *)&mpt->sc_link)->
adapter_buswidth;
/* printf("mpt_softc: %x scsibus: %x buswidth: %d\n",
* mpt, dev, buswidth); */
/* walk target list */
for (target = 0; target < buswidth; target++) {
sc_link = ((struct scsibus_softc *)dev)->
sc_link[target][0];
if ((sc_link != NULL)) {
/* got a device! run PPR */
/* skip CPU devices since they
* can crash at U320 speeds */
if ((sc_link->inqdata.device & SID_TYPE)
== T_PROCESSOR) {
continue;
}
if (mpt_ppr(mpt, sc_link, U320, flags)){
mpt->mpt_negotiated_speed
[target] = U320;
continue;
}
if (mpt_ppr(mpt, sc_link, U160, flags)){
mpt->mpt_negotiated_speed
[target] = U160;
continue;
}
if (mpt_ppr(mpt, sc_link, U80, flags)) {
mpt->mpt_negotiated_speed
[target] = U80;
continue;
}
} /* sc_link */
} /* for target */
} /* if dev */
} /* end for dev */
}
/*
* Complete attachment of hardware, include subdevices.
*/
void
mpt_attach(mpt_softc_t *mpt)
{
struct scsi_link *lptr = &mpt->sc_link;
mpt->bus = 0; /* XXX ?? */
/* Fill in the scsi_adapter. */
mpt->sc_adapter.scsi_cmd = mpt_action;
mpt->sc_adapter.scsi_minphys = mpt_minphys;
/* Fill in the prototype scsi_link */
lptr->adapter_softc = mpt;
lptr->device = &mpt_dev;
lptr->adapter = &mpt->sc_adapter;
lptr->flags = 0;
lptr->luns = 8;
if (mpt->is_fc) {
lptr->adapter_buswidth = 256;
lptr->adapter_target = 256;
} else {
lptr->adapter_buswidth = 16;
lptr->adapter_target = mpt->mpt_ini_id;
}
lptr->openings = MPT_MAX_REQUESTS(mpt) / lptr->adapter_buswidth;
#ifdef MPT_DEBUG
mpt->verbose = 2;
#endif
#if NBIO > 0
if (bio_register(&mpt->mpt_dev, mpt_ioctl) != 0)
panic("%s: controller registration failed",
mpt->mpt_dev.dv_xname);
#endif
mpt_prt(mpt, "IM support: %x", mpt->im_support);
(void) config_found(&mpt->mpt_dev, lptr, scsiprint);
/* done attaching now walk targets and PPR them */
/* FC does not do PPR */
if (!mpt->is_fc) {
mpt_run_ppr(mpt, SCSI_POLL);
}
}
int
mpt_dma_mem_alloc(mpt_softc_t *mpt)
{
bus_dma_segment_t reply_seg, request_seg;
int reply_rseg, request_rseg;
bus_addr_t pptr, end;
caddr_t vptr;
size_t len;
int error, i;
/* Check if we have already allocated the reply memory. */
if (mpt->reply != NULL)
return (0);
/*
* Allocate the request pool. This isn't really DMA'd memory,
* but it's a convenient place to do it.
*/
len = sizeof(request_t) * MPT_MAX_REQUESTS(mpt);
mpt->request_pool = malloc(len, M_DEVBUF, M_WAITOK);
if (mpt->request_pool == NULL) {
printf("%s: unable to allocate request pool\n",
mpt->mpt_dev.dv_xname);
return (ENOMEM);
}
bzero(mpt->request_pool, len);
/*
* Allocate DMA resources for reply buffers.
*/
error = bus_dmamem_alloc(mpt->sc_dmat, PAGE_SIZE, PAGE_SIZE, 0,
&reply_seg, 1, &reply_rseg, 0);
if (error) {
printf("%s: unable to allocate reply area, error = %d\n",
mpt->mpt_dev.dv_xname, error);
goto fail_0;
}
error = bus_dmamem_map(mpt->sc_dmat, &reply_seg, reply_rseg, PAGE_SIZE,
(caddr_t *) &mpt->reply, BUS_DMA_COHERENT/*XXX*/);
if (error) {
printf("%s: unable to map reply area, error = %d\n",
mpt->mpt_dev.dv_xname, error);
goto fail_1;
}
error = bus_dmamap_create(mpt->sc_dmat, PAGE_SIZE, 1, PAGE_SIZE,
0, 0, &mpt->reply_dmap);
if (error) {
printf("%s: unable to create reply DMA map, error = %d\n",
mpt->mpt_dev.dv_xname, error);
goto fail_2;
}
error = bus_dmamap_load(mpt->sc_dmat, mpt->reply_dmap, mpt->reply,
PAGE_SIZE, NULL, 0);
if (error) {
printf("%s: unable to load reply DMA map, error = %d\n",
mpt->mpt_dev.dv_xname, error);
goto fail_3;
}
mpt->reply_phys = mpt->reply_dmap->dm_segs[0].ds_addr;
/*
* Allocate DMA resources for request buffers.
*/
error = bus_dmamem_alloc(mpt->sc_dmat, MPT_REQ_MEM_SIZE(mpt),
PAGE_SIZE, 0, &request_seg, 1, &request_rseg, 0);
if (error) {
printf("%s: unable to allocate request area, error = %d\n",
mpt->mpt_dev.dv_xname, error);
goto fail_4;
}
error = bus_dmamem_map(mpt->sc_dmat, &request_seg, request_rseg,
MPT_REQ_MEM_SIZE(mpt), (caddr_t *) &mpt->request, 0);
if (error) {
printf("%s: unable to map request area, error = %d\n",
mpt->mpt_dev.dv_xname, error);
goto fail_5;
}
error = bus_dmamap_create(mpt->sc_dmat, MPT_REQ_MEM_SIZE(mpt), 1,
MPT_REQ_MEM_SIZE(mpt), 0, 0, &mpt->request_dmap);
if (error) {
printf("%s: unable to create request DMA map, error = %d\n",
mpt->mpt_dev.dv_xname, error);
goto fail_6;
}
error = bus_dmamap_load(mpt->sc_dmat, mpt->request_dmap, mpt->request,
MPT_REQ_MEM_SIZE(mpt), NULL, 0);
if (error) {
printf("%s: unable to load request DMA map, error = %d\n",
mpt->mpt_dev.dv_xname, error);
goto fail_7;
}
mpt->request_phys = mpt->request_dmap->dm_segs[0].ds_addr;
pptr = mpt->request_phys;
vptr = (caddr_t) mpt->request;
end = pptr + MPT_REQ_MEM_SIZE(mpt);
for (i = 0; pptr < end; i++) {
request_t *req = &mpt->request_pool[i];
req->index = i;
/* Store location of Request Data */
req->req_pbuf = pptr;
req->req_vbuf = vptr;
pptr += MPT_REQUEST_AREA;
vptr += MPT_REQUEST_AREA;
req->sense_pbuf = (pptr - MPT_SENSE_SIZE);
req->sense_vbuf = (vptr - MPT_SENSE_SIZE);
error = bus_dmamap_create(mpt->sc_dmat, MAXPHYS,
MPT_SGL_MAX, MAXPHYS, 0, 0, &req->dmap);
if (error) {
printf("%s: unable to create req %d DMA map, error = ",
"%d", mpt->mpt_dev.dv_xname, i, error);
goto fail_8;
}
}
return (0);
fail_8:
for (--i; i >= 0; i--) {
request_t *req = &mpt->request_pool[i];
if (req->dmap != NULL)
bus_dmamap_destroy(mpt->sc_dmat, req->dmap);
}
bus_dmamap_unload(mpt->sc_dmat, mpt->request_dmap);
fail_7:
bus_dmamap_destroy(mpt->sc_dmat, mpt->request_dmap);
fail_6:
bus_dmamem_unmap(mpt->sc_dmat, (caddr_t)mpt->request, PAGE_SIZE);
fail_5:
bus_dmamem_free(mpt->sc_dmat, &request_seg, request_rseg);
fail_4:
bus_dmamap_unload(mpt->sc_dmat, mpt->reply_dmap);
fail_3:
bus_dmamap_destroy(mpt->sc_dmat, mpt->reply_dmap);
fail_2:
bus_dmamem_unmap(mpt->sc_dmat, (caddr_t)mpt->reply, PAGE_SIZE);
fail_1:
bus_dmamem_free(mpt->sc_dmat, &reply_seg, reply_rseg);
fail_0:
free(mpt->request_pool, M_DEVBUF);
mpt->reply = NULL;
mpt->request = NULL;
mpt->request_pool = NULL;
return (error);
}
int
mpt_intr(void *arg)
{
mpt_softc_t *mpt = arg;
int nrepl = 0;
uint32_t reply;
/*
if ((mpt_read(mpt, MPT_OFFSET_INTR_STATUS) & MPT_INTR_REPLY_READY) == 0)
return (0);
*/
/*
* Speed up trick to save one PCI read.
* Reply FIFO replies 0xffffffff whenever
* MPT_OFFSET_INTR_STATUS & MPT_INTR_REPLY_READY == 0
*
*/
reply = mpt_pop_reply_queue(mpt);
if (reply == 0xffffffff) {
/* check doorbell, this is error path not IO path */
/* FIXME for now ignore strays and doorbells */
return (0);
}
while (reply != MPT_REPLY_EMPTY) {
nrepl++;
if (mpt->verbose > 1) {
if ((reply & MPT_CONTEXT_REPLY) != 0) {
/* Address reply; IOC has something to say */
mpt_print_reply(MPT_REPLY_PTOV(mpt, reply));
} else {
/* Context reply; all went well */
mpt_prt(mpt, "context %u reply OK", reply);
}
}
mpt_done(mpt, reply);
reply = mpt_pop_reply_queue(mpt);
}
return (nrepl != 0);
}
void
mpt_prt(mpt_softc_t *mpt, const char *fmt, ...)
{
va_list ap;
printf("%s: ", mpt->mpt_dev.dv_xname);
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
printf("\n");
}
int
mpt_poll(mpt_softc_t *mpt, struct scsi_xfer *xs, int count)
{
/* Timeouts are in msec, so we loop in 1000usec cycles */
while (count) {
mpt_intr(mpt);
if (xs->flags & ITSDONE) {
return (0);
}
delay(1000); /* only happens in boot, so ok */
count--;
}
return (1);
}
void
mpt_timeout(void *arg)
{
request_t *req = arg;
struct scsi_xfer *xs = req->xfer;
struct scsi_link *linkp = xs->sc_link;
mpt_softc_t *mpt = (void *) linkp->adapter_softc;
uint32_t oseq;
int s, index;
mpt_prt(mpt, "command timeout");
sc_print_addr(linkp);
s = splbio();
oseq = req->sequence;
mpt->timeouts++;
if (mpt_intr(mpt)) {
if (req->sequence != oseq) {
mpt_prt(mpt, "recovered from command timeout");
splx(s);
return;
}
}
mpt_prt(mpt,
"timeout on request index = 0x%x, seq = 0x%08x",
req->index, req->sequence);
mpt_check_doorbell(mpt);
mpt_prt(mpt, "Status 0x%08x, Mask 0x%08x, Doorbell 0x%08x",
mpt_read(mpt, MPT_OFFSET_INTR_STATUS),
mpt_read(mpt, MPT_OFFSET_INTR_MASK),
mpt_read(mpt, MPT_OFFSET_DOORBELL));
mpt_prt(mpt, "request state: %s", mpt_req_state(req->debug));
if (mpt->verbose > 1)
mpt_print_scsi_io_request((MSG_SCSI_IO_REQUEST *)req->req_vbuf);
for(index = 0; index < MPT_MAX_REQUESTS(mpt); index++)
if (req == &mpt->request_pool[index]) {
req->debug = REQ_TIMEOUT;
break;
}
mpt_done(mpt, index);
splx(s);
}
void
mpt_done(mpt_softc_t *mpt, uint32_t reply)
{
struct scsi_xfer *xs = NULL;
struct scsi_link *linkp;
int index;
request_t *req;
MSG_REQUEST_HEADER *mpt_req;
MSG_SCSI_IO_REPLY *mpt_reply;
if ((reply & MPT_CONTEXT_REPLY) == 0) {
/* context reply (ok) */
mpt_reply = NULL;
index = reply & MPT_CONTEXT_MASK;
} else {
/* address reply (error) */
/* XXX BUS_DMASYNC_POSTREAD XXX */
mpt_reply = MPT_REPLY_PTOV(mpt, reply);
if (mpt->verbose > 1) {
uint32_t *pReply = (uint32_t *) mpt_reply;
mpt_prt(mpt, "Address Reply (index %u):",
mpt_reply->MsgContext & 0xffff);
mpt_prt(mpt, "%08x %08x %08x %08x",
pReply[0], pReply[1], pReply[2], pReply[3]);
mpt_prt(mpt, "%08x %08x %08x %08x",
pReply[4], pReply[5], pReply[6], pReply[7]);
mpt_prt(mpt, "%08x %08x %08x %08x",
pReply[8], pReply[9], pReply[10], pReply[11]);
}
index = mpt_reply->MsgContext;
}
/*
* Address reply with MessageContext high bit set.
* This is most likely a notify message, so we try
* to process it, then free it.
*/
if ((index & 0x80000000) != 0) {
if (mpt_reply != NULL)
mpt_ctlop(mpt, mpt_reply, reply);
else
mpt_prt(mpt, "mpt_done: index 0x%x, NULL reply", index);
return;
}
/* Did we end up with a valid index into the table? */
if (index < 0 || index >= MPT_MAX_REQUESTS(mpt)) {
mpt_prt(mpt, "mpt_done: invalid index (0x%x) in reply", index);
return;
}
req = &mpt->request_pool[index];
/* Make sure memory hasn't been trashed. */
if (req->index != index) {
mpt_prt(mpt, "mpt_done: corrupted request_t (0x%x)", index);
return;
}
MPT_SYNC_REQ(mpt, req, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
mpt_req = req->req_vbuf;
/* Short cut for task management replies; nothing more for us to do. */
if (mpt_req->Function == MPI_FUNCTION_SCSI_TASK_MGMT) {
if (mpt->verbose > 1)
mpt_prt(mpt, "mpt_done: TASK MGMT");
goto done;
}
if (mpt_req->Function == MPI_FUNCTION_PORT_ENABLE)
goto done;
/*
* At this point, it had better be a SCSI I/O command, but don't
* crash if it isn't.
*/
if (mpt_req->Function != MPI_FUNCTION_SCSI_IO_REQUEST) {
if (mpt->verbose > 1)
mpt_prt(mpt, "mpt_done: unknown Function 0x%x (0x%x)",
mpt_req->Function, index);
goto done;
}
/* Recover scsi_xfer from the request structure. */
xs = req->xfer;
/* Can't have a SCSI command without a scsi_xfer. */
if (xs == NULL) {
mpt_prt(mpt,
"mpt_done: no scsi_xfer, index = 0x%x, seq = 0x%08x",
req->index, req->sequence);
mpt_prt(mpt, "request state: %s", mpt_req_state(req->debug));
mpt_prt(mpt, "mpt_request:");
mpt_print_scsi_io_request((MSG_SCSI_IO_REQUEST *)req->req_vbuf);
if (mpt_reply != NULL) {
mpt_prt(mpt, "mpt_reply:");
mpt_print_reply(mpt_reply);
} else {
mpt_prt(mpt, "context reply: 0x%08x", reply);
}
goto done;
}
timeout_del(&xs->stimeout);
linkp = xs->sc_link;
/*
* If we were a data transfer, unload the map that described
* the data buffer.
*/
if (xs->datalen != 0) {
bus_dmamap_sync(mpt->sc_dmat, req->dmap, 0,
req->dmap->dm_mapsize,
(xs->flags & SCSI_DATA_IN) ? BUS_DMASYNC_POSTREAD
: BUS_DMASYNC_POSTWRITE);
bus_dmamap_unload(mpt->sc_dmat, req->dmap);
}
if (req->debug == REQ_TIMEOUT) {
xs->error = XS_TIMEOUT;
xs->status = SCSI_OK;
xs->resid = 0;
goto done;
} else if (mpt_reply == NULL) {
/*
* Context reply; report that the command was
* successful!
*
* Also report the xfer mode, if necessary.
*/
xs->error = XS_NOERROR;
xs->status = SCSI_OK;
xs->resid = 0;
goto done;
}
xs->status = mpt_reply->SCSIStatus;
switch (mpt_reply->IOCStatus) {
case MPI_IOCSTATUS_SCSI_DATA_OVERRUN:
xs->error = XS_DRIVER_STUFFUP;
break;
case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN:
/*
* Yikes! Tagged queue full comes through this path!
*
* So we'll change it to a status error and anything
* that returns status should probably be a status
* error as well.
*/
xs->resid = xs->datalen - mpt_reply->TransferCount;
if (mpt_reply->SCSIState &
MPI_SCSI_STATE_NO_SCSI_STATUS) {
xs->error = XS_DRIVER_STUFFUP;
break;
}
/* FALLTHROUGH */
case MPI_IOCSTATUS_SUCCESS:
case MPI_IOCSTATUS_SCSI_RECOVERED_ERROR:
switch (xs->status) {
case SCSI_OK:
xs->resid = 0;
break;
case SCSI_CHECK:
xs->error = XS_SENSE;
break;
case SCSI_BUSY:
xs->error = XS_BUSY;
break;
case SCSI_QUEUE_FULL:
xs->error = XS_TIMEOUT;
xs->retries++;
break;
default:
sc_print_addr(linkp);
mpt_prt(mpt, "invalid status code %d", xs->status);
xs->error = XS_DRIVER_STUFFUP;
break;
}
break;
case MPI_IOCSTATUS_BUSY:
case MPI_IOCSTATUS_INSUFFICIENT_RESOURCES:
xs->error = XS_BUSY;
break;
case MPI_IOCSTATUS_SCSI_INVALID_BUS:
case MPI_IOCSTATUS_SCSI_INVALID_TARGETID:
case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
xs->error = XS_SELTIMEOUT;
break;
case MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
xs->error = XS_DRIVER_STUFFUP;
break;
case MPI_IOCSTATUS_SCSI_TASK_TERMINATED:
xs->error = XS_DRIVER_STUFFUP;
break;
case MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
/* XXX */
xs->error = XS_DRIVER_STUFFUP;
break;
case MPI_IOCSTATUS_SCSI_IOC_TERMINATED:
/* XXX */
xs->error = XS_DRIVER_STUFFUP;
break;
case MPI_IOCSTATUS_SCSI_EXT_TERMINATED:
/* XXX This is a bus-reset */
xs->error = XS_DRIVER_STUFFUP;
break;
default:
/* XXX unrecognized HBA error */
xs->error = XS_DRIVER_STUFFUP;
break;
}
if (mpt_reply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_VALID) {
memcpy(&xs->sense, req->sense_vbuf,
sizeof(xs->sense));
} else if (mpt_reply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_FAILED) {
/*
* This will cause the scsi layer to issue
* a REQUEST SENSE.
*/
if (xs->status == SCSI_CHECK)
xs->error = XS_BUSY;
}
done:
/* If IOC done with this requeset, free it up. */
if (mpt_reply == NULL || (mpt_reply->MsgFlags & 0x80) == 0)
mpt_free_request(mpt, req);
/* If address reply, give the buffer back to the IOC. */
if (mpt_reply != NULL)
mpt_free_reply(mpt, (reply << 1));
if (xs != NULL) {
xs->flags |= ITSDONE;
scsi_done(xs);
}
}
int
mpt_run_xfer(mpt_softc_t *mpt, struct scsi_xfer *xs)
{
struct scsi_link *linkp = xs->sc_link;
request_t *req;
MSG_SCSI_IO_REQUEST *mpt_req;
int error, s;
s = splbio();
req = mpt_get_request(mpt);
if (req == NULL) {
/* This should happen very infrequently. */
xs->error = XS_DRIVER_STUFFUP;
xs->flags |= ITSDONE;
scsi_done(xs);
splx(s);
return (COMPLETE);
}
splx(s);
/* Link the req and the scsi_xfer. */
req->xfer = xs;
/* Now we build the command for the IOC */
mpt_req = req->req_vbuf;
bzero(mpt_req, sizeof(*mpt_req));
mpt_req->Function = MPI_FUNCTION_SCSI_IO_REQUEST;
mpt_req->Bus = mpt->bus;
mpt_req->SenseBufferLength =
(sizeof(xs->sense) < MPT_SENSE_SIZE) ?
sizeof(xs->sense) : MPT_SENSE_SIZE;
/*
* We use the message context to find the request structure when
* we get the command completion interrupt from the IOC.
*/
mpt_req->MsgContext = req->index;
/* Which physical device to do the I/O on. */
mpt_req->TargetID = linkp->target;
mpt_req->LUN[1] = linkp->lun;
/* Set the direction of the transfer. */
if (xs->flags & SCSI_DATA_IN)
mpt_req->Control = MPI_SCSIIO_CONTROL_READ;
else if (xs->flags & SCSI_DATA_OUT)
mpt_req->Control = MPI_SCSIIO_CONTROL_WRITE;
else
mpt_req->Control = MPI_SCSIIO_CONTROL_NODATATRANSFER;
mpt_check_xfer_settings(mpt, xs, mpt_req);
/* Copy the SCSI command block into place. */
memcpy(mpt_req->CDB, xs->cmd, xs->cmdlen);
mpt_req->CDBLength = xs->cmdlen;
mpt_req->DataLength = xs->datalen;
mpt_req->SenseBufferLowAddr = req->sense_pbuf;
/*
* Map the DMA transfer.
*/
if (xs->datalen) {
SGE_SIMPLE32 *se;
error = bus_dmamap_load(mpt->sc_dmat, req->dmap, xs->data,
xs->datalen, NULL,
((xs->flags & SCSI_NOSLEEP) ? BUS_DMA_NOWAIT
: BUS_DMA_WAITOK) |
BUS_DMA_STREAMING |
((xs->flags & SCSI_DATA_IN) ? BUS_DMA_READ
: BUS_DMA_WRITE));
switch (error) {
case 0:
break;
case ENOMEM:
case EAGAIN:
xs->error = XS_DRIVER_STUFFUP;
goto out_bad;
default:
xs->error = XS_DRIVER_STUFFUP;
mpt_prt(mpt, "error %d loading DMA map", error);
out_bad:
s = splbio();
mpt_free_request(mpt, req);
xs->flags |= ITSDONE;
scsi_done(xs);
splx(s);
return (TRY_AGAIN_LATER);
}
if (req->dmap->dm_nsegs > MPT_NSGL_FIRST(mpt)) {
int seg, i, nleft = req->dmap->dm_nsegs;
uint32_t flags;
SGE_CHAIN32 *ce;
seg = 0;
mpt_req->DataLength = xs->datalen;
flags = MPI_SGE_FLAGS_SIMPLE_ELEMENT;
if (xs->flags & SCSI_DATA_OUT)
flags |= MPI_SGE_FLAGS_HOST_TO_IOC;
se = (SGE_SIMPLE32 *) &mpt_req->SGL;
for (i = 0; i < MPT_NSGL_FIRST(mpt) - 1;
i++, se++, seg++) {
uint32_t tf;
bzero(se, sizeof(*se));
se->Address = req->dmap->dm_segs[seg].ds_addr;
MPI_pSGE_SET_LENGTH(se,
req->dmap->dm_segs[seg].ds_len);
tf = flags;
if (i == MPT_NSGL_FIRST(mpt) - 2)
tf |= MPI_SGE_FLAGS_LAST_ELEMENT;
MPI_pSGE_SET_FLAGS(se, tf);
nleft--;
}
/*
* Tell the IOC where to find the first chain element.
*/
mpt_req->ChainOffset =
((char *)se - (char *)mpt_req) >> 2;
/*
* Until we're finished with all segments...
*/
while (nleft) {
int ntodo;
/*
* Construct the chain element that points to
* the next segment.
*/
ce = (SGE_CHAIN32 *) se++;
if (nleft > MPT_NSGL(mpt)) {
ntodo = MPT_NSGL(mpt) - 1;
ce->NextChainOffset = (MPT_RQSL(mpt) -
sizeof(SGE_SIMPLE32)) >> 2;
ce->Length = MPT_NSGL(mpt)
* sizeof(SGE_SIMPLE32);
} else {
ntodo = nleft;
ce->NextChainOffset = 0;
ce->Length = ntodo
* sizeof(SGE_SIMPLE32);
}
ce->Address = req->req_pbuf +
((char *)se - (char *)mpt_req);
ce->Flags = MPI_SGE_FLAGS_CHAIN_ELEMENT;
for (i = 0; i < ntodo; i++, se++, seg++) {
uint32_t tf;
bzero(se, sizeof(*se));
se->Address =
req->dmap->dm_segs[seg].ds_addr;
MPI_pSGE_SET_LENGTH(se,
req->dmap->dm_segs[seg].ds_len);
tf = flags;
if (i == ntodo - 1) {
tf |=
MPI_SGE_FLAGS_LAST_ELEMENT;
if (ce->NextChainOffset == 0) {
tf |=
MPI_SGE_FLAGS_END_OF_LIST |
MPI_SGE_FLAGS_END_OF_BUFFER;
}
}
MPI_pSGE_SET_FLAGS(se, tf);
nleft--;
}
}
bus_dmamap_sync(mpt->sc_dmat, req->dmap, 0,
req->dmap->dm_mapsize,
(xs->flags & SCSI_DATA_IN) ? BUS_DMASYNC_PREREAD :
BUS_DMASYNC_PREWRITE);
} else {
int i;
uint32_t flags;
mpt_req->DataLength = xs->datalen;
flags = MPI_SGE_FLAGS_SIMPLE_ELEMENT;
if (xs->flags & SCSI_DATA_OUT)
flags |= MPI_SGE_FLAGS_HOST_TO_IOC;
/* Copy the segments into our SG list. */
se = (SGE_SIMPLE32 *) &mpt_req->SGL;
for (i = 0; i < req->dmap->dm_nsegs;
i++, se++) {
uint32_t tf;
bzero(se, sizeof(*se));
se->Address = req->dmap->dm_segs[i].ds_addr;
MPI_pSGE_SET_LENGTH(se,
req->dmap->dm_segs[i].ds_len);
tf = flags;
if (i == req->dmap->dm_nsegs - 1) {
tf |=
MPI_SGE_FLAGS_LAST_ELEMENT |
MPI_SGE_FLAGS_END_OF_BUFFER |
MPI_SGE_FLAGS_END_OF_LIST;
}
MPI_pSGE_SET_FLAGS(se, tf);
}
bus_dmamap_sync(mpt->sc_dmat, req->dmap, 0,
req->dmap->dm_mapsize,
(xs->flags & SCSI_DATA_IN) ? BUS_DMASYNC_PREREAD :
BUS_DMASYNC_PREWRITE);
}
} else {
/*
* No data to transfer; just make a single simple SGL
* with zero length.
*/
SGE_SIMPLE32 *se = (SGE_SIMPLE32 *) &mpt_req->SGL;
bzero(se, sizeof(*se));
MPI_pSGE_SET_FLAGS(se,
(MPI_SGE_FLAGS_LAST_ELEMENT | MPI_SGE_FLAGS_END_OF_BUFFER |
MPI_SGE_FLAGS_SIMPLE_ELEMENT | MPI_SGE_FLAGS_END_OF_LIST));
}
if (mpt->verbose > 1)
mpt_print_scsi_io_request(mpt_req);
s = splbio();
/* Always reset xs->stimeout, lest we timeout_del() with trash */
timeout_set(&xs->stimeout, mpt_timeout, req);
if ((xs->flags & SCSI_POLL) == 0)
timeout_add(&xs->stimeout, mstohz(xs->timeout));
mpt_send_cmd(mpt, req);
splx(s);
if ((xs->flags & SCSI_POLL) == 0) {
return (SUCCESSFULLY_QUEUED);
}
/*
* If we can't use interrupts, poll on completion.
*/
if (mpt_poll(mpt, xs, xs->timeout)) {
mpt_timeout(req);
/* XXX scsi_done called
return (TRY_AGAIN_LATER);
*/
/* XXX MP this does not look correct */
return (COMPLETE);
}
return (COMPLETE);
}
void
mpt_ctlop(mpt_softc_t *mpt, void *vmsg, uint32_t reply)
{
MSG_DEFAULT_REPLY *dmsg = vmsg;
switch (dmsg->Function) {
case MPI_FUNCTION_EVENT_NOTIFICATION:
mpt_event_notify_reply(mpt, vmsg);
mpt_free_reply(mpt, (reply << 1));
break;
case MPI_FUNCTION_EVENT_ACK:
mpt_free_reply(mpt, (reply << 1));
break;
case MPI_FUNCTION_PORT_ENABLE:
{
MSG_PORT_ENABLE_REPLY *msg = vmsg;
int index = msg->MsgContext & ~0x80000000;
if (mpt->verbose > 1)
mpt_prt(mpt, "enable port reply index %d", index);
if (index >= 0 && index < MPT_MAX_REQUESTS(mpt)) {
request_t *req = &mpt->request_pool[index];
req->debug = REQ_DONE;
}
mpt_free_reply(mpt, (reply << 1));
break;
}
case MPI_FUNCTION_CONFIG:
{
MSG_CONFIG_REPLY *msg = vmsg;
int index = msg->MsgContext & ~0x80000000;
if (index >= 0 && index < MPT_MAX_REQUESTS(mpt)) {
request_t *req = &mpt->request_pool[index];
req->debug = REQ_DONE;
req->sequence = reply;
} else
mpt_free_reply(mpt, (reply << 1));
break;
}
default:
mpt_prt(mpt, "unknown ctlop: 0x%x", dmsg->Function);
}
}
void
mpt_event_notify_reply(mpt_softc_t *mpt, MSG_EVENT_NOTIFY_REPLY *msg)
{
switch (msg->Event) {
case MPI_EVENT_LOG_DATA:
{
int i;
/* Some error occurrerd that the Fusion wants logged. */
mpt_prt(mpt, "EvtLogData: IOCLogInfo: 0x%08x", msg->IOCLogInfo);
mpt_prt(mpt, "EvtLogData: Event Data:");
for (i = 0; i < msg->EventDataLength; i++) {
if ((i % 4) == 0)
printf("%s:\t", mpt->mpt_dev.dv_xname);
printf("0x%08x%c", msg->Data[i],
((i % 4) == 3) ? '\n' : ' ');
}
if ((i % 4) != 0)
printf("\n");
break;
}
case MPI_EVENT_UNIT_ATTENTION:
mpt_prt(mpt, "Unit Attn: Bus 0x%02x Target 0x%02x",
(msg->Data[0] >> 8) & 0xff, msg->Data[0] & 0xff);
break;
case MPI_EVENT_IOC_BUS_RESET:
/* We generated a bus reset. */
mpt_prt(mpt, "IOC Bus Reset Port %d",
(msg->Data[0] >> 8) & 0xff);
break;
case MPI_EVENT_EXT_BUS_RESET:
/* Someone else generated a bus reset. */
mpt_prt(mpt, "External Bus Reset");
/*
* These replies don't return EventData like the MPI
* spec says they do.
*/
/* XXX Send an async event? */
break;
case MPI_EVENT_RESCAN:
/*
* In general, thise means a device has been added
* to the loop.
*/
mpt_prt(mpt, "Rescan Port %d", (msg->Data[0] >> 8) & 0xff);
/* XXX Send an async event? */
break;
case MPI_EVENT_LINK_STATUS_CHANGE:
mpt_prt(mpt, "Port %d: Link state %s",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] & 0xff) == 0 ? "Failed" : "Active");
break;
case MPI_EVENT_LOOP_STATE_CHANGE:
switch ((msg->Data[0] >> 16) & 0xff) {
case 0x01:
mpt_prt(mpt,
"Port %d: FC Link Event: LIP(%02x,%02x) "
"(Loop Initialization)",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] >> 8) & 0xff,
(msg->Data[0] ) & 0xff);
switch ((msg->Data[0] >> 8) & 0xff) {
case 0xf7:
if ((msg->Data[0] & 0xff) == 0xf7)
mpt_prt(mpt, "\tDevice needs AL_PA");
else
mpt_prt(mpt, "\tDevice %02x doesn't "
"like FC performance",
msg->Data[0] & 0xff);
break;
case 0xf8:
if ((msg->Data[0] & 0xff) == 0xf7)
mpt_prt(mpt, "\tDevice detected loop "
"failure before acquiring AL_PA");
else
mpt_prt(mpt, "\tDevice %02x detected "
"loop failure",
msg->Data[0] & 0xff);
break;
default:
mpt_prt(mpt, "\tDevice %02x requests that "
"device %02x reset itself",
msg->Data[0] & 0xff,
(msg->Data[0] >> 8) & 0xff);
break;
}
break;
case 0x02:
mpt_prt(mpt, "Port %d: FC Link Event: LPE(%02x,%02x) "
"(Loop Port Enable)",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] >> 8) & 0xff,
(msg->Data[0] ) & 0xff);
break;
case 0x03:
mpt_prt(mpt, "Port %d: FC Link Event: LPB(%02x,%02x) "
"(Loop Port Bypass)",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] >> 8) & 0xff,
(msg->Data[0] ) & 0xff);
break;
default:
mpt_prt(mpt, "Port %d: FC Link Event: "
"Unknown event (%02x %02x %02x)",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] >> 16) & 0xff,
(msg->Data[0] >> 8) & 0xff,
(msg->Data[0] ) & 0xff);
break;
}
break;
case MPI_EVENT_LOGOUT:
mpt_prt(mpt, "Port %d: FC Logout: N_PortID: %02x",
(msg->Data[1] >> 8) & 0xff, msg->Data[0]);
break;
case MPI_EVENT_EVENT_CHANGE:
/*
* This is just an acknowledgement of our
* mpt_send_event_request().
*/
break;
default:
mpt_prt(mpt, "Unknown async event: 0x%x", msg->Event);
break;
}
if (msg->AckRequired) {
MSG_EVENT_ACK *ackp;
request_t *req;
if ((req = mpt_get_request(mpt)) == NULL) {
/* XXX XXX XXX XXXJRT */
panic("mpt_event_notify_reply: unable to allocate "
"request structure");
}
ackp = (MSG_EVENT_ACK *) req->req_vbuf;
bzero(ackp, sizeof(*ackp));
ackp->Function = MPI_FUNCTION_EVENT_ACK;
ackp->Event = msg->Event;
ackp->EventContext = msg->EventContext;
ackp->MsgContext = req->index | 0x80000000;
mpt_check_doorbell(mpt);
mpt_send_cmd(mpt, req);
}
}
void
mpt_check_xfer_settings(mpt_softc_t *mpt, struct scsi_xfer *xs, MSG_SCSI_IO_REQUEST *mpt_req)
{
if (mpt->is_fc) {
/*
* SCSI transport settings don't make any sense for
* Fibre Channel; silently ignore the request.
*/
return;
}
/*
* XXX never do these commands with tags. Should really be
* in a higher layer.
*/
if (xs->cmd->opcode == INQUIRY ||
xs->cmd->opcode == TEST_UNIT_READY ||
xs->cmd->opcode == REQUEST_SENSE)
return;
/* Set the queue behavior. */
if (mpt->is_fc || (mpt->mpt_tag_enable & (1 << xs->sc_link->target))) {
mpt_req->Control |= MPI_SCSIIO_CONTROL_SIMPLEQ;
} else {
mpt_req->Control |= MPI_SCSIIO_CONTROL_UNTAGGED;
mpt_req->Control |= MPI_SCSIIO_CONTROL_NO_DISCONNECT;
}
}
/*****************************************************************************
* SCSI interface routines
*****************************************************************************/
int
mpt_action(struct scsi_xfer *xfer)
{
mpt_softc_t *mpt = (void *) xfer->sc_link->adapter_softc;
int ret;
ret = mpt_run_xfer(mpt, xfer);
return ret;
}
void
mpt_minphys(struct buf *bp)
{
/*
* Subtract one from the SGL limit, since we need an extra one to handle
* an non-page-aligned transfer.
*/
#define MPT_MAX_XFER ((MPT_SGL_MAX - 1) * PAGE_SIZE)
if (bp->b_bcount > MPT_MAX_XFER)
bp->b_bcount = MPT_MAX_XFER;
minphys(bp);
}
/*
* Allocate DMA resources for FW image
*
* img_sz : size of image
* maxsgl : maximum number of DMA segments
*/
int
mpt_alloc_fw_mem(mpt_softc_t *mpt, uint32_t img_sz, int maxsgl)
{
int error;
error = bus_dmamem_alloc(mpt->sc_dmat, img_sz, PAGE_SIZE, 0,
&mpt->fw_seg, maxsgl, &mpt->fw_rseg, 0);
if (error) {
mpt_prt(mpt, "unable to allocate fw memory, error = %d", error);
goto fw_fail0;
}
error = bus_dmamem_map(mpt->sc_dmat, &mpt->fw_seg, mpt->fw_rseg, img_sz,
(caddr_t *)&mpt->fw, BUS_DMA_COHERENT);
if (error) {
mpt_prt(mpt, "unable to map fw area, error = %d", error);
goto fw_fail1;
}
error = bus_dmamap_create(mpt->sc_dmat, img_sz, maxsgl, img_sz,
0, 0, &mpt->fw_dmap);
if (error) {
mpt_prt(mpt, "unable to create request DMA map, error = %d",
error);
goto fw_fail2;
}
error = bus_dmamap_load(mpt->sc_dmat, mpt->fw_dmap, mpt->fw, img_sz,
NULL, 0);
if (error) {
mpt_prt(mpt, "unable to load request DMA map, error = %d", error);
goto fw_fail3;
}
return(error);
fw_fail3:
bus_dmamap_unload(mpt->sc_dmat, mpt->fw_dmap);
fw_fail2:
bus_dmamap_destroy(mpt->sc_dmat, mpt->fw_dmap);
fw_fail1:
bus_dmamem_unmap(mpt->sc_dmat, (caddr_t)mpt->fw, img_sz);
fw_fail0:
bus_dmamem_free(mpt->sc_dmat, &mpt->fw_seg, mpt->fw_rseg);
mpt->fw = NULL;
return (error);
}
void
mpt_free_fw_mem(mpt_softc_t *mpt)
{
bus_dmamap_unload(mpt->sc_dmat, mpt->fw_dmap);
bus_dmamap_destroy(mpt->sc_dmat, mpt->fw_dmap);
bus_dmamem_unmap(mpt->sc_dmat, (caddr_t)mpt->fw, mpt->fw_image_size);
bus_dmamem_free(mpt->sc_dmat, &mpt->fw_seg, mpt->fw_rseg);
}
#if NBIO > 0
int
mpt_ioctl(dev, cmd, addr)
struct device *dev;
u_long cmd;
caddr_t addr;
{
int error = 0;
int rv;
struct mpt_dummy *dummy;
struct mpt_mfg0 *pmfg0;
fCONFIG_PAGE_MANUFACTURING_0 mfgp0;
mpt_softc_t *mpt = (mpt_softc_t *)dev;
switch (cmd) {
case MPT_IOCTL_DUMMY:
dummy = (struct mpt_dummy *)addr;
if (mpt->verbose > 2) {
printf("%s: MPT_IOCTL_DUMMY %d\n",
dev->dv_xname, dummy->x++);
}
break;
case MPT_IOCTL_MFG0:
/* Retrieve Manufacturing Page 0 */
mfgp0.Header.PageNumber = 0;
mfgp0.Header.PageType = MPI_CONFIG_PAGETYPE_MANUFACTURING;
rv = mpt_read_cfg_page(mpt, 0, &mfgp0.Header);
if (rv) {
mpt_prt(mpt, "Could not retrieve MFG PAGE 0.");
error = EINVAL;
} else {
if (mpt->verbose > 2) {
printf("Chip name: %s\n",
mfgp0.ChipName);
printf("Chip Revision: %s\n",
mfgp0.ChipRevision);
printf("Board name: %s\n",
mfgp0.BoardName);
printf("Board assembly: %s\n",
mfgp0.BoardAssembly);
printf("Board tracer number: %s\n",
mfgp0.BoardTracerNumber);
}
pmfg0 = (struct mpt_mfg0 *)addr;
memcpy(&pmfg0->cpm0, &mfgp0,
sizeof(fCONFIG_PAGE_MANUFACTURING_0));
}
break;
case MPT_IOCTL_MFG1:
/* Retrieve Manufacturing Page 1 */
break;
case MPT_IOCTL_MFG2:
/* Retrieve Manufacturing Page 2 */
break;
case MPT_IOCTL_MFG3:
/* Retrieve Manufacturing Page 3 */
break;
case MPT_IOCTL_MFG4:
/* Retrieve Manufacturing Page 4 */
break;
default:
error = EINVAL;
}
return (error);
}
#endif
|