Lines Matching refs:Aml

121 void build_legacy_cpu_hotplug_aml(Aml *ctx, MachineState *machine,  in build_legacy_cpu_hotplug_aml()
124 Aml *dev; in build_legacy_cpu_hotplug_aml()
125 Aml *crs; in build_legacy_cpu_hotplug_aml()
126 Aml *pkg; in build_legacy_cpu_hotplug_aml()
127 Aml *field; in build_legacy_cpu_hotplug_aml()
128 Aml *method; in build_legacy_cpu_hotplug_aml()
129 Aml *if_ctx; in build_legacy_cpu_hotplug_aml()
130 Aml *else_ctx; in build_legacy_cpu_hotplug_aml()
132 Aml *sb_scope = aml_scope("_SB"); in build_legacy_cpu_hotplug_aml()
134 Aml *cpu_id = aml_arg(1); in build_legacy_cpu_hotplug_aml()
135 Aml *apic_id = aml_arg(0); in build_legacy_cpu_hotplug_aml()
136 Aml *cpu_on = aml_local(0); in build_legacy_cpu_hotplug_aml()
137 Aml *madt = aml_local(1); in build_legacy_cpu_hotplug_aml()
138 Aml *cpus_map = aml_name(CPU_ON_BITMAP); in build_legacy_cpu_hotplug_aml()
139 Aml *zero = aml_int(0); in build_legacy_cpu_hotplug_aml()
140 Aml *one = aml_int(1); in build_legacy_cpu_hotplug_aml()
190 Aml *while_ctx, *if_ctx2, *else_ctx2; in build_legacy_cpu_hotplug_aml()
191 Aml *bus_check_evt = aml_int(1); in build_legacy_cpu_hotplug_aml()
192 Aml *remove_evt = aml_int(3); in build_legacy_cpu_hotplug_aml()
193 Aml *status_map = aml_local(5); /* Local5 = active cpu bitmap */ in build_legacy_cpu_hotplug_aml()
194 Aml *byte = aml_local(2); /* Local2 = last read byte from bitmap */ in build_legacy_cpu_hotplug_aml()
195 Aml *idx = aml_local(0); /* Processor ID / APIC ID iterator */ in build_legacy_cpu_hotplug_aml()
196 Aml *is_cpu_on = aml_local(1); /* Local1 = CPON flag for cpu */ in build_legacy_cpu_hotplug_aml()
197 Aml *status = aml_local(3); /* Local3 = active state for cpu */ in build_legacy_cpu_hotplug_aml()