Searched refs:gop (Results 1 - 5 of 5) sorted by relevance

/u-boot/lib/efi_selftest/
H A Defi_selftest_gop.c14 static struct efi_gop *gop; variable in typeref:struct:efi_gop
30 ret = boottime->locate_protocol(&efi_gop_guid, NULL, (void **)&gop);
32 gop = NULL;
61 if (!gop)
64 if (!gop->mode) {
68 max_mode = gop->mode->max_mode;
76 ret = gop->query_mode(gop, i, &size, &info);
93 EFI_UNIT_TEST(gop) = { variable
H A Defi_selftest_bitblt.c33 static struct efi_gop *gop; variable in typeref:struct:efi_gop
79 if (pos->x >= WIDTH + gop->mode->info->width)
85 if (pos->x >= gop->mode->info->width) {
86 width = WIDTH + gop->mode->info->width - pos->x;
94 gop->blt(gop, bitmap, EFI_BLT_BUFFER_TO_VIDEO, sx, 0, dx, pos->y,
126 ret = boottime->locate_protocol(&efi_gop_guid, NULL, (void **)&gop);
128 gop = NULL;
244 if (!gop)
247 if (!gop
[all...]
/u-boot/cmd/
H A Delf.c133 struct efi_gop_info *gop; local
200 gop = (struct efi_gop_info *)(base + EFI_GOP_INFO_OFFSET);
201 gop->magic = EFI_GOP_INFO_MAGIC;
202 gop->info.version = 0;
203 gop->info.width = vesa->x_resolution;
204 gop->info.height = vesa->y_resolution;
205 gop->info.pixel_format = EFI_GOT_RGBA8;
206 gop->info.pixels_per_scanline = vesa->bytes_per_scanline / 4;
207 gop->fb_base = vesa->phys_base_ptr;
208 gop
[all...]
/u-boot/lib/efi/
H A Defi_stub.c307 struct efi_gop *gop; local
334 ret = boot->locate_protocol(&efi_gop_guid, NULL, (void **)&gop);
338 mode.fb_base = gop->mode->fb_base;
339 mode.fb_size = gop->mode->fb_size;
340 mode.info_size = gop->mode->info_size;
342 gop->mode->info,
/u-boot/drivers/video/
H A Defi.c72 struct efi_gop *gop; local
77 ret = boot->locate_protocol(&efi_gop_guid, NULL, (void **)&gop);
80 mode = gop->mode;

Completed in 173 milliseconds