• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..21-Aug-2025-

Makefile A D21-Aug-20253 KiB8352

README A D21-Aug-2025682 2721

acpi2_0.h A D21-Aug-202511.6 KiB490334

build.c A D21-Aug-202525.1 KiB734560

dsdt.asl A D21-Aug-202515.4 KiB448409

dsdt_acpi_info.asl A D21-Aug-2025737 2826

libacpi.h A D21-Aug-20252.7 KiB10763

mk_dsdt.c A D21-Aug-202512.8 KiB444327

ssdt_laptop_slate.asl A D21-Aug-2025602 3026

ssdt_pm.asl A D21-Aug-202511.8 KiB410370

ssdt_s3.asl A D21-Aug-2025396 2017

ssdt_s4.asl A D21-Aug-2025396 2017

ssdt_tpm.asl A D21-Aug-2025428 2017

ssdt_tpm2.asl A D21-Aug-2025729 2825

static_tables.c A D21-Aug-20254.8 KiB161110

README

1ACPI builder for domain firmware
2
3
4BUILDING ACPI
5-----------------
6Users of ACPI builder are expected to provide an include file that makes available
7the following:
8* strncpy
9* printf
10* NULL
11* test_bit
12* offsetof
13
14When compiling build.c, the name of this include file should be given to
15compiler as -DLIBACPI_STDUTILS=\"<filename>\". See tools/firmware/hvmloader/Makefile
16for an example.
17
18Note on DSDT Table
19------------------
20DSDT table source code is acpi_dsdt.asl
21It is already compiled and the output is acpi_dsdt.c
22Usually, user is not expected to change the acpi_dsdt.asl.
23In case that the acpi_dsdt.asl need to be updated, please
24Follow the instruction:
25
26# make acpi_dsdt.c
27