blob: 3a5f7855823a219edb751fb32593c2ec87be8119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <acpi/acpi.h>
#include <baseboard/variants.h>
#include <bootblock_common.h>
#include <bootmode.h>
#include <reset.h>
#include <security/vboot/vboot_common.h>
void bootblock_mainboard_early_init(void)
{
const struct pad_config *pads;
size_t num;
pads = variant_early_gpio_table(&num);
gpio_configure_pads(pads, num);
}
void bootblock_mainboard_init(void)
{
if (platform_is_resuming()) {
printk(BIOS_EMERG, "ACPI S3 resume is not supported on this platform\n");
/* Prepare for reboot to clear the sleep state such that the board
is not stuck in reboot loop. */
vboot_platform_prepare_reboot();
board_reset();
}
variant_update_descriptor();
}
void __weak variant_update_descriptor(void) {}
|