summaryrefslogtreecommitdiff
path: root/src/soc/amd/genoa_poc/chip.c
blob: eb35a25bf87ff36a3169c77d2b9c684a7aaa0781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-only */

#include <device/device.h>
#include <soc/southbridge.h>
#include <soc/acpi.h>

static void soc_init(void *chip_info)
{
	default_dev_ops_root.write_acpi_tables = soc_acpi_write_tables;
}

static void soc_final(void *chip_info)
{
}

struct chip_operations soc_amd_genoa_poc_ops = {
	CHIP_NAME("AMD Genoa SoC Proof of Concept")
	.init = soc_init,
	.final = soc_final,
};