|
@@ -157,23 +157,6 @@ static int apci3120_attach_pci(struct comedi_device *dev,
|
|
|
devpriv->i_IobaseAddon = pci_resource_start(pcidev, 2);
|
|
|
devpriv->i_IobaseReserved = pci_resource_start(pcidev, 3);
|
|
|
|
|
|
- /* Initialize parameters that can be overridden in EEPROM */
|
|
|
- devpriv->s_EeParameters.i_NbrAiChannel = this_board->i_NbrAiChannel;
|
|
|
- devpriv->s_EeParameters.i_NbrAoChannel = this_board->i_NbrAoChannel;
|
|
|
- devpriv->s_EeParameters.i_AiMaxdata = this_board->i_AiMaxdata;
|
|
|
- devpriv->s_EeParameters.i_AoMaxdata = this_board->i_AoMaxdata;
|
|
|
- devpriv->s_EeParameters.i_NbrDiChannel = this_board->i_NbrDiChannel;
|
|
|
- devpriv->s_EeParameters.i_NbrDoChannel = this_board->i_NbrDoChannel;
|
|
|
- devpriv->s_EeParameters.i_DoMaxdata = this_board->i_DoMaxdata;
|
|
|
- devpriv->s_EeParameters.i_Dma = this_board->i_Dma;
|
|
|
- devpriv->s_EeParameters.i_Timer = this_board->i_Timer;
|
|
|
- devpriv->s_EeParameters.ui_MinAcquisitiontimeNs =
|
|
|
- this_board->ui_MinAcquisitiontimeNs;
|
|
|
- devpriv->s_EeParameters.ui_MinDelaytimeNs =
|
|
|
- this_board->ui_MinDelaytimeNs;
|
|
|
-
|
|
|
- /* ## */
|
|
|
-
|
|
|
if (pcidev->irq > 0) {
|
|
|
ret = request_irq(pcidev->irq, v_ADDI_Interrupt, IRQF_SHARED,
|
|
|
dev->board_name, dev);
|
|
@@ -183,7 +166,7 @@ static int apci3120_attach_pci(struct comedi_device *dev,
|
|
|
|
|
|
devpriv->us_UseDma = ADDI_ENABLE;
|
|
|
|
|
|
- if (devpriv->s_EeParameters.i_Dma) {
|
|
|
+ if (this_board->i_Dma) {
|
|
|
if (devpriv->us_UseDma == ADDI_ENABLE) {
|
|
|
/* alloc DMA buffers */
|
|
|
devpriv->b_DmaDoubleBuffer = 0;
|
|
@@ -222,22 +205,20 @@ static int apci3120_attach_pci(struct comedi_device *dev,
|
|
|
|
|
|
/* Allocate and Initialise AI Subdevice Structures */
|
|
|
s = &dev->subdevices[0];
|
|
|
- if ((devpriv->s_EeParameters.i_NbrAiChannel)
|
|
|
- || (this_board->i_NbrAiChannelDiff)) {
|
|
|
+ if (this_board->i_NbrAiChannel || (this_board->i_NbrAiChannelDiff)) {
|
|
|
dev->read_subdev = s;
|
|
|
s->type = COMEDI_SUBD_AI;
|
|
|
s->subdev_flags =
|
|
|
SDF_READABLE | SDF_COMMON | SDF_GROUND
|
|
|
| SDF_DIFF;
|
|
|
- if (devpriv->s_EeParameters.i_NbrAiChannel) {
|
|
|
- s->n_chan =
|
|
|
- devpriv->s_EeParameters.i_NbrAiChannel;
|
|
|
+ if (this_board->i_NbrAiChannel) {
|
|
|
+ s->n_chan = this_board->i_NbrAiChannel;
|
|
|
devpriv->b_SingelDiff = 0;
|
|
|
} else {
|
|
|
s->n_chan = this_board->i_NbrAiChannelDiff;
|
|
|
devpriv->b_SingelDiff = 1;
|
|
|
}
|
|
|
- s->maxdata = devpriv->s_EeParameters.i_AiMaxdata;
|
|
|
+ s->maxdata = this_board->i_AiMaxdata;
|
|
|
s->len_chanlist = this_board->i_AiChannelList;
|
|
|
s->range_table = this_board->pr_AiRangelist;
|
|
|
|
|
@@ -258,13 +239,12 @@ static int apci3120_attach_pci(struct comedi_device *dev,
|
|
|
|
|
|
/* Allocate and Initialise AO Subdevice Structures */
|
|
|
s = &dev->subdevices[1];
|
|
|
- if (devpriv->s_EeParameters.i_NbrAoChannel) {
|
|
|
+ if (this_board->i_NbrAoChannel) {
|
|
|
s->type = COMEDI_SUBD_AO;
|
|
|
s->subdev_flags = SDF_WRITEABLE | SDF_GROUND | SDF_COMMON;
|
|
|
- s->n_chan = devpriv->s_EeParameters.i_NbrAoChannel;
|
|
|
- s->maxdata = devpriv->s_EeParameters.i_AoMaxdata;
|
|
|
- s->len_chanlist =
|
|
|
- devpriv->s_EeParameters.i_NbrAoChannel;
|
|
|
+ s->n_chan = this_board->i_NbrAoChannel;
|
|
|
+ s->maxdata = this_board->i_AoMaxdata;
|
|
|
+ s->len_chanlist = this_board->i_NbrAoChannel;
|
|
|
s->range_table = this_board->pr_AoRangelist;
|
|
|
s->insn_config = this_board->ao_config;
|
|
|
s->insn_write = this_board->ao_write;
|
|
@@ -273,13 +253,12 @@ static int apci3120_attach_pci(struct comedi_device *dev,
|
|
|
}
|
|
|
/* Allocate and Initialise DI Subdevice Structures */
|
|
|
s = &dev->subdevices[2];
|
|
|
- if (devpriv->s_EeParameters.i_NbrDiChannel) {
|
|
|
+ if (this_board->i_NbrDiChannel) {
|
|
|
s->type = COMEDI_SUBD_DI;
|
|
|
s->subdev_flags = SDF_READABLE | SDF_GROUND | SDF_COMMON;
|
|
|
- s->n_chan = devpriv->s_EeParameters.i_NbrDiChannel;
|
|
|
+ s->n_chan = this_board->i_NbrDiChannel;
|
|
|
s->maxdata = 1;
|
|
|
- s->len_chanlist =
|
|
|
- devpriv->s_EeParameters.i_NbrDiChannel;
|
|
|
+ s->len_chanlist = this_board->i_NbrDiChannel;
|
|
|
s->range_table = &range_digital;
|
|
|
s->io_bits = 0; /* all bits input */
|
|
|
s->insn_config = this_board->di_config;
|
|
@@ -291,14 +270,13 @@ static int apci3120_attach_pci(struct comedi_device *dev,
|
|
|
}
|
|
|
/* Allocate and Initialise DO Subdevice Structures */
|
|
|
s = &dev->subdevices[3];
|
|
|
- if (devpriv->s_EeParameters.i_NbrDoChannel) {
|
|
|
+ if (this_board->i_NbrDoChannel) {
|
|
|
s->type = COMEDI_SUBD_DO;
|
|
|
s->subdev_flags =
|
|
|
SDF_READABLE | SDF_WRITEABLE | SDF_GROUND | SDF_COMMON;
|
|
|
- s->n_chan = devpriv->s_EeParameters.i_NbrDoChannel;
|
|
|
- s->maxdata = devpriv->s_EeParameters.i_DoMaxdata;
|
|
|
- s->len_chanlist =
|
|
|
- devpriv->s_EeParameters.i_NbrDoChannel;
|
|
|
+ s->n_chan = this_board->i_NbrDoChannel;
|
|
|
+ s->maxdata = this_board->i_DoMaxdata;
|
|
|
+ s->len_chanlist = this_board->i_NbrDoChannel;
|
|
|
s->range_table = &range_digital;
|
|
|
s->io_bits = 0xf; /* all bits output */
|
|
|
|
|
@@ -313,7 +291,7 @@ static int apci3120_attach_pci(struct comedi_device *dev,
|
|
|
|
|
|
/* Allocate and Initialise Timer Subdevice Structures */
|
|
|
s = &dev->subdevices[4];
|
|
|
- if (devpriv->s_EeParameters.i_Timer) {
|
|
|
+ if (this_board->i_Timer) {
|
|
|
s->type = COMEDI_SUBD_TIMER;
|
|
|
s->subdev_flags = SDF_WRITEABLE | SDF_GROUND | SDF_COMMON;
|
|
|
s->n_chan = 1;
|