ioctl.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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. /* used to create numbers */
  38. #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
  39. #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
  40. #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
  41. #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
  42. /* used to decode them.. */
  43. #define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
  44. #define _IOC_TYPE(nr) (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
  45. #define _IOC_NR(nr) (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
  46. #define _IOC_SIZE(nr) (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
  47. /* various drivers, such as the pcmcia stuff, need these... */
  48. #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT)
  49. #define IOC_OUT (_IOC_READ << _IOC_DIRSHIFT)
  50. #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
  51. #define IOCSIZE_MASK (_IOC_SIZEMASK << _IOC_SIZESHIFT)
  52. #define IOCSIZE_SHIFT (_IOC_SIZESHIFT)
  53. #endif /* _PPC64_IOCTL_H */