Home
last modified time | relevance | path

Searched refs:tty_driver (Results 1 – 25 of 74) sorted by relevance

123

/Linux-v5.15/include/linux/
Dtty_driver.h243 struct tty_driver;
248 struct tty_struct * (*lookup)(struct tty_driver *driver,
250 int (*install)(struct tty_driver *driver, struct tty_struct *tty);
251 void (*remove)(struct tty_driver *driver, struct tty_struct *tty);
287 int (*poll_init)(struct tty_driver *driver, int line, char *options);
288 int (*poll_get_char)(struct tty_driver *driver, int line);
289 void (*poll_put_char)(struct tty_driver *driver, int line, char ch);
294 struct tty_driver { struct
310 struct tty_driver *other; /* only used for the PTY driver */ argument
330 extern struct tty_driver *__tty_alloc_driver(unsigned int lines, argument
[all …]
Dtty_port.h22 struct tty_driver;
92 void tty_port_link_device(struct tty_port *port, struct tty_driver *driver,
95 struct tty_driver *driver, unsigned index,
98 struct tty_driver *driver, unsigned index,
102 struct tty_driver *driver, unsigned index,
105 struct tty_driver *driver, unsigned index,
109 struct tty_driver *driver, unsigned index);
198 int tty_port_install(struct tty_port *port, struct tty_driver *driver,
Dserdev.h310 struct tty_driver;
315 struct tty_driver *drv, int idx);
320 struct tty_driver *drv, int idx) in serdev_tty_port_register()
Dconsole.h144 struct tty_driver *(*device)(struct console *, int *);
180 extern struct tty_driver *console_device(int *);
Dserial_core.h304 struct tty_driver;
320 struct tty_driver *tty_driver; member
399 struct tty_driver *uart_console_device(struct console *co, int *index);
/Linux-v5.15/drivers/staging/gdm724x/
Dgdm_tty.c32 static struct tty_driver *gdm_driver[TTY_MAX_COUNT];
54 static int gdm_tty_install(struct tty_driver *driver, struct tty_struct *tty) in gdm_tty_install()
279 struct tty_driver *tty_driver; in register_lte_tty_driver() local
284 tty_driver = tty_alloc_driver(GDM_TTY_MINOR, in register_lte_tty_driver()
286 if (IS_ERR(tty_driver)) in register_lte_tty_driver()
287 return PTR_ERR(tty_driver); in register_lte_tty_driver()
289 tty_driver->owner = THIS_MODULE; in register_lte_tty_driver()
290 tty_driver->driver_name = DRIVER_STRING[i]; in register_lte_tty_driver()
291 tty_driver->name = DEVICE_STRING[i]; in register_lte_tty_driver()
292 tty_driver->major = GDM_TTY_MAJOR; in register_lte_tty_driver()
[all …]
/Linux-v5.15/fs/proc/
Dproc_tty.c28 static void show_tty_range(struct seq_file *m, struct tty_driver *p, in show_tty_range()
71 struct tty_driver *p = list_entry(v, struct tty_driver, tty_drivers); in show_tty_driver()
133 void proc_tty_register_driver(struct tty_driver *driver) in proc_tty_register_driver()
149 void proc_tty_unregister_driver(struct tty_driver *driver) in proc_tty_unregister_driver()
/Linux-v5.15/drivers/tty/
Dttynull.c14 static struct tty_driver *ttynull_driver;
51 static struct tty_driver *ttynull_device(struct console *c, int *index) in ttynull_device()
64 struct tty_driver *driver; in ttynull_init()
Dtty_io.c316 static struct tty_driver *get_tty_driver(dev_t device, int *index) in get_tty_driver()
318 struct tty_driver *p; in get_tty_driver()
346 struct tty_driver *p; in tty_dev_name_to_number()
392 struct tty_driver *tty_find_polling_driver(char *name, int *line) in tty_find_polling_driver()
394 struct tty_driver *p, *res = NULL; in tty_find_polling_driver()
1201 static void pty_line_name(struct tty_driver *driver, int index, char *p) in pty_line_name()
1222 static ssize_t tty_line_name(struct tty_driver *driver, int index, char *p) in tty_line_name()
1242 static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver, in tty_driver_lookup_tty()
1290 int tty_standard_install(struct tty_driver *driver, struct tty_struct *tty) in tty_standard_install()
1312 static int tty_driver_install_tty(struct tty_driver *driver, in tty_driver_install_tty()
[all …]
Dtty_port.c90 struct tty_driver *driver, unsigned index) in tty_port_link_device()
110 struct tty_driver *driver, unsigned index, in tty_port_register_device()
131 struct tty_driver *driver, unsigned index, in tty_port_register_device_attr()
154 struct tty_driver *driver, unsigned index, in tty_port_register_device_attr_serdev()
184 struct tty_driver *driver, unsigned index, in tty_port_register_device_serdev()
203 struct tty_driver *driver, unsigned index) in tty_port_unregister_device()
659 int tty_port_install(struct tty_port *port, struct tty_driver *driver, in tty_port_install()
Dpty.c42 static struct tty_driver *ptm_driver;
43 static struct tty_driver *pts_driver;
369 static int pty_common_install(struct tty_driver *driver, struct tty_struct *tty, in pty_common_install()
449 static int pty_install(struct tty_driver *driver, struct tty_struct *tty) in pty_install()
454 static void pty_remove(struct tty_driver *driver, struct tty_struct *tty) in pty_remove()
541 struct tty_driver *pty_driver, *pty_slave_driver; in legacy_pty_init()
698 static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver, in ptm_unix98_lookup()
715 static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver, in pts_unix98_lookup()
729 static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty) in pty_unix98_install()
735 static void pty_unix98_remove(struct tty_driver *driver, struct tty_struct *tty) in pty_unix98_remove()
Dgoldfish.c48 static struct tty_driver *goldfish_tty_driver;
214 static struct tty_driver *goldfish_tty_console_device(struct console *c, in goldfish_tty_console_device()
247 struct tty_driver *tty; in goldfish_tty_create_driver()
/Linux-v5.15/arch/m68k/emu/
Dnfcon.c24 static struct tty_driver *nfcon_tty_driver;
49 static struct tty_driver *nfcon_device(struct console *con, int *index) in nfcon_device()
123 struct tty_driver *driver; in nfcon_init()
/Linux-v5.15/arch/xtensa/platforms/iss/
Dconsole.c36 static struct tty_driver *serial_driver;
139 struct tty_driver *driver; in rs_init()
208 static struct tty_driver* iss_console_device(struct console *c, int *index) in iss_console_device()
/Linux-v5.15/arch/parisc/kernel/
Dpdc_cons.c137 static struct tty_driver *pdc_console_tty_driver;
141 struct tty_driver *driver; in pdc_console_tty_driver_init()
194 static struct tty_driver * pdc_console_device (struct console *c, int *index) in pdc_console_device()
/Linux-v5.15/arch/um/drivers/
Dline.h31 struct tty_driver *driver;
61 extern int line_install(struct tty_driver *driver, struct tty_struct *tty,
Dssl.c89 static int ssl_install(struct tty_driver *driver, struct tty_struct *tty) in ssl_install()
124 static struct tty_driver *ssl_console_device(struct console *c, int *index) in ssl_console_device()
Dstdio_console.c95 static int con_install(struct tty_driver *driver, struct tty_struct *tty) in con_install()
125 static struct tty_driver *uml_console_device(struct console *c, int *index) in uml_console_device()
/Linux-v5.15/drivers/usb/serial/
Dconsole.c246 static struct tty_driver *usb_console_device(struct console *co, int *index) in usb_console_device()
248 struct tty_driver **p = (struct tty_driver **)co->data; in usb_console_device()
/Linux-v5.15/arch/alpha/kernel/
Dsrmcons.c190 static struct tty_driver *srmcons_driver;
204 struct tty_driver *driver; in srmcons_init()
249 static struct tty_driver *
/Linux-v5.15/drivers/tty/hvc/
Dhvc_console.c54 static struct tty_driver *hvc_driver;
197 static struct tty_driver *hvc_console_device(struct console *c, int *index) in hvc_console_device()
325 static int hvc_install(struct tty_driver *driver, struct tty_struct *tty) in hvc_install()
856 static int hvc_poll_init(struct tty_driver *driver, int line, char *options) in hvc_poll_init()
861 static int hvc_poll_get_char(struct tty_driver *driver, int line) in hvc_poll_get_char()
876 static void hvc_poll_put_char(struct tty_driver *driver, int line, char ch) in hvc_poll_put_char()
1020 struct tty_driver *drv; in hvc_init()
/Linux-v5.15/drivers/tty/serial/
Dkgdb_nmi.c66 static struct tty_driver *kgdb_nmi_tty_driver;
68 static struct tty_driver *kgdb_nmi_console_device(struct console *co, int *idx) in kgdb_nmi_console_device()
234 static int kgdb_nmi_tty_install(struct tty_driver *drv, struct tty_struct *tty) in kgdb_nmi_tty_install()
Dserial_core.c1731 static int uart_install(struct tty_driver *driver, struct tty_struct *tty) in uart_install()
1880 struct tty_driver *ttydrv = m->private; in uart_proc_show()
2133 struct tty_driver *tty_drv = match->driver->tty_driver; in serial_match_port()
2390 static int uart_poll_init(struct tty_driver *driver, int line, char *options) in uart_poll_init()
2429 static int uart_poll_get_char(struct tty_driver *driver, int line) in uart_poll_get_char()
2445 static void uart_poll_put_char(struct tty_driver *driver, int line, char ch) in uart_poll_put_char()
2520 struct tty_driver *normal; in uart_register_driver()
2540 drv->tty_driver = normal; in uart_register_driver()
2589 struct tty_driver *p = drv->tty_driver; in uart_unregister_driver()
2598 drv->tty_driver = NULL; in uart_unregister_driver()
[all …]
/Linux-v5.15/drivers/s390/char/
Dsclp_tty.h16 extern struct tty_driver *sclp_tty_driver;
Dtty3270.h13 extern struct tty_driver *tty3270_driver;

123