Commit 55e51bad authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: pcl724: add support for Diamond Systems ONYX-MM-DIO module

The Diamond Systems ONYX-MM-DIO board is a PC/104 module with two 8255
chips providing 48 digital I/O channels.

This board can be supported by the pcl724 driver.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 757c1fa9
...@@ -142,6 +142,7 @@ config COMEDI_PCL724 ...@@ -142,6 +142,7 @@ config COMEDI_PCL724
ADlink ACL-7124 24 channels ADlink ACL-7124 24 channels
ADlink PET-48DIO 48 channels ADlink PET-48DIO 48 channels
WinSystems PCM-IO48 48 channels (PC/104) WinSystems PCM-IO48 48 channels (PC/104)
Diamond Systems ONYX-MM-DIO 48 channels (PC/104)
To compile this driver as a module, choose M here: the module will be To compile this driver as a module, choose M here: the module will be
called pcl724. called pcl724.
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
* (ADLink) ACL-7124 [acl7124] * (ADLink) ACL-7124 [acl7124]
* (ADLink) PET-48DIO [pet48dio] * (ADLink) PET-48DIO [pet48dio]
* (WinSystems) PCM-IO48 [pcmio48] * (WinSystems) PCM-IO48 [pcmio48]
* (Diamond Systems) ONYX-MM-DIO [onyx-mm-dio]
* Author: Michal Dobes <dobes@tesnet.cz> * Author: Michal Dobes <dobes@tesnet.cz>
* Status: untested * Status: untested
* *
...@@ -73,6 +74,10 @@ static const struct pcl724_board boardtypes[] = { ...@@ -73,6 +74,10 @@ static const struct pcl724_board boardtypes[] = {
.name = "pcmio48", .name = "pcmio48",
.io_range = 0x08, .io_range = 0x08,
.numofports = 2, /* 48 DIO channels */ .numofports = 2, /* 48 DIO channels */
}, {
.name = "onyx-mm-dio",
.io_range = 0x10,
.numofports = 2, /* 48 DIO channels */
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment