diff options
author | Michał Żygowski <michal.zygowski@3mdeb.com> | 2022-09-29 00:58:43 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-17 22:56:05 +0000 |
commit | ef886c4ede4fd09558d568e13376246fe13badf3 (patch) | |
tree | 308347496c8c9526cc040155f7bcb646d2be0484 /src/mainboard/protectli/vault_cml/gpio.h | |
parent | 71b4e295668ad6312b2e5be823d24823be284160 (diff) |
mb/protectli/vault_cml: Add Comet Lake 6 port board support
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Change-Id: If1b4f9c8245a082ff875ae9c6102a1c45e677d0b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67940
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Krystian Hebel <krystian.hebel@3mdeb.com>
Diffstat (limited to 'src/mainboard/protectli/vault_cml/gpio.h')
-rw-r--r-- | src/mainboard/protectli/vault_cml/gpio.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mainboard/protectli/vault_cml/gpio.h b/src/mainboard/protectli/vault_cml/gpio.h new file mode 100644 index 0000000000..d98dd82b6d --- /dev/null +++ b/src/mainboard/protectli/vault_cml/gpio.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef __BASEBOARD_GPIO_H__ +#define __BASEBOARD_GPIO_H__ + +#include <stdint.h> +#include <soc/gpio.h> + +const struct pad_config *board_gpio_table(size_t *num); + +#endif /* __BASEBOARD_GPIO_H__ */ |