phantom.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. #ifndef __PHANTOM_H
  11. #define __PHANTOM_H
  12. #include <linux/types.h>
  13. /* PHN_(G/S)ET_REG param */
  14. struct phm_reg {
  15. __u32 reg;
  16. __u32 value;
  17. };
  18. /* PHN_(G/S)ET_REGS param */
  19. struct phm_regs {
  20. __u32 count;
  21. __u32 mask;
  22. __u32 values[8];
  23. };
  24. #define PH_IOC_MAGIC 'p'
  25. #define PHN_GET_REG _IOWR(PH_IOC_MAGIC, 0, struct phm_reg *)
  26. #define PHN_SET_REG _IOW(PH_IOC_MAGIC, 1, struct phm_reg *)
  27. #define PHN_GET_REGS _IOWR(PH_IOC_MAGIC, 2, struct phm_regs *)
  28. #define PHN_SET_REGS _IOW(PH_IOC_MAGIC, 3, struct phm_regs *)
  29. /* this ioctl tells the driver, that the caller is not OpenHaptics and might
  30. * use improved registers update (no more phantom switchoffs when using
  31. * libphantom) */
  32. #define PHN_NOT_OH _IO(PH_IOC_MAGIC, 4)
  33. #define PHN_GETREG _IOWR(PH_IOC_MAGIC, 5, struct phm_reg)
  34. #define PHN_SETREG _IOW(PH_IOC_MAGIC, 6, struct phm_reg)
  35. #define PHN_GETREGS _IOWR(PH_IOC_MAGIC, 7, struct phm_regs)
  36. #define PHN_SETREGS _IOW(PH_IOC_MAGIC, 8, struct phm_regs)
  37. #define PHN_CONTROL 0x6 /* control byte in iaddr space */
  38. #define PHN_CTL_AMP 0x1 /* switch after torques change */
  39. #define PHN_CTL_BUT 0x2 /* is button switched */
  40. #define PHN_CTL_IRQ 0x10 /* is irq enabled */
  41. #define PHN_ZERO_FORCE 2048 /* zero torque on motor */
  42. #endif