diff options
author | Alan Cox <alan@linux.intel.com> | 2012-09-04 11:35:08 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-05 16:11:03 -0400 |
commit | ba3fe7aba2067212a8c3baffc18f9209fcbe9d34 (patch) | |
tree | 41d613a3e445694739a368da89ef918d0e398249 /include/linux | |
parent | 7ba2e769825fef035a943ed74d90379245508764 (diff) |
tty: move the async flags from the serial code into the tty includes
These are used with the tty_port flags which are tty generic so move the
flags into a more sensible place. This then makes it possible to add
helpers such as those suggested by Huang Shijie.
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/Kbuild | 1 | ||||
-rw-r--r-- | include/linux/serial.h | 75 | ||||
-rw-r--r-- | include/linux/tty.h | 1 | ||||
-rw-r--r-- | include/linux/tty_flags.h | 78 |
4 files changed, 83 insertions, 72 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index e9f560a40b8b..c57e064666e4 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
@@ -369,6 +369,7 @@ header-y += tipc.h | |||
369 | header-y += tipc_config.h | 369 | header-y += tipc_config.h |
370 | header-y += toshiba.h | 370 | header-y += toshiba.h |
371 | header-y += tty.h | 371 | header-y += tty.h |
372 | header-y += tty_flags.h | ||
372 | header-y += types.h | 373 | header-y += types.h |
373 | header-y += udf_fs_i.h | 374 | header-y += udf_fs_i.h |
374 | header-y += udp.h | 375 | header-y += udp.h |
diff --git a/include/linux/serial.h b/include/linux/serial.h index 90e9f981358a..3504f428ce66 100644 --- a/include/linux/serial.h +++ b/include/linux/serial.h | |||
@@ -12,9 +12,12 @@ | |||
12 | 12 | ||
13 | #include <linux/types.h> | 13 | #include <linux/types.h> |
14 | 14 | ||
15 | #include <linux/tty_flags.h> | ||
16 | |||
15 | #ifdef __KERNEL__ | 17 | #ifdef __KERNEL__ |
16 | #include <asm/page.h> | 18 | #include <asm/page.h> |
17 | 19 | ||
20 | |||
18 | /* | 21 | /* |
19 | * Counters of the input lines (CTS, DSR, RI, CD) interrupts | 22 | * Counters of the input lines (CTS, DSR, RI, CD) interrupts |
20 | */ | 23 | */ |
@@ -94,78 +97,6 @@ struct serial_uart_config { | |||
94 | #define UART_STARTECH 0x04 | 97 | #define UART_STARTECH 0x04 |
95 | #define UART_NATSEMI 0x08 | 98 | #define UART_NATSEMI 0x08 |
96 | 99 | ||
97 | /* | ||
98 | * Definitions for async_struct (and serial_struct) flags field | ||
99 | * | ||
100 | * Define ASYNCB_* for convenient use with {test,set,clear}_bit. | ||
101 | */ | ||
102 | #define ASYNCB_HUP_NOTIFY 0 /* Notify getty on hangups and closes | ||
103 | * on the callout port */ | ||
104 | #define ASYNCB_FOURPORT 1 /* Set OU1, OUT2 per AST Fourport settings */ | ||
105 | #define ASYNCB_SAK 2 /* Secure Attention Key (Orange book) */ | ||
106 | #define ASYNCB_SPLIT_TERMIOS 3 /* Separate termios for dialin/callout */ | ||
107 | #define ASYNCB_SPD_HI 4 /* Use 56000 instead of 38400 bps */ | ||
108 | #define ASYNCB_SPD_VHI 5 /* Use 115200 instead of 38400 bps */ | ||
109 | #define ASYNCB_SKIP_TEST 6 /* Skip UART test during autoconfiguration */ | ||
110 | #define ASYNCB_AUTO_IRQ 7 /* Do automatic IRQ during | ||
111 | * autoconfiguration */ | ||
112 | #define ASYNCB_SESSION_LOCKOUT 8 /* Lock out cua opens based on session */ | ||
113 | #define ASYNCB_PGRP_LOCKOUT 9 /* Lock out cua opens based on pgrp */ | ||
114 | #define ASYNCB_CALLOUT_NOHUP 10 /* Don't do hangups for cua device */ | ||
115 | #define ASYNCB_HARDPPS_CD 11 /* Call hardpps when CD goes high */ | ||
116 | #define ASYNCB_SPD_SHI 12 /* Use 230400 instead of 38400 bps */ | ||
117 | #define ASYNCB_LOW_LATENCY 13 /* Request low latency behaviour */ | ||
118 | #define ASYNCB_BUGGY_UART 14 /* This is a buggy UART, skip some safety | ||
119 | * checks. Note: can be dangerous! */ | ||
120 | #define ASYNCB_AUTOPROBE 15 /* Port was autoprobed by PCI or PNP code */ | ||
121 | #define ASYNCB_LAST_USER 15 | ||
122 | |||
123 | /* Internal flags used only by kernel */ | ||
124 | #define ASYNCB_INITIALIZED 31 /* Serial port was initialized */ | ||
125 | #define ASYNCB_SUSPENDED 30 /* Serial port is suspended */ | ||
126 | #define ASYNCB_NORMAL_ACTIVE 29 /* Normal device is active */ | ||
127 | #define ASYNCB_BOOT_AUTOCONF 28 /* Autoconfigure port on bootup */ | ||
128 | #define ASYNCB_CLOSING 27 /* Serial port is closing */ | ||
129 | #define ASYNCB_CTS_FLOW 26 /* Do CTS flow control */ | ||
130 | #define ASYNCB_CHECK_CD 25 /* i.e., CLOCAL */ | ||
131 | #define ASYNCB_SHARE_IRQ 24 /* for multifunction cards, no longer used */ | ||
132 | #define ASYNCB_CONS_FLOW 23 /* flow control for console */ | ||
133 | #define ASYNCB_FIRST_KERNEL 22 | ||
134 | |||
135 | #define ASYNC_HUP_NOTIFY (1U << ASYNCB_HUP_NOTIFY) | ||
136 | #define ASYNC_SUSPENDED (1U << ASYNCB_SUSPENDED) | ||
137 | #define ASYNC_FOURPORT (1U << ASYNCB_FOURPORT) | ||
138 | #define ASYNC_SAK (1U << ASYNCB_SAK) | ||
139 | #define ASYNC_SPLIT_TERMIOS (1U << ASYNCB_SPLIT_TERMIOS) | ||
140 | #define ASYNC_SPD_HI (1U << ASYNCB_SPD_HI) | ||
141 | #define ASYNC_SPD_VHI (1U << ASYNCB_SPD_VHI) | ||
142 | #define ASYNC_SKIP_TEST (1U << ASYNCB_SKIP_TEST) | ||
143 | #define ASYNC_AUTO_IRQ (1U << ASYNCB_AUTO_IRQ) | ||
144 | #define ASYNC_SESSION_LOCKOUT (1U << ASYNCB_SESSION_LOCKOUT) | ||
145 | #define ASYNC_PGRP_LOCKOUT (1U << ASYNCB_PGRP_LOCKOUT) | ||
146 | #define ASYNC_CALLOUT_NOHUP (1U << ASYNCB_CALLOUT_NOHUP) | ||
147 | #define ASYNC_HARDPPS_CD (1U << ASYNCB_HARDPPS_CD) | ||
148 | #define ASYNC_SPD_SHI (1U << ASYNCB_SPD_SHI) | ||
149 | #define ASYNC_LOW_LATENCY (1U << ASYNCB_LOW_LATENCY) | ||
150 | #define ASYNC_BUGGY_UART (1U << ASYNCB_BUGGY_UART) | ||
151 | #define ASYNC_AUTOPROBE (1U << ASYNCB_AUTOPROBE) | ||
152 | |||
153 | #define ASYNC_FLAGS ((1U << (ASYNCB_LAST_USER + 1)) - 1) | ||
154 | #define ASYNC_USR_MASK (ASYNC_SPD_MASK|ASYNC_CALLOUT_NOHUP| \ | ||
155 | ASYNC_LOW_LATENCY) | ||
156 | #define ASYNC_SPD_CUST (ASYNC_SPD_HI|ASYNC_SPD_VHI) | ||
157 | #define ASYNC_SPD_WARP (ASYNC_SPD_HI|ASYNC_SPD_SHI) | ||
158 | #define ASYNC_SPD_MASK (ASYNC_SPD_HI|ASYNC_SPD_VHI|ASYNC_SPD_SHI) | ||
159 | |||
160 | #define ASYNC_INITIALIZED (1U << ASYNCB_INITIALIZED) | ||
161 | #define ASYNC_NORMAL_ACTIVE (1U << ASYNCB_NORMAL_ACTIVE) | ||
162 | #define ASYNC_BOOT_AUTOCONF (1U << ASYNCB_BOOT_AUTOCONF) | ||
163 | #define ASYNC_CLOSING (1U << ASYNCB_CLOSING) | ||
164 | #define ASYNC_CTS_FLOW (1U << ASYNCB_CTS_FLOW) | ||
165 | #define ASYNC_CHECK_CD (1U << ASYNCB_CHECK_CD) | ||
166 | #define ASYNC_SHARE_IRQ (1U << ASYNCB_SHARE_IRQ) | ||
167 | #define ASYNC_CONS_FLOW (1U << ASYNCB_CONS_FLOW) | ||
168 | #define ASYNC_INTERNAL_FLAGS (~((1U << ASYNCB_FIRST_KERNEL) - 1)) | ||
169 | 100 | ||
170 | /* | 101 | /* |
171 | * Multiport serial configuration structure --- external structure | 102 | * Multiport serial configuration structure --- external structure |
diff --git a/include/linux/tty.h b/include/linux/tty.h index 69a787fdfa9c..dbebd1e56bc1 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
@@ -43,6 +43,7 @@ | |||
43 | #include <linux/tty_driver.h> | 43 | #include <linux/tty_driver.h> |
44 | #include <linux/tty_ldisc.h> | 44 | #include <linux/tty_ldisc.h> |
45 | #include <linux/mutex.h> | 45 | #include <linux/mutex.h> |
46 | #include <linux/tty_flags.h> | ||
46 | 47 | ||
47 | 48 | ||
48 | 49 | ||
diff --git a/include/linux/tty_flags.h b/include/linux/tty_flags.h new file mode 100644 index 000000000000..eefcb483a2c0 --- /dev/null +++ b/include/linux/tty_flags.h | |||
@@ -0,0 +1,78 @@ | |||
1 | #ifndef _LINUX_TTY_FLAGS_H | ||
2 | #define _LINUX_TTY_FLAGS_H | ||
3 | |||
4 | /* | ||
5 | * Definitions for async_struct (and serial_struct) flags field also | ||
6 | * shared by the tty_port flags structures. | ||
7 | * | ||
8 | * Define ASYNCB_* for convenient use with {test,set,clear}_bit. | ||
9 | */ | ||
10 | #define ASYNCB_HUP_NOTIFY 0 /* Notify getty on hangups and closes | ||
11 | * on the callout port */ | ||
12 | #define ASYNCB_FOURPORT 1 /* Set OU1, OUT2 per AST Fourport settings */ | ||
13 | #define ASYNCB_SAK 2 /* Secure Attention Key (Orange book) */ | ||
14 | #define ASYNCB_SPLIT_TERMIOS 3 /* Separate termios for dialin/callout */ | ||
15 | #define ASYNCB_SPD_HI 4 /* Use 56000 instead of 38400 bps */ | ||
16 | #define ASYNCB_SPD_VHI 5 /* Use 115200 instead of 38400 bps */ | ||
17 | #define ASYNCB_SKIP_TEST 6 /* Skip UART test during autoconfiguration */ | ||
18 | #define ASYNCB_AUTO_IRQ 7 /* Do automatic IRQ during | ||
19 | * autoconfiguration */ | ||
20 | #define ASYNCB_SESSION_LOCKOUT 8 /* Lock out cua opens based on session */ | ||
21 | #define ASYNCB_PGRP_LOCKOUT 9 /* Lock out cua opens based on pgrp */ | ||
22 | #define ASYNCB_CALLOUT_NOHUP 10 /* Don't do hangups for cua device */ | ||
23 | #define ASYNCB_HARDPPS_CD 11 /* Call hardpps when CD goes high */ | ||
24 | #define ASYNCB_SPD_SHI 12 /* Use 230400 instead of 38400 bps */ | ||
25 | #define ASYNCB_LOW_LATENCY 13 /* Request low latency behaviour */ | ||
26 | #define ASYNCB_BUGGY_UART 14 /* This is a buggy UART, skip some safety | ||
27 | * checks. Note: can be dangerous! */ | ||
28 | #define ASYNCB_AUTOPROBE 15 /* Port was autoprobed by PCI or PNP code */ | ||
29 | #define ASYNCB_LAST_USER 15 | ||
30 | |||
31 | /* Internal flags used only by kernel */ | ||
32 | #define ASYNCB_INITIALIZED 31 /* Serial port was initialized */ | ||
33 | #define ASYNCB_SUSPENDED 30 /* Serial port is suspended */ | ||
34 | #define ASYNCB_NORMAL_ACTIVE 29 /* Normal device is active */ | ||
35 | #define ASYNCB_BOOT_AUTOCONF 28 /* Autoconfigure port on bootup */ | ||
36 | #define ASYNCB_CLOSING 27 /* Serial port is closing */ | ||
37 | #define ASYNCB_CTS_FLOW 26 /* Do CTS flow control */ | ||
38 | #define ASYNCB_CHECK_CD 25 /* i.e., CLOCAL */ | ||
39 | #define ASYNCB_SHARE_IRQ 24 /* for multifunction cards, no longer used */ | ||
40 | #define ASYNCB_CONS_FLOW 23 /* flow control for console */ | ||
41 | #define ASYNCB_FIRST_KERNEL 22 | ||
42 | |||
43 | #define ASYNC_HUP_NOTIFY (1U << ASYNCB_HUP_NOTIFY) | ||
44 | #define ASYNC_SUSPENDED (1U << ASYNCB_SUSPENDED) | ||
45 | #define ASYNC_FOURPORT (1U << ASYNCB_FOURPORT) | ||
46 | #define ASYNC_SAK (1U << ASYNCB_SAK) | ||
47 | #define ASYNC_SPLIT_TERMIOS (1U << ASYNCB_SPLIT_TERMIOS) | ||
48 | #define ASYNC_SPD_HI (1U << ASYNCB_SPD_HI) | ||
49 | #define ASYNC_SPD_VHI (1U << ASYNCB_SPD_VHI) | ||
50 | #define ASYNC_SKIP_TEST (1U << ASYNCB_SKIP_TEST) | ||
51 | #define ASYNC_AUTO_IRQ (1U << ASYNCB_AUTO_IRQ) | ||
52 | #define ASYNC_SESSION_LOCKOUT (1U << ASYNCB_SESSION_LOCKOUT) | ||
53 | #define ASYNC_PGRP_LOCKOUT (1U << ASYNCB_PGRP_LOCKOUT) | ||
54 | #define ASYNC_CALLOUT_NOHUP (1U << ASYNCB_CALLOUT_NOHUP) | ||
55 | #define ASYNC_HARDPPS_CD (1U << ASYNCB_HARDPPS_CD) | ||
56 | #define ASYNC_SPD_SHI (1U << ASYNCB_SPD_SHI) | ||
57 | #define ASYNC_LOW_LATENCY (1U << ASYNCB_LOW_LATENCY) | ||
58 | #define ASYNC_BUGGY_UART (1U << ASYNCB_BUGGY_UART) | ||
59 | #define ASYNC_AUTOPROBE (1U << ASYNCB_AUTOPROBE) | ||
60 | |||
61 | #define ASYNC_FLAGS ((1U << (ASYNCB_LAST_USER + 1)) - 1) | ||
62 | #define ASYNC_USR_MASK (ASYNC_SPD_MASK|ASYNC_CALLOUT_NOHUP| \ | ||
63 | ASYNC_LOW_LATENCY) | ||
64 | #define ASYNC_SPD_CUST (ASYNC_SPD_HI|ASYNC_SPD_VHI) | ||
65 | #define ASYNC_SPD_WARP (ASYNC_SPD_HI|ASYNC_SPD_SHI) | ||
66 | #define ASYNC_SPD_MASK (ASYNC_SPD_HI|ASYNC_SPD_VHI|ASYNC_SPD_SHI) | ||
67 | |||
68 | #define ASYNC_INITIALIZED (1U << ASYNCB_INITIALIZED) | ||
69 | #define ASYNC_NORMAL_ACTIVE (1U << ASYNCB_NORMAL_ACTIVE) | ||
70 | #define ASYNC_BOOT_AUTOCONF (1U << ASYNCB_BOOT_AUTOCONF) | ||
71 | #define ASYNC_CLOSING (1U << ASYNCB_CLOSING) | ||
72 | #define ASYNC_CTS_FLOW (1U << ASYNCB_CTS_FLOW) | ||
73 | #define ASYNC_CHECK_CD (1U << ASYNCB_CHECK_CD) | ||
74 | #define ASYNC_SHARE_IRQ (1U << ASYNCB_SHARE_IRQ) | ||
75 | #define ASYNC_CONS_FLOW (1U << ASYNCB_CONS_FLOW) | ||
76 | #define ASYNC_INTERNAL_FLAGS (~((1U << ASYNCB_FIRST_KERNEL) - 1)) | ||
77 | |||
78 | #endif | ||