mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 08:18:30 +00:00
target/arm: change arch timer registers access permission
Some generic arch timer registers are Config-RW in the EL0, which means the EL0 exception level can have write permission if it is appropriately configured. When VM access registers, QEMU firstly checks whether they have RW permission, then check whether it is appropriately configured. If they are defined to read only in EL0, even though they have been appropriately configured, they still do not have write permission. So need to add the write permission according to ARMV8 spec when define it. Backports commit daf1dc5f82cefe2a57f184d5053e8b274ad2ba9a from qemu
This commit is contained in:
parent
e96282eb28
commit
4dc3d59fd3
1 changed files with 15 additions and 15 deletions
|
@ -2488,7 +2488,7 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
/* per-timer control */
|
||||
{ .name = "CNTP_CTL", .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 1,
|
||||
.secure = ARM_CP_SECSTATE_NS,
|
||||
.type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL0_RW,
|
||||
.accessfn = gt_ptimer_access,
|
||||
.fieldoffset = offsetoflow32(CPUARMState,
|
||||
cp15.c14_timer[GTIMER_PHYS].ctl),
|
||||
|
@ -2497,7 +2497,7 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
{ .name = "CNTP_CTL_S",
|
||||
.cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 1,
|
||||
.secure = ARM_CP_SECSTATE_S,
|
||||
.type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL0_RW,
|
||||
.accessfn = gt_ptimer_access,
|
||||
.fieldoffset = offsetoflow32(CPUARMState,
|
||||
cp15.c14_timer[GTIMER_SEC].ctl),
|
||||
|
@ -2505,14 +2505,14 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
},
|
||||
{ .name = "CNTP_CTL_EL0", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 1,
|
||||
.type = ARM_CP_IO, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_IO, .access = PL0_RW,
|
||||
.accessfn = gt_ptimer_access,
|
||||
.fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].ctl),
|
||||
.resetvalue = 0,
|
||||
.writefn = gt_phys_ctl_write, .raw_writefn = raw_write,
|
||||
},
|
||||
{ .name = "CNTV_CTL", .cp = 15, .crn = 14, .crm = 3, .opc1 = 0, .opc2 = 1,
|
||||
.type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL0_RW,
|
||||
.accessfn = gt_vtimer_access,
|
||||
.fieldoffset = offsetoflow32(CPUARMState,
|
||||
cp15.c14_timer[GTIMER_VIRT].ctl),
|
||||
|
@ -2520,7 +2520,7 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
},
|
||||
{ .name = "CNTV_CTL_EL0", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 1,
|
||||
.type = ARM_CP_IO, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_IO, .access = PL0_RW,
|
||||
.accessfn = gt_vtimer_access,
|
||||
.fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].ctl),
|
||||
.resetvalue = 0,
|
||||
|
@ -2529,31 +2529,31 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
/* TimerValue views: a 32 bit downcounting view of the underlying state */
|
||||
{ .name = "CNTP_TVAL", .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 0,
|
||||
.secure = ARM_CP_SECSTATE_NS,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
|
||||
.accessfn = gt_ptimer_access,
|
||||
.readfn = gt_phys_tval_read, .writefn = gt_phys_tval_write,
|
||||
},
|
||||
{ .name = "CNTP_TVAL_S",
|
||||
.cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 0,
|
||||
.secure = ARM_CP_SECSTATE_S,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
|
||||
.accessfn = gt_ptimer_access,
|
||||
.readfn = gt_sec_tval_read, .writefn = gt_sec_tval_write,
|
||||
},
|
||||
{ .name = "CNTP_TVAL_EL0", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 0,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
|
||||
.accessfn = gt_ptimer_access, .resetfn = gt_phys_timer_reset,
|
||||
.readfn = gt_phys_tval_read, .writefn = gt_phys_tval_write,
|
||||
},
|
||||
{ .name = "CNTV_TVAL", .cp = 15, .crn = 14, .crm = 3, .opc1 = 0, .opc2 = 0,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
|
||||
.accessfn = gt_vtimer_access,
|
||||
.readfn = gt_virt_tval_read, .writefn = gt_virt_tval_write,
|
||||
},
|
||||
{ .name = "CNTV_TVAL_EL0", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 0,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
|
||||
.type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
|
||||
.accessfn = gt_vtimer_access, .resetfn = gt_virt_timer_reset,
|
||||
.readfn = gt_virt_tval_read, .writefn = gt_virt_tval_write,
|
||||
},
|
||||
|
@ -2581,7 +2581,7 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
/* Comparison value, indicating when the timer goes off */
|
||||
{ .name = "CNTP_CVAL", .cp = 15, .crm = 14, .opc1 = 2,
|
||||
.secure = ARM_CP_SECSTATE_NS,
|
||||
.access = PL1_RW | PL0_R,
|
||||
.access = PL0_RW,
|
||||
.type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
|
||||
.fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
|
||||
.accessfn = gt_ptimer_access,
|
||||
|
@ -2589,7 +2589,7 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
},
|
||||
{ .name = "CNTP_CVAL_S", .cp = 15, .crm = 14, .opc1 = 2,
|
||||
.secure = ARM_CP_SECSTATE_S,
|
||||
.access = PL1_RW | PL0_R,
|
||||
.access = PL0_RW,
|
||||
.type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
|
||||
.fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].cval),
|
||||
.accessfn = gt_ptimer_access,
|
||||
|
@ -2597,14 +2597,14 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
},
|
||||
{ .name = "CNTP_CVAL_EL0", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 2,
|
||||
.access = PL1_RW | PL0_R,
|
||||
.access = PL0_RW,
|
||||
.type = ARM_CP_IO,
|
||||
.fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
|
||||
.resetvalue = 0, .accessfn = gt_ptimer_access,
|
||||
.writefn = gt_phys_cval_write, .raw_writefn = raw_write,
|
||||
},
|
||||
{ .name = "CNTV_CVAL", .cp = 15, .crm = 14, .opc1 = 3,
|
||||
.access = PL1_RW | PL0_R,
|
||||
.access = PL0_RW,
|
||||
.type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
|
||||
.fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
|
||||
.accessfn = gt_vtimer_access,
|
||||
|
@ -2612,7 +2612,7 @@ static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
|
|||
},
|
||||
{ .name = "CNTV_CVAL_EL0", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 2,
|
||||
.access = PL1_RW | PL0_R,
|
||||
.access = PL0_RW,
|
||||
.type = ARM_CP_IO,
|
||||
.fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
|
||||
.resetvalue = 0, .accessfn = gt_vtimer_access,
|
||||
|
|
Loading…
Reference in a new issue