staging: comedi: amplc_dio200: remove 'bustype' from boardinfo
[cascardo/linux.git] / 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 /* 200 series register area sizes */
27 #define DIO200_IO_SIZE          0x20
28 #define DIO200_PCIE_IO_SIZE     0x4000
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 /*
39  * Board descriptions.
40  */
41
42 struct dio200_layout {
43         unsigned short n_subdevs;       /* number of subdevices */
44         unsigned char sdtype[DIO200_MAX_SUBDEVS];       /* enum dio200_sdtype */
45         unsigned char sdinfo[DIO200_MAX_SUBDEVS];       /* depends on sdtype */
46         bool has_int_sce:1;             /* has interrupt enable/status reg */
47         bool has_clk_gat_sce:1;         /* has clock/gate selection registers */
48         bool has_enhancements:1;        /* has enhanced features */
49 };
50
51 struct dio200_board {
52         const char *name;
53         struct dio200_layout layout;
54         unsigned char mainbar;
55         unsigned char mainshift;
56         unsigned int mainsize;
57 };
58
59 int amplc_dio200_common_attach(struct comedi_device *dev, unsigned int irq,
60                                unsigned long req_irq_flags);
61
62 void amplc_dio200_common_detach(struct comedi_device *dev);
63
64 /* Used by initialization of PCIe boards. */
65 void amplc_dio200_set_enhance(struct comedi_device *dev, unsigned char val);
66
67 #endif