~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/uapi/linux/phantom.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
  2 /*
  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 
 14 #include <linux/types.h>
 15 
 16 /* PHN_(G/S)ET_REG param */
 17 struct phm_reg {
 18         __u32 reg;
 19         __u32 value;
 20 };
 21 
 22 /* PHN_(G/S)ET_REGS param */
 23 struct 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 *)
 31 #define PHN_SET_REG             _IOW(PH_IOC_MAGIC, 1, struct phm_reg *)
 32 #define PHN_GET_REGS            _IOWR(PH_IOC_MAGIC, 2, struct phm_regs *)
 33 #define PHN_SET_REGS            _IOW(PH_IOC_MAGIC, 3, struct phm_regs *)
 34 /* 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) */
 37 #define PHN_NOT_OH              _IO(PH_IOC_MAGIC, 4)
 38 #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)
 42 
 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
 51 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php