~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/sh/include/uapi/asm/ioctls.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2 #ifndef __ASM_SH_IOCTLS_H
  3 #define __ASM_SH_IOCTLS_H
  4 
  5 #include <asm/ioctl.h>
  6 
  7 #define FIOCLEX         _IO('f', 1)
  8 #define FIONCLEX        _IO('f', 2)
  9 #define FIOASYNC        _IOW('f', 125, int)
 10 #define FIONBIO         _IOW('f', 126, int)
 11 #define FIONREAD        _IOR('f', 127, int)
 12 #define TIOCINQ         FIONREAD
 13 #define FIOQSIZE        _IOR('f', 128, loff_t)
 14 
 15 #define TCGETS          0x5401
 16 #define TCSETS          0x5402
 17 #define TCSETSW         0x5403
 18 #define TCSETSF         0x5404
 19 
 20 #define TCGETA          0x80127417      /* _IOR('t', 23, struct termio) */
 21 #define TCSETA          0x40127418      /* _IOW('t', 24, struct termio) */
 22 #define TCSETAW         0x40127419      /* _IOW('t', 25, struct termio) */
 23 #define TCSETAF         0x4012741C      /* _IOW('t', 28, struct termio) */
 24 
 25 #define TCSBRK          _IO('t', 29)
 26 #define TCXONC          _IO('t', 30)
 27 #define TCFLSH          _IO('t', 31)
 28 
 29 #define TIOCSWINSZ      0x40087467      /* _IOW('t', 103, struct winsize) */
 30 #define TIOCGWINSZ      0x80087468      /* _IOR('t', 104, struct winsize) */
 31 #define TIOCSTART       _IO('t', 110)           /* start output, like ^Q */
 32 #define TIOCSTOP        _IO('t', 111)           /* stop output, like ^S */
 33 #define TIOCOUTQ        _IOR('t', 115, int)     /* output queue size */
 34 
 35 #define TIOCSPGRP       _IOW('t', 118, int)
 36 #define TIOCGPGRP       _IOR('t', 119, int)
 37 
 38 #define TIOCEXCL        _IO('T', 12) /* 0x540C */
 39 #define TIOCNXCL        _IO('T', 13) /* 0x540D */
 40 #define TIOCSCTTY       _IO('T', 14) /* 0x540E */
 41 
 42 #define TIOCSTI         _IOW('T', 18, char) /* 0x5412 */
 43 #define TIOCMGET        _IOR('T', 21, unsigned int) /* 0x5415 */
 44 #define TIOCMBIS        _IOW('T', 22, unsigned int) /* 0x5416 */
 45 #define TIOCMBIC        _IOW('T', 23, unsigned int) /* 0x5417 */
 46 #define TIOCMSET        _IOW('T', 24, unsigned int) /* 0x5418 */
 47 # define TIOCM_LE       0x001
 48 # define TIOCM_DTR      0x002
 49 # define TIOCM_RTS      0x004
 50 # define TIOCM_ST       0x008
 51 # define TIOCM_SR       0x010
 52 # define TIOCM_CTS      0x020
 53 # define TIOCM_CAR      0x040
 54 # define TIOCM_RNG      0x080
 55 # define TIOCM_DSR      0x100
 56 # define TIOCM_CD       TIOCM_CAR
 57 # define TIOCM_RI       TIOCM_RNG
 58 
 59 #define TIOCGSOFTCAR    _IOR('T', 25, unsigned int) /* 0x5419 */
 60 #define TIOCSSOFTCAR    _IOW('T', 26, unsigned int) /* 0x541A */
 61 #define TIOCLINUX       _IOW('T', 28, char) /* 0x541C */
 62 #define TIOCCONS        _IO('T', 29) /* 0x541D */
 63 #define TIOCGSERIAL     0x803C541E      /* _IOR('T', 30, struct serial_struct) 0x541E */
 64 #define TIOCSSERIAL     0x403C541F      /* _IOW('T', 31, struct serial_struct) 0x541F */
 65 #define TIOCPKT         _IOW('T', 32, int) /* 0x5420 */
 66 # define TIOCPKT_DATA            0
 67 # define TIOCPKT_FLUSHREAD       1
 68 # define TIOCPKT_FLUSHWRITE      2
 69 # define TIOCPKT_STOP            4
 70 # define TIOCPKT_START           8
 71 # define TIOCPKT_NOSTOP         16
 72 # define TIOCPKT_DOSTOP         32
 73 # define TIOCPKT_IOCTL          64
 74 
 75 
 76 #define TIOCNOTTY       _IO('T', 34) /* 0x5422 */
 77 #define TIOCSETD        _IOW('T', 35, int) /* 0x5423 */
 78 #define TIOCGETD        _IOR('T', 36, int) /* 0x5424 */
 79 #define TCSBRKP         _IOW('T', 37, int) /* 0x5425 */ /* Needed for POSIX tcsendbreak() */
 80 #define TIOCSBRK        _IO('T', 39) /* 0x5427 */ /* BSD compatibility */
 81 #define TIOCCBRK        _IO('T', 40) /* 0x5428 */ /* BSD compatibility */
 82 #define TIOCGSID        _IOR('T', 41, pid_t) /* 0x5429 */ /* Return the session ID of FD */
 83 #define TCGETS2         _IOR('T', 42, struct termios2)
 84 #define TCSETS2         _IOW('T', 43, struct termios2)
 85 #define TCSETSW2        _IOW('T', 44, struct termios2)
 86 #define TCSETSF2        _IOW('T', 45, struct termios2)
 87 #define TIOCGRS485      _IOR('T', 46, struct serial_rs485)
 88 #define TIOCSRS485      _IOWR('T', 47, struct serial_rs485)
 89 #define TIOCGPTN        _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */
 90 #define TIOCSPTLCK      _IOW('T',0x31, int)  /* Lock/unlock Pty */
 91 #define TIOCGDEV        _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */
 92 #define TIOCSIG         _IOW('T',0x36, int)  /* Generate signal on Pty slave */
 93 #define TIOCVHANGUP     _IO('T', 0x37)
 94 #define TIOCGPKT        _IOR('T', 0x38, int) /* Get packet mode state */
 95 #define TIOCGPTLCK      _IOR('T', 0x39, int) /* Get Pty lock state */
 96 #define TIOCGEXCL       _IOR('T', 0x40, int) /* Get exclusive mode state */
 97 #define TIOCGPTPEER     _IO('T', 0x41) /* Safely open the slave */
 98 #define TIOCGISO7816    _IOR('T', 0x42, struct serial_iso7816)
 99 #define TIOCSISO7816    _IOWR('T', 0x43, struct serial_iso7816)
100 
101 #define TIOCSERCONFIG   _IO('T', 83) /* 0x5453 */
102 #define TIOCSERGWILD    _IOR('T', 84,  int) /* 0x5454 */
103 #define TIOCSERSWILD    _IOW('T', 85,  int) /* 0x5455 */
104 #define TIOCGLCKTRMIOS  0x5456
105 #define TIOCSLCKTRMIOS  0x5457
106 #define TIOCSERGSTRUCT  0x80d85458      /* _IOR('T', 88, struct async_struct) 0x5458 */ /* For debugging only */
107 #define TIOCSERGETLSR   _IOR('T', 89, unsigned int) /* 0x5459 */ /* Get line status register */
108   /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
109 # define TIOCSER_TEMT    0x01   /* Transmitter physically empty */
110 #define TIOCSERGETMULTI 0x80A8545A      /* _IOR('T', 90, struct serial_multiport_struct) 0x545A */ /* Get multiport config */
111 #define TIOCSERSETMULTI 0x40A8545B      /* _IOW('T', 91, struct serial_multiport_struct) 0x545B */ /* Set multiport config */
112 
113 #define TIOCMIWAIT      _IO('T', 92) /* 0x545C */       /* wait for a change on serial input line(s) */
114 #define TIOCGICOUNT     0x545D  /* read serial port inline interrupt counts */
115 
116 #endif /* __ASM_SH_IOCTLS_H */
117 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php