Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1498806

Re: [tpmdd-devel] [PATCH 2/3] tpm_crb: encapsulate crb_wait_for_reg_32

From Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Newsgroups linux.kernel
Subject Re: [tpmdd-devel] [PATCH 2/3] tpm_crb: encapsulate crb_wait_for_reg_32
Date 2016-10-11 13:40 +0200
Message-ID <sr3zB-6ag-63@gated-at.bofh.it> (permalink)
References <sr1xL-4Ta-7@gated-at.bofh.it> <sr1xL-4Ta-11@gated-at.bofh.it> <sr2tQ-5vN-3@gated-at.bofh.it>
Organization Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo

Show all headers | View raw


On Tue, Oct 11, 2016 at 10:21:03AM +0000, Winkler, Tomas wrote:
> > Encapsulated crb_wait_for_reg32() so that state changes in other CRB registers
> > than TPM_CRB_CTRL_REQ_x can be waited.
> > 
> > Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> > ---
> >  drivers/char/tpm/tpm_crb.c | 40 +++++++++++++++++++++++-----------------
> >  1 file changed, 23 insertions(+), 17 deletions(-)
> > 
> > diff --git a/drivers/char/tpm/tpm_crb.c b/drivers/char/tpm/tpm_crb.c index
> > c34318b..45f53c2 100644
> > --- a/drivers/char/tpm/tpm_crb.c
> > +++ b/drivers/char/tpm/tpm_crb.c
> > @@ -121,6 +121,25 @@ static int __maybe_unused crb_go_idle(struct device
> > *dev, struct crb_priv *priv)
> >  	return 0;
> >  }
> > 
> > +static bool crb_wait_for_reg_32(u32 __iomem *reg, u32 mask, u32 value,
> > +				unsigned long timeout)
> This is a boiler plate register polling function  I would call it _poll_ rather the _wait_
> 
> > +{
> > +	ktime_t start;
> > +	ktime_t stop;
> > +
> > +	start = ktime_get();
> > +	stop = ktime_add(start, ms_to_ktime(timeout));
> > +
> > +	do {
> > +		if ((ioread32(reg) & mask) == value)
> I prefer the register value is synced to  variable, this inlining is
> harder to add adhoc debug prints.  Also you removed the debug print
> out that I know when this settled which is important for catching
> bugs. 

I can add it but can you just briefly explain why the warning
is not enough?

> > +			return true;
> > +
> > +		usleep_range(50, 100);
> How do you know this is correct sleep time, I've tuned that for power
> gating I'm not sure you this fits also for locality. 

Does it matter as long as it is less than for the timeout?

/Jarkko

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/3] Locality support for the CRB driver Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 11:30 +0200
  [PATCH 2/3] tpm_crb: encapsulate crb_wait_for_reg_32 Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 11:30 +0200
    RE: [tpmdd-devel] [PATCH 2/3] tpm_crb: encapsulate  crb_wait_for_reg_32 "Winkler, Tomas" <tomas.winkler@intel.com> - 2016-10-11 12:30 +0200
      Re: [tpmdd-devel] [PATCH 2/3] tpm_crb: encapsulate  crb_wait_for_reg_32 Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 13:40 +0200
  [PATCH 1/3] tpm_crb: map locality registers Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 11:30 +0200
    Re: [PATCH 1/3] tpm_crb: map locality registers Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 13:40 +0200
    Re: [PATCH 1/3] tpm_crb: map locality registers Jason Gunthorpe <jgunthorpe@obsidianresearch.com> - 2016-10-11 19:10 +0200
      Re: [PATCH 1/3] tpm_crb: map locality registers Jason Gunthorpe <jgunthorpe@obsidianresearch.com> - 2016-10-11 20:30 +0200
        Re: [PATCH 1/3] tpm_crb: map locality registers Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 22:00 +0200
      Re: [PATCH 1/3] tpm_crb: map locality registers Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 20:30 +0200
  [PATCH 3/3] tpm_crb: request and relinquish locality 0 Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 11:30 +0200
  [PATCH RFC 1/3] tpm_crb: expand struct crb_control_area to struct crb_regs Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-10-11 11:30 +0200

csiph-web