From: Sander Vanheule Date: Sat, 9 Apr 2022 19:55:51 +0000 (+0200) Subject: gpio: realtek-otto: Add RTL931x support X-Git-Tag: v6.6.17~7434^2~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d3bf3dc4bbbf6109bd9b4bd60089d36205ec4a37;p=platform%2Fkernel%2Flinux-rpi.git gpio: realtek-otto: Add RTL931x support The RTL931x SoC series has support for 32 GPIOs, although not all lines may be broken out to a physical pad. The GPIO bank's parent interrupt can be routed to either or both of the SoC's CPU cores by the GIC. Line-by-line IRQ balancing is not possible on these SoCs. Signed-off-by: Sander Vanheule Signed-off-by: Bartosz Golaszewski --- diff --git a/drivers/gpio/gpio-realtek-otto.c b/drivers/gpio/gpio-realtek-otto.c index 3ddaa17..c52b2cb 100644 --- a/drivers/gpio/gpio-realtek-otto.c +++ b/drivers/gpio/gpio-realtek-otto.c @@ -339,6 +339,9 @@ static const struct of_device_id realtek_gpio_of_match[] = { .compatible = "realtek,rtl9300-gpio", .data = (void *)(GPIO_PORTS_REVERSED | GPIO_INTERRUPTS_PER_CPU) }, + { + .compatible = "realtek,rtl9310-gpio", + }, {} }; MODULE_DEVICE_TABLE(of, realtek_gpio_of_match);