From patchwork Wed Oct 9 23:08:14 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabrizio Castro X-Patchwork-Id: 13829341 Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 749B51917C0; Wed, 9 Oct 2024 23:08:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=210.160.252.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728515316; cv=none; b=AElgn/BcKM3VC0HANLHk/tkSiZFDijl9syjqHmH85xFK0VR6Wlxf9Z/XEvz/sc6ZIYIZvBOYnAV6FTPhU5anrIywvRd/sVXWqyZPMEjHtkY+ybc8ZZnEJhn5aPaiVNSNcInoC+qbydjX4ZjmLRTDtW/cA9Y+XpwQr6UphO3g9oc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728515316; c=relaxed/simple; bh=GDfVTBFIhyeQ+7H1jMwn9Z+F3POa0oFuRw1iCtP0j5A=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=BoHi/MwTSPmhha+fCPnP/Uw6WlFuvopUnPQPqZ5vdQ9yWTQ2dhLp3bc4wFlhR4Db4CVXd9XZ38crPqZ4bjx2+/XQE7uCJr3CNMuldtQaY88LXS1IfuFNFDqocS2zJ5nQni2r33AmLRIz3m/xhtWpG7rL2VkEItASCo4l8CylE5I= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=renesas.com; spf=pass smtp.mailfrom=renesas.com; arc=none smtp.client-ip=210.160.252.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=renesas.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=renesas.com X-IronPort-AV: E=Sophos;i="6.11,191,1725289200"; d="scan'208";a="225463317" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 10 Oct 2024 08:08:32 +0900 Received: from mulinux.home (unknown [10.226.93.36]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id EAC704004483; Thu, 10 Oct 2024 08:08:20 +0900 (JST) From: Fabrizio Castro To: Thomas Gleixner , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Philipp Zabel , Geert Uytterhoeven Cc: Fabrizio Castro , Magnus Damm , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Chris Paterson , Biju Das , Lad Prabhakar Subject: [PATCH v3 0/3] Add support for the RZ/V2H Interrupt Control Unit Date: Thu, 10 Oct 2024 00:08:14 +0100 Message-Id: <20241009230817.798582-1-fabrizio.castro.jz@renesas.com> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-renesas-soc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Dear All, This series adds whatever is required for supporting NMI, IRQ, and TINT interrupts to the Renesas RZ/V2H SoC. v2->v3: * The clock patch and the pinctrl patch have been queued up for v6.13, therefore they have been removed from this series. * The dt-bindings patch has been improved as per Geert's comments, with ramifications on the SoC specific dtsi patch, which has been modified accordingly. * The driver patch has been reworked as per Thomas comments. Fabrizio Castro (3): dt-bindings: interrupt-controller: Add Renesas RZ/V2H(P) Interrupt Controller irqchip: Add RZ/V2H(P) Interrupt Control Unit (ICU) driver arm64: dts: renesas: r9a09g057: Add ICU node .../renesas,rzv2h-icu.yaml | 278 ++++++++++ arch/arm64/boot/dts/renesas/r9a09g057.dtsi | 90 +++ drivers/irqchip/Kconfig | 7 + drivers/irqchip/Makefile | 1 + drivers/irqchip/irq-renesas-rzv2h.c | 513 ++++++++++++++++++ drivers/soc/renesas/Kconfig | 1 + 6 files changed, 890 insertions(+) create mode 100644 Documentation/devicetree/bindings/interrupt-controller/renesas,rzv2h-icu.yaml create mode 100644 drivers/irqchip/irq-renesas-rzv2h.c