Lines Matching refs:bgrt_tab
137 return bgrt_tab.image_offset_x == expected_xoffset; in efifb_bgrt_sanity_check()
157 if (!bgrt_tab.image_address) { in efifb_show_boot_graphics()
162 if (bgrt_tab.status & 0x06) { in efifb_show_boot_graphics()
178 bgrt_image = memremap(bgrt_tab.image_address, bgrt_image_size, in efifb_show_boot_graphics()
206 if ((bgrt_tab.image_offset_x + bmp_width) > si->lfb_width || in efifb_show_boot_graphics()
207 (bgrt_tab.image_offset_y + bmp_height) > si->lfb_height) in efifb_show_boot_graphics()
217 if (y < bgrt_tab.image_offset_y || in efifb_show_boot_graphics()
218 y >= (bgrt_tab.image_offset_y + bmp_height)) { in efifb_show_boot_graphics()
223 src_y = y - bgrt_tab.image_offset_y; in efifb_show_boot_graphics()
228 memset(dst, 0, bgrt_tab.image_offset_x * 4); in efifb_show_boot_graphics()
229 dst_x = bgrt_tab.image_offset_x; in efifb_show_boot_graphics()