summaryrefslogtreecommitdiffstats
path: root/src/soc/intel
diff options
context:
space:
mode:
authorTim Wawrzynczak <twawrzynczak@chromium.org>2021-09-14 13:59:33 -0600
committerFelix Held <felix-coreboot@felixheld.de>2021-09-16 00:09:36 +0000
commit84428f72d02583f1f2a7bf4470bace5d46c1bc4d (patch)
treecf6d4fe982176fe2c495e4be406bf754066074ca /src/soc/intel
parent629621160710f8862e5cac08f554917783795a89 (diff)
downloadcoreboot-84428f72d02583f1f2a7bf4470bace5d46c1bc4d.tar.gz
coreboot-84428f72d02583f1f2a7bf4470bace5d46c1bc4d.tar.bz2
coreboot-84428f72d02583f1f2a7bf4470bace5d46c1bc4d.zip
drivers/intel/fsp2_0: Pass orientation to fsp_report_framebuffer_info
Instead of always passing LB_FB_ORIENTATION_NORMAL, allow the chipsets implementing the callback to pass in an orientation. BUG=b:194967458 BRANCH=dedede Change-Id: I4aacab9449930a75aca9d68bf30d019f86035405 Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/57647 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/common/block/graphics/graphics.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c
index 85b7124190c3..d9daaaf54a7f 100644
--- a/src/soc/intel/common/block/graphics/graphics.c
+++ b/src/soc/intel/common/block/graphics/graphics.c
@@ -10,6 +10,7 @@
#include <drivers/intel/gma/i915.h>
#include <drivers/intel/gma/libgfxinit.h>
#include <drivers/intel/gma/opregion.h>
+#include <intelblocks/cfg.h>
#include <intelblocks/graphics.h>
#include <fsp/graphics.h>
#include <soc/pci_devs.h>
@@ -57,7 +58,9 @@ static void gma_init(struct device *const dev)
* Kconfig to perform GFX initialization.
*/
if (CONFIG(RUN_FSP_GOP)) {
- fsp_report_framebuffer_info(graphics_get_memory_base());
+ const struct soc_intel_common_config *config = chip_get_common_soc_structure();
+ fsp_report_framebuffer_info(graphics_get_memory_base(),
+ config->panel_orientation);
return;
}