Lines Matching full:sti
2 * linux/drivers/video/console/sticon.c - console driver using HP's STI firmware
71 return "STI console"; in sticon_startup()
133 struct sti_struct *sti = sticon_sti; in sticon_scroll() local
142 sti_bmove(sti, t + count, 0, t, 0, b - t - count, conp->vc_cols, in sticon_scroll()
144 sti_clear(sti, b - count, 0, count, conp->vc_cols, in sticon_scroll()
149 sti_bmove(sti, t, 0, t + count, 0, b - t - count, conp->vc_cols, in sticon_scroll()
151 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()
278 struct sti_struct *sti = sticon_sti; in sticon_init() local
281 sti_set(sti, 0, 0, sti_onscreen_y(sti), sti_onscreen_x(sti), 0); in sticon_init()
282 vc_cols = sti_onscreen_x(sti) / sti->font->width; in sticon_init()
283 vc_rows = sti_onscreen_y(sti) / sti->font->height; in sticon_init()
397 pr_info("sticon: Initializing STI text console on %s at [%s]\n", in sticonsole_init()