Lines Matching full:vesa
104 struct vesa_mode_info *vesa; in write_coreboot_table() local
146 /* populate framebuffer table if we have sane vesa info */ in write_coreboot_table()
147 vesa = &mode_info.vesa; in write_coreboot_table()
148 if (vesa->x_resolution && vesa->y_resolution) { in write_coreboot_table()
153 fb->x_resolution = vesa->x_resolution; in write_coreboot_table()
154 fb->y_resolution = vesa->y_resolution; in write_coreboot_table()
155 fb->bits_per_pixel = vesa->bits_per_pixel; in write_coreboot_table()
156 fb->bytes_per_line = vesa->bytes_per_scanline; in write_coreboot_table()
157 fb->physical_address = vesa->phys_base_ptr; in write_coreboot_table()
158 fb->red_mask_size = vesa->red_mask_size; in write_coreboot_table()
159 fb->red_mask_pos = vesa->red_mask_pos; in write_coreboot_table()
160 fb->green_mask_size = vesa->green_mask_size; in write_coreboot_table()
161 fb->green_mask_pos = vesa->green_mask_pos; in write_coreboot_table()
162 fb->blue_mask_size = vesa->blue_mask_size; in write_coreboot_table()
163 fb->blue_mask_pos = vesa->blue_mask_pos; in write_coreboot_table()
164 fb->reserved_mask_size = vesa->reserved_mask_size; in write_coreboot_table()
165 fb->reserved_mask_pos = vesa->reserved_mask_pos; in write_coreboot_table()