Searched refs:bgrt_tab (Results 1 – 4 of 4) sorted by relevance
/Linux-v5.4/drivers/acpi/ |
D | bgrt.c | 21 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.version); in show_version() 28 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.status); in show_status() 35 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_type); in show_type() 42 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_offset_x); in show_xoffset() 49 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_offset_y); in show_yoffset() 91 if (!bgrt_tab.image_address) in bgrt_init() 94 bgrt_image = memremap(bgrt_tab.image_address, bgrt_image_size, in bgrt_init()
|
/Linux-v5.4/drivers/firmware/efi/ |
D | efi-bgrt.c | 19 struct acpi_table_bgrt bgrt_tab; variable 31 struct acpi_table_bgrt *bgrt = &bgrt_tab; in efi_bgrt_init() 39 if (table->length < sizeof(bgrt_tab)) { in efi_bgrt_init() 41 table->length, sizeof(bgrt_tab)); in efi_bgrt_init() 82 memset(bgrt, 0, sizeof(bgrt_tab)); in efi_bgrt_init()
|
/Linux-v5.4/drivers/video/fbdev/ |
D | efifb.c | 131 return bgrt_tab.image_offset_x == expected_xoffset; in efifb_bgrt_sanity_check() 152 if (!bgrt_tab.image_address) { in efifb_show_boot_graphics() 157 if (bgrt_tab.status & 0x06) { in efifb_show_boot_graphics() 173 bgrt_image = memremap(bgrt_tab.image_address, bgrt_image_size, in efifb_show_boot_graphics() 202 if ((bgrt_tab.image_offset_x + bmp_width) > si->lfb_width || in efifb_show_boot_graphics() 203 (bgrt_tab.image_offset_y + bmp_height) > si->lfb_height) in efifb_show_boot_graphics() 213 if (y < bgrt_tab.image_offset_y || in efifb_show_boot_graphics() 214 y >= (bgrt_tab.image_offset_y + bmp_height)) { in efifb_show_boot_graphics() 219 src_y = y - bgrt_tab.image_offset_y; in efifb_show_boot_graphics() 224 memset(dst, 0, bgrt_tab.image_offset_x * 4); in efifb_show_boot_graphics() [all …]
|
/Linux-v5.4/include/linux/ |
D | efi-bgrt.h | 14 extern struct acpi_table_bgrt bgrt_tab;
|