Lines Matching refs:gop
516 extern EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; in efi_find_framebuffer()
521 if (gop != NULL) in efi_find_framebuffer()
522 return (efifb_from_gop(efifb, gop->Mode, gop->Mode->Info)); in efi_find_framebuffer()
551 gop = tgop; in efi_find_framebuffer()
555 gop = tgop; in efi_find_framebuffer()
561 if (gop != NULL) { in efi_find_framebuffer()
564 default_mode = gop->Mode->Mode; in efi_find_framebuffer()
567 if (mode != gop->Mode->Mode) in efi_find_framebuffer()
568 efifb_set_mode(gop, mode); in efi_find_framebuffer()
569 return (efifb_from_gop(efifb, gop->Mode, gop->Mode->Info)); in efi_find_framebuffer()
630 efifb_set_mode(EFI_GRAPHICS_OUTPUT_PROTOCOL *gop, uint_t mode) in efifb_set_mode() argument
634 status = gop->SetMode(gop, mode); in efifb_set_mode()
652 extern EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; in efifb_find_mode_xydm()
668 for (mode = 0; mode < gop->Mode->MaxMode; mode++) { in efifb_find_mode_xydm()
669 status = gop->QueryMode(gop, mode, &infosz, &info); in efifb_find_mode_xydm()
680 efifb_from_gop(&fb, gop->Mode, info); in efifb_find_mode_xydm()
692 return (gop->Mode->MaxMode); in efifb_find_mode_xydm()
698 extern EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; in efifb_find_mode()
702 return (gop->Mode->MaxMode); in efifb_find_mode()
715 extern EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; in gop_default_mode()
718 mode = gop->Mode->MaxMode; in gop_default_mode()
722 if (mode == gop->Mode->MaxMode) { in gop_default_mode()
731 if (mode == gop->Mode->MaxMode) in gop_default_mode()
744 extern EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; in command_gop()
750 if (gop == NULL) { in command_gop()
781 if (mode != gop->Mode->Mode) in command_gop()
782 efifb_set_mode(gop, mode); in command_gop()
809 if (mode == gop->Mode->MaxMode) in command_gop()
810 mode = gop->Mode->Mode; in command_gop()
813 rv = efifb_set_mode(gop, mode); in command_gop()
822 print_efifb(gop->Mode->Mode, &efifb, 1); in command_gop()
847 for (mode = 0; mode < gop->Mode->MaxMode; mode++) { in command_gop()
848 status = gop->QueryMode(gop, mode, &infosz, &info); in command_gop()
851 efifb_from_gop(&fb, gop->Mode, info); in command_gop()