aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/cezanne/acpi.c
blob: 94ca81ba12ee4a3d113f430e46d83fc2f6c7ee3b (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 */

/* ACPI - create the Fixed ACPI Description Tables (FADT) */

#include <acpi/acpi.h>

unsigned long acpi_fill_madt(unsigned long current)
{
	/* TODO */
	return current;
}

/*
 * Reference section 5.2.9 Fixed ACPI Description Table (FADT)
 * in the ACPI 3.0b specification.
 */
void acpi_fill_fadt(acpi_fadt_t *fadt)
{
	/* TODO */
}