Home | History | Annotate | Download | only in vgabios

Lines Matching refs:Info

34 // disable VESA/VBE2 check in vbe info
663 else if (cur_info->info.ModeAttributes & VBE_MODE_ATTRIBUTE_LINEAR_FRAME_BUFFER_MODE)
728 ; VBE Display Info - Display information on screen about the VBE
763 * the info block is 512 bytes in size)
860 size_64k = (Bit16u)((Bit32u)cur_info->info.XResolution * cur_info->info.XResolution * cur_info->info.BitsPerPixel) >> 19;
862 if ((cur_info->info.XResolution <= dispi_get_max_xres()) &&
863 (cur_info->info.BitsPerPixel <= dispi_get_max_bpp()) &&
873 printf("VBE mode %x (xres=%x / bpp=%02x) not supported \n", cur_info->mode,cur_info->info.XResolution,cur_info->info.BitsPerPixel);
903 ModeInfoBlock info;
923 memsetb(ss, &info, 0, sizeof(ModeInfoBlock));
924 memcpyb(ss, &info, 0xc000, &(cur_info->info), sizeof(ModeInfoBlockCompact));
926 info.NumberOfBanks = 1;
930 info.PhysBasePtr = ((Bit32u)lfb_addr << 16);
932 if (info.WinAAttributes & VBE_WINDOW_ATTRIBUTE_RELOCATABLE) {
933 info.WinFuncPtr = 0xC0000000UL;
934 *(Bit16u *)&(info.WinFuncPtr) = (Bit16u)(dispi_set_bank_farcall);
950 memcpyb(ES, DI, ss, &info, sizeof(info));
1005 cur_info->info.XResolution,
1006 cur_info->info.YResolution,
1007 cur_info->info.BitsPerPixel);
1013 if (cur_info->info.BitsPerPixel == 4)
1018 dispi_set_bpp(cur_info->info.BitsPerPixel);
1019 dispi_set_xres(cur_info->info.XResolution);
1020 dispi_set_yres(cur_info->info.YResolution);