diff options
| author | Jiri Slaby <jirislaby@gmail.com> | 2007-05-08 03:31:45 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:14 -0400 |
| commit | cef2cf07273d12ac3453d2baff096423f17b7403 (patch) | |
| tree | 807ce95b91d1a09f449d61301f1148c85d7818db /include/linux | |
| parent | 6f7f02e78a75a09195d963e0392b195bc2d55c5c (diff) | |
Misc: add sensable phantom driver
Add sensable phantom driver
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/Kbuild | 1 | ||||
| -rw-r--r-- | include/linux/phantom.h | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index d61983db41..a124c32f55 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
| @@ -121,6 +121,7 @@ header-y += pci_regs.h | |||
| 121 | header-y += personality.h | 121 | header-y += personality.h |
| 122 | header-y += pfkeyv2.h | 122 | header-y += pfkeyv2.h |
| 123 | header-y += pg.h | 123 | header-y += pg.h |
| 124 | header-y += phantom.h | ||
| 124 | header-y += pkt_cls.h | 125 | header-y += pkt_cls.h |
| 125 | header-y += pkt_sched.h | 126 | header-y += pkt_sched.h |
| 126 | header-y += posix_types.h | 127 | header-y += posix_types.h |
diff --git a/include/linux/phantom.h b/include/linux/phantom.h new file mode 100644 index 0000000000..d3ebbfae69 --- /dev/null +++ b/include/linux/phantom.h | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2005-2007 Jiri Slaby <jirislaby@gmail.com> | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __PHANTOM_H | ||
| 11 | #define __PHANTOM_H | ||
| 12 | |||
| 13 | #include <asm/types.h> | ||
| 14 | |||
| 15 | /* PHN_(G/S)ET_REG param */ | ||
| 16 | struct phm_reg { | ||
| 17 | __u32 reg; | ||
| 18 | __u32 value; | ||
| 19 | }; | ||
| 20 | |||
| 21 | /* PHN_(G/S)ET_REGS param */ | ||
| 22 | struct phm_regs { | ||
| 23 | __u32 count; | ||
| 24 | __u32 mask; | ||
| 25 | __u32 values[8]; | ||
| 26 | }; | ||
| 27 | |||
| 28 | #define PH_IOC_MAGIC 'p' | ||
| 29 | #define PHN_GET_REG _IOWR(PH_IOC_MAGIC, 0, struct phm_reg *) | ||
| 30 | #define PHN_SET_REG _IOW (PH_IOC_MAGIC, 1, struct phm_reg *) | ||
| 31 | #define PHN_GET_REGS _IOWR(PH_IOC_MAGIC, 2, struct phm_regs *) | ||
| 32 | #define PHN_SET_REGS _IOW (PH_IOC_MAGIC, 3, struct phm_regs *) | ||
| 33 | #define PH_IOC_MAXNR 3 | ||
| 34 | |||
| 35 | #define PHN_CONTROL 0x6 /* control byte in iaddr space */ | ||
| 36 | #define PHN_CTL_AMP 0x1 /* switch after torques change */ | ||
| 37 | #define PHN_CTL_BUT 0x2 /* is button switched */ | ||
| 38 | #define PHN_CTL_IRQ 0x10 /* is irq enabled */ | ||
| 39 | |||
| 40 | #define PHN_ZERO_FORCE 2048 /* zero torque on motor */ | ||
| 41 | |||
| 42 | #endif | ||
