summaryrefslogtreecommitdiffstats
path: root/src/mainboard/starlabs/lite
diff options
context:
space:
mode:
authorSean Rhodes <sean@starlabs.systems>2022-06-14 12:29:40 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-06-20 12:05:53 +0000
commitae64b6e5db2e35b45e76ee4ef9ec416a6f09384e (patch)
treea5676c39322c06874515e2b1c067f5670a5a5587 /src/mainboard/starlabs/lite
parent220a47d12cfdd9eb742b4b4be2d5cd86645df02d (diff)
downloadcoreboot-ae64b6e5db2e35b45e76ee4ef9ec416a6f09384e.tar.gz
coreboot-ae64b6e5db2e35b45e76ee4ef9ec416a6f09384e.tar.bz2
coreboot-ae64b6e5db2e35b45e76ee4ef9ec416a6f09384e.zip
mb/starlabs/lite: Configure MMIO window for EC
The Nuvoton EC requires a window to be opened for updates, so open this window only if the Nuvoton EC is present. Change-Id: Iaa45aa58749c4d0bfc77e60b52eab2bcb270f3ee Signed-off-by: Sean Rhodes <sean@starlabs.systems> Reviewed-on: https://review.coreboot.org/c/coreboot/+/65130 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/starlabs/lite')
-rw-r--r--src/mainboard/starlabs/lite/bootblock.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/starlabs/lite/bootblock.c b/src/mainboard/starlabs/lite/bootblock.c
index 5349207eeb80..6bf172344d83 100644
--- a/src/mainboard/starlabs/lite/bootblock.c
+++ b/src/mainboard/starlabs/lite/bootblock.c
@@ -2,6 +2,7 @@
#include <bootblock_common.h>
#include <console/console.h>
+#include <intelblocks/lpc_lib.h>
#include <soc/gpio.h>
#include <variants.h>
@@ -12,4 +13,7 @@ void bootblock_mainboard_init(void)
pads = variant_early_gpio_table(&num);
gpio_configure_pads(pads, num);
+
+ if (CONFIG(EC_STARLABS_NUVOTON))
+ lpc_open_mmio_window(0xfe800000, 0x10000);
}