]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/comedi/drivers/amplc_dio200.h
Merge tag 'mmc-updates-for-3.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel...
[karo-tx-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  * Register region.
32  */
33 enum dio200_regtype { no_regtype = 0, io_regtype, mmio_regtype };
34 struct dio200_region {
35         union {
36                 unsigned long iobase;           /* I/O base address */
37                 unsigned char __iomem *membase; /* mapped MMIO base address */
38         } u;
39         enum dio200_regtype regtype;
40 };
41
42 /*
43  * Subdevice types.
44  */
45 enum dio200_sdtype { sd_none, sd_intr, sd_8255, sd_8254, sd_timer };
46
47 #define DIO200_MAX_SUBDEVS      8
48 #define DIO200_MAX_ISNS         6
49
50 /*
51  * Board descriptions.
52  */
53
54 struct dio200_layout {
55         unsigned short n_subdevs;       /* number of subdevices */
56         unsigned char sdtype[DIO200_MAX_SUBDEVS];       /* enum dio200_sdtype */
57         unsigned char sdinfo[DIO200_MAX_SUBDEVS];       /* depends on sdtype */
58         bool has_int_sce:1;             /* has interrupt enable/status reg */
59         bool has_clk_gat_sce:1;         /* has clock/gate selection registers */
60         bool has_enhancements:1;        /* has enhanced features */
61 };
62
63 enum dio200_bustype { isa_bustype, pci_bustype };
64
65 struct dio200_board {
66         const char *name;
67         struct dio200_layout layout;
68         enum dio200_bustype bustype;
69         unsigned char mainbar;
70         unsigned char mainshift;
71         unsigned int mainsize;
72 };
73
74 /*
75  * Comedi device private data.
76  */
77 struct dio200_private {
78         struct dio200_region io;        /* Register region */
79         int intr_sd;
80 };
81
82 int amplc_dio200_common_attach(struct comedi_device *dev, unsigned int irq,
83                                unsigned long req_irq_flags);
84
85 void amplc_dio200_common_detach(struct comedi_device *dev);
86
87 /* Used by initialization of PCIe boards. */
88 void amplc_dio200_set_enhance(struct comedi_device *dev, unsigned char val);
89
90 #endif