1# ACPI configuration options 2 3# Copyright (c) 2023 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig ACPI 7 bool "ACPI support" 8 help 9 This option enables support for ACPI driver. 10 11if ACPI 12 13module = ACPI 14module-str = acpi 15source "subsys/logging/Kconfig.template.log_config" 16 17config ACPI_MAX_PRT_ENTRY 18 int "Size of PRT buffer" 19 default 4096 20 help 21 Size of PRT table buffer. 22 23config ACPI_SHELL 24 bool "ACPI command Shell" 25 default y 26 depends on SHELL 27 help 28 Enable commands for debugging ACPI using the built-in shell. 29 30config ACPI_DEV_MAX 31 int "maximum child devices" 32 default 1000 33 help 34 maximum acpi child devices. 35 36config ACPI_INIT_PRIORITY 37 int "acpi boot time init level" 38 default 42 39 help 40 boot time init level for acpi driver. 41 42config ACPI_MAX_INIT_TABLES 43 int "maximum table entries" 44 default 128 45 help 46 maximum number of table entries. 47 48endif # ACPI 49 50config ACPI_HID_LEN_MAX 51 int "Size of HID name" 52 default 12 53 help 54 Size of HID string. 55