Re: [v6, 08/11] powerpc/powernv: Add platform support for stop instruction

From: Michael Neuling
Date: Tue Jun 21 2016 - 02:25:33 EST



> > > +#define OPAL_PM_TIMEBASE_STOP 0x00000002
> > > +#define OPAL_PM_LOSE_HYP_CONTEXT 0x00002000
> > > +#define OPAL_PM_LOSE_FULL_CONTEXT 0x00004000
> > > Â#define OPAL_PM_NAP_ENABLED 0x00010000
> > > Â#define OPAL_PM_SLEEP_ENABLED 0x00020000
> > > Â#define OPAL_PM_WINKLE_ENABLED 0x00040000
> > > Â#define OPAL_PM_SLEEP_ENABLED_ER1 0x00080000 /* with
> > > workaround */
> > > +#define OPAL_PM_STOP_INST_FAST 0x00100000
> > > +#define OPAL_PM_STOP_INST_DEEP 0x00200000
> > I don't see the above in skiboot yet?
> I've posted it here -
> http://patchwork.ozlabs.org/patch/617828/

FWIW, this is in now.

https://github.com/open-power/skiboot/commit/952daa69baca407383bc900911f6c40718a0e289

> >
> >
> > >
> > > diff --git a/arch/powerpc/include/asm/paca.h
> > > b/arch/powerpc/include/asm/paca.h
> > > index 546540b..ae91b44 100644
> > > --- a/arch/powerpc/include/asm/paca.h
> > > +++ b/arch/powerpc/include/asm/paca.h
> > > @@ -171,6 +171,8 @@ struct paca_struct {
> > > Â /* Mask to denote subcore sibling threads */
> > > Â u8 subcore_sibling_mask;
> > > Â#endif
> > > + /* Template for PSSCR with EC, ESL, TR, PSLL, MTL fields set
> > > */
> > > + u64 thread_psscr;
> > I'm not entirely clear on why that needs to be in the paca. Could it
> > not be global?
> >
> While we use Requested Level (RL) field of PSSCR to request a stop
> level, other fields in the SPR like EC, ESL, TR, PSLL, MTL can be
> modified by individual threads less frequently to alter the behaviour of
> stop. So the idea was to have a per-thread variable with all (except RL)
> fields of PSSCR set appropriately. Threads at the time of entering idle,
> can modify the RL field in the variable and execute stop instruction.

But we don't do any of this currently? This is setup at init
inÂpnv_init_idle_states() and only the RL is changed in power_stop().

So it can still be a global. ÂIt could just be a constant currently even.

> Â .text
> > > Â
> > > Â/*
> > > @@ -61,8 +75,19 @@ save_sprs_to_stack:
> > > Â Â* Note all register i.e per-core, per-subcore or per-thread
> > > is saved
> > > Â Â* here since any thread in the core might wake up first
> > > Â Â*/
> > > +BEGIN_FTR_SECTION
> > > + mfspr r3,SPRN_PTCR
> > > + std r3,_PTCR(r1)
> > > + mfspr r3,SPRN_LMRR
> > > + std r3,_LMRR(r1)
> > > + mfspr r3,SPRN_LMSER
> > > + std r3,_LMSER(r1)
> > > + mfspr r3,SPRN_ASDR
> > > + std r3,_ASDR(r1)
> > > +FTR_SECTION_ELSE
> > A comment here saying that SDR1 is removed in ISA 3.0 would be helpful.
> >
> Ok.

I thought we decided we didn't need LMRR, LMSR,Â

https://lkml.org/lkml/2016/6/8/1121

or ASDR isn't actually used at all yet and is only valid for some page
faults, so we don't need it here also.

> +END_MMU_FTR_SECTION_IFCLR(MMU_FTR_RADIX)
> > > +
> > > + /* Restore per thread state */
> > > +BEGIN_FTR_SECTION
> > > + blÂÂÂÂÂÂ__restore_cpu_power9
> > > +
> > > + ld r4,_LMRR(r1)
> > > + mtspr SPRN_LMRR,r4
> > > + ld r4,_LMSER(r1)
> > > + mtspr SPRN_LMSER,r4
> > > + ld r4,_ASDR(r1)
> > > + mtspr SPRN_ASDR,r4
> > Should those be in __restore_cpu_power9 ?
> I was not sure how these registers will be used, but after speaking to
> Aneesh and Mikey I realized these registers will not need restoring.
> LMRR and LMSER are associated with the context and ADSR will be consumed
> before entering stop. So I'll be dropping the this hunk in next revision.

Yep.

>Â
> > > Â pnv_alloc_idle_core_states();
> > > Â
> > > + if (supported_cpuidle_states & OPAL_PM_STOP_INST_FAST)
> > > + for_each_possible_cpu(i) {
> > > +
> > > + u64 psscr_init_val = PSSCR_ESL | PSSCR_EC |
> > > + PSSCR_PSLL_MASK | PSSCR_TR_MASK |
> > > + PSSCR_MTL_MASK;
> > > +
> > > + paca[i].thread_psscr = psscr_init_val;

This seems to be the only place you set this. ÂWhy put it in the paca, why
not just make this a constant?Â

Mikey