mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
target/arm: Define the FEAT_FGT registers
Define the system registers which are provided by the FEAT_FGT fine-grained trap architectural feature: HFGRTR_EL2, HFGWTR_EL2, HDFGRTR_EL2, HDFGWTR_EL2, HFGITR_EL2 All these registers are a set of bit fields, where each bit is set for a trap and clear to not trap on a particular system register access. The R and W register pairs are for system registers, allowing trapping to be done separately for reads and writes; the I register is for system instructions where trapping is on instruction execution. The data storage in the CPU state struct is arranged as a set of arrays rather than separate fields so that when we're looking up the bits for a system register access we can just index into the array rather than having to use a switch to select a named struct member. The later FEAT_FGT2 will add extra elements to these arrays. The field definitions for the new registers are in cpregs.h because in practice the code that needs them is code that also needs the cpregs information; cpu.h is included in a lot more files. We're also going to add some FGT-specific definitions to cpregs.h in the next commit. We do not implement HAFGRTR_EL2, because we don't implement FEAT_AMUv1. 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-9-peter.maydell@linaro.org Message-id: 20230127175507.2895013-9-peter.maydell@linaro.org
This commit is contained in:
parent
034bb45ac1
commit
15126d9ce2
3 changed files with 340 additions and 0 deletions
|
@ -529,6 +529,16 @@ typedef struct CPUArchState {
|
|||
uint64_t disr_el1;
|
||||
uint64_t vdisr_el2;
|
||||
uint64_t vsesr_el2;
|
||||
|
||||
/*
|
||||
* Fine-Grained Trap registers. We store these as arrays so the
|
||||
* access checking code doesn't have to manually select
|
||||
* HFGRTR_EL2 vs HFDFGRTR_EL2 etc when looking up the bit to test.
|
||||
* FEAT_FGT2 will add more elements to these arrays.
|
||||
*/
|
||||
uint64_t fgt_read[2]; /* HFGRTR, HDFGRTR */
|
||||
uint64_t fgt_write[2]; /* HFGWTR, HDFGWTR */
|
||||
uint64_t fgt_exec[1]; /* HFGITR */
|
||||
} cp15;
|
||||
|
||||
struct {
|
||||
|
@ -4164,6 +4174,11 @@ static inline bool isar_feature_aa64_tgran64_2(const ARMISARegisters *id)
|
|||
return t >= 2 || (t == 0 && isar_feature_aa64_tgran64(id));
|
||||
}
|
||||
|
||||
static inline bool isar_feature_aa64_fgt(const ARMISARegisters *id)
|
||||
{
|
||||
return FIELD_EX64(id->id_aa64mmfr0, ID_AA64MMFR0, FGT) != 0;
|
||||
}
|
||||
|
||||
static inline bool isar_feature_aa64_ccidx(const ARMISARegisters *id)
|
||||
{
|
||||
return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR2, CCIDX) != 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue