ioctl.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 1995, 96, 99, 2001 Ralf Baechle
  7. */
  8. #ifndef _ASM_IOCTL_H
  9. #define _ASM_IOCTL_H
  10. /*
  11. * The original linux ioctl numbering scheme was just a general
  12. * "anything goes" setup, where more or less random numbers were
  13. * assigned. Sorry, I was clueless when I started out on this.
  14. *
  15. * On the alpha, we'll try to clean it up a bit, using a more sane
  16. * ioctl numbering, and also trying to be compatible with OSF/1 in
  17. * the process. I'd like to clean it up for the i386 as well, but
  18. * it's so painful recognizing both the new and the old numbers..
  19. *
  20. * The same applies for for the MIPS ABI; in fact even the macros
  21. * from Linux/Alpha fit almost perfectly.
  22. */
  23. #define _IOC_NRBITS 8
  24. #define _IOC_TYPEBITS 8
  25. #define _IOC_SIZEBITS 13
  26. #define _IOC_DIRBITS 3
  27. #define _IOC_NRMASK ((1 << _IOC_NRBITS)-1)
  28. #define _IOC_TYPEMASK ((1 << _IOC_TYPEBITS)-1)
  29. #define _IOC_SIZEMASK ((1 << _IOC_SIZEBITS)-1)
  30. #define _IOC_DIRMASK ((1 << _IOC_DIRBITS)-1)
  31. #define _IOC_NRSHIFT 0
  32. #define _IOC_TYPESHIFT (_IOC_NRSHIFT+_IOC_NRBITS)
  33. #define _IOC_SIZESHIFT (_IOC_TYPESHIFT+_IOC_TYPEBITS)
  34. #define _IOC_DIRSHIFT (_IOC_SIZESHIFT+_IOC_SIZEBITS)
  35. /*
  36. * Direction bits _IOC_NONE could be 0, but OSF/1 gives it a bit.
  37. * And this turns out useful to catch old ioctl numbers in header
  38. * files for us.
  39. */
  40. #define _IOC_NONE 1U
  41. #define _IOC_READ 2U
  42. #define _IOC_WRITE 4U
  43. /*
  44. * The following are included for compatibility
  45. */
  46. #define _IOC_VOID 0x20000000
  47. #define _IOC_OUT 0x40000000
  48. #define _IOC_IN 0x80000000
  49. #define _IOC_INOUT (IOC_IN|IOC_OUT)
  50. #define _IOC(dir, type, nr, size) \
  51. (((dir) << _IOC_DIRSHIFT) | \
  52. ((type) << _IOC_TYPESHIFT) | \
  53. ((nr) << _IOC_NRSHIFT) | \
  54. ((size) << _IOC_SIZESHIFT))
  55. #ifdef __KERNEL__
  56. /* provoke compile error for invalid uses of size argument */
  57. extern unsigned int __invalid_size_argument_for_IOC;
  58. #define _IOC_TYPECHECK(t) \
  59. ((sizeof(t) == sizeof(t[1]) && \
  60. sizeof(t) < (1 << _IOC_SIZEBITS)) ? \
  61. sizeof(t) : __invalid_size_argument_for_IOC)
  62. #else
  63. #define _IOC_TYPECHECK(t) (sizeof(t))
  64. #endif
  65. /* used to create numbers */
  66. #define _IO(type, nr) _IOC(_IOC_NONE, (type), (nr), 0)
  67. #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size)))
  68. #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
  69. #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
  70. #define _IOR_BAD(type, nr, size) _IOC(_IOC_READ, (type), (nr), sizeof(size))
  71. #define _IOW_BAD(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), sizeof(size))
  72. #define _IOWR_BAD(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), sizeof(size))
  73. /* used to decode them.. */
  74. #define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
  75. #define _IOC_TYPE(nr) (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
  76. #define _IOC_NR(nr) (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
  77. #define _IOC_SIZE(nr) (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
  78. /* ...and for the drivers/sound files... */
  79. #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT)
  80. #define IOC_OUT (_IOC_READ << _IOC_DIRSHIFT)
  81. #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
  82. #define IOCSIZE_MASK (_IOC_SIZEMASK << _IOC_SIZESHIFT)
  83. #define IOCSIZE_SHIFT (_IOC_SIZESHIFT)
  84. #endif /* _ASM_IOCTL_H */