2018-12-05 06:49:16

by Xingyu Chen

[permalink] [raw]
Subject: [PATCH v2 0/2] irqchip/meson-gpio: Add support for Meson-G12A SoC

This series try to add GPIO interrupt controller support for Meson-G12A SoCs.
Although the total number of pins is the same as the Meson-AXG SoC, the gpio
banks and irq numbers are different. To avoid confusion on use, i think the
new compatible string is needed.

Changes since v1: [1]
- share the device data with Meson-AXG

[1]: https://lore.kernel.org/lkml/[email protected]

Xingyu Chen (2):
dt-bindings: interrupt-controller: New binding for Meson-G12A SoC
irqchip/meson-gpio: Add support for Meson-G12A SoC

.../bindings/interrupt-controller/amlogic,meson-gpio-intc.txt | 1 +
drivers/irqchip/irq-meson-gpio.c | 1 +
2 files changed, 2 insertions(+)

--
2.19.2



2018-12-05 06:47:30

by Xingyu Chen

[permalink] [raw]
Subject: [PATCH v2 1/2] dt-bindings: interrupt-controller: New binding for Meson-G12A SoC

Update the dt-binding document to support new compatible string for the
GPIO interrupt controller which found in Amlogic's Meson-G12A SoC.

Signed-off-by: Xingyu Chen <[email protected]>
Signed-off-by: Jianxin Pan <[email protected]>
---
.../bindings/interrupt-controller/amlogic,meson-gpio-intc.txt | 1 +
1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/interrupt-controller/amlogic,meson-gpio-intc.txt b/Documentation/devicetree/bindings/interrupt-controller/amlogic,meson-gpio-intc.txt
index 1502a51548bb..7d531d5fff29 100644
--- a/Documentation/devicetree/bindings/interrupt-controller/amlogic,meson-gpio-intc.txt
+++ b/Documentation/devicetree/bindings/interrupt-controller/amlogic,meson-gpio-intc.txt
@@ -15,6 +15,7 @@ Required properties:
"amlogic,meson-gxbb-gpio-intc" for GXBB SoCs (S905) or
"amlogic,meson-gxl-gpio-intc" for GXL SoCs (S905X, S912)
"amlogic,meson-axg-gpio-intc" for AXG SoCs (A113D, A113X)
+ "amlogic,meson-g12a-gpio-intc" for G12A SoCs (S905D2, S905X2, S905Y2)
- reg : Specifies base physical address and size of the registers.
- interrupt-controller : Identifies the node as an interrupt controller.
- #interrupt-cells : Specifies the number of cells needed to encode an
--
2.19.2


2018-12-05 06:47:35

by Xingyu Chen

[permalink] [raw]
Subject: [PATCH v2 2/2] irqchip/meson-gpio: Add support for Meson-G12A SoC

The Meson-G12A SoC uses the same GPIO interrupt controller IP block as the
other Meson SoCs, A totle of 100 pins can be spied on, which is the sum of:

- 223:100 undefined (no interrupt)
- 99:97 3 pins on bank GPIOE
- 96:77 20 pins on bank GPIOX
- 76:61 16 pins on bank GPIOA
- 60:53 8 pins on bank GPIOC
- 52:37 16 pins on bank BOOT
- 36:28 9 pins on bank GPIOH
- 27:12 16 pins on bank GPIOZ
- 11:0 12 pins in the AO domain

Change-Id: I977b19380b3dc730b5b81583178af743d0ba0338
Signed-off-by: Xingyu Chen <[email protected]>
Signed-off-by: Jianxin Pan <[email protected]>
---
drivers/irqchip/irq-meson-gpio.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/irqchip/irq-meson-gpio.c b/drivers/irqchip/irq-meson-gpio.c
index 7b531fd075b8..7599b10ecf09 100644
--- a/drivers/irqchip/irq-meson-gpio.c
+++ b/drivers/irqchip/irq-meson-gpio.c
@@ -73,6 +73,7 @@ static const struct of_device_id meson_irq_gpio_matches[] = {
{ .compatible = "amlogic,meson-gxbb-gpio-intc", .data = &gxbb_params },
{ .compatible = "amlogic,meson-gxl-gpio-intc", .data = &gxl_params },
{ .compatible = "amlogic,meson-axg-gpio-intc", .data = &axg_params },
+ { .compatible = "amlogic,meson-g12a-gpio-intc", .data = &axg_params },
{ }
};

--
2.19.2


2019-03-07 12:34:10

by Neil Armstrong

[permalink] [raw]
Subject: Re: [PATCH v2 0/2] irqchip/meson-gpio: Add support for Meson-G12A SoC

Hi Xingyu,

On 05/12/2018 07:46, Xingyu Chen wrote:
> This series try to add GPIO interrupt controller support for Meson-G12A SoCs.
> Although the total number of pins is the same as the Meson-AXG SoC, the gpio
> banks and irq numbers are different. To avoid confusion on use, i think the
> new compatible string is needed.

Could you resent this serie rebased on v5.1-rc1 when tagged ?

Thanks,
Neil

>
> Changes since v1: [1]
> - share the device data with Meson-AXG
>
> [1]: https://lore.kernel.org/lkml/[email protected]
>
> Xingyu Chen (2):
> dt-bindings: interrupt-controller: New binding for Meson-G12A SoC
> irqchip/meson-gpio: Add support for Meson-G12A SoC
>
> .../bindings/interrupt-controller/amlogic,meson-gpio-intc.txt | 1 +
> drivers/irqchip/irq-meson-gpio.c | 1 +
> 2 files changed, 2 insertions(+)
>