* [PATCH] usb: typec: tipd: drop double register read in tps6598x_interrupt
@ 2025-11-06 16:48 Peter Korsgaard
2025-11-07 8:36 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2025-11-06 16:48 UTC (permalink / raw)
To: javier.carrasco, heikki.krogerus, neal, gregkh, linux-usb
Cc: Peter Korsgaard, linux-kernel
Commit 409c1cfb5a80 ("usb: typec: tipd: fix event checking for tps6598x")
added (by accident?) a double read of the TPS_REG_INT_EVENT1 register. Drop
that.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
drivers/usb/typec/tipd/core.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/usb/typec/tipd/core.c b/drivers/usb/typec/tipd/core.c
index 2b1049c9a6f3..2d4fcf62c200 100644
--- a/drivers/usb/typec/tipd/core.c
+++ b/drivers/usb/typec/tipd/core.c
@@ -994,8 +994,6 @@ static irqreturn_t tps6598x_interrupt(int irq, void *data)
TPS_VERSION_HW_VERSION(version) == TPS_VERSION_HW_65987_8_DK)
intev_len = TPS_65987_8_INTEVENT_LEN;
- ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len);
-
ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len);
if (ret) {
dev_err(tps->dev, "%s: failed to read event1\n", __func__);
--
2.39.5
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] usb: typec: tipd: drop double register read in tps6598x_interrupt 2025-11-06 16:48 [PATCH] usb: typec: tipd: drop double register read in tps6598x_interrupt Peter Korsgaard @ 2025-11-07 8:36 ` Greg KH 2025-11-07 15:03 ` Peter Korsgaard 0 siblings, 1 reply; 5+ messages in thread From: Greg KH @ 2025-11-07 8:36 UTC (permalink / raw) To: Peter Korsgaard Cc: javier.carrasco, heikki.krogerus, neal, linux-usb, linux-kernel On Thu, Nov 06, 2025 at 05:48:49PM +0100, Peter Korsgaard wrote: > Commit 409c1cfb5a80 ("usb: typec: tipd: fix event checking for tps6598x") > added (by accident?) a double read of the TPS_REG_INT_EVENT1 register. Drop > that. Are you sure? Sometimes 2 reads are required. How was this tested? thanks, greg k-h ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] usb: typec: tipd: drop double register read in tps6598x_interrupt 2025-11-07 8:36 ` Greg KH @ 2025-11-07 15:03 ` Peter Korsgaard 2025-11-08 0:43 ` Greg KH 0 siblings, 1 reply; 5+ messages in thread From: Peter Korsgaard @ 2025-11-07 15:03 UTC (permalink / raw) To: Greg KH; +Cc: javier.carrasco, heikki.krogerus, neal, linux-usb, linux-kernel >>>>> "Greg" == Greg KH <gregkh@linuxfoundation.org> writes: > On Thu, Nov 06, 2025 at 05:48:49PM +0100, Peter Korsgaard wrote: >> Commit 409c1cfb5a80 ("usb: typec: tipd: fix event checking for tps6598x") >> added (by accident?) a double read of the TPS_REG_INT_EVENT1 register. Drop >> that. > Are you sure? Sometimes 2 reads are required. How was this tested? Hard to be 100% sure, but the code did not have a double read before the above commit and sticking a printk in the driver like this: diff --git a/drivers/usb/typec/tipd/core.c b/drivers/usb/typec/tipd/core.c index 01db27cbf1d1..6687d192dbd4 100644 --- a/drivers/usb/typec/tipd/core.c +++ b/drivers/usb/typec/tipd/core.c @@ -536,8 +536,9 @@ static irqreturn_t tps6598x_interrupt(int irq, void *data) intev_len = TPS_65987_8_INTEVENT_LEN; ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len); - + printk(KERN_ERR "1st: %llx %llx\n", event1[0], event1[1]); ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len); + printk(KERN_ERR "2nd: %llx %llx\n", event1[0], event1[1]); if (ret) { dev_err(tps->dev, "%s: failed to read event1\n", __func__); goto err_unlock; and (un)plugging the USB cable I see: [ 3267.257341] 1st: 3000008 0 [ 3267.262097] 2nd: 3000008 0 [ 3267.345179] 1st: 1000000 0 [ 3267.350512] 2nd: 1000000 0 [ 3267.388947] 1st: 1000000 0 [ 3267.393707] 2nd: 1000000 0 [ 3267.912112] 1st: 1000000 0 [ 3267.916872] 2nd: 1000000 0 [ 3268.049505] 1st: 1000000 0 [ 3268.054773] 2nd: 1000000 0 [ 3269.105173] 1st: 1000000 0 [ 3269.109970] 2nd: 1000000 0 [ 3280.049111] 1st: 3000008 0 [ 3280.053865] 2nd: 3000008 0 So I am fairly sure it is not needed. -- Bye, Peter Korsgaard ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] usb: typec: tipd: drop double register read in tps6598x_interrupt 2025-11-07 15:03 ` Peter Korsgaard @ 2025-11-08 0:43 ` Greg KH 2025-11-10 8:16 ` Heikki Krogerus 0 siblings, 1 reply; 5+ messages in thread From: Greg KH @ 2025-11-08 0:43 UTC (permalink / raw) To: Peter Korsgaard Cc: javier.carrasco, heikki.krogerus, neal, linux-usb, linux-kernel On Fri, Nov 07, 2025 at 04:03:36PM +0100, Peter Korsgaard wrote: > >>>>> "Greg" == Greg KH <gregkh@linuxfoundation.org> writes: > > > On Thu, Nov 06, 2025 at 05:48:49PM +0100, Peter Korsgaard wrote: > >> Commit 409c1cfb5a80 ("usb: typec: tipd: fix event checking for tps6598x") > >> added (by accident?) a double read of the TPS_REG_INT_EVENT1 register. Drop > >> that. > > > Are you sure? Sometimes 2 reads are required. How was this tested? > > Hard to be 100% sure, but the code did not have a double read before the > above commit and sticking a printk in the driver like this: > > diff --git a/drivers/usb/typec/tipd/core.c b/drivers/usb/typec/tipd/core.c > index 01db27cbf1d1..6687d192dbd4 100644 > --- a/drivers/usb/typec/tipd/core.c > +++ b/drivers/usb/typec/tipd/core.c > @@ -536,8 +536,9 @@ static irqreturn_t tps6598x_interrupt(int irq, void *data) > intev_len = TPS_65987_8_INTEVENT_LEN; > > ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len); > - > + printk(KERN_ERR "1st: %llx %llx\n", event1[0], event1[1]); > ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len); > + printk(KERN_ERR "2nd: %llx %llx\n", event1[0], event1[1]); > if (ret) { > dev_err(tps->dev, "%s: failed to read event1\n", __func__); > goto err_unlock; > > > and (un)plugging the USB cable I see: > > [ 3267.257341] 1st: 3000008 0 > [ 3267.262097] 2nd: 3000008 0 > > [ 3267.345179] 1st: 1000000 0 > [ 3267.350512] 2nd: 1000000 0 > > [ 3267.388947] 1st: 1000000 0 > [ 3267.393707] 2nd: 1000000 0 > > [ 3267.912112] 1st: 1000000 0 > [ 3267.916872] 2nd: 1000000 0 > > [ 3268.049505] 1st: 1000000 0 > [ 3268.054773] 2nd: 1000000 0 > > [ 3269.105173] 1st: 1000000 0 > [ 3269.109970] 2nd: 1000000 0 > > [ 3280.049111] 1st: 3000008 0 > [ 3280.053865] 2nd: 3000008 0 > > So I am fairly sure it is not needed. Sometimes hardware requires it, even if it is not noticed by the actual read value, so I would like to get an ack from the original author on this before accepting it. thanks, greg k-h ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] usb: typec: tipd: drop double register read in tps6598x_interrupt 2025-11-08 0:43 ` Greg KH @ 2025-11-10 8:16 ` Heikki Krogerus 0 siblings, 0 replies; 5+ messages in thread From: Heikki Krogerus @ 2025-11-10 8:16 UTC (permalink / raw) To: Greg KH; +Cc: Peter Korsgaard, javier.carrasco, neal, linux-usb, linux-kernel Sat, Nov 08, 2025 at 09:43:14AM +0900, Greg KH kirjoitti: > On Fri, Nov 07, 2025 at 04:03:36PM +0100, Peter Korsgaard wrote: > > >>>>> "Greg" == Greg KH <gregkh@linuxfoundation.org> writes: > > > > > On Thu, Nov 06, 2025 at 05:48:49PM +0100, Peter Korsgaard wrote: > > >> Commit 409c1cfb5a80 ("usb: typec: tipd: fix event checking for tps6598x") > > >> added (by accident?) a double read of the TPS_REG_INT_EVENT1 register. Drop > > >> that. > > > > > Are you sure? Sometimes 2 reads are required. How was this tested? > > > > Hard to be 100% sure, but the code did not have a double read before the > > above commit and sticking a printk in the driver like this: > > > > diff --git a/drivers/usb/typec/tipd/core.c b/drivers/usb/typec/tipd/core.c > > index 01db27cbf1d1..6687d192dbd4 100644 > > --- a/drivers/usb/typec/tipd/core.c > > +++ b/drivers/usb/typec/tipd/core.c > > @@ -536,8 +536,9 @@ static irqreturn_t tps6598x_interrupt(int irq, void *data) > > intev_len = TPS_65987_8_INTEVENT_LEN; > > > > ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len); > > - > > + printk(KERN_ERR "1st: %llx %llx\n", event1[0], event1[1]); > > ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len); > > + printk(KERN_ERR "2nd: %llx %llx\n", event1[0], event1[1]); > > if (ret) { > > dev_err(tps->dev, "%s: failed to read event1\n", __func__); > > goto err_unlock; > > > > > > and (un)plugging the USB cable I see: > > > > [ 3267.257341] 1st: 3000008 0 > > [ 3267.262097] 2nd: 3000008 0 > > > > [ 3267.345179] 1st: 1000000 0 > > [ 3267.350512] 2nd: 1000000 0 > > > > [ 3267.388947] 1st: 1000000 0 > > [ 3267.393707] 2nd: 1000000 0 > > > > [ 3267.912112] 1st: 1000000 0 > > [ 3267.916872] 2nd: 1000000 0 > > > > [ 3268.049505] 1st: 1000000 0 > > [ 3268.054773] 2nd: 1000000 0 > > > > [ 3269.105173] 1st: 1000000 0 > > [ 3269.109970] 2nd: 1000000 0 > > > > [ 3280.049111] 1st: 3000008 0 > > [ 3280.053865] 2nd: 3000008 0 > > > > So I am fairly sure it is not needed. > > Sometimes hardware requires it, even if it is not noticed by the actual > read value, so I would like to get an ack from the original author on > this before accepting it. The hardware should not require it. Javier, can you comment on this? If there really is need to do double read, then there needs to be a comment explaining why IMO. thanks, -- heikki ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-11-10 8:16 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-11-06 16:48 [PATCH] usb: typec: tipd: drop double register read in tps6598x_interrupt Peter Korsgaard 2025-11-07 8:36 ` Greg KH 2025-11-07 15:03 ` Peter Korsgaard 2025-11-08 0:43 ` Greg KH 2025-11-10 8:16 ` Heikki Krogerus
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox