blob: b55696b4bc6aadad9b5b5b5db4cde2abb60cfb17 [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -08002
Elyes HAOUAS0edf6a52019-10-26 18:41:47 +02003#include <boot/coreboot_tables.h>
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -08004#include <console/console.h>
Patrick Rudolph92106b12020-02-19 12:54:06 +01005#include <fsp/graphics.h>
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -08006#include <fsp/util.h>
Patrick Georgi82690962017-09-27 15:24:58 +02007#include <soc/intel/common/vbt.h>
Elyes HAOUASbd1683d2019-05-15 21:05:37 +02008#include <types.h>
Patrick Rudolph92106b12020-02-19 12:54:06 +01009#include <framebuffer_info.h>
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -080010
11enum pixel_format {
12 pixel_rgbx_8bpc = 0,
13 pixel_bgrx_8bpc = 1,
14 pixel_bitmask = 2, /* defined by <rgb>_mask values */
15};
16
Lee Leahy5a9ca4d2016-09-28 17:15:00 -070017static const uint8_t fsp_graphics_info_guid[16] = {
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -080018 0xce, 0x2c, 0xf6, 0x39, 0x25, 0x68, 0x69, 0x46,
19 0xbb, 0x56, 0x54, 0x1a, 0xba, 0x75, 0x3a, 0x07
20};
21
22struct hob_graphics_info {
23 uint64_t framebuffer_base;
24 uint32_t framebuffer_size;
25 uint32_t version;
26 uint32_t horizontal_resolution;
27 uint32_t vertical_resolution;
28 uint32_t pixel_format; /* See enum pixel_format */
29 uint32_t red_mask;
30 uint32_t green_mask;
31 uint32_t blue_mask;
32 uint32_t reserved_mask;
33 uint32_t pixels_per_scanline;
Stefan Reinauer6a001132017-07-13 02:20:27 +020034} __packed;
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -080035
36struct pixel {
37 uint8_t pos;
38 uint8_t size;
39};
40
41static const struct fsp_framebuffer {
42 struct pixel red;
43 struct pixel green;
44 struct pixel blue;
45 struct pixel rsvd;
46} fsp_framebuffer_format_map[] = {
47 [pixel_rgbx_8bpc] = { {0, 8}, {8, 8}, {16, 8}, {24, 8} },
48 [pixel_bgrx_8bpc] = { {16, 8}, {8, 8}, {0, 8}, {24, 8} },
49};
50
Patrick Rudolph92106b12020-02-19 12:54:06 +010051
Tim Wawrzynczak84428f72021-09-14 13:59:33 -060052void fsp_report_framebuffer_info(const uintptr_t framebuffer_bar,
53 enum lb_fb_orientation orientation)
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -080054{
55 size_t size;
56 const struct hob_graphics_info *ginfo;
57 const struct fsp_framebuffer *fbinfo;
58
Patrick Rudolph92106b12020-02-19 12:54:06 +010059 /*
60 * Pci enumeration happens after silicon init.
61 * After enumeration graphic framebuffer base may be relocated.
62 */
63 if (!framebuffer_bar) {
64 printk(BIOS_ALERT, "Framebuffer BAR invalid\n");
65 return;
66 }
67
Lee Leahyac3b0a62016-07-27 07:40:25 -070068 ginfo = fsp_find_extension_hob_by_guid(fsp_graphics_info_guid, &size);
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -080069
70 if (!ginfo) {
71 printk(BIOS_ALERT, "Graphics hand-off block not found\n");
Patrick Rudolph92106b12020-02-19 12:54:06 +010072 return;
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -080073 }
74
Lee Leahy016d8f72016-05-17 08:40:02 -070075 if (ginfo->pixel_format >= ARRAY_SIZE(fsp_framebuffer_format_map)) {
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -080076 printk(BIOS_ALERT, "FSP set unknown framebuffer format: %d\n",
77 ginfo->pixel_format);
Patrick Rudolph92106b12020-02-19 12:54:06 +010078 return;
Alexandru Gagniucfb22ff42016-02-25 14:22:03 -080079 }
80
81 fbinfo = fsp_framebuffer_format_map + ginfo->pixel_format;
82
Patrick Rudolph92106b12020-02-19 12:54:06 +010083 const struct lb_framebuffer fb = {
84 .physical_address = framebuffer_bar,
85 .x_resolution = ginfo->horizontal_resolution,
86 .y_resolution = ginfo->vertical_resolution,
87 .bytes_per_line = ginfo->pixels_per_scanline * 4,
88 .bits_per_pixel = fbinfo->rsvd.size + fbinfo->red.size +
89 fbinfo->green.size + fbinfo->blue.size,
90 .red_mask_pos = fbinfo->red.pos,
91 .red_mask_size = fbinfo->red.size,
92 .green_mask_pos = fbinfo->green.pos,
93 .green_mask_size = fbinfo->green.size,
94 .blue_mask_pos = fbinfo->blue.pos,
95 .blue_mask_size = fbinfo->blue.size,
96 .reserved_mask_pos = fbinfo->rsvd.pos,
97 .reserved_mask_size = fbinfo->rsvd.size,
Tim Wawrzynczak84428f72021-09-14 13:59:33 -060098 .orientation = orientation,
Patrick Rudolph92106b12020-02-19 12:54:06 +010099 };
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500100
Patrick Rudolph92106b12020-02-19 12:54:06 +0100101 fb_add_framebuffer_info_ex(&fb);
Lee Leahy5a9ca4d2016-09-28 17:15:00 -0700102}