diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-08-03 18:42:04 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-08 00:16:37 +0000 |
commit | 85e733f0ef010e0bdeaab8e6e5790763844f805e (patch) | |
tree | f20ab1e35f956315faff81d026df37dc61d06af0 /src/mainboard/amd/thatcher/bootblock.c | |
parent | ad38ac01823c9d2635b396e7dcb568076230935a (diff) |
soc/amd/common/include/acpimmio: reduce visibility of GPIO MMIO access
Introduce amdblocks/acpimmio_legacy_gpio100.h so that the old pre-SoC
chipsets can still access the raw GPIO100 and IOMUX ACPIMMIO registers
while only allowing GPIO accesses through the GPIO API on the SoCs.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I18872dfa40d53ba8b0d7802eec52ede5e2ae617a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56786
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/amd/thatcher/bootblock.c')
-rw-r--r-- | src/mainboard/amd/thatcher/bootblock.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/amd/thatcher/bootblock.c b/src/mainboard/amd/thatcher/bootblock.c index e01131d18e..c086709fcd 100644 --- a/src/mainboard/amd/thatcher/bootblock.c +++ b/src/mainboard/amd/thatcher/bootblock.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <amdblocks/acpimmio.h> +#include <amdblocks/acpimmio_legacy_gpio100.h> #include <bootblock_common.h> #include <console/console.h> #include <superio/smsc/lpc47n217/lpc47n217.h> |