blob: 6e23f3c95f20f96d73e7ca2edf6c4945f19a157c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Meng1b35bc52017-08-15 22:41:56 -07002/*
3 * Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
Bin Meng1b35bc52017-08-15 22:41:56 -07004 */
5
6#include <common.h>
7#include <dm.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Bin Meng1b35bc52017-08-15 22:41:56 -070010#include <vbe.h>
11#include <video.h>
Simon Glass8965ef22019-12-06 21:42:16 -070012#include <asm/fsp/fsp_support.h>
Simon Glassadee5ea2019-12-06 21:42:19 -070013#include <asm/mtrr.h>
Bin Meng1b35bc52017-08-15 22:41:56 -070014
15DECLARE_GLOBAL_DATA_PTR;
16
17struct pixel {
18 u8 pos;
19 u8 size;
20};
21
22static const struct fsp_framebuffer {
23 struct pixel red;
24 struct pixel green;
25 struct pixel blue;
26 struct pixel rsvd;
27} fsp_framebuffer_format_map[] = {
28 [pixel_rgbx_8bpc] = { {0, 8}, {8, 8}, {16, 8}, {24, 8} },
29 [pixel_bgrx_8bpc] = { {16, 8}, {8, 8}, {0, 8}, {24, 8} },
30};
31
32static int save_vesa_mode(struct vesa_mode_info *vesa)
33{
34 const struct hob_graphics_info *ginfo;
35 const struct fsp_framebuffer *fbinfo;
36
37 ginfo = fsp_get_graphics_info(gd->arch.hob_list, NULL);
38
39 /*
40 * If there is no graphics info structure, bail out and keep
41 * running on the serial console.
Bin Meng22fc2b62017-10-18 18:20:59 -070042 *
43 * Note: on some platforms (eg: Braswell), the FSP will not produce
44 * the graphics info HOB unless you plug some cables to the display
45 * interface (eg: HDMI) on the board.
Bin Meng1b35bc52017-08-15 22:41:56 -070046 */
47 if (!ginfo) {
48 debug("FSP graphics hand-off block not found\n");
49 return -ENXIO;
50 }
51
52 vesa->x_resolution = ginfo->width;
53 vesa->y_resolution = ginfo->height;
54 vesa->bits_per_pixel = 32;
55 vesa->bytes_per_scanline = ginfo->pixels_per_scanline * 4;
56 vesa->phys_base_ptr = ginfo->fb_base;
57
58 if (ginfo->pixel_format >= pixel_bitmask) {
59 debug("FSP set unknown framebuffer format: %d\n",
60 ginfo->pixel_format);
61 return -EINVAL;
62 }
63 fbinfo = &fsp_framebuffer_format_map[ginfo->pixel_format];
64 vesa->red_mask_size = fbinfo->red.size;
65 vesa->red_mask_pos = fbinfo->red.pos;
66 vesa->green_mask_size = fbinfo->green.size;
67 vesa->green_mask_pos = fbinfo->green.pos;
68 vesa->blue_mask_size = fbinfo->blue.size;
69 vesa->blue_mask_pos = fbinfo->blue.pos;
70 vesa->reserved_mask_size = fbinfo->rsvd.size;
71 vesa->reserved_mask_pos = fbinfo->rsvd.pos;
72
73 return 0;
74}
75
76static int fsp_video_probe(struct udevice *dev)
77{
78 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
79 struct video_priv *uc_priv = dev_get_uclass_priv(dev);
80 struct vesa_mode_info *vesa = &mode_info.vesa;
81 int ret;
82
Simon Glassd89c4a32020-04-26 09:12:53 -060083 if (!ll_boot_init())
84 return 0;
85
Bin Meng1b35bc52017-08-15 22:41:56 -070086 printf("Video: ");
87
88 /* Initialize vesa_mode_info structure */
89 ret = save_vesa_mode(vesa);
90 if (ret)
91 goto err;
92
93 /*
94 * The framebuffer base address in the FSP graphics info HOB reflects
95 * the value assigned by the FSP. After PCI enumeration the framebuffer
96 * base address may be relocated. Let's get the updated one from device.
97 *
98 * For IGD, it seems to be always on BAR2.
99 */
100 vesa->phys_base_ptr = dm_pci_read_bar32(dev, 2);
Simon Glassb3279f32020-05-10 14:17:02 -0600101 gd->fb_base = vesa->phys_base_ptr;
Bin Meng1b35bc52017-08-15 22:41:56 -0700102
103 ret = vbe_setup_video_priv(vesa, uc_priv, plat);
104 if (ret)
105 goto err;
106
Simon Glassadee5ea2019-12-06 21:42:19 -0700107 mtrr_add_request(MTRR_TYPE_WRCOMB, vesa->phys_base_ptr, 256 << 20);
108 mtrr_commit(true);
109
Simon Glassb3279f32020-05-10 14:17:02 -0600110 printf("%dx%dx%d @ %x\n", uc_priv->xsize, uc_priv->ysize,
111 vesa->bits_per_pixel, vesa->phys_base_ptr);
Bin Meng1b35bc52017-08-15 22:41:56 -0700112
113 return 0;
114
115err:
116 printf("No video mode configured in FSP!\n");
117 return ret;
118}
119
120static const struct udevice_id fsp_video_ids[] = {
121 { .compatible = "fsp-fb" },
122 { }
123};
124
125U_BOOT_DRIVER(fsp_video) = {
126 .name = "fsp_video",
127 .id = UCLASS_VIDEO,
128 .of_match = fsp_video_ids,
129 .probe = fsp_video_probe,
130};
131
132static struct pci_device_id fsp_video_supported[] = {
133 { PCI_DEVICE_CLASS(PCI_CLASS_DISPLAY_VGA << 8, 0xffff00) },
134 { },
135};
136
137U_BOOT_PCI_DEVICE(fsp_video, fsp_video_supported);