[PATCH 0/6] Initial support for the Realtek interrupt controller

From: James Tai
Date: Thu Nov 02 2023 - 10:28:46 EST


Introduce an interrupt controller driver for Realtek DHC (Digital Home Center) SoCs.

James Tai (6):
dt-bindings: interrupt-controller: Add support for Realtek DHC SoCs
irqchip: Add interrupt controller support for Realtek DHC SoCs
irqchip: Introduce RTD1319 support using the Realtek Common Interrupt
Controller Driver
irqchip: Introduce RTD1319D support using the Realtek Common Interrupt
Controller Driver
irqchip: Introduce RTD1325 support using the Realtek Common Interrupt
Controller Driver
irqchip: Introduce RTD1619B support using the Realtek Common Interrupt
Controller Driver

.../interrupt-controller/realtek,intc.yaml | 146 +++++++++++
drivers/irqchip/Kconfig | 28 +++
drivers/irqchip/Makefile | 5 +
drivers/irqchip/irq-realtek-intc-common.c | 232 ++++++++++++++++++
drivers/irqchip/irq-realtek-intc-common.h | 75 ++++++
drivers/irqchip/irq-realtek-rtd1319.c | 204 +++++++++++++++
drivers/irqchip/irq-realtek-rtd1319d.c | 211 ++++++++++++++++
drivers/irqchip/irq-realtek-rtd1325.c | 214 ++++++++++++++++
drivers/irqchip/irq-realtek-rtd1619b.c | 201 +++++++++++++++
9 files changed, 1316 insertions(+)
create mode 100644 Documentation/devicetree/bindings/interrupt-controller/realtek,intc.yaml
create mode 100644 drivers/irqchip/irq-realtek-intc-common.c
create mode 100644 drivers/irqchip/irq-realtek-intc-common.h
create mode 100644 drivers/irqchip/irq-realtek-rtd1319.c
create mode 100644 drivers/irqchip/irq-realtek-rtd1319d.c
create mode 100644 drivers/irqchip/irq-realtek-rtd1325.c
create mode 100644 drivers/irqchip/irq-realtek-rtd1619b.c

--
2.25.1