diff options
author | Lance Zhao <lijian.zhao@intel.com> | 2015-11-12 18:19:41 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-04-11 18:21:06 +0200 |
commit | a7ff9c59a1e71da0ab956395dfa92287a81d7ac3 (patch) | |
tree | 0834ce270272db9320784d79321f8724d05ca54a /src/soc/intel/apollolake/Makefile.inc | |
parent | 2fc82d699d23cf3136a25e06972f90a9fc4909ab (diff) | |
download | coreboot-a7ff9c59a1e71da0ab956395dfa92287a81d7ac3.tar.xz |
soc/apollolake: Add lpc device driver
A dedicated pci device driver required for LPC devices as the legacy
IO range need to be included to avoid IO resource confilict. Blindly
set to 0~0x1000 to also avoid the IO resource of COMA/COMB/LPT/FDD
and LPC.Without this driver system will have assertion on load
RTC DXE driver in UEFI payloads.
Change-Id: Icc462c159c2cf39cc1030d55acee79e73a6bfb35
Signed-off-by: Lance Zhao <lijian.zhao@intel.com>
Reviewed-on: https://review.coreboot.org/13356
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/intel/apollolake/Makefile.inc')
-rw-r--r-- | src/soc/intel/apollolake/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/Makefile.inc b/src/soc/intel/apollolake/Makefile.inc index dff1589cdb..328a5b43a7 100644 --- a/src/soc/intel/apollolake/Makefile.inc +++ b/src/soc/intel/apollolake/Makefile.inc @@ -34,6 +34,7 @@ ramstage-y += chip.c ramstage-y += placeholders.c ramstage-y += gpio.c ramstage-$(CONFIG_SOC_UART_DEBUG) += uart_early.c +ramstage-y += lpc.c ramstage-y += memmap.c ramstage-y += mmap_boot.c ramstage-y += uart.c |