mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
da2c1b8fd9
Add support for generating various ACPI tables for Apollo Lake. Add a few S3 definitions that are needed. Signed-off-by: Simon Glass <sjg@chromium.org>
18 lines
312 B
C
18 lines
312 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2019 Google LLC
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_ACPI_H
|
|
#define _ASM_ARCH_ACPI_H
|
|
|
|
struct acpi_ctx;
|
|
|
|
/**
|
|
* apl_acpi_fill_dmar() - Set up the DMAR for APL
|
|
*
|
|
* @ctx: ACPI context pointer
|
|
*/
|
|
int apl_acpi_fill_dmar(struct acpi_ctx *ctx);
|
|
|
|
#endif /* _ASM_ARCH_CPU_H */
|