diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-11-23 10:12:56 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-11-24 17:05:49 +0000 |
commit | a8820c74b5c3365c634afcf6d74c325344455833 (patch) | |
tree | ebfb55cb7fa78c30e18d3fc64242508708187dc5 /src/soc/amd/common | |
parent | a31dbb8b8efc7eed3dcdba4e55f489909135b676 (diff) |
soc/amd/common/block/include/gpio_defs: add GPIO IRQ status registers
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I585691038690f1d6855ab09f1ca5791a18cfdbfe
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59590
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd/common')
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/gpio_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/gpio_defs.h b/src/soc/amd/common/block/include/amdblocks/gpio_defs.h index db90211ebc..757e0f2587 100644 --- a/src/soc/amd/common/block/include/amdblocks/gpio_defs.h +++ b/src/soc/amd/common/block/include/amdblocks/gpio_defs.h @@ -10,6 +10,8 @@ #define GPIO_WAKE_STAT_0 0x2f0 #define GPIO_WAKE_STAT_1 0x2f4 +#define GPIO_IRQ_STAT_0 0x2f8 +#define GPIO_IRQ_STAT_1 0x2fc #define GPIO_PIN_IN (1 << 0) /* for byte access */ #define GPIO_PIN_OUT (1 << 6) /* for byte access */ |