xref: /openbmc/linux/arch/powerpc/include/uapi/asm/termbits.h (revision 4f2c0a4acffbec01079c28f839422e64ddeff004)
1e2be04c7SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
2c3617f72SDavid Howells #ifndef _ASM_POWERPC_TERMBITS_H
3c3617f72SDavid Howells #define _ASM_POWERPC_TERMBITS_H
4c3617f72SDavid Howells 
5c3617f72SDavid Howells /*
6c3617f72SDavid Howells  * This program is free software; you can redistribute it and/or
7c3617f72SDavid Howells  * modify it under the terms of the GNU General Public License
8c3617f72SDavid Howells  * as published by the Free Software Foundation; either version
9c3617f72SDavid Howells  * 2 of the License, or (at your option) any later version.
10c3617f72SDavid Howells  */
11c3617f72SDavid Howells 
120b46ac44SIlpo Järvinen #include <asm-generic/termbits-common.h>
130b46ac44SIlpo Järvinen 
14c3617f72SDavid Howells typedef unsigned int	tcflag_t;
15c3617f72SDavid Howells 
16c3617f72SDavid Howells /*
17c3617f72SDavid Howells  * termios type and macro definitions.  Be careful about adding stuff
18c3617f72SDavid Howells  * to this file since it's used in GNU libc and there are strict rules
19c3617f72SDavid Howells  * concerning namespace pollution.
20c3617f72SDavid Howells  */
21c3617f72SDavid Howells 
22c3617f72SDavid Howells #define NCCS 19
23c3617f72SDavid Howells struct termios {
24c3617f72SDavid Howells 	tcflag_t c_iflag;		/* input mode flags */
25c3617f72SDavid Howells 	tcflag_t c_oflag;		/* output mode flags */
26c3617f72SDavid Howells 	tcflag_t c_cflag;		/* control mode flags */
27c3617f72SDavid Howells 	tcflag_t c_lflag;		/* local mode flags */
28c3617f72SDavid Howells 	cc_t c_cc[NCCS];		/* control characters */
29c3617f72SDavid Howells 	cc_t c_line;			/* line discipline (== c_cc[19]) */
30c3617f72SDavid Howells 	speed_t c_ispeed;		/* input speed */
31c3617f72SDavid Howells 	speed_t c_ospeed;		/* output speed */
32c3617f72SDavid Howells };
33c3617f72SDavid Howells 
34c3617f72SDavid Howells /* For PowerPC the termios and ktermios are the same */
35c3617f72SDavid Howells 
36c3617f72SDavid Howells struct ktermios {
37c3617f72SDavid Howells 	tcflag_t c_iflag;		/* input mode flags */
38c3617f72SDavid Howells 	tcflag_t c_oflag;		/* output mode flags */
39c3617f72SDavid Howells 	tcflag_t c_cflag;		/* control mode flags */
40c3617f72SDavid Howells 	tcflag_t c_lflag;		/* local mode flags */
41c3617f72SDavid Howells 	cc_t c_cc[NCCS];		/* control characters */
42c3617f72SDavid Howells 	cc_t c_line;			/* line discipline (== c_cc[19]) */
43c3617f72SDavid Howells 	speed_t c_ispeed;		/* input speed */
44c3617f72SDavid Howells 	speed_t c_ospeed;		/* output speed */
45c3617f72SDavid Howells };
46c3617f72SDavid Howells 
47c3617f72SDavid Howells /* c_cc characters */
48c3617f72SDavid Howells #define VINTR 	         0
49c3617f72SDavid Howells #define VQUIT 	         1
50c3617f72SDavid Howells #define VERASE 	         2
51c3617f72SDavid Howells #define VKILL	         3
52c3617f72SDavid Howells #define VEOF	         4
53c3617f72SDavid Howells #define VMIN	         5
54c3617f72SDavid Howells #define VEOL	         6
55c3617f72SDavid Howells #define VTIME	         7
56c3617f72SDavid Howells #define VEOL2	         8
57c3617f72SDavid Howells #define VSWTC	         9
58c3617f72SDavid Howells #define VWERASE 	10
59c3617f72SDavid Howells #define VREPRINT	11
60c3617f72SDavid Howells #define VSUSP 		12
61c3617f72SDavid Howells #define VSTART		13
62c3617f72SDavid Howells #define VSTOP		14
63c3617f72SDavid Howells #define VLNEXT		15
64c3617f72SDavid Howells #define VDISCARD	16
65c3617f72SDavid Howells 
66c3617f72SDavid Howells /* c_iflag bits */
67*c9b34088SIlpo Järvinen #define IXON	0x0200
68*c9b34088SIlpo Järvinen #define IXOFF	0x0400
69*c9b34088SIlpo Järvinen #define IUCLC	0x1000
70*c9b34088SIlpo Järvinen #define IMAXBEL	0x2000
71*c9b34088SIlpo Järvinen #define IUTF8	0x4000
72c3617f72SDavid Howells 
73c3617f72SDavid Howells /* c_oflag bits */
746808b7f5SIlpo Järvinen #define ONLCR	0x00002
756808b7f5SIlpo Järvinen #define OLCUC	0x00004
76*c9b34088SIlpo Järvinen #define NLDLY	0x00300
77*c9b34088SIlpo Järvinen #define   NL0	0x00000
78*c9b34088SIlpo Järvinen #define   NL1	0x00100
79*c9b34088SIlpo Järvinen #define   NL2	0x00200
80*c9b34088SIlpo Järvinen #define   NL3	0x00300
81*c9b34088SIlpo Järvinen #define TABDLY	0x00c00
82*c9b34088SIlpo Järvinen #define   TAB0	0x00000
83*c9b34088SIlpo Järvinen #define   TAB1	0x00400
84*c9b34088SIlpo Järvinen #define   TAB2	0x00800
85*c9b34088SIlpo Järvinen #define   TAB3	0x00c00
86*c9b34088SIlpo Järvinen #define   XTABS	0x00c00		/* required by POSIX to == TAB3 */
87*c9b34088SIlpo Järvinen #define CRDLY	0x03000
88*c9b34088SIlpo Järvinen #define   CR0	0x00000
89*c9b34088SIlpo Järvinen #define   CR1	0x01000
90*c9b34088SIlpo Järvinen #define   CR2	0x02000
91*c9b34088SIlpo Järvinen #define   CR3	0x03000
92*c9b34088SIlpo Järvinen #define FFDLY	0x04000
93*c9b34088SIlpo Järvinen #define   FF0	0x00000
94*c9b34088SIlpo Järvinen #define   FF1	0x04000
95*c9b34088SIlpo Järvinen #define BSDLY	0x08000
96*c9b34088SIlpo Järvinen #define   BS0	0x00000
97*c9b34088SIlpo Järvinen #define   BS1	0x08000
98*c9b34088SIlpo Järvinen #define VTDLY	0x10000
99*c9b34088SIlpo Järvinen #define   VT0	0x00000
100*c9b34088SIlpo Järvinen #define   VT1	0x10000
101c3617f72SDavid Howells 
102c3617f72SDavid Howells /* c_cflag bit meaning */
1036808b7f5SIlpo Järvinen #define CBAUD		0x000000ff
1046808b7f5SIlpo Järvinen #define CBAUDEX		0x00000000
105*c9b34088SIlpo Järvinen #define BOTHER		0x0000001f
1066808b7f5SIlpo Järvinen #define    B57600	0x00000010
1076808b7f5SIlpo Järvinen #define   B115200	0x00000011
1086808b7f5SIlpo Järvinen #define   B230400	0x00000012
1096808b7f5SIlpo Järvinen #define   B460800	0x00000013
1106808b7f5SIlpo Järvinen #define   B500000	0x00000014
1116808b7f5SIlpo Järvinen #define   B576000	0x00000015
1126808b7f5SIlpo Järvinen #define   B921600	0x00000016
1136808b7f5SIlpo Järvinen #define  B1000000	0x00000017
1146808b7f5SIlpo Järvinen #define  B1152000	0x00000018
1156808b7f5SIlpo Järvinen #define  B1500000	0x00000019
1166808b7f5SIlpo Järvinen #define  B2000000	0x0000001a
1176808b7f5SIlpo Järvinen #define  B2500000	0x0000001b
1186808b7f5SIlpo Järvinen #define  B3000000	0x0000001c
1196808b7f5SIlpo Järvinen #define  B3500000	0x0000001d
1206808b7f5SIlpo Järvinen #define  B4000000	0x0000001e
1216808b7f5SIlpo Järvinen #define CSIZE		0x00000300
1226808b7f5SIlpo Järvinen #define   CS5		0x00000000
1236808b7f5SIlpo Järvinen #define   CS6		0x00000100
1246808b7f5SIlpo Järvinen #define   CS7		0x00000200
1256808b7f5SIlpo Järvinen #define   CS8		0x00000300
1266808b7f5SIlpo Järvinen #define CSTOPB		0x00000400
1276808b7f5SIlpo Järvinen #define CREAD		0x00000800
1286808b7f5SIlpo Järvinen #define PARENB		0x00001000
1296808b7f5SIlpo Järvinen #define PARODD		0x00002000
1306808b7f5SIlpo Järvinen #define HUPCL		0x00004000
1316808b7f5SIlpo Järvinen #define CLOCAL		0x00008000
132*c9b34088SIlpo Järvinen #define CIBAUD		0x00ff0000
133c3617f72SDavid Howells 
134c3617f72SDavid Howells /* c_lflag bits */
135c3617f72SDavid Howells #define ISIG	0x00000080
136c3617f72SDavid Howells #define ICANON	0x00000100
137c3617f72SDavid Howells #define XCASE	0x00004000
138c3617f72SDavid Howells #define ECHO	0x00000008
139c3617f72SDavid Howells #define ECHOE	0x00000002
140c3617f72SDavid Howells #define ECHOK	0x00000004
141c3617f72SDavid Howells #define ECHONL	0x00000010
142c3617f72SDavid Howells #define NOFLSH	0x80000000
143c3617f72SDavid Howells #define TOSTOP	0x00400000
144c3617f72SDavid Howells #define ECHOCTL	0x00000040
145c3617f72SDavid Howells #define ECHOPRT	0x00000020
146c3617f72SDavid Howells #define ECHOKE	0x00000001
147c3617f72SDavid Howells #define FLUSHO	0x00800000
148c3617f72SDavid Howells #define PENDIN	0x20000000
149c3617f72SDavid Howells #define IEXTEN	0x00000400
150c3617f72SDavid Howells #define EXTPROC	0x10000000
151c3617f72SDavid Howells 
152c3617f72SDavid Howells /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'.  */
153c3617f72SDavid Howells #define	TCSANOW		0
154c3617f72SDavid Howells #define	TCSADRAIN	1
155c3617f72SDavid Howells #define	TCSAFLUSH	2
156c3617f72SDavid Howells 
157c3617f72SDavid Howells #endif	/* _ASM_POWERPC_TERMBITS_H */
158