summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801gx/lpc.c
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2020-03-30 21:55:21 -0500
committerMatt DeVillier <matt.devillier@gmail.com>2020-04-02 20:31:34 +0000
commit28f727b59ba10eec3b3805cc57542643856fbef2 (patch)
tree3b33ed655142f86f5458af5f25ed64a33dcac84a /src/southbridge/intel/i82801gx/lpc.c
parentc821f00b518c82d20672be844c3a3ef4807112fe (diff)
downloadcoreboot-28f727b59ba10eec3b3805cc57542643856fbef2.tar.xz
sb/intel/i82801gx: drop IGD-related NVS variables
NDID/DID entries are no longer used by the GMA SSDT generator, so drop them. SSDT generation will be simplified in a subsequent commit. Change-Id: I51a11e7ed6686ab67dac3f02097457ea9c6a7e6a Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39953 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/southbridge/intel/i82801gx/lpc.c')
-rw-r--r--src/southbridge/intel/i82801gx/lpc.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/southbridge/intel/i82801gx/lpc.c b/src/southbridge/intel/i82801gx/lpc.c
index db0dc4198a..ce5d82f3ed 100644
--- a/src/southbridge/intel/i82801gx/lpc.c
+++ b/src/southbridge/intel/i82801gx/lpc.c
@@ -30,7 +30,6 @@
#include <arch/smp/mpspec.h>
#include <cbmem.h>
#include <string.h>
-#include <drivers/intel/gma/i915.h>
#include <southbridge/intel/common/acpi_pirq_gen.h>
#include <southbridge/intel/common/pmbase.h>
#include <southbridge/intel/common/spi.h>
@@ -642,8 +641,6 @@ static void southbridge_inject_dsdt(struct device *dev)
global_nvs_t *gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
if (gnvs) {
- const struct i915_gpu_controller_info *gfx = intel_gma_get_controller_info();
-
memset(gnvs, 0, sizeof(*gnvs));
gnvs->apic = 1;
@@ -651,11 +648,6 @@ static void southbridge_inject_dsdt(struct device *dev)
acpi_create_gnvs(gnvs);
- if (gfx) {
- gnvs->ndid = gfx->ndid;
- memcpy(gnvs->did, gfx->did, sizeof(gnvs->did));
- }
-
/* And tell SMI about it */
smm_setup_structures(gnvs, NULL, NULL);