Home
last modified time | relevance | path

Searched refs:vesa_mode (Results 1 – 4 of 4) sorted by relevance

/rk3399_rockchip-uboot/drivers/bios_emulator/
H A Datibios.c82 int vesa_mode, struct vbe_mode_info *mode_info) in atibios_debug_mode() argument
173 static int atibios_set_vesa_mode(RMREGS *regs, int vesa_mode, in atibios_set_vesa_mode() argument
181 debug("VBE: Setting VESA mode %#04x\n", vesa_mode); in atibios_set_vesa_mode()
183 regs->e.ebx = vesa_mode; in atibios_set_vesa_mode()
193 debug("VBE: Geting info for VESA mode %#04x\n", vesa_mode); in atibios_set_vesa_mode()
195 regs->e.ecx = vesa_mode; in atibios_set_vesa_mode()
207 mode_info->video_mode = vesa_mode; in atibios_set_vesa_mode()
231 int vesa_mode, struct vbe_mode_info *mode_info) in PCI_doBIOSPOST() argument
234 int vesa_mode, struct vbe_mode_info *mode_info) in PCI_doBIOSPOST()
268 atibios_debug_mode(vga_info, &regs, vesa_mode, mode_info); in PCI_doBIOSPOST()
[all …]
/rk3399_rockchip-uboot/include/
H A Dbios_emul.h54 void bios_run_on_x86(struct udevice *dev, unsigned long addr, int vesa_mode,
73 BE_VGAInfo *vga_info, int clean_up, int vesa_mode,
79 BE_VGAInfo *vga_info, int clean_up, int vesa_mode,
/rk3399_rockchip-uboot/arch/x86/lib/
H A Dbios.c223 static void vbe_set_graphics(int vesa_mode, struct vbe_mode_info *mode_info) in vbe_set_graphics() argument
227 mode_info->video_mode = (1 << 14) | vesa_mode; in vbe_set_graphics()
245 void bios_run_on_x86(struct udevice *dev, unsigned long addr, int vesa_mode, in bios_run_on_x86() argument
276 if (vesa_mode != -1) in bios_run_on_x86()
277 vbe_set_graphics(vesa_mode, mode_info); in bios_run_on_x86()
/rk3399_rockchip-uboot/drivers/pci/
H A Dpci_rom.c239 int vesa_mode = -1; in dm_pci_run_vga_bios() local
268 vesa_mode = CONFIG_FRAMEBUFFER_VESA_MODE; in dm_pci_run_vga_bios()
270 debug("Selected vesa mode %#x\n", vesa_mode); in dm_pci_run_vga_bios()
305 true, vesa_mode, &mode_info); in dm_pci_run_vga_bios()
313 bios_run_on_x86(dev, (unsigned long)ram, vesa_mode, in dm_pci_run_vga_bios()