diff options
| author | Babu Moger | 2020-03-11 23:53:48 +0100 |
|---|---|---|
| committer | Eduardo Habkost | 2020-04-01 00:13:32 +0200 |
| commit | 6121c7fbfd98dbc3af1b00b56ff2eef66df87828 (patch) | |
| tree | 50c178a9dcec32d74d0da07958c7e57f06fde2d1 /include | |
| parent | target/i386: Cleanup and use the EPYC mode topology functions (diff) | |
| download | qemu-6121c7fbfd98dbc3af1b00b56ff2eef66df87828.tar.gz qemu-6121c7fbfd98dbc3af1b00b56ff2eef66df87828.tar.xz qemu-6121c7fbfd98dbc3af1b00b56ff2eef66df87828.zip | |
hw/i386: Introduce apicid functions inside X86MachineState
Introduce model specific apicid functions inside X86MachineState.
These functions will be loaded from X86CPUDefinition.
Signed-off-by: Babu Moger <babu.moger@amd.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <158396722838.58170.5675998866484476427.stgit@naples-babu.amd.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/i386/x86.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/hw/i386/x86.h b/include/hw/i386/x86.h index 54af8ab5cf..b522854816 100644 --- a/include/hw/i386/x86.h +++ b/include/hw/i386/x86.h @@ -66,6 +66,15 @@ typedef struct { OnOffAuto smm; OnOffAuto acpi; + /* Apic id specific handlers */ + uint32_t (*apicid_from_cpu_idx)(X86CPUTopoInfo *topo_info, + unsigned cpu_index); + void (*topo_ids_from_apicid)(apic_id_t apicid, X86CPUTopoInfo *topo_info, + X86CPUTopoIDs *topo_ids); + apic_id_t (*apicid_from_topo_ids)(X86CPUTopoInfo *topo_info, + const X86CPUTopoIDs *topo_ids); + uint32_t (*apicid_pkg_offset)(X86CPUTopoInfo *topo_info); + /* * Address space used by IOAPIC device. All IOAPIC interrupts * will be translated to MSI messages in the address space. |
