diff options
Diffstat (limited to 'lib/sbi/sbi_hart.c')
-rw-r--r-- | lib/sbi/sbi_hart.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/sbi/sbi_hart.c b/lib/sbi/sbi_hart.c index 8eb0c38..7f31bb7 100644 --- a/lib/sbi/sbi_hart.c +++ b/lib/sbi/sbi_hart.c @@ -281,6 +281,9 @@ static inline char *sbi_hart_feature_id2string(unsigned long feature) case SBI_HART_HAS_MCOUNTINHIBIT: fstr = "mcountinhibit"; break; + case SBI_HART_HAS_SSCOFPMF: + fstr = "sscofpmf"; + break; case SBI_HART_HAS_TIME: fstr = "time"; break; @@ -490,6 +493,15 @@ __mhpm_skip: hfeatures->features |= SBI_HART_HAS_MCOUNTINHIBIT; } + /* Counter overflow/filtering is not useful without mcounter/inhibit */ + if (hfeatures->features & SBI_HART_HAS_MCOUNTINHIBIT && + hfeatures->features & SBI_HART_HAS_MCOUNTEREN) { + /* Detect if hart supports sscofpmf */ + csr_read_allowed(CSR_SCOUNTOVF, (unsigned long)&trap); + if (!trap.cause) + hfeatures->features |= SBI_HART_HAS_SSCOFPMF; + } + /* Detect if hart supports time CSR */ csr_read_allowed(CSR_TIME, (unsigned long)&trap); if (!trap.cause) |