3647e86862
Tested with TianoCore payload (UefiPayloadPkg). Working: - PS/2 keyboard, touchpad - Both DIMM slots - NVMe port - SATA port - SD card slot - Left USB 3 Type-A port - Right USB 3 Type-A port - Right USB 3 Type-C port - Webcam - Ethernet - Integrated graphics using Intel GOP driver - mDP output - HDMI output - Internal microphone - Internal speakers - 3.5mm audio input - 3.5mm audio output - S3 suspend/resume - Flashing with flashrom - Booting to Ubuntu Linux 20.10 and Windows 10 Not tested: - Thunderbolt functionality Change-Id: I5c992e603dbd57ae1b4ddc3a0f9bfc92d6acc813 Signed-off-by: Jeremy Soller <jeremy@system76.com> Signed-off-by: Tim Crawford <tcrawford@system76.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/51832 Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
33 lines
761 B
Text
33 lines
761 B
Text
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <acpi/acpi.h>
|
|
DefinitionBlock(
|
|
"dsdt.aml",
|
|
"DSDT",
|
|
ACPI_DSDT_REV_2,
|
|
OEM_ID,
|
|
ACPI_TABLE_CREATOR,
|
|
0x20110725 /* OEM revision */
|
|
)
|
|
{
|
|
#include <acpi/dsdt_top.asl>
|
|
#include <soc/intel/common/block/acpi/acpi/platform.asl>
|
|
#include <soc/intel/common/block/acpi/acpi/globalnvs.asl>
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
|
|
|
Device (\_SB.PCI0)
|
|
{
|
|
#include <soc/intel/common/block/acpi/acpi/northbridge.asl>
|
|
#include <soc/intel/cannonlake/acpi/southbridge.asl>
|
|
#include <drivers/intel/gma/acpi/default_brightness_levels.asl>
|
|
}
|
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
|
|
Scope (\_SB.PCI0.LPCB)
|
|
{
|
|
#include <drivers/pc80/pc/ps2_controller.asl>
|
|
}
|
|
|
|
#include "acpi/mainboard.asl"
|
|
}
|