diff mbox

[tpmdd-devel,09/12] tpm/tpm_tis: Rework interrupt management for phy compatibility

Message ID 1458502483-16887-10-git-send-email-christophe-h.ricard@st.com
State New
Headers show

Commit Message

Christophe Ricard March 20, 2016, 7:34 p.m. UTC
Rework interrupt handling in order to be compatible with every phy.

Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com>
---
 drivers/char/tpm/tpm-interface.c | 11 ++++++++---
 drivers/char/tpm/tpm.h           |  1 +
 drivers/char/tpm/tpm_tis_core.c  | 24 +++++++++++++++++++-----
 3 files changed, 28 insertions(+), 8 deletions(-)

Comments

Jason Gunthorpe March 21, 2016, 1:37 a.m. UTC | #1
On Sun, Mar 20, 2016 at 08:34:40PM +0100, Christophe Ricard wrote:
> Rework interrupt handling in order to be compatible with every phy.

You need to describe this much more.

> +++ b/drivers/char/tpm/tpm-interface.c
> @@ -881,7 +881,9 @@ int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
>  	unsigned long stop;
>  	long rc;
>  	u8 status;
> +	u32 cur_intrs;
>  	bool canceled = false;
> +	bool condition;
>  
>  	/* check current status */
>  	status = chip->ops->status(chip);
> @@ -892,14 +894,17 @@ int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
>  
>  	if (chip->vendor.irq) {
>  again:
> +		cur_intrs = chip->vendor.intrs;
>  		timeout = stop - jiffies;
>  		if ((long)timeout <= 0)
>  			return -ETIME;
>  		rc = wait_event_interruptible_timeout(*queue,
> -			wait_for_tpm_stat_cond(chip, mask, check_cancel,
> -					       &canceled),
> +			cur_intrs != chip->vendor.intrs,
>  			timeout);
> -		if (rc > 0) {
> +		condition = wait_for_tpm_stat_cond(chip, mask,
> +						   check_cancel,
> +						   &canceled);
> +		if (rc > 0 && condition) {
>  			if (canceled)
>  				return -ECANCELED;
>  			return 0;

This should not be buried into a packet to tpm_tis.

How does this even work for other drivers?

> +static void tpm_tis_clear_int(struct tpm_chip *chip)

All these changes look a little unsettling.. Ordering is really
important when working with interrupts and this changes all sorts of
things.

I'd be alot happier if the current flow wasn't being changed to add
the new interfaces.

> -	if (devm_request_irq(&chip->dev, irq, tis_int_handler, flags,
> -			     dev_name(&chip->dev), chip) != 0) {
> +	if (devm_request_threaded_irq(&chip->dev, irq, NULL, tis_int_handler, flags,
> +				      dev_name(&chip->dev), chip) != 0) {

This shouldn't be changed for the lpc case either.

Jason

------------------------------------------------------------------------------
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140
Christophe Ricard March 21, 2016, 5:45 p.m. UTC | #2
Ok, let me look into that a bit deeper.

2016-03-21 2:37 GMT+01:00 Jason Gunthorpe <jgunthorpe@obsidianresearch.com>:

> On Sun, Mar 20, 2016 at 08:34:40PM +0100, Christophe Ricard wrote:
> > Rework interrupt handling in order to be compatible with every phy.
>
> You need to describe this much more.
>
> > +++ b/drivers/char/tpm/tpm-interface.c
> > @@ -881,7 +881,9 @@ int wait_for_tpm_stat(struct tpm_chip *chip, u8
> mask, unsigned long timeout,
> >       unsigned long stop;
> >       long rc;
> >       u8 status;
> > +     u32 cur_intrs;
> >       bool canceled = false;
> > +     bool condition;
> >
> >       /* check current status */
> >       status = chip->ops->status(chip);
> > @@ -892,14 +894,17 @@ int wait_for_tpm_stat(struct tpm_chip *chip, u8
> mask, unsigned long timeout,
> >
> >       if (chip->vendor.irq) {
> >  again:
> > +             cur_intrs = chip->vendor.intrs;
> >               timeout = stop - jiffies;
> >               if ((long)timeout <= 0)
> >                       return -ETIME;
> >               rc = wait_event_interruptible_timeout(*queue,
> > -                     wait_for_tpm_stat_cond(chip, mask, check_cancel,
> > -                                            &canceled),
> > +                     cur_intrs != chip->vendor.intrs,
> >                       timeout);
> > -             if (rc > 0) {
> > +             condition = wait_for_tpm_stat_cond(chip, mask,
> > +                                                check_cancel,
> > +                                                &canceled);
> > +             if (rc > 0 && condition) {
> >                       if (canceled)
> >                               return -ECANCELED;
> >                       return 0;
>
> This should not be buried into a packet to tpm_tis.
>
> How does this even work for other drivers?
>
> > +static void tpm_tis_clear_int(struct tpm_chip *chip)
>
> All these changes look a little unsettling.. Ordering is really
> important when working with interrupts and this changes all sorts of
> things.
>
> I'd be alot happier if the current flow wasn't being changed to add
> the new interfaces.
>
> > -     if (devm_request_irq(&chip->dev, irq, tis_int_handler, flags,
> > -                          dev_name(&chip->dev), chip) != 0) {
> > +     if (devm_request_threaded_irq(&chip->dev, irq, NULL,
> tis_int_handler, flags,
> > +                                   dev_name(&chip->dev), chip) != 0) {
>
> This shouldn't be changed for the lpc case either.
>
> Jason
>
------------------------------------------------------------------------------
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140
diff mbox

Patch

diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c
index 5397b64..c06378b 100644
--- a/drivers/char/tpm/tpm-interface.c
+++ b/drivers/char/tpm/tpm-interface.c
@@ -881,7 +881,9 @@  int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
 	unsigned long stop;
 	long rc;
 	u8 status;
+	u32 cur_intrs;
 	bool canceled = false;
+	bool condition;
 
 	/* check current status */
 	status = chip->ops->status(chip);
@@ -892,14 +894,17 @@  int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
 
 	if (chip->vendor.irq) {
 again:
+		cur_intrs = chip->vendor.intrs;
 		timeout = stop - jiffies;
 		if ((long)timeout <= 0)
 			return -ETIME;
 		rc = wait_event_interruptible_timeout(*queue,
-			wait_for_tpm_stat_cond(chip, mask, check_cancel,
-					       &canceled),
+			cur_intrs != chip->vendor.intrs,
 			timeout);
-		if (rc > 0) {
+		condition = wait_for_tpm_stat_cond(chip, mask,
+						   check_cancel,
+						   &canceled);
+		if (rc > 0 && condition) {
 			if (canceled)
 				return -ECANCELED;
 			return 0;
diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h
index 3ec04f4..32c17f4 100644
--- a/drivers/char/tpm/tpm.h
+++ b/drivers/char/tpm/tpm.h
@@ -139,6 +139,7 @@  struct tpm_vendor_specific {
 	unsigned long base;		/* TPM base address */
 
 	int irq;
+	u32 intrs;
 
 	int region_size;
 	int have_region;
diff --git a/drivers/char/tpm/tpm_tis_core.c b/drivers/char/tpm/tpm_tis_core.c
index b9cc61f..baa9ab1 100644
--- a/drivers/char/tpm/tpm_tis_core.c
+++ b/drivers/char/tpm/tpm_tis_core.c
@@ -41,6 +41,18 @@  struct tpm_info {
 	int irq;
 };
 
+static void tpm_tis_clear_int(struct tpm_chip *chip)
+{
+	u32 interrupt;
+
+	if (chip->vendor.irq) {
+		interrupt = tpm_read_dword(chip,
+					TPM_INT_STATUS(chip->vendor.locality));
+		tpm_write_dword(chip, TPM_INT_STATUS(chip->vendor.locality),
+				interrupt);
+	}
+}
+
 /* Before we attempt to access the TPM we must see that the valid bit is set.
  * The specification says that this bit is 0 at reset and remains 0 until the
  * 'TPM has gone through its self test and initialization and has established
@@ -192,6 +204,8 @@  int tpm_tis_recv(struct tpm_chip *chip, u8 *buf, size_t count)
 		goto out;
 	}
 
+	tpm_tis_clear_int(chip);
+
 	/* read first 10 bytes, including tag, paramsize, and result */
 	size = recv_data(chip, buf, TPM_HEADER_SIZE);
 	if (size < TPM_HEADER_SIZE) {
@@ -313,6 +327,8 @@  static int tpm_tis_send_main(struct tpm_chip *chip, u8 *buf, size_t len)
 	u32 ordinal;
 	unsigned long dur;
 
+	tpm_tis_clear_int(chip);
+
 	rc = tpm_tis_send_data(chip, buf, len);
 	if (rc < 0)
 		return rc;
@@ -455,6 +471,7 @@  static irqreturn_t tis_int_handler(int dummy, void *dev_id)
 		return IRQ_NONE;
 
 	chip->vendor.irq_tested = true;
+	chip->vendor.intrs++;
 	if (interrupt & TPM_INTF_DATA_AVAIL_INT)
 		wake_up_interruptible(&chip->vendor.read_queue);
 	if (interrupt & TPM_INTF_LOCALITY_CHANGE_INT)
@@ -466,9 +483,6 @@  static irqreturn_t tis_int_handler(int dummy, void *dev_id)
 	     TPM_INTF_CMD_READY_INT))
 		wake_up_interruptible(&chip->vendor.int_queue);
 
-	/* Clear interrupts handled with TPM_EOI */
-	tpm_write_dword(chip, TPM_INT_STATUS(chip->vendor.locality), interrupt);
-	tpm_read_dword(chip, TPM_INT_STATUS(chip->vendor.locality));
 	return IRQ_HANDLED;
 }
 
@@ -481,8 +495,8 @@  static int tpm_tis_probe_irq_single(struct tpm_chip *chip, u32 intmask,
 {
 	u8 original_int_vec;
 
-	if (devm_request_irq(&chip->dev, irq, tis_int_handler, flags,
-			     dev_name(&chip->dev), chip) != 0) {
+	if (devm_request_threaded_irq(&chip->dev, irq, NULL, tis_int_handler, flags,
+				      dev_name(&chip->dev), chip) != 0) {
 		dev_info(&chip->dev, "Unable to request irq: %d for probe\n",
 			 irq);
 		return -1;