blob: d47ff002cc525370ccd7e3a574c37a772f40b2c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* TODO: Move to common */
#ifndef AMD_GLINDA_ACPI_H
#define AMD_GLINDA_ACPI_H
#include <acpi/acpi.h>
#include <amdblocks/acpi.h>
#include <device/device.h>
#include <stdint.h>
#define ACPI_SCI_IRQ 9
unsigned long soc_acpi_write_tables(const struct device *device, unsigned long current,
acpi_rsdp_t *rsdp);
#endif /* AMD_GLINDA_ACPI_H */
|