Guybrush is a new Google mainboard with an AMD SOC. BUG=b:175143925 TEST=builds Change-Id: I1792f21ff7616f364ddc8b0c04481049b2a5fb04 Signed-off-by: Mathew King <mathewk@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48479 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
19 lines
358 B
C
19 lines
358 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <device/device.h>
|
|
|
|
static void mainboard_init(void *chip_info)
|
|
{
|
|
/* TODO: Perform mainboard initialization */
|
|
}
|
|
|
|
static void mainboard_enable(struct device *dev)
|
|
{
|
|
/* TODO: Enable mainboard */
|
|
}
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
.init = mainboard_init,
|
|
.enable_dev = mainboard_enable,
|
|
};
|