summaryrefslogtreecommitdiff
path: root/src/drivers/pc80/pc/Makefile.inc
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-10-31 13:25:23 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-11-02 06:28:28 +0000
commit432516586e7f646aa2a8ac0cbdf8e80ac44f97d0 (patch)
treea411145396973618996752e9ae24401b1ee8a240 /src/drivers/pc80/pc/Makefile.inc
parente1c0cb737c201b736b15e098d50f196e88a57ff8 (diff)
downloadcoreboot-432516586e7f646aa2a8ac0cbdf8e80ac44f97d0.tar.xz
cpu/x86: Move calibrate_tsc_with_pit() to drivers/pc80
Change-Id: Ia8d8dc23ee0b51d62c83f5ba640b3a9aea4e744b Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36507 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/drivers/pc80/pc/Makefile.inc')
-rw-r--r--src/drivers/pc80/pc/Makefile.inc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/drivers/pc80/pc/Makefile.inc b/src/drivers/pc80/pc/Makefile.inc
index 8c348e323e..bd56cd43a1 100644
--- a/src/drivers/pc80/pc/Makefile.inc
+++ b/src/drivers/pc80/pc/Makefile.inc
@@ -1,7 +1,6 @@
ifeq ($(CONFIG_ARCH_X86),y)
ramstage-y += isa-dma.c
-ramstage-y += i8254.c
ramstage-y += i8259.c
ramstage-$(CONFIG_UDELAY_IO) += udelay_io.c
romstage-$(CONFIG_UDELAY_IO) += udelay_io.c
@@ -9,4 +8,11 @@ ramstage-y += keyboard.c
ramstage-$(CONFIG_SPKMODEM) += spkmodem.c
romstage-$(CONFIG_SPKMODEM) += spkmodem.c
+bootblock-y += i8254.c
+verstage-y += i8254.c
+romstage-y += i8254.c
+ramstage-y += i8254.c
+postcar-y += i8254.c
+smm-y += i8254.c
+
endif