summaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/pch
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-06-16 16:57:21 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-08-02 15:29:10 +0000
commit12fc21b1cffcd8541abb534e2957f7f467e1667b (patch)
treea82f7c413d5b6fd227e94d14a10859aa8101580d /src/soc/intel/broadwell/pch
parent94aa18f527eb1aba7be653a7c20b40cdeeb895c7 (diff)
soc/intel/broadwell: Rename `ramstage.h`
This file only contains the `broadwell_run_reference_code()` function prototype (either a declaration or an inline stub definition). Rename this file to refcode.h and only include it where necessary. Tested with BUILD_TIMELESS=1, Purism Librem 13 v1 remains identical. Change-Id: I6513f45b8914a84312b27ef4860870a89fd0aab3 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55582 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/broadwell/pch')
-rw-r--r--src/soc/intel/broadwell/pch/adsp.c1
-rw-r--r--src/soc/intel/broadwell/pch/hda.c1
-rw-r--r--src/soc/intel/broadwell/pch/lpc.c1
-rw-r--r--src/soc/intel/broadwell/pch/me.c1
-rw-r--r--src/soc/intel/broadwell/pch/pch.c2
-rw-r--r--src/soc/intel/broadwell/pch/sata.c1
-rw-r--r--src/soc/intel/broadwell/pch/serialio.c1
-rw-r--r--src/soc/intel/broadwell/pch/usb_xhci.c1
8 files changed, 1 insertions, 8 deletions
diff --git a/src/soc/intel/broadwell/pch/adsp.c b/src/soc/intel/broadwell/pch/adsp.c
index b4b0257c11..3cc7e12f2a 100644
--- a/src/soc/intel/broadwell/pch/adsp.c
+++ b/src/soc/intel/broadwell/pch/adsp.c
@@ -8,7 +8,6 @@
#include <device/mmio.h>
#include <soc/adsp.h>
#include <soc/pch.h>
-#include <soc/ramstage.h>
#include <soc/rcba.h>
#include <soc/intel/broadwell/pch/chip.h>
#include <southbridge/intel/lynxpoint/iobp.h>
diff --git a/src/soc/intel/broadwell/pch/hda.c b/src/soc/intel/broadwell/pch/hda.c
index ba7d342fe5..ab348ea7c2 100644
--- a/src/soc/intel/broadwell/pch/hda.c
+++ b/src/soc/intel/broadwell/pch/hda.c
@@ -9,7 +9,6 @@
#include <device/mmio.h>
#include <soc/intel/common/hda_verb.h>
#include <soc/pch.h>
-#include <soc/ramstage.h>
#include <soc/rcba.h>
static void codecs_init(u8 *base, u32 codec_mask)
diff --git a/src/soc/intel/broadwell/pch/lpc.c b/src/soc/intel/broadwell/pch/lpc.c
index 10cc9d8c60..13e4fd7e33 100644
--- a/src/soc/intel/broadwell/pch/lpc.c
+++ b/src/soc/intel/broadwell/pch/lpc.c
@@ -16,7 +16,6 @@
#include <soc/pch.h>
#include <soc/pci_devs.h>
#include <soc/pm.h>
-#include <soc/ramstage.h>
#include <soc/rcba.h>
#include <soc/intel/broadwell/pch/chip.h>
#include <acpi/acpigen.h>
diff --git a/src/soc/intel/broadwell/pch/me.c b/src/soc/intel/broadwell/pch/me.c
index 6c01f07026..22db6a72f9 100644
--- a/src/soc/intel/broadwell/pch/me.c
+++ b/src/soc/intel/broadwell/pch/me.c
@@ -24,7 +24,6 @@
#include <soc/lpc.h>
#include <soc/pch.h>
#include <soc/pci_devs.h>
-#include <soc/ramstage.h>
#include <soc/rcba.h>
#include <soc/intel/broadwell/pch/chip.h>
diff --git a/src/soc/intel/broadwell/pch/pch.c b/src/soc/intel/broadwell/pch/pch.c
index 20e243153a..da13503b90 100644
--- a/src/soc/intel/broadwell/pch/pch.c
+++ b/src/soc/intel/broadwell/pch/pch.c
@@ -7,7 +7,7 @@
#include <device/pci_def.h>
#include <soc/pch.h>
#include <soc/pci_devs.h>
-#include <soc/ramstage.h>
+#include <drivers/intel/gma/gma.h> /* TODO: for reproducibility purposes only */
#include <soc/rcba.h>
#include <soc/serialio.h>
#include <soc/spi.h>
diff --git a/src/soc/intel/broadwell/pch/sata.c b/src/soc/intel/broadwell/pch/sata.c
index b8ef52714d..8343775888 100644
--- a/src/soc/intel/broadwell/pch/sata.c
+++ b/src/soc/intel/broadwell/pch/sata.c
@@ -7,7 +7,6 @@
#include <device/pci.h>
#include <device/pci_ids.h>
#include <delay.h>
-#include <soc/ramstage.h>
#include <soc/rcba.h>
#include <soc/sata.h>
#include <soc/intel/broadwell/pch/chip.h>
diff --git a/src/soc/intel/broadwell/pch/serialio.c b/src/soc/intel/broadwell/pch/serialio.c
index 1d6773880a..601bf97629 100644
--- a/src/soc/intel/broadwell/pch/serialio.c
+++ b/src/soc/intel/broadwell/pch/serialio.c
@@ -8,7 +8,6 @@
#include <device/pci_ids.h>
#include <soc/pci_devs.h>
#include <soc/pch.h>
-#include <soc/ramstage.h>
#include <soc/rcba.h>
#include <soc/serialio.h>
#include <soc/intel/broadwell/pch/chip.h>
diff --git a/src/soc/intel/broadwell/pch/usb_xhci.c b/src/soc/intel/broadwell/pch/usb_xhci.c
index fd36fad4a0..b766425df4 100644
--- a/src/soc/intel/broadwell/pch/usb_xhci.c
+++ b/src/soc/intel/broadwell/pch/usb_xhci.c
@@ -8,7 +8,6 @@
#include <acpi/acpi.h>
#include <device/mmio.h>
#include <device/pci_ops.h>
-#include <soc/ramstage.h>
#include <soc/xhci.h>
#ifdef __SIMPLE_DEVICE__