blob: dbef708ab3b4ef250edf9be6c22cfe26aa112fcc [file] [log] [blame]
Greg Kroah-Hartmane2be04c2017-11-01 15:09:13 +01001/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
Jiri Slabycef2cf02007-05-08 00:31:45 -07002/*
3 * Copyright (C) 2005-2007 Jiri Slaby <jirislaby@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
10
11#ifndef __PHANTOM_H
12#define __PHANTOM_H
13
Jaswinder Singh Rajput00bfdda2009-01-15 13:51:26 -080014#include <linux/types.h>
Jiri Slabycef2cf02007-05-08 00:31:45 -070015
16/* PHN_(G/S)ET_REG param */
17struct phm_reg {
18 __u32 reg;
19 __u32 value;
20};
21
22/* PHN_(G/S)ET_REGS param */
23struct phm_regs {
24 __u32 count;
25 __u32 mask;
26 __u32 values[8];
27};
28
29#define PH_IOC_MAGIC 'p'
30#define PHN_GET_REG _IOWR(PH_IOC_MAGIC, 0, struct phm_reg *)
jan sonnek6e5e8c52008-04-29 00:59:15 -070031#define PHN_SET_REG _IOW(PH_IOC_MAGIC, 1, struct phm_reg *)
Jiri Slabycef2cf02007-05-08 00:31:45 -070032#define PHN_GET_REGS _IOWR(PH_IOC_MAGIC, 2, struct phm_regs *)
jan sonnek6e5e8c52008-04-29 00:59:15 -070033#define PHN_SET_REGS _IOW(PH_IOC_MAGIC, 3, struct phm_regs *)
Jiri Slabybc552f72007-10-18 23:40:24 -070034/* this ioctl tells the driver, that the caller is not OpenHaptics and might
35 * use improved registers update (no more phantom switchoffs when using
36 * libphantom) */
jan sonnek6e5e8c52008-04-29 00:59:15 -070037#define PHN_NOT_OH _IO(PH_IOC_MAGIC, 4)
Jiri Slaby7e4e8e62008-04-29 00:59:13 -070038#define PHN_GETREG _IOWR(PH_IOC_MAGIC, 5, struct phm_reg)
39#define PHN_SETREG _IOW(PH_IOC_MAGIC, 6, struct phm_reg)
40#define PHN_GETREGS _IOWR(PH_IOC_MAGIC, 7, struct phm_regs)
41#define PHN_SETREGS _IOW(PH_IOC_MAGIC, 8, struct phm_regs)
Jiri Slabycef2cf02007-05-08 00:31:45 -070042
43#define PHN_CONTROL 0x6 /* control byte in iaddr space */
44#define PHN_CTL_AMP 0x1 /* switch after torques change */
45#define PHN_CTL_BUT 0x2 /* is button switched */
46#define PHN_CTL_IRQ 0x10 /* is irq enabled */
47
48#define PHN_ZERO_FORCE 2048 /* zero torque on motor */
49
50#endif