Hi Sebastian,
On 7/2/26 3:36 PM, Sebastian Ott wrote:
> From: Cornelia Huck <[email protected]>
>
> Move handling of CCSIDR_EL1 over to the new *_IDREG_DEMUX
> infrastructure.
>
> Tested-by: Alireza Sanaee <[email protected]>
> Signed-off-by: Cornelia Huck <[email protected]>
> Signed-off-by: Sebastian Ott <[email protected]>
You might use
[diff]
orderFile = scripts/git.orderfile
in your .git/config
to get your diffs sorted by file categories
Still I would document in the commit msg you kept the existing size of
16 although this might be extended in the future to 32: 8 levels x 2
value Ind x 2 value TnD = 32
Besides
Reviewed-by: Eric Auger <[email protected]>
Eric
> ---
> hw/arm/virt.c | 19 ++++------
> hw/intc/armv7m_nvic.c | 2 +-
> target/arm/cpu-max.c | 6 ++--
> target/arm/cpu-sysregs.h.inc | 1 +
> target/arm/cpu.h | 6 ----
> target/arm/cpu64.c | 6 ++--
> target/arm/helper.c | 2 +-
> target/arm/tcg/cpu32-system.c | 26 +++++++-------
> target/arm/tcg/cpu64.c | 68 +++++++++++++++++------------------
> 9 files changed, 63 insertions(+), 73 deletions(-)
>
> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> index d8d27f2ef6..e20b5a4fc9 100644
> --- a/hw/arm/virt.c
> +++ b/hw/arm/virt.c
> @@ -304,24 +304,19 @@ void set_cpu_cache(CPUCoreCaches *cpu_cache, enum
> CacheType cache_type,
> int bank_index = ((cache_level - 1) * 2) | is_i_cache0;
> ARMCPU *armcpu = ARM_CPU(qemu_get_cpu(0));
> bool ccidx = cpu_isar_feature(any_ccidx, armcpu);
> + uint64_t ccsidr = GET_IDREG_DEMUX(&armcpu->isar, CCSIDR_EL1, bank_index);
>
> if (ccidx) {
> *cpu_cache = (CPUCoreCaches){
> - .linesize = 1 << (FIELD_EX64(armcpu->ccsidr[bank_index],
> CCSIDR_EL1,
> - CCIDX_LINESIZE) + 4),
> - .associativity = FIELD_EX64(armcpu->ccsidr[bank_index],
> CCSIDR_EL1,
> - CCIDX_ASSOCIATIVITY) + 1,
> - .sets = FIELD_EX64(armcpu->ccsidr[bank_index], CCSIDR_EL1,
> - CCIDX_NUMSETS) + 1,
> + .linesize = 1 << (FIELD_EX64(ccsidr, CCSIDR_EL1, CCIDX_LINESIZE)
> + 4),
> + .associativity = FIELD_EX64(ccsidr, CCSIDR_EL1,
> CCIDX_ASSOCIATIVITY) + 1,
> + .sets = FIELD_EX64(ccsidr, CCSIDR_EL1, CCIDX_NUMSETS) + 1,
> };
> } else {
> *cpu_cache = (CPUCoreCaches){
> - .linesize = 1 << (FIELD_EX64(armcpu->ccsidr[bank_index],
> CCSIDR_EL1,
> - LINESIZE) + 4),
> - .associativity = FIELD_EX64(armcpu->ccsidr[bank_index],
> CCSIDR_EL1,
> - ASSOCIATIVITY) + 1,
> - .sets =
> - FIELD_EX64(armcpu->ccsidr[bank_index], CCSIDR_EL1, NUMSETS)
> + 1,
> + .linesize = 1 << (FIELD_EX64(ccsidr, CCSIDR_EL1, LINESIZE) + 4),
> + .associativity = FIELD_EX64(ccsidr, CCSIDR_EL1, ASSOCIATIVITY) +
> 1,
> + .sets = FIELD_EX64(ccsidr, CCSIDR_EL1, NUMSETS) + 1,
> };
> }
> cpu_cache->type = cache_type;
> diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c
> index a7651f831e..5dd867242b 100644
> --- a/hw/intc/armv7m_nvic.c
> +++ b/hw/intc/armv7m_nvic.c
> @@ -1360,7 +1360,7 @@ static uint32_t nvic_readl(NVICState *s, uint32_t
> offset, MemTxAttrs attrs)
> case 0xd80: /* CSSIDR */
> {
> int idx = cpu->env.v7m.csselr[attrs.secure] &
> R_V7M_CSSELR_INDEX_MASK;
> - return cpu->ccsidr[idx];
> + return GET_IDREG_DEMUX(&cpu->isar, CCSIDR_EL1, idx);
> }
> case 0xd84: /* CSSELR */
> return cpu->env.v7m.csselr[attrs.secure];
> diff --git a/target/arm/cpu-max.c b/target/arm/cpu-max.c
> index d38bdfcf81..d2f69b6bcf 100644
> --- a/target/arm/cpu-max.c
> +++ b/target/arm/cpu-max.c
> @@ -72,11 +72,11 @@ void aarch64_aa32_a57_init(Object *obj, bool aa32_only)
> cpu->isar.reset_pmcr_el0 = 0x41013000;
> SET_IDREG(isar, CLIDR, 0x0a200023);
> /* 32KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 32 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 32 * KiB, 7));
> /* 48KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 3, 64, 48 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 3, 64, 48 * KiB, 2));
> /* 2048KB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 16, 64, 2 * MiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 16, 64, 2 * MiB, 7));
> if (aarch64_enabled) {
> set_dczid_bs(cpu, 4); /* 64 bytes */
> cpu->gic_num_lrs = 4;
> diff --git a/target/arm/cpu-sysregs.h.inc b/target/arm/cpu-sysregs.h.inc
> index 6e8b335b8f..d9e058a57e 100644
> --- a/target/arm/cpu-sysregs.h.inc
> +++ b/target/arm/cpu-sysregs.h.inc
> @@ -39,6 +39,7 @@ DEF(MVFR2_EL1, 3, 0, 0, 3, 2)
> DEF(ID_PFR2_EL1, 3, 0, 0, 3, 4)
> DEF(ID_DFR1_EL1, 3, 0, 0, 3, 5)
> DEF(ID_MMFR5_EL1, 3, 0, 0, 3, 6)
> +DEF_MUX(CCSIDR_EL1, 3, 1, 0, 0, 0, 16)
> DEF(CLIDR_EL1, 3, 1, 0, 0, 1)
> DEF(ID_AA64ZFR0_EL1, 3, 0, 0, 4, 4)
> DEF(CTR_EL0, 3, 3, 0, 0, 1)
> diff --git a/target/arm/cpu.h b/target/arm/cpu.h
> index 5668deee4c..de2304c049 100644
> --- a/target/arm/cpu.h
> +++ b/target/arm/cpu.h
> @@ -1122,10 +1122,6 @@ struct ArchCPU {
> uint64_t pmceid0;
> uint64_t pmceid1;
> uint64_t mp_affinity; /* MP ID without feature bits */
> - /* The elements of this array are the CCSIDR values for each cache,
> - * in the order L1DCache, L1ICache, L2DCache, L2ICache, etc.
> - */
> - uint64_t ccsidr[16];
> uint64_t reset_cbar;
> uint32_t reset_auxcr;
> bool reset_hivecs;
> @@ -2139,8 +2135,6 @@ FIELD(MFAR, FPA, 12, 40)
> FIELD(MFAR, NSE, 62, 1)
> FIELD(MFAR, NS, 63, 1)
>
> -QEMU_BUILD_BUG_ON(ARRAY_SIZE(((ARMCPU *)0)->ccsidr) <=
> R_V7M_CSSELR_INDEX_MASK);
> -
> /* If adding a feature bit which corresponds to a Linux ELF
> * HWCAP bit, remember to update the feature-bit-to-hwcap
> * mapping in linux-user/elfload.c:get_elf_hwcap().
> diff --git a/target/arm/cpu64.c b/target/arm/cpu64.c
> index 48a0421674..9bcef81dce 100644
> --- a/target/arm/cpu64.c
> +++ b/target/arm/cpu64.c
> @@ -748,11 +748,11 @@ static void aarch64_a53_initfn(Object *obj)
> cpu->isar.reset_pmcr_el0 = 0x41033000;
> SET_IDREG(isar, CLIDR, 0x0a200023);
> /* 32KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 32 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 32 * KiB, 7));
> /* 32KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 1, 64, 32 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 1, 64, 32 * KiB, 2));
> /* 1024KB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 16, 64, 1 * MiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 16, 64, 1 * MiB, 7));
> set_dczid_bs(cpu, 4); /* 64 bytes */
> cpu->gic_num_lrs = 4;
> cpu->gic_vpribits = 5;
> diff --git a/target/arm/helper.c b/target/arm/helper.c
> index 93e3d8b575..04cace7b8f 100644
> --- a/target/arm/helper.c
> +++ b/target/arm/helper.c
> @@ -882,7 +882,7 @@ static uint64_t ccsidr_read(CPUARMState *env, const
> ARMCPRegInfo *ri)
> uint32_t index = A32_BANKED_REG_GET(env, csselr,
> ri->secure & ARM_CP_SECSTATE_S);
>
> - return cpu->ccsidr[index];
> + return GET_IDREG_DEMUX(&cpu->isar, CCSIDR_EL1, index);
> }
>
> static void csselr_write(CPUARMState *env, const ARMCPRegInfo *ri,
> diff --git a/target/arm/tcg/cpu32-system.c b/target/arm/tcg/cpu32-system.c
> index 6e98390089..f00c996db3 100644
> --- a/target/arm/tcg/cpu32-system.c
> +++ b/target/arm/tcg/cpu32-system.c
> @@ -270,9 +270,9 @@ static void cortex_a8_initfn(Object *obj)
> SET_IDREG(isar, ID_ISAR4, 0x00111142);
> cpu->isar.dbgdidr = 0x15141000;
> SET_IDREG(isar, CLIDR, (1 << 27) | (2 << 24) | 3);
> - cpu->ccsidr[0] = 0xe007e01a; /* 16k L1 dcache. */
> - cpu->ccsidr[1] = 0x2007e01a; /* 16k L1 icache. */
> - cpu->ccsidr[2] = 0xf0000000; /* No L2 icache. */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, 0xe007e01a); /* 16k L1 dcache. */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, 0x2007e01a); /* 16k L1 icache. */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, 0xf0000000); /* No L2 icache. */
> cpu->reset_auxcr = 2;
> cpu->isar.reset_pmcr_el0 = 0x41002000;
> define_arm_cp_regs(cpu, cortexa8_cp_reginfo);
> @@ -346,8 +346,8 @@ static void cortex_a9_initfn(Object *obj)
> SET_IDREG(isar, ID_ISAR4, 0x00111142);
> cpu->isar.dbgdidr = 0x35141000;
> SET_IDREG(isar, CLIDR, (1 << 27) | (1 << 24) | 3);
> - cpu->ccsidr[0] = 0xe00fe019; /* 16k L1 dcache. */
> - cpu->ccsidr[1] = 0x200fe019; /* 16k L1 icache. */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, 0xe00fe019); /* 16k L1 dcache. */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, 0x200fe019); /* 16k L1 icache. */
> cpu->isar.reset_pmcr_el0 = 0x41093000;
> define_arm_cp_regs(cpu, cortexa9_cp_reginfo);
> }
> @@ -418,9 +418,9 @@ static void cortex_a7_initfn(Object *obj)
> cpu->isar.dbgdevid = 0x01110f13;
> cpu->isar.dbgdevid1 = 0x1;
> SET_IDREG(isar, CLIDR, 0x0a200023);
> - cpu->ccsidr[0] = 0x701fe00a; /* 32K L1 dcache */
> - cpu->ccsidr[1] = 0x201fe00a; /* 32K L1 icache */
> - cpu->ccsidr[2] = 0x711fe07a; /* 4096K L2 unified cache */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, 0x701fe00a); /* 32K L1 dcache */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, 0x201fe00a); /* 32K L1 icache */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, 0x711fe07a); /* 4096K L2 unified
> cache */
> cpu->isar.reset_pmcr_el0 = 0x41072000;
> define_arm_cp_regs(cpu, cortexa15_cp_reginfo); /* Same as A15 */
> }
> @@ -466,9 +466,9 @@ static void cortex_a15_initfn(Object *obj)
> cpu->isar.dbgdevid = 0x01110f13;
> cpu->isar.dbgdevid1 = 0x0;
> SET_IDREG(isar, CLIDR, 0x0a200023);
> - cpu->ccsidr[0] = 0x701fe00a; /* 32K L1 dcache */
> - cpu->ccsidr[1] = 0x201fe00a; /* 32K L1 icache */
> - cpu->ccsidr[2] = 0x711fe07a; /* 4096K L2 unified cache */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, 0x701fe00a); /* 32K L1 dcache */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, 0x201fe00a); /* 32K L1 icache */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, 0x711fe07a); /* 4096K L2 unified
> cache */
> cpu->isar.reset_pmcr_el0 = 0x410F3000;
> define_arm_cp_regs(cpu, cortexa15_cp_reginfo);
> }
> @@ -657,8 +657,8 @@ static void cortex_r52_initfn(Object *obj)
> SET_IDREG(isar, ID_ISAR5, 0x00010001);
> cpu->isar.dbgdidr = 0x77168000;
> SET_IDREG(isar, CLIDR, (1 << 27) | (1 << 24) | 0x3);
> - cpu->ccsidr[0] = 0x700fe01a; /* 32KB L1 dcache */
> - cpu->ccsidr[1] = 0x201fe00a; /* 32KB L1 icache */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, 0x700fe01a); /* 32KB L1 dcache */
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, 0x201fe00a); /* 32KB L1 icache */
>
> cpu->pmsav7_dregion = 16;
> cpu->pmsav8r_hdregion = 16;
> diff --git a/target/arm/tcg/cpu64.c b/target/arm/tcg/cpu64.c
> index ae3952a1ed..ff9811d90b 100644
> --- a/target/arm/tcg/cpu64.c
> +++ b/target/arm/tcg/cpu64.c
> @@ -82,11 +82,11 @@ static void aarch64_a35_initfn(Object *obj)
>
> /* From B2.29 Cache ID registers */
> /* 32KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 32 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 32 * KiB, 7));
> /* 32KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 32 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 32 * KiB, 2));
> /* 512KB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 16, 64, 512 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 16, 64, 512 * KiB, 7));
>
> /* From B3.5 VGIC Type register */
> cpu->gic_num_lrs = 4;
> @@ -250,11 +250,11 @@ static void aarch64_a55_initfn(Object *obj)
>
> /* From B2.23 CCSIDR_EL1 */
> /* 32KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 32 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 32 * KiB, 7));
> /* 32KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 32 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 32 * KiB, 2));
> /* 512KB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 16, 64, 512 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 16, 64, 512 * KiB, 7));
>
> /* From B2.96 SCTLR_EL3 */
> cpu->reset_sctlr = 0x30c50838;
> @@ -320,11 +320,11 @@ static void aarch64_a72_initfn(Object *obj)
> cpu->isar.reset_pmcr_el0 = 0x41023000;
> SET_IDREG(isar, CLIDR, 0x0a200023);
> /* 32KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 32 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 32 * KiB, 7));
> /* 48KB L1 dcache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 3, 64, 48 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 3, 64, 48 * KiB, 2));
> /* 1MB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 16, 64, 1 * MiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 16, 64, 1 * MiB, 7));
> set_dczid_bs(cpu, 4); /* 64 bytes */
> cpu->gic_num_lrs = 4;
> cpu->gic_vpribits = 5;
> @@ -383,11 +383,11 @@ static void aarch64_a76_initfn(Object *obj)
>
> /* From B2.18 CCSIDR_EL1 */
> /* 64KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 64 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 64 * KiB, 7));
> /* 64KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 64 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 64 * KiB, 2));
> /* 512KB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 8, 64, 512 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 8, 64, 512 * KiB, 7));
>
> /* From B2.93 SCTLR_EL3 */
> cpu->reset_sctlr = 0x30c50838;
> @@ -455,11 +455,11 @@ static void aarch64_a78ae_initfn(Object *obj)
>
> /* From 3.2.33 CCSIDR_EL1 */
> /* 64KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 64 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 64 * KiB, 7));
> /* 64KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 64 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 64 * KiB, 2));
> /* 512KB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 8, 64, 512 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 8, 64, 512 * KiB, 7));
>
> /* From 3.2.118 SCTLR_EL3 */
> cpu->reset_sctlr = 0x30c50838;
> @@ -512,11 +512,11 @@ static void aarch64_a64fx_initfn(Object *obj)
> SET_IDREG(isar, ID_AA64ZFR0, 0x0000000000000000);
> SET_IDREG(isar, CLIDR, 0x0000000080000023);
> /* 64KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 256, 64 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 256, 64 * KiB, 7));
> /* 64KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 256, 64 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 256, 64 * KiB, 2));
> /* 8MB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 16, 256, 8 * MiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 16, 256, 8 * MiB, 7));
> set_dczid_bs(cpu, 6); /* 256 bytes */
> cpu->gic_num_lrs = 4;
> cpu->gic_vpribits = 5;
> @@ -704,11 +704,11 @@ static void aarch64_neoverse_n1_initfn(Object *obj)
>
> /* From B2.23 CCSIDR_EL1 */
> /* 64KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 64 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 64 * KiB, 7));
> /* 64KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 64 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 64 * KiB, 2));
> /* 1MB L2 dcache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 8, 64, 1 * MiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 8, 64, 1 * MiB, 7));
>
> /* From B2.98 SCTLR_EL3 */
> cpu->reset_sctlr = 0x30c50838;
> @@ -792,11 +792,11 @@ static void aarch64_neoverse_v1_initfn(Object *obj)
> * L3: No L3 (this matches the CLIDR_EL1 value).
> */
> /* 64KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_CCIDX, 4, 64, 64 * KiB, 0);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_CCIDX, 4,
> 64, 64 * KiB, 0));
> /* 64KB L1 icache */
> - cpu->ccsidr[1] = cpu->ccsidr[0];
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_CCIDX, 4,
> 64, 64 * KiB, 0));
> /* 1MB L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_CCIDX, 8, 64, 1 * MiB, 0);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_CCIDX, 8,
> 64, 1 * MiB, 0));
>
> /* From 3.2.115 SCTLR_EL3 */
> cpu->reset_sctlr = 0x30c50838;
> @@ -1034,11 +1034,11 @@ static void aarch64_a710_initfn(Object *obj)
> * L2: 8-way set associative 64 byte line size, total either 256K or
> 512K.
> */
> /* L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_CCIDX, 4, 64, 64 * KiB, 0);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_CCIDX, 4,
> 64, 64 * KiB, 0));
> /* L1 icache */
> - cpu->ccsidr[1] = cpu->ccsidr[0];
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_CCIDX, 4,
> 64, 64 * KiB, 0));
> /* L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_CCIDX, 8, 64, 512 * KiB, 0);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_CCIDX, 8,
> 64, 512 * KiB, 0));
>
> /* FIXME: Not documented -- copied from neoverse-v1 */
> cpu->reset_sctlr = 0x30c50838;
> @@ -1136,11 +1136,11 @@ static void aarch64_neoverse_n2_initfn(Object *obj)
> * L2: 8-way set associative 64 byte line size, total either 512K or
> 1024K.
> */
> /* L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_CCIDX, 4, 64, 64 * KiB, 0);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_CCIDX, 4,
> 64, 64 * KiB, 0));
> /* L1 icache */
> - cpu->ccsidr[1] = cpu->ccsidr[0];
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_CCIDX, 4,
> 64, 64 * KiB, 0));
> /* L2 cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_CCIDX, 8, 64, 512 * KiB, 0);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_CCIDX, 8,
> 64, 512 * KiB, 0));
> /* FIXME: Not documented -- copied from neoverse-v1 */
> cpu->reset_sctlr = 0x30c50838;
>
> @@ -1169,13 +1169,13 @@ void aarch64_max_tcg_initfn(Object *obj)
>
> SET_IDREG(isar, CLIDR, 0x8200123);
> /* 64KB L1 dcache */
> - cpu->ccsidr[0] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 64 * KiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 0, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 64 * KiB, 7));
> /* 64KB L1 icache */
> - cpu->ccsidr[1] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 4, 64, 64 * KiB, 2);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 1, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 4, 64, 64 * KiB, 2));
> /* 1MB L2 unified cache */
> - cpu->ccsidr[2] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 8, 64, 1 * MiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 2, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 8, 64, 1 * MiB, 7));
> /* 2MB L3 unified cache */
> - cpu->ccsidr[4] = make_ccsidr(CCSIDR_FORMAT_LEGACY, 8, 64, 2 * MiB, 7);
> + SET_IDREG_DEMUX(isar, CCSIDR_EL1, 4, make_ccsidr(CCSIDR_FORMAT_LEGACY,
> 8, 64, 2 * MiB, 7));
>
> /*
> * Unset ARM_FEATURE_BACKCOMPAT_CNTFRQ, which we would otherwise default