Lines Matching full:hvc
29 #include "../tty/hvc/hvc_console.h"
39 * that callbacks from hvc for get_chars(), put_chars() work properly
67 /* The hvc device associated with this console port */
68 struct hvc_struct *hvc; member
75 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
76 * number passed on by the hvc callbacks to us to
201 * hooked up to an hvc console
324 if (port->cons.hvc) in is_console_port()
1035 * via /dev/hvc in port_fops_open()
1162 hvc_resize(port->cons.hvc, port->cons.ws); in resize_console()
1200 * up with an hvc console. in init_port_console()
1220 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE); in init_port_console()
1221 if (IS_ERR(port->cons.hvc)) { in init_port_console()
1222 ret = PTR_ERR(port->cons.hvc); in init_port_console()
1224 "error %d allocating hvc for port\n", ret); in init_port_console()
1225 port->cons.hvc = NULL; in init_port_console()
1342 port->cons.hvc = NULL; in add_port()
1498 hvc_remove(port->cons.hvc); in unplug_port()
1594 port->cons.hvc->irq_requested = 1; in handle_control_message()
1741 * hooked up with an HVC console and is initialized with in in_intr()
1755 if (is_console_port(port) && hvc_poll(port->cons.hvc)) in in_intr()