Lines Matching refs:bgrt_tab
132 return bgrt_tab.image_offset_x == expected_xoffset; in efifb_bgrt_sanity_check()
153 if (!bgrt_tab.image_address) { in efifb_show_boot_graphics()
158 if (bgrt_tab.status & 0x06) { in efifb_show_boot_graphics()
174 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()
225 dst_x = bgrt_tab.image_offset_x; in efifb_show_boot_graphics()