soc/intel/gma: Move display and opregion init to common code
Change-Id: I359b529df44db7d63c5a7922cb1ebd8e130d0c43 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40725 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -1,16 +1,13 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <bootmode.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <commonlib/helpers.h>
|
||||
#include <console/console.h>
|
||||
#include <device/pci.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <device/mmio.h>
|
||||
#include <device/resource.h>
|
||||
#include <drivers/intel/gma/i915.h>
|
||||
#include <drivers/intel/gma/i915_reg.h>
|
||||
#include <drivers/intel/gma/libgfxinit.h>
|
||||
#include <intelblocks/graphics.h>
|
||||
#include <drivers/intel/gma/opregion.h>
|
||||
#include <soc/ramstage.h>
|
||||
#include <types.h>
|
||||
|
||||
@@ -83,8 +80,6 @@ void graphics_soc_init(struct device *dev)
|
||||
{
|
||||
u32 ddi_buf_ctl;
|
||||
|
||||
intel_gma_init_igd_opregion();
|
||||
|
||||
graphics_setup_panel(dev);
|
||||
|
||||
/*
|
||||
@@ -97,32 +92,6 @@ void graphics_soc_init(struct device *dev)
|
||||
ddi_buf_ctl |= DDI_A_4_LANES;
|
||||
graphics_gtt_write(DDI_BUF_CTL_A, ddi_buf_ctl);
|
||||
}
|
||||
|
||||
/* IGD needs to Bus Master */
|
||||
u32 reg32 = pci_read_config32(dev, PCI_COMMAND);
|
||||
reg32 |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY | PCI_COMMAND_IO;
|
||||
pci_write_config32(dev, PCI_COMMAND, reg32);
|
||||
|
||||
/*
|
||||
* GFX PEIM module inside FSP binary is taking care of graphics
|
||||
* initialization based on RUN_FSP_GOP Kconfig option and input
|
||||
* VBT file.
|
||||
*
|
||||
* In case of non-FSP solution, SoC need to select another
|
||||
* Kconfig to perform GFX initialization.
|
||||
*/
|
||||
if (CONFIG(RUN_FSP_GOP)) {
|
||||
/* nothing to do */
|
||||
} else if (CONFIG(MAINBOARD_USE_LIBGFXINIT)) {
|
||||
if (!acpi_is_wakeup_s3() && display_init_required()) {
|
||||
int lightup_ok;
|
||||
gma_gfxinit(&lightup_ok);
|
||||
gfx_set_init_done(lightup_ok);
|
||||
}
|
||||
} else {
|
||||
/* Initialize PCI device, load/execute BIOS Option ROM */
|
||||
pci_dev_init(dev);
|
||||
}
|
||||
}
|
||||
|
||||
const struct i915_gpu_controller_info *
|
||||
|
Reference in New Issue
Block a user