e5a1fc788f
Add a new mainboard called mc_ehl which is based on Intel's 'elkhartlake_crb'. This commit simply copies the mainboard directory and adjusts the naming to match the new board's name. Follow-up commits will introduce the needed changes for the new mainboard. Change-Id: Ia7c0616098046d975aa698910ac81f435d7882cb Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56032 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com>
14 lines
289 B
C
14 lines
289 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <baseboard/variants.h>
|
|
#include <bootblock_common.h>
|
|
#include <soc/gpio.h>
|
|
|
|
void bootblock_mainboard_init(void)
|
|
{
|
|
const struct pad_config *pads;
|
|
size_t num;
|
|
|
|
pads = variant_early_gpio_table(&num);
|
|
gpio_configure_pads(pads, num);
|
|
}
|