Lines Matching refs:Aml
67 static void acpi_dsdt_add_cpus(Aml *scope, VirtMachineState *vms) in acpi_dsdt_add_cpus()
73 Aml *dev = aml_device("C%.03X", i); in acpi_dsdt_add_cpus()
80 static void acpi_dsdt_add_uart(Aml *scope, const MemMapEntry *uart_memmap, in acpi_dsdt_add_uart()
83 Aml *dev = aml_device("COM%d", uartidx); in acpi_dsdt_add_uart()
87 Aml *crs = aml_resource_template(); in acpi_dsdt_add_uart()
98 static void acpi_dsdt_add_flash(Aml *scope, const MemMapEntry *flash_memmap) in acpi_dsdt_add_flash()
100 Aml *dev, *crs; in acpi_dsdt_add_flash()
122 static void acpi_dsdt_add_pci(Aml *scope, const MemMapEntry *memmap, in acpi_dsdt_add_pci()
141 static void acpi_dsdt_add_gpio(Aml *scope, const MemMapEntry *gpio_memmap, in acpi_dsdt_add_gpio()
144 Aml *dev = aml_device("GPO0"); in acpi_dsdt_add_gpio()
148 Aml *crs = aml_resource_template(); in acpi_dsdt_add_gpio()
155 Aml *aei = aml_resource_template(); in acpi_dsdt_add_gpio()
164 Aml *method = aml_method("_E03", 0, AML_NOTSERIALIZED); in acpi_dsdt_add_gpio()
172 static void acpi_dsdt_add_tpm(Aml *scope, VirtMachineState *vms) in acpi_dsdt_add_tpm()
191 Aml *dev = aml_device("TPM0"); in acpi_dsdt_add_tpm()
196 Aml *crs = aml_resource_template(); in acpi_dsdt_add_tpm()
807 Aml *scope, *dsdt; in build_dsdt()