hwdrv_apci2032.h revision 90035c0886b256d75bced13b3b3cea5234aff136
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 */
17
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
58int i_APCI2032_ConfigDigitalOutput(struct comedi_device *dev, struct comedi_subdevice *s,
59				   struct comedi_insn *insn, unsigned int *data);
60INT i_APCI2032_WriteDigitalOutput(struct comedi_device *dev, struct comedi_subdevice *s,
61				  struct comedi_insn *insn, unsigned int *data);
62INT i_APCI2032_ReadDigitalOutput(struct comedi_device *dev, struct comedi_subdevice *s,
63				 struct comedi_insn *insn, unsigned int *data);
64int i_APCI2032_ReadInterruptStatus(struct comedi_device *dev, struct comedi_subdevice *s,
65				   struct comedi_insn *insn, unsigned int *data);
66
67// TIMER
68// timer value is passed as u seconds
69INT i_APCI2032_ConfigWatchdog(struct comedi_device *dev, struct comedi_subdevice *s,
70			      struct comedi_insn *insn, unsigned int *data);
71int i_APCI2032_StartStopWriteWatchdog(struct comedi_device *dev, struct comedi_subdevice *s,
72				      struct comedi_insn *insn, unsigned int *data);
73int i_APCI2032_ReadWatchdog(struct comedi_device *dev, struct comedi_subdevice *s,
74			    struct comedi_insn *insn, unsigned int *data);
75
76// Interrupt functions.....
77
78void v_APCI2032_Interrupt(int irq, void *d);
79
80//Reset functions
81int i_APCI2032_Reset(struct comedi_device *dev);
82