mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
hw/arm: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
b5e4f90e64
commit
e15bd5dd05
18 changed files with 22 additions and 22 deletions
|
@ -72,12 +72,12 @@ struct ARMSSEInfo {
|
||||||
bool has_cpu_pwrctrl;
|
bool has_cpu_pwrctrl;
|
||||||
bool has_sse_counter;
|
bool has_sse_counter;
|
||||||
bool has_tcms;
|
bool has_tcms;
|
||||||
Property *props;
|
const Property *props;
|
||||||
const ARMSSEDeviceInfo *devinfo;
|
const ARMSSEDeviceInfo *devinfo;
|
||||||
const bool *irq_is_common;
|
const bool *irq_is_common;
|
||||||
};
|
};
|
||||||
|
|
||||||
static Property iotkit_properties[] = {
|
static const Property iotkit_properties[] = {
|
||||||
DEFINE_PROP_LINK("memory", ARMSSE, board_memory, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("memory", ARMSSE, board_memory, TYPE_MEMORY_REGION,
|
||||||
MemoryRegion *),
|
MemoryRegion *),
|
||||||
DEFINE_PROP_UINT32("EXP_NUMIRQ", ARMSSE, exp_numirq, 64),
|
DEFINE_PROP_UINT32("EXP_NUMIRQ", ARMSSE, exp_numirq, 64),
|
||||||
|
@ -90,7 +90,7 @@ static Property iotkit_properties[] = {
|
||||||
DEFINE_PROP_END_OF_LIST()
|
DEFINE_PROP_END_OF_LIST()
|
||||||
};
|
};
|
||||||
|
|
||||||
static Property sse200_properties[] = {
|
static const Property sse200_properties[] = {
|
||||||
DEFINE_PROP_LINK("memory", ARMSSE, board_memory, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("memory", ARMSSE, board_memory, TYPE_MEMORY_REGION,
|
||||||
MemoryRegion *),
|
MemoryRegion *),
|
||||||
DEFINE_PROP_UINT32("EXP_NUMIRQ", ARMSSE, exp_numirq, 64),
|
DEFINE_PROP_UINT32("EXP_NUMIRQ", ARMSSE, exp_numirq, 64),
|
||||||
|
@ -107,7 +107,7 @@ static Property sse200_properties[] = {
|
||||||
DEFINE_PROP_END_OF_LIST()
|
DEFINE_PROP_END_OF_LIST()
|
||||||
};
|
};
|
||||||
|
|
||||||
static Property sse300_properties[] = {
|
static const Property sse300_properties[] = {
|
||||||
DEFINE_PROP_LINK("memory", ARMSSE, board_memory, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("memory", ARMSSE, board_memory, TYPE_MEMORY_REGION,
|
||||||
MemoryRegion *),
|
MemoryRegion *),
|
||||||
DEFINE_PROP_UINT32("EXP_NUMIRQ", ARMSSE, exp_numirq, 64),
|
DEFINE_PROP_UINT32("EXP_NUMIRQ", ARMSSE, exp_numirq, 64),
|
||||||
|
|
|
@ -538,7 +538,7 @@ static void armv7m_realize(DeviceState *dev, Error **errp)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property armv7m_properties[] = {
|
static const Property armv7m_properties[] = {
|
||||||
DEFINE_PROP_STRING("cpu-type", ARMv7MState, cpu_type),
|
DEFINE_PROP_STRING("cpu-type", ARMv7MState, cpu_type),
|
||||||
DEFINE_PROP_LINK("memory", ARMv7MState, board_memory, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("memory", ARMv7MState, board_memory, TYPE_MEMORY_REGION,
|
||||||
MemoryRegion *),
|
MemoryRegion *),
|
||||||
|
@ -631,7 +631,7 @@ void armv7m_load_kernel(ARMCPU *cpu, const char *kernel_filename,
|
||||||
qemu_register_reset(armv7m_reset, cpu);
|
qemu_register_reset(armv7m_reset, cpu);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property bitband_properties[] = {
|
static const Property bitband_properties[] = {
|
||||||
DEFINE_PROP_UINT32("base", BitBandState, base, 0),
|
DEFINE_PROP_UINT32("base", BitBandState, base, 0),
|
||||||
DEFINE_PROP_LINK("source-memory", BitBandState, source_memory,
|
DEFINE_PROP_LINK("source-memory", BitBandState, source_memory,
|
||||||
TYPE_MEMORY_REGION, MemoryRegion *),
|
TYPE_MEMORY_REGION, MemoryRegion *),
|
||||||
|
|
|
@ -139,7 +139,7 @@ static bool aspeed_soc_boot_from_emmc(AspeedSoCState *s)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property aspeed_soc_properties[] = {
|
static const Property aspeed_soc_properties[] = {
|
||||||
DEFINE_PROP_LINK("dram", AspeedSoCState, dram_mr, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("dram", AspeedSoCState, dram_mr, TYPE_MEMORY_REGION,
|
||||||
MemoryRegion *),
|
MemoryRegion *),
|
||||||
DEFINE_PROP_LINK("memory", AspeedSoCState, memory, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("memory", AspeedSoCState, memory, TYPE_MEMORY_REGION,
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include "target/arm/cpu-qom.h"
|
#include "target/arm/cpu-qom.h"
|
||||||
#include "target/arm/gtimer.h"
|
#include "target/arm/gtimer.h"
|
||||||
|
|
||||||
static Property bcm2836_enabled_cores_property =
|
static const Property bcm2836_enabled_cores_property =
|
||||||
DEFINE_PROP_UINT32("enabled-cpus", BCM283XBaseState, enabled_cpus, 0);
|
DEFINE_PROP_UINT32("enabled-cpus", BCM283XBaseState, enabled_cpus, 0);
|
||||||
|
|
||||||
static void bcm283x_base_init(Object *obj)
|
static void bcm283x_base_init(Object *obj)
|
||||||
|
|
|
@ -309,7 +309,7 @@ static void fsl_imx25_realize(DeviceState *dev, Error **errp)
|
||||||
&s->iram_alias);
|
&s->iram_alias);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property fsl_imx25_properties[] = {
|
static const Property fsl_imx25_properties[] = {
|
||||||
DEFINE_PROP_UINT32("fec-phy-num", FslIMX25State, phy_num, 0),
|
DEFINE_PROP_UINT32("fec-phy-num", FslIMX25State, phy_num, 0),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
};
|
};
|
||||||
|
|
|
@ -481,7 +481,7 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
|
||||||
&s->ocram_alias);
|
&s->ocram_alias);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property fsl_imx6_properties[] = {
|
static const Property fsl_imx6_properties[] = {
|
||||||
DEFINE_PROP_UINT32("fec-phy-num", FslIMX6State, phy_num, 0),
|
DEFINE_PROP_UINT32("fec-phy-num", FslIMX6State, phy_num, 0),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
};
|
};
|
||||||
|
|
|
@ -718,7 +718,7 @@ static void fsl_imx6ul_realize(DeviceState *dev, Error **errp)
|
||||||
FSL_IMX6UL_OCRAM_ALIAS_ADDR, &s->ocram_alias);
|
FSL_IMX6UL_OCRAM_ALIAS_ADDR, &s->ocram_alias);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property fsl_imx6ul_properties[] = {
|
static const Property fsl_imx6ul_properties[] = {
|
||||||
DEFINE_PROP_UINT32("fec1-phy-num", FslIMX6ULState, phy_num[0], 0),
|
DEFINE_PROP_UINT32("fec1-phy-num", FslIMX6ULState, phy_num[0], 0),
|
||||||
DEFINE_PROP_UINT32("fec2-phy-num", FslIMX6ULState, phy_num[1], 1),
|
DEFINE_PROP_UINT32("fec2-phy-num", FslIMX6ULState, phy_num[1], 1),
|
||||||
DEFINE_PROP_BOOL("fec1-phy-connected", FslIMX6ULState, phy_connected[0],
|
DEFINE_PROP_BOOL("fec1-phy-connected", FslIMX6ULState, phy_connected[0],
|
||||||
|
|
|
@ -736,7 +736,7 @@ static void fsl_imx7_realize(DeviceState *dev, Error **errp)
|
||||||
&s->caam);
|
&s->caam);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property fsl_imx7_properties[] = {
|
static const Property fsl_imx7_properties[] = {
|
||||||
DEFINE_PROP_UINT32("fec1-phy-num", FslIMX7State, phy_num[0], 0),
|
DEFINE_PROP_UINT32("fec1-phy-num", FslIMX7State, phy_num[0], 0),
|
||||||
DEFINE_PROP_UINT32("fec2-phy-num", FslIMX7State, phy_num[1], 1),
|
DEFINE_PROP_UINT32("fec2-phy-num", FslIMX7State, phy_num[1], 1),
|
||||||
DEFINE_PROP_BOOL("fec1-phy-connected", FslIMX7State, phy_connected[0],
|
DEFINE_PROP_BOOL("fec1-phy-connected", FslIMX7State, phy_connected[0],
|
||||||
|
|
|
@ -694,7 +694,7 @@ static void integratorcp_machine_init(MachineClass *mc)
|
||||||
|
|
||||||
DEFINE_MACHINE("integratorcp", integratorcp_machine_init)
|
DEFINE_MACHINE("integratorcp", integratorcp_machine_init)
|
||||||
|
|
||||||
static Property core_properties[] = {
|
static const Property core_properties[] = {
|
||||||
DEFINE_PROP_UINT32("memsz", IntegratorCMState, memsz, 0),
|
DEFINE_PROP_UINT32("memsz", IntegratorCMState, memsz, 0),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
};
|
};
|
||||||
|
|
|
@ -222,7 +222,7 @@ static void m2sxxx_soc_realize(DeviceState *dev_soc, Error **errp)
|
||||||
create_unimplemented_device("usb", 0x40043000, 0x1000);
|
create_unimplemented_device("usb", 0x40043000, 0x1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property m2sxxx_soc_properties[] = {
|
static const Property m2sxxx_soc_properties[] = {
|
||||||
/*
|
/*
|
||||||
* part name specifies the type of SmartFusion2 device variant(this
|
* part name specifies the type of SmartFusion2 device variant(this
|
||||||
* property is for information purpose only.
|
* property is for information purpose only.
|
||||||
|
|
|
@ -810,7 +810,7 @@ static void npcm7xx_realize(DeviceState *dev, Error **errp)
|
||||||
create_unimplemented_device("npcm7xx.spix", 0xfb001000, 4 * KiB);
|
create_unimplemented_device("npcm7xx.spix", 0xfb001000, 4 * KiB);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property npcm7xx_properties[] = {
|
static const Property npcm7xx_properties[] = {
|
||||||
DEFINE_PROP_LINK("dram-mr", NPCM7xxState, dram, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("dram-mr", NPCM7xxState, dram, TYPE_MEMORY_REGION,
|
||||||
MemoryRegion *),
|
MemoryRegion *),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
|
|
|
@ -208,7 +208,7 @@ static void nrf51_soc_init(Object *obj)
|
||||||
s->sysclk = qdev_init_clock_in(DEVICE(s), "sysclk", NULL, NULL, 0);
|
s->sysclk = qdev_init_clock_in(DEVICE(s), "sysclk", NULL, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property nrf51_soc_properties[] = {
|
static const Property nrf51_soc_properties[] = {
|
||||||
DEFINE_PROP_LINK("memory", NRF51State, board_memory, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("memory", NRF51State, board_memory, TYPE_MEMORY_REGION,
|
||||||
MemoryRegion *),
|
MemoryRegion *),
|
||||||
DEFINE_PROP_UINT32("sram-size", NRF51State, sram_size, NRF51822_SRAM_SIZE),
|
DEFINE_PROP_UINT32("sram-size", NRF51State, sram_size, NRF51822_SRAM_SIZE),
|
||||||
|
|
|
@ -934,7 +934,7 @@ static void smmu_base_reset_hold(Object *obj, ResetType type)
|
||||||
g_hash_table_remove_all(s->iotlb);
|
g_hash_table_remove_all(s->iotlb);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property smmu_dev_properties[] = {
|
static const Property smmu_dev_properties[] = {
|
||||||
DEFINE_PROP_UINT8("bus_num", SMMUState, bus_num, 0),
|
DEFINE_PROP_UINT8("bus_num", SMMUState, bus_num, 0),
|
||||||
DEFINE_PROP_LINK("primary-bus", SMMUState, primary_bus,
|
DEFINE_PROP_LINK("primary-bus", SMMUState, primary_bus,
|
||||||
TYPE_PCI_BUS, PCIBus *),
|
TYPE_PCI_BUS, PCIBus *),
|
||||||
|
|
|
@ -1976,7 +1976,7 @@ static const VMStateDescription vmstate_smmuv3 = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static Property smmuv3_properties[] = {
|
static const Property smmuv3_properties[] = {
|
||||||
/*
|
/*
|
||||||
* Stages of translation advertised.
|
* Stages of translation advertised.
|
||||||
* "1": Stage 1
|
* "1": Stage 1
|
||||||
|
|
|
@ -438,7 +438,7 @@ static const VMStateDescription vmstate_stellaris_sys = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static Property stellaris_sys_properties[] = {
|
static const Property stellaris_sys_properties[] = {
|
||||||
DEFINE_PROP_UINT32("user0", ssys_state, user0, 0),
|
DEFINE_PROP_UINT32("user0", ssys_state, user0, 0),
|
||||||
DEFINE_PROP_UINT32("user1", ssys_state, user1, 0),
|
DEFINE_PROP_UINT32("user1", ssys_state, user1, 0),
|
||||||
DEFINE_PROP_UINT32("did0", ssys_state, did0, 0),
|
DEFINE_PROP_UINT32("did0", ssys_state, did0, 0),
|
||||||
|
|
|
@ -1332,7 +1332,7 @@ static const VMStateDescription vmstate_strongarm_uart_regs = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static Property strongarm_uart_properties[] = {
|
static const Property strongarm_uart_properties[] = {
|
||||||
DEFINE_PROP_CHR("chardev", StrongARMUARTState, chr),
|
DEFINE_PROP_CHR("chardev", StrongARMUARTState, chr),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
};
|
};
|
||||||
|
|
|
@ -968,7 +968,7 @@ static void versal_init(Object *obj)
|
||||||
"mr-rpu-ps-alias", &s->mr_ps, 0, UINT64_MAX);
|
"mr-rpu-ps-alias", &s->mr_ps, 0, UINT64_MAX);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property versal_properties[] = {
|
static const Property versal_properties[] = {
|
||||||
DEFINE_PROP_LINK("ddr", Versal, cfg.mr_ddr, TYPE_MEMORY_REGION,
|
DEFINE_PROP_LINK("ddr", Versal, cfg.mr_ddr, TYPE_MEMORY_REGION,
|
||||||
MemoryRegion *),
|
MemoryRegion *),
|
||||||
DEFINE_PROP_LINK("canbus0", Versal, lpd.iou.canbus[0],
|
DEFINE_PROP_LINK("canbus0", Versal, lpd.iou.canbus[0],
|
||||||
|
|
|
@ -857,7 +857,7 @@ static void xlnx_zynqmp_realize(DeviceState *dev, Error **errp)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property xlnx_zynqmp_props[] = {
|
static const Property xlnx_zynqmp_props[] = {
|
||||||
DEFINE_PROP_STRING("boot-cpu", XlnxZynqMPState, boot_cpu),
|
DEFINE_PROP_STRING("boot-cpu", XlnxZynqMPState, boot_cpu),
|
||||||
DEFINE_PROP_BOOL("secure", XlnxZynqMPState, secure, false),
|
DEFINE_PROP_BOOL("secure", XlnxZynqMPState, secure, false),
|
||||||
DEFINE_PROP_BOOL("virtualization", XlnxZynqMPState, virt, false),
|
DEFINE_PROP_BOOL("virtualization", XlnxZynqMPState, virt, false),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue