[PATCH 1/2] lib: sbi: hart: Detect existence of cycle and instret CSRs for Zicntr

Yao Zi ziyao at disroot.org
Tue Mar 25 01:43:45 PDT 2025


On Tue, Mar 25, 2025 at 01:45:25PM +0530, Anup Patel wrote:
> On Tue, Feb 25, 2025 at 10:14 PM Yao Zi <ziyao at disroot.org> wrote:
> >
> > Zicntr extension specifies three RO CSRs, time, cycle and instret. It
> > isn't precise to report Zicntr is fully supported with only time CSR
> > detected.
> >
> > Since CSR emulating code only cares about the availablity of time CSR,
> > add additional definitions to represent the existance of cycle and
> > instret CSRs.
> >
> > Signed-off-by: Yao Zi <ziyao at disroot.org>
> > ---
> >  include/sbi/sbi_hart.h |  8 ++++++--
> >  lib/sbi/sbi_hart.c     | 30 ++++++++++++++++++++++--------
> >  lib/sbi/sbi_timer.c    |  2 +-
> >  3 files changed, 29 insertions(+), 11 deletions(-)
> >
> > diff --git a/include/sbi/sbi_hart.h b/include/sbi/sbi_hart.h
> > index 4c36c77..0a740cf 100644
> > --- a/include/sbi/sbi_hart.h
> > +++ b/include/sbi/sbi_hart.h
> > @@ -37,8 +37,12 @@ enum sbi_hart_extensions {
> >         SBI_HART_EXT_SSCOFPMF,
> >         /** HART has Sstc extension */
> >         SBI_HART_EXT_SSTC,
> > -       /** HART has Zicntr extension (i.e. HW cycle, time & instret CSRs) */
> > -       SBI_HART_EXT_ZICNTR,
> > +       /** HART has HW time CSR, as specified in Zicntr extension */
> > +       SBI_HART_EXT_ZICNTR_TIME,
> > +       /** HART has HW cycle CSR, as specified in Zicntr extension */
> > +       SBI_HART_EXT_ZICNTR_CYCLE,
> > +       /** HART has HW instret CSR, as specified in Zicntr extension */
> > +       SBI_HART_EXT_ZICNTR_INSTRET,
> 
> Zicntr_time, Zicntr_cycle, and Zicntr_instret are not real extension
> names so let's not add pseudo extension names.
> 
> Instead, I suggest introducing "enum sbi_hart_csrs" for CSRs
> detected at boot-time. We will also need "csrs" bitmap in
> "struct sbi_hart_features".
> 
> The new "enum sbi_hart_csrs" can have:
> SBI_HART_CSR_CYCLE,
> SBI_HART_CSR_TIME,
> SBI_HART_CSR_INSTRET
> 
> These bits will be set in "struct sbi_hart_features" when
> corresponding CSRs are detected at boot-time.

Makes sense to me, I'll take it in v2.

Thanks,
Yao Zi



More information about the opensbi mailing list