Lines Matching full:vesa

54 #include <dev/fb/vesa.h>
73 /* VESA video adapter state buffer stub */
82 MTX_SYSINIT(vesa_lock, &vesa_lock, "VESA lock", MTX_DEF);
100 /* VESA video adapter */
103 static SYSCTL_NODE(_debug, OID_AUTO, vesa, CTLFLAG_RD | CTLFLAG_MPSAFE, NULL,
104 "VESA debugging");
109 /* VESA functions */
171 /* VESA BIOS video modes */
284 dev == NULL ? "VESA" : device_get_nameunit(dev)); in vesa_bios_post()
302 /* VESA BIOS calls */
814 printf("VESA: failed to shadow video ROM\n"); in vesa_bios_init()
817 printf("VESA: INT 0x10 vector 0x%04x:0x%04x\n", in vesa_bios_init()
831 if (regs.R_AX != 0x004f || bcmp("VESA", vmbuf, 4) != 0) in vesa_bios_init()
838 printf("VESA: information block\n"); in vesa_bios_init()
853 printf("VESA: VBE version %d.%d is not supported; " in vesa_bios_init()
906 printf("Rejecting VESA %s mode: %d x %d x %d bpp " in vesa_bios_init()
924 printf("Rejecting VESA %s mode: %d x %d x %d bpp " in vesa_bios_init()
953 printf("Found VESA %s mode: %d x %d x %d bpp\n", in vesa_bios_init()
1034 printf("VESA: %d mode(s) found\n", modes); in vesa_bios_init()
1129 * If the VESA module has already been loaded, abort loading in vesa_configure()
1155 /* call VESA BIOS */ in vesa_configure()
1286 printf("VESA: set_mode(): %d(%x) -> %d(%x)\n", in vesa_set_mode()
1290 * If the current mode is a VESA mode and the new mode is not, in vesa_set_mode()
1325 printf("VESA: about to set a VESA mode...\n"); in vesa_set_mode()
1355 printf("VESA: mode set!\n"); in vesa_set_mode()
1384 printf("VESA: setting up LFB\n"); in vesa_set_mode()
1568 * error checking is kept minimal and let the VESA BIOS to in vesa_set_origin()
1627 /* XXX: use VESA DPMS */ in vesa_blank_display()
1861 "VESA: v%d.%d, %dk memory, flags:0x%x, mode table:%p (%x)\n", in vesa_bios_info()
1869 printf("VESA: %s\n", vesa_oemstr); in vesa_bios_info()
1877 printf("VESA: %s %s %s\n", in vesa_bios_info()
1892 printf("VESA: mode:0x%03x, flags:0x%04x", in vesa_bios_info()
1914 printf("VESA: window A:0x%x (%x), window B:0x%x (%x), ", in vesa_bios_info()
1960 /* if the adapter is currently in a VESA mode, don't unload */ in vesa_unload()
1964 * FIXME: if there is at least one vty which is in a VESA mode, in vesa_unload()
1998 "vesa",
2003 DECLARE_MODULE(vesa, vesa_mod, SI_SUB_DRIVERS, SI_ORDER_MIDDLE);
2004 MODULE_DEPEND(vesa, x86bios, 1, 1, 1);