diff options
author | Tim Wawrzynczak <twawrzynczak@chromium.org> | 2021-03-22 10:40:51 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-28 16:05:02 +0000 |
commit | a603e443eb66e2454d7776ebc6684f4dd8a290ab (patch) | |
tree | ce9e671034141fc2ed3a663c57a4743015b24863 /src/soc/intel/common/block/include/intelblocks | |
parent | 5b90c0f158ffa295cc03b7d846cd600ee47c34fa (diff) |
soc/intel/common/gpio: Add function to get GPIO index in group
The gpio_get_index_in_group function returns the index of the GPIO
within its own group
Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Change-Id: I7f6b312bd1d0388ef799cd127c88b17bad6a3886
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51647
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel/common/block/include/intelblocks')
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/gpio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/include/intelblocks/gpio.h b/src/soc/intel/common/block/include/intelblocks/gpio.h index 3f79b19f94..a7419dca59 100644 --- a/src/soc/intel/common/block/include/intelblocks/gpio.h +++ b/src/soc/intel/common/block/include/intelblocks/gpio.h @@ -235,5 +235,7 @@ void block_gpio_enable(struct device *dev); */ bool gpio_routes_ioapic_irq(unsigned int irq); +size_t gpio_get_index_in_group(gpio_t pad); + #endif #endif /* _SOC_INTELBLOCKS_GPIO_H_ */ |