OSDN Git Service

staging: comedi: s526: define the timer control register and bits
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 17 Aug 2015 23:58:12 +0000 (16:58 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Sep 2015 01:24:19 +0000 (18:24 -0700)
Define this register and it's bits so that we can possibly support
it.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/s526.c

index c011c70..e329c04 100644 (file)
 #define S526_NUM_PORTS 27
 
 /* registers */
-#define REG_TCR 0x00
+#define S526_TIMER_REG         0x00
+#define S526_TIMER_LOAD(x)     (((x) & 0xff) << 8)
+#define S526_TIMER_MODE                ((x) << 1)
+#define S526_TIMER_MANUAL      S526_TIMER_MODE(0)
+#define S526_TIMER_AUTO                S526_TIMER_MODE(1)
+#define S526_TIMER_RESTART     BIT(0)
 #define REG_WDC 0x02
 #define REG_DAC 0x04
 #define REG_ADC 0x06