These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / staging / comedi / drivers / amplc_dio200.h
1 /*
2  * comedi/drivers/amplc_dio.h
3  *
4  * Header for amplc_dio200.c, amplc_dio200_common.c and
5  * amplc_dio200_pci.c.
6  *
7  * Copyright (C) 2005-2013 MEV Ltd. <http://www.mev.co.uk/>
8  *
9  * COMEDI - Linux Control and Measurement Device Interface
10  * Copyright (C) 1998,2000 David A. Schleef <ds@schleef.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  */
22
23 #ifndef AMPLC_DIO200_H_INCLUDED
24 #define AMPLC_DIO200_H_INCLUDED
25
26 #include <linux/types.h>
27
28 struct comedi_device;
29
30 /*
31  * Subdevice types.
32  */
33 enum dio200_sdtype { sd_none, sd_intr, sd_8255, sd_8254, sd_timer };
34
35 #define DIO200_MAX_SUBDEVS      8
36 #define DIO200_MAX_ISNS         6
37
38 struct dio200_board {
39         const char *name;
40         unsigned char mainbar;
41         unsigned short n_subdevs;       /* number of subdevices */
42         unsigned char sdtype[DIO200_MAX_SUBDEVS];       /* enum dio200_sdtype */
43         unsigned char sdinfo[DIO200_MAX_SUBDEVS];       /* depends on sdtype */
44         bool has_int_sce:1;             /* has interrupt enable/status reg */
45         bool has_clk_gat_sce:1;         /* has clock/gate selection registers */
46         bool is_pcie:1;                 /* has enhanced features */
47 };
48
49 int amplc_dio200_common_attach(struct comedi_device *dev, unsigned int irq,
50                                unsigned long req_irq_flags);
51
52 /* Used by initialization of PCIe boards. */
53 void amplc_dio200_set_enhance(struct comedi_device *dev, unsigned char val);
54
55 #endif