linux/drivers/staging/comedi/drivers/ni_labpc_cs.c
<<
>>
Prefs
   1/*
   2    comedi/drivers/ni_labpc_cs.c
   3    Driver for National Instruments daqcard-1200 boards
   4    Copyright (C) 2001, 2002, 2003 Frank Mori Hess <fmhess@users.sourceforge.net>
   5
   6    PCMCIA crap is adapted from dummy_cs.c 1.31 2001/08/24 12:13:13
   7    from the pcmcia package.
   8    The initial developer of the pcmcia dummy_cs.c code is David A. Hinds
   9    <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
  10    are Copyright (C) 1999 David A. Hinds.
  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/*
  23Driver: ni_labpc_cs
  24Description: National Instruments Lab-PC (& compatibles)
  25Author: Frank Mori Hess <fmhess@users.sourceforge.net>
  26Devices: [National Instruments] DAQCard-1200 (daqcard-1200)
  27Status: works
  28
  29Thanks go to Fredrik Lingvall for much testing and perseverance in
  30helping to debug daqcard-1200 support.
  31
  32The 1200 series boards have onboard calibration dacs for correcting
  33analog input/output offsets and gains.  The proper settings for these
  34caldacs are stored on the board's eeprom.  To read the caldac values
  35from the eeprom and store them into a file that can be then be used by
  36comedilib, use the comedi_calibrate program.
  37
  38Configuration options:
  39  none
  40
  41The daqcard-1200 has quirky chanlist requirements
  42when scanning multiple channels.  Multiple channel scan
  43sequence must start at highest channel, then decrement down to
  44channel 0.  Chanlists consisting of all one channel
  45are also legal, and allow you to pace conversions in bursts.
  46
  47*/
  48
  49/*
  50
  51NI manuals:
  52340988a (daqcard-1200)
  53
  54*/
  55
  56#include <linux/module.h>
  57
  58#include "../comedi_pcmcia.h"
  59
  60#include "ni_labpc.h"
  61
  62static const struct labpc_boardinfo labpc_cs_boards[] = {
  63        {
  64                .name                   = "daqcard-1200",
  65                .ai_speed               = 10000,
  66                .has_ao                 = 1,
  67                .is_labpc1200           = 1,
  68        },
  69};
  70
  71static int labpc_cs_auto_attach(struct comedi_device *dev,
  72                                unsigned long context)
  73{
  74        struct pcmcia_device *link = comedi_to_pcmcia_dev(dev);
  75        int ret;
  76
  77        /* The ni_labpc driver needs the board_ptr */
  78        dev->board_ptr = &labpc_cs_boards[0];
  79
  80        link->config_flags |= CONF_AUTO_SET_IO |
  81                              CONF_ENABLE_IRQ | CONF_ENABLE_PULSE_IRQ;
  82        ret = comedi_pcmcia_enable(dev, NULL);
  83        if (ret)
  84                return ret;
  85        dev->iobase = link->resource[0]->start;
  86
  87        if (!link->irq)
  88                return -EINVAL;
  89
  90        return labpc_common_attach(dev, link->irq, IRQF_SHARED);
  91}
  92
  93static void labpc_cs_detach(struct comedi_device *dev)
  94{
  95        labpc_common_detach(dev);
  96        comedi_pcmcia_disable(dev);
  97}
  98
  99static struct comedi_driver driver_labpc_cs = {
 100        .driver_name    = "ni_labpc_cs",
 101        .module         = THIS_MODULE,
 102        .auto_attach    = labpc_cs_auto_attach,
 103        .detach         = labpc_cs_detach,
 104};
 105
 106static int labpc_cs_attach(struct pcmcia_device *link)
 107{
 108        return comedi_pcmcia_auto_config(link, &driver_labpc_cs);
 109}
 110
 111static const struct pcmcia_device_id labpc_cs_ids[] = {
 112        PCMCIA_DEVICE_MANF_CARD(0x010b, 0x0103),        /* daqcard-1200 */
 113        PCMCIA_DEVICE_NULL
 114};
 115MODULE_DEVICE_TABLE(pcmcia, labpc_cs_ids);
 116
 117static struct pcmcia_driver labpc_cs_driver = {
 118        .name           = "daqcard-1200",
 119        .owner          = THIS_MODULE,
 120        .id_table       = labpc_cs_ids,
 121        .probe          = labpc_cs_attach,
 122        .remove         = comedi_pcmcia_auto_unconfig,
 123};
 124module_comedi_pcmcia_driver(driver_labpc_cs, labpc_cs_driver);
 125
 126MODULE_DESCRIPTION("Comedi driver for National Instruments Lab-PC");
 127MODULE_AUTHOR("Frank Mori Hess <fmhess@users.sourceforge.net>");
 128MODULE_LICENSE("GPL");
 129