blob: 317a9b5e4a3b16537bd460cbb0c6e0dfc2b09b52 [file] [log] [blame]
David Schleef0882eaa2009-02-12 16:09:00 -08001/*
H Hartley Sweetenb4a7c742016-06-20 11:39:28 -07002 * Comedi driver for DAS008 PCMCIA boards
3 *
4 * COMEDI - Linux Control and Measurement Device Interface
5 * Copyright (C) 2000 David A. Schleef <ds@schleef.org>
6 * Copyright (C) 2001,2002,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 * PCMCIA support code for this driver is adapted from the dummy_cs.c
19 * driver of the Linux PCMCIA Card Services package.
20 *
21 * The initial developer of the original code is David A. Hinds
22 * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
23 * are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
24 */
David Schleef0882eaa2009-02-12 16:09:00 -080025
David Schleef0882eaa2009-02-12 16:09:00 -080026/*
H Hartley Sweetenb4a7c742016-06-20 11:39:28 -070027 * Driver: das08_cs
28 * Description: DAS-08 PCMCIA boards
29 * Author: Warren Jasper, ds, Frank Hess
30 * Devices: [ComputerBoards] PCM-DAS08 (pcm-das08)
31 * Status: works
32 *
33 * This is the PCMCIA-specific support split off from the
34 * das08 driver.
35 *
36 * Configuration Options: none, uses PCMCIA auto config
37 *
38 * Command support does not exist, but could be added for this board.
39 */
David Schleef0882eaa2009-02-12 16:09:00 -080040
H Hartley Sweetence157f82013-06-24 17:04:43 -070041#include <linux/module.h>
David Schleef0882eaa2009-02-12 16:09:00 -080042
Ian Abbott0519c8f2015-01-30 09:57:20 +000043#include "../comedi_pcmcia.h"
David Schleef0882eaa2009-02-12 16:09:00 -080044
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070045#include "das08.h"
46
Ian Abbott383ecb82012-08-31 20:41:36 +010047static const struct das08_board_struct das08_cs_boards[] = {
48 {
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070049 .name = "pcm-das08",
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070050 .ai_nbits = 12,
51 .ai_pg = das08_bipolar5,
52 .ai_encoding = das08_pcm_encode12,
53 .di_nchan = 3,
54 .do_nchan = 3,
55 .iosize = 16,
Ian Abbott383ecb82012-08-31 20:41:36 +010056 },
H Hartley Sweeten6b7de352012-07-02 15:48:26 -070057};
58
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070059static int das08_cs_auto_attach(struct comedi_device *dev,
60 unsigned long context)
David Schleef0882eaa2009-02-12 16:09:00 -080061{
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070062 struct pcmcia_device *link = comedi_to_pcmcia_dev(dev);
63 struct das08_private_struct *devpriv;
64 unsigned long iobase;
Dominik Brodowski55a19b32009-10-29 00:54:49 +010065 int ret;
David Schleef0882eaa2009-02-12 16:09:00 -080066
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070067 /* The das08 driver needs the board_ptr */
68 dev->board_ptr = &das08_cs_boards[0];
69
H Hartley Sweeten95f932c2013-02-04 14:21:31 -070070 link->config_flags |= CONF_AUTO_SET_IO;
H Hartley Sweetena3ac9512013-02-05 18:16:07 -070071 ret = comedi_pcmcia_enable(dev, NULL);
Dominik Brodowski55a19b32009-10-29 00:54:49 +010072 if (ret)
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070073 return ret;
74 iobase = link->resource[0]->start;
David Schleef0882eaa2009-02-12 16:09:00 -080075
H Hartley Sweeten0bdab502013-06-24 16:55:44 -070076 devpriv = comedi_alloc_devpriv(dev, sizeof(*devpriv));
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070077 if (!devpriv)
78 return -ENOMEM;
David Schleef0882eaa2009-02-12 16:09:00 -080079
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070080 return das08_common_attach(dev, iobase);
H Hartley Sweetenfb795742012-07-02 15:45:34 -070081}
82
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070083static struct comedi_driver driver_das08_cs = {
84 .driver_name = "das08_cs",
85 .module = THIS_MODULE,
86 .auto_attach = das08_cs_auto_attach,
H Hartley Sweeten588ba6d2013-06-11 11:32:29 -070087 .detach = comedi_pcmcia_disable,
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -070088};
89
90static int das08_pcmcia_attach(struct pcmcia_device *link)
91{
92 return comedi_pcmcia_auto_config(link, &driver_das08_cs);
H Hartley Sweetenc332d962012-07-02 15:45:03 -070093}
David Schleef0882eaa2009-02-12 16:09:00 -080094
Joe Perches2202a5a2011-05-03 19:29:02 -070095static const struct pcmcia_device_id das08_cs_id_table[] = {
David Schleef0882eaa2009-02-12 16:09:00 -080096 PCMCIA_DEVICE_MANF_CARD(0x01c5, 0x4001),
97 PCMCIA_DEVICE_NULL
98};
David Schleef0882eaa2009-02-12 16:09:00 -080099MODULE_DEVICE_TABLE(pcmcia, das08_cs_id_table);
100
H Hartley Sweeten27fa05b2012-07-02 15:44:30 -0700101static struct pcmcia_driver das08_cs_driver = {
102 .name = "pcm-das08",
103 .owner = THIS_MODULE,
H Hartley Sweeten27fa05b2012-07-02 15:44:30 -0700104 .id_table = das08_cs_id_table,
H Hartley Sweeten8cd98c82013-01-30 15:23:50 -0700105 .probe = das08_pcmcia_attach,
106 .remove = comedi_pcmcia_auto_unconfig,
David Schleef0882eaa2009-02-12 16:09:00 -0800107};
Peter Huewe7915ce02013-01-14 22:00:53 +0100108module_comedi_pcmcia_driver(driver_das08_cs, das08_cs_driver);
H Hartley Sweeten3a36ad12012-07-02 15:42:41 -0700109
Luis de Bethencourt55ff2c62015-06-22 14:14:35 +0200110MODULE_AUTHOR("David A. Schleef <ds@schleef.org>");
111MODULE_AUTHOR("Frank Mori Hess <fmhess@users.sourceforge.net>");
H Hartley Sweeten3a36ad12012-07-02 15:42:41 -0700112MODULE_DESCRIPTION("Comedi driver for ComputerBoards DAS-08 PCMCIA boards");
113MODULE_LICENSE("GPL");