From patchwork Wed Mar 19 09:29:23 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jiri Slaby X-Patchwork-Id: 875669 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 0A509252910; Wed, 19 Mar 2025 09:32: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=1742376746; cv=none; b=pKwRc54ytbQrjjqzFA8Wvk28kZQDrHgqZ2OTlKvryWP6uz4nWD9l36vgmViYg78G0oGdvd22Cz78IlDbc7vjWKZwj63pETArB+FF0tlbHyICtWbFfGhigBy9kK4SFYlMwFxQAaYhIi3iduaQX8cI1HOcuhPxtNR1AhCbsNbvB+Q= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742376746; c=relaxed/simple; bh=J4LXR0Y2qS0piBOOlokPYpkVy5zQirVcAhf7ufpp67I=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=T0ldQdTB1AWKD7r6naElyHIcFLwMTg4LRpsh8Qx2aQoA+PsiwuSKw29m76VqXBKQVb+/DPuJWoZOBKa8DEAeoDeaZviCozWNv4NSiRfWwuUH1LTl+QJcMaOVBgRnnooW3LBfx8rRo0ezJHeb4cyBaSVnvLBZcgLaaNk9m7x5OgQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bhcEic3y; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bhcEic3y" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 49551C4CEF1; Wed, 19 Mar 2025 09:32:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1742376745; bh=J4LXR0Y2qS0piBOOlokPYpkVy5zQirVcAhf7ufpp67I=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bhcEic3ycqf6Nj2QnNFq8kBIZE85TZWizQkWHeLOtAXmNKz2GrhCSJIYPXQ3DxBje wQwER4s9G9hLwyHJAimwTpHOzaGs5MHTu6lQ/9OuUsRF2fYzlXjL1vN9GAqD5SUV2j DhHtj0GyODaoyPHDxVa09v8O7Nhnn5hXjN80O/4o/F3Q7rNL+UmX4u5bVCpOIgi18c 2rX8WPnE/yMsDg9mKjc2nlQpRhN1UuQgxV90loPm5lFrKLeaMqKqaUZj+tc0ML2fKl rlnK4dId2bKWojLocDEAqbN44kD3U5lz7BoilDTYG+7Qr/VkMwjjii+zr4K5iYwfo0 skh5Fn8fKK02Q== From: "Jiri Slaby (SUSE)" To: tglx@linutronix.de Cc: maz@kernel.org, linux-kernel@vger.kernel.org, "Jiri Slaby (SUSE)" , Sean Wang , Linus Walleij , Matthias Brugger , AngeloGioacchino Del Regno , Ludovic Desroches , Nicolas Ferre , Alexandre Belloni , Claudiu Beznea , Tony Lindgren , Haojian Zhuang , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , linux-gpio@vger.kernel.org Subject: [PATCH v2 30/57] irqdomain: pinctrl: Switch to irq_domain_create_*() Date: Wed, 19 Mar 2025 10:29:23 +0100 Message-ID: <20250319092951.37667-31-jirislaby@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250319092951.37667-1-jirislaby@kernel.org> References: <20250319092951.37667-1-jirislaby@kernel.org> Precedence: bulk X-Mailing-List: linux-gpio@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 irq_domain_add_*() interfaces are going away as being obsolete now. Switch to the preferred irq_domain_create_*() ones. Those differ in the node parameter: They take more generic struct fwnode_handle instead of struct device_node. Therefore, of_fwnode_handle() is added around the original parameter. Note some of the users can likely use dev->fwnode directly instead of indirect of_fwnode_handle(dev->of_node). But dev->fwnode is not guaranteed to be set for all, so this has to be investigated on case to case basis (by people who can actually test with the HW). Signed-off-by: Jiri Slaby (SUSE) Cc: Sean Wang Cc: Linus Walleij Cc: Matthias Brugger Cc: AngeloGioacchino Del Regno Cc: Ludovic Desroches Cc: Nicolas Ferre Cc: Alexandre Belloni Cc: Claudiu Beznea Cc: Tony Lindgren Cc: Haojian Zhuang Cc: Chen-Yu Tsai Cc: Jernej Skrabec Cc: Samuel Holland Cc: linux-gpio@vger.kernel.org --- drivers/pinctrl/mediatek/mtk-eint.c | 5 ++--- drivers/pinctrl/pinctrl-at91-pio4.c | 2 +- drivers/pinctrl/pinctrl-single.c | 9 +++++---- drivers/pinctrl/sunxi/pinctrl-sunxi.c | 7 +++---- 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/drivers/pinctrl/mediatek/mtk-eint.c b/drivers/pinctrl/mediatek/mtk-eint.c index 27f0a54e12bf..855df9d8baec 100644 --- a/drivers/pinctrl/mediatek/mtk-eint.c +++ b/drivers/pinctrl/mediatek/mtk-eint.c @@ -508,9 +508,8 @@ int mtk_eint_do_init(struct mtk_eint *eint) if (!eint->dual_edge) return -ENOMEM; - eint->domain = irq_domain_add_linear(eint->dev->of_node, - eint->hw->ap_num, - &irq_domain_simple_ops, NULL); + eint->domain = irq_domain_create_linear(of_fwnode_handle(eint->dev->of_node), + eint->hw->ap_num, &irq_domain_simple_ops, NULL); if (!eint->domain) return -ENOMEM; diff --git a/drivers/pinctrl/pinctrl-at91-pio4.c b/drivers/pinctrl/pinctrl-at91-pio4.c index 8b01d312305a..e57ac4ea91dd 100644 --- a/drivers/pinctrl/pinctrl-at91-pio4.c +++ b/drivers/pinctrl/pinctrl-at91-pio4.c @@ -1206,7 +1206,7 @@ static int atmel_pinctrl_probe(struct platform_device *pdev) dev_dbg(dev, "bank %i: irq=%d\n", i, ret); } - atmel_pioctrl->irq_domain = irq_domain_add_linear(dev->of_node, + atmel_pioctrl->irq_domain = irq_domain_create_linear(of_fwnode_handle(dev->of_node), atmel_pioctrl->gpio_chip->ngpio, &irq_domain_simple_ops, NULL); if (!atmel_pioctrl->irq_domain) diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c index 5be14dc979e2..5cda6201b60f 100644 --- a/drivers/pinctrl/pinctrl-single.c +++ b/drivers/pinctrl/pinctrl-single.c @@ -1611,15 +1611,16 @@ static int pcs_irq_init_chained_handler(struct pcs_device *pcs, /* * We can use the register offset as the hardirq - * number as irq_domain_add_simple maps them lazily. + * number as irq_domain_create_simple maps them lazily. * This way we can easily support more than one * interrupt per function if needed. */ num_irqs = pcs->size; - pcs->domain = irq_domain_add_simple(np, num_irqs, 0, - &pcs_irqdomain_ops, - pcs_soc); + pcs->domain = irq_domain_create_simple(of_fwnode_handle(np), + num_irqs, 0, + &pcs_irqdomain_ops, + pcs_soc); if (!pcs->domain) { irq_set_chained_handler(pcs_soc->irq, NULL); return -EINVAL; diff --git a/drivers/pinctrl/sunxi/pinctrl-sunxi.c b/drivers/pinctrl/sunxi/pinctrl-sunxi.c index f1c5a991cf7b..bf8612d72daa 100644 --- a/drivers/pinctrl/sunxi/pinctrl-sunxi.c +++ b/drivers/pinctrl/sunxi/pinctrl-sunxi.c @@ -1646,10 +1646,9 @@ int sunxi_pinctrl_init_with_flags(struct platform_device *pdev, } } - pctl->domain = irq_domain_add_linear(node, - pctl->desc->irq_banks * IRQ_PER_BANK, - &sunxi_pinctrl_irq_domain_ops, - pctl); + pctl->domain = irq_domain_create_linear(of_fwnode_handle(node), + pctl->desc->irq_banks * IRQ_PER_BANK, + &sunxi_pinctrl_irq_domain_ops, pctl); if (!pctl->domain) { dev_err(&pdev->dev, "Couldn't register IRQ domain\n"); ret = -ENOMEM;