Merge remote-tracking branch 'asoc/fix/max98357a' into asoc-linus
[linux-2.6-block.git] / drivers / staging / comedi / drivers / ni_labpc_pci.c
1 /*
2  * comedi/drivers/ni_labpc_pci.c
3  * Driver for National Instruments Lab-PC PCI-1200
4  * Copyright (C) 2001, 2002, 2003 Frank Mori Hess <fmhess@users.sourceforge.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 /*
18  * Driver: ni_labpc_pci
19  * Description: National Instruments Lab-PC PCI-1200
20  * Devices: [National Instruments] PCI-1200 (ni_pci-1200)
21  * Author: Frank Mori Hess <fmhess@users.sourceforge.net>
22  * Status: works
23  *
24  * This is the PCI-specific support split off from the ni_labpc driver.
25  *
26  * Configuration Options: not applicable, uses PCI auto config
27  *
28  * NI manuals:
29  * 340914a (pci-1200)
30  */
31
32 #include <linux/module.h>
33 #include <linux/interrupt.h>
34 #include <linux/pci.h>
35
36 #include "../comedidev.h"
37
38 #include "ni_labpc.h"
39
40 enum labpc_pci_boardid {
41         BOARD_NI_PCI1200,
42 };
43
44 static const struct labpc_boardinfo labpc_pci_boards[] = {
45         [BOARD_NI_PCI1200] = {
46                 .name                   = "ni_pci-1200",
47                 .ai_speed               = 10000,
48                 .ai_scan_up             = 1,
49                 .has_ao                 = 1,
50                 .is_labpc1200           = 1,
51         },
52 };
53
54 /* ripped from mite.h and mite_setup2() to avoid mite dependancy */
55 #define MITE_IODWBSR    0xc0     /* IO Device Window Base Size Register */
56 #define WENAB           (1 << 7) /* window enable */
57
58 static int labpc_pci_mite_init(struct pci_dev *pcidev)
59 {
60         void __iomem *mite_base;
61         u32 main_phys_addr;
62
63         /* ioremap the MITE registers (BAR 0) temporarily */
64         mite_base = pci_ioremap_bar(pcidev, 0);
65         if (!mite_base)
66                 return -ENOMEM;
67
68         /* set data window to main registers (BAR 1) */
69         main_phys_addr = pci_resource_start(pcidev, 1);
70         writel(main_phys_addr | WENAB, mite_base + MITE_IODWBSR);
71
72         /* finished with MITE registers */
73         iounmap(mite_base);
74         return 0;
75 }
76
77 static int labpc_pci_auto_attach(struct comedi_device *dev,
78                                  unsigned long context)
79 {
80         struct pci_dev *pcidev = comedi_to_pci_dev(dev);
81         const struct labpc_boardinfo *board = NULL;
82         int ret;
83
84         if (context < ARRAY_SIZE(labpc_pci_boards))
85                 board = &labpc_pci_boards[context];
86         if (!board)
87                 return -ENODEV;
88         dev->board_ptr = board;
89         dev->board_name = board->name;
90
91         ret = comedi_pci_enable(dev);
92         if (ret)
93                 return ret;
94
95         ret = labpc_pci_mite_init(pcidev);
96         if (ret)
97                 return ret;
98
99         dev->mmio = pci_ioremap_bar(pcidev, 1);
100         if (!dev->mmio)
101                 return -ENOMEM;
102
103         return labpc_common_attach(dev, pcidev->irq, IRQF_SHARED);
104 }
105
106 static struct comedi_driver labpc_pci_comedi_driver = {
107         .driver_name    = "labpc_pci",
108         .module         = THIS_MODULE,
109         .auto_attach    = labpc_pci_auto_attach,
110         .detach         = comedi_pci_detach,
111 };
112
113 static const struct pci_device_id labpc_pci_table[] = {
114         { PCI_VDEVICE(NI, 0x161), BOARD_NI_PCI1200 },
115         { 0 }
116 };
117 MODULE_DEVICE_TABLE(pci, labpc_pci_table);
118
119 static int labpc_pci_probe(struct pci_dev *dev,
120                            const struct pci_device_id *id)
121 {
122         return comedi_pci_auto_config(dev, &labpc_pci_comedi_driver,
123                                       id->driver_data);
124 }
125
126 static struct pci_driver labpc_pci_driver = {
127         .name           = "labpc_pci",
128         .id_table       = labpc_pci_table,
129         .probe          = labpc_pci_probe,
130         .remove         = comedi_pci_auto_unconfig,
131 };
132 module_comedi_pci_driver(labpc_pci_comedi_driver, labpc_pci_driver);
133
134 MODULE_DESCRIPTION("Comedi: National Instruments Lab-PC PCI-1200 driver");
135 MODULE_AUTHOR("Comedi http://www.comedi.org");
136 MODULE_LICENSE("GPL");