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

..18-Mar-2022-

COPYING A D18-Mar-202224.4 KiB469394

Makefile A D18-Mar-20223.7 KiB10662

README A D18-Mar-2022919 3326

acpi2_0.h A D18-Mar-202211.1 KiB466314

build.c A D18-Mar-202223.6 KiB695523

dsdt.asl A D18-Mar-202215.8 KiB457418

dsdt_acpi_info.asl A D18-Mar-2022692 2725

libacpi.h A D18-Mar-20223.1 KiB11461

mk_dsdt.c A D18-Mar-202216.7 KiB549414

ssdt_laptop_slate.asl A D18-Mar-20221.1 KiB3935

ssdt_pm.asl A D18-Mar-202212.3 KiB419379

ssdt_s3.asl A D18-Mar-2022880 2926

ssdt_s4.asl A D18-Mar-2022880 2926

ssdt_tpm.asl A D18-Mar-2022912 2926

static_tables.c A D18-Mar-20225.3 KiB170110

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
28Note:
29DSDT compiler "iasl" is needed. By default, it will be downloaded
30using wget in Makefile. if it failed, please download manually from
31http://developer.intel.com/technology/iapc/acpi/downloads.htm.
32then compile and install iasl
33