target/arm: Mark up sysregs for HFGITR bits 18..47
Mark up the sysreg definitions for the system instructions trapped by HFGITR bits 18..47. These bits cover TLBI TLB maintenance instructions. (If we implemented FEAT_XS we would need to trap some of the instructions added by that feature using these bits; but we don't yet, so will need to add the .fgt markup when we do.) Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Tested-by: Fuad Tabba <tabba@google.com> Message-id: 20230130182459.3309057-19-peter.maydell@linaro.org Message-id: 20230127175507.2895013-19-peter.maydell@linaro.org
This commit is contained in:
parent
132c98cd93
commit
bf2f0625f8
@ -666,6 +666,36 @@ typedef enum FGTBit {
|
||||
DO_BIT(HFGITR, ATS1E0W),
|
||||
DO_BIT(HFGITR, ATS1E1RP),
|
||||
DO_BIT(HFGITR, ATS1E1WP),
|
||||
DO_BIT(HFGITR, TLBIVMALLE1OS),
|
||||
DO_BIT(HFGITR, TLBIVAE1OS),
|
||||
DO_BIT(HFGITR, TLBIASIDE1OS),
|
||||
DO_BIT(HFGITR, TLBIVAAE1OS),
|
||||
DO_BIT(HFGITR, TLBIVALE1OS),
|
||||
DO_BIT(HFGITR, TLBIVAALE1OS),
|
||||
DO_BIT(HFGITR, TLBIRVAE1OS),
|
||||
DO_BIT(HFGITR, TLBIRVAAE1OS),
|
||||
DO_BIT(HFGITR, TLBIRVALE1OS),
|
||||
DO_BIT(HFGITR, TLBIRVAALE1OS),
|
||||
DO_BIT(HFGITR, TLBIVMALLE1IS),
|
||||
DO_BIT(HFGITR, TLBIVAE1IS),
|
||||
DO_BIT(HFGITR, TLBIASIDE1IS),
|
||||
DO_BIT(HFGITR, TLBIVAAE1IS),
|
||||
DO_BIT(HFGITR, TLBIVALE1IS),
|
||||
DO_BIT(HFGITR, TLBIVAALE1IS),
|
||||
DO_BIT(HFGITR, TLBIRVAE1IS),
|
||||
DO_BIT(HFGITR, TLBIRVAAE1IS),
|
||||
DO_BIT(HFGITR, TLBIRVALE1IS),
|
||||
DO_BIT(HFGITR, TLBIRVAALE1IS),
|
||||
DO_BIT(HFGITR, TLBIRVAE1),
|
||||
DO_BIT(HFGITR, TLBIRVAAE1),
|
||||
DO_BIT(HFGITR, TLBIRVALE1),
|
||||
DO_BIT(HFGITR, TLBIRVAALE1),
|
||||
DO_BIT(HFGITR, TLBIVMALLE1),
|
||||
DO_BIT(HFGITR, TLBIVAE1),
|
||||
DO_BIT(HFGITR, TLBIASIDE1),
|
||||
DO_BIT(HFGITR, TLBIVAAE1),
|
||||
DO_BIT(HFGITR, TLBIVALE1),
|
||||
DO_BIT(HFGITR, TLBIVAALE1),
|
||||
} FGTBit;
|
||||
|
||||
#undef DO_BIT
|
||||
|
@ -5318,50 +5318,62 @@ static const ARMCPRegInfo v8_cp_reginfo[] = {
|
||||
{ .name = "TLBI_VMALLE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVMALLE1IS,
|
||||
.writefn = tlbi_aa64_vmalle1is_write },
|
||||
{ .name = "TLBI_VAE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 1,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVAE1IS,
|
||||
.writefn = tlbi_aa64_vae1is_write },
|
||||
{ .name = "TLBI_ASIDE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 2,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIASIDE1IS,
|
||||
.writefn = tlbi_aa64_vmalle1is_write },
|
||||
{ .name = "TLBI_VAAE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 3,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVAAE1IS,
|
||||
.writefn = tlbi_aa64_vae1is_write },
|
||||
{ .name = "TLBI_VALE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 5,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVALE1IS,
|
||||
.writefn = tlbi_aa64_vae1is_write },
|
||||
{ .name = "TLBI_VAALE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 7,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVAALE1IS,
|
||||
.writefn = tlbi_aa64_vae1is_write },
|
||||
{ .name = "TLBI_VMALLE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 0,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVMALLE1,
|
||||
.writefn = tlbi_aa64_vmalle1_write },
|
||||
{ .name = "TLBI_VAE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 1,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVAE1,
|
||||
.writefn = tlbi_aa64_vae1_write },
|
||||
{ .name = "TLBI_ASIDE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 2,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIASIDE1,
|
||||
.writefn = tlbi_aa64_vmalle1_write },
|
||||
{ .name = "TLBI_VAAE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 3,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVAAE1,
|
||||
.writefn = tlbi_aa64_vae1_write },
|
||||
{ .name = "TLBI_VALE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 5,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVALE1,
|
||||
.writefn = tlbi_aa64_vae1_write },
|
||||
{ .name = "TLBI_VAALE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 7,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVAALE1,
|
||||
.writefn = tlbi_aa64_vae1_write },
|
||||
{ .name = "TLBI_IPAS2E1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 1,
|
||||
@ -7175,50 +7187,62 @@ static const ARMCPRegInfo tlbirange_reginfo[] = {
|
||||
{ .name = "TLBI_RVAE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 2, .opc2 = 1,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAE1IS,
|
||||
.writefn = tlbi_aa64_rvae1is_write },
|
||||
{ .name = "TLBI_RVAAE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 2, .opc2 = 3,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAAE1IS,
|
||||
.writefn = tlbi_aa64_rvae1is_write },
|
||||
{ .name = "TLBI_RVALE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 2, .opc2 = 5,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVALE1IS,
|
||||
.writefn = tlbi_aa64_rvae1is_write },
|
||||
{ .name = "TLBI_RVAALE1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 2, .opc2 = 7,
|
||||
.access = PL1_W, .accessfn = access_ttlbis, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAALE1IS,
|
||||
.writefn = tlbi_aa64_rvae1is_write },
|
||||
{ .name = "TLBI_RVAE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 1,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAE1OS,
|
||||
.writefn = tlbi_aa64_rvae1is_write },
|
||||
{ .name = "TLBI_RVAAE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 3,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAAE1OS,
|
||||
.writefn = tlbi_aa64_rvae1is_write },
|
||||
{ .name = "TLBI_RVALE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 5,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVALE1OS,
|
||||
.writefn = tlbi_aa64_rvae1is_write },
|
||||
{ .name = "TLBI_RVAALE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 7,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAALE1OS,
|
||||
.writefn = tlbi_aa64_rvae1is_write },
|
||||
{ .name = "TLBI_RVAE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 1,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAE1,
|
||||
.writefn = tlbi_aa64_rvae1_write },
|
||||
{ .name = "TLBI_RVAAE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 3,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAAE1,
|
||||
.writefn = tlbi_aa64_rvae1_write },
|
||||
{ .name = "TLBI_RVALE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 5,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVALE1,
|
||||
.writefn = tlbi_aa64_rvae1_write },
|
||||
{ .name = "TLBI_RVAALE1", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 7,
|
||||
.access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIRVAALE1,
|
||||
.writefn = tlbi_aa64_rvae1_write },
|
||||
{ .name = "TLBI_RIPAS2E1IS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 2,
|
||||
@ -7290,26 +7314,32 @@ static const ARMCPRegInfo tlbios_reginfo[] = {
|
||||
{ .name = "TLBI_VMALLE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 0,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVMALLE1OS,
|
||||
.writefn = tlbi_aa64_vmalle1is_write },
|
||||
{ .name = "TLBI_VAE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 1,
|
||||
.fgt = FGT_TLBIVAE1OS,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.writefn = tlbi_aa64_vae1is_write },
|
||||
{ .name = "TLBI_ASIDE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 2,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIASIDE1OS,
|
||||
.writefn = tlbi_aa64_vmalle1is_write },
|
||||
{ .name = "TLBI_VAAE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 3,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVAAE1OS,
|
||||
.writefn = tlbi_aa64_vae1is_write },
|
||||
{ .name = "TLBI_VALE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 5,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVALE1OS,
|
||||
.writefn = tlbi_aa64_vae1is_write },
|
||||
{ .name = "TLBI_VAALE1OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 7,
|
||||
.access = PL1_W, .accessfn = access_ttlbos, .type = ARM_CP_NO_RAW,
|
||||
.fgt = FGT_TLBIVAALE1OS,
|
||||
.writefn = tlbi_aa64_vae1is_write },
|
||||
{ .name = "TLBI_ALLE2OS", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 1, .opc1 = 4, .crn = 8, .crm = 1, .opc2 = 0,
|
||||
|
Loading…
Reference in New Issue
Block a user