mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-14 21:52:18 -06:00
hw/arm/virt: use VirtMachineState.gic_version
machvirt_init may need to probe for the gic version. If so, then make sure the result is written to VirtMachineState. With the state up to date, use it instead of a local variable. This is a cleanup that prepares for VirtMachineState to be passed to functions even outside hw/arm/virt.c Signed-off-by: Andrew Jones <drjones@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 20170102200153.28864-7-drjones@redhat.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
0127937b20
commit
055a7f2b0a
1 changed files with 17 additions and 18 deletions
|
@ -308,7 +308,7 @@ static void fdt_add_psci_node(const VirtMachineState *vms)
|
||||||
qemu_fdt_setprop_cell(fdt, "/psci", "migrate", migrate_fn);
|
qemu_fdt_setprop_cell(fdt, "/psci", "migrate", migrate_fn);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fdt_add_timer_nodes(const VirtMachineState *vms, int gictype)
|
static void fdt_add_timer_nodes(const VirtMachineState *vms)
|
||||||
{
|
{
|
||||||
/* On real hardware these interrupts are level-triggered.
|
/* On real hardware these interrupts are level-triggered.
|
||||||
* On KVM they were edge-triggered before host kernel version 4.4,
|
* On KVM they were edge-triggered before host kernel version 4.4,
|
||||||
|
@ -336,7 +336,7 @@ static void fdt_add_timer_nodes(const VirtMachineState *vms, int gictype)
|
||||||
irqflags = GIC_FDT_IRQ_FLAGS_EDGE_LO_HI;
|
irqflags = GIC_FDT_IRQ_FLAGS_EDGE_LO_HI;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gictype == 2) {
|
if (vms->gic_version == 2) {
|
||||||
irqflags = deposit32(irqflags, GIC_FDT_IRQ_PPI_CPU_START,
|
irqflags = deposit32(irqflags, GIC_FDT_IRQ_PPI_CPU_START,
|
||||||
GIC_FDT_IRQ_PPI_CPU_WIDTH,
|
GIC_FDT_IRQ_PPI_CPU_WIDTH,
|
||||||
(1 << vms->smp_cpus) - 1);
|
(1 << vms->smp_cpus) - 1);
|
||||||
|
@ -450,7 +450,7 @@ static void fdt_add_v2m_gic_node(VirtMachineState *vms)
|
||||||
qemu_fdt_setprop_cell(vms->fdt, "/intc/v2m", "phandle", vms->msi_phandle);
|
qemu_fdt_setprop_cell(vms->fdt, "/intc/v2m", "phandle", vms->msi_phandle);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fdt_add_gic_node(VirtMachineState *vms, int type)
|
static void fdt_add_gic_node(VirtMachineState *vms)
|
||||||
{
|
{
|
||||||
vms->gic_phandle = qemu_fdt_alloc_phandle(vms->fdt);
|
vms->gic_phandle = qemu_fdt_alloc_phandle(vms->fdt);
|
||||||
qemu_fdt_setprop_cell(vms->fdt, "/", "interrupt-parent", vms->gic_phandle);
|
qemu_fdt_setprop_cell(vms->fdt, "/", "interrupt-parent", vms->gic_phandle);
|
||||||
|
@ -461,7 +461,7 @@ static void fdt_add_gic_node(VirtMachineState *vms, int type)
|
||||||
qemu_fdt_setprop_cell(vms->fdt, "/intc", "#address-cells", 0x2);
|
qemu_fdt_setprop_cell(vms->fdt, "/intc", "#address-cells", 0x2);
|
||||||
qemu_fdt_setprop_cell(vms->fdt, "/intc", "#size-cells", 0x2);
|
qemu_fdt_setprop_cell(vms->fdt, "/intc", "#size-cells", 0x2);
|
||||||
qemu_fdt_setprop(vms->fdt, "/intc", "ranges", NULL, 0);
|
qemu_fdt_setprop(vms->fdt, "/intc", "ranges", NULL, 0);
|
||||||
if (type == 3) {
|
if (vms->gic_version == 3) {
|
||||||
qemu_fdt_setprop_string(vms->fdt, "/intc", "compatible",
|
qemu_fdt_setprop_string(vms->fdt, "/intc", "compatible",
|
||||||
"arm,gic-v3");
|
"arm,gic-v3");
|
||||||
qemu_fdt_setprop_sized_cells(vms->fdt, "/intc", "reg",
|
qemu_fdt_setprop_sized_cells(vms->fdt, "/intc", "reg",
|
||||||
|
@ -483,7 +483,7 @@ static void fdt_add_gic_node(VirtMachineState *vms, int type)
|
||||||
qemu_fdt_setprop_cell(vms->fdt, "/intc", "phandle", vms->gic_phandle);
|
qemu_fdt_setprop_cell(vms->fdt, "/intc", "phandle", vms->gic_phandle);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fdt_add_pmu_nodes(const VirtMachineState *vms, int gictype)
|
static void fdt_add_pmu_nodes(const VirtMachineState *vms)
|
||||||
{
|
{
|
||||||
CPUState *cpu;
|
CPUState *cpu;
|
||||||
ARMCPU *armcpu;
|
ARMCPU *armcpu;
|
||||||
|
@ -497,7 +497,7 @@ static void fdt_add_pmu_nodes(const VirtMachineState *vms, int gictype)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gictype == 2) {
|
if (vms->gic_version == 2) {
|
||||||
irqflags = deposit32(irqflags, GIC_FDT_IRQ_PPI_CPU_START,
|
irqflags = deposit32(irqflags, GIC_FDT_IRQ_PPI_CPU_START,
|
||||||
GIC_FDT_IRQ_PPI_CPU_WIDTH,
|
GIC_FDT_IRQ_PPI_CPU_WIDTH,
|
||||||
(1 << vms->smp_cpus) - 1);
|
(1 << vms->smp_cpus) - 1);
|
||||||
|
@ -553,14 +553,14 @@ static void create_v2m(VirtMachineState *vms, qemu_irq *pic)
|
||||||
fdt_add_v2m_gic_node(vms);
|
fdt_add_v2m_gic_node(vms);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void create_gic(VirtMachineState *vms, qemu_irq *pic, int type)
|
static void create_gic(VirtMachineState *vms, qemu_irq *pic)
|
||||||
{
|
{
|
||||||
/* We create a standalone GIC */
|
/* We create a standalone GIC */
|
||||||
VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
|
VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
|
||||||
DeviceState *gicdev;
|
DeviceState *gicdev;
|
||||||
SysBusDevice *gicbusdev;
|
SysBusDevice *gicbusdev;
|
||||||
const char *gictype;
|
const char *gictype;
|
||||||
int i;
|
int type = vms->gic_version, i;
|
||||||
|
|
||||||
gictype = (type == 3) ? gicv3_class_name() : gic_class_name();
|
gictype = (type == 3) ? gicv3_class_name() : gic_class_name();
|
||||||
|
|
||||||
|
@ -616,7 +616,7 @@ static void create_gic(VirtMachineState *vms, qemu_irq *pic, int type)
|
||||||
pic[i] = qdev_get_gpio_in(gicdev, i);
|
pic[i] = qdev_get_gpio_in(gicdev, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
fdt_add_gic_node(vms, type);
|
fdt_add_gic_node(vms);
|
||||||
|
|
||||||
if (type == 3 && !vmc->no_its) {
|
if (type == 3 && !vmc->no_its) {
|
||||||
create_its(vms, gicdev);
|
create_its(vms, gicdev);
|
||||||
|
@ -1212,7 +1212,6 @@ static void machvirt_init(MachineState *machine)
|
||||||
qemu_irq pic[NUM_IRQS];
|
qemu_irq pic[NUM_IRQS];
|
||||||
MemoryRegion *sysmem = get_system_memory();
|
MemoryRegion *sysmem = get_system_memory();
|
||||||
MemoryRegion *secure_sysmem = NULL;
|
MemoryRegion *secure_sysmem = NULL;
|
||||||
int gic_version = vms->gic_version;
|
|
||||||
int n, virt_max_cpus;
|
int n, virt_max_cpus;
|
||||||
MemoryRegion *ram = g_new(MemoryRegion, 1);
|
MemoryRegion *ram = g_new(MemoryRegion, 1);
|
||||||
const char *cpu_model = machine->cpu_model;
|
const char *cpu_model = machine->cpu_model;
|
||||||
|
@ -1233,14 +1232,14 @@ static void machvirt_init(MachineState *machine)
|
||||||
/* We can probe only here because during property set
|
/* We can probe only here because during property set
|
||||||
* KVM is not available yet
|
* KVM is not available yet
|
||||||
*/
|
*/
|
||||||
if (!gic_version) {
|
if (!vms->gic_version) {
|
||||||
if (!kvm_enabled()) {
|
if (!kvm_enabled()) {
|
||||||
error_report("gic-version=host requires KVM");
|
error_report("gic-version=host requires KVM");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
gic_version = kvm_arm_vgic_probe();
|
vms->gic_version = kvm_arm_vgic_probe();
|
||||||
if (!gic_version) {
|
if (!vms->gic_version) {
|
||||||
error_report("Unable to determine GIC version supported by host");
|
error_report("Unable to determine GIC version supported by host");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
@ -1266,7 +1265,7 @@ static void machvirt_init(MachineState *machine)
|
||||||
/* The maximum number of CPUs depends on the GIC version, or on how
|
/* The maximum number of CPUs depends on the GIC version, or on how
|
||||||
* many redistributors we can fit into the memory map.
|
* many redistributors we can fit into the memory map.
|
||||||
*/
|
*/
|
||||||
if (gic_version == 3) {
|
if (vms->gic_version == 3) {
|
||||||
virt_max_cpus = vms->memmap[VIRT_GIC_REDIST].size / 0x20000;
|
virt_max_cpus = vms->memmap[VIRT_GIC_REDIST].size / 0x20000;
|
||||||
clustersz = GICV3_TARGETLIST_BITS;
|
clustersz = GICV3_TARGETLIST_BITS;
|
||||||
} else {
|
} else {
|
||||||
|
@ -1373,7 +1372,7 @@ static void machvirt_init(MachineState *machine)
|
||||||
|
|
||||||
object_property_set_bool(cpuobj, true, "realized", NULL);
|
object_property_set_bool(cpuobj, true, "realized", NULL);
|
||||||
}
|
}
|
||||||
fdt_add_timer_nodes(vms, gic_version);
|
fdt_add_timer_nodes(vms);
|
||||||
fdt_add_cpu_nodes(vms);
|
fdt_add_cpu_nodes(vms);
|
||||||
fdt_add_psci_node(vms);
|
fdt_add_psci_node(vms);
|
||||||
|
|
||||||
|
@ -1383,9 +1382,9 @@ static void machvirt_init(MachineState *machine)
|
||||||
|
|
||||||
create_flash(vms, sysmem, secure_sysmem ? secure_sysmem : sysmem);
|
create_flash(vms, sysmem, secure_sysmem ? secure_sysmem : sysmem);
|
||||||
|
|
||||||
create_gic(vms, pic, gic_version);
|
create_gic(vms, pic);
|
||||||
|
|
||||||
fdt_add_pmu_nodes(vms, gic_version);
|
fdt_add_pmu_nodes(vms);
|
||||||
|
|
||||||
create_uart(vms, pic, VIRT_UART, sysmem, serial_hds[0]);
|
create_uart(vms, pic, VIRT_UART, sysmem, serial_hds[0]);
|
||||||
|
|
||||||
|
@ -1414,7 +1413,7 @@ static void machvirt_init(MachineState *machine)
|
||||||
guest_info->memmap = vms->memmap;
|
guest_info->memmap = vms->memmap;
|
||||||
guest_info->irqmap = vms->irqmap;
|
guest_info->irqmap = vms->irqmap;
|
||||||
guest_info->use_highmem = vms->highmem;
|
guest_info->use_highmem = vms->highmem;
|
||||||
guest_info->gic_version = gic_version;
|
guest_info->gic_version = vms->gic_version;
|
||||||
guest_info->no_its = vmc->no_its;
|
guest_info->no_its = vmc->no_its;
|
||||||
guest_info_state->machine_done.notify = virt_guest_info_machine_done;
|
guest_info_state->machine_done.notify = virt_guest_info_machine_done;
|
||||||
qemu_add_machine_init_done_notifier(&guest_info_state->machine_done);
|
qemu_add_machine_init_done_notifier(&guest_info_state->machine_done);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue