Home
last modified time | relevance | path

Searched full:acpi (Results 1 – 25 of 93) sorted by relevance

1234

/Zephyr-Core-3.7.0/lib/acpi/
DKconfig1 # ACPI configuration options
6 menuconfig ACPI config
7 bool "ACPI support"
9 This option enables support for ACPI driver.
11 if ACPI
13 module = ACPI
14 module-str = acpi
27 # Default minimum system heap required by ACPI
32 bool "ACPI command Shell"
35 Enable commands for debugging ACPI using the built-in shell.
[all …]
Dacpi.c7 #include "acpi.h"
13 #include <zephyr/acpi/acpi.h>
15 LOG_MODULE_REGISTER(ACPI, CONFIG_ACPI_LOG_LEVEL);
25 } acpi = { variable
33 if (acpi.status == AE_NOT_CONFIGURED) { in check_init_status()
34 acpi.status = acpi_init(); in check_init_status()
37 if (ACPI_FAILURE(acpi.status)) { in check_init_status()
38 LOG_ERR("ACPI init was not success"); in check_init_status()
70 /* Initialize the ACPI subsystem */ in initialize_acpica()
73 ACPI_EXCEPTION((AE_INFO, status, "While initializing ACPI")); in initialize_acpica()
[all …]
Dacpi_shell.c12 #include <zephyr/acpi/acpi.h>
19 shell_print(sh, "**** ACPI Device Resource Info ****"); in dump_dev_res()
165 shell_error(sh, "Error on ACPI _CRS method: %d", status); in dump_dev_crs()
188 shell_error(sh, "Error in on ACPI _PRS method: %d", status); in dump_dev_prs()
204 shell_error(sh, "invalid arguments [Eg: acpi prt <bus> <dev> <func>]"); in dump_prt()
232 shell_error(sh, "Invalid arguments [Eg: acpi enum PNP0103 0]"); in enum_dev()
238 shell_error(sh, "acpi get device failed for HID: %s", argv[1]); in enum_dev()
261 shell_print(sh, "No more ACPI device found!"); in enum_all_dev()
291 shell_error(sh, "acpi get device failed for HID: %s", argv[1]); in get_acpi_dev_resource()
336 shell_error(sh, "ACPI get table %s failed", argv[1]); in read_table()
[all …]
/Zephyr-Core-3.7.0/include/zephyr/acpi/
Dacpi.h8 #include <acpica/source/include/acpi.h>
84 * @brief Get the ACPI HID for a node
87 * @return The HID of the ACPI node
92 * @brief Get the ACPI UID for a node if one exist
95 * @return The UID of the ACPI node else NULL if does not exist
100 * @brief check whether the node has ACPI HID property or not
108 * @brief check whether the node has ACPI UID property or not
116 * @brief Init legacy interrupt routing table information from ACPI.
119 * @param hid the hardware id of the ACPI child device
120 * @param uid the unique id of the ACPI child device. The uid can be
[all …]
Dacpi_osal.h11 #include <zephyr/acpi/x86_acpi_osal.h>
13 #error "Currently only x86 Architecture support ACPI !!"
/Zephyr-Core-3.7.0/dts/bindings/acpi/
Dacpi.yaml4 # Common fields for ACPI informed based devices
7 acpi-hid:
9 description: Used to supply OSPM with the device’s PNP ID or ACPI ID.
10 A node is consder as acpi based or not based on whether this property
13 acpi-uid:
21 acpi-comp-id:
/Zephyr-Core-3.7.0/tests/lib/acpi/integration/src/
Dmain.c9 #include <zephyr/acpi/acpi.h>
21 ZTEST(acpi, test_mcfg_table) in ZTEST() argument
30 ZTEST(acpi, test_dev_enum) in ZTEST() argument
40 zassert_not_null(dev, "Failed to get acpi device with given HID"); in ZTEST()
47 ZTEST(acpi, test_resource_enum) in ZTEST() argument
60 zassert_not_null(dev, "Failed to get acpi device with given HID"); in ZTEST()
75 ZTEST_SUITE(acpi, NULL, NULL, NULL, NULL, NULL);
/Zephyr-Core-3.7.0/modules/acpica/
DKconfig4 menu "ACPI driver support"
6 config ACPI config
9 if ACPI
17 endif #ACPI
/Zephyr-Core-3.7.0/drivers/espi/
DKconfig.xec92 the shared memory region to return the ACPI response data.
114 bool "SoC ACPI EC 2 over eSPI"
116 Enable ACPI EC2 interface accessible via Host I/O over the
120 bool "SoC ACPI EC 3 over eSPI"
122 Enable ACPI EC3 interface accessible via Host I/O over the
126 bool "SoC ACPI EC 4 over eSPI"
128 Enable ACPI EC4 interface accessible via Host I/O over the
132 bool "SoC ACPI PM1 over eSPI"
134 Enable ACPI PM1 interface accessible via Host I/O over the
172 bool "Read ACPI EC Event Data in IBF ISR"
[all …]
DKconfig97 Enables ACPI Host I/O over eSPI peripheral channel.
102 Enables ACPI Host I/O over eSPI peripheral channel for private channel.
129 the ACPI response data.
137 the shared memory region to access the ACPI response data. Please
138 ensure the Host code is configured to use for accessing ACPI response
/Zephyr-Core-3.7.0/dts/x86/intel/
Dalder_lake.dtsi49 acpi {
51 acpi-hid = "INTC1057";
52 acpi-uid = "2";
58 acpi-hid = "INTC1057";
59 acpi-uid = "0";
65 acpi-hid = "INTC1057";
66 acpi-uid = "0";
72 acpi-hid = "INTC1057";
73 acpi-uid = "0";
79 acpi-hid = "INTC1057";
[all …]
/Zephyr-Core-3.7.0/tests/lib/acpi/integration/
Dtestcase.yaml2 acpi.basic:
4 - acpi
8 depends_on: acpi
/Zephyr-Core-3.7.0/tests/lib/acpi/boards/
Dqemu_x86_64.overlay7 /* TODO: This overlay file need to update once mc146818 driver eneable for acpi support.
12 acpi-dev = &rtc;
17 acpi-hid = "PNP0B00";
/Zephyr-Core-3.7.0/boards/intel/adl/
DKconfig.defconfig27 config ACPI config
30 if ACPI
40 endif # ACPI
/Zephyr-Core-3.7.0/boards/up-bridge-the-gap/up_squared_pro_7000/
DKconfig.defconfig30 config ACPI config
33 if ACPI
45 endif # ACPI
/Zephyr-Core-3.7.0/boards/intel/rpl/
DKconfig.defconfig28 config ACPI config
31 if ACPI
41 endif # ACPI
/Zephyr-Core-3.7.0/dts/bindings/gpio/
Dintel,gpio.yaml8 include: [acpi.yaml, gpio-controller.yaml, base.yaml]
12 description: reg properties not required if acpi enumerated
19 description: interrupts properties not required if acpi enumerated
/Zephyr-Core-3.7.0/soc/intel/common/
Dsoc_gpio.h21 * @brief Retrieve current resource settings of a gpio device from acpi.
24 * @param hid the hardware id of the acpi device
25 * @param uid the unique id of the acpi device
/Zephyr-Core-3.7.0/tests/arch/x86/info/src/
Dmain.c19 __weak void acpi(void) in acpi() function
21 printk("ACPI: Not supported in this build.\n\n"); in acpi()
30 acpi(); in main()
Dacpi.c7 #include <zephyr/acpi/acpi.h>
21 return "ACPI name-space enumerated"; in get_dmar_scope_type()
110 void acpi(void) in acpi() function
119 printk("ACPI: no RSDT/MADT found\n\n"); in acpi()
121 printk("ACPI: %d CPU%s found\n", nr_cpus, nr_cpus == 1 ? "" : "s"); in acpi()
/Zephyr-Core-3.7.0/tests/lib/acpi/unit/
Dtestcase.yaml2 lib.acpi:
3 tags: acpi
/Zephyr-Core-3.7.0/arch/x86/core/
Dx86_acpi.c6 #include <zephyr/acpi/acpi.h>
/Zephyr-Core-3.7.0/tests/lib/acpi/unit/src/
Dmock.c9 #include <zephyr/acpi/acpi.h>
10 #include <acpi.h>
/Zephyr-Core-3.7.0/include/zephyr/arch/x86/
Defi.h29 /** @brief Get the ACPI RSDP table pointer from EFI boot argument
31 * @return A valid pointer to ACPI RSDP table or NULL otherwise.
/Zephyr-Core-3.7.0/boards/qemu/x86/
DKconfig.defconfig30 default 0x10000000 if ACPI
53 default 0x10000000 if ACPI

1234