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

Linux/Unix编程

开发平台:

Unix_Linux

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