payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / intel / kunimitsu / bootblock_mainboard.c
blobae4e26c63d3de9c1d1f3fa069b39cb6a7864f93e
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootblock_common.h>
4 #include <soc/gpio.h>
5 #include "gpio.h"
7 static void early_config_gpio(void)
9 /* This is a hack for FSP because it does things in MemoryInit()
10 * which it shouldn't do. We have to prepare certain gpios here
11 * because of the brokenness in FSP. */
12 gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table));
15 void bootblock_mainboard_init(void)
17 early_config_gpio();