diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-06-26 18:53:22 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-06-26 18:53:22 -0400 |
| commit | 8c7febe83915332276cab49e89f6580bb963fb9a (patch) | |
| tree | c6ffa5fbdef402f8c6e2d75b19dcce813fd21ded /include/uapi/linux | |
| parent | 23908db413eccd77084b09c9b0a4451dfb0524c0 (diff) | |
| parent | 71206b9f8120eb513c621d4f31906577bb658df3 (diff) | |
Merge tag 'tty-4.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
Pull tty/serial driver updates from Greg KH:
"Here's the tty and serial driver patches for 4.2-rc1.
A number of individual driver updates, some code cleanups, and other
minor things, full details in the shortlog.
All have been in linux-next for a while with no reported issues"
* tag 'tty-4.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (152 commits)
Doc: serial-rs485.txt: update RS485 driver interface
Doc: tty.txt: remove mention of the BKL
MAINTAINERS: tty: add serial docs directory
serial: sprd: check for NULL after calling devm_clk_get
serial: 8250_pci: Correct uartclk for xr17v35x expansion chips
serial: 8250_pci: Add support for 12 port Exar boards
serial: 8250_uniphier: add bindings document for UniPhier UART
serial: core: cleanup in uart_get_baud_rate()
serial: stm32-usart: Add STM32 USART Driver
tty/serial: kill off set_irq_flags usage
tty: move linux/gsmmux.h to uapi
doc: dt: add documentation for nxp,lpc1850-uart
serial: 8250: add LPC18xx/43xx UART driver
serial: 8250_uniphier: add UniPhier serial driver
serial: 8250_dw: support ACPI platforms with integrated DMA engine
serial: of_serial: check the return value of clk_prepare_enable()
serial: of_serial: use devm_clk_get() instead of clk_get()
serial: earlycon: Add support for big-endian MMIO accesses
serial: sirf: use hrtimer for data rx
serial: sirf: correct the fifo empty_bit
...
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/Kbuild | 1 | ||||
| -rw-r--r-- | include/uapi/linux/gsmmux.h | 39 | ||||
| -rw-r--r-- | include/uapi/linux/serial_core.h | 3 | ||||
| -rw-r--r-- | include/uapi/linux/tty_flags.h | 2 |
4 files changed, 44 insertions, 1 deletions
diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild index baa7c80da6af..c1c23f19d4a2 100644 --- a/include/uapi/linux/Kbuild +++ b/include/uapi/linux/Kbuild | |||
| @@ -138,6 +138,7 @@ header-y += genetlink.h | |||
| 138 | header-y += gen_stats.h | 138 | header-y += gen_stats.h |
| 139 | header-y += gfs2_ondisk.h | 139 | header-y += gfs2_ondisk.h |
| 140 | header-y += gigaset_dev.h | 140 | header-y += gigaset_dev.h |
| 141 | header-y += gsmmux.h | ||
| 141 | header-y += hdlcdrv.h | 142 | header-y += hdlcdrv.h |
| 142 | header-y += hdlc.h | 143 | header-y += hdlc.h |
| 143 | header-y += hdreg.h | 144 | header-y += hdreg.h |
diff --git a/include/uapi/linux/gsmmux.h b/include/uapi/linux/gsmmux.h new file mode 100644 index 000000000000..c06742d52856 --- /dev/null +++ b/include/uapi/linux/gsmmux.h | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | #ifndef _LINUX_GSMMUX_H | ||
| 2 | #define _LINUX_GSMMUX_H | ||
| 3 | |||
| 4 | #include <linux/if.h> | ||
| 5 | #include <linux/ioctl.h> | ||
| 6 | |||
| 7 | struct gsm_config | ||
| 8 | { | ||
| 9 | unsigned int adaption; | ||
| 10 | unsigned int encapsulation; | ||
| 11 | unsigned int initiator; | ||
| 12 | unsigned int t1; | ||
| 13 | unsigned int t2; | ||
| 14 | unsigned int t3; | ||
| 15 | unsigned int n2; | ||
| 16 | unsigned int mru; | ||
| 17 | unsigned int mtu; | ||
| 18 | unsigned int k; | ||
| 19 | unsigned int i; | ||
| 20 | unsigned int unused[8]; /* Padding for expansion without | ||
| 21 | breaking stuff */ | ||
| 22 | }; | ||
| 23 | |||
| 24 | #define GSMIOC_GETCONF _IOR('G', 0, struct gsm_config) | ||
| 25 | #define GSMIOC_SETCONF _IOW('G', 1, struct gsm_config) | ||
| 26 | |||
| 27 | struct gsm_netconfig { | ||
| 28 | unsigned int adaption; /* Adaption to use in network mode */ | ||
| 29 | unsigned short protocol;/* Protocol to use - only ETH_P_IP supported */ | ||
| 30 | unsigned short unused2; | ||
| 31 | char if_name[IFNAMSIZ]; /* interface name format string */ | ||
| 32 | __u8 unused[28]; /* For future use */ | ||
| 33 | }; | ||
| 34 | |||
| 35 | #define GSMIOC_ENABLE_NET _IOW('G', 2, struct gsm_netconfig) | ||
| 36 | #define GSMIOC_DISABLE_NET _IO('G', 3) | ||
| 37 | |||
| 38 | |||
| 39 | #endif | ||
diff --git a/include/uapi/linux/serial_core.h b/include/uapi/linux/serial_core.h index b2122813f18a..93ba148f923e 100644 --- a/include/uapi/linux/serial_core.h +++ b/include/uapi/linux/serial_core.h | |||
| @@ -258,4 +258,7 @@ | |||
| 258 | /* Cris v10 / v32 SoC */ | 258 | /* Cris v10 / v32 SoC */ |
| 259 | #define PORT_CRIS 112 | 259 | #define PORT_CRIS 112 |
| 260 | 260 | ||
| 261 | /* STM32 USART */ | ||
| 262 | #define PORT_STM32 113 | ||
| 263 | |||
| 261 | #endif /* _UAPILINUX_SERIAL_CORE_H */ | 264 | #endif /* _UAPILINUX_SERIAL_CORE_H */ |
diff --git a/include/uapi/linux/tty_flags.h b/include/uapi/linux/tty_flags.h index fae4864737fa..072e41e45ee2 100644 --- a/include/uapi/linux/tty_flags.h +++ b/include/uapi/linux/tty_flags.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #define ASYNCB_FOURPORT 1 /* Set OU1, OUT2 per AST Fourport settings */ | 15 | #define ASYNCB_FOURPORT 1 /* Set OU1, OUT2 per AST Fourport settings */ |
| 16 | #define ASYNCB_SAK 2 /* Secure Attention Key (Orange book) */ | 16 | #define ASYNCB_SAK 2 /* Secure Attention Key (Orange book) */ |
| 17 | #define ASYNCB_SPLIT_TERMIOS 3 /* [x] Separate termios for dialin/callout */ | 17 | #define ASYNCB_SPLIT_TERMIOS 3 /* [x] Separate termios for dialin/callout */ |
| 18 | #define ASYNCB_SPD_HI 4 /* Use 56000 instead of 38400 bps */ | 18 | #define ASYNCB_SPD_HI 4 /* Use 57600 instead of 38400 bps */ |
| 19 | #define ASYNCB_SPD_VHI 5 /* Use 115200 instead of 38400 bps */ | 19 | #define ASYNCB_SPD_VHI 5 /* Use 115200 instead of 38400 bps */ |
| 20 | #define ASYNCB_SKIP_TEST 6 /* Skip UART test during autoconfiguration */ | 20 | #define ASYNCB_SKIP_TEST 6 /* Skip UART test during autoconfiguration */ |
| 21 | #define ASYNCB_AUTO_IRQ 7 /* Do automatic IRQ during | 21 | #define ASYNCB_AUTO_IRQ 7 /* Do automatic IRQ during |
