From nobody Sat Sep 21 11:31:55 2024 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 315E4C433FE for ; Mon, 28 Nov 2022 09:22:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230348AbiK1JWk (ORCPT ); Mon, 28 Nov 2022 04:22:40 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48262 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230318AbiK1JW1 (ORCPT ); Mon, 28 Nov 2022 04:22:27 -0500 Received: from madras.collabora.co.uk (madras.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e5ab]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C657E18B00; Mon, 28 Nov 2022 01:22:25 -0800 (PST) Received: from IcarusMOD.eternityproject.eu (2-237-20-237.ip236.fastwebnet.it [2.237.20.237]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: kholk11) by madras.collabora.co.uk (Postfix) with ESMTPSA id E4C4B6602ACD; Mon, 28 Nov 2022 09:22:23 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1669627344; bh=32ufF8mWQ76mzZ5g0aMyF+USFsqUYsn/m1kjTdJpMXc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VYNdmUYHNRMqyBLOUgKC2BDNXZgGAoGOqzyaC5jO9VljbA9KpYMT8RA1U8CCT3vOy CoZZIDLoGUx2iSc++hXg7nCh9mar5rq5SbhuAmMUuzENmUz3o/lwdF8pxPAw8Zeiyf YFfpKKRrdg36K5bYBUqvtnMIqnQhJq/t8ZS1TzN3+IakoJfetGDvRnpZKY8w1uGz7j CfFsnhTJKZI3bJFYIW7nsR9803Vl6+WwwlPEV+DBKauzaA81lCHdXP1JwPLOOMYBg5 gS7RMMAgMD3UR9FwugwSPid9Gah0nLQFqjiL3qxtjUk2d/1lLjY4uSjwpm+Tgp8A0F mYcv5qp6/EyMg== From: AngeloGioacchino Del Regno To: tglx@linutronix.de Cc: maz@kernel.org, robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org, matthias.bgg@gmail.com, youlin.pei@mediatek.com, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, AngeloGioacchino Del Regno Subject: [PATCH v3 3/4] irqchip: irq-mtk-cirq: Move register offsets to const array Date: Mon, 28 Nov 2022 10:22:16 +0100 Message-Id: <20221128092217.36552-4-angelogioacchino.delregno@collabora.com> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221128092217.36552-1-angelogioacchino.delregno@collabora.com> References: <20221128092217.36552-1-angelogioacchino.delregno@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" In preparation to add support for new SoCs having a different register layout, add an enumeration that documents register offsets and move the definitions for the same to a u32 array; Selecting the right register offsets array is done by adding an of_device_id array containing all of the currently supported compatible strings pointing to the "v1" offsets array (as data): since no devicetree declares the `mediatek,mtk-cirq` compatible without a SoC-specific one, it wasn't necessary to provide any legacy fallback. Every usage of the aforemementioned definitions was changed to get a register address through a newly introduced `mtk_cirq_reg()` accessor. This change brings no functional changes. Signed-off-by: AngeloGioacchino Del Regno --- drivers/irqchip/irq-mtk-cirq.c | 82 +++++++++++++++++++++++++++------- 1 file changed, 65 insertions(+), 17 deletions(-) diff --git a/drivers/irqchip/irq-mtk-cirq.c b/drivers/irqchip/irq-mtk-cirq.c index 9bca0918078e..4776ed6492fb 100644 --- a/drivers/irqchip/irq-mtk-cirq.c +++ b/drivers/irqchip/irq-mtk-cirq.c @@ -15,14 +15,29 @@ #include #include =20 -#define CIRQ_ACK 0x40 -#define CIRQ_MASK_SET 0xc0 -#define CIRQ_MASK_CLR 0x100 -#define CIRQ_SENS_SET 0x180 -#define CIRQ_SENS_CLR 0x1c0 -#define CIRQ_POL_SET 0x240 -#define CIRQ_POL_CLR 0x280 -#define CIRQ_CONTROL 0x300 +enum mtk_cirq_regoffs_index { + CIRQ_STA, + CIRQ_ACK, + CIRQ_MASK_SET, + CIRQ_MASK_CLR, + CIRQ_SENS_SET, + CIRQ_SENS_CLR, + CIRQ_POL_SET, + CIRQ_POL_CLR, + CIRQ_CONTROL +}; + +static const u32 mtk_cirq_regoffs_v1[] =3D { + [CIRQ_STA] =3D 0x0, + [CIRQ_ACK] =3D 0x40, + [CIRQ_MASK_SET] =3D 0xc0, + [CIRQ_MASK_CLR] =3D 0x100, + [CIRQ_SENS_SET] =3D 0x180, + [CIRQ_SENS_CLR] =3D 0x1c0, + [CIRQ_POL_SET] =3D 0x240, + [CIRQ_POL_CLR] =3D 0x280, + [CIRQ_CONTROL] =3D 0x300, +}; =20 #define CIRQ_EN 0x1 #define CIRQ_EDGE 0x2 @@ -32,18 +47,32 @@ struct mtk_cirq_chip_data { void __iomem *base; unsigned int ext_irq_start; unsigned int ext_irq_end; + const u32 *offsets; struct irq_domain *domain; }; =20 static struct mtk_cirq_chip_data *cirq_data; =20 -static void mtk_cirq_write_mask(struct irq_data *data, unsigned int offset) +static void __iomem *mtk_cirq_reg(struct mtk_cirq_chip_data *chip_data, + enum mtk_cirq_regoffs_index idx) +{ + return chip_data->base + chip_data->offsets[idx]; +} + +static void __iomem *mtk_cirq_irq_reg(struct mtk_cirq_chip_data *chip_data, + enum mtk_cirq_regoffs_index idx, + unsigned int cirq_num) +{ + return mtk_cirq_reg(chip_data, idx) + (cirq_num / 32) * 4; +} + +static void mtk_cirq_write_mask(struct irq_data *data, enum mtk_cirq_regof= fs_index idx) { struct mtk_cirq_chip_data *chip_data =3D data->chip_data; unsigned int cirq_num =3D data->hwirq; u32 mask =3D 1 << (cirq_num % 32); =20 - writel_relaxed(mask, chip_data->base + offset + (cirq_num / 32) * 4); + writel_relaxed(mask, mtk_cirq_irq_reg(chip_data, idx, cirq_num)); } =20 static void mtk_cirq_mask(struct irq_data *data) @@ -160,6 +189,7 @@ static const struct irq_domain_ops cirq_domain_ops =3D { #ifdef CONFIG_PM_SLEEP static int mtk_cirq_suspend(void) { + void __iomem *reg; u32 value, mask; unsigned int irq, hwirq_num; bool pending, masked; @@ -200,31 +230,34 @@ static int mtk_cirq_suspend(void) continue; } =20 + reg =3D mtk_cirq_irq_reg(cirq_data, CIRQ_ACK, i); mask =3D 1 << (i % 32); - writel_relaxed(mask, cirq_data->base + CIRQ_ACK + (i / 32) * 4); + writel_relaxed(mask, reg); } =20 /* set edge_only mode, record edge-triggerd interrupts */ /* enable cirq */ - value =3D readl_relaxed(cirq_data->base + CIRQ_CONTROL); + reg =3D mtk_cirq_reg(cirq_data, CIRQ_CONTROL); + value =3D readl_relaxed(reg); value |=3D (CIRQ_EDGE | CIRQ_EN); - writel_relaxed(value, cirq_data->base + CIRQ_CONTROL); + writel_relaxed(value, reg); =20 return 0; } =20 static void mtk_cirq_resume(void) { + void __iomem *reg =3D mtk_cirq_reg(cirq_data, CIRQ_CONTROL); u32 value; =20 /* flush recorded interrupts, will send signals to parent controller */ - value =3D readl_relaxed(cirq_data->base + CIRQ_CONTROL); - writel_relaxed(value | CIRQ_FLUSH, cirq_data->base + CIRQ_CONTROL); + value =3D readl_relaxed(reg); + writel_relaxed(value | CIRQ_FLUSH, reg); =20 /* disable cirq */ - value =3D readl_relaxed(cirq_data->base + CIRQ_CONTROL); + value =3D readl_relaxed(reg); value &=3D ~(CIRQ_EDGE | CIRQ_EN); - writel_relaxed(value, cirq_data->base + CIRQ_CONTROL); + writel_relaxed(value, reg); } =20 static struct syscore_ops mtk_cirq_syscore_ops =3D { @@ -240,10 +273,18 @@ static void mtk_cirq_syscore_init(void) static inline void mtk_cirq_syscore_init(void) {} #endif =20 +static const struct of_device_id mtk_cirq_of_match[] =3D { + { .compatible =3D "mediatek,mt2701-cirq", .data =3D &mtk_cirq_regoffs_v1 = }, + { .compatible =3D "mediatek,mt8135-cirq", .data =3D &mtk_cirq_regoffs_v1 = }, + { .compatible =3D "mediatek,mt8173-cirq", .data =3D &mtk_cirq_regoffs_v1 = }, + { /* sentinel */ } +}; + static int __init mtk_cirq_of_init(struct device_node *node, struct device_node *parent) { struct irq_domain *domain, *domain_parent; + const struct of_device_id *match; unsigned int irq_num; int ret; =20 @@ -274,6 +315,13 @@ static int __init mtk_cirq_of_init(struct device_node = *node, if (ret) goto out_unmap; =20 + match =3D of_match_node(mtk_cirq_of_match, node); + if (!match) { + ret =3D -ENODEV; + goto out_unmap; + } + cirq_data->offsets =3D match->data; + irq_num =3D cirq_data->ext_irq_end - cirq_data->ext_irq_start + 1; domain =3D irq_domain_add_hierarchy(domain_parent, 0, irq_num, node, --=20 2.38.1