Lines Matching refs:concfg
320 struct virtio_console_config concfg; in vtcon_attach() local
336 vtcon_read_config(sc, &concfg); in vtcon_attach()
337 vtcon_determine_max_ports(sc, &concfg); in vtcon_attach()
467 vtcon_read_config(struct vtcon_softc *sc, struct virtio_console_config *concfg) in vtcon_read_config() argument
473 bzero(concfg, sizeof(struct virtio_console_config)); in vtcon_read_config()
475 VTCON_GET_CONFIG(dev, VIRTIO_CONSOLE_F_SIZE, cols, concfg); in vtcon_read_config()
476 VTCON_GET_CONFIG(dev, VIRTIO_CONSOLE_F_SIZE, rows, concfg); in vtcon_read_config()
477 VTCON_GET_CONFIG(dev, VIRTIO_CONSOLE_F_MULTIPORT, max_nr_ports, concfg); in vtcon_read_config()
553 struct virtio_console_config *concfg) in vtcon_determine_max_ports() argument
558 min(concfg->max_nr_ports, VTCON_MAX_PORTS); in vtcon_determine_max_ports()
1452 struct virtio_console_config concfg; in vtcon_get_console_size() local
1457 vtcon_read_config(sc, &concfg); in vtcon_get_console_size()
1459 *cols = concfg.cols; in vtcon_get_console_size()
1460 *rows = concfg.rows; in vtcon_get_console_size()