GNU Linux-libre 4.14.266-gnu1
[releases.git] / drivers / staging / comedi / drivers / ni_pcidio.c
1 /*
2  * Comedi driver for National Instruments PCI-DIO-32HS
3  *
4  * COMEDI - Linux Control and Measurement Device Interface
5  * Copyright (C) 1999,2002 David A. Schleef <ds@schleef.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
17
18 /*
19  * Driver: ni_pcidio
20  * Description: National Instruments PCI-DIO32HS, PCI-6533
21  * Author: ds
22  * Status: works
23  * Devices: [National Instruments] PCI-DIO-32HS (ni_pcidio)
24  *   [National Instruments] PXI-6533, PCI-6533 (pxi-6533)
25  *   [National Instruments] PCI-6534 (pci-6534)
26  * Updated: Mon, 09 Jan 2012 14:27:23 +0000
27  *
28  * The DIO32HS board appears as one subdevice, with 32 channels. Each
29  * channel is individually I/O configurable. The channel order is 0=A0,
30  * 1=A1, 2=A2, ... 8=B0, 16=C0, 24=D0. The driver only supports simple
31  * digital I/O; no handshaking is supported.
32  *
33  * DMA mostly works for the PCI-DIO32HS, but only in timed input mode.
34  *
35  * The PCI-DIO-32HS/PCI-6533 has a configurable external trigger. Setting
36  * scan_begin_arg to 0 or CR_EDGE triggers on the leading edge. Setting
37  * scan_begin_arg to CR_INVERT or (CR_EDGE | CR_INVERT) triggers on the
38  * trailing edge.
39  *
40  * This driver could be easily modified to support AT-MIO32HS and AT-MIO96.
41  *
42  * The PCI-6534 requires a firmware upload after power-up to work, the
43  * firmware data and instructions for loading it with comedi_config
44  * it are contained in the comedi_nonfree_firmware tarball available from
45  * http://www.comedi.org
46  */
47
48 #define USE_DMA
49
50 #include <linux/module.h>
51 #include <linux/delay.h>
52 #include <linux/interrupt.h>
53 #include <linux/sched.h>
54
55 #include "../comedi_pci.h"
56
57 #include "mite.h"
58
59 /* defines for the PCI-DIO-32HS */
60
61 #define Window_Address                  4       /* W */
62 #define Interrupt_And_Window_Status     4       /* R */
63 #define IntStatus1                              BIT(0)
64 #define IntStatus2                              BIT(1)
65 #define WindowAddressStatus_mask                0x7c
66
67 #define Master_DMA_And_Interrupt_Control 5      /* W */
68 #define InterruptLine(x)                        ((x) & 3)
69 #define OpenInt                         BIT(2)
70 #define Group_Status                    5       /* R */
71 #define DataLeft                                BIT(0)
72 #define Req                                     BIT(2)
73 #define StopTrig                                BIT(3)
74
75 #define Group_1_Flags                   6       /* R */
76 #define Group_2_Flags                   7       /* R */
77 #define TransferReady                           BIT(0)
78 #define CountExpired                            BIT(1)
79 #define Waited                                  BIT(5)
80 #define PrimaryTC                               BIT(6)
81 #define SecondaryTC                             BIT(7)
82   /* #define SerialRose */
83   /* #define ReqRose */
84   /* #define Paused */
85
86 #define Group_1_First_Clear             6       /* W */
87 #define Group_2_First_Clear             7       /* W */
88 #define ClearWaited                             BIT(3)
89 #define ClearPrimaryTC                          BIT(4)
90 #define ClearSecondaryTC                        BIT(5)
91 #define DMAReset                                BIT(6)
92 #define FIFOReset                               BIT(7)
93 #define ClearAll                                0xf8
94
95 #define Group_1_FIFO                    8       /* W */
96 #define Group_2_FIFO                    12      /* W */
97
98 #define Transfer_Count                  20
99 #define Chip_ID_D                       24
100 #define Chip_ID_I                       25
101 #define Chip_ID_O                       26
102 #define Chip_Version                    27
103 #define Port_IO(x)                      (28 + (x))
104 #define Port_Pin_Directions(x)          (32 + (x))
105 #define Port_Pin_Mask(x)                (36 + (x))
106 #define Port_Pin_Polarities(x)          (40 + (x))
107
108 #define Master_Clock_Routing            45
109 #define RTSIClocking(x)                 (((x) & 3) << 4)
110
111 #define Group_1_Second_Clear            46      /* W */
112 #define Group_2_Second_Clear            47      /* W */
113 #define ClearExpired                            BIT(0)
114
115 #define Port_Pattern(x)                 (48 + (x))
116
117 #define Data_Path                       64
118 #define FIFOEnableA             BIT(0)
119 #define FIFOEnableB             BIT(1)
120 #define FIFOEnableC             BIT(2)
121 #define FIFOEnableD             BIT(3)
122 #define Funneling(x)            (((x) & 3) << 4)
123 #define GroupDirection          BIT(7)
124
125 #define Protocol_Register_1             65
126 #define OpMode                          Protocol_Register_1
127 #define RunMode(x)              ((x) & 7)
128 #define Numbered                BIT(3)
129
130 #define Protocol_Register_2             66
131 #define ClockReg                        Protocol_Register_2
132 #define ClockLine(x)            (((x) & 3) << 5)
133 #define InvertStopTrig          BIT(7)
134 #define DataLatching(x)       (((x) & 3) << 5)
135
136 #define Protocol_Register_3             67
137 #define Sequence                        Protocol_Register_3
138
139 #define Protocol_Register_14            68      /* 16 bit */
140 #define ClockSpeed                      Protocol_Register_14
141
142 #define Protocol_Register_4             70
143 #define ReqReg                          Protocol_Register_4
144 #define ReqConditioning(x)      (((x) & 7) << 3)
145
146 #define Protocol_Register_5             71
147 #define BlockMode                       Protocol_Register_5
148
149 #define FIFO_Control                    72
150 #define ReadyLevel(x)           ((x) & 7)
151
152 #define Protocol_Register_6             73
153 #define LinePolarities                  Protocol_Register_6
154 #define InvertAck               BIT(0)
155 #define InvertReq               BIT(1)
156 #define InvertClock             BIT(2)
157 #define InvertSerial            BIT(3)
158 #define OpenAck         BIT(4)
159 #define OpenClock               BIT(5)
160
161 #define Protocol_Register_7             74
162 #define AckSer                          Protocol_Register_7
163 #define AckLine(x)              (((x) & 3) << 2)
164 #define ExchangePins            BIT(7)
165
166 #define Interrupt_Control               75
167   /* bits same as flags */
168
169 #define DMA_Line_Control_Group1         76
170 #define DMA_Line_Control_Group2         108
171 /* channel zero is none */
172 static inline unsigned int primary_DMAChannel_bits(unsigned int channel)
173 {
174         return channel & 0x3;
175 }
176
177 static inline unsigned int secondary_DMAChannel_bits(unsigned int channel)
178 {
179         return (channel << 2) & 0xc;
180 }
181
182 #define Transfer_Size_Control           77
183 #define TransferWidth(x)        ((x) & 3)
184 #define TransferLength(x)       (((x) & 3) << 3)
185 #define RequireRLevel           BIT(5)
186
187 #define Protocol_Register_15            79
188 #define DAQOptions                      Protocol_Register_15
189 #define StartSource(x)                  ((x) & 0x3)
190 #define InvertStart                             BIT(2)
191 #define StopSource(x)                           (((x) & 0x3) << 3)
192 #define ReqStart                                BIT(6)
193 #define PreStart                                BIT(7)
194
195 #define Pattern_Detection               81
196 #define DetectionMethod                 BIT(0)
197 #define InvertMatch                             BIT(1)
198 #define IE_Pattern_Detection                    BIT(2)
199
200 #define Protocol_Register_9             82
201 #define ReqDelay                        Protocol_Register_9
202
203 #define Protocol_Register_10            83
204 #define ReqNotDelay                     Protocol_Register_10
205
206 #define Protocol_Register_11            84
207 #define AckDelay                        Protocol_Register_11
208
209 #define Protocol_Register_12            85
210 #define AckNotDelay                     Protocol_Register_12
211
212 #define Protocol_Register_13            86
213 #define Data1Delay                      Protocol_Register_13
214
215 #define Protocol_Register_8             88      /* 32 bit */
216 #define StartDelay                      Protocol_Register_8
217
218 /* Firmware files for PCI-6524 */
219 #define FW_PCI_6534_MAIN                "/*(DEBLOBBED)*/"
220 #define FW_PCI_6534_SCARAB_DI           "/*(DEBLOBBED)*/"
221 #define FW_PCI_6534_SCARAB_DO           "/*(DEBLOBBED)*/"
222 /*(DEBLOBBED)*/
223
224 enum pci_6534_firmware_registers {      /* 16 bit */
225         Firmware_Control_Register = 0x100,
226         Firmware_Status_Register = 0x104,
227         Firmware_Data_Register = 0x108,
228         Firmware_Mask_Register = 0x10c,
229         Firmware_Debug_Register = 0x110,
230 };
231
232 /* main fpga registers (32 bit)*/
233 enum pci_6534_fpga_registers {
234         FPGA_Control1_Register = 0x200,
235         FPGA_Control2_Register = 0x204,
236         FPGA_Irq_Mask_Register = 0x208,
237         FPGA_Status_Register = 0x20c,
238         FPGA_Signature_Register = 0x210,
239         FPGA_SCALS_Counter_Register = 0x280,    /*write-clear */
240         FPGA_SCAMS_Counter_Register = 0x284,    /*write-clear */
241         FPGA_SCBLS_Counter_Register = 0x288,    /*write-clear */
242         FPGA_SCBMS_Counter_Register = 0x28c,    /*write-clear */
243         FPGA_Temp_Control_Register = 0x2a0,
244         FPGA_DAR_Register = 0x2a8,
245         FPGA_ELC_Read_Register = 0x2b8,
246         FPGA_ELC_Write_Register = 0x2bc,
247 };
248
249 enum FPGA_Control_Bits {
250         FPGA_Enable_Bit = 0x8000,
251 };
252
253 #define TIMER_BASE 50           /* nanoseconds */
254
255 #ifdef USE_DMA
256 #define IntEn (CountExpired | Waited | PrimaryTC | SecondaryTC)
257 #else
258 #define IntEn (TransferReady | CountExpired | Waited | PrimaryTC | SecondaryTC)
259 #endif
260
261 enum nidio_boardid {
262         BOARD_PCIDIO_32HS,
263         BOARD_PXI6533,
264         BOARD_PCI6534,
265 };
266
267 struct nidio_board {
268         const char *name;
269         unsigned int uses_firmware:1;
270 };
271
272 static const struct nidio_board nidio_boards[] = {
273         [BOARD_PCIDIO_32HS] = {
274                 .name           = "pci-dio-32hs",
275         },
276         [BOARD_PXI6533] = {
277                 .name           = "pxi-6533",
278         },
279         [BOARD_PCI6534] = {
280                 .name           = "pci-6534",
281                 .uses_firmware  = 1,
282         },
283 };
284
285 struct nidio96_private {
286         struct mite *mite;
287         int boardtype;
288         int dio;
289         unsigned short OpModeBits;
290         struct mite_channel *di_mite_chan;
291         struct mite_ring *di_mite_ring;
292         spinlock_t mite_channel_lock;
293 };
294
295 static int ni_pcidio_request_di_mite_channel(struct comedi_device *dev)
296 {
297         struct nidio96_private *devpriv = dev->private;
298         unsigned long flags;
299
300         spin_lock_irqsave(&devpriv->mite_channel_lock, flags);
301         BUG_ON(devpriv->di_mite_chan);
302         devpriv->di_mite_chan =
303             mite_request_channel_in_range(devpriv->mite,
304                                           devpriv->di_mite_ring, 1, 2);
305         if (!devpriv->di_mite_chan) {
306                 spin_unlock_irqrestore(&devpriv->mite_channel_lock, flags);
307                 dev_err(dev->class_dev, "failed to reserve mite dma channel\n");
308                 return -EBUSY;
309         }
310         devpriv->di_mite_chan->dir = COMEDI_INPUT;
311         writeb(primary_DMAChannel_bits(devpriv->di_mite_chan->channel) |
312                secondary_DMAChannel_bits(devpriv->di_mite_chan->channel),
313                dev->mmio + DMA_Line_Control_Group1);
314         mmiowb();
315         spin_unlock_irqrestore(&devpriv->mite_channel_lock, flags);
316         return 0;
317 }
318
319 static void ni_pcidio_release_di_mite_channel(struct comedi_device *dev)
320 {
321         struct nidio96_private *devpriv = dev->private;
322         unsigned long flags;
323
324         spin_lock_irqsave(&devpriv->mite_channel_lock, flags);
325         if (devpriv->di_mite_chan) {
326                 mite_release_channel(devpriv->di_mite_chan);
327                 devpriv->di_mite_chan = NULL;
328                 writeb(primary_DMAChannel_bits(0) |
329                        secondary_DMAChannel_bits(0),
330                        dev->mmio + DMA_Line_Control_Group1);
331                 mmiowb();
332         }
333         spin_unlock_irqrestore(&devpriv->mite_channel_lock, flags);
334 }
335
336 static int setup_mite_dma(struct comedi_device *dev, struct comedi_subdevice *s)
337 {
338         struct nidio96_private *devpriv = dev->private;
339         int retval;
340         unsigned long flags;
341
342         retval = ni_pcidio_request_di_mite_channel(dev);
343         if (retval)
344                 return retval;
345
346         /* write alloc the entire buffer */
347         comedi_buf_write_alloc(s, s->async->prealloc_bufsz);
348
349         spin_lock_irqsave(&devpriv->mite_channel_lock, flags);
350         if (devpriv->di_mite_chan) {
351                 mite_prep_dma(devpriv->di_mite_chan, 32, 32);
352                 mite_dma_arm(devpriv->di_mite_chan);
353         } else {
354                 retval = -EIO;
355         }
356         spin_unlock_irqrestore(&devpriv->mite_channel_lock, flags);
357
358         return retval;
359 }
360
361 static int ni_pcidio_poll(struct comedi_device *dev, struct comedi_subdevice *s)
362 {
363         struct nidio96_private *devpriv = dev->private;
364         unsigned long irq_flags;
365         int count;
366
367         spin_lock_irqsave(&dev->spinlock, irq_flags);
368         spin_lock(&devpriv->mite_channel_lock);
369         if (devpriv->di_mite_chan)
370                 mite_sync_dma(devpriv->di_mite_chan, s);
371         spin_unlock(&devpriv->mite_channel_lock);
372         count = comedi_buf_n_bytes_ready(s);
373         spin_unlock_irqrestore(&dev->spinlock, irq_flags);
374         return count;
375 }
376
377 static irqreturn_t nidio_interrupt(int irq, void *d)
378 {
379         struct comedi_device *dev = d;
380         struct nidio96_private *devpriv = dev->private;
381         struct comedi_subdevice *s = dev->read_subdev;
382         struct comedi_async *async = s->async;
383         unsigned int auxdata;
384         int flags;
385         int status;
386         int work = 0;
387
388         /* interrupcions parasites */
389         if (!dev->attached) {
390                 /* assume it's from another card */
391                 return IRQ_NONE;
392         }
393
394         /* Lock to avoid race with comedi_poll */
395         spin_lock(&dev->spinlock);
396
397         status = readb(dev->mmio + Interrupt_And_Window_Status);
398         flags = readb(dev->mmio + Group_1_Flags);
399
400         spin_lock(&devpriv->mite_channel_lock);
401         if (devpriv->di_mite_chan) {
402                 mite_ack_linkc(devpriv->di_mite_chan, s, false);
403                 /* XXX need to byteswap sync'ed dma */
404         }
405         spin_unlock(&devpriv->mite_channel_lock);
406
407         while (status & DataLeft) {
408                 work++;
409                 if (work > 20) {
410                         dev_dbg(dev->class_dev, "too much work in interrupt\n");
411                         writeb(0x00,
412                                dev->mmio + Master_DMA_And_Interrupt_Control);
413                         break;
414                 }
415
416                 flags &= IntEn;
417
418                 if (flags & TransferReady) {
419                         while (flags & TransferReady) {
420                                 work++;
421                                 if (work > 100) {
422                                         dev_dbg(dev->class_dev,
423                                                 "too much work in interrupt\n");
424                                         writeb(0x00, dev->mmio +
425                                                Master_DMA_And_Interrupt_Control
426                                               );
427                                         goto out;
428                                 }
429                                 auxdata = readl(dev->mmio + Group_1_FIFO);
430                                 comedi_buf_write_samples(s, &auxdata, 1);
431                                 flags = readb(dev->mmio + Group_1_Flags);
432                         }
433                 }
434
435                 if (flags & CountExpired) {
436                         writeb(ClearExpired, dev->mmio + Group_1_Second_Clear);
437                         async->events |= COMEDI_CB_EOA;
438
439                         writeb(0x00, dev->mmio + OpMode);
440                         break;
441                 } else if (flags & Waited) {
442                         writeb(ClearWaited, dev->mmio + Group_1_First_Clear);
443                         async->events |= COMEDI_CB_ERROR;
444                         break;
445                 } else if (flags & PrimaryTC) {
446                         writeb(ClearPrimaryTC,
447                                dev->mmio + Group_1_First_Clear);
448                         async->events |= COMEDI_CB_EOA;
449                 } else if (flags & SecondaryTC) {
450                         writeb(ClearSecondaryTC,
451                                dev->mmio + Group_1_First_Clear);
452                         async->events |= COMEDI_CB_EOA;
453                 }
454
455                 flags = readb(dev->mmio + Group_1_Flags);
456                 status = readb(dev->mmio + Interrupt_And_Window_Status);
457         }
458
459 out:
460         comedi_handle_events(dev, s);
461 #if 0
462         if (!tag)
463                 writeb(0x03, dev->mmio + Master_DMA_And_Interrupt_Control);
464 #endif
465
466         spin_unlock(&dev->spinlock);
467         return IRQ_HANDLED;
468 }
469
470 static int ni_pcidio_insn_config(struct comedi_device *dev,
471                                  struct comedi_subdevice *s,
472                                  struct comedi_insn *insn,
473                                  unsigned int *data)
474 {
475         int ret;
476
477         ret = comedi_dio_insn_config(dev, s, insn, data, 0);
478         if (ret)
479                 return ret;
480
481         writel(s->io_bits, dev->mmio + Port_Pin_Directions(0));
482
483         return insn->n;
484 }
485
486 static int ni_pcidio_insn_bits(struct comedi_device *dev,
487                                struct comedi_subdevice *s,
488                                struct comedi_insn *insn,
489                                unsigned int *data)
490 {
491         if (comedi_dio_update_state(s, data))
492                 writel(s->state, dev->mmio + Port_IO(0));
493
494         data[1] = readl(dev->mmio + Port_IO(0));
495
496         return insn->n;
497 }
498
499 static int ni_pcidio_ns_to_timer(int *nanosec, unsigned int flags)
500 {
501         int divider, base;
502
503         base = TIMER_BASE;
504
505         switch (flags & CMDF_ROUND_MASK) {
506         case CMDF_ROUND_NEAREST:
507         default:
508                 divider = DIV_ROUND_CLOSEST(*nanosec, base);
509                 break;
510         case CMDF_ROUND_DOWN:
511                 divider = (*nanosec) / base;
512                 break;
513         case CMDF_ROUND_UP:
514                 divider = DIV_ROUND_UP(*nanosec, base);
515                 break;
516         }
517
518         *nanosec = base * divider;
519         return divider;
520 }
521
522 static int ni_pcidio_cmdtest(struct comedi_device *dev,
523                              struct comedi_subdevice *s, struct comedi_cmd *cmd)
524 {
525         int err = 0;
526         unsigned int arg;
527
528         /* Step 1 : check if triggers are trivially valid */
529
530         err |= comedi_check_trigger_src(&cmd->start_src, TRIG_NOW | TRIG_INT);
531         err |= comedi_check_trigger_src(&cmd->scan_begin_src,
532                                         TRIG_TIMER | TRIG_EXT);
533         err |= comedi_check_trigger_src(&cmd->convert_src, TRIG_NOW);
534         err |= comedi_check_trigger_src(&cmd->scan_end_src, TRIG_COUNT);
535         err |= comedi_check_trigger_src(&cmd->stop_src, TRIG_COUNT | TRIG_NONE);
536
537         if (err)
538                 return 1;
539
540         /* Step 2a : make sure trigger sources are unique */
541
542         err |= comedi_check_trigger_is_unique(cmd->start_src);
543         err |= comedi_check_trigger_is_unique(cmd->scan_begin_src);
544         err |= comedi_check_trigger_is_unique(cmd->stop_src);
545
546         /* Step 2b : and mutually compatible */
547
548         if (err)
549                 return 2;
550
551         /* Step 3: check if arguments are trivially valid */
552
553         err |= comedi_check_trigger_arg_is(&cmd->start_arg, 0);
554
555 #define MAX_SPEED       (TIMER_BASE)    /* in nanoseconds */
556
557         if (cmd->scan_begin_src == TRIG_TIMER) {
558                 err |= comedi_check_trigger_arg_min(&cmd->scan_begin_arg,
559                                                     MAX_SPEED);
560                 /* no minimum speed */
561         } else {
562                 /* TRIG_EXT */
563                 /* should be level/edge, hi/lo specification here */
564                 if ((cmd->scan_begin_arg & ~(CR_EDGE | CR_INVERT)) != 0) {
565                         cmd->scan_begin_arg &= (CR_EDGE | CR_INVERT);
566                         err |= -EINVAL;
567                 }
568         }
569
570         err |= comedi_check_trigger_arg_is(&cmd->convert_arg, 0);
571         err |= comedi_check_trigger_arg_is(&cmd->scan_end_arg,
572                                            cmd->chanlist_len);
573
574         if (cmd->stop_src == TRIG_COUNT)
575                 err |= comedi_check_trigger_arg_min(&cmd->stop_arg, 1);
576         else    /* TRIG_NONE */
577                 err |= comedi_check_trigger_arg_is(&cmd->stop_arg, 0);
578
579         if (err)
580                 return 3;
581
582         /* step 4: fix up any arguments */
583
584         if (cmd->scan_begin_src == TRIG_TIMER) {
585                 arg = cmd->scan_begin_arg;
586                 ni_pcidio_ns_to_timer(&arg, cmd->flags);
587                 err |= comedi_check_trigger_arg_is(&cmd->scan_begin_arg, arg);
588         }
589
590         if (err)
591                 return 4;
592
593         return 0;
594 }
595
596 static int ni_pcidio_inttrig(struct comedi_device *dev,
597                              struct comedi_subdevice *s,
598                              unsigned int trig_num)
599 {
600         struct nidio96_private *devpriv = dev->private;
601         struct comedi_cmd *cmd = &s->async->cmd;
602
603         if (trig_num != cmd->start_arg)
604                 return -EINVAL;
605
606         writeb(devpriv->OpModeBits, dev->mmio + OpMode);
607         s->async->inttrig = NULL;
608
609         return 1;
610 }
611
612 static int ni_pcidio_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
613 {
614         struct nidio96_private *devpriv = dev->private;
615         struct comedi_cmd *cmd = &s->async->cmd;
616
617         /* XXX configure ports for input */
618         writel(0x0000, dev->mmio + Port_Pin_Directions(0));
619
620         if (1) {
621                 /* enable fifos A B C D */
622                 writeb(0x0f, dev->mmio + Data_Path);
623
624                 /* set transfer width a 32 bits */
625                 writeb(TransferWidth(0) | TransferLength(0),
626                        dev->mmio + Transfer_Size_Control);
627         } else {
628                 writeb(0x03, dev->mmio + Data_Path);
629                 writeb(TransferWidth(3) | TransferLength(0),
630                        dev->mmio + Transfer_Size_Control);
631         }
632
633         /* protocol configuration */
634         if (cmd->scan_begin_src == TRIG_TIMER) {
635                 /* page 4-5, "input with internal REQs" */
636                 writeb(0, dev->mmio + OpMode);
637                 writeb(0x00, dev->mmio + ClockReg);
638                 writeb(1, dev->mmio + Sequence);
639                 writeb(0x04, dev->mmio + ReqReg);
640                 writeb(4, dev->mmio + BlockMode);
641                 writeb(3, dev->mmio + LinePolarities);
642                 writeb(0xc0, dev->mmio + AckSer);
643                 writel(ni_pcidio_ns_to_timer(&cmd->scan_begin_arg,
644                                              CMDF_ROUND_NEAREST),
645                        dev->mmio + StartDelay);
646                 writeb(1, dev->mmio + ReqDelay);
647                 writeb(1, dev->mmio + ReqNotDelay);
648                 writeb(1, dev->mmio + AckDelay);
649                 writeb(0x0b, dev->mmio + AckNotDelay);
650                 writeb(0x01, dev->mmio + Data1Delay);
651                 /*
652                  * manual, page 4-5:
653                  * ClockSpeed comment is incorrectly listed on DAQOptions
654                  */
655                 writew(0, dev->mmio + ClockSpeed);
656                 writeb(0, dev->mmio + DAQOptions);
657         } else {
658                 /* TRIG_EXT */
659                 /* page 4-5, "input with external REQs" */
660                 writeb(0, dev->mmio + OpMode);
661                 writeb(0x00, dev->mmio + ClockReg);
662                 writeb(0, dev->mmio + Sequence);
663                 writeb(0x00, dev->mmio + ReqReg);
664                 writeb(4, dev->mmio + BlockMode);
665                 if (!(cmd->scan_begin_arg & CR_INVERT)) /* Leading Edge */
666                         writeb(0, dev->mmio + LinePolarities);
667                 else                                    /* Trailing Edge */
668                         writeb(2, dev->mmio + LinePolarities);
669                 writeb(0x00, dev->mmio + AckSer);
670                 writel(1, dev->mmio + StartDelay);
671                 writeb(1, dev->mmio + ReqDelay);
672                 writeb(1, dev->mmio + ReqNotDelay);
673                 writeb(1, dev->mmio + AckDelay);
674                 writeb(0x0C, dev->mmio + AckNotDelay);
675                 writeb(0x10, dev->mmio + Data1Delay);
676                 writew(0, dev->mmio + ClockSpeed);
677                 writeb(0x60, dev->mmio + DAQOptions);
678         }
679
680         if (cmd->stop_src == TRIG_COUNT) {
681                 writel(cmd->stop_arg,
682                        dev->mmio + Transfer_Count);
683         } else {
684                 /* XXX */
685         }
686
687 #ifdef USE_DMA
688         writeb(ClearPrimaryTC | ClearSecondaryTC,
689                dev->mmio + Group_1_First_Clear);
690
691         {
692                 int retval = setup_mite_dma(dev, s);
693
694                 if (retval)
695                         return retval;
696         }
697 #else
698         writeb(0x00, dev->mmio + DMA_Line_Control_Group1);
699 #endif
700         writeb(0x00, dev->mmio + DMA_Line_Control_Group2);
701
702         /* clear and enable interrupts */
703         writeb(0xff, dev->mmio + Group_1_First_Clear);
704         /* writeb(ClearExpired, dev->mmio+Group_1_Second_Clear); */
705
706         writeb(IntEn, dev->mmio + Interrupt_Control);
707         writeb(0x03, dev->mmio + Master_DMA_And_Interrupt_Control);
708
709         if (cmd->stop_src == TRIG_NONE) {
710                 devpriv->OpModeBits = DataLatching(0) | RunMode(7);
711         } else {                /* TRIG_TIMER */
712                 devpriv->OpModeBits = Numbered | RunMode(7);
713         }
714         if (cmd->start_src == TRIG_NOW) {
715                 /* start */
716                 writeb(devpriv->OpModeBits, dev->mmio + OpMode);
717                 s->async->inttrig = NULL;
718         } else {
719                 /* TRIG_INT */
720                 s->async->inttrig = ni_pcidio_inttrig;
721         }
722
723         return 0;
724 }
725
726 static int ni_pcidio_cancel(struct comedi_device *dev,
727                             struct comedi_subdevice *s)
728 {
729         writeb(0x00, dev->mmio + Master_DMA_And_Interrupt_Control);
730         ni_pcidio_release_di_mite_channel(dev);
731
732         return 0;
733 }
734
735 static int ni_pcidio_change(struct comedi_device *dev,
736                             struct comedi_subdevice *s)
737 {
738         struct nidio96_private *devpriv = dev->private;
739         int ret;
740
741         ret = mite_buf_change(devpriv->di_mite_ring, s);
742         if (ret < 0)
743                 return ret;
744
745         memset(s->async->prealloc_buf, 0xaa, s->async->prealloc_bufsz);
746
747         return 0;
748 }
749
750 static int pci_6534_load_fpga(struct comedi_device *dev,
751                               const u8 *data, size_t data_len,
752                               unsigned long context)
753 {
754         static const int timeout = 1000;
755         int fpga_index = context;
756         int i;
757         size_t j;
758
759         writew(0x80 | fpga_index, dev->mmio + Firmware_Control_Register);
760         writew(0xc0 | fpga_index, dev->mmio + Firmware_Control_Register);
761         for (i = 0;
762              (readw(dev->mmio + Firmware_Status_Register) & 0x2) == 0 &&
763              i < timeout; ++i) {
764                 udelay(1);
765         }
766         if (i == timeout) {
767                 dev_warn(dev->class_dev,
768                          "ni_pcidio: failed to load fpga %i, waiting for status 0x2\n",
769                          fpga_index);
770                 return -EIO;
771         }
772         writew(0x80 | fpga_index, dev->mmio + Firmware_Control_Register);
773         for (i = 0;
774              readw(dev->mmio + Firmware_Status_Register) != 0x3 &&
775              i < timeout; ++i) {
776                 udelay(1);
777         }
778         if (i == timeout) {
779                 dev_warn(dev->class_dev,
780                          "ni_pcidio: failed to load fpga %i, waiting for status 0x3\n",
781                          fpga_index);
782                 return -EIO;
783         }
784         for (j = 0; j + 1 < data_len;) {
785                 unsigned int value = data[j++];
786
787                 value |= data[j++] << 8;
788                 writew(value, dev->mmio + Firmware_Data_Register);
789                 for (i = 0;
790                      (readw(dev->mmio + Firmware_Status_Register) & 0x2) == 0
791                      && i < timeout; ++i) {
792                         udelay(1);
793                 }
794                 if (i == timeout) {
795                         dev_warn(dev->class_dev,
796                                  "ni_pcidio: failed to load word into fpga %i\n",
797                                  fpga_index);
798                         return -EIO;
799                 }
800                 if (need_resched())
801                         schedule();
802         }
803         writew(0x0, dev->mmio + Firmware_Control_Register);
804         return 0;
805 }
806
807 static int pci_6534_reset_fpga(struct comedi_device *dev, int fpga_index)
808 {
809         return pci_6534_load_fpga(dev, NULL, 0, fpga_index);
810 }
811
812 static int pci_6534_reset_fpgas(struct comedi_device *dev)
813 {
814         int ret;
815         int i;
816
817         writew(0x0, dev->mmio + Firmware_Control_Register);
818         for (i = 0; i < 3; ++i) {
819                 ret = pci_6534_reset_fpga(dev, i);
820                 if (ret < 0)
821                         break;
822         }
823         writew(0x0, dev->mmio + Firmware_Mask_Register);
824         return ret;
825 }
826
827 static void pci_6534_init_main_fpga(struct comedi_device *dev)
828 {
829         writel(0, dev->mmio + FPGA_Control1_Register);
830         writel(0, dev->mmio + FPGA_Control2_Register);
831         writel(0, dev->mmio + FPGA_SCALS_Counter_Register);
832         writel(0, dev->mmio + FPGA_SCAMS_Counter_Register);
833         writel(0, dev->mmio + FPGA_SCBLS_Counter_Register);
834         writel(0, dev->mmio + FPGA_SCBMS_Counter_Register);
835 }
836
837 static int pci_6534_upload_firmware(struct comedi_device *dev)
838 {
839         struct nidio96_private *devpriv = dev->private;
840         static const char *const fw_file[3] = {
841                 FW_PCI_6534_SCARAB_DI,  /* loaded into scarab A for DI */
842                 FW_PCI_6534_SCARAB_DO,  /* loaded into scarab B for DO */
843                 FW_PCI_6534_MAIN,       /* loaded into main FPGA */
844         };
845         int ret;
846         int n;
847
848         ret = pci_6534_reset_fpgas(dev);
849         if (ret < 0)
850                 return ret;
851         /* load main FPGA first, then the two scarabs */
852         for (n = 2; n >= 0; n--) {
853                 ret = comedi_load_firmware(dev, &devpriv->mite->pcidev->dev,
854                                            fw_file[n],
855                                            pci_6534_load_fpga, n);
856                 if (ret == 0 && n == 2)
857                         pci_6534_init_main_fpga(dev);
858                 if (ret < 0)
859                         break;
860         }
861         return ret;
862 }
863
864 static void nidio_reset_board(struct comedi_device *dev)
865 {
866         writel(0, dev->mmio + Port_IO(0));
867         writel(0, dev->mmio + Port_Pin_Directions(0));
868         writel(0, dev->mmio + Port_Pin_Mask(0));
869
870         /* disable interrupts on board */
871         writeb(0, dev->mmio + Master_DMA_And_Interrupt_Control);
872 }
873
874 static int nidio_auto_attach(struct comedi_device *dev,
875                              unsigned long context)
876 {
877         struct pci_dev *pcidev = comedi_to_pci_dev(dev);
878         const struct nidio_board *board = NULL;
879         struct nidio96_private *devpriv;
880         struct comedi_subdevice *s;
881         int ret;
882         unsigned int irq;
883
884         if (context < ARRAY_SIZE(nidio_boards))
885                 board = &nidio_boards[context];
886         if (!board)
887                 return -ENODEV;
888         dev->board_ptr = board;
889         dev->board_name = board->name;
890
891         ret = comedi_pci_enable(dev);
892         if (ret)
893                 return ret;
894
895         devpriv = comedi_alloc_devpriv(dev, sizeof(*devpriv));
896         if (!devpriv)
897                 return -ENOMEM;
898
899         spin_lock_init(&devpriv->mite_channel_lock);
900
901         devpriv->mite = mite_attach(dev, false);        /* use win0 */
902         if (!devpriv->mite)
903                 return -ENOMEM;
904
905         devpriv->di_mite_ring = mite_alloc_ring(devpriv->mite);
906         if (!devpriv->di_mite_ring)
907                 return -ENOMEM;
908
909         if (board->uses_firmware) {
910                 ret = pci_6534_upload_firmware(dev);
911                 if (ret < 0)
912                         return ret;
913         }
914
915         nidio_reset_board(dev);
916
917         ret = comedi_alloc_subdevices(dev, 1);
918         if (ret)
919                 return ret;
920
921         dev_info(dev->class_dev, "%s rev=%d\n", dev->board_name,
922                  readb(dev->mmio + Chip_Version));
923
924         s = &dev->subdevices[0];
925
926         dev->read_subdev = s;
927         s->type = COMEDI_SUBD_DIO;
928         s->subdev_flags =
929                 SDF_READABLE | SDF_WRITABLE | SDF_LSAMPL | SDF_PACKED |
930                 SDF_CMD_READ;
931         s->n_chan = 32;
932         s->range_table = &range_digital;
933         s->maxdata = 1;
934         s->insn_config = &ni_pcidio_insn_config;
935         s->insn_bits = &ni_pcidio_insn_bits;
936         s->do_cmd = &ni_pcidio_cmd;
937         s->do_cmdtest = &ni_pcidio_cmdtest;
938         s->cancel = &ni_pcidio_cancel;
939         s->len_chanlist = 32;   /* XXX */
940         s->buf_change = &ni_pcidio_change;
941         s->async_dma_dir = DMA_BIDIRECTIONAL;
942         s->poll = &ni_pcidio_poll;
943
944         irq = pcidev->irq;
945         if (irq) {
946                 ret = request_irq(irq, nidio_interrupt, IRQF_SHARED,
947                                   dev->board_name, dev);
948                 if (ret == 0)
949                         dev->irq = irq;
950         }
951
952         return 0;
953 }
954
955 static void nidio_detach(struct comedi_device *dev)
956 {
957         struct nidio96_private *devpriv = dev->private;
958
959         if (dev->irq)
960                 free_irq(dev->irq, dev);
961         if (devpriv) {
962                 if (devpriv->di_mite_ring) {
963                         mite_free_ring(devpriv->di_mite_ring);
964                         devpriv->di_mite_ring = NULL;
965                 }
966                 mite_detach(devpriv->mite);
967         }
968         if (dev->mmio)
969                 iounmap(dev->mmio);
970         comedi_pci_disable(dev);
971 }
972
973 static struct comedi_driver ni_pcidio_driver = {
974         .driver_name    = "ni_pcidio",
975         .module         = THIS_MODULE,
976         .auto_attach    = nidio_auto_attach,
977         .detach         = nidio_detach,
978 };
979
980 static int ni_pcidio_pci_probe(struct pci_dev *dev,
981                                const struct pci_device_id *id)
982 {
983         return comedi_pci_auto_config(dev, &ni_pcidio_driver, id->driver_data);
984 }
985
986 static const struct pci_device_id ni_pcidio_pci_table[] = {
987         { PCI_VDEVICE(NI, 0x1150), BOARD_PCIDIO_32HS },
988         { PCI_VDEVICE(NI, 0x12b0), BOARD_PCI6534 },
989         { PCI_VDEVICE(NI, 0x1320), BOARD_PXI6533 },
990         { 0 }
991 };
992 MODULE_DEVICE_TABLE(pci, ni_pcidio_pci_table);
993
994 static struct pci_driver ni_pcidio_pci_driver = {
995         .name           = "ni_pcidio",
996         .id_table       = ni_pcidio_pci_table,
997         .probe          = ni_pcidio_pci_probe,
998         .remove         = comedi_pci_auto_unconfig,
999 };
1000 module_comedi_pci_driver(ni_pcidio_driver, ni_pcidio_pci_driver);
1001
1002 MODULE_AUTHOR("Comedi http://www.comedi.org");
1003 MODULE_DESCRIPTION("Comedi low-level driver");
1004 MODULE_LICENSE("GPL");