xref: /linux/include/uapi/linux/atmioc.h (revision 4b4193256c8d3bc3a5397b5cd9494c2ad386317d)
16f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells /* atmioc.h - ranges for ATM-related ioctl numbers */
3607ca46eSDavid Howells 
4607ca46eSDavid Howells /* Written 1995-1999 by Werner Almesberger, EPFL LRC/ICA */
5607ca46eSDavid Howells 
6607ca46eSDavid Howells 
7607ca46eSDavid Howells /*
8*ed757328SAlexander A. Klimov  * See https://icawww1.epfl.ch/linux-atm/magic.html for the complete list of
9607ca46eSDavid Howells  * "magic" ioctl numbers.
10607ca46eSDavid Howells  */
11607ca46eSDavid Howells 
12607ca46eSDavid Howells 
13607ca46eSDavid Howells #ifndef _LINUX_ATMIOC_H
14607ca46eSDavid Howells #define _LINUX_ATMIOC_H
15607ca46eSDavid Howells 
16607ca46eSDavid Howells #include <asm/ioctl.h>
17607ca46eSDavid Howells 		/* everybody including atmioc.h will also need _IO{,R,W,WR} */
18607ca46eSDavid Howells 
19607ca46eSDavid Howells #define ATMIOC_PHYCOM	  0x00 /* PHY device common ioctls, globally unique */
20607ca46eSDavid Howells #define ATMIOC_PHYCOM_END 0x0f
21607ca46eSDavid Howells #define ATMIOC_PHYTYP	  0x10 /* PHY dev type ioctls, unique per PHY type */
22607ca46eSDavid Howells #define ATMIOC_PHYTYP_END 0x2f
23607ca46eSDavid Howells #define ATMIOC_PHYPRV	  0x30 /* PHY dev private ioctls, unique per driver */
24607ca46eSDavid Howells #define ATMIOC_PHYPRV_END 0x4f
25607ca46eSDavid Howells #define ATMIOC_SARCOM	  0x50 /* SAR device common ioctls, globally unique */
26607ca46eSDavid Howells #define ATMIOC_SARCOM_END 0x50
27607ca46eSDavid Howells #define ATMIOC_SARPRV	  0x60 /* SAR dev private ioctls, unique per driver */
28607ca46eSDavid Howells #define ATMIOC_SARPRV_END 0x7f
29607ca46eSDavid Howells #define ATMIOC_ITF	  0x80 /* Interface ioctls, globally unique */
30607ca46eSDavid Howells #define ATMIOC_ITF_END	  0x8f
31607ca46eSDavid Howells #define ATMIOC_BACKEND	  0x90 /* ATM generic backend ioctls, u. per backend */
32607ca46eSDavid Howells #define ATMIOC_BACKEND_END 0xaf
33607ca46eSDavid Howells /* 0xb0-0xbf: Reserved for future use */
34607ca46eSDavid Howells #define ATMIOC_AREQUIPA	  0xc0 /* Application requested IP over ATM, glob. u. */
35607ca46eSDavid Howells #define ATMIOC_LANE	  0xd0 /* LAN Emulation, globally unique */
36607ca46eSDavid Howells #define ATMIOC_MPOA       0xd8 /* MPOA, globally unique */
37607ca46eSDavid Howells #define	ATMIOC_CLIP	  0xe0 /* Classical IP over ATM control, globally u. */
38607ca46eSDavid Howells #define	ATMIOC_CLIP_END	  0xef
39607ca46eSDavid Howells #define	ATMIOC_SPECIAL	  0xf0 /* Special-purpose controls, globally unique */
40607ca46eSDavid Howells #define	ATMIOC_SPECIAL_END 0xff
41607ca46eSDavid Howells 
42607ca46eSDavid Howells #endif
43