From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5B48030BBBF; Fri, 16 Jan 2026 10:50:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768560626; cv=none; b=Vk8F/kUeWVIGQ6qVi56mBzrx41Gk406PwJFZ/mszs+4Q/1cOPia/Ho+gWPz415pOPENct0te5hfwz11JPmLVXMPiipNwbfwn5ddZoNM17Rus7wliDxsWSOuqD4OtqN8FrkIMHsTrJTRb6WNpKQ2UIV+PHmIqFOZ/x7FbZ3o9pSo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768560626; c=relaxed/simple; bh=oT//iS3U4g6c70kJJ+DwWtZX4nzmGfZJYFAcrxv+XzY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=X9Nn2Lwz+A8HygbY9qu7EDMeBLBpM3ViWzAkVE4wGuo+s79vVAfC1zrcWUhTzilNWPCsnaMnTDIIQai6fk3VzgTj4Ke0SCaNPQyx3HQz+aIdQ9YyL6Zro0D/jU1oR3q3HPNJJMYZzyy0uuDgMjVTJzCL6JUYI2Wm1QBWE/dYgNQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id AA064C116C6; Fri, 16 Jan 2026 10:50:24 +0000 (UTC) From: Geert Uytterhoeven To: soc@lists.linux.dev, soc Cc: Magnus Damm , linux-arm-kernel@lists.infradead.org, linux-renesas-soc@vger.kernel.org, Geert Uytterhoeven Subject: [GIT PULL 1/3] Renesas driver updates for v6.20 (take two) Date: Fri, 16 Jan 2026 11:50:16 +0100 Message-ID: X-Mailer: git-send-email 2.43.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: soc@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The following changes since commit 1bea7e94bf09ee6d46051076866a9369f64d302a: soc: renesas: Enable ICU support on RZ/N2H (2025-12-23 09:25:33 +0100) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git tags/renesas-drivers-for-v6.20-tag2 for you to fetch changes up to 49261f479d45714692587ff0abe0c5279c6068d6: soc: renesas: Add support for RZ/N1 GPIO Interrupt Multiplexer (2026-01-15 12:05:16 +0100) ---------------------------------------------------------------- Renesas driver updates for v6.20 (take two) - Add and use for_each_of_imap_item() iterator, - Add support for the RZ/N1 GPIO Interrupt Multiplexer. ---------------------------------------------------------------- Herve Codina (Schneider Electric) (5): of/irq: Introduce for_each_of_imap_item of: unittest: Add a test case for for_each_of_imap_item iterator irqchip/ls-extirq: Use for_each_of_imap_item iterator irqchip/renesas-rza1: Use for_each_of_imap_item iterator soc: renesas: Add support for RZ/N1 GPIO Interrupt Multiplexer drivers/irqchip/irq-ls-extirq.c | 47 ++++----- drivers/irqchip/irq-renesas-rza1.c | 43 ++++----- drivers/of/irq.c | 70 ++++++++++++++ drivers/of/unittest-data/tests-interrupts.dtsi | 9 ++ drivers/of/unittest.c | 116 ++++++++++++++++++++++ drivers/soc/renesas/Kconfig | 4 + drivers/soc/renesas/Makefile | 1 + drivers/soc/renesas/rzn1_irqmux.c | 127 +++++++++++++++++++++++++ include/linux/of_irq.h | 41 +++++++- 9 files changed, 400 insertions(+), 58 deletions(-) create mode 100644 drivers/soc/renesas/rzn1_irqmux.c