1 /* $Id$
2 *
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
5 * for more details.
6 *
7 * Copyright (C) 1995, 1996, 1999 by Ralf Baechle
8 */
9 #ifndef _ASM_IOCTL_H
10 #define _ASM_IOCTL_H
11
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
26 #define _IOC_NRBITS 8
27 #define _IOC_TYPEBITS 8
28 #define _IOC_SIZEBITS 13
29 #define _IOC_DIRBITS 3
30
31 #define _IOC_NRMASK ((1 << _IOC_NRBITS)-1)
32 #define _IOC_TYPEMASK ((1 << _IOC_TYPEBITS)-1)
33 #define _IOC_SIZEMASK ((1 << _IOC_SIZEBITS)-1)
34 #define _IOC_DIRMASK ((1 << _IOC_DIRBITS)-1)
35
36 #define _IOC_NRSHIFT 0
37 #define _IOC_TYPESHIFT (_IOC_NRSHIFT+_IOC_NRBITS)
38 #define _IOC_SIZESHIFT (_IOC_TYPESHIFT+_IOC_TYPEBITS)
39 #define _IOC_DIRSHIFT (_IOC_SIZESHIFT+_IOC_SIZEBITS)
40
41 /*
42 * We to additionally limit parameters to a maximum 255 bytes.
43 */
44 #define _IOC_SLMASK 0xff
45
46 /*
47 * Direction bits _IOC_NONE could be 0, but OSF/1 gives it a bit.
48 * And this turns out useful to catch old ioctl numbers in header
49 * files for us.
50 */
51 #define _IOC_NONE 1U
52 #define _IOC_READ 2U
53 #define _IOC_WRITE 4U
54
55 /*
56 * The following are included for compatibility
57 */
58 #define _IOC_VOID 0x20000000
59 #define _IOC_OUT 0x40000000
60 #define _IOC_IN 0x80000000
61 #define _IOC_INOUT (IOC_IN|IOC_OUT)
62
63 #define _IOC(dir,type,nr,size) \
64 (((dir) << _IOC_DIRSHIFT) | \
65 ((type) << _IOC_TYPESHIFT) | \
66 ((nr) << _IOC_NRSHIFT) | \
67 (((size) & _IOC_SLMASK) << _IOC_SIZESHIFT))
68
69 /* used to create numbers */
70 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
71 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
72 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
73 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
74
75 /* used to decode them.. */
76 #define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
77 #define _IOC_TYPE(nr) (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
78 #define _IOC_NR(nr) (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
79 #define _IOC_SIZE(nr) (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
80
81 /* ...and for the drivers/sound files... */
82
83 #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT)
84 #define IOC_OUT (_IOC_READ << _IOC_DIRSHIFT)
85 #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
86 #define IOCSIZE_MASK (_IOC_SIZEMASK << _IOC_SIZESHIFT)
87 #define IOCSIZE_SHIFT (_IOC_SIZESHIFT)
88
89 #endif /* _ASM_IOCTL_H */
90
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.