mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
target/arm: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
ca80a5d026
commit
eeed7aed06
3 changed files with 17 additions and 17 deletions
|
@ -1558,39 +1558,39 @@ static void arm_cpu_initfn(Object *obj)
|
|||
* 0 means "unset, use the default value". That default might vary depending
|
||||
* on the CPU type, and is set in the realize fn.
|
||||
*/
|
||||
static Property arm_cpu_gt_cntfrq_property =
|
||||
static const Property arm_cpu_gt_cntfrq_property =
|
||||
DEFINE_PROP_UINT64("cntfrq", ARMCPU, gt_cntfrq_hz, 0);
|
||||
|
||||
static Property arm_cpu_reset_cbar_property =
|
||||
static const Property arm_cpu_reset_cbar_property =
|
||||
DEFINE_PROP_UINT64("reset-cbar", ARMCPU, reset_cbar, 0);
|
||||
|
||||
static Property arm_cpu_reset_hivecs_property =
|
||||
static const Property arm_cpu_reset_hivecs_property =
|
||||
DEFINE_PROP_BOOL("reset-hivecs", ARMCPU, reset_hivecs, false);
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
static Property arm_cpu_has_el2_property =
|
||||
static const Property arm_cpu_has_el2_property =
|
||||
DEFINE_PROP_BOOL("has_el2", ARMCPU, has_el2, true);
|
||||
|
||||
static Property arm_cpu_has_el3_property =
|
||||
static const Property arm_cpu_has_el3_property =
|
||||
DEFINE_PROP_BOOL("has_el3", ARMCPU, has_el3, true);
|
||||
#endif
|
||||
|
||||
static Property arm_cpu_cfgend_property =
|
||||
static const Property arm_cpu_cfgend_property =
|
||||
DEFINE_PROP_BOOL("cfgend", ARMCPU, cfgend, false);
|
||||
|
||||
static Property arm_cpu_has_vfp_property =
|
||||
static const Property arm_cpu_has_vfp_property =
|
||||
DEFINE_PROP_BOOL("vfp", ARMCPU, has_vfp, true);
|
||||
|
||||
static Property arm_cpu_has_vfp_d32_property =
|
||||
static const Property arm_cpu_has_vfp_d32_property =
|
||||
DEFINE_PROP_BOOL("vfp-d32", ARMCPU, has_vfp_d32, true);
|
||||
|
||||
static Property arm_cpu_has_neon_property =
|
||||
static const Property arm_cpu_has_neon_property =
|
||||
DEFINE_PROP_BOOL("neon", ARMCPU, has_neon, true);
|
||||
|
||||
static Property arm_cpu_has_dsp_property =
|
||||
static const Property arm_cpu_has_dsp_property =
|
||||
DEFINE_PROP_BOOL("dsp", ARMCPU, has_dsp, true);
|
||||
|
||||
static Property arm_cpu_has_mpu_property =
|
||||
static const Property arm_cpu_has_mpu_property =
|
||||
DEFINE_PROP_BOOL("has-mpu", ARMCPU, has_mpu, true);
|
||||
|
||||
/* This is like DEFINE_PROP_UINT32 but it doesn't set the default value,
|
||||
|
@ -1598,7 +1598,7 @@ static Property arm_cpu_has_mpu_property =
|
|||
* the right value for that particular CPU type, and we don't want
|
||||
* to override that with an incorrect constant value.
|
||||
*/
|
||||
static Property arm_cpu_pmsav7_dregion_property =
|
||||
static const Property arm_cpu_pmsav7_dregion_property =
|
||||
DEFINE_PROP_UNSIGNED_NODEFAULT("pmsav7-dregion", ARMCPU,
|
||||
pmsav7_dregion,
|
||||
qdev_prop_uint32, uint32_t);
|
||||
|
@ -2644,7 +2644,7 @@ static ObjectClass *arm_cpu_class_by_name(const char *cpu_model)
|
|||
return oc;
|
||||
}
|
||||
|
||||
static Property arm_cpu_properties[] = {
|
||||
static const Property arm_cpu_properties[] = {
|
||||
DEFINE_PROP_UINT64("midr", ARMCPU, midr, 0),
|
||||
DEFINE_PROP_UINT64("mp-affinity", ARMCPU,
|
||||
mp_affinity, ARM64_AFFINITY_INVALID),
|
||||
|
|
|
@ -547,11 +547,11 @@ void arm_cpu_pauth_finalize(ARMCPU *cpu, Error **errp)
|
|||
cpu->isar.id_aa64isar2 = isar2;
|
||||
}
|
||||
|
||||
static Property arm_cpu_pauth_property =
|
||||
static const Property arm_cpu_pauth_property =
|
||||
DEFINE_PROP_BOOL("pauth", ARMCPU, prop_pauth, true);
|
||||
static Property arm_cpu_pauth_impdef_property =
|
||||
static const Property arm_cpu_pauth_impdef_property =
|
||||
DEFINE_PROP_BOOL("pauth-impdef", ARMCPU, prop_pauth_impdef, false);
|
||||
static Property arm_cpu_pauth_qarma3_property =
|
||||
static const Property arm_cpu_pauth_qarma3_property =
|
||||
DEFINE_PROP_BOOL("pauth-qarma3", ARMCPU, prop_pauth_qarma3, false);
|
||||
|
||||
void aarch64_add_pauth_properties(Object *obj)
|
||||
|
|
|
@ -198,7 +198,7 @@ static void cpu_max_get_l0gptsz(Object *obj, Visitor *v, const char *name,
|
|||
visit_type_uint32(v, name, &value, errp);
|
||||
}
|
||||
|
||||
static Property arm_cpu_lpa2_property =
|
||||
static const Property arm_cpu_lpa2_property =
|
||||
DEFINE_PROP_BOOL("lpa2", ARMCPU, prop_lpa2, true);
|
||||
|
||||
static void aarch64_a55_initfn(Object *obj)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue