[PATCH v2] lib: sbi: Save context for all non-retentive suspend types
Anup Patel
anup at brainfault.org
Mon Oct 18 03:40:01 PDT 2021
On Tue, Oct 12, 2021 at 11:28 AM Xiang W <wxjstz at 126.com> wrote:
>
> 在 2021-10-11星期一的 13:54 +0530,Anup Patel写道:
> > Instead of saving context only for default non-retentive suspend,
> > we should save context for all non-retentive suspend types.
> >
> > Fixes: 74756891cc35 ("lib: sbi: Implement SBI HSM suspend function")
> > Signed-off-by: Anup Patel <anup.patel at wdc.com>
> Looks good to me.
>
> Reviewed-by: Xiang W <wxjstz at 126.com>
Applied this patch to the riscv/opensbi repo.
Regards,
Anup
> > ---
> > Changes since v1:
> > - Fixed typo in commit description and improved it.
> > ---
> > lib/sbi/sbi_hsm.c | 13 +++++++------
> > 1 file changed, 7 insertions(+), 6 deletions(-)
> >
> > diff --git a/lib/sbi/sbi_hsm.c b/lib/sbi/sbi_hsm.c
> > index 67890f3..ecd2e45 100644
> > --- a/lib/sbi/sbi_hsm.c
> > +++ b/lib/sbi/sbi_hsm.c
> > @@ -358,12 +358,6 @@ static int
> > __sbi_hsm_suspend_non_ret_default(struct sbi_scratch *scratch,
> > {
> > void (*jump_warmboot)(void) = (void (*)(void))scratch-
> > >warmboot_addr;
> >
> > - /*
> > - * Save some of the M-mode CSRs which should be restored
> > after
> > - * resuming from suspend state
> > - */
> > - __sbi_hsm_suspend_non_ret_save(scratch);
> > -
> > /* Wait for interrupt */
> > wfi();
> >
> > @@ -463,6 +457,13 @@ int sbi_hsm_hart_suspend(struct sbi_scratch
> > *scratch, u32 suspend_type,
> > /* Save the suspend type */
> > hdata->suspend_type = suspend_type;
> >
> > + /*
> > + * Save context which will be restored after resuming from
> > + * non-retentive suspend.
> > + */
> > + if (suspend_type & SBI_HSM_SUSP_NON_RET_BIT)
> > + __sbi_hsm_suspend_non_ret_save(scratch);
> > +
> > /* Try platform specific suspend */
> > ret = hsm_device_hart_suspend(suspend_type, scratch-
> > >warmboot_addr);
> > if (ret == SBI_ENOTSUPP) {
> > --
> > 2.25.1
> >
> >
>
>
More information about the opensbi
mailing list