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
|
// SPDX-License-Identifier: GPL-2.0
/***************************************************************************
* copyright : (C) 1999 Axel Dziemba (axel.dziemba@ines.de)
* (C) 2002 by Frank Mori Hess
***************************************************************************/
#include "ines.h"
#include <linux/pci.h>
#include <linux/pci_ids.h>
#include <linux/bitops.h>
#include <asm/dma.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include "gpib_pci_ids.h"
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("GPIB driver for Ines iGPIB 72010");
int ines_line_status(const gpib_board_t *board)
{
int status = ValidALL;
int bcm_bits;
struct ines_priv *ines_priv;
struct nec7210_priv *nec_priv;
ines_priv = board->private_data;
nec_priv = &ines_priv->nec7210_priv;
bcm_bits = ines_inb(ines_priv, BUS_CONTROL_MONITOR);
if (bcm_bits & BCM_REN_BIT)
status |= BusREN;
if (bcm_bits & BCM_IFC_BIT)
status |= BusIFC;
if (bcm_bits & BCM_SRQ_BIT)
status |= BusSRQ;
if (bcm_bits & BCM_EOI_BIT)
status |= BusEOI;
if (bcm_bits & BCM_NRFD_BIT)
status |= BusNRFD;
if (bcm_bits & BCM_NDAC_BIT)
status |= BusNDAC;
if (bcm_bits & BCM_DAV_BIT)
status |= BusDAV;
if (bcm_bits & BCM_ATN_BIT)
status |= BusATN;
return status;
}
void ines_set_xfer_counter(struct ines_priv *priv, unsigned int count)
{
if (count > 0xffff) {
pr_err("ines: bug! tried to set xfer counter > 0xffff\n");
return;
}
ines_outb(priv, (count >> 8) & 0xff, XFER_COUNT_UPPER);
ines_outb(priv, count & 0xff, XFER_COUNT_LOWER);
}
unsigned int ines_t1_delay(gpib_board_t *board, unsigned int nano_sec)
{
struct ines_priv *ines_priv = board->private_data;
struct nec7210_priv *nec_priv = &ines_priv->nec7210_priv;
unsigned int retval;
retval = nec7210_t1_delay(board, nec_priv, nano_sec);
if (nano_sec <= 250) {
write_byte(nec_priv, INES_AUXD | INES_FOLLOWING_T1_250ns |
INES_INITIAL_T1_2000ns, AUXMR);
retval = 250;
} else if (nano_sec <= 350) {
write_byte(nec_priv, INES_AUXD | INES_FOLLOWING_T1_350ns |
INES_INITIAL_T1_2000ns, AUXMR);
retval = 350;
} else {
write_byte(nec_priv, INES_AUXD | INES_FOLLOWING_T1_500ns |
INES_INITIAL_T1_2000ns, AUXMR);
retval = 500;
}
return retval;
}
static inline unsigned short num_in_fifo_bytes(struct ines_priv *ines_priv)
{
return ines_inb(ines_priv, IN_FIFO_COUNT);
}
static ssize_t pio_read(gpib_board_t *board, struct ines_priv *ines_priv, uint8_t *buffer,
size_t length, size_t *nbytes)
{
ssize_t retval = 0;
unsigned int num_fifo_bytes, i;
struct nec7210_priv *nec_priv = &ines_priv->nec7210_priv;
*nbytes = 0;
while (*nbytes < length) {
if (wait_event_interruptible(board->wait,
num_in_fifo_bytes(ines_priv) ||
test_bit(RECEIVED_END_BN, &nec_priv->state) ||
test_bit(DEV_CLEAR_BN, &nec_priv->state) ||
test_bit(TIMO_NUM, &board->status))) {
pr_warn("gpib: pio read wait interrupted\n");
return -ERESTARTSYS;
}
if (test_bit(TIMO_NUM, &board->status))
return -ETIMEDOUT;
if (test_bit(DEV_CLEAR_BN, &nec_priv->state))
return -EINTR;
num_fifo_bytes = num_in_fifo_bytes(ines_priv);
if (num_fifo_bytes + *nbytes > length) {
pr_warn("ines: counter allowed %li extra byte(s)\n",
(long)(num_fifo_bytes - (length - *nbytes)));
num_fifo_bytes = length - *nbytes;
}
for (i = 0; i < num_fifo_bytes; i++)
buffer[(*nbytes)++] = read_byte(nec_priv, DIR);
if (test_bit(RECEIVED_END_BN, &nec_priv->state) &&
num_in_fifo_bytes(ines_priv) == 0)
break;
if (need_resched())
schedule();
}
/* make sure RECEIVED_END is in sync */
ines_interrupt(board);
return retval;
}
int ines_accel_read(gpib_board_t *board, uint8_t *buffer,
size_t length, int *end, size_t *bytes_read)
{
ssize_t retval = 0;
struct ines_priv *ines_priv = board->private_data;
struct nec7210_priv *nec_priv = &ines_priv->nec7210_priv;
int counter_setting;
*end = 0;
*bytes_read = 0;
if (length == 0)
return 0;
clear_bit(DEV_CLEAR_BN, &nec_priv->state);
write_byte(nec_priv, INES_RFD_HLD_IMMEDIATE, AUXMR);
//clear in fifo
nec7210_set_reg_bits(nec_priv, ADMR, IN_FIFO_ENABLE_BIT, 0);
nec7210_set_reg_bits(nec_priv, ADMR, IN_FIFO_ENABLE_BIT, IN_FIFO_ENABLE_BIT);
ines_priv->extend_mode_bits |= LAST_BYTE_HANDLING_BIT;
ines_priv->extend_mode_bits &= ~XFER_COUNTER_OUTPUT_BIT & ~XFER_COUNTER_ENABLE_BIT;
ines_outb(ines_priv, ines_priv->extend_mode_bits, EXTEND_MODE);
counter_setting = length - num_in_fifo_bytes(ines_priv);
if (counter_setting > 0) {
ines_set_xfer_counter(ines_priv, length);
ines_priv->extend_mode_bits |= XFER_COUNTER_ENABLE_BIT;
ines_outb(ines_priv, ines_priv->extend_mode_bits, EXTEND_MODE);
// holdoff on END
nec7210_set_handshake_mode(board, nec_priv, HR_HLDE);
/* release rfd holdoff */
write_byte(nec_priv, AUX_FH, AUXMR);
}
retval = pio_read(board, ines_priv, buffer, length, bytes_read);
ines_priv->extend_mode_bits &= ~XFER_COUNTER_ENABLE_BIT;
ines_outb(ines_priv, ines_priv->extend_mode_bits, EXTEND_MODE);
if (retval < 0) {
write_byte(nec_priv, INES_RFD_HLD_IMMEDIATE, AUXMR);
return retval;
}
if (test_and_clear_bit(RECEIVED_END_BN, &nec_priv->state))
*end = 1;
return retval;
}
static const int out_fifo_size = 0xff;
static inline unsigned short num_out_fifo_bytes(struct ines_priv *ines_priv)
{
return ines_inb(ines_priv, OUT_FIFO_COUNT);
}
static int ines_write_wait(gpib_board_t *board, struct ines_priv *ines_priv,
unsigned int fifo_threshold)
{
struct nec7210_priv *nec_priv = &ines_priv->nec7210_priv;
// wait until byte is ready to be sent
if (wait_event_interruptible(board->wait,
num_out_fifo_bytes(ines_priv) < fifo_threshold ||
test_bit(BUS_ERROR_BN, &nec_priv->state) ||
test_bit(DEV_CLEAR_BN, &nec_priv->state) ||
test_bit(TIMO_NUM, &board->status))) {
dev_dbg(board->gpib_dev, "gpib write interrupted\n");
return -ERESTARTSYS;
}
if (test_bit(BUS_ERROR_BN, &nec_priv->state))
return -EIO;
if (test_bit(DEV_CLEAR_BN, &nec_priv->state))
return -EINTR;
if (test_bit(TIMO_NUM, &board->status))
return -ETIMEDOUT;
return 0;
}
int ines_accel_write(gpib_board_t *board, uint8_t *buffer, size_t length,
int send_eoi, size_t *bytes_written)
{
size_t count = 0;
ssize_t retval = 0;
struct ines_priv *ines_priv = board->private_data;
struct nec7210_priv *nec_priv = &ines_priv->nec7210_priv;
unsigned int num_bytes, i;
*bytes_written = 0;
//clear out fifo
nec7210_set_reg_bits(nec_priv, ADMR, OUT_FIFO_ENABLE_BIT, 0);
nec7210_set_reg_bits(nec_priv, ADMR, OUT_FIFO_ENABLE_BIT, OUT_FIFO_ENABLE_BIT);
ines_priv->extend_mode_bits |= XFER_COUNTER_OUTPUT_BIT;
ines_priv->extend_mode_bits &= ~XFER_COUNTER_ENABLE_BIT;
ines_priv->extend_mode_bits &= ~LAST_BYTE_HANDLING_BIT;
ines_outb(ines_priv, ines_priv->extend_mode_bits, EXTEND_MODE);
ines_set_xfer_counter(ines_priv, length);
if (send_eoi)
ines_priv->extend_mode_bits |= LAST_BYTE_HANDLING_BIT;
ines_priv->extend_mode_bits |= XFER_COUNTER_ENABLE_BIT;
ines_outb(ines_priv, ines_priv->extend_mode_bits, EXTEND_MODE);
while (count < length) {
retval = ines_write_wait(board, ines_priv, out_fifo_size);
if (retval < 0)
break;
num_bytes = out_fifo_size - num_out_fifo_bytes(ines_priv);
if (num_bytes + count > length)
num_bytes = length - count;
for (i = 0; i < num_bytes; i++)
write_byte(nec_priv, buffer[count++], CDOR);
}
if (retval < 0) {
ines_priv->extend_mode_bits &= ~XFER_COUNTER_ENABLE_BIT;
ines_outb(ines_priv, ines_priv->extend_mode_bits, EXTEND_MODE);
*bytes_written = length - num_out_fifo_bytes(ines_priv);
return retval;
}
// wait last byte has been sent
retval = ines_write_wait(board, ines_priv, 1);
ines_priv->extend_mode_bits &= ~XFER_COUNTER_ENABLE_BIT;
ines_outb(ines_priv, ines_priv->extend_mode_bits, EXTEND_MODE);
*bytes_written = length - num_out_fifo_bytes(ines_priv);
return retval;
}
irqreturn_t ines_pci_interrupt(int irq, void *arg)
{
gpib_board_t *board = arg;
struct ines_priv *priv = board->private_data;
struct nec7210_priv *nec_priv = &priv->nec7210_priv;
if (priv->pci_chip_type == PCI_CHIP_QUANCOM) {
if ((inb((unsigned long)nec_priv->iobase +
QUANCOM_IRQ_CONTROL_STATUS_REG) &
QUANCOM_IRQ_ASSERTED_BIT))
outb(QUANCOM_IRQ_ENABLE_BIT, (unsigned long)(nec_priv->iobase) +
QUANCOM_IRQ_CONTROL_STATUS_REG);
}
return ines_interrupt(board);
}
irqreturn_t ines_interrupt(gpib_board_t *board)
{
struct ines_priv *priv = board->private_data;
struct nec7210_priv *nec_priv = &priv->nec7210_priv;
unsigned int isr3_bits, isr4_bits;
unsigned long flags;
int wake = 0;
spin_lock_irqsave(&board->spinlock, flags);
nec7210_interrupt(board, nec_priv);
isr3_bits = ines_inb(priv, ISR3);
isr4_bits = ines_inb(priv, ISR4);
if (isr3_bits & IFC_ACTIVE_BIT) {
push_gpib_event(board, EventIFC);
wake++;
}
if (isr3_bits & FIFO_ERROR_BIT)
pr_err("ines gpib: fifo error\n");
if (isr3_bits & XFER_COUNT_BIT)
wake++;
if (isr4_bits & (IN_FIFO_WATERMARK_BIT | IN_FIFO_FULL_BIT | OUT_FIFO_WATERMARK_BIT |
OUT_FIFO_EMPTY_BIT))
wake++;
if (wake)
wake_up_interruptible(&board->wait);
spin_unlock_irqrestore(&board->spinlock, flags);
return IRQ_HANDLED;
}
static int ines_pci_attach(gpib_board_t *board, const gpib_board_config_t *config);
static int ines_pci_accel_attach(gpib_board_t *board, const gpib_board_config_t *config);
static int ines_isa_attach(gpib_board_t *board, const gpib_board_config_t *config);
static void ines_pci_detach(gpib_board_t *board);
static void ines_isa_detach(gpib_board_t *board);
enum ines_pci_vendor_ids {
PCI_VENDOR_ID_INES_QUICKLOGIC = 0x16da
};
enum ines_pci_device_ids {
PCI_DEVICE_ID_INES_GPIB_AMCC = 0x8507,
PCI_DEVICE_ID_INES_GPIB_QL5030 = 0x11,
};
enum ines_pci_subdevice_ids {
PCI_SUBDEVICE_ID_INES_GPIB = 0x1072
};
static struct pci_device_id ines_pci_table[] = {
{PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050, PCI_VENDOR_ID_PLX,
PCI_SUBDEVICE_ID_INES_GPIB, 0, 0, 0},
{PCI_VENDOR_ID_AMCC, PCI_DEVICE_ID_INES_GPIB_AMCC, PCI_VENDOR_ID_AMCC,
PCI_SUBDEVICE_ID_INES_GPIB, 0, 0, 0},
{PCI_VENDOR_ID_INES_QUICKLOGIC, PCI_DEVICE_ID_INES_GPIB_QL5030,
PCI_VENDOR_ID_INES_QUICKLOGIC, PCI_DEVICE_ID_INES_GPIB_QL5030, 0, 0, 0},
{PCI_DEVICE(PCI_VENDOR_ID_QUANCOM, PCI_DEVICE_ID_QUANCOM_GPIB)},
{0}
};
MODULE_DEVICE_TABLE(pci, ines_pci_table);
struct ines_pci_id {
unsigned int vendor_id;
unsigned int device_id;
int subsystem_vendor_id;
int subsystem_device_id;
unsigned int gpib_region;
unsigned int io_offset;
enum ines_pci_chip pci_chip_type;
};
struct ines_pci_id pci_ids[] = {
{vendor_id: PCI_VENDOR_ID_PLX,
device_id : PCI_DEVICE_ID_PLX_9050,
subsystem_vendor_id : PCI_VENDOR_ID_PLX,
subsystem_device_id : PCI_SUBDEVICE_ID_INES_GPIB,
gpib_region : 2,
io_offset : 1,
pci_chip_type : PCI_CHIP_PLX9050,
},
{vendor_id: PCI_VENDOR_ID_AMCC,
device_id : PCI_DEVICE_ID_INES_GPIB_AMCC,
subsystem_vendor_id : PCI_VENDOR_ID_AMCC,
subsystem_device_id : PCI_SUBDEVICE_ID_INES_GPIB,
gpib_region : 1,
io_offset : 1,
pci_chip_type : PCI_CHIP_AMCC5920,
},
{vendor_id: PCI_VENDOR_ID_INES_QUICKLOGIC,
device_id : PCI_DEVICE_ID_INES_GPIB_QL5030,
subsystem_vendor_id : PCI_VENDOR_ID_INES_QUICKLOGIC,
subsystem_device_id : PCI_DEVICE_ID_INES_GPIB_QL5030,
gpib_region : 1,
io_offset : 1,
pci_chip_type : PCI_CHIP_QUICKLOGIC5030,
},
{vendor_id: PCI_VENDOR_ID_QUANCOM,
device_id : PCI_DEVICE_ID_QUANCOM_GPIB,
subsystem_vendor_id : -1,
subsystem_device_id : -1,
gpib_region : 0,
io_offset : 4,
pci_chip_type : PCI_CHIP_QUANCOM,
},
};
static const int num_pci_chips = ARRAY_SIZE(pci_ids);
// wrappers for interface functions
int ines_read(gpib_board_t *board, uint8_t *buffer, size_t length, int *end, size_t *bytes_read)
{
struct ines_priv *priv = board->private_data;
struct nec7210_priv *nec_priv = &priv->nec7210_priv;
ssize_t retval;
int dummy;
retval = nec7210_read(board, &priv->nec7210_priv, buffer, length, end, bytes_read);
if (retval < 0) {
write_byte(nec_priv, INES_RFD_HLD_IMMEDIATE, AUXMR);
set_bit(RFD_HOLDOFF_BN, &nec_priv->state);
nec7210_read_data_in(board, nec_priv, &dummy);
}
return retval;
}
int ines_write(gpib_board_t *board, uint8_t *buffer, size_t length, int send_eoi,
size_t *bytes_written)
{
struct ines_priv *priv = board->private_data;
return nec7210_write(board, &priv->nec7210_priv, buffer, length, send_eoi, bytes_written);
}
int ines_command(gpib_board_t *board, uint8_t *buffer, size_t length, size_t *bytes_written)
{
struct ines_priv *priv = board->private_data;
return nec7210_command(board, &priv->nec7210_priv, buffer, length, bytes_written);
}
int ines_take_control(gpib_board_t *board, int synchronous)
{
struct ines_priv *priv = board->private_data;
return nec7210_take_control(board, &priv->nec7210_priv, synchronous);
}
int ines_go_to_standby(gpib_board_t *board)
{
struct ines_priv *priv = board->private_data;
return nec7210_go_to_standby(board, &priv->nec7210_priv);
}
void ines_request_system_control(gpib_board_t *board, int request_control)
{
struct ines_priv *priv = board->private_data;
nec7210_request_system_control(board, &priv->nec7210_priv, request_control);
}
void ines_interface_clear(gpib_board_t *board, int assert)
{
struct ines_priv *priv = board->private_data;
nec7210_interface_clear(board, &priv->nec7210_priv, assert);
}
void ines_remote_enable(gpib_board_t *board, int enable)
{
struct ines_priv *priv = board->private_data;
nec7210_remote_enable(board, &priv->nec7210_priv, enable);
}
int ines_enable_eos(gpib_board_t *board, uint8_t eos_byte, int compare_8_bits)
{
struct ines_priv *priv = board->private_data;
return nec7210_enable_eos(board, &priv->nec7210_priv, eos_byte, compare_8_bits);
}
void ines_disable_eos(gpib_board_t *board)
{
struct ines_priv *priv = board->private_data;
nec7210_disable_eos(board, &priv->nec7210_priv);
}
unsigned int ines_update_status(gpib_board_t *board, unsigned int clear_mask)
{
struct ines_priv *priv = board->private_data;
return nec7210_update_status(board, &priv->nec7210_priv, clear_mask);
}
int ines_primary_address(gpib_board_t *board, unsigned int address)
{
struct ines_priv *priv = board->private_data;
return nec7210_primary_address(board, &priv->nec7210_priv, address);
}
int ines_secondary_address(gpib_board_t *board, unsigned int address, int enable)
{
struct ines_priv *priv = board->private_data;
return nec7210_secondary_address(board, &priv->nec7210_priv, address, enable);
}
int ines_parallel_poll(gpib_board_t *board, uint8_t *result)
{
struct ines_priv *priv = board->private_data;
return nec7210_parallel_poll(board, &priv->nec7210_priv, result);
}
void ines_parallel_poll_configure(gpib_board_t *board, uint8_t config)
{
struct ines_priv *priv = board->private_data;
nec7210_parallel_poll_configure(board, &priv->nec7210_priv, config);
}
void ines_parallel_poll_response(gpib_board_t *board, int ist)
{
struct ines_priv *priv = board->private_data;
nec7210_parallel_poll_response(board, &priv->nec7210_priv, ist);
}
void ines_serial_poll_response(gpib_board_t *board, uint8_t status)
{
struct ines_priv *priv = board->private_data;
nec7210_serial_poll_response(board, &priv->nec7210_priv, status);
}
uint8_t ines_serial_poll_status(gpib_board_t *board)
{
struct ines_priv *priv = board->private_data;
return nec7210_serial_poll_status(board, &priv->nec7210_priv);
}
void ines_return_to_local(gpib_board_t *board)
{
struct ines_priv *priv = board->private_data;
nec7210_return_to_local(board, &priv->nec7210_priv);
}
gpib_interface_t ines_pci_unaccel_interface = {
name: "ines_pci_unaccel",
attach : ines_pci_attach,
detach : ines_pci_detach,
read : ines_read,
write : ines_write,
command : ines_command,
take_control : ines_take_control,
go_to_standby : ines_go_to_standby,
request_system_control : ines_request_system_control,
interface_clear : ines_interface_clear,
remote_enable : ines_remote_enable,
enable_eos : ines_enable_eos,
disable_eos : ines_disable_eos,
parallel_poll : ines_parallel_poll,
parallel_poll_configure : ines_parallel_poll_configure,
parallel_poll_response : ines_parallel_poll_response,
local_parallel_poll_mode : NULL, // XXX
line_status : ines_line_status,
update_status : ines_update_status,
primary_address : ines_primary_address,
secondary_address : ines_secondary_address,
serial_poll_response : ines_serial_poll_response,
serial_poll_status : ines_serial_poll_status,
t1_delay : ines_t1_delay,
return_to_local : ines_return_to_local,
};
gpib_interface_t ines_pci_interface = {
name: "ines_pci",
attach : ines_pci_accel_attach,
detach : ines_pci_detach,
read : ines_accel_read,
write : ines_accel_write,
command : ines_command,
take_control : ines_take_control,
go_to_standby : ines_go_to_standby,
request_system_control : ines_request_system_control,
interface_clear : ines_interface_clear,
remote_enable : ines_remote_enable,
enable_eos : ines_enable_eos,
disable_eos : ines_disable_eos,
parallel_poll : ines_parallel_poll,
parallel_poll_configure : ines_parallel_poll_configure,
parallel_poll_response : ines_parallel_poll_response,
local_parallel_poll_mode : NULL, // XXX
line_status : ines_line_status,
update_status : ines_update_status,
primary_address : ines_primary_address,
secondary_address : ines_secondary_address,
serial_poll_response : ines_serial_poll_response,
serial_poll_status : ines_serial_poll_status,
t1_delay : ines_t1_delay,
return_to_local : ines_return_to_local,
};
gpib_interface_t ines_pci_accel_interface = {
name: "ines_pci_accel",
attach : ines_pci_accel_attach,
detach : ines_pci_detach,
read : ines_accel_read,
write : ines_accel_write,
command : ines_command,
take_control : ines_take_control,
go_to_standby : ines_go_to_standby,
request_system_control : ines_request_system_control,
interface_clear : ines_interface_clear,
remote_enable : ines_remote_enable,
enable_eos : ines_enable_eos,
disable_eos : ines_disable_eos,
parallel_poll : ines_parallel_poll,
parallel_poll_configure : ines_parallel_poll_configure,
parallel_poll_response : ines_parallel_poll_response,
local_parallel_poll_mode : NULL, // XXX
line_status : ines_line_status,
update_status : ines_update_status,
primary_address : ines_primary_address,
secondary_address : ines_secondary_address,
serial_poll_response : ines_serial_poll_response,
serial_poll_status : ines_serial_poll_status,
t1_delay : ines_t1_delay,
return_to_local : ines_return_to_local,
};
gpib_interface_t ines_isa_interface = {
name: "ines_isa",
attach : ines_isa_attach,
detach : ines_isa_detach,
read : ines_accel_read,
write : ines_accel_write,
command : ines_command,
take_control : ines_take_control,
go_to_standby : ines_go_to_standby,
request_system_control : ines_request_system_control,
interface_clear : ines_interface_clear,
remote_enable : ines_remote_enable,
enable_eos : ines_enable_eos,
disable_eos : ines_disable_eos,
parallel_poll : ines_parallel_poll,
parallel_poll_configure : ines_parallel_poll_configure,
parallel_poll_response : ines_parallel_poll_response,
local_parallel_poll_mode : NULL, // XXX
line_status : ines_line_status,
update_status : ines_update_status,
primary_address : ines_primary_address,
secondary_address : ines_secondary_address,
serial_poll_response : ines_serial_poll_response,
serial_poll_status : ines_serial_poll_status,
t1_delay : ines_t1_delay,
return_to_local : ines_return_to_local,
};
static int ines_allocate_private(gpib_board_t *board)
{
struct ines_priv *priv;
board->private_data = kmalloc(sizeof(struct ines_priv), GFP_KERNEL);
if (!board->private_data)
return -1;
priv = board->private_data;
memset(priv, 0, sizeof(struct ines_priv));
init_nec7210_private(&priv->nec7210_priv);
return 0;
}
void ines_free_private(gpib_board_t *board)
{
kfree(board->private_data);
board->private_data = NULL;
}
int ines_generic_attach(gpib_board_t *board)
{
struct ines_priv *ines_priv;
struct nec7210_priv *nec_priv;
board->status = 0;
if (ines_allocate_private(board))
return -ENOMEM;
ines_priv = board->private_data;
nec_priv = &ines_priv->nec7210_priv;
nec_priv->read_byte = nec7210_ioport_read_byte;
nec_priv->write_byte = nec7210_ioport_write_byte;
nec_priv->offset = 1;
nec_priv->type = IGPIB7210;
ines_priv->pci_chip_type = PCI_CHIP_NONE;
return 0;
}
void ines_online(struct ines_priv *ines_priv, const gpib_board_t *board, int use_accel)
{
struct nec7210_priv *nec_priv = &ines_priv->nec7210_priv;
/* ines doesn't seem to use internal count register */
write_byte(nec_priv, ICR | 0, AUXMR);
write_byte(nec_priv, INES_AUX_XMODE, AUXMR);
write_byte(nec_priv, INES_RFD_HLD_IMMEDIATE, AUXMR);
set_bit(RFD_HOLDOFF_BN, &nec_priv->state);
write_byte(nec_priv, INES_AUXD | 0, AUXMR);
ines_outb(ines_priv, 0, XDMA_CONTROL);
ines_priv->extend_mode_bits = 0;
ines_outb(ines_priv, ines_priv->extend_mode_bits, EXTEND_MODE);
if (use_accel) {
ines_outb(ines_priv, 0x80, OUT_FIFO_WATERMARK);
ines_outb(ines_priv, 0x80, IN_FIFO_WATERMARK);
ines_outb(ines_priv, IFC_ACTIVE_BIT | ATN_ACTIVE_BIT |
FIFO_ERROR_BIT | XFER_COUNT_BIT, IMR3);
ines_outb(ines_priv, IN_FIFO_WATERMARK_BIT | IN_FIFO_FULL_BIT |
OUT_FIFO_WATERMARK_BIT | OUT_FIFO_EMPTY_BIT, IMR4);
} else {
nec7210_set_reg_bits(nec_priv, ADMR, IN_FIFO_ENABLE_BIT | OUT_FIFO_ENABLE_BIT, 0);
ines_outb(ines_priv, IFC_ACTIVE_BIT | FIFO_ERROR_BIT, IMR3);
ines_outb(ines_priv, 0, IMR4);
}
nec7210_board_online(nec_priv, board);
if (use_accel)
nec7210_set_reg_bits(nec_priv, IMR1, HR_DOIE | HR_DIIE, 0);
}
static int ines_common_pci_attach(gpib_board_t *board, const gpib_board_config_t *config)
{
struct ines_priv *ines_priv;
struct nec7210_priv *nec_priv;
int isr_flags = 0;
int retval;
struct ines_pci_id found_id;
unsigned int i;
struct pci_dev *pdev;
memset(&found_id, 0, sizeof(found_id));
retval = ines_generic_attach(board);
if (retval)
return retval;
ines_priv = board->private_data;
nec_priv = &ines_priv->nec7210_priv;
// find board
ines_priv->pci_device = NULL;
for (i = 0; i < num_pci_chips && !ines_priv->pci_device; i++) {
pdev = NULL;
do {
if (pci_ids[i].subsystem_vendor_id >= 0 &&
pci_ids[i].subsystem_device_id >= 0)
pdev = pci_get_subsys(pci_ids[i].vendor_id, pci_ids[i].device_id,
pci_ids[i].subsystem_vendor_id,
pci_ids[i].subsystem_device_id, pdev);
else
pdev = pci_get_device(pci_ids[i].vendor_id, pci_ids[i].device_id,
pdev);
if (!pdev)
break;
if (config->pci_bus >= 0 && config->pci_bus != pdev->bus->number)
continue;
if (config->pci_slot >= 0 && config->pci_slot != PCI_SLOT(pdev->devfn))
continue;
found_id = pci_ids[i];
ines_priv->pci_device = pdev;
break;
} while (1);
}
if (!ines_priv->pci_device) {
pr_err("gpib: could not find ines PCI board\n");
return -1;
}
if (pci_enable_device(ines_priv->pci_device)) {
pr_err("error enabling pci device\n");
return -1;
}
if (pci_request_regions(ines_priv->pci_device, "ines-gpib"))
return -1;
nec_priv->iobase = (void *)(pci_resource_start(ines_priv->pci_device,
found_id.gpib_region));
ines_priv->pci_chip_type = found_id.pci_chip_type;
nec_priv->offset = found_id.io_offset;
switch (ines_priv->pci_chip_type) {
case PCI_CHIP_PLX9050:
ines_priv->plx_iobase = pci_resource_start(ines_priv->pci_device, 1);
break;
case PCI_CHIP_AMCC5920:
ines_priv->amcc_iobase = pci_resource_start(ines_priv->pci_device, 0);
break;
case PCI_CHIP_QUANCOM:
break;
case PCI_CHIP_QUICKLOGIC5030:
break;
default:
pr_err("gpib: unspecified chip type? (bug)\n");
nec_priv->iobase = 0;
pci_release_regions(ines_priv->pci_device);
return -1;
}
nec7210_board_reset(nec_priv, board);
#ifdef QUANCOM_PCI
if (ines_priv->pci_chip_type == PCI_CHIP_QUANCOM) {
/* change interrupt polarity */
nec_priv->auxb_bits |= HR_INV;
ines_outb(ines_priv, nec_priv->auxb_bits, AUXMR);
}
#endif
isr_flags |= IRQF_SHARED;
if (request_irq(ines_priv->pci_device->irq, ines_pci_interrupt, isr_flags,
"pci-gpib", board)) {
pr_err("gpib: can't request IRQ %d\n", ines_priv->pci_device->irq);
return -1;
}
ines_priv->irq = ines_priv->pci_device->irq;
// enable interrupts on pci chip
switch (ines_priv->pci_chip_type) {
case PCI_CHIP_PLX9050:
outl(PLX9050_LINTR1_EN_BIT | PLX9050_LINTR1_POLARITY_BIT | PLX9050_PCI_INTR_EN_BIT,
ines_priv->plx_iobase + PLX9050_INTCSR_REG);
break;
case PCI_CHIP_AMCC5920:
{
static const int region = 1;
static const int num_wait_states = 7;
u32 bits;
bits = amcc_prefetch_bits(region, PREFETCH_DISABLED);
bits |= amcc_PTADR_mode_bit(region);
bits |= amcc_disable_write_fifo_bit(region);
bits |= amcc_wait_state_bits(region, num_wait_states);
outl(bits, ines_priv->amcc_iobase + AMCC_PASS_THRU_REG);
outl(AMCC_ADDON_INTR_ENABLE_BIT, ines_priv->amcc_iobase + AMCC_INTCS_REG);
}
break;
case PCI_CHIP_QUANCOM:
outb(QUANCOM_IRQ_ENABLE_BIT, (unsigned long)(nec_priv->iobase) +
QUANCOM_IRQ_CONTROL_STATUS_REG);
break;
case PCI_CHIP_QUICKLOGIC5030:
break;
default:
pr_err("gpib: unspecified chip type? (bug)\n");
return -1;
}
return 0;
}
int ines_pci_attach(gpib_board_t *board, const gpib_board_config_t *config)
{
struct ines_priv *ines_priv;
int retval;
retval = ines_common_pci_attach(board, config);
if (retval < 0)
return retval;
ines_priv = board->private_data;
ines_online(ines_priv, board, 0);
return 0;
}
int ines_pci_accel_attach(gpib_board_t *board, const gpib_board_config_t *config)
{
struct ines_priv *ines_priv;
int retval;
retval = ines_common_pci_attach(board, config);
if (retval < 0)
return retval;
ines_priv = board->private_data;
ines_online(ines_priv, board, 1);
return 0;
}
static const int ines_isa_iosize = 0x20;
int ines_isa_attach(gpib_board_t *board, const gpib_board_config_t *config)
{
struct ines_priv *ines_priv;
struct nec7210_priv *nec_priv;
int isr_flags = 0;
int retval;
retval = ines_generic_attach(board);
if (retval)
return retval;
ines_priv = board->private_data;
nec_priv = &ines_priv->nec7210_priv;
if (!request_region((unsigned long)config->ibbase, ines_isa_iosize, "ines_gpib")) {
pr_err("ines_gpib: ioports at 0x%p already in use\n", config->ibbase);
return -1;
}
nec_priv->iobase = config->ibbase;
nec_priv->offset = 1;
nec7210_board_reset(nec_priv, board);
if (request_irq(config->ibirq, ines_pci_interrupt, isr_flags, "ines_gpib", board)) {
pr_err("ines_gpib: failed to allocate IRQ %d\n", config->ibirq);
return -1;
}
ines_priv->irq = config->ibirq;
ines_online(ines_priv, board, 1);
return 0;
}
void ines_pci_detach(gpib_board_t *board)
{
struct ines_priv *ines_priv = board->private_data;
struct nec7210_priv *nec_priv;
if (ines_priv) {
nec_priv = &ines_priv->nec7210_priv;
if (ines_priv->irq) {
// disable interrupts
switch (ines_priv->pci_chip_type) {
case PCI_CHIP_AMCC5920:
if (ines_priv->plx_iobase)
outl(0, ines_priv->plx_iobase + PLX9050_INTCSR_REG);
break;
case PCI_CHIP_QUANCOM:
if (nec_priv->iobase)
outb(0, (unsigned long)(nec_priv->iobase) +
QUANCOM_IRQ_CONTROL_STATUS_REG);
break;
default:
break;
}
free_irq(ines_priv->irq, board);
}
if (nec_priv->iobase) {
nec7210_board_reset(nec_priv, board);
pci_release_regions(ines_priv->pci_device);
}
if (ines_priv->pci_device)
pci_dev_put(ines_priv->pci_device);
}
ines_free_private(board);
}
void ines_isa_detach(gpib_board_t *board)
{
struct ines_priv *ines_priv = board->private_data;
struct nec7210_priv *nec_priv;
if (ines_priv) {
nec_priv = &ines_priv->nec7210_priv;
if (ines_priv->irq)
free_irq(ines_priv->irq, board);
if (nec_priv->iobase) {
nec7210_board_reset(nec_priv, board);
release_region((unsigned long)(nec_priv->iobase), ines_isa_iosize);
}
}
ines_free_private(board);
}
static int ines_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
{
return 0;
}
static struct pci_driver ines_pci_driver = {
.name = "ines_gpib",
.id_table = ines_pci_table,
.probe = &ines_pci_probe
};
#ifdef GPIB_PCMCIA
#include <linux/kernel.h>
#include <linux/ptrace.h>
#include <linux/string.h>
#include <linux/timer.h>
#include <pcmcia/cistpl.h>
#include <pcmcia/ds.h>
#include <pcmcia/cisreg.h>
#ifdef PCMCIA_DEBUG
static int pc_debug = PCMCIA_DEBUG;
#define DEBUG(n, args...) do {if (pc_debug > (n)) pr_debug(args)} while (0)
#else
#define DEBUG(args...)
#endif
static const int ines_pcmcia_iosize = 0x20;
/* The event() function is this driver's Card Services event handler.
* It will be called by Card Services when an appropriate card status
* event is received. The config() and release() entry points are
* used to configure or release a socket, in response to card insertion
* and ejection events. They are invoked from the gpib event
* handler.
*/
static int ines_gpib_config(struct pcmcia_device *link);
static void ines_gpib_release(struct pcmcia_device *link);
static int ines_pcmcia_attach(gpib_board_t *board, const gpib_board_config_t *config);
static int ines_pcmcia_accel_attach(gpib_board_t *board, const gpib_board_config_t *config);
static void ines_pcmcia_detach(gpib_board_t *board);
static irqreturn_t ines_pcmcia_interrupt(int irq, void *arg);
static int ines_common_pcmcia_attach(gpib_board_t *board);
/*
* A linked list of "instances" of the gpib device. Each actual
* PCMCIA card corresponds to one device instance, and is described
* by one dev_link_t structure (defined in ds.h).
*
* You may not want to use a linked list for this -- for example, the
* memory card driver uses an array of dev_link_t pointers, where minor
* device numbers are used to derive the corresponding array index.
*/
static struct pcmcia_device *curr_dev;
/*
* A dev_link_t structure has fields for most things that are needed
* to keep track of a socket, but there will usually be some device
* specific information that also needs to be kept track of. The
* 'priv' pointer in a dev_link_t structure can be used to point to
* a device-specific private data structure, like this.
*
* A driver needs to provide a dev_node_t structure for each device
* on a card. In some cases, there is only one device per card (for
* example, ethernet cards, modems). In other cases, there may be
* many actual or logical devices (SCSI adapters, memory cards with
* multiple partitions). The dev_node_t structures need to be kept
* in a linked list starting at the 'dev' field of a dev_link_t
* structure. We allocate them in the card's private data structure,
* because they generally can't be allocated dynamically.
*/
struct local_info {
struct pcmcia_device *p_dev;
gpib_board_t *dev;
u_short manfid;
u_short cardid;
};
/*
* gpib_attach() creates an "instance" of the driver, allocating
* local data structures for one device. The device is registered
* with Card Services.
*
* The dev_link structure is initialized, but we don't actually
* configure the card at this point -- we wait until we receive a
* card insertion event.
*/
static int ines_gpib_probe(struct pcmcia_device *link)
{
struct local_info *info;
// int ret, i;
DEBUG(0, "%s(0x%p)\n", __func__ link);
/* Allocate space for private device-specific data */
info = kzalloc(sizeof(*info), GFP_KERNEL);
if (!info)
return -ENOMEM;
info->p_dev = link;
link->priv = info;
/* The io structure describes IO port mapping */
link->resource[0]->end = 32;
link->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
link->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
link->io_lines = 5;
/* General socket configuration */
link->config_flags = CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
/* Register with Card Services */
curr_dev = link;
return ines_gpib_config(link);
}
/*
* This deletes a driver "instance". The device is de-registered
* with Card Services. If it has been released, all local data
* structures are freed. Otherwise, the structures will be freed
* when the device is released.
*/
static void ines_gpib_remove(struct pcmcia_device *link)
{
struct local_info *info = link->priv;
//struct gpib_board_t *dev = info->dev;
DEBUG(0, "%s(0x%p)\n", __func__, link);
if (info->dev)
ines_pcmcia_detach(info->dev);
ines_gpib_release(link);
//free_netdev(dev);
kfree(info);
}
static int ines_gpib_config_iteration(struct pcmcia_device *link, void *priv_data)
{
return pcmcia_request_io(link);
}
/*
* gpib_config() is scheduled to run after a CARD_INSERTION event
* is received, to configure the PCMCIA socket, and to make the
* device available to the system.
*/
static int ines_gpib_config(struct pcmcia_device *link)
{
struct local_info *dev;
int retval;
void *virt;
dev = link->priv;
DEBUG(0, "%s(0x%p)\n", __func__, link);
retval = pcmcia_loop_config(link, &ines_gpib_config_iteration, NULL);
if (retval) {
dev_warn(&link->dev, "no configuration found\n");
ines_gpib_release(link);
return -ENODEV;
}
pr_debug("ines_cs: manufacturer: 0x%x card: 0x%x\n",
link->manf_id, link->card_id);
/* for the ines card we have to setup the configuration registers in
* attribute memory here
*/
link->resource[2]->flags |= WIN_MEMORY_TYPE_AM | WIN_DATA_WIDTH_8 | WIN_ENABLE;
link->resource[2]->end = 0x1000;
retval = pcmcia_request_window(link, link->resource[2], 250);
if (retval) {
dev_warn(&link->dev, "pcmcia_request_window failed\n");
ines_gpib_release(link);
return -ENODEV;
}
retval = pcmcia_map_mem_page(link, link->resource[2], 0);
if (retval) {
dev_warn(&link->dev, "pcmcia_map_mem_page failed\n");
ines_gpib_release(link);
return -ENODEV;
}
virt = ioremap(link->resource[2]->start, resource_size(link->resource[2]));
writeb((link->resource[2]->start >> 2) & 0xff, virt + 0xf0); // IOWindow base
iounmap((void *)virt);
/*
* This actually configures the PCMCIA socket -- setting up
* the I/O windows and the interrupt mapping.
*/
retval = pcmcia_enable_device(link);
if (retval) {
ines_gpib_release(link);
return -ENODEV;
}
pr_info("ines gpib device loaded\n");
return 0;
} /* gpib_config */
/*
* After a card is removed, gpib_release() will unregister the net
* device, and release the PCMCIA configuration. If the device is
* still open, this will be postponed until it is closed.
*/
static void ines_gpib_release(struct pcmcia_device *link)
{
DEBUG(0, "%s(0x%p)\n", __func__, link);
pcmcia_disable_device(link);
} /* gpib_release */
static int ines_gpib_suspend(struct pcmcia_device *link)
{
//struct local_info *info = link->priv;
//struct gpib_board_t *dev = info->dev;
DEBUG(0, "%s(0x%p)\n", __func__, link);
if (link->open)
pr_err("Device still open ???\n");
//netif_device_detach(dev);
return 0;
}
static int ines_gpib_resume(struct pcmcia_device *link)
{
//struct local_info_t *info = link->priv;
//struct gpib_board_t *dev = info->dev;
DEBUG(0, "%s(0x%p)\n", __func__, link);
/*if (link->open) {
* ni_gpib_probe(dev); / really?
* printk("Gpib resumed ???\n");
* //netif_device_attach(dev);
*}
*/
return ines_gpib_config(link);
}
static struct pcmcia_device_id ines_pcmcia_ids[] = {
PCMCIA_DEVICE_MANF_CARD(0x01b4, 0x4730),
PCMCIA_DEVICE_NULL
};
MODULE_DEVICE_TABLE(pcmcia, ines_pcmcia_ids);
static struct pcmcia_driver ines_gpib_cs_driver = {
.owner = THIS_MODULE,
.name = "ines_gpib_cs",
.id_table = ines_pcmcia_ids,
.probe = ines_gpib_probe,
.remove = ines_gpib_remove,
.suspend = ines_gpib_suspend,
.resume = ines_gpib_resume,
};
int ines_pcmcia_init_module(void)
{
pcmcia_register_driver(&ines_gpib_cs_driver);
return 0;
}
void ines_pcmcia_cleanup_module(void)
{
DEBUG(0, "ines_cs: unloading\n");
pcmcia_unregister_driver(&ines_gpib_cs_driver);
}
gpib_interface_t ines_pcmcia_unaccel_interface = {
name: "ines_pcmcia_unaccel",
attach : ines_pcmcia_attach,
detach : ines_pcmcia_detach,
read : ines_read,
write : ines_write,
command : ines_command,
take_control : ines_take_control,
go_to_standby : ines_go_to_standby,
request_system_control : ines_request_system_control,
interface_clear : ines_interface_clear,
remote_enable : ines_remote_enable,
enable_eos : ines_enable_eos,
disable_eos : ines_disable_eos,
parallel_poll : ines_parallel_poll,
parallel_poll_configure : ines_parallel_poll_configure,
parallel_poll_response : ines_parallel_poll_response,
local_parallel_poll_mode : NULL, // XXX
line_status : ines_line_status,
update_status : ines_update_status,
primary_address : ines_primary_address,
secondary_address : ines_secondary_address,
serial_poll_response : ines_serial_poll_response,
serial_poll_status : ines_serial_poll_status,
t1_delay : ines_t1_delay,
return_to_local : ines_return_to_local,
};
gpib_interface_t ines_pcmcia_accel_interface = {
name: "ines_pcmcia_accel",
attach : ines_pcmcia_accel_attach,
detach : ines_pcmcia_detach,
read : ines_accel_read,
write : ines_accel_write,
command : ines_command,
take_control : ines_take_control,
go_to_standby : ines_go_to_standby,
request_system_control : ines_request_system_control,
interface_clear : ines_interface_clear,
remote_enable : ines_remote_enable,
enable_eos : ines_enable_eos,
disable_eos : ines_disable_eos,
parallel_poll : ines_parallel_poll,
parallel_poll_configure : ines_parallel_poll_configure,
parallel_poll_response : ines_parallel_poll_response,
local_parallel_poll_mode : NULL, // XXX
line_status : ines_line_status,
update_status : ines_update_status,
primary_address : ines_primary_address,
secondary_address : ines_secondary_address,
serial_poll_response : ines_serial_poll_response,
serial_poll_status : ines_serial_poll_status,
t1_delay : ines_t1_delay,
return_to_local : ines_return_to_local,
};
gpib_interface_t ines_pcmcia_interface = {
name: "ines_pcmcia",
attach : ines_pcmcia_accel_attach,
detach : ines_pcmcia_detach,
read : ines_accel_read,
write : ines_accel_write,
command : ines_command,
take_control : ines_take_control,
go_to_standby : ines_go_to_standby,
request_system_control : ines_request_system_control,
interface_clear : ines_interface_clear,
remote_enable : ines_remote_enable,
enable_eos : ines_enable_eos,
disable_eos : ines_disable_eos,
parallel_poll : ines_parallel_poll,
parallel_poll_configure : ines_parallel_poll_configure,
parallel_poll_response : ines_parallel_poll_response,
local_parallel_poll_mode : NULL, // XXX
line_status : ines_line_status,
update_status : ines_update_status,
primary_address : ines_primary_address,
secondary_address : ines_secondary_address,
serial_poll_response : ines_serial_poll_response,
serial_poll_status : ines_serial_poll_status,
t1_delay : ines_t1_delay,
return_to_local : ines_return_to_local,
};
irqreturn_t ines_pcmcia_interrupt(int irq, void *arg)
{
gpib_board_t *board = arg;
return ines_interrupt(board);
}
int ines_common_pcmcia_attach(gpib_board_t *board)
{
struct ines_priv *ines_priv;
struct nec7210_priv *nec_priv;
int retval;
if (!curr_dev) {
pr_err("no ines pcmcia cards found\n");
return -1;
}
retval = ines_generic_attach(board);
if (retval)
return retval;
ines_priv = board->private_data;
nec_priv = &ines_priv->nec7210_priv;
if (request_region(curr_dev->resource[0]->start,
resource_size(curr_dev->resource[0]), "ines_gpib") == 0) {
pr_err("ines_gpib: ioports at 0x%lx already in use\n",
(unsigned long)(curr_dev->resource[0]->start));
return -1;
}
nec_priv->iobase = (void *)(unsigned long)curr_dev->resource[0]->start;
nec7210_board_reset(nec_priv, board);
if (request_irq(curr_dev->irq, ines_pcmcia_interrupt, IRQF_SHARED,
"pcmcia-gpib", board)) {
pr_err("gpib: can't request IRQ %d\n", curr_dev->irq);
return -1;
}
ines_priv->irq = curr_dev->irq;
return 0;
}
int ines_pcmcia_attach(gpib_board_t *board, const gpib_board_config_t *config)
{
struct ines_priv *ines_priv;
int retval;
retval = ines_common_pcmcia_attach(board);
if (retval < 0)
return retval;
ines_priv = board->private_data;
ines_online(ines_priv, board, 0);
return 0;
}
int ines_pcmcia_accel_attach(gpib_board_t *board, const gpib_board_config_t *config)
{
struct ines_priv *ines_priv;
int retval;
retval = ines_common_pcmcia_attach(board);
if (retval < 0)
return retval;
ines_priv = board->private_data;
ines_online(ines_priv, board, 1);
return 0;
}
void ines_pcmcia_detach(gpib_board_t *board)
{
struct ines_priv *ines_priv = board->private_data;
struct nec7210_priv *nec_priv;
if (ines_priv) {
nec_priv = &ines_priv->nec7210_priv;
if (ines_priv->irq)
free_irq(ines_priv->irq, board);
if (nec_priv->iobase) {
nec7210_board_reset(nec_priv, board);
release_region((unsigned long)(nec_priv->iobase), ines_pcmcia_iosize);
}
}
ines_free_private(board);
}
#endif /* GPIB_PCMCIA */
static int __init ines_init_module(void)
{
int err = 0;
err = pci_register_driver(&ines_pci_driver);
if (err) {
pr_err("ines_gpib: pci_driver_register failed!\n");
return err;
}
gpib_register_driver(&ines_pci_interface, THIS_MODULE);
gpib_register_driver(&ines_pci_unaccel_interface, THIS_MODULE);
gpib_register_driver(&ines_pci_accel_interface, THIS_MODULE);
gpib_register_driver(&ines_isa_interface, THIS_MODULE);
#ifdef GPIB_PCMCIA
gpib_register_driver(&ines_pcmcia_interface, THIS_MODULE);
gpib_register_driver(&ines_pcmcia_unaccel_interface, THIS_MODULE);
gpib_register_driver(&ines_pcmcia_accel_interface, THIS_MODULE);
err += ines_pcmcia_init_module();
#endif
if (err)
return -1;
return 0;
}
static void __exit ines_exit_module(void)
{
gpib_unregister_driver(&ines_pci_interface);
gpib_unregister_driver(&ines_pci_unaccel_interface);
gpib_unregister_driver(&ines_pci_accel_interface);
gpib_unregister_driver(&ines_isa_interface);
#ifdef GPIB__PCMCIA
gpib_unregister_driver(&ines_pcmcia_interface);
gpib_unregister_driver(&ines_pcmcia_unaccel_interface);
gpib_unregister_driver(&ines_pcmcia_accel_interface);
ines_pcmcia_cleanup_module();
#endif
pci_unregister_driver(&ines_pci_driver);
}
module_init(ines_init_module);
module_exit(ines_exit_module);
|