aa5c4d8bdf75f0c91012e21cb1ead935a508607d
[firefly-linux-kernel-4.4.55.git] / drivers / staging / comedi / drivers / ni_labpc.h
1 /*
2     ni_labpc.h
3
4     Header for ni_labpc.c and ni_labpc_cs.c
5
6     Copyright (C) 2003 Frank Mori Hess <fmhess@users.sourceforge.net>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17 */
18
19 #ifndef _NI_LABPC_H
20 #define _NI_LABPC_H
21
22 #define EEPROM_SIZE     256     /*  256 byte eeprom */
23 #define NUM_AO_CHAN     2       /*  boards have two analog output channels */
24
25 enum transfer_type { fifo_not_empty_transfer, fifo_half_full_transfer,
26         isa_dma_transfer
27 };
28
29 struct labpc_boardinfo {
30         const char *name;
31         int ai_speed;                   /* maximum input speed in ns */
32         unsigned ai_scan_up:1;          /* can auto scan up in ai channels */
33         unsigned has_ao:1;              /* has analog outputs */
34         unsigned is_labpc1200:1;        /* has extra regs compared to pc+ */
35         unsigned has_mmio:1;            /* uses memory mapped io */
36 };
37
38 struct labpc_private {
39         struct mite_struct *mite;       /*  for mite chip on pci-1200 */
40         /*  number of data points left to be taken */
41         unsigned long long count;
42         /*  software copy of analog output values */
43         unsigned int ao_value[NUM_AO_CHAN];
44         /*  software copys of bits written to command registers */
45         unsigned int cmd1;
46         unsigned int cmd2;
47         unsigned int cmd3;
48         unsigned int cmd4;
49         unsigned int cmd5;
50         unsigned int cmd6;
51         /*  store last read of board status registers */
52         unsigned int stat1;
53         unsigned int stat2;
54         /*
55          * value to load into board's counter a0 (conversion pacing) for timed
56          * conversions
57          */
58         unsigned int divisor_a0;
59         /*
60          * value to load into board's counter b0 (master) for timed conversions
61          */
62         unsigned int divisor_b0;
63         /*
64          * value to load into board's counter b1 (scan pacing) for timed
65          * conversions
66          */
67         unsigned int divisor_b1;
68         unsigned int dma_chan;  /*  dma channel to use */
69         u16 *dma_buffer;        /*  buffer ai will dma into */
70         phys_addr_t dma_addr;
71         /* transfer size in bytes for current transfer */
72         unsigned int dma_transfer_size;
73         /* we are using dma/fifo-half-full/etc. */
74         enum transfer_type current_transfer;
75         /* stores contents of board's eeprom */
76         unsigned int eeprom_data[EEPROM_SIZE];
77         /* stores settings of calibration dacs */
78         unsigned int caldac[16];
79         /*
80          * function pointers so we can use inb/outb or readb/writeb as
81          * appropriate
82          */
83         unsigned int (*read_byte) (unsigned long address);
84         void (*write_byte) (unsigned int byte, unsigned long address);
85 };
86
87 int labpc_common_attach(struct comedi_device *dev,
88                         unsigned int irq, unsigned long isr_flags);
89 void labpc_common_detach(struct comedi_device *dev);
90
91 #endif /* _NI_LABPC_H */