Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325135
b: refs/heads/master
c: c514bab
h: refs/heads/master
i:
  325133: 8fe371e
  325131: 129d1c8
  325127: 5b25b56
  325119: 4aef51d
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Sep 11, 2012
1 parent 1e30481 commit 7564c49
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ae479ee562cf3d7d33eebbb30e6c3105475ed5b8
refs/heads/master: c514bab7cc74a2235ea342a83bb643aee69a62de
29 changes: 13 additions & 16 deletions trunk/drivers/staging/comedi/drivers/adl_pci9111.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ a multiple of chanlist_len*convert_arg.
#define PCI9111_REGISTER_AD_CHANNEL_CONTROL 0x06 /* Channel
selection */
#define PCI9111_REGISTER_AD_CHANNEL_READBACK 0x06
#define PCI9111_REGISTER_INPUT_SIGNAL_RANGE 0x08
#define PCI9111_REGISTER_RANGE_STATUS_READBACK 0x08
#define PCI9111_AI_RANGE_REG 0x08
#define PCI9111_RANGE_STATUS_REG 0x08
#define PCI9111_REGISTER_TRIGGER_MODE_CONTROL 0x0A
#define PCI9111_REGISTER_AD_MODE_INTERRUPT_READBACK 0x0A
#define PCI9111_REGISTER_SOFTWARE_TRIGGER 0x0E
Expand Down Expand Up @@ -165,15 +165,15 @@ a multiple of chanlist_len*convert_arg.
} while (0)

#define pci9111_is_fifo_full() \
((inb(dev->iobase + PCI9111_REGISTER_RANGE_STATUS_READBACK)& \
((inb(dev->iobase + PCI9111_RANGE_STATUS_REG)& \
PCI9111_FIFO_FULL_MASK) == 0)

#define pci9111_is_fifo_half_full() \
((inb(dev->iobase + PCI9111_REGISTER_RANGE_STATUS_READBACK)& \
((inb(dev->iobase + PCI9111_RANGE_STATUS_REG)& \
PCI9111_FIFO_HALF_FULL_MASK) == 0)

#define pci9111_is_fifo_empty() \
((inb(dev->iobase + PCI9111_REGISTER_RANGE_STATUS_READBACK)& \
((inb(dev->iobase + PCI9111_RANGE_STATUS_REG)& \
PCI9111_FIFO_EMPTY_MASK) == 0)

#define pci9111_ai_channel_set(channel) \
Expand All @@ -184,14 +184,6 @@ a multiple of chanlist_len*convert_arg.
(inb(dev->iobase + PCI9111_REGISTER_AD_CHANNEL_READBACK) \
&PCI9111_CHANNEL_MASK)

#define pci9111_ai_range_set(range) \
outb((range)&PCI9111_RANGE_MASK, \
dev->iobase + PCI9111_REGISTER_INPUT_SIGNAL_RANGE)

#define pci9111_ai_range_get() \
(inb(dev->iobase + PCI9111_REGISTER_RANGE_STATUS_READBACK) \
&PCI9111_RANGE_MASK)

static const struct comedi_lrange pci9111_hr_ai_range = {
5,
{
Expand Down Expand Up @@ -612,7 +604,8 @@ static int pci9111_ai_do_cmd(struct comedi_device *dev,
/* Set gain */
/* This is the same gain on every channel */

pci9111_ai_range_set(CR_RANGE(async_cmd->chanlist[0]));
outb(CR_RANGE(async_cmd->chanlist[0]) & PCI9111_RANGE_MASK,
dev->iobase + PCI9111_AI_RANGE_REG);

/* Set counter */

Expand Down Expand Up @@ -860,13 +853,17 @@ static int pci9111_ai_insn_read(struct comedi_device *dev,
unsigned int maxdata = s->maxdata;
unsigned int invert = (maxdata + 1) >> 1;
unsigned int shift = (maxdata == 0xffff) ? 0 : 4;
unsigned int current_range;
int timeout;
int i;

pci9111_ai_channel_set(chan);

if ((pci9111_ai_range_get()) != range)
pci9111_ai_range_set(range);
current_range = inb(dev->iobase + PCI9111_RANGE_STATUS_REG);
if ((current_range & PCI9111_RANGE_MASK) != range) {
outb(range & PCI9111_RANGE_MASK,
dev->iobase + PCI9111_AI_RANGE_REG);
}

pci9111_fifo_reset();

Expand Down

0 comments on commit 7564c49

Please sign in to comment.