1*e2be04c7SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ 2c3617f72SDavid Howells /* 3c3617f72SDavid Howells * Liberally adapted from alpha/termios.h. In particular, the c_cc[] 4c3617f72SDavid Howells * fields have been reordered so that termio & termios share the 5c3617f72SDavid Howells * common subset in the same order (for brain dead programs that don't 6c3617f72SDavid Howells * know or care about the differences). 7c3617f72SDavid Howells * 8c3617f72SDavid Howells * This program is free software; you can redistribute it and/or 9c3617f72SDavid Howells * modify it under the terms of the GNU General Public License 10c3617f72SDavid Howells * as published by the Free Software Foundation; either version 11c3617f72SDavid Howells * 2 of the License, or (at your option) any later version. 12c3617f72SDavid Howells */ 13c3617f72SDavid Howells #ifndef _UAPI_ASM_POWERPC_TERMIOS_H 14c3617f72SDavid Howells #define _UAPI_ASM_POWERPC_TERMIOS_H 15c3617f72SDavid Howells 16c3617f72SDavid Howells 17c3617f72SDavid Howells #include <asm/ioctls.h> 18c3617f72SDavid Howells #include <asm/termbits.h> 19c3617f72SDavid Howells 20c3617f72SDavid Howells struct sgttyb { 21c3617f72SDavid Howells char sg_ispeed; 22c3617f72SDavid Howells char sg_ospeed; 23c3617f72SDavid Howells char sg_erase; 24c3617f72SDavid Howells char sg_kill; 25c3617f72SDavid Howells short sg_flags; 26c3617f72SDavid Howells }; 27c3617f72SDavid Howells 28c3617f72SDavid Howells struct tchars { 29c3617f72SDavid Howells char t_intrc; 30c3617f72SDavid Howells char t_quitc; 31c3617f72SDavid Howells char t_startc; 32c3617f72SDavid Howells char t_stopc; 33c3617f72SDavid Howells char t_eofc; 34c3617f72SDavid Howells char t_brkc; 35c3617f72SDavid Howells }; 36c3617f72SDavid Howells 37c3617f72SDavid Howells struct ltchars { 38c3617f72SDavid Howells char t_suspc; 39c3617f72SDavid Howells char t_dsuspc; 40c3617f72SDavid Howells char t_rprntc; 41c3617f72SDavid Howells char t_flushc; 42c3617f72SDavid Howells char t_werasc; 43c3617f72SDavid Howells char t_lnextc; 44c3617f72SDavid Howells }; 45c3617f72SDavid Howells 46c3617f72SDavid Howells struct winsize { 47c3617f72SDavid Howells unsigned short ws_row; 48c3617f72SDavid Howells unsigned short ws_col; 49c3617f72SDavid Howells unsigned short ws_xpixel; 50c3617f72SDavid Howells unsigned short ws_ypixel; 51c3617f72SDavid Howells }; 52c3617f72SDavid Howells 53c3617f72SDavid Howells #define NCC 10 54c3617f72SDavid Howells struct termio { 55c3617f72SDavid Howells unsigned short c_iflag; /* input mode flags */ 56c3617f72SDavid Howells unsigned short c_oflag; /* output mode flags */ 57c3617f72SDavid Howells unsigned short c_cflag; /* control mode flags */ 58c3617f72SDavid Howells unsigned short c_lflag; /* local mode flags */ 59c3617f72SDavid Howells unsigned char c_line; /* line discipline */ 60c3617f72SDavid Howells unsigned char c_cc[NCC]; /* control characters */ 61c3617f72SDavid Howells }; 62c3617f72SDavid Howells 63c3617f72SDavid Howells /* c_cc characters */ 64c3617f72SDavid Howells #define _VINTR 0 65c3617f72SDavid Howells #define _VQUIT 1 66c3617f72SDavid Howells #define _VERASE 2 67c3617f72SDavid Howells #define _VKILL 3 68c3617f72SDavid Howells #define _VEOF 4 69c3617f72SDavid Howells #define _VMIN 5 70c3617f72SDavid Howells #define _VEOL 6 71c3617f72SDavid Howells #define _VTIME 7 72c3617f72SDavid Howells #define _VEOL2 8 73c3617f72SDavid Howells #define _VSWTC 9 74c3617f72SDavid Howells 75c3617f72SDavid Howells 76c3617f72SDavid Howells 77c3617f72SDavid Howells #endif /* _UAPI_ASM_POWERPC_TERMIOS_H */ 78