diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-09-02 16:56:03 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-09-06 20:04:18 +0200 |
commit | 10d67cbad5de7966de7f2f766eb44fb5d6f37272 (patch) | |
tree | 0e3f355f62fcf8b620c955497c645e0045a9abdd /src/mainboard/google/reef/smihandler.c | |
parent | ac39da44d1f8b7af9d78347b541aaf45fc0c5fa5 (diff) | |
download | coreboot-10d67cbad5de7966de7f2f766eb44fb5d6f37272.tar.xz |
mainboard/google/reef: add variant API for board_id and gpio
Provide APIs for the board_id() and gpio table functionality.
Default and weak implementations are provided from the baseboard.
BUG=chrome-os-partner:56677
Change-Id: I02d8deb7f60f8c4842916a9d35f51d8af74b1da4
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/16419
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/mainboard/google/reef/smihandler.c')
-rw-r--r-- | src/mainboard/google/reef/smihandler.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mainboard/google/reef/smihandler.c b/src/mainboard/google/reef/smihandler.c index bbbdbcbeeb..dbf9162266 100644 --- a/src/mainboard/google/reef/smihandler.c +++ b/src/mainboard/google/reef/smihandler.c @@ -15,6 +15,7 @@ */ #include <arch/acpi.h> +#include <baseboard/variants.h> #include <cpu/x86/smm.h> #include <ec/google/chromeec/smm.h> #include <soc/pm.h> @@ -31,7 +32,11 @@ void mainboard_smi_gpi_handler(const struct gpi_status *sts) void mainboard_smi_sleep(u8 slp_typ) { - gpio_configure_pads(sleep_gpio_table, ARRAY_SIZE(sleep_gpio_table)); + const struct pad_config *pads; + size_t num; + + pads = variant_sleep_gpio_table(&num); + gpio_configure_pads(pads, num); if (slp_typ == ACPI_S3) enable_gpe(GPIO_TIER_1_SCI); |