TTY/Serial patches for 5.9-rc1
Here is the large set of TTY and Serial driver patches for 5.9-rc1. Lots of bugfixes in here, thanks to syzbot fuzzing for serial and vt and console code. Other highlights include: - much needed vt/vc code cleanup from Jiri Slaby - 8250 driver fixes and additions - various serial driver updates and feature enhancements - locking cleanup for serial/console initializations - other minor cleanups All of these have been in linux-next with no reported issues. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- iG0EABECAC0WIQT0tgzFv3jCIUoxPcsxR9QN2y37KQUCXyv30A8cZ3JlZ0Brcm9h aC5jb20ACgkQMUfUDdst+ynW+gCgv+OqxT0jeNRAMSQcpMvP3wTBMKIAn1StfjJ4 y8uwZuQQimD49uj8XtDq =bKSv -----END PGP SIGNATURE----- Merge tag 'tty-5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty Pull tty/serial updates from Greg KH: "Here is the large set of TTY and Serial driver patches for 5.9-rc1. Lots of bugfixes in here, thanks to syzbot fuzzing for serial and vt and console code. Other highlights include: - much needed vt/vc code cleanup from Jiri Slaby - 8250 driver fixes and additions - various serial driver updates and feature enhancements - locking cleanup for serial/console initializations - other minor cleanups All of these have been in linux-next with no reported issues" * tag 'tty-5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (90 commits) MAINTAINERS: enlist Greg formally for console stuff vgacon: Fix for missing check in scrollback handling Revert "serial: 8250: Let serial core initialise spin lock" serial: 8250: Let serial core initialise spin lock tty: keyboard, do not speculate on func_table index serial: stm32: Add RS485 RTS GPIO control serial: 8250_dw: Fix common clocks usage race condition serial: 8250_dw: Pass the same rate to the clk round and set rate methods serial: 8250_dw: Simplify the ref clock rate setting procedure serial: 8250: Add 8250 port clock update method tty: serial: imx: add imx earlycon driver tty: serial: imx: enable imx serial console port as module tty/synclink: remove leftover bits of non-PCI card support tty: Use the preferred form for passing the size of a structure type tty: Fix identation issues in struct serial_struct32 tty: Avoid the use of one-element arrays serial: msm_serial: add sparse context annotation serial: pmac_zilog: add sparse context annotation newport_con: vc_color is now in state serial: imx: use hrtimers for rs485 delays ...
This commit is contained in:
commit
d6efb3ac3e
63 changed files with 1846 additions and 1612 deletions
|
|
@ -24,17 +24,13 @@ struct module;
|
|||
struct tty_struct;
|
||||
struct notifier_block;
|
||||
|
||||
/*
|
||||
* this is what the terminal answers to a ESC-Z or csi0c query.
|
||||
*/
|
||||
#define VT100ID "\033[?1;2c"
|
||||
#define VT102ID "\033[?6c"
|
||||
|
||||
enum con_scroll {
|
||||
SM_UP,
|
||||
SM_DOWN,
|
||||
};
|
||||
|
||||
enum vc_intensity;
|
||||
|
||||
/**
|
||||
* struct consw - callbacks for consoles
|
||||
*
|
||||
|
|
@ -74,8 +70,9 @@ struct consw {
|
|||
void (*con_scrolldelta)(struct vc_data *vc, int lines);
|
||||
int (*con_set_origin)(struct vc_data *vc);
|
||||
void (*con_save_screen)(struct vc_data *vc);
|
||||
u8 (*con_build_attr)(struct vc_data *vc, u8 color, u8 intensity,
|
||||
u8 blink, u8 underline, u8 reverse, u8 italic);
|
||||
u8 (*con_build_attr)(struct vc_data *vc, u8 color,
|
||||
enum vc_intensity intensity,
|
||||
bool blink, bool underline, bool reverse, bool italic);
|
||||
void (*con_invert_region)(struct vc_data *vc, u16 *p, int count);
|
||||
u16 *(*con_screen_pos)(struct vc_data *vc, int offset);
|
||||
unsigned long (*con_getxy)(struct vc_data *vc, unsigned long position,
|
||||
|
|
|
|||
|
|
@ -21,6 +21,43 @@ struct uni_pagedir;
|
|||
struct uni_screen;
|
||||
|
||||
#define NPAR 16
|
||||
#define VC_TABSTOPS_COUNT 256U
|
||||
|
||||
enum vc_intensity {
|
||||
VCI_HALF_BRIGHT,
|
||||
VCI_NORMAL,
|
||||
VCI_BOLD,
|
||||
VCI_MASK = 0x3,
|
||||
};
|
||||
|
||||
/**
|
||||
* struct vc_state -- state of a VC
|
||||
* @x: cursor's x-position
|
||||
* @y: cursor's y-position
|
||||
* @color: foreground & background colors
|
||||
* @Gx_charset: what's G0/G1 slot set to (like GRAF_MAP, LAT1_MAP)
|
||||
* @charset: what character set to use (0=G0 or 1=G1)
|
||||
* @intensity: see enum vc_intensity for values
|
||||
* @reverse: reversed foreground/background colors
|
||||
*
|
||||
* These members are defined separately from struct vc_data as we save &
|
||||
* restore them at times.
|
||||
*/
|
||||
struct vc_state {
|
||||
unsigned int x, y;
|
||||
|
||||
unsigned char color;
|
||||
|
||||
unsigned char Gx_charset[2];
|
||||
unsigned int charset : 1;
|
||||
|
||||
/* attribute flags */
|
||||
enum vc_intensity intensity;
|
||||
bool italic;
|
||||
bool underline;
|
||||
bool blink;
|
||||
bool reverse;
|
||||
};
|
||||
|
||||
/*
|
||||
* Example: vc_data of a console that was scrolled 3 lines down.
|
||||
|
|
@ -57,6 +94,8 @@ struct uni_screen;
|
|||
struct vc_data {
|
||||
struct tty_port port; /* Upper level data */
|
||||
|
||||
struct vc_state state, saved_state;
|
||||
|
||||
unsigned short vc_num; /* Console number */
|
||||
unsigned int vc_cols; /* [#] Console size */
|
||||
unsigned int vc_rows;
|
||||
|
|
@ -73,8 +112,6 @@ struct vc_data {
|
|||
/* attributes for all characters on screen */
|
||||
unsigned char vc_attr; /* Current attributes */
|
||||
unsigned char vc_def_color; /* Default colors */
|
||||
unsigned char vc_color; /* Foreground & background */
|
||||
unsigned char vc_s_color; /* Saved foreground & background */
|
||||
unsigned char vc_ulcolor; /* Color for underline mode */
|
||||
unsigned char vc_itcolor;
|
||||
unsigned char vc_halfcolor; /* Color for half intensity mode */
|
||||
|
|
@ -82,8 +119,6 @@ struct vc_data {
|
|||
unsigned int vc_cursor_type;
|
||||
unsigned short vc_complement_mask; /* [#] Xor mask for mouse pointer */
|
||||
unsigned short vc_s_complement_mask; /* Saved mouse pointer mask */
|
||||
unsigned int vc_x, vc_y; /* Cursor position */
|
||||
unsigned int vc_saved_x, vc_saved_y;
|
||||
unsigned long vc_pos; /* Cursor address */
|
||||
/* fonts */
|
||||
unsigned short vc_hi_font_mask; /* [#] Attribute set for upper 256 chars of font or 0 if not supported */
|
||||
|
|
@ -98,8 +133,6 @@ struct vc_data {
|
|||
int vt_newvt;
|
||||
wait_queue_head_t paste_wait;
|
||||
/* mode flags */
|
||||
unsigned int vc_charset : 1; /* Character set G0 / G1 */
|
||||
unsigned int vc_s_charset : 1; /* Saved character set */
|
||||
unsigned int vc_disp_ctrl : 1; /* Display chars < 32? */
|
||||
unsigned int vc_toggle_meta : 1; /* Toggle high bit? */
|
||||
unsigned int vc_decscnm : 1; /* Screen Mode */
|
||||
|
|
@ -107,17 +140,6 @@ struct vc_data {
|
|||
unsigned int vc_decawm : 1; /* Autowrap Mode */
|
||||
unsigned int vc_deccm : 1; /* Cursor Visible */
|
||||
unsigned int vc_decim : 1; /* Insert Mode */
|
||||
/* attribute flags */
|
||||
unsigned int vc_intensity : 2; /* 0=half-bright, 1=normal, 2=bold */
|
||||
unsigned int vc_italic:1;
|
||||
unsigned int vc_underline : 1;
|
||||
unsigned int vc_blink : 1;
|
||||
unsigned int vc_reverse : 1;
|
||||
unsigned int vc_s_intensity : 2; /* saved rendition */
|
||||
unsigned int vc_s_italic:1;
|
||||
unsigned int vc_s_underline : 1;
|
||||
unsigned int vc_s_blink : 1;
|
||||
unsigned int vc_s_reverse : 1;
|
||||
/* misc */
|
||||
unsigned int vc_priv : 3;
|
||||
unsigned int vc_need_wrap : 1;
|
||||
|
|
@ -126,13 +148,9 @@ struct vc_data {
|
|||
unsigned char vc_utf : 1; /* Unicode UTF-8 encoding */
|
||||
unsigned char vc_utf_count;
|
||||
int vc_utf_char;
|
||||
unsigned int vc_tab_stop[8]; /* Tab stops. 256 columns. */
|
||||
DECLARE_BITMAP(vc_tab_stop, VC_TABSTOPS_COUNT); /* Tab stops. 256 columns. */
|
||||
unsigned char vc_palette[16*3]; /* Colour palette for VGA+ */
|
||||
unsigned short * vc_translate;
|
||||
unsigned char vc_G0_charset;
|
||||
unsigned char vc_G1_charset;
|
||||
unsigned char vc_saved_G0;
|
||||
unsigned char vc_saved_G1;
|
||||
unsigned int vc_resize_user; /* resize request from user */
|
||||
unsigned int vc_bell_pitch; /* Console bell pitch */
|
||||
unsigned int vc_bell_duration; /* Console bell duration */
|
||||
|
|
@ -149,24 +167,29 @@ struct vc {
|
|||
struct work_struct SAK_work;
|
||||
|
||||
/* might add scrmem, kbd at some time,
|
||||
to have everything in one place - the disadvantage
|
||||
would be that vc_cons etc can no longer be static */
|
||||
to have everything in one place */
|
||||
};
|
||||
|
||||
extern struct vc vc_cons [MAX_NR_CONSOLES];
|
||||
extern void vc_SAK(struct work_struct *work);
|
||||
|
||||
#define CUR_DEF 0
|
||||
#define CUR_NONE 1
|
||||
#define CUR_UNDERLINE 2
|
||||
#define CUR_LOWER_THIRD 3
|
||||
#define CUR_LOWER_HALF 4
|
||||
#define CUR_TWO_THIRDS 5
|
||||
#define CUR_BLOCK 6
|
||||
#define CUR_HWMASK 0x0f
|
||||
#define CUR_SWMASK 0xfff0
|
||||
|
||||
#define CUR_DEFAULT CUR_UNDERLINE
|
||||
#define CUR_MAKE(size, change, set) ((size) | ((change) << 8) | \
|
||||
((set) << 16))
|
||||
#define CUR_SIZE(c) ((c) & 0x00000f)
|
||||
# define CUR_DEF 0
|
||||
# define CUR_NONE 1
|
||||
# define CUR_UNDERLINE 2
|
||||
# define CUR_LOWER_THIRD 3
|
||||
# define CUR_LOWER_HALF 4
|
||||
# define CUR_TWO_THIRDS 5
|
||||
# define CUR_BLOCK 6
|
||||
#define CUR_SW 0x000010
|
||||
#define CUR_ALWAYS_BG 0x000020
|
||||
#define CUR_INVERT_FG_BG 0x000040
|
||||
#define CUR_FG 0x000700
|
||||
#define CUR_BG 0x007000
|
||||
#define CUR_CHANGE(c) ((c) & 0x00ff00)
|
||||
#define CUR_SET(c) (((c) & 0xff0000) >> 8)
|
||||
|
||||
bool con_is_visible(const struct vc_data *vc);
|
||||
|
||||
|
|
|
|||
|
|
@ -155,6 +155,8 @@ extern int early_serial_setup(struct uart_port *port);
|
|||
|
||||
extern int early_serial8250_setup(struct earlycon_device *device,
|
||||
const char *options);
|
||||
extern void serial8250_update_uartclk(struct uart_port *port,
|
||||
unsigned int uartclk);
|
||||
extern void serial8250_do_set_termios(struct uart_port *port,
|
||||
struct ktermios *termios, struct ktermios *old);
|
||||
extern void serial8250_do_set_ldisc(struct uart_port *port,
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@
|
|||
#include <linux/bitops.h>
|
||||
#include <linux/compiler.h>
|
||||
#include <linux/console.h>
|
||||
#include <linux/gpio/consumer.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/circ_buf.h>
|
||||
#include <linux/spinlock.h>
|
||||
|
|
@ -30,6 +29,7 @@
|
|||
struct uart_port;
|
||||
struct serial_struct;
|
||||
struct device;
|
||||
struct gpio_desc;
|
||||
|
||||
/*
|
||||
* This structure describes all the operations that can be done on the
|
||||
|
|
|
|||
|
|
@ -74,8 +74,6 @@ int con_set_default_unimap(struct vc_data *vc);
|
|||
void con_free_unimap(struct vc_data *vc);
|
||||
int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc);
|
||||
|
||||
#define vc_translate(vc, c) ((vc)->vc_translate[(c) | \
|
||||
((vc)->vc_toggle_meta ? 0x80 : 0)])
|
||||
#else
|
||||
static inline int con_set_trans_old(unsigned char __user *table)
|
||||
{
|
||||
|
|
@ -124,7 +122,6 @@ int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#define vc_translate(vc, c) (c)
|
||||
#endif
|
||||
|
||||
/* vt.c */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue