All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] media: solo6x10: fix lockup by avoiding delayed register write
@ 2016-10-22 15:34 Andrey Utkin
  2016-10-24  4:57 ` Krzysztof Hałasa
  0 siblings, 1 reply; 3+ messages in thread
From: Andrey Utkin @ 2016-10-22 15:34 UTC (permalink / raw)
  To: mchehab
  Cc: stable, linux-media, linux-kernel, maintainers, andrey_utkin,
	ismael, hverkuil, hans.verkuil, khalasa, Andrey Utkin

This fixes a lockup at device probing which happens on some solo6010
hardware samples. This is a regression introduced by commit e1ceb25a1569
("[media] SOLO6x10: remove unneeded register locking and barriers")

The observed lockup happens in solo_set_motion_threshold() called from
solo_motion_config().

This extra "flushing" is not fundamentally needed for every write, but
apparently the code in driver assumes such behaviour at last in some
places.

Actual fix was proposed by Hans Verkuil.

Fixes: e1ceb25a1569 ("[media] SOLO6x10: remove unneeded register locking and barriers")
Cc: stable@vger.kernel.org
Signed-off-by: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
---
This is a second submission, the first one was
"[PATCH] [media] solo6x10: avoid delayed register write" from 22 Sep 2016,
with same content.

Dear maintainers - please take this at last into v4.9 if possible.

Changes since v1:
 - changed subject to show that this fixes a lockup
 - added Cc: stable
 - added Fixes: tag

 drivers/media/pci/solo6x10/solo6x10.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/media/pci/solo6x10/solo6x10.h b/drivers/media/pci/solo6x10/solo6x10.h
index 5bd4987..3f8da5e 100644
--- a/drivers/media/pci/solo6x10/solo6x10.h
+++ b/drivers/media/pci/solo6x10/solo6x10.h
@@ -284,7 +284,10 @@ static inline u32 solo_reg_read(struct solo_dev *solo_dev, int reg)
 static inline void solo_reg_write(struct solo_dev *solo_dev, int reg,
 				  u32 data)
 {
+	u16 val;
+
 	writel(data, solo_dev->reg_base + reg);
+	pci_read_config_word(solo_dev->pdev, PCI_STATUS, &val);
 }
 
 static inline void solo_irq_on(struct solo_dev *dev, u32 mask)
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] media: solo6x10: fix lockup by avoiding delayed register write
  2016-10-22 15:34 [PATCH v2] media: solo6x10: fix lockup by avoiding delayed register write Andrey Utkin
@ 2016-10-24  4:57 ` Krzysztof Hałasa
  2016-10-24  7:17   ` Andrey Utkin
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Hałasa @ 2016-10-24  4:57 UTC (permalink / raw)
  To: Andrey Utkin
  Cc: mchehab, stable, linux-media, linux-kernel, maintainers,
	andrey_utkin, ismael, hverkuil, hans.verkuil

Andrey Utkin <andrey.utkin@corp.bluecherry.net> writes:

> --- a/drivers/media/pci/solo6x10/solo6x10.h
> +++ b/drivers/media/pci/solo6x10/solo6x10.h
> @@ -284,7 +284,10 @@ static inline u32 solo_reg_read(struct solo_dev *solo_dev, int reg)
>  static inline void solo_reg_write(struct solo_dev *solo_dev, int reg,
>  				  u32 data)
>  {
> +	u16 val;
> +
>  	writel(data, solo_dev->reg_base + reg);
> +	pci_read_config_word(solo_dev->pdev, PCI_STATUS, &val);
>  }
>  
>  static inline void solo_irq_on(struct solo_dev *dev, u32 mask)

This is ok for now. I hope I will find some to refine this, so not all
register writes are done with the penalty - eventually.
-- 
Krzysztof Halasa

Industrial Research Institute for Automation and Measurements PIAP
Al. Jerozolimskie 202, 02-486 Warsaw, Poland

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] media: solo6x10: fix lockup by avoiding delayed register write
  2016-10-24  4:57 ` Krzysztof Hałasa
@ 2016-10-24  7:17   ` Andrey Utkin
  0 siblings, 0 replies; 3+ messages in thread
From: Andrey Utkin @ 2016-10-24  7:17 UTC (permalink / raw)
  To: Krzysztof Hałasa
  Cc: Andrey Utkin, mchehab, stable, linux-media, linux-kernel,
	maintainers, ismael, hverkuil, hans.verkuil

On Mon, Oct 24, 2016 at 06:57:25AM +0200, Krzysztof Hałasa wrote:
> Andrey Utkin <andrey.utkin@corp.bluecherry.net> writes:
> 
> > --- a/drivers/media/pci/solo6x10/solo6x10.h
> > +++ b/drivers/media/pci/solo6x10/solo6x10.h
> > @@ -284,7 +284,10 @@ static inline u32 solo_reg_read(struct solo_dev *solo_dev, int reg)
> >  static inline void solo_reg_write(struct solo_dev *solo_dev, int reg,
> >  				  u32 data)
> >  {
> > +	u16 val;
> > +
> >  	writel(data, solo_dev->reg_base + reg);
> > +	pci_read_config_word(solo_dev->pdev, PCI_STATUS, &val);
> >  }
> >  
> >  static inline void solo_irq_on(struct solo_dev *dev, u32 mask)
> 
> This is ok for now. I hope I will find some to refine this, so not all
> register writes are done with the penalty - eventually.

I'm afraid it'd be hard if you don't have a hardware sample which hangs.
I could in theory provide you with SSH access to my dev machine, but
currently I'm in another country so managing this is hard, too.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-24  7:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-22 15:34 [PATCH v2] media: solo6x10: fix lockup by avoiding delayed register write Andrey Utkin
2016-10-24  4:57 ` Krzysztof Hałasa
2016-10-24  7:17   ` Andrey Utkin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.