ioctl.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #ifndef _ALPHA_IOCTL_H
  2. #define _ALPHA_IOCTL_H
  3. /*
  4. * The original linux ioctl numbering scheme was just a general
  5. * "anything goes" setup, where more or less random numbers were
  6. * assigned. Sorry, I was clueless when I started out on this.
  7. *
  8. * On the alpha, we'll try to clean it up a bit, using a more sane
  9. * ioctl numbering, and also trying to be compatible with OSF/1 in
  10. * the process. I'd like to clean it up for the i386 as well, but
  11. * it's so painful recognizing both the new and the old numbers..
  12. */
  13. #define _IOC_NRBITS 8
  14. #define _IOC_TYPEBITS 8
  15. #define _IOC_SIZEBITS 13
  16. #define _IOC_DIRBITS 3
  17. #define _IOC_NRMASK ((1 << _IOC_NRBITS)-1)
  18. #define _IOC_TYPEMASK ((1 << _IOC_TYPEBITS)-1)
  19. #define _IOC_SIZEMASK ((1 << _IOC_SIZEBITS)-1)
  20. #define _IOC_DIRMASK ((1 << _IOC_DIRBITS)-1)
  21. #define _IOC_NRSHIFT 0
  22. #define _IOC_TYPESHIFT (_IOC_NRSHIFT+_IOC_NRBITS)
  23. #define _IOC_SIZESHIFT (_IOC_TYPESHIFT+_IOC_TYPEBITS)
  24. #define _IOC_DIRSHIFT (_IOC_SIZESHIFT+_IOC_SIZEBITS)
  25. /*
  26. * Direction bits _IOC_NONE could be 0, but OSF/1 gives it a bit.
  27. * And this turns out useful to catch old ioctl numbers in header
  28. * files for us.
  29. */
  30. #define _IOC_NONE 1U
  31. #define _IOC_READ 2U
  32. #define _IOC_WRITE 4U
  33. #define _IOC(dir,type,nr,size) \
  34. ((unsigned int) \
  35. (((dir) << _IOC_DIRSHIFT) | \
  36. ((type) << _IOC_TYPESHIFT) | \
  37. ((nr) << _IOC_NRSHIFT) | \
  38. ((size) << _IOC_SIZESHIFT)))
  39. /* used to create numbers */
  40. #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
  41. #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
  42. #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
  43. #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
  44. /* used to decode them.. */
  45. #define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
  46. #define _IOC_TYPE(nr) (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
  47. #define _IOC_NR(nr) (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
  48. #define _IOC_SIZE(nr) (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
  49. /* ...and for the drivers/sound files... */
  50. #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT)
  51. #define IOC_OUT (_IOC_READ << _IOC_DIRSHIFT)
  52. #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
  53. #define IOCSIZE_MASK (_IOC_SIZEMASK << _IOC_SIZESHIFT)
  54. #define IOCSIZE_SHIFT (_IOC_SIZESHIFT)
  55. #endif /* _ALPHA_IOCTL_H */