Staging: comedi: Remove comedi_insn typedef
[deliverable/linux.git] / drivers / staging / comedi / drivers / addi-data / hwdrv_apci2032.h
CommitLineData
15d8826a
GKH
1/*
2 * Copyright (C) 2004,2005 ADDI-DATA GmbH for the source code of this module.
3 *
4 * ADDI-DATA GmbH
5 * Dieselstrasse 3
6 * D-77833 Ottersweier
7 * Tel: +19(0)7223/9493-0
8 * Fax: +49(0)7223/9493-92
9 * http://www.addi-data-com
10 * info@addi-data.com
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your option)
15 * any later version.
16 */
c995fe94 17
c995fe94
ADG
18/********* Definitions for APCI-2032 card *****/
19
20// Card Specific information
21#define APCI2032_BOARD_VENDOR_ID 0x15B8
22#define APCI2032_ADDRESS_RANGE 63
23
24//DIGITAL INPUT-OUTPUT DEFINE
25
26#define APCI2032_DIGITAL_OP 0
27#define APCI2032_DIGITAL_OP_RW 0
28#define APCI2032_DIGITAL_OP_INTERRUPT 4
29#define APCI2032_DIGITAL_OP_IRQ 12
30
31//Digital Output Interrupt Status
32#define APCI2032_DIGITAL_OP_INTERRUPT_STATUS 8
33
34//Digital Output Interrupt Enable Disable.
35#define APCI2032_DIGITAL_OP_VCC_INTERRUPT_ENABLE 0x1
36#define APCI2032_DIGITAL_OP_VCC_INTERRUPT_DISABLE 0xFFFFFFFE
37#define APCI2032_DIGITAL_OP_CC_INTERRUPT_ENABLE 0x2
38#define APCI2032_DIGITAL_OP_CC_INTERRUPT_DISABLE 0xFFFFFFFD
39
40//ADDIDATA Enable Disable
41
42#define ADDIDATA_ENABLE 1
43#define ADDIDATA_DISABLE 0
44
45// TIMER COUNTER WATCHDOG DEFINES
46
47#define ADDIDATA_WATCHDOG 2
48#define APCI2032_DIGITAL_OP_WATCHDOG 16
49#define APCI2032_TCW_RELOAD_VALUE 4
50#define APCI2032_TCW_TIMEBASE 8
51#define APCI2032_TCW_PROG 12
52#define APCI2032_TCW_TRIG_STATUS 16
53#define APCI2032_TCW_IRQ 20
54
55// Hardware Layer functions for Apci2032
56
57//DO
34c43922 58int i_APCI2032_ConfigDigitalOutput(struct comedi_device *dev, struct comedi_subdevice *s,
90035c08 59 struct comedi_insn *insn, unsigned int *data);
34c43922 60INT i_APCI2032_WriteDigitalOutput(struct comedi_device *dev, struct comedi_subdevice *s,
90035c08 61 struct comedi_insn *insn, unsigned int *data);
34c43922 62INT i_APCI2032_ReadDigitalOutput(struct comedi_device *dev, struct comedi_subdevice *s,
90035c08 63 struct comedi_insn *insn, unsigned int *data);
34c43922 64int i_APCI2032_ReadInterruptStatus(struct comedi_device *dev, struct comedi_subdevice *s,
90035c08 65 struct comedi_insn *insn, unsigned int *data);
c995fe94
ADG
66
67// TIMER
68// timer value is passed as u seconds
34c43922 69INT i_APCI2032_ConfigWatchdog(struct comedi_device *dev, struct comedi_subdevice *s,
90035c08 70 struct comedi_insn *insn, unsigned int *data);
34c43922 71int i_APCI2032_StartStopWriteWatchdog(struct comedi_device *dev, struct comedi_subdevice *s,
90035c08 72 struct comedi_insn *insn, unsigned int *data);
34c43922 73int i_APCI2032_ReadWatchdog(struct comedi_device *dev, struct comedi_subdevice *s,
90035c08 74 struct comedi_insn *insn, unsigned int *data);
c995fe94
ADG
75
76// Interrupt functions.....
77
78void v_APCI2032_Interrupt(int irq, void *d);
79
80//Reset functions
71b5f4f1 81int i_APCI2032_Reset(struct comedi_device *dev);
This page took 0.042942 seconds and 5 git commands to generate.