/Zephyr-Core-3.6.0/lib/acpi/ |
D | Kconfig | 1 # 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 …]
|
D | acpi.c | 7 #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 …]
|
D | acpi_shell.c | 12 #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 …]
|
D | CMakeLists.txt | 5 zephyr_library_sources(acpi.c)
|
/Zephyr-Core-3.6.0/include/zephyr/acpi/ |
D | acpi.h | 8 #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 …]
|
D | acpi_osal.h | 11 #include <zephyr/acpi/x86_acpi_osal.h> 13 #error "Currently only x86 Architecture support ACPI !!"
|
/Zephyr-Core-3.6.0/dts/bindings/acpi/ |
D | acpi.yaml | 4 # 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.6.0/tests/lib/acpi/integration/src/ |
D | main.c | 9 #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.6.0/modules/acpica/ |
D | Kconfig | 4 menu "ACPI driver support" 6 config ACPI config 9 if ACPI 17 endif #ACPI
|
/Zephyr-Core-3.6.0/drivers/espi/ |
D | Kconfig.xec | 92 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 …]
|
D | Kconfig | 97 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.6.0/tests/lib/acpi/integration/ |
D | testcase.yaml | 2 acpi.basic: 4 - acpi 8 depends_on: acpi
|
D | CMakeLists.txt | 5 project(acpi) project
|
/Zephyr-Core-3.6.0/tests/lib/acpi/boards/ |
D | qemu_x86_64.overlay | 7 /* 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.6.0/boards/x86/intel_rpl/ |
D | Kconfig.defconfig | 31 config ACPI config 34 if ACPI 44 endif # ACPI
|
/Zephyr-Core-3.6.0/boards/x86/intel_adl/ |
D | Kconfig.defconfig | 32 config ACPI config 35 if ACPI 45 endif # ACPI
|
/Zephyr-Core-3.6.0/tests/arch/x86/info/src/ |
D | main.c | 19 __weak void acpi(void) in acpi() function 21 printk("ACPI: Not supported in this build.\n\n"); in acpi() 30 acpi(); in main()
|
D | acpi.c | 7 #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.6.0/tests/lib/acpi/unit/ |
D | testcase.yaml | 2 lib.acpi: 3 tags: acpi
|
/Zephyr-Core-3.6.0/arch/x86/core/ |
D | x86_acpi.c | 6 #include <zephyr/acpi/acpi.h>
|
/Zephyr-Core-3.6.0/tests/lib/acpi/unit/src/ |
D | mock.c | 9 #include <zephyr/acpi/acpi.h> 10 #include <acpi.h>
|
/Zephyr-Core-3.6.0/include/zephyr/arch/x86/ |
D | efi.h | 29 /** @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.6.0/boards/x86/qemu_x86/ |
D | Kconfig.defconfig | 25 default 0x10000000 if ACPI 50 default 0x10000000 if ACPI
|
/Zephyr-Core-3.6.0/boards/x86/up_squared/ |
D | up_squared.yaml | 9 - acpi
|
/Zephyr-Core-3.6.0/boards/x86/acrn/ |
D | Kconfig.defconfig | 15 depends on ACPI
|