Lines Matching defs:vga
422 gfx_vga_mode(gfx_vga_struct * vga, int xres, int yres, int bpp, int hz)
432 *vga = gfx_vga_modes[i];
444 vga->stdCRTCregs[0x13] = (unsigned char)pitch;
445 vga->extCRTCregs[0x05] = (unsigned char)((pitch >> 8) & 0x03);
452 vga->extCRTCregs[0x06] = CRTC_BIT_16BPP | CRTC_BIT_555;
455 vga->extCRTCregs[0x06] = CRTC_BIT_16BPP;
458 vga->extCRTCregs[0x06] = 0;
475 gfx_vga_pitch(gfx_vga_struct * vga, unsigned short pitch)
478 vga->stdCRTCregs[0x13] = (unsigned char)pitch;
479 vga->extCRTCregs[0x05] = (unsigned char)((pitch >> 8) & 0x03);
492 gfx_vga_save(gfx_vga_struct * vga, int flags)
505 vga->miscOutput = INB(0x3CC);
515 vga->stdCRTCregs[i] = INB(crtcdata);
526 vga->extCRTCregs[i] = INB(crtcdata);
568 gfx_vga_restore(gfx_vga_struct * vga, int flags)
581 OUTB(0x3C2, vga->miscOutput);
596 OUTB(crtcdata, vga->stdCRTCregs[i]);
613 OUTB(crtcdata, vga->extCRTCregs[i]);
623 if (vga->extCRTCregs[0x03] & 1) {