* [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
@ 2015-05-06 4:05 Laurent Pinchart
2015-05-06 11:34 ` Ben Hutchings
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Laurent Pinchart @ 2015-05-06 4:05 UTC (permalink / raw)
To: linux-sh
The adv7511 IRQ is low level triggered, not falling edge triggered. The
wrong sense configuration results in no interrupt being triggered at
all, breaking hotplug detection. Fix it.
Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
---
arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Ben, would you be able to test this ? I won't have access to my Lager board
before Sunday.
diff --git a/arch/arm/boot/dts/r8a7790-lager.dts b/arch/arm/boot/dts/r8a7790-lager.dts
index 46f4c56c287c..21782e6b37f7 100644
--- a/arch/arm/boot/dts/r8a7790-lager.dts
+++ b/arch/arm/boot/dts/r8a7790-lager.dts
@@ -548,7 +548,7 @@
compatible = "adi,adv7511w";
reg = <0x39>;
interrupt-parent = <&gpio1>;
- interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
+ interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
adi,input-depth = <8>;
adi,input-colorspace = "rgb";
--
Regards,
Laurent Pinchart
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
@ 2015-05-06 11:34 ` Ben Hutchings
2015-05-06 13:12 ` Laurent Pinchart
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Ben Hutchings @ 2015-05-06 11:34 UTC (permalink / raw)
To: linux-sh
On Wed, 2015-05-06 at 07:05 +0300, Laurent Pinchart wrote:
> The adv7511 IRQ is low level triggered, not falling edge triggered. The
> wrong sense configuration results in no interrupt being triggered at
> all, breaking hotplug detection. Fix it.
>
> Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> ---
> arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> Ben, would you be able to test this ? I won't have access to my Lager board
> before Sunday.
I only have remote access to a Lager at present, so I would need to pass
this on to a colleague.
Ben.
> diff --git a/arch/arm/boot/dts/r8a7790-lager.dts b/arch/arm/boot/dts/r8a7790-lager.dts
> index 46f4c56c287c..21782e6b37f7 100644
> --- a/arch/arm/boot/dts/r8a7790-lager.dts
> +++ b/arch/arm/boot/dts/r8a7790-lager.dts
> @@ -548,7 +548,7 @@
> compatible = "adi,adv7511w";
> reg = <0x39>;
> interrupt-parent = <&gpio1>;
> - interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
> + interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
>
> adi,input-depth = <8>;
> adi,input-colorspace = "rgb";
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
2015-05-06 11:34 ` Ben Hutchings
@ 2015-05-06 13:12 ` Laurent Pinchart
2015-05-25 1:08 ` Simon Horman
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Laurent Pinchart @ 2015-05-06 13:12 UTC (permalink / raw)
To: linux-sh
Hi Ben,
On Wednesday 06 May 2015 12:34:34 Ben Hutchings wrote:
> On Wed, 2015-05-06 at 07:05 +0300, Laurent Pinchart wrote:
> > The adv7511 IRQ is low level triggered, not falling edge triggered. The
> > wrong sense configuration results in no interrupt being triggered at
> > all, breaking hotplug detection. Fix it.
> >
> > Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> > Signed-off-by: Laurent Pinchart
> > <laurent.pinchart+renesas@ideasonboard.com>
> > ---
> >
> > arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > Ben, would you be able to test this ? I won't have access to my Lager
> > board before Sunday.
>
> I only have remote access to a Lager at present, so I would need to pass
> this on to a colleague.
No worries. Worst case I'll try it when I get back home.
> > diff --git a/arch/arm/boot/dts/r8a7790-lager.dts
> > b/arch/arm/boot/dts/r8a7790-lager.dts index 46f4c56c287c..21782e6b37f7
> > 100644
> > --- a/arch/arm/boot/dts/r8a7790-lager.dts
> > +++ b/arch/arm/boot/dts/r8a7790-lager.dts
> > @@ -548,7 +548,7 @@
> > compatible = "adi,adv7511w";
> > reg = <0x39>;
> > interrupt-parent = <&gpio1>;
> > - interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
> > + interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
> >
> > adi,input-depth = <8>;
> > adi,input-colorspace = "rgb";
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
2015-05-06 11:34 ` Ben Hutchings
2015-05-06 13:12 ` Laurent Pinchart
@ 2015-05-25 1:08 ` Simon Horman
2015-07-07 0:48 ` Simon Horman
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-05-25 1:08 UTC (permalink / raw)
To: linux-sh
Hi Ben, Hi Laurent,
On Wed, May 06, 2015 at 04:12:39PM +0300, Laurent Pinchart wrote:
> Hi Ben,
>
> On Wednesday 06 May 2015 12:34:34 Ben Hutchings wrote:
> > On Wed, 2015-05-06 at 07:05 +0300, Laurent Pinchart wrote:
> > > The adv7511 IRQ is low level triggered, not falling edge triggered. The
> > > wrong sense configuration results in no interrupt being triggered at
> > > all, breaking hotplug detection. Fix it.
> > >
> > > Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> > > Signed-off-by: Laurent Pinchart
> > > <laurent.pinchart+renesas@ideasonboard.com>
> > > ---
> > >
> > > arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > Ben, would you be able to test this ? I won't have access to my Lager
> > > board before Sunday.
> >
> > I only have remote access to a Lager at present, so I would need to pass
> > this on to a colleague.
>
> No worries. Worst case I'll try it when I get back home.
Did anyone manage to test this?
> > > diff --git a/arch/arm/boot/dts/r8a7790-lager.dts
> > > b/arch/arm/boot/dts/r8a7790-lager.dts index 46f4c56c287c..21782e6b37f7
> > > 100644
> > > --- a/arch/arm/boot/dts/r8a7790-lager.dts
> > > +++ b/arch/arm/boot/dts/r8a7790-lager.dts
> > > @@ -548,7 +548,7 @@
> > > compatible = "adi,adv7511w";
> > > reg = <0x39>;
> > > interrupt-parent = <&gpio1>;
> > > - interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
> > > + interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
> > >
> > > adi,input-depth = <8>;
> > > adi,input-colorspace = "rgb";
>
> --
> Regards,
>
> Laurent Pinchart
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
` (2 preceding siblings ...)
2015-05-25 1:08 ` Simon Horman
@ 2015-07-07 0:48 ` Simon Horman
2015-07-16 11:29 ` Laurent Pinchart
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-07-07 0:48 UTC (permalink / raw)
To: linux-sh
Hi,
On Mon, May 25, 2015 at 10:08:24AM +0900, Simon Horman wrote:
> Hi Ben, Hi Laurent,
>
> On Wed, May 06, 2015 at 04:12:39PM +0300, Laurent Pinchart wrote:
> > Hi Ben,
> >
> > On Wednesday 06 May 2015 12:34:34 Ben Hutchings wrote:
> > > On Wed, 2015-05-06 at 07:05 +0300, Laurent Pinchart wrote:
> > > > The adv7511 IRQ is low level triggered, not falling edge triggered. The
> > > > wrong sense configuration results in no interrupt being triggered at
> > > > all, breaking hotplug detection. Fix it.
> > > >
> > > > Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> > > > Signed-off-by: Laurent Pinchart
> > > > <laurent.pinchart+renesas@ideasonboard.com>
> > > > ---
> > > >
> > > > arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
> > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > Ben, would you be able to test this ? I won't have access to my Lager
> > > > board before Sunday.
> > >
> > > I only have remote access to a Lager at present, so I would need to pass
> > > this on to a colleague.
> >
> > No worries. Worst case I'll try it when I get back home.
>
> Did anyone manage to test this?
This seems to have fallen through the cracks.
Laurent, is there any chance you could test this?
> > > > diff --git a/arch/arm/boot/dts/r8a7790-lager.dts
> > > > b/arch/arm/boot/dts/r8a7790-lager.dts index 46f4c56c287c..21782e6b37f7
> > > > 100644
> > > > --- a/arch/arm/boot/dts/r8a7790-lager.dts
> > > > +++ b/arch/arm/boot/dts/r8a7790-lager.dts
> > > > @@ -548,7 +548,7 @@
> > > > compatible = "adi,adv7511w";
> > > > reg = <0x39>;
> > > > interrupt-parent = <&gpio1>;
> > > > - interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
> > > > + interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
> > > >
> > > > adi,input-depth = <8>;
> > > > adi,input-colorspace = "rgb";
> >
> > --
> > Regards,
> >
> > Laurent Pinchart
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> >
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
` (3 preceding siblings ...)
2015-07-07 0:48 ` Simon Horman
@ 2015-07-16 11:29 ` Laurent Pinchart
2015-07-17 0:03 ` Simon Horman
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Laurent Pinchart @ 2015-07-16 11:29 UTC (permalink / raw)
To: linux-sh
Hi Simon,
On Tuesday 07 July 2015 09:48:09 Simon Horman wrote:
> On Mon, May 25, 2015 at 10:08:24AM +0900, Simon Horman wrote:
> > On Wed, May 06, 2015 at 04:12:39PM +0300, Laurent Pinchart wrote:
> >> On Wednesday 06 May 2015 12:34:34 Ben Hutchings wrote:
> >>> On Wed, 2015-05-06 at 07:05 +0300, Laurent Pinchart wrote:
> >>>> The adv7511 IRQ is low level triggered, not falling edge triggered.
> >>>> The wrong sense configuration results in no interrupt being
> >>>> triggered at all, breaking hotplug detection. Fix it.
> >>>>
> >>>> Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> >>>> Signed-off-by: Laurent Pinchart
> >>>> <laurent.pinchart+renesas@ideasonboard.com>
> >>>> ---
> >>>>
> >>>> arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
> >>>> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>>>
> >>>> Ben, would you be able to test this ? I won't have access to my
> >>>> Lager board before Sunday.
> >>>
> >>> I only have remote access to a Lager at present, so I would need to
> >> pass this on to a colleague.
> >>
> >> No worries. Worst case I'll try it when I get back home.
> >
> > Did anyone manage to test this?
>
> This seems to have fallen through the cracks.
It did indeed. There seems to be many cracks these days, must be the season.
> Laurent, is there any chance you could test this?
Tested-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> >>>> diff --git a/arch/arm/boot/dts/r8a7790-lager.dts
> >>>> b/arch/arm/boot/dts/r8a7790-lager.dts index
> >>>> 46f4c56c287c..21782e6b37f7
> >>>> 100644
> >>>> --- a/arch/arm/boot/dts/r8a7790-lager.dts
> >>>> +++ b/arch/arm/boot/dts/r8a7790-lager.dts
> >>>> @@ -548,7 +548,7 @@
> >>>> compatible = "adi,adv7511w";
> >>>> reg = <0x39>;
> >>>> interrupt-parent = <&gpio1>;
> >>>> - interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
> >>>> + interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
> >>>>
> >>>> adi,input-depth = <8>;
> >>>> adi,input-colorspace = "rgb";
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
` (4 preceding siblings ...)
2015-07-16 11:29 ` Laurent Pinchart
@ 2015-07-17 0:03 ` Simon Horman
2015-07-17 6:31 ` Laurent Pinchart
2015-07-17 6:47 ` Simon Horman
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-07-17 0:03 UTC (permalink / raw)
To: linux-sh
On Thu, Jul 16, 2015 at 02:29:04PM +0300, Laurent Pinchart wrote:
> Hi Simon,
>
> On Tuesday 07 July 2015 09:48:09 Simon Horman wrote:
> > On Mon, May 25, 2015 at 10:08:24AM +0900, Simon Horman wrote:
> > > On Wed, May 06, 2015 at 04:12:39PM +0300, Laurent Pinchart wrote:
> > >> On Wednesday 06 May 2015 12:34:34 Ben Hutchings wrote:
> > >>> On Wed, 2015-05-06 at 07:05 +0300, Laurent Pinchart wrote:
> > >>>> The adv7511 IRQ is low level triggered, not falling edge triggered.
> > >>>> The wrong sense configuration results in no interrupt being
> > >>>> triggered at all, breaking hotplug detection. Fix it.
> > >>>>
> > >>>> Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> > >>>> Signed-off-by: Laurent Pinchart
> > >>>> <laurent.pinchart+renesas@ideasonboard.com>
> > >>>> ---
> > >>>>
> > >>>> arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
> > >>>> 1 file changed, 1 insertion(+), 1 deletion(-)
> > >>>>
> > >>>> Ben, would you be able to test this ? I won't have access to my
> > >>>> Lager board before Sunday.
> > >>>
> > >>> I only have remote access to a Lager at present, so I would need to
> > >> pass this on to a colleague.
> > >>
> > >> No worries. Worst case I'll try it when I get back home.
> > >
> > > Did anyone manage to test this?
> >
> > This seems to have fallen through the cracks.
>
> It did indeed. There seems to be many cracks these days, must be the season.
>
> > Laurent, is there any chance you could test this?
>
> Tested-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Thanks.
Shall I queue it up as a fix with the following tag?
Fixes: fd25cdd15b7f ("ARM: shmobile: lager: Add DU HDMI output support")
>
> > >>>> diff --git a/arch/arm/boot/dts/r8a7790-lager.dts
> > >>>> b/arch/arm/boot/dts/r8a7790-lager.dts index
> > >>>> 46f4c56c287c..21782e6b37f7
> > >>>> 100644
> > >>>> --- a/arch/arm/boot/dts/r8a7790-lager.dts
> > >>>> +++ b/arch/arm/boot/dts/r8a7790-lager.dts
> > >>>> @@ -548,7 +548,7 @@
> > >>>> compatible = "adi,adv7511w";
> > >>>> reg = <0x39>;
> > >>>> interrupt-parent = <&gpio1>;
> > >>>> - interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
> > >>>> + interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
> > >>>>
> > >>>> adi,input-depth = <8>;
> > >>>> adi,input-colorspace = "rgb";
>
> --
> Regards,
>
> Laurent Pinchart
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
` (5 preceding siblings ...)
2015-07-17 0:03 ` Simon Horman
@ 2015-07-17 6:31 ` Laurent Pinchart
2015-07-17 6:47 ` Simon Horman
7 siblings, 0 replies; 9+ messages in thread
From: Laurent Pinchart @ 2015-07-17 6:31 UTC (permalink / raw)
To: linux-sh
Hi Simon,
On Friday 17 July 2015 09:03:11 Simon Horman wrote:
> On Thu, Jul 16, 2015 at 02:29:04PM +0300, Laurent Pinchart wrote:
> > On Tuesday 07 July 2015 09:48:09 Simon Horman wrote:
> >> On Mon, May 25, 2015 at 10:08:24AM +0900, Simon Horman wrote:
> >>> On Wed, May 06, 2015 at 04:12:39PM +0300, Laurent Pinchart wrote:
> >>>> On Wednesday 06 May 2015 12:34:34 Ben Hutchings wrote:
> >>>>> On Wed, 2015-05-06 at 07:05 +0300, Laurent Pinchart wrote:
> >>>>>> The adv7511 IRQ is low level triggered, not falling edge triggered.
> >>>>>> The wrong sense configuration results in no interrupt being
> >>>>>> triggered at all, breaking hotplug detection. Fix it.
> >>>>>>
> >>>>>> Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> >>>>>> Signed-off-by: Laurent Pinchart
> >>>>>> <laurent.pinchart+renesas@ideasonboard.com>
> >>>>>> ---
> >>>>>>
> >>>>>> arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
> >>>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>>>>>
> >>>>>> Ben, would you be able to test this ? I won't have access to my
> >>>>>> Lager board before Sunday.
> >>>>>
> >>>>> I only have remote access to a Lager at present, so I would need to
> >>>>
> >>>> pass this on to a colleague.
> >>>>
> >>>> No worries. Worst case I'll try it when I get back home.
> >>>
> >>> Did anyone manage to test this?
> >>
> >> This seems to have fallen through the cracks.
> >
> > It did indeed. There seems to be many cracks these days, must be the
> > season.
> >
> >> Laurent, is there any chance you could test this?
> >
> > Tested-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
>
> Thanks.
>
> Shall I queue it up as a fix with the following tag?
>
> Fixes: fd25cdd15b7f ("ARM: shmobile: lager: Add DU HDMI output support")
It's a related fix, but I don't think a fixes tag is appropriate given that
the above commit doesn't introduce a regression.
> >>>>>> diff --git a/arch/arm/boot/dts/r8a7790-lager.dts
> >>>>>> b/arch/arm/boot/dts/r8a7790-lager.dts index
> >>>>>> 46f4c56c287c..21782e6b37f7
> >>>>>> 100644
> >>>>>> --- a/arch/arm/boot/dts/r8a7790-lager.dts
> >>>>>> +++ b/arch/arm/boot/dts/r8a7790-lager.dts
> >>>>>> @@ -548,7 +548,7 @@
> >>>>>>
> >>>>>> compatible = "adi,adv7511w";
> >>>>>> reg = <0x39>;
> >>>>>> interrupt-parent = <&gpio1>;
> >>>>>>
> >>>>>> - interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
> >>>>>> + interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
> >>>>>>
> >>>>>> adi,input-depth = <8>;
> >>>>>> adi,input-colorspace = "rgb";
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
` (6 preceding siblings ...)
2015-07-17 6:31 ` Laurent Pinchart
@ 2015-07-17 6:47 ` Simon Horman
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-07-17 6:47 UTC (permalink / raw)
To: linux-sh
On Fri, Jul 17, 2015 at 09:31:24AM +0300, Laurent Pinchart wrote:
> Hi Simon,
>
> On Friday 17 July 2015 09:03:11 Simon Horman wrote:
> > On Thu, Jul 16, 2015 at 02:29:04PM +0300, Laurent Pinchart wrote:
> > > On Tuesday 07 July 2015 09:48:09 Simon Horman wrote:
> > >> On Mon, May 25, 2015 at 10:08:24AM +0900, Simon Horman wrote:
> > >>> On Wed, May 06, 2015 at 04:12:39PM +0300, Laurent Pinchart wrote:
> > >>>> On Wednesday 06 May 2015 12:34:34 Ben Hutchings wrote:
> > >>>>> On Wed, 2015-05-06 at 07:05 +0300, Laurent Pinchart wrote:
> > >>>>>> The adv7511 IRQ is low level triggered, not falling edge triggered.
> > >>>>>> The wrong sense configuration results in no interrupt being
> > >>>>>> triggered at all, breaking hotplug detection. Fix it.
> > >>>>>>
> > >>>>>> Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
> > >>>>>> Signed-off-by: Laurent Pinchart
> > >>>>>> <laurent.pinchart+renesas@ideasonboard.com>
> > >>>>>> ---
> > >>>>>>
> > >>>>>> arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
> > >>>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
> > >>>>>>
> > >>>>>> Ben, would you be able to test this ? I won't have access to my
> > >>>>>> Lager board before Sunday.
> > >>>>>
> > >>>>> I only have remote access to a Lager at present, so I would need to
> > >>>>
> > >>>> pass this on to a colleague.
> > >>>>
> > >>>> No worries. Worst case I'll try it when I get back home.
> > >>>
> > >>> Did anyone manage to test this?
> > >>
> > >> This seems to have fallen through the cracks.
> > >
> > > It did indeed. There seems to be many cracks these days, must be the
> > > season.
> > >
> > >> Laurent, is there any chance you could test this?
> > >
> > > Tested-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> >
> > Thanks.
> >
> > Shall I queue it up as a fix with the following tag?
> >
> > Fixes: fd25cdd15b7f ("ARM: shmobile: lager: Add DU HDMI output support")
>
> It's a related fix, but I don't think a fixes tag is appropriate given that
> the above commit doesn't introduce a regression.
Ok, I'll just queue it up as a regular-non-fix patch.
Most likely early next week.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-07-17 6:47 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-06 4:05 [PATCH] ARM: shmobile: lager: Fix adv7511 IRQ sensing Laurent Pinchart
2015-05-06 11:34 ` Ben Hutchings
2015-05-06 13:12 ` Laurent Pinchart
2015-05-25 1:08 ` Simon Horman
2015-07-07 0:48 ` Simon Horman
2015-07-16 11:29 ` Laurent Pinchart
2015-07-17 0:03 ` Simon Horman
2015-07-17 6:31 ` Laurent Pinchart
2015-07-17 6:47 ` Simon Horman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox