ioctl.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #ifndef _PPC64_IOCTL_H
  2. #define _PPC64_IOCTL_H
  3. /*
  4. * This was copied from the alpha as it's a bit cleaner there.
  5. * -- Cort
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #define _IOC_NRBITS 8
  13. #define _IOC_TYPEBITS 8
  14. #define _IOC_SIZEBITS 13
  15. #define _IOC_DIRBITS 3
  16. #define _IOC_NRMASK ((1 << _IOC_NRBITS)-1)
  17. #define _IOC_TYPEMASK ((1 << _IOC_TYPEBITS)-1)
  18. #define _IOC_SIZEMASK ((1 << _IOC_SIZEBITS)-1)
  19. #define _IOC_DIRMASK ((1 << _IOC_DIRBITS)-1)
  20. #define _IOC_NRSHIFT 0
  21. #define _IOC_TYPESHIFT (_IOC_NRSHIFT+_IOC_NRBITS)
  22. #define _IOC_SIZESHIFT (_IOC_TYPESHIFT+_IOC_TYPEBITS)
  23. #define _IOC_DIRSHIFT (_IOC_SIZESHIFT+_IOC_SIZEBITS)
  24. /*
  25. * Direction bits _IOC_NONE could be 0, but OSF/1 gives it a bit.
  26. * And this turns out useful to catch old ioctl numbers in header
  27. * files for us.
  28. */
  29. #define _IOC_NONE 1U
  30. #define _IOC_READ 2U
  31. #define _IOC_WRITE 4U
  32. #define _IOC(dir,type,nr,size) \
  33. (((dir) << _IOC_DIRSHIFT) | \
  34. ((type) << _IOC_TYPESHIFT) | \
  35. ((nr) << _IOC_NRSHIFT) | \
  36. ((size) << _IOC_SIZESHIFT))
  37. /* provoke compile error for invalid uses of size argument */
  38. extern unsigned int __invalid_size_argument_for_IOC;
  39. #define _IOC_TYPECHECK(t) \
  40. ((sizeof(t) == sizeof(t[1]) && \
  41. sizeof(t) < (1 << _IOC_SIZEBITS)) ? \
  42. sizeof(t) : __invalid_size_argument_for_IOC)
  43. /* used to create numbers */
  44. #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
  45. #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
  46. #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
  47. #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
  48. #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
  49. #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
  50. #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
  51. /* used to decode them.. */
  52. #define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
  53. #define _IOC_TYPE(nr) (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
  54. #define _IOC_NR(nr) (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
  55. #define _IOC_SIZE(nr) (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
  56. /* various drivers, such as the pcmcia stuff, need these... */
  57. #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT)
  58. #define IOC_OUT (_IOC_READ << _IOC_DIRSHIFT)
  59. #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
  60. #define IOCSIZE_MASK (_IOC_SIZEMASK << _IOC_SIZESHIFT)
  61. #define IOCSIZE_SHIFT (_IOC_SIZESHIFT)
  62. #endif /* _PPC64_IOCTL_H */