ioctl.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Linux/PA-RISC Project (http://www.parisc-linux.org/)
  3. * Copyright (C) 1999,2003 Matthew Wilcox < willy at debian . org >
  4. * portions from "linux/ioctl.h for Linux" by H.H. Bergman.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #ifndef _ASM_PARISC_IOCTL_H
  21. #define _ASM_PARISC_IOCTL_H
  22. /* ioctl command encoding: 32 bits total, command in lower 16 bits,
  23. * size of the parameter structure in the lower 14 bits of the
  24. * upper 16 bits.
  25. * Encoding the size of the parameter structure in the ioctl request
  26. * is useful for catching programs compiled with old versions
  27. * and to avoid overwriting user space outside the user buffer area.
  28. * The highest 2 bits are reserved for indicating the ``access mode''.
  29. * NOTE: This limits the max parameter size to 16kB -1 !
  30. */
  31. #define _IOC_NRBITS 8
  32. #define _IOC_TYPEBITS 8
  33. #define _IOC_SIZEBITS 14
  34. #define _IOC_DIRBITS 2
  35. #define _IOC_NRMASK ((1 << _IOC_NRBITS)-1)
  36. #define _IOC_TYPEMASK ((1 << _IOC_TYPEBITS)-1)
  37. #define _IOC_SIZEMASK ((1 << _IOC_SIZEBITS)-1)
  38. #define _IOC_DIRMASK ((1 << _IOC_DIRBITS)-1)
  39. #define _IOC_NRSHIFT 0
  40. #define _IOC_TYPESHIFT (_IOC_NRSHIFT+_IOC_NRBITS)
  41. #define _IOC_SIZESHIFT (_IOC_TYPESHIFT+_IOC_TYPEBITS)
  42. #define _IOC_DIRSHIFT (_IOC_SIZESHIFT+_IOC_SIZEBITS)
  43. /*
  44. * Direction bits.
  45. */
  46. #define _IOC_NONE 0U
  47. #define _IOC_WRITE 2U
  48. #define _IOC_READ 1U
  49. #define _IOC(dir,type,nr,size) \
  50. (((dir) << _IOC_DIRSHIFT) | \
  51. ((type) << _IOC_TYPESHIFT) | \
  52. ((nr) << _IOC_NRSHIFT) | \
  53. ((size) << _IOC_SIZESHIFT))
  54. /* provoke compile error for invalid uses of size argument */
  55. extern unsigned int __invalid_size_argument_for_IOC;
  56. #define _IOC_TYPECHECK(t) \
  57. ((sizeof(t) == sizeof(t[1]) && \
  58. sizeof(t) < (1 << _IOC_SIZEBITS)) ? \
  59. sizeof(t) : __invalid_size_argument_for_IOC)
  60. /* used to create numbers */
  61. #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
  62. #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
  63. #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
  64. #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
  65. #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
  66. #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
  67. #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
  68. /* used to decode ioctl numbers.. */
  69. #define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
  70. #define _IOC_TYPE(nr) (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
  71. #define _IOC_NR(nr) (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
  72. #define _IOC_SIZE(nr) (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
  73. /* ...and for the drivers/sound files... */
  74. #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT)
  75. #define IOC_OUT (_IOC_READ << _IOC_DIRSHIFT)
  76. #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
  77. #define IOCSIZE_MASK (_IOC_SIZEMASK << _IOC_SIZESHIFT)
  78. #define IOCSIZE_SHIFT (_IOC_SIZESHIFT)
  79. #endif /* _ASM_PARISC_IOCTL_H */