16f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 254579826SDavid Howells #ifndef _UAPI_SPARC_TERMBITS_H 354579826SDavid Howells #define _UAPI_SPARC_TERMBITS_H 454579826SDavid Howells 50b46ac44SIlpo Järvinen #include <asm-generic/termbits-common.h> 654579826SDavid Howells 754579826SDavid Howells #if defined(__sparc__) && defined(__arch64__) 854579826SDavid Howells typedef unsigned int tcflag_t; 954579826SDavid Howells #else 1054579826SDavid Howells typedef unsigned long tcflag_t; 1154579826SDavid Howells #endif 1254579826SDavid Howells 1354579826SDavid Howells #define NCCS 17 1454579826SDavid Howells struct termios { 1554579826SDavid Howells tcflag_t c_iflag; /* input mode flags */ 1654579826SDavid Howells tcflag_t c_oflag; /* output mode flags */ 1754579826SDavid Howells tcflag_t c_cflag; /* control mode flags */ 1854579826SDavid Howells tcflag_t c_lflag; /* local mode flags */ 1954579826SDavid Howells cc_t c_line; /* line discipline */ 2054579826SDavid Howells #ifndef __KERNEL__ 2154579826SDavid Howells cc_t c_cc[NCCS]; /* control characters */ 2254579826SDavid Howells #else 2354579826SDavid Howells cc_t c_cc[NCCS+2]; /* kernel needs 2 more to hold vmin/vtime */ 2454579826SDavid Howells #define SIZEOF_USER_TERMIOS sizeof (struct termios) - (2*sizeof (cc_t)) 2554579826SDavid Howells #endif 2654579826SDavid Howells }; 2754579826SDavid Howells 2854579826SDavid Howells struct termios2 { 2954579826SDavid Howells tcflag_t c_iflag; /* input mode flags */ 3054579826SDavid Howells tcflag_t c_oflag; /* output mode flags */ 3154579826SDavid Howells tcflag_t c_cflag; /* control mode flags */ 3254579826SDavid Howells tcflag_t c_lflag; /* local mode flags */ 3354579826SDavid Howells cc_t c_line; /* line discipline */ 3454579826SDavid Howells cc_t c_cc[NCCS+2]; /* control characters */ 3554579826SDavid Howells speed_t c_ispeed; /* input speed */ 3654579826SDavid Howells speed_t c_ospeed; /* output speed */ 3754579826SDavid Howells }; 3854579826SDavid Howells 3954579826SDavid Howells struct ktermios { 4054579826SDavid Howells tcflag_t c_iflag; /* input mode flags */ 4154579826SDavid Howells tcflag_t c_oflag; /* output mode flags */ 4254579826SDavid Howells tcflag_t c_cflag; /* control mode flags */ 4354579826SDavid Howells tcflag_t c_lflag; /* local mode flags */ 4454579826SDavid Howells cc_t c_line; /* line discipline */ 4554579826SDavid Howells cc_t c_cc[NCCS+2]; /* control characters */ 4654579826SDavid Howells speed_t c_ispeed; /* input speed */ 4754579826SDavid Howells speed_t c_ospeed; /* output speed */ 4854579826SDavid Howells }; 4954579826SDavid Howells 5054579826SDavid Howells /* c_cc characters */ 5154579826SDavid Howells #define VINTR 0 5254579826SDavid Howells #define VQUIT 1 5354579826SDavid Howells #define VERASE 2 5454579826SDavid Howells #define VKILL 3 5554579826SDavid Howells #define VEOF 4 5654579826SDavid Howells #define VEOL 5 5754579826SDavid Howells #define VEOL2 6 5854579826SDavid Howells #define VSWTC 7 5954579826SDavid Howells #define VSTART 8 6054579826SDavid Howells #define VSTOP 9 6154579826SDavid Howells 6254579826SDavid Howells #define VSUSP 10 6354579826SDavid Howells #define VDSUSP 11 /* SunOS POSIX nicety I do believe... */ 6454579826SDavid Howells #define VREPRINT 12 6554579826SDavid Howells #define VDISCARD 13 6654579826SDavid Howells #define VWERASE 14 6754579826SDavid Howells #define VLNEXT 15 6854579826SDavid Howells 6954579826SDavid Howells /* Kernel keeps vmin/vtime separated, user apps assume vmin/vtime is 7054579826SDavid Howells * shared with eof/eol 7154579826SDavid Howells */ 7254579826SDavid Howells #ifndef __KERNEL__ 7354579826SDavid Howells #define VMIN VEOF 7454579826SDavid Howells #define VTIME VEOL 7554579826SDavid Howells #endif 7654579826SDavid Howells 7754579826SDavid Howells /* c_iflag bits */ 78*c9b34088SIlpo Järvinen #define IUCLC 0x0200 79*c9b34088SIlpo Järvinen #define IXON 0x0400 80*c9b34088SIlpo Järvinen #define IXOFF 0x1000 81*c9b34088SIlpo Järvinen #define IMAXBEL 0x2000 82*c9b34088SIlpo Järvinen #define IUTF8 0x4000 8354579826SDavid Howells 8454579826SDavid Howells /* c_oflag bits */ 85*c9b34088SIlpo Järvinen #define OLCUC 0x00002 86*c9b34088SIlpo Järvinen #define ONLCR 0x00004 87*c9b34088SIlpo Järvinen #define NLDLY 0x00100 88*c9b34088SIlpo Järvinen #define NL0 0x00000 89*c9b34088SIlpo Järvinen #define NL1 0x00100 90*c9b34088SIlpo Järvinen #define CRDLY 0x00600 91*c9b34088SIlpo Järvinen #define CR0 0x00000 92*c9b34088SIlpo Järvinen #define CR1 0x00200 93*c9b34088SIlpo Järvinen #define CR2 0x00400 94*c9b34088SIlpo Järvinen #define CR3 0x00600 95*c9b34088SIlpo Järvinen #define TABDLY 0x01800 96*c9b34088SIlpo Järvinen #define TAB0 0x00000 97*c9b34088SIlpo Järvinen #define TAB1 0x00800 98*c9b34088SIlpo Järvinen #define TAB2 0x01000 99*c9b34088SIlpo Järvinen #define TAB3 0x01800 100*c9b34088SIlpo Järvinen #define XTABS 0x01800 101*c9b34088SIlpo Järvinen #define BSDLY 0x02000 102*c9b34088SIlpo Järvinen #define BS0 0x00000 103*c9b34088SIlpo Järvinen #define BS1 0x02000 104*c9b34088SIlpo Järvinen #define VTDLY 0x04000 105*c9b34088SIlpo Järvinen #define VT0 0x00000 106*c9b34088SIlpo Järvinen #define VT1 0x04000 107*c9b34088SIlpo Järvinen #define FFDLY 0x08000 108*c9b34088SIlpo Järvinen #define FF0 0x00000 109*c9b34088SIlpo Järvinen #define FF1 0x08000 110*c9b34088SIlpo Järvinen #define PAGEOUT 0x10000 /* SUNOS specific */ 111*c9b34088SIlpo Järvinen #define WRAP 0x20000 /* SUNOS specific */ 11254579826SDavid Howells 11354579826SDavid Howells /* c_cflag bit meaning */ 11454579826SDavid Howells #define CBAUD 0x0000100f 11554579826SDavid Howells #define CSIZE 0x00000030 11654579826SDavid Howells #define CS5 0x00000000 11754579826SDavid Howells #define CS6 0x00000010 11854579826SDavid Howells #define CS7 0x00000020 11954579826SDavid Howells #define CS8 0x00000030 12054579826SDavid Howells #define CSTOPB 0x00000040 12154579826SDavid Howells #define CREAD 0x00000080 12254579826SDavid Howells #define PARENB 0x00000100 12354579826SDavid Howells #define PARODD 0x00000200 12454579826SDavid Howells #define HUPCL 0x00000400 12554579826SDavid Howells #define CLOCAL 0x00000800 12654579826SDavid Howells #define CBAUDEX 0x00001000 12754579826SDavid Howells /* We'll never see these speeds with the Zilogs, but for completeness... */ 12854579826SDavid Howells #define BOTHER 0x00001000 12954579826SDavid Howells #define B57600 0x00001001 13054579826SDavid Howells #define B115200 0x00001002 13154579826SDavid Howells #define B230400 0x00001003 13254579826SDavid Howells #define B460800 0x00001004 13354579826SDavid Howells /* This is what we can do with the Zilogs. */ 13454579826SDavid Howells #define B76800 0x00001005 13554579826SDavid Howells /* This is what we can do with the SAB82532. */ 13654579826SDavid Howells #define B153600 0x00001006 13754579826SDavid Howells #define B307200 0x00001007 13854579826SDavid Howells #define B614400 0x00001008 13954579826SDavid Howells #define B921600 0x00001009 14054579826SDavid Howells /* And these are the rest... */ 14154579826SDavid Howells #define B500000 0x0000100a 14254579826SDavid Howells #define B576000 0x0000100b 14354579826SDavid Howells #define B1000000 0x0000100c 14454579826SDavid Howells #define B1152000 0x0000100d 14554579826SDavid Howells #define B1500000 0x0000100e 14654579826SDavid Howells #define B2000000 0x0000100f 14754579826SDavid Howells /* These have totally bogus values and nobody uses them 14854579826SDavid Howells so far. Later on we'd have to use say 0x10000x and 14954579826SDavid Howells adjust CBAUD constant and drivers accordingly. 15054579826SDavid Howells #define B2500000 0x00001010 15154579826SDavid Howells #define B3000000 0x00001011 15254579826SDavid Howells #define B3500000 0x00001012 15354579826SDavid Howells #define B4000000 0x00001013 */ 15454579826SDavid Howells #define CIBAUD 0x100f0000 /* input baud rate (not used) */ 15554579826SDavid Howells 15654579826SDavid Howells /* c_lflag bits */ 15754579826SDavid Howells #define ISIG 0x00000001 15854579826SDavid Howells #define ICANON 0x00000002 15954579826SDavid Howells #define XCASE 0x00000004 16054579826SDavid Howells #define ECHO 0x00000008 16154579826SDavid Howells #define ECHOE 0x00000010 16254579826SDavid Howells #define ECHOK 0x00000020 16354579826SDavid Howells #define ECHONL 0x00000040 16454579826SDavid Howells #define NOFLSH 0x00000080 16554579826SDavid Howells #define TOSTOP 0x00000100 16654579826SDavid Howells #define ECHOCTL 0x00000200 16754579826SDavid Howells #define ECHOPRT 0x00000400 16854579826SDavid Howells #define ECHOKE 0x00000800 16954579826SDavid Howells #define DEFECHO 0x00001000 /* SUNOS thing, what is it? */ 17054579826SDavid Howells #define FLUSHO 0x00002000 17154579826SDavid Howells #define PENDIN 0x00004000 17254579826SDavid Howells #define IEXTEN 0x00008000 17354579826SDavid Howells #define EXTPROC 0x00010000 17454579826SDavid Howells 17554579826SDavid Howells /* modem lines */ 17654579826SDavid Howells #define TIOCM_LE 0x001 17754579826SDavid Howells #define TIOCM_DTR 0x002 17854579826SDavid Howells #define TIOCM_RTS 0x004 17954579826SDavid Howells #define TIOCM_ST 0x008 18054579826SDavid Howells #define TIOCM_SR 0x010 18154579826SDavid Howells #define TIOCM_CTS 0x020 18254579826SDavid Howells #define TIOCM_CAR 0x040 18354579826SDavid Howells #define TIOCM_RNG 0x080 18454579826SDavid Howells #define TIOCM_DSR 0x100 18554579826SDavid Howells #define TIOCM_CD TIOCM_CAR 18654579826SDavid Howells #define TIOCM_RI TIOCM_RNG 18754579826SDavid Howells #define TIOCM_OUT1 0x2000 18854579826SDavid Howells #define TIOCM_OUT2 0x4000 18954579826SDavid Howells #define TIOCM_LOOP 0x8000 19054579826SDavid Howells 19154579826SDavid Howells /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */ 19254579826SDavid Howells #define TIOCSER_TEMT 0x01 /* Transmitter physically empty */ 19354579826SDavid Howells 19454579826SDavid Howells /* tcsetattr uses these */ 19554579826SDavid Howells #define TCSANOW 0 19654579826SDavid Howells #define TCSADRAIN 1 19754579826SDavid Howells #define TCSAFLUSH 2 19854579826SDavid Howells 19954579826SDavid Howells #endif /* _UAPI_SPARC_TERMBITS_H */ 200