linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pinctrl: sunxi: fix V3s pinctrl driver IRQ bank base
@ 2017-08-01 14:54 Icenowy Zheng
  2017-08-04  2:23 ` [linux-sunxi] " Chen-Yu Tsai
  2017-08-07 13:09 ` Linus Walleij
  0 siblings, 2 replies; 5+ messages in thread
From: Icenowy Zheng @ 2017-08-01 14:54 UTC (permalink / raw)
  To: Maxime Ripard, Chen-Yu Tsai, Linus Walleij
  Cc: linux-arm-kernel, linux-gpio, linux-kernel, linux-sunxi,
	Icenowy Zheng, stable

The V3s pin controller doesn't have the bank 0 (starts at address
0x200), which is like A33. However, this is not workarounded when
developing the driver, which makes IRQ not working.

Fix the IRQ bank base.

Fixes: 56d9e4a76039 ("pinctrl: sunxi: add driver for V3s SoC")
Cc: stable@vger.kernel.org
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
---
 drivers/pinctrl/sunxi/pinctrl-sun8i-v3s.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pinctrl/sunxi/pinctrl-sun8i-v3s.c b/drivers/pinctrl/sunxi/pinctrl-sun8i-v3s.c
index c86d3c42a905..496ba34e1f5f 100644
--- a/drivers/pinctrl/sunxi/pinctrl-sun8i-v3s.c
+++ b/drivers/pinctrl/sunxi/pinctrl-sun8i-v3s.c
@@ -297,6 +297,7 @@ static const struct sunxi_pinctrl_desc sun8i_v3s_pinctrl_data = {
 	.pins = sun8i_v3s_pins,
 	.npins = ARRAY_SIZE(sun8i_v3s_pins),
 	.irq_banks = 2,
+	.irq_bank_base = 1,
 	.irq_read_needs_mux = true
 };
 
-- 
2.13.0

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

* Re: [linux-sunxi] [PATCH] pinctrl: sunxi: fix V3s pinctrl driver IRQ bank base
  2017-08-01 14:54 [PATCH] pinctrl: sunxi: fix V3s pinctrl driver IRQ bank base Icenowy Zheng
@ 2017-08-04  2:23 ` Chen-Yu Tsai
  2017-08-04  3:48   ` icenowy
  2017-08-07 13:09 ` Linus Walleij
  1 sibling, 1 reply; 5+ messages in thread
From: Chen-Yu Tsai @ 2017-08-04  2:23 UTC (permalink / raw)
  To: Icenowy Zheng
  Cc: Maxime Ripard, Chen-Yu Tsai, Linus Walleij, linux-arm-kernel,
	linux-gpio, linux-kernel, linux-sunxi, stable

On Tue, Aug 1, 2017 at 10:54 PM, Icenowy Zheng <icenowy@aosc.io> wrote:
> The V3s pin controller doesn't have the bank 0 (starts at address
> 0x200), which is like A33. However, this is not workarounded when

                                           was not worked around

"Work around" is a verb phrase. "Workaround" is a noun.

> developing the driver, which makes IRQ not working.

                               broke the IRQs.

>
> Fix the IRQ bank base.
>
> Fixes: 56d9e4a76039 ("pinctrl: sunxi: add driver for V3s SoC")
> Cc: stable@vger.kernel.org
> Signed-off-by: Icenowy Zheng <icenowy@aosc.io>

Confirmed this is the same thing we saw on A33.
The fix is the same.

Apart from the typo / grammar errors above,

Reviewed-by: Chen-Yu Tsai <wens@csie.org>

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

* Re: [linux-sunxi] [PATCH] pinctrl: sunxi: fix V3s pinctrl driver IRQ bank base
  2017-08-04  2:23 ` [linux-sunxi] " Chen-Yu Tsai
@ 2017-08-04  3:48   ` icenowy
  0 siblings, 0 replies; 5+ messages in thread
From: icenowy @ 2017-08-04  3:48 UTC (permalink / raw)
  To: Chen-Yu Tsai
  Cc: Linus Walleij, linux-sunxi, linux-kernel, stable, linux-gpio,
	Maxime Ripard, linux-arm-kernel

在 2017-08-04 10:23,Chen-Yu Tsai 写道:
> On Tue, Aug 1, 2017 at 10:54 PM, Icenowy Zheng <icenowy@aosc.io> wrote:
>> The V3s pin controller doesn't have the bank 0 (starts at address
>> 0x200), which is like A33. However, this is not workarounded when
> 
>                                            was not worked around
> 
> "Work around" is a verb phrase. "Workaround" is a noun.
> 
>> developing the driver, which makes IRQ not working.
> 
>                                broke the IRQs.
> 
>> 
>> Fix the IRQ bank base.
>> 
>> Fixes: 56d9e4a76039 ("pinctrl: sunxi: add driver for V3s SoC")
>> Cc: stable@vger.kernel.org
>> Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
> 
> Confirmed this is the same thing we saw on A33.
> The fix is the same.
> 
> Apart from the typo / grammar errors above,
> 
> Reviewed-by: Chen-Yu Tsai <wens@csie.org>

Should I send a v2 now to fix the language errors?

> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] pinctrl: sunxi: fix V3s pinctrl driver IRQ bank base
  2017-08-01 14:54 [PATCH] pinctrl: sunxi: fix V3s pinctrl driver IRQ bank base Icenowy Zheng
  2017-08-04  2:23 ` [linux-sunxi] " Chen-Yu Tsai
@ 2017-08-07 13:09 ` Linus Walleij
  2017-08-07 13:18   ` icenowy
  1 sibling, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2017-08-07 13:09 UTC (permalink / raw)
  To: Icenowy Zheng
  Cc: Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel, linux-gpio,
	linux-kernel, linux-sunxi, stable

On Tue, Aug 1, 2017 at 4:54 PM, Icenowy Zheng <icenowy@aosc.io> wrote:

> The V3s pin controller doesn't have the bank 0 (starts at address
> 0x200), which is like A33. However, this is not workarounded when
> developing the driver, which makes IRQ not working.
>
> Fix the IRQ bank base.
>
> Fixes: 56d9e4a76039 ("pinctrl: sunxi: add driver for V3s SoC")
> Cc: stable@vger.kernel.org

This patch only applies on the devel branch so I don't see why it is tagged
for stable.

> Signed-off-by: Icenowy Zheng <icenowy@aosc.io>

Patch applied.

Yours,
Linus Walleij

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

* Re: [PATCH] pinctrl: sunxi: fix V3s pinctrl driver IRQ bank base
  2017-08-07 13:09 ` Linus Walleij
@ 2017-08-07 13:18   ` icenowy
  0 siblings, 0 replies; 5+ messages in thread
From: icenowy @ 2017-08-07 13:18 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Chen-Yu Tsai, stable, linux-kernel, linux-gpio, linux-sunxi,
	Maxime Ripard, linux-arm-kernel

在 2017-08-07 21:09,Linus Walleij 写道:
> On Tue, Aug 1, 2017 at 4:54 PM, Icenowy Zheng <icenowy@aosc.io> wrote:
> 
>> The V3s pin controller doesn't have the bank 0 (starts at address
>> 0x200), which is like A33. However, this is not workarounded when
>> developing the driver, which makes IRQ not working.
>> 
>> Fix the IRQ bank base.
>> 
>> Fixes: 56d9e4a76039 ("pinctrl: sunxi: add driver for V3s SoC")
>> Cc: stable@vger.kernel.org
> 
> This patch only applies on the devel branch so I don't see why it is 
> tagged
> for stable.

I can apply it on v4.12 tag.

The V3s pinctrl driver is introduced in 4.11.

> 
>> Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
> 
> Patch applied.
> 
> Yours,
> Linus Walleij
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2017-08-07 13:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-01 14:54 [PATCH] pinctrl: sunxi: fix V3s pinctrl driver IRQ bank base Icenowy Zheng
2017-08-04  2:23 ` [linux-sunxi] " Chen-Yu Tsai
2017-08-04  3:48   ` icenowy
2017-08-07 13:09 ` Linus Walleij
2017-08-07 13:18   ` icenowy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).