1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
|
/****************************************************************************
* Perceptive Solutions, Inc. PCI-2220I device driver for Linux.
*
* pci2220i.c - Linux Host Driver for PCI-2220I EIDE RAID Adapters
*
* Copyright (c) 1997-1999 Perceptive Solutions, Inc.
* All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that redistributions of source
* code retain the above copyright notice and this comment without
* modification.
*
* Technical updates and product information at:
* http://www.psidisk.com
*
* Please send questions, comments, bug reports to:
* tech@psidisk.com Technical Support
*
*
* Revisions 1.10 Mar-26-1999
* - Updated driver for RAID and hot reconstruct support.
*
* Revisions 1.11 Mar-26-1999
* - Fixed spinlock and PCI configuration.
*
****************************************************************************/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/malloc.h>
#include <linux/pci.h>
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/sched.h>
#include <linux/proc_fs.h>
#include <linux/stat.h>
#include <linux/kdev_t.h>
#include <linux/blk.h>
#include <linux/timer.h>
#include <asm/dma.h>
#include <asm/system.h>
#include <asm/io.h>
#include "scsi.h"
#include "hosts.h"
#include "pci2220i.h"
#if LINUX_VERSION_CODE >= LINUXVERSION(2,1,95)
#include <linux/spinlock.h>
#endif
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,93)
#include <linux/bios32.h>
#endif
#define PCI2220I_VERSION "1.11"
//#define READ_CMD IDE_COMMAND_READ
//#define WRITE_CMD IDE_COMMAND_WRITE
//#define MAX_BUS_MASTER_BLOCKS 1 // This is the maximum we can bus master
#define READ_CMD IDE_CMD_READ_MULTIPLE
#define WRITE_CMD IDE_CMD_WRITE_MULTIPLE
#define MAX_BUS_MASTER_BLOCKS SECTORSXFER // This is the maximum we can bus master
struct proc_dir_entry Proc_Scsi_Pci2220i =
{ PROC_SCSI_PCI2220I, 8, "pci2220i", S_IFDIR | S_IRUGO | S_IXUGO, 2 };
//#define DEBUG 1
#ifdef DEBUG
#define DEB(x) x
#define STOP_HERE() {int st;for(st=0;st<100;st++){st=1;}}
#else
#define DEB(x)
#define STOP_HERE()
#endif
#define MAXADAPTER 4 // Increase this and the sizes of the arrays below, if you need more.
typedef struct
{
UCHAR device; // device code
UCHAR byte6; // device select register image
UCHAR spigot; // spigot number
UCHAR sparebyte; // placeholder
USHORT sectors; // number of sectors per track
USHORT heads; // number of heads
USHORT cylinders; // number of cylinders for this device
USHORT spareword; // placeholder
ULONG blocks; // number of blocks on device
DISK_MIRROR DiskMirror[2]; // RAID status and control
ULONG lastsectorlba[2]; // last addressable sector on the drive
USHORT raid; // RAID active flag
USHORT mirrorRecon;
UCHAR hotRecon;
USHORT reconCount;
} OUR_DEVICE, *POUR_DEVICE;
typedef struct
{
USHORT regDmaDesc; // address of the DMA discriptor register for direction of transfer
USHORT regDmaCmdStat; // Byte #1 of DMA command status register
USHORT regDmaAddrPci; // 32 bit register for PCI address of DMA
USHORT regDmaAddrLoc; // 32 bit register for local bus address of DMA
USHORT regDmaCount; // 32 bit register for DMA transfer count
USHORT regDmaMode; // 32 bit register for DMA mode control
USHORT regRemap; // 32 bit local space remap
USHORT regDesc; // 32 bit local region descriptor
USHORT regRange; // 32 bit local range
USHORT regIrqControl; // 16 bit Interrupt enable/disable and status
USHORT regScratchPad; // scratch pad I/O base address
USHORT regBase; // Base I/O register for data space
USHORT regData; // data register I/O address
USHORT regError; // error register I/O address
USHORT regSectCount; // sector count register I/O address
USHORT regLba0; // least significant byte of LBA
USHORT regLba8; // next least significant byte of LBA
USHORT regLba16; // next most significan byte of LBA
USHORT regLba24; // head and most 4 significant bits of LBA
USHORT regStatCmd; // status on read and command on write register
USHORT regStatSel; // board status on read and spigot select on write register
USHORT regFail; // fail bits control register
USHORT regAltStat; // alternate status and drive control register
USHORT basePort; // PLX base I/O port
USHORT timingMode; // timing mode currently set for adapter
USHORT timingPIO; // TRUE if PIO timing is active
ULONG timingAddress; // address to use on adapter for current timing mode
ULONG irqOwned; // owned IRQ or zero if shared
OUR_DEVICE device[DALE_MAXDRIVES];
DISK_MIRROR *raidData[8];
ULONG startSector;
USHORT sectorCount;
UCHAR cmd;
Scsi_Cmnd *SCpnt;
VOID *buffer;
POUR_DEVICE pdev; // current device opearating on
USHORT expectingIRQ;
USHORT reconIsStarting; // indicate hot reconstruct is starting
USHORT reconOn; // Hot reconstruct is to be done.
USHORT reconPhase; // Hot reconstruct operation is in progress.
ULONG reconSize;
USHORT demoFail; // flag for RAID failure demonstration
USHORT survivor;
USHORT failinprog;
struct timer_list reconTimer;
struct timer_list timer;
UCHAR *kBuffer;
} ADAPTER2220I, *PADAPTER2220I;
#define HOSTDATA(host) ((PADAPTER2220I)&host->hostdata)
#define RECON_PHASE_READY 0x01
#define RECON_PHASE_COPY 0x02
#define RECON_PHASE_UPDATE 0x03
#define RECON_PHASE_LAST 0x04
#define RECON_PHASE_END 0x07
#define RECON_PHASE_MARKING 0x80
#define RECON_PHASE_FAILOVER 0xFF
static struct Scsi_Host *PsiHost[MAXADAPTER] = {NULL,}; // One for each adapter
static int NumAdapters = 0;
static SETUP DaleSetup;
static DISK_MIRROR DiskMirror[2];
static ULONG ModeArray[] = {DALE_DATA_MODE2, DALE_DATA_MODE3, DALE_DATA_MODE4, DALE_DATA_MODE4P};
static void ReconTimerExpiry (unsigned long data);
/****************************************************************
* Name: MuteAlarm :LOCAL
*
* Description: Mute the audible alarm.
*
* Parameters: padapter - Pointer adapter data structure.
*
* Returns: TRUE if drive does not assert DRQ in time.
*
****************************************************************/
static void MuteAlarm (PADAPTER2220I padapter)
{
UCHAR old;
old = (inb_p (padapter->regStatSel) >> 3) | (inb_p (padapter->regStatSel) & 0x83);
outb_p (old | 0x40, padapter->regFail);
}
/****************************************************************
* Name: WaitReady :LOCAL
*
* Description: Wait for device ready.
*
* Parameters: padapter - Pointer adapter data structure.
*
* Returns: TRUE if drive does not assert DRQ in time.
*
****************************************************************/
static int WaitReady (PADAPTER2220I padapter)
{
ULONG z;
UCHAR status;
for ( z = 0; z < (TIMEOUT_READY * 4); z++ )
{
status = inb_p (padapter->regStatCmd);
if ( (status & (IDE_STATUS_DRDY | IDE_STATUS_BUSY)) == IDE_STATUS_DRDY )
return 0;
udelay (250);
}
return status;
}
/****************************************************************
* Name: WaitReadyReset :LOCAL
*
* Description: Wait for device ready.
*
* Parameters: padapter - Pointer adapter data structure.
*
* Returns: TRUE if drive does not assert DRQ in time.
*
****************************************************************/
static int WaitReadyReset (PADAPTER2220I padapter)
{
ULONG z;
UCHAR status;
for ( z = 0; z < (250 * 4); z++ ) // wait up to 1/4 second
{
status = inb_p (padapter->regStatCmd);
if ( (status & (IDE_STATUS_DRDY | IDE_STATUS_BUSY)) == IDE_STATUS_DRDY )
{
DEB (printk ("\nPCI2220I: Reset took %ld mSec to be ready", z / 4));
return 0;
}
udelay (250);
}
DEB (printk ("\nPCI2220I: Reset took more than 1 Second to come ready, Disk Failure"));
return status;
}
/****************************************************************
* Name: WaitDrq :LOCAL
*
* Description: Wait for device ready for data transfer.
*
* Parameters: padapter - Pointer adapter data structure.
*
* Returns: TRUE if drive does not assert DRQ in time.
*
****************************************************************/
static int WaitDrq (PADAPTER2220I padapter)
{
ULONG z;
UCHAR status;
for ( z = 0; z < (TIMEOUT_DRQ * 4); z++ )
{
status = inb_p (padapter->regStatCmd);
if ( status & IDE_STATUS_DRQ )
return 0;
udelay (250);
}
return status;
}
/****************************************************************
* Name: HardReset :LOCAL
*
* Description: Wait for device ready for data transfer.
*
* Parameters: padapter - Pointer adapter data structure.
* pdev - Pointer to device.
* spigot - Spigot number.
*
* Returns: TRUE if drive does not assert DRQ in time.
*
****************************************************************/
static int HardReset (PADAPTER2220I padapter, POUR_DEVICE pdev, UCHAR spigot)
{
SelectSpigot (padapter, spigot | 0x80);
outb_p (0x0E, padapter->regAltStat); // reset the suvivor
udelay (100); // wait a little
outb_p (0x08, padapter->regAltStat); // clear the reset
udelay (100);
outb_p (0xA0, padapter->regLba24); //Specify drive
outb_p (pdev->byte6, padapter->regLba24); // select the drive
if ( WaitReadyReset (padapter) )
return TRUE;
outb_p (SECTORSXFER, padapter->regSectCount);
WriteCommand (padapter, IDE_CMD_SET_MULTIPLE);
if ( WaitReady (padapter) )
return TRUE;
return FALSE;
}
/****************************************************************
* Name: BusMaster :LOCAL
*
* Description: Do a bus master I/O.
*
* Parameters: padapter - Pointer adapter data structure.
* datain - TRUE if data read.
* irq - TRUE if bus master interrupt expected.
*
* Returns: TRUE if drive does not assert DRQ in time.
*
****************************************************************/
static void BusMaster (PADAPTER2220I padapter, UCHAR datain, UCHAR irq)
{
ULONG zl;
outl (padapter->timingAddress, padapter->regDmaAddrLoc);
outl (virt_to_bus (padapter->buffer), padapter->regDmaAddrPci);
zl = (padapter->sectorCount > MAX_BUS_MASTER_BLOCKS) ? MAX_BUS_MASTER_BLOCKS : padapter->sectorCount;
padapter->sectorCount -= zl;
zl *= (ULONG)BYTES_PER_SECTOR;
padapter->buffer += zl;
outl (zl, padapter->regDmaCount);
if ( datain )
{
outb_p (8, padapter->regDmaDesc); // read operation
if ( irq && !padapter->sectorCount )
outb_p (5, padapter->regDmaMode); // interrupt on
else
outb_p (1, padapter->regDmaMode); // no interrupt
}
else
{
outb_p (0, padapter->regDmaDesc); // write operation
outb_p (1, padapter->regDmaMode); // no interrupt
}
outb_p (0x03, padapter->regDmaCmdStat); // kick the DMA engine in gear
}
/****************************************************************
* Name: WriteData :LOCAL
*
* Description: Write data to device.
*
* Parameters: padapter - Pointer adapter data structure.
*
* Returns: TRUE if drive does not assert DRQ in time.
*
****************************************************************/
static int WriteData (PADAPTER2220I padapter)
{
ULONG zl;
if ( !WaitDrq (padapter) )
{
if ( padapter->timingPIO )
{
zl = (padapter->sectorCount > MAX_BUS_MASTER_BLOCKS) ? MAX_BUS_MASTER_BLOCKS : padapter->sectorCount;
outsw (padapter->regData, padapter->buffer, zl * (BYTES_PER_SECTOR / 2));
padapter->sectorCount -= zl;
padapter->buffer += zl * BYTES_PER_SECTOR;
}
else
BusMaster (padapter, 0, 0);
return 0;
}
padapter->cmd = 0; // null out the command byte
return 1;
}
/****************************************************************
* Name: WriteDataBoth :LOCAL
*
* Description: Write data to device.
*
* Parameters: padapter - Pointer adapter data structure.
*
* Returns: TRUE if drive does not assert DRQ in time.
*
****************************************************************/
static int WriteDataBoth (PADAPTER2220I padapter)
{
ULONG zl;
UCHAR status0, status1;
SelectSpigot (padapter, 1);
status0 = WaitDrq (padapter);
if ( !status0 )
{
SelectSpigot (padapter, 2);
status1 = WaitDrq (padapter);
if ( !status1 )
{
SelectSpigot (padapter, 3);
if ( padapter->timingPIO )
{
zl = (padapter->sectorCount > MAX_BUS_MASTER_BLOCKS) ? MAX_BUS_MASTER_BLOCKS : padapter->sectorCount;
outsw (padapter->regData, padapter->buffer, zl * (BYTES_PER_SECTOR / 2));
padapter->sectorCount -= zl;
padapter->buffer += zl * BYTES_PER_SECTOR;
}
else
BusMaster (padapter, 0, 0);
return 0;
}
}
padapter->cmd = 0; // null out the command byte
if ( status0 )
return 1;
return 2;
}
/****************************************************************
* Name: IdeCmd :LOCAL
*
* Description: Process an IDE command.
*
* Parameters: padapter - Pointer adapter data structure.
* pdev - Pointer to device.
*
* Returns: Zero if no error or status register contents on error.
*
****************************************************************/
static UCHAR IdeCmd (PADAPTER2220I padapter, POUR_DEVICE pdev)
{
UCHAR status;
SelectSpigot (padapter, pdev->spigot); // select the spigot
outb_p (pdev->byte6 | ((UCHAR *)(&padapter->startSector))[3], padapter->regLba24); // select the drive
status = WaitReady (padapter);
if ( !status )
{
outb_p (padapter->sectorCount, padapter->regSectCount);
outb_p (((UCHAR *)(&padapter->startSector))[0], padapter->regLba0);
outb_p (((UCHAR *)(&padapter->startSector))[1], padapter->regLba8);
outb_p (((UCHAR *)(&padapter->startSector))[2], padapter->regLba16);
padapter->expectingIRQ = TRUE;
WriteCommand (padapter, padapter->cmd);
return 0;
}
padapter->cmd = 0; // null out the command byte
return status;
}
/****************************************************************
* Name: IdeCmdBoth :LOCAL
*
* Description: Process an IDE command to both drivers.
*
* Parameters: padapter - Pointer adapter data structure.
*
* Returns: Zero if no error or spigot of error.
*
****************************************************************/
static UCHAR IdeCmdBoth (PADAPTER2220I padapter)
{
UCHAR status0;
UCHAR status1;
SelectSpigot (padapter, 3); // select the spigots
outb_p (padapter->pdev->byte6 | ((UCHAR *)(&padapter->startSector))[3], padapter->regLba24);// select the drive
SelectSpigot (padapter, 1);
status0 = WaitReady (padapter);
if ( !status0 )
{
SelectSpigot (padapter, 2);
status1 = WaitReady (padapter);
if ( !status1 )
{
SelectSpigot (padapter, 3);
outb_p (padapter->sectorCount, padapter->regSectCount);
outb_p (((UCHAR *)(&padapter->startSector))[0], padapter->regLba0);
outb_p (((UCHAR *)(&padapter->startSector))[1], padapter->regLba8);
outb_p (((UCHAR *)(&padapter->startSector))[2], padapter->regLba16);
padapter->expectingIRQ = TRUE;
WriteCommand (padapter, padapter->cmd);
return 0;
}
}
padapter->cmd = 0; // null out the command byte
if ( status0 )
return 1;
return 2;
}
/****************************************************************
* Name: OpDone :LOCAL
*
* Description: Complete an operatoin done sequence.
*
* Parameters: padapter - Pointer to host data block.
* spigot - Spigot select code.
* device - Device byte code.
*
* Returns: Nothing.
*
****************************************************************/
static void OpDone (PADAPTER2220I padapter, ULONG result)
{
Scsi_Cmnd *SCpnt = padapter->SCpnt;
if ( padapter->reconPhase )
{
padapter->reconPhase = 0;
if ( padapter->SCpnt )
{
Pci2220i_QueueCommand (SCpnt, SCpnt->scsi_done);
}
else
{
if ( padapter->reconOn )
{
ReconTimerExpiry ((unsigned long)padapter);
}
}
}
else
{
padapter->cmd = 0;
padapter->SCpnt = NULL;
SCpnt->result = result;
SCpnt->scsi_done (SCpnt);
if ( padapter->reconOn && !padapter->reconTimer.data )
{
padapter->reconTimer.expires = jiffies + (HZ / 4); // start in 1/4 second
padapter->reconTimer.data = (unsigned long)padapter;
add_timer (&padapter->reconTimer);
}
}
}
/****************************************************************
* Name: InlineIdentify :LOCAL
*
* Description: Do an intline inquiry on a drive.
*
* Parameters: padapter - Pointer to host data block.
* spigot - Spigot select code.
* device - Device byte code.
*
* Returns: Last addressable sector or zero if none.
*
****************************************************************/
static ULONG InlineIdentify (PADAPTER2220I padapter, UCHAR spigot, UCHAR device)
{
PIDENTIFY_DATA pid = (PIDENTIFY_DATA)padapter->kBuffer;
SelectSpigot (padapter, spigot | 0x80); // select the spigot
outb_p (device << 4, padapter->regLba24); // select the drive
if ( WaitReady (padapter) )
return 0;
WriteCommand (padapter, IDE_COMMAND_IDENTIFY);
if ( WaitDrq (padapter) )
return 0;
insw (padapter->regData, padapter->kBuffer, sizeof (IDENTIFY_DATA) >> 1);
return (pid->LBATotalSectors - 1);
}
/****************************************************************
* Name: InlineReadSignature :LOCAL
*
* Description: Do an inline read RAID sigature.
*
* Parameters: padapter - Pointer adapter data structure.
* pdev - Pointer to device.
* index - index of data to read.
*
* Returns: Zero if no error or status register contents on error.
*
****************************************************************/
static UCHAR InlineReadSignature (PADAPTER2220I padapter, POUR_DEVICE pdev, int index)
{
UCHAR status;
UCHAR spigot = 1 << index;
ULONG zl = pdev->lastsectorlba[index];
SelectSpigot (padapter, spigot | 0x80); // select the spigot without interrupts
outb_p (pdev->byte6 | ((UCHAR *)&zl)[3], padapter->regLba24);
status = WaitReady (padapter);
if ( !status )
{
outb_p (((UCHAR *)&zl)[2], padapter->regLba16);
outb_p (((UCHAR *)&zl)[1], padapter->regLba8);
outb_p (((UCHAR *)&zl)[0], padapter->regLba0);
outb_p (1, padapter->regSectCount);
WriteCommand (padapter, IDE_COMMAND_READ);
status = WaitDrq (padapter);
if ( !status )
{
insw (padapter->regData, padapter->kBuffer, BYTES_PER_SECTOR / 2);
((ULONG *)(&pdev->DiskMirror[index]))[0] = ((ULONG *)(&padapter->kBuffer[DISK_MIRROR_POSITION]))[0];
((ULONG *)(&pdev->DiskMirror[index]))[1] = ((ULONG *)(&padapter->kBuffer[DISK_MIRROR_POSITION]))[1];
// some drives assert DRQ before IRQ so let's make sure we clear the IRQ
WaitReady (padapter);
return 0;
}
}
return status;
}
/****************************************************************
* Name: DecodeError :LOCAL
*
* Description: Decode and process device errors.
*
* Parameters: padapter - Pointer to adapter data.
* status - Status register code.
*
* Returns: The driver status code.
*
****************************************************************/
static ULONG DecodeError (PADAPTER2220I padapter, UCHAR status)
{
UCHAR error;
padapter->expectingIRQ = 0;
if ( status & IDE_STATUS_WRITE_FAULT )
{
return DID_PARITY << 16;
}
if ( status & IDE_STATUS_BUSY )
return DID_BUS_BUSY << 16;
error = inb_p (padapter->regError);
DEB(printk ("\npci2220i error register: %x", error));
switch ( error )
{
case IDE_ERROR_AMNF:
case IDE_ERROR_TKONF:
case IDE_ERROR_ABRT:
case IDE_ERROR_IDFN:
case IDE_ERROR_UNC:
case IDE_ERROR_BBK:
default:
return DID_ERROR << 16;
}
return DID_ERROR << 16;
}
/****************************************************************
* Name: StartTimer :LOCAL
*
* Description: Start the timer.
*
* Parameters: ipadapter - Pointer adapter data structure.
*
* Returns: Nothing.
*
****************************************************************/
static void StartTimer (PADAPTER2220I padapter)
{
padapter->timer.expires = jiffies + TIMEOUT_DATA;
add_timer (&padapter->timer);
}
/****************************************************************
* Name: WriteSignature :LOCAL
*
* Description: Start the timer.
*
* Parameters: padapter - Pointer adapter data structure.
* pdev - Pointer to our device.
* spigot - Selected spigot.
* index - index of mirror signature on device.
*
* Returns: TRUE on any error.
*
****************************************************************/
static int WriteSignature (PADAPTER2220I padapter, POUR_DEVICE pdev, UCHAR spigot, int index)
{
ULONG zl;
SelectSpigot (padapter, spigot);
zl = pdev->lastsectorlba[index];
outb_p (pdev->byte6 | ((UCHAR *)&zl)[3], padapter->regLba24);
outb_p (((UCHAR *)&zl)[2], padapter->regLba16);
outb_p (((UCHAR *)&zl)[1], padapter->regLba8);
outb_p (((UCHAR *)&zl)[0], padapter->regLba0);
outb_p (1, padapter->regSectCount);
WriteCommand (padapter, IDE_COMMAND_WRITE);
if ( WaitDrq (padapter) )
return TRUE;
StartTimer (padapter);
padapter->expectingIRQ = TRUE;
((ULONG *)(&padapter->kBuffer[DISK_MIRROR_POSITION]))[0] = ((ULONG *)(&pdev->DiskMirror[index]))[0];
((ULONG *)(&padapter->kBuffer[DISK_MIRROR_POSITION]))[1] = ((ULONG *)(&pdev->DiskMirror[index]))[1];
outsw (padapter->regData, padapter->kBuffer, BYTES_PER_SECTOR / 2);
return FALSE;
}
/*******************************************************************************************************
* Name: InitFailover
*
* Description: This is the beginning of the failover routine
*
* Parameters: SCpnt - Pointer to SCSI command structure.
* padapter - Pointer adapter data structure.
* pdev - Pointer to our device.
*
* Returns: TRUE on error.
*
******************************************************************************************************/
static int InitFailover (PADAPTER2220I padapter, POUR_DEVICE pdev)
{
UCHAR spigot;
DEB (printk ("\npci2220i: Initialize failover process - survivor = %d", padapter->survivor));
pdev->raid = FALSE; //initializes system for non raid mode
pdev->hotRecon = 0;
padapter->reconOn = FALSE;
spigot = (padapter->survivor) ? 2 : 1;
if ( pdev->DiskMirror[padapter->survivor].status & UCBF_REBUILD )
return (TRUE);
if ( HardReset (padapter, pdev, spigot) )
return TRUE;
outb_p (0x3C | spigot, padapter->regFail); // sound alarm and set fail light
pdev->DiskMirror[padapter->survivor].status = UCBF_MIRRORED | UCBF_SURVIVOR; //clear present status
if ( WriteSignature (padapter, pdev, spigot, padapter->survivor) )
return TRUE;
padapter->failinprog = TRUE;
return FALSE;
}
/****************************************************************
* Name: TimerExpiry :LOCAL
*
* Description: Timer expiry routine.
*
* Parameters: data - Pointer adapter data structure.
*
* Returns: Nothing.
*
****************************************************************/
static void TimerExpiry (unsigned long data)
{
PADAPTER2220I padapter = (PADAPTER2220I)data;
POUR_DEVICE pdev = padapter->pdev;
UCHAR status = IDE_STATUS_BUSY;
UCHAR temp, temp1;
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
int flags;
#else /* version >= v2.1.95 */
unsigned long flags;
#endif /* version >= v2.1.95 */
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
/* Disable interrupts, if they aren't already disabled. */
save_flags (flags);
cli ();
#else /* version >= v2.1.95 */
/*
* Disable interrupts, if they aren't already disabled and acquire
* the I/O spinlock.
*/
spin_lock_irqsave (&io_request_lock, flags);
#endif /* version >= v2.1.95 */
DEB (printk ("\nPCI2220I: Timeout expired "));
if ( padapter->failinprog )
{
DEB (printk ("in failover process"));
OpDone (padapter, DecodeError (padapter, inb_p (padapter->regStatCmd)));
goto timerExpiryDone;
}
while ( padapter->reconPhase )
{
DEB (printk ("in recon phase %X", padapter->reconPhase));
switch ( padapter->reconPhase )
{
case RECON_PHASE_MARKING:
case RECON_PHASE_LAST:
padapter->survivor = (pdev->spigot ^ 3) >> 1;
DEB (printk ("\npci2220i: FAILURE 1"));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DID_ERROR << 16);
goto timerExpiryDone;
case RECON_PHASE_READY:
OpDone (padapter, DID_ERROR << 16);
goto timerExpiryDone;
case RECON_PHASE_COPY:
padapter->survivor = (pdev->spigot) >> 1;
DEB (printk ("\npci2220i: FAILURE 2"));
DEB (printk ("\n spig/stat = %X", inb_p (padapter->regStatSel));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DID_ERROR << 16);
goto timerExpiryDone;
case RECON_PHASE_UPDATE:
padapter->survivor = (pdev->spigot) >> 1;
DEB (printk ("\npci2220i: FAILURE 3")));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DID_ERROR << 16);
goto timerExpiryDone;
case RECON_PHASE_END:
padapter->survivor = (pdev->spigot) >> 1;
DEB (printk ("\npci2220i: FAILURE 4"));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DID_ERROR << 16);
goto timerExpiryDone;
default:
goto timerExpiryDone;
}
}
while ( padapter->cmd )
{
outb_p (0x08, padapter->regDmaCmdStat); // cancel interrupt from DMA engine
if ( pdev->raid )
{
if ( padapter->cmd == WRITE_CMD )
{
DEB (printk ("in RAID write operation"));
if ( inb_p (padapter->regStatSel) & 1 )
{
SelectSpigot (padapter, 0x81 ); // Masking the interrupt during spigot select
temp = inb_p (padapter->regStatCmd);
}
else
temp = IDE_STATUS_BUSY;
if ( inb (padapter->regStatSel) & 2 )
{
SelectSpigot (padapter, 0x82 ); // Masking the interrupt during spigot select
temp1 = inb_p (padapter->regStatCmd);
}
else
temp1 = IDE_STATUS_BUSY;
if ( (temp & IDE_STATUS_BUSY) || (temp1 & IDE_STATUS_BUSY) )
{
if ( (temp & IDE_STATUS_BUSY) && (temp1 & IDE_STATUS_BUSY) )
{
status = temp;
break;
}
else
{
if (temp & IDE_STATUS_BUSY)
padapter->survivor = 1;
else
padapter->survivor = 0;
DEB (printk ("\npci2220i: FAILURE 5"));
if ( InitFailover (padapter, pdev) )
{
status = inb_p (padapter->regStatCmd);
break;
}
goto timerExpiryDone;
}
}
}
else
{
DEB (printk ("in RAID read operation"));
padapter->survivor = (pdev->spigot ^ 3) >> 1;
DEB (printk ("\npci2220i: FAILURE 6"));
if ( InitFailover (padapter, pdev) )
{
status = inb_p (padapter->regStatCmd);
break;
}
goto timerExpiryDone;
}
}
else
{
DEB (printk ("in I/O operation"));
status = inb_p (padapter->regStatCmd);
}
break;
}
OpDone (padapter, DecodeError (padapter, status));
timerExpiryDone:;
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
/*
* Restore the original flags which will enable interrupts
* if and only if they were enabled on entry.
*/
restore_flags (flags);
#else /* version >= v2.1.95 */
/*
* Release the I/O spinlock and restore the original flags
* which will enable interrupts if and only if they were
* enabled on entry.
*/
spin_unlock_irqrestore (&io_request_lock, flags);
#endif /* version >= v2.1.95 */
}
/****************************************************************
* Name: SetReconstruct :LOCAL
*
* Description: Set the reconstruct up.
*
* Parameters: pdev - Pointer to device structure.
* index - Mirror index number.
*
* Returns: Number of sectors on new disk required.
*
****************************************************************/
static LONG SetReconstruct (POUR_DEVICE pdev, int index)
{
pdev->DiskMirror[index].status = UCBF_MIRRORED; // setup the flags
pdev->DiskMirror[index ^ 1].status = UCBF_MIRRORED | UCBF_REBUILD;
pdev->DiskMirror[index ^ 1].reconstructPoint = 0; // start the reconstruct
pdev->reconCount = 1990; // mark target drive early
pdev->hotRecon = 1 >> index;
return pdev->DiskMirror[index].reconstructPoint;
}
/****************************************************************
* Name: ReconTimerExpiry :LOCAL
*
* Description: Reconstruct timer expiry routine.
*
* Parameters: data - Pointer adapter data structure.
*
* Returns: Nothing.
*
****************************************************************/
static void ReconTimerExpiry (unsigned long data)
{
PADAPTER2220I padapter;
POUR_DEVICE pdev;
ULONG testsize = 0;
PIDENTIFY_DATA pid;
USHORT minmode;
ULONG zl;
UCHAR zc;
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
int flags;
#else /* version >= v2.1.95 */
unsigned long flags;
#endif /* version >= v2.1.95 */
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
/* Disable interrupts, if they aren't already disabled. */
save_flags (flags);
cli ();
#else /* version >= v2.1.95 */
/*
* Disable interrupts, if they aren't already disabled and acquire
* the I/O spinlock.
*/
spin_lock_irqsave (&io_request_lock, flags);
#endif /* version >= v2.1.95 */
padapter = (PADAPTER2220I)data;
if ( padapter->SCpnt )
goto reconTimerExpiry;
pdev = padapter->device;
pid = (PIDENTIFY_DATA)padapter->kBuffer;
padapter->reconTimer.data = 0;
padapter->pdev = pdev;
if ( padapter->reconIsStarting )
{
padapter->reconIsStarting = FALSE;
padapter->reconOn = FALSE;
pdev->hotRecon = FALSE;
if ( (pdev->DiskMirror[0].signature == SIGNATURE) && (pdev->DiskMirror[1].signature == SIGNATURE) &&
(pdev->DiskMirror[0].pairIdentifier == (pdev->DiskMirror[1].pairIdentifier ^ 1)) )
{
if ( (pdev->DiskMirror[0].status & UCBF_MATCHED) && (pdev->DiskMirror[1].status & UCBF_MATCHED) )
{
goto reconTimerExpiry;
}
if ( pdev->DiskMirror[0].status & UCBF_SURVIVOR ) // is first drive survivor?
testsize = SetReconstruct (pdev, 0);
else
if ( pdev->DiskMirror[1].status & UCBF_SURVIVOR ) // is second drive survivor?
testsize = SetReconstruct (pdev, 1);
if ( (pdev->DiskMirror[0].status & UCBF_REBUILD) || (pdev->DiskMirror[1].status & UCBF_REBUILD) )
{
if ( pdev->DiskMirror[0].status & UCBF_REBUILD )
{
pdev->hotRecon = 1;
pdev->mirrorRecon = 0;
}
else
{
pdev->hotRecon = 2;
pdev->mirrorRecon = 1;
}
}
}
if ( !pdev->hotRecon )
goto reconTimerExpiry;
zc = ((inb_p (padapter->regStatSel) >> 3) | inb_p (padapter->regStatSel)) & 0x83; // mute the alarm
outb_p (zc | pdev->hotRecon | 0x40, padapter->regFail);
while ( 1 )
{
if ( HardReset (padapter, pdev, pdev->hotRecon) )
{
DEB (printk ("\npci2220i: sub 1"));
break;
}
pdev->lastsectorlba[pdev->mirrorRecon] = InlineIdentify (padapter, pdev->hotRecon, 0);
if ( pdev->lastsectorlba[pdev->mirrorRecon] < testsize )
{
DEB (printk ("\npci2220i: sub 2 %ld %ld", pdev->lastsectorlba[pdev->mirrorRecon], testsize));
break;
}
// test LBA and multiper sector transfer compatability
if (!pid->SupportLBA || (pid->NumSectorsPerInt < SECTORSXFER) || !pid->Valid_64_70 )
{
DEB (printk ("\npci2220i: sub 3"));
break;
}
// test PIO/bus matering mode compatability
if ( (pid->MinPIOCycleWithoutFlow > 240) && !pid->SupportIORDYDisable && !padapter->timingPIO )
{
DEB (printk ("\npci2220i: sub 4"));
break;
}
if ( pid->MinPIOCycleWithoutFlow <= 120 ) // setup timing mode of drive
minmode = 5;
else
{
if ( pid->MinPIOCylceWithFlow <= 150 )
minmode = 4;
else
{
if ( pid->MinPIOCylceWithFlow <= 180 )
minmode = 3;
else
{
if ( pid->MinPIOCylceWithFlow <= 240 )
minmode = 2;
else
{
DEB (printk ("\npci2220i: sub 5"));
break;
}
}
}
}
if ( padapter->timingMode > minmode ) // set minimum timing mode
padapter->timingMode = minmode;
if ( padapter->timingMode >= 2 )
padapter->timingAddress = ModeArray[padapter->timingMode - 2];
else
padapter->timingPIO = TRUE;
padapter->reconOn = TRUE;
break;
}
if ( !padapter->reconOn )
{
pdev->hotRecon = FALSE;
padapter->survivor = pdev->mirrorRecon ^ 1;
padapter->reconPhase = RECON_PHASE_FAILOVER;
DEB (printk ("\npci2220i: FAILURE 7"));
InitFailover (padapter, pdev);
goto reconTimerExpiry;
}
pdev->raid = TRUE;
if ( WriteSignature (padapter, pdev, pdev->spigot, pdev->mirrorRecon ^ 1) )
goto reconTimerExpiry;
padapter->reconPhase = RECON_PHASE_MARKING;
goto reconTimerExpiry;
}
//**********************************
// reconstruct copy starts here
//**********************************
if ( pdev->reconCount++ > 2000 )
{
pdev->reconCount = 0;
if ( WriteSignature (padapter, pdev, pdev->hotRecon, pdev->mirrorRecon) )
{
padapter->survivor = pdev->mirrorRecon ^ 1;
padapter->reconPhase = RECON_PHASE_FAILOVER;
DEB (printk ("\npci2220i: FAILURE 8"));
InitFailover (padapter, pdev);
goto reconTimerExpiry;
}
padapter->reconPhase = RECON_PHASE_UPDATE;
goto reconTimerExpiry;
}
zl = pdev->DiskMirror[pdev->mirrorRecon].reconstructPoint;
padapter->reconSize = pdev->DiskMirror[pdev->mirrorRecon ^ 1].reconstructPoint - zl;
if ( padapter->reconSize > MAX_BUS_MASTER_BLOCKS )
padapter->reconSize = MAX_BUS_MASTER_BLOCKS;
if ( padapter->reconSize )
{
SelectSpigot (padapter, 3); // select the spigots
outb_p (pdev->byte6 | ((UCHAR *)(&zl))[3], padapter->regLba24);// select the drive
SelectSpigot (padapter, pdev->spigot);
if ( WaitReady (padapter) )
goto reconTimerExpiry;
SelectSpigot (padapter, pdev->hotRecon);
if ( WaitReady (padapter) )
{
padapter->survivor = pdev->mirrorRecon ^ 1;
padapter->reconPhase = RECON_PHASE_FAILOVER;
DEB (printk ("\npci2220i: FAILURE 9"));
InitFailover (padapter, pdev);
goto reconTimerExpiry;
}
SelectSpigot (padapter, 3);
outb_p (padapter->reconSize & 0xFF, padapter->regSectCount);
outb_p (((UCHAR *)(&zl))[0], padapter->regLba0);
outb_p (((UCHAR *)(&zl))[1], padapter->regLba8);
outb_p (((UCHAR *)(&zl))[2], padapter->regLba16);
padapter->expectingIRQ = TRUE;
padapter->reconPhase = RECON_PHASE_READY;
SelectSpigot (padapter, pdev->hotRecon);
WriteCommand (padapter, WRITE_CMD);
StartTimer (padapter);
SelectSpigot (padapter, pdev->spigot);
WriteCommand (padapter, READ_CMD);
goto reconTimerExpiry;
}
pdev->DiskMirror[pdev->mirrorRecon].status = UCBF_MIRRORED | UCBF_MATCHED;
pdev->DiskMirror[pdev->mirrorRecon ^ 1].status = UCBF_MIRRORED | UCBF_MATCHED;
if ( WriteSignature (padapter, pdev, pdev->spigot, pdev->mirrorRecon ^ 1) )
goto reconTimerExpiry;
padapter->reconPhase = RECON_PHASE_LAST;
reconTimerExpiry:;
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
/*
* Restore the original flags which will enable interrupts
* if and only if they were enabled on entry.
*/
restore_flags (flags);
#else /* version >= v2.1.95 */
/*
* Release the I/O spinlock and restore the original flags
* which will enable interrupts if and only if they were
* enabled on entry.
*/
spin_unlock_irqrestore (&io_request_lock, flags);
#endif /* version >= v2.1.95 */
}
/****************************************************************
* Name: Irq_Handler :LOCAL
*
* Description: Interrupt handler.
*
* Parameters: irq - Hardware IRQ number.
* dev_id -
* regs -
*
* Returns: TRUE if drive is not ready in time.
*
****************************************************************/
static void Irq_Handler (int irq, void *dev_id, struct pt_regs *regs)
{
struct Scsi_Host *shost = NULL; // Pointer to host data block
PADAPTER2220I padapter; // Pointer to adapter control structure
POUR_DEVICE pdev;
Scsi_Cmnd *SCpnt;
UCHAR status;
UCHAR status1;
int z;
ULONG zl;
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
int flags;
#else /* version >= v2.1.95 */
unsigned long flags;
#endif /* version >= v2.1.95 */
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
/* Disable interrupts, if they aren't already disabled. */
save_flags (flags);
cli ();
#else /* version >= v2.1.95 */
/*
* Disable interrupts, if they aren't already disabled and acquire
* the I/O spinlock.
*/
spin_lock_irqsave (&io_request_lock, flags);
#endif /* version >= v2.1.95 */
// DEB (printk ("\npci2220i recieved interrupt\n"));
for ( z = 0; z < NumAdapters; z++ ) // scan for interrupt to process
{
if ( PsiHost[z]->irq == (UCHAR)(irq & 0xFF) )
{
if ( inw_p (HOSTDATA(PsiHost[z])->regIrqControl) & 0x8000 )
{
shost = PsiHost[z];
break;
}
}
}
if ( !shost )
{
DEB (printk ("\npci2220i: not my interrupt"));
goto irq_return;
}
padapter = HOSTDATA(shost);
pdev = padapter->pdev;
SCpnt = padapter->SCpnt;
if ( !padapter->expectingIRQ || !(SCpnt || padapter->reconPhase) )
{
DEB(printk ("\npci2220i Unsolicited interrupt\n"));
STOP_HERE ();
goto irq_return;
}
padapter->expectingIRQ = 0;
outb_p (0x08, padapter->regDmaCmdStat); // cancel interrupt from DMA engine
if ( padapter->failinprog )
{
DEB (printk ("\npci2220i interrupt failover complete"));
padapter->failinprog = FALSE;
status = inb_p (padapter->regStatCmd); // read the device status
if ( status & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT) )
{
DEB (printk ("\npci2220i: interrupt failover error from drive %X", status));
padapter->cmd = 0;
}
else
{
DEB (printk ("\npci2220i: restarting failed opertation."));
pdev->spigot = (padapter->survivor) ? 2 : 1;
del_timer (&padapter->timer);
if ( padapter->reconPhase )
OpDone (padapter, DID_OK << 16);
else
Pci2220i_QueueCommand (SCpnt, SCpnt->scsi_done);
goto irq_return;
}
}
if ( padapter->reconPhase )
{
switch ( padapter->reconPhase )
{
case RECON_PHASE_MARKING:
case RECON_PHASE_LAST:
status = inb_p (padapter->regStatCmd); // read the device status
del_timer (&padapter->timer);
if ( padapter->reconPhase == RECON_PHASE_LAST )
{
if ( status & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT) )
{
padapter->survivor = (pdev->spigot ^ 3) >> 1;
DEB (printk ("\npci2220i: FAILURE 10"));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DecodeError (padapter, status));
goto irq_return;
}
if ( WriteSignature (padapter, pdev, pdev->hotRecon, pdev->mirrorRecon) )
{
padapter->survivor = (pdev->spigot) >> 1;
DEB (printk ("\npci2220i: FAILURE 11"));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DecodeError (padapter, status));
goto irq_return;
}
padapter->reconPhase = RECON_PHASE_END;
goto irq_return;
}
OpDone (padapter, DID_OK << 16);
goto irq_return;
case RECON_PHASE_READY:
status = inb_p (padapter->regStatCmd); // read the device status
if ( status & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT) )
{
del_timer (&padapter->timer);
OpDone (padapter, DecodeError (padapter, status));
goto irq_return;
}
SelectSpigot (padapter, pdev->hotRecon);
if ( WaitDrq (padapter) )
{
del_timer (&padapter->timer);
padapter->survivor = (pdev->spigot) >> 1;
DEB (printk ("\npci2220i: FAILURE 12"));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DecodeError (padapter, status));
goto irq_return;
}
SelectSpigot (padapter, pdev->spigot | 0x40);
padapter->reconPhase = RECON_PHASE_COPY;
padapter->expectingIRQ = TRUE;
if ( padapter->timingPIO )
{
insw (padapter->regData, padapter->kBuffer, padapter->reconSize * (BYTES_PER_SECTOR / 2));
}
else
{
outl (padapter->timingAddress, padapter->regDmaAddrLoc);
outl (virt_to_bus (padapter->kBuffer), padapter->regDmaAddrPci);
outl (padapter->reconSize * BYTES_PER_SECTOR, padapter->regDmaCount);
outb_p (8, padapter->regDmaDesc); // read operation
outb_p (1, padapter->regDmaMode); // no interrupt
outb_p (0x03, padapter->regDmaCmdStat); // kick the DMA engine in gear
}
goto irq_return;
case RECON_PHASE_COPY:
pdev->DiskMirror[pdev->mirrorRecon].reconstructPoint += padapter->reconSize;
case RECON_PHASE_UPDATE:
SelectSpigot (padapter, pdev->hotRecon | 0x80);
status = inb_p (padapter->regStatCmd); // read the device status
del_timer (&padapter->timer);
if ( status & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT) )
{
padapter->survivor = (pdev->spigot) >> 1;
DEB (printk ("\npci2220i: FAILURE 13"));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DecodeError (padapter, status));
goto irq_return;
}
OpDone (padapter, DID_OK << 16);
goto irq_return;
case RECON_PHASE_END:
status = inb_p (padapter->regStatCmd); // read the device status
del_timer (&padapter->timer);
if ( status & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT) )
{
padapter->survivor = (pdev->spigot) >> 1;
DEB (printk ("\npci2220i: FAILURE 14"));
if ( InitFailover (padapter, pdev) )
OpDone (padapter, DecodeError (padapter, status));
goto irq_return;
}
padapter->reconOn = FALSE;
pdev->hotRecon = 0;
OpDone (padapter, DID_OK << 16);
goto irq_return;
default:
goto irq_return;
}
}
switch ( padapter->cmd ) // decide how to handle the interrupt
{
case READ_CMD:
if ( padapter->sectorCount )
{
status = inb_p (padapter->regStatCmd); // read the device status
if ( status & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT) )
{
if ( pdev->raid )
{
padapter->survivor = (pdev->spigot ^ 3) >> 1;
del_timer (&padapter->timer);
DEB (printk ("\npci2220i: FAILURE 15"));
if ( !InitFailover (padapter, pdev) )
goto irq_return;
}
break;
}
if ( padapter->timingPIO )
{
zl = (padapter->sectorCount > MAX_BUS_MASTER_BLOCKS) ? MAX_BUS_MASTER_BLOCKS : padapter->sectorCount;
insw (padapter->regData, padapter->buffer, zl * (BYTES_PER_SECTOR / 2));
padapter->sectorCount -= zl;
padapter->buffer += zl * BYTES_PER_SECTOR;
if ( !padapter->sectorCount )
{
status = 0;
break;
}
}
else
BusMaster (padapter, 1, 1);
padapter->expectingIRQ = TRUE;
goto irq_return;
}
status = 0;
break;
case WRITE_CMD:
SelectSpigot (padapter, pdev->spigot | 0x80);
status = inb_p (padapter->regStatCmd); // read the device status
if ( pdev->raid )
{
SelectSpigot (padapter, (pdev->spigot ^ 3) | 0x80);
status1 = inb_p (padapter->regStatCmd); // read the device status
}
else
status1 = 0;
if ( status & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT) )
{
if ( pdev->raid && !(status1 & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT)) )
{
padapter->survivor = (pdev->spigot ^ 3) >> 1;
del_timer (&padapter->timer);
SelectSpigot (padapter, pdev->spigot | 0x80);
DEB (printk ("\npci2220i: FAILURE 16 status = %X error = %X", status, inb_p (padapter->regError)));
if ( !InitFailover (padapter, pdev) )
goto irq_return;
}
break;
}
if ( pdev->raid )
{
if ( status1 & (IDE_STATUS_ERROR | IDE_STATUS_WRITE_FAULT) )
{
padapter->survivor = pdev->spigot >> 1;
del_timer (&padapter->timer);
DEB (printk ("\npci2220i: FAILURE 17 status = %X error = %X", status1, inb_p (padapter->regError)));
if ( !InitFailover (padapter, pdev) )
goto irq_return;
status = status1;
break;
}
if ( padapter->sectorCount )
{
status = WriteDataBoth (padapter);
if ( status )
{
padapter->survivor = (status ^ 3) >> 1;
del_timer (&padapter->timer);
DEB (printk ("\npci2220i: FAILURE 18"));
if ( !InitFailover (padapter, pdev) )
goto irq_return;
SelectSpigot (padapter, status | 0x80);
status = inb_p (padapter->regStatCmd); // read the device status
break;
}
padapter->expectingIRQ = TRUE;
goto irq_return;
}
status = 0;
break;
}
if ( padapter->sectorCount )
{
SelectSpigot (padapter, pdev->spigot);
status = WriteData (padapter);
if ( status )
break;
padapter->expectingIRQ = TRUE;
goto irq_return;
}
status = 0;
break;
case IDE_COMMAND_IDENTIFY:
{
PINQUIRYDATA pinquiryData = SCpnt->request_buffer;
PIDENTIFY_DATA pid = (PIDENTIFY_DATA)padapter->kBuffer;
status = inb_p (padapter->regStatCmd);
if ( status & IDE_STATUS_DRQ )
{
insw (padapter->regData, pid, sizeof (IDENTIFY_DATA) >> 1);
memset (pinquiryData, 0, SCpnt->request_bufflen); // Zero INQUIRY data structure.
pinquiryData->DeviceType = 0;
pinquiryData->Versions = 2;
pinquiryData->AdditionalLength = 35 - 4;
// Fill in vendor identification fields.
for ( z = 0; z < 20; z += 2 )
{
pinquiryData->VendorId[z] = ((UCHAR *)pid->ModelNumber)[z + 1];
pinquiryData->VendorId[z + 1] = ((UCHAR *)pid->ModelNumber)[z];
}
// Initialize unused portion of product id.
for ( z = 0; z < 4; z++ )
pinquiryData->ProductId[12 + z] = ' ';
// Move firmware revision from IDENTIFY data to
// product revision in INQUIRY data.
for ( z = 0; z < 4; z += 2 )
{
pinquiryData->ProductRevisionLevel[z] = ((UCHAR *)pid->FirmwareRevision)[z + 1];
pinquiryData->ProductRevisionLevel[z + 1] = ((UCHAR *)pid->FirmwareRevision)[z];
}
if ( pdev == padapter->device )
*((USHORT *)(&pinquiryData->VendorSpecific)) = DEVICE_DALE_1;
status = 0;
}
break;
}
default:
status = 0;
break;
}
del_timer (&padapter->timer);
if ( status )
{
DEB (printk ("\npci2220i Interupt hanlder return error"));
zl = DecodeError (padapter, status);
}
else
zl = DID_OK << 16;
OpDone (padapter, zl);
irq_return:;
#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
/*
* Restore the original flags which will enable interrupts
* if and only if they were enabled on entry.
*/
restore_flags (flags);
#else /* version >= v2.1.95 */
/*
* Release the I/O spinlock and restore the original flags
* which will enable interrupts if and only if they were
* enabled on entry.
*/
spin_unlock_irqrestore (&io_request_lock, flags);
#endif /* version >= v2.1.95 */
}
/****************************************************************
* Name: Pci2220i_QueueCommand
*
* Description: Process a queued command from the SCSI manager.
*
* Parameters: SCpnt - Pointer to SCSI command structure.
* done - Pointer to done function to call.
*
* Returns: Status code.
*
****************************************************************/
int Pci2220i_QueueCommand (Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *))
{
UCHAR *cdb = (UCHAR *)SCpnt->cmnd; // Pointer to SCSI CDB
PADAPTER2220I padapter = HOSTDATA(SCpnt->host); // Pointer to adapter control structure
POUR_DEVICE pdev = &padapter->device[SCpnt->target];// Pointer to device information
UCHAR rc; // command return code
int z;
PDEVICE_RAID1 pdr;
SCpnt->scsi_done = done;
padapter->buffer = SCpnt->request_buffer;
padapter->SCpnt = SCpnt; // Save this command data
if ( !done )
{
printk("pci2220i_queuecommand: %02X: done can't be NULL\n", *cdb);
return 0;
}
if ( padapter->reconPhase )
return 0;
if ( padapter->reconTimer.data )
{
del_timer (&padapter->reconTimer);
padapter->reconTimer.data = 0;
}
if ( !pdev->device || SCpnt->lun )
{
OpDone (padapter, DID_BAD_TARGET << 16);
return 0;
}
switch ( *cdb )
{
case SCSIOP_INQUIRY: // inquiry CDB
{
if ( cdb[2] == SC_MY_RAID )
{
switch ( cdb[3] )
{
case MY_SCSI_REBUILD:
padapter->reconOn = padapter->reconIsStarting = TRUE;
OpDone (padapter, DID_OK << 16);
break;
case MY_SCSI_ALARMMUTE:
MuteAlarm (padapter);
OpDone (padapter, DID_OK << 16);
break;
case MY_SCSI_DEMOFAIL:
padapter->demoFail = TRUE;
OpDone (padapter, DID_OK << 16);
break;
default:
z = cdb[5]; // get index
pdr = (PDEVICE_RAID1)SCpnt->request_buffer;
if ( padapter->raidData[z] )
{
memcpy (&pdr->DiskRaid1, padapter->raidData[z], sizeof (DISK_MIRROR));
pdr->TotalSectors = padapter->device[0].blocks;
}
else
memset (pdr, 0, sizeof (DEVICE_RAID1));
OpDone (padapter, DID_OK << 16);
break;
}
return 0;
}
padapter->cmd = IDE_COMMAND_IDENTIFY;
break;
}
case SCSIOP_TEST_UNIT_READY: // test unit ready CDB
OpDone (padapter, DID_OK << 16);
return 0;
case SCSIOP_READ_CAPACITY: // read capctiy CDB
{
PREAD_CAPACITY_DATA pdata = (PREAD_CAPACITY_DATA)SCpnt->request_buffer;
pdata->blksiz = 0x20000;
XANY2SCSI ((UCHAR *)&pdata->blks, pdev->blocks);
OpDone (padapter, DID_OK << 16);
return 0;
}
case SCSIOP_VERIFY: // verify CDB
padapter->startSector = XSCSI2LONG (&cdb[2]);
padapter->sectorCount = (UCHAR)((USHORT)cdb[8] | ((USHORT)cdb[7] << 8));
padapter->cmd = IDE_COMMAND_VERIFY;
break;
case SCSIOP_READ: // read10 CDB
padapter->startSector = XSCSI2LONG (&cdb[2]);
padapter->sectorCount = (USHORT)cdb[8] | ((USHORT)cdb[7] << 8);
padapter->cmd = READ_CMD;
break;
case SCSIOP_READ6: // read6 CDB
padapter->startSector = SCSI2LONG (&cdb[1]);
padapter->sectorCount = cdb[4];
padapter->cmd = READ_CMD;
break;
case SCSIOP_WRITE: // write10 CDB
padapter->startSector = XSCSI2LONG (&cdb[2]);
padapter->sectorCount = (USHORT)cdb[8] | ((USHORT)cdb[7] << 8);
padapter->cmd = WRITE_CMD;
break;
case SCSIOP_WRITE6: // write6 CDB
padapter->startSector = SCSI2LONG (&cdb[1]);
padapter->sectorCount = cdb[4];
padapter->cmd = WRITE_CMD;
break;
default:
DEB (printk ("pci2220i_queuecommand: Unsupported command %02X\n", *cdb));
OpDone (padapter, DID_ERROR << 16);
return 0;
}
if ( padapter->reconPhase )
return 0;
padapter->pdev = pdev;
while ( padapter->demoFail )
{
padapter->demoFail = FALSE;
if ( !pdev->raid ||
(pdev->DiskMirror[0].status & UCBF_SURVIVOR) ||
(pdev->DiskMirror[1].status & UCBF_SURVIVOR) )
{
break;
}
if ( pdev->DiskMirror[0].status & UCBF_REBUILD )
padapter->survivor = 1;
else
padapter->survivor = 0;
DEB (printk ("\npci2220i: FAILURE 19"));
if ( InitFailover (padapter, pdev ) )
break;
return 0;
}
StartTimer (padapter);
if ( pdev->raid && (padapter->cmd == WRITE_CMD) )
{
rc = IdeCmdBoth (padapter);
if ( !rc )
rc = WriteDataBoth (padapter);
if ( rc )
{
del_timer (&padapter->timer);
padapter->expectingIRQ = 0;
padapter->survivor = (rc ^ 3) >> 1;
DEB (printk ("\npci2220i: FAILURE 20"));
if ( InitFailover (padapter, pdev) )
{
OpDone (padapter, DID_ERROR << 16);
return 0;
}
}
}
else
{
rc = IdeCmd (padapter, pdev);
if ( (padapter->cmd == WRITE_CMD) && !rc )
rc = WriteData (padapter);
if ( rc )
{
del_timer (&padapter->timer);
padapter->expectingIRQ = 0;
if ( pdev->raid )
{
padapter->survivor = (pdev->spigot ^ 3) >> 1;
DEB (printk ("\npci2220i: FAILURE 21"));
if ( !InitFailover (padapter, pdev) )
return 0;
}
OpDone (padapter, DID_ERROR << 16);
return 0;
}
}
return 0;
}
static void internal_done(Scsi_Cmnd *SCpnt)
{
SCpnt->SCp.Status++;
}
/****************************************************************
* Name: Pci2220i_Command
*
* Description: Process a command from the SCSI manager.
*
* Parameters: SCpnt - Pointer to SCSI command structure.
*
* Returns: Status code.
*
****************************************************************/
int Pci2220i_Command (Scsi_Cmnd *SCpnt)
{
Pci2220i_QueueCommand (SCpnt, internal_done);
SCpnt->SCp.Status = 0;
while (!SCpnt->SCp.Status)
barrier ();
return SCpnt->result;
}
/****************************************************************
* Name: ReadFlash
*
* Description: Read information from controller Flash memory.
*
* Parameters: padapter - Pointer to host interface data structure.
* pdata - Pointer to data structures.
* base - base address in Flash.
* length - lenght of data space in bytes.
*
* Returns: Nothing.
*
****************************************************************/
VOID ReadFlash (PADAPTER2220I padapter, VOID *pdata, ULONG base, ULONG length)
{
ULONG oldremap;
UCHAR olddesc;
ULONG z;
UCHAR *pd = (UCHAR *)pdata;
oldremap = inl (padapter->regRemap); // save values to restore later
olddesc = inb_p (padapter->regDesc);
outl (base | 1, padapter->regRemap); // remap to Flash space as specified
outb_p (0x40, padapter->regDesc); // describe remap region as 8 bit
for ( z = 0; z < length; z++) // get "length" data count
*pd++ = inb_p (padapter->regBase + z); // read in the data
outl (oldremap, padapter->regRemap); // restore remap register values
outb_p (olddesc, padapter->regDesc);
}
/****************************************************************
* Name: Pci2220i_Detect
*
* Description: Detect and initialize our boards.
*
* Parameters: tpnt - Pointer to SCSI host template structure.
*
* Returns: Number of adapters installed.
*
****************************************************************/
int Pci2220i_Detect (Scsi_Host_Template *tpnt)
{
int found = 0;
int installed = 0;
struct Scsi_Host *pshost;
PADAPTER2220I padapter;
int unit;
int z;
USHORT zs;
USHORT raidon = FALSE;
int setirq;
UCHAR spigot1 = FALSE;
UCHAR spigot2 = FALSE;
#if LINUX_VERSION_CODE > LINUXVERSION(2,1,92)
struct pci_dev *pdev = NULL;
#else
UCHAR pci_bus, pci_device_fn;
#endif
#if LINUX_VERSION_CODE > LINUXVERSION(2,1,92)
if ( !pci_present () )
#else
if ( !pcibios_present () )
#endif
{
printk ("pci2220i: PCI BIOS not present\n");
return 0;
}
#if LINUX_VERSION_CODE > LINUXVERSION(2,1,92)
while ( (pdev = pci_find_device (VENDOR_PSI, DEVICE_DALE_1, pdev)) != NULL )
#else
while ( !pcibios_find_device (VENDOR_PSI, DEVICE_DALE_1, found, &pci_bus, &pci_device_fn) )
#endif
{
pshost = scsi_register (tpnt, sizeof(ADAPTER2220I));
padapter = HOSTDATA(pshost);
memset (padapter, 0, sizeof (ADAPTER2220I));
zs = pdev->resource[1].start;
padapter->basePort = zs;
padapter->regRemap = zs + RTR_LOCAL_REMAP; // 32 bit local space remap
padapter->regDesc = zs + RTR_REGIONS; // 32 bit local region descriptor
padapter->regRange = zs + RTR_LOCAL_RANGE; // 32 bit local range
padapter->regIrqControl = zs + RTR_INT_CONTROL_STATUS; // 16 bit interupt control and status
padapter->regScratchPad = zs + RTR_MAILBOX; // 16 byte scratchpad I/O base address
zs = pdev->resource[2].start;
padapter->regBase = zs;
padapter->regData = zs + REG_DATA; // data register I/O address
padapter->regError = zs + REG_ERROR; // error register I/O address
padapter->regSectCount = zs + REG_SECTOR_COUNT; // sector count register I/O address
padapter->regLba0 = zs + REG_LBA_0; // least significant byte of LBA
padapter->regLba8 = zs + REG_LBA_8; // next least significant byte of LBA
padapter->regLba16 = zs + REG_LBA_16; // next most significan byte of LBA
padapter->regLba24 = zs + REG_LBA_24; // head and most 4 significant bits of LBA
padapter->regStatCmd = zs + REG_STAT_CMD; // status on read and command on write register
padapter->regStatSel = zs + REG_STAT_SEL; // board status on read and spigot select on write register
padapter->regFail = zs + REG_FAIL;
padapter->regAltStat = zs + REG_ALT_STAT;
padapter->regDmaDesc = zs + RTL_DMA1_DESC_PTR; // address of the DMA discriptor register for direction of transfer
padapter->regDmaCmdStat = zs + RTL_DMA_COMMAND_STATUS + 1; // Byte #1 of DMA command status register
padapter->regDmaAddrPci = zs + RTL_DMA1_PCI_ADDR; // 32 bit register for PCI address of DMA
padapter->regDmaAddrLoc = zs + RTL_DMA1_LOCAL_ADDR; // 32 bit register for local bus address of DMA
padapter->regDmaCount = zs + RTL_DMA1_COUNT; // 32 bit register for DMA transfer count
padapter->regDmaMode = zs + RTL_DMA1_MODE + 1; // 32 bit register for DMA mode control
if ( !inb_p (padapter->regScratchPad + DALE_NUM_DRIVES) ) // if no devices on this board
goto unregister;
#if LINUX_VERSION_CODE > LINUXVERSION(2,1,92)
pshost->irq = pdev->irq;
#else
pcibios_read_config_byte (pci_bus, pci_device_fn, PCI_INTERRUPT_LINE, &pshost->irq);
#endif
setirq = 1;
for ( z = 0; z < installed; z++ ) // scan for shared interrupts
{
if ( PsiHost[z]->irq == pshost->irq ) // if shared then, don't posses
setirq = 0;
}
if ( setirq ) // if not shared, posses
{
if ( request_irq (pshost->irq, Irq_Handler, SA_SHIRQ, "pci2220i", padapter) < 0 )
{
if ( request_irq (pshost->irq, Irq_Handler, SA_INTERRUPT | SA_SHIRQ, "pci2220i", padapter) < 0 )
{
printk ("Unable to allocate IRQ for PCI-2220I controller.\n");
goto unregister;
}
}
padapter->irqOwned = pshost->irq; // set IRQ as owned
}
padapter->kBuffer = kmalloc (SECTORSXFER * BYTES_PER_SECTOR, GFP_DMA | GFP_ATOMIC);
if ( !padapter->kBuffer )
{
printk ("Unable to allocate DMA buffer for PCI-2220I controller.\n");
#if LINUX_VERSION_CODE < LINUXVERSION(1,3,70)
free_irq (pshost->irq);
#else /* version >= v1.3.70 */
free_irq (pshost->irq, padapter);
#endif /* version >= v1.3.70 */
goto unregister;
}
PsiHost[installed] = pshost; // save SCSI_HOST pointer
pshost->io_port = padapter->basePort;
pshost->n_io_port = 0xFF;
pshost->unique_id = padapter->regBase;
pshost->max_id = 4;
outb_p (0x01, padapter->regRange); // fix our range register because other drivers want to tromp on it
padapter->timingMode = inb_p (padapter->regScratchPad + DALE_TIMING_MODE);
if ( padapter->timingMode >= 2 )
padapter->timingAddress = ModeArray[padapter->timingMode - 2];
else
padapter->timingPIO = TRUE;
ReadFlash (padapter, &DaleSetup, DALE_FLASH_SETUP, sizeof (SETUP));
for ( z = 0; z < inb_p (padapter->regScratchPad + DALE_NUM_DRIVES); ++z )
{
unit = inb_p (padapter->regScratchPad + DALE_CHANNEL_DEVICE_0 + z) & 0x0F;
padapter->device[z].device = inb_p (padapter->regScratchPad + DALE_SCRATH_DEVICE_0 + unit);
padapter->device[z].byte6 = (UCHAR)(((unit & 1) << 4) | 0xE0);
padapter->device[z].spigot = (UCHAR)(1 << (unit >> 1));
padapter->device[z].sectors = DaleSetup.setupDevice[unit].sectors;
padapter->device[z].heads = DaleSetup.setupDevice[unit].heads;
padapter->device[z].cylinders = DaleSetup.setupDevice[unit].cylinders;
padapter->device[z].blocks = DaleSetup.setupDevice[unit].blocks;
if ( !z )
{
ReadFlash (padapter, &DiskMirror, DALE_FLASH_RAID, sizeof (DiskMirror));
DiskMirror[0].status = inb_p (padapter->regScratchPad + DALE_RAID_0_STATUS);
DiskMirror[1].status = inb_p (padapter->regScratchPad + DALE_RAID_1_STATUS);
if ( (DiskMirror[0].signature == SIGNATURE) && (DiskMirror[1].signature == SIGNATURE) &&
(DiskMirror[0].pairIdentifier == (DiskMirror[1].pairIdentifier ^ 1)) )
{
raidon = TRUE;
}
memcpy (padapter->device[z].DiskMirror, DiskMirror, sizeof (DiskMirror));
padapter->raidData[0] = &padapter->device[z].DiskMirror[0];
padapter->raidData[2] = &padapter->device[z].DiskMirror[1];
if ( raidon )
{
padapter->device[z].lastsectorlba[0] = InlineIdentify (padapter, 1, 0);
padapter->device[z].lastsectorlba[1] = InlineIdentify (padapter, 2, 0);
if ( !(DiskMirror[1].status & UCBF_SURVIVOR) && padapter->device[z].lastsectorlba[0] )
spigot1 = TRUE;
if ( !(DiskMirror[0].status & UCBF_SURVIVOR) && padapter->device[z].lastsectorlba[1] )
spigot2 = TRUE;
if ( DiskMirror[0].status & UCBF_SURVIVOR & DiskMirror[1].status & UCBF_SURVIVOR )
spigot1 = TRUE;
if ( spigot1 && (DiskMirror[0].status & UCBF_REBUILD) )
InlineReadSignature (padapter, &padapter->device[z], 0);
if ( spigot2 && (DiskMirror[1].status & UCBF_REBUILD) )
InlineReadSignature (padapter, &padapter->device[z], 1);
if ( spigot1 && spigot2 )
{
padapter->device[z].raid = 1;
if ( DiskMirror[0].status & UCBF_REBUILD )
padapter->device[z].spigot = 2;
else
padapter->device[z].spigot = 1;
if ( (DiskMirror[0].status & UCBF_REBUILD) || (DiskMirror[1].status & UCBF_REBUILD) )
{
padapter->reconOn = padapter->reconIsStarting = TRUE;
}
}
else
{
if ( spigot1 )
{
if ( DiskMirror[0].status & UCBF_REBUILD )
goto unregister;
DiskMirror[0].status = UCBF_MIRRORED | UCBF_SURVIVOR;
padapter->device[z].spigot = 1;
}
else
{
if ( DiskMirror[1].status & UCBF_REBUILD )
goto unregister;
DiskMirror[1].status = UCBF_MIRRORED | UCBF_SURVIVOR;
padapter->device[z].spigot = 2;
}
if ( DaleSetup.rebootRebuil )
padapter->reconOn = padapter->reconIsStarting = TRUE;
}
break;
}
}
}
init_timer (&padapter->timer);
padapter->timer.function = TimerExpiry;
padapter->timer.data = (unsigned long)padapter;
init_timer (&padapter->reconTimer);
padapter->reconTimer.function = ReconTimerExpiry;
padapter->reconTimer.data = (unsigned long)padapter;
printk("\nPCI-2220I EIDE CONTROLLER: at I/O = %X/%X IRQ = %d\n", padapter->basePort, padapter->regBase, pshost->irq);
printk("Version %s, Compiled %s %s\n\n", PCI2220I_VERSION, __DATE__, __TIME__);
found++;
if ( ++installed < MAXADAPTER )
continue;
break;;
unregister:;
scsi_unregister (pshost);
found++;
}
NumAdapters = installed;
return installed;
}
/****************************************************************
* Name: Pci2220i_Abort
*
* Description: Process the Abort command from the SCSI manager.
*
* Parameters: SCpnt - Pointer to SCSI command structure.
*
* Returns: Allways snooze.
*
****************************************************************/
int Pci2220i_Abort (Scsi_Cmnd *SCpnt)
{
return SCSI_ABORT_SNOOZE;
}
/****************************************************************
* Name: Pci2220i_Reset
*
* Description: Process the Reset command from the SCSI manager.
*
* Parameters: SCpnt - Pointer to SCSI command structure.
* flags - Flags about the reset command
*
* Returns: No active command at this time, so this means
* that each time we got some kind of response the
* last time through. Tell the mid-level code to
* request sense information in order to decide what
* to do next.
*
****************************************************************/
int Pci2220i_Reset (Scsi_Cmnd *SCpnt, unsigned int reset_flags)
{
return SCSI_RESET_PUNT;
}
/****************************************************************
* Name: Pci2220i_Release
*
* Description: Release resources allocated for a single each adapter.
*
* Parameters: pshost - Pointer to SCSI command structure.
*
* Returns: zero.
*
****************************************************************/
int Pci2220i_Release (struct Scsi_Host *pshost)
{
PADAPTER2220I padapter = HOSTDATA (pshost);
if ( padapter->reconOn )
{
padapter->reconOn = FALSE; // shut down the hot reconstruct
if ( padapter->reconPhase )
udelay (300000);
if ( padapter->reconTimer.data ) // is the timer running?
{
del_timer (&padapter->reconTimer);
padapter->reconTimer.data = 0;
}
}
// save RAID status on the board
outb_p (DiskMirror[0].status, padapter->regScratchPad + DALE_RAID_0_STATUS);
outb_p (DiskMirror[1].status, padapter->regScratchPad + DALE_RAID_1_STATUS);
if ( padapter->irqOwned )
#if LINUX_VERSION_CODE < LINUXVERSION(1,3,70)
free_irq (pshost->irq);
#else /* version >= v1.3.70 */
free_irq (pshost->irq, padapter);
#endif /* version >= v1.3.70 */
release_region (pshost->io_port, pshost->n_io_port);
kfree (padapter->kBuffer);
scsi_unregister(pshost);
return 0;
}
#include "sd.h"
/****************************************************************
* Name: Pci2220i_BiosParam
*
* Description: Process the biosparam request from the SCSI manager to
* return C/H/S data.
*
* Parameters: disk - Pointer to SCSI disk structure.
* dev - Major/minor number from kernel.
* geom - Pointer to integer array to place geometry data.
*
* Returns: zero.
*
****************************************************************/
int Pci2220i_BiosParam (Scsi_Disk *disk, kdev_t dev, int geom[])
{
POUR_DEVICE pdev;
pdev = &(HOSTDATA(disk->device->host)->device[disk->device->id]);
geom[0] = pdev->heads;
geom[1] = pdev->sectors;
geom[2] = pdev->cylinders;
return 0;
}
#ifdef MODULE
/* Eventually this will go into an include file, but this will be later */
Scsi_Host_Template driver_template = PCI2220I;
#include "scsi_module.c"
#endif
|