qemu/hw/acpi/Kconfig
<<
>>
Prefs
   1config ACPI
   2    bool
   3
   4config ACPI_X86
   5    bool
   6    select ACPI
   7    select ACPI_NVDIMM
   8    select ACPI_CPU_HOTPLUG
   9    select ACPI_MEMORY_HOTPLUG
  10    select ACPI_HMAT
  11    select ACPI_PIIX4
  12    select ACPI_PCIHP
  13
  14config ACPI_X86_ICH
  15    bool
  16    select ACPI_X86
  17
  18config ACPI_CPU_HOTPLUG
  19    bool
  20
  21config ACPI_MEMORY_HOTPLUG
  22    bool
  23    select MEM_DEVICE
  24
  25config ACPI_NVDIMM
  26    bool
  27    depends on ACPI
  28
  29config ACPI_PIIX4
  30    bool
  31    depends on ACPI
  32
  33config ACPI_PCIHP
  34    bool
  35    depends on ACPI
  36
  37config ACPI_HMAT
  38    bool
  39    depends on ACPI
  40
  41config ACPI_APEI
  42    bool
  43    depends on ACPI
  44
  45config ACPI_PCI
  46    bool
  47    depends on ACPI && PCI
  48
  49config ACPI_VMGENID
  50    bool
  51    default y
  52    depends on PC
  53
  54config ACPI_VIOT
  55    bool
  56    depends on ACPI
  57
  58config ACPI_HW_REDUCED
  59    bool
  60    select ACPI
  61    select ACPI_MEMORY_HOTPLUG
  62    select ACPI_NVDIMM
  63