Path: blob/master/arch/xtensa/include/asm/ioctls.h
15126 views
/*1* include/asm-xtensa/ioctls.h2*3* This file is subject to the terms and conditions of the GNU General Public4* License. See the file "COPYING" in the main directory of this archive5* for more details.6*7* Copyright (C) 2003 - 2005 Tensilica Inc.8*9* Derived from "include/asm-i386/ioctls.h"10*/1112#ifndef _XTENSA_IOCTLS_H13#define _XTENSA_IOCTLS_H1415#include <asm/ioctl.h>1617#define FIOCLEX _IO('f', 1)18#define FIONCLEX _IO('f', 2)19#define FIOASYNC _IOW('f', 125, int)20#define FIONBIO _IOW('f', 126, int)21#define FIONREAD _IOR('f', 127, int)22#define TIOCINQ FIONREAD23#define FIOQSIZE _IOR('f', 128, loff_t)2425#define TCGETS 0x540126#define TCSETS 0x540227#define TCSETSW 0x540328#define TCSETSF 0x54042930#define TCGETA _IOR('t', 23, struct termio)31#define TCSETA _IOW('t', 24, struct termio)32#define TCSETAW _IOW('t', 25, struct termio)33#define TCSETAF _IOW('t', 28, struct termio)3435#define TCSBRK _IO('t', 29)36#define TCXONC _IO('t', 30)37#define TCFLSH _IO('t', 31)3839#define TIOCSWINSZ _IOW('t', 103, struct winsize)40#define TIOCGWINSZ _IOR('t', 104, struct winsize)41#define TIOCSTART _IO('t', 110) /* start output, like ^Q */42#define TIOCSTOP _IO('t', 111) /* stop output, like ^S */43#define TIOCOUTQ _IOR('t', 115, int) /* output queue size */4445#define TIOCSPGRP _IOW('t', 118, int)46#define TIOCGPGRP _IOR('t', 119, int)4748#define TIOCEXCL _IO('T', 12)49#define TIOCNXCL _IO('T', 13)50#define TIOCSCTTY _IO('T', 14)5152#define TIOCSTI _IOW('T', 18, char)53#define TIOCMGET _IOR('T', 21, unsigned int)54#define TIOCMBIS _IOW('T', 22, unsigned int)55#define TIOCMBIC _IOW('T', 23, unsigned int)56#define TIOCMSET _IOW('T', 24, unsigned int)57# define TIOCM_LE 0x00158# define TIOCM_DTR 0x00259# define TIOCM_RTS 0x00460# define TIOCM_ST 0x00861# define TIOCM_SR 0x01062# define TIOCM_CTS 0x02063# define TIOCM_CAR 0x04064# define TIOCM_RNG 0x08065# define TIOCM_DSR 0x10066# define TIOCM_CD TIOCM_CAR67# define TIOCM_RI TIOCM_RNG6869#define TIOCGSOFTCAR _IOR('T', 25, unsigned int)70#define TIOCSSOFTCAR _IOW('T', 26, unsigned int)71#define TIOCLINUX _IOW('T', 28, char)72#define TIOCCONS _IO('T', 29)73#define TIOCGSERIAL _IOR('T', 30, struct serial_struct)74#define TIOCSSERIAL _IOW('T', 31, struct serial_struct)75#define TIOCPKT _IOW('T', 32, int)76# define TIOCPKT_DATA 077# define TIOCPKT_FLUSHREAD 178# define TIOCPKT_FLUSHWRITE 279# define TIOCPKT_STOP 480# define TIOCPKT_START 881# define TIOCPKT_NOSTOP 1682# define TIOCPKT_DOSTOP 3283# define TIOCPKT_IOCTL 64848586#define TIOCNOTTY _IO('T', 34)87#define TIOCSETD _IOW('T', 35, int)88#define TIOCGETD _IOR('T', 36, int)89#define TCSBRKP _IOW('T', 37, int) /* Needed for POSIX tcsendbreak()*/90#define TIOCTTYGSTRUCT _IOR('T', 38, struct tty_struct) /* For debugging only*/91#define TIOCSBRK _IO('T', 39) /* BSD compatibility */92#define TIOCCBRK _IO('T', 40) /* BSD compatibility */93#define TIOCGSID _IOR('T', 41, pid_t) /* Return the session ID of FD*/94#define TCGETS2 _IOR('T', 42, struct termios2)95#define TCSETS2 _IOW('T', 43, struct termios2)96#define TCSETSW2 _IOW('T', 44, struct termios2)97#define TCSETSF2 _IOW('T', 45, struct termios2)98#define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */99#define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */100#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */101#define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */102#define TIOCVHANGUP _IO('T', 0x37)103104#define TIOCSERCONFIG _IO('T', 83)105#define TIOCSERGWILD _IOR('T', 84, int)106#define TIOCSERSWILD _IOW('T', 85, int)107#define TIOCGLCKTRMIOS 0x5456108#define TIOCSLCKTRMIOS 0x5457109#define TIOCSERGSTRUCT 0x5458 /* For debugging only */110#define TIOCSERGETLSR _IOR('T', 89, unsigned int) /* Get line status reg. */111/* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */112# define TIOCSER_TEMT 0x01 /* Transmitter physically empty */113#define TIOCSERGETMULTI _IOR('T', 90, struct serial_multiport_struct) /* Get multiport config */114#define TIOCSERSETMULTI _IOW('T', 91, struct serial_multiport_struct) /* Set multiport config */115116#define TIOCMIWAIT _IO('T', 92) /* wait for a change on serial input line(s) */117#define TIOCGICOUNT 0x545D /* read serial port inline interrupt counts */118119#endif /* _XTENSA_IOCTLS_H */120121122