Lines Matching full:sti
2 * linux/drivers/video/console/sticon.c - console driver using HP's STI firmware
70 return "STI console"; in sticon_startup()
132 struct sti_struct *sti = sticon_sti; in sticon_scroll() local
141 sti_bmove(sti, t + count, 0, t, 0, b - t - count, conp->vc_cols, in sticon_scroll()
143 sti_clear(sti, b - count, 0, count, conp->vc_cols, in sticon_scroll()
148 sti_bmove(sti, t, 0, t + count, 0, b - t - count, conp->vc_cols, in sticon_scroll()
150 sti_clear(sti, t, 0, count, conp->vc_cols, in sticon_scroll()
173 struct sti_struct *sti = sticon_sti; in sticon_set_font() local
222 sti_font_convert_bytemode(sti, cooked_font); in sticon_set_font()
252 vc_cols = sti_onscreen_x(sti) / cooked_font->width; in sticon_set_font()
253 vc_rows = sti_onscreen_y(sti) / cooked_font->height; in sticon_set_font()
276 struct sti_struct *sti = sticon_sti; in sticon_init() local
279 sti_set(sti, 0, 0, sti_onscreen_y(sti), sti_onscreen_x(sti), 0); in sticon_init()
280 vc_cols = sti_onscreen_x(sti) / sti->font->width; in sticon_init()
281 vc_rows = sti_onscreen_y(sti) / sti->font->height; in sticon_init()
395 pr_info("sticon: Initializing STI text console.\n"); in sticonsole_init()