]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
mfd: intel_soc_pmic_bxtwc: Use IRQ domain for TMU device
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Sat, 5 Oct 2024 19:27:05 +0000 (22:27 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 14 Dec 2024 18:51:01 +0000 (19:51 +0100)
[ Upstream commit 9b79d59e6b2b515eb9a22bc469ef7b8f0904fc73 ]

While design wise the idea of converting the driver to use
the hierarchy of the IRQ chips is correct, the implementation
has (inherited) flaws. This was unveiled when platform_get_irq()
had started WARN() on IRQ 0 that is supposed to be a Linux
IRQ number (also known as vIRQ).

Rework the driver to respect IRQ domain when creating each MFD
device separately, as the domain is not the same for all of them.

Fixes: 957ae5098185 ("platform/x86: Add Whiskey Cove PMIC TMU support")
Fixes: 57129044f504 ("mfd: intel_soc_pmic_bxtwc: Use chained IRQs for second level IRQ chips")
Reported-by: Zhang Ning <zhangn1985@outlook.com>
Closes: https://lore.kernel.org/r/TY2PR01MB3322FEDCDC048B7D3794F922CDBA2@TY2PR01MB3322.jpnprd01.prod.outlook.com
Tested-by: Zhang Ning <zhangn1985@outlook.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20241005193029.1929139-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/mfd/intel_soc_pmic_bxtwc.c
drivers/platform/x86/intel/bxtwc_tmu.c

index d2c13ef4bf33f9c40dc245742f0068a092ad2b38..4c5a8ae7b67625566903aeffa8579f34ced3bc6f 100644 (file)
@@ -245,12 +245,6 @@ static struct mfd_cell bxt_wc_dev[] = {
                .num_resources = ARRAY_SIZE(bcu_resources),
                .resources = bcu_resources,
        },
-       {
-               .name = "bxt_wcove_tmu",
-               .num_resources = ARRAY_SIZE(tmu_resources),
-               .resources = tmu_resources,
-       },
-
        {
                .name = "bxt_wcove_gpio",
                .num_resources = ARRAY_SIZE(gpio_resources),
@@ -261,6 +255,14 @@ static struct mfd_cell bxt_wc_dev[] = {
        },
 };
 
+static const struct mfd_cell bxt_wc_tmu_dev[] = {
+       {
+               .name = "bxt_wcove_tmu",
+               .num_resources = ARRAY_SIZE(tmu_resources),
+               .resources = tmu_resources,
+       },
+};
+
 static struct mfd_cell bxt_wc_chgr_dev[] = {
        {
                .name = "bxt_wcove_usbc",
@@ -485,6 +487,15 @@ static int bxtwc_probe(struct platform_device *pdev)
        if (ret)
                return dev_err_probe(dev, ret, "Failed to add IRQ chip\n");
 
+       ret = bxtwc_add_chained_devices(pmic, bxt_wc_tmu_dev, ARRAY_SIZE(bxt_wc_tmu_dev),
+                                       pmic->irq_chip_data,
+                                       BXTWC_TMU_LVL1_IRQ,
+                                       IRQF_ONESHOT,
+                                       &bxtwc_regmap_irq_chip_tmu,
+                                       &pmic->irq_chip_data_tmu);
+       if (ret)
+               return ret;
+
        ret = bxtwc_add_chained_irq_chip(pmic, pmic->irq_chip_data,
                                         BXTWC_PWRBTN_LVL1_IRQ,
                                         IRQF_ONESHOT,
@@ -493,14 +504,6 @@ static int bxtwc_probe(struct platform_device *pdev)
        if (ret)
                return dev_err_probe(dev, ret, "Failed to add PWRBTN IRQ chip\n");
 
-       ret = bxtwc_add_chained_irq_chip(pmic, pmic->irq_chip_data,
-                                        BXTWC_TMU_LVL1_IRQ,
-                                        IRQF_ONESHOT,
-                                        &bxtwc_regmap_irq_chip_tmu,
-                                        &pmic->irq_chip_data_tmu);
-       if (ret)
-               return dev_err_probe(dev, ret, "Failed to add TMU IRQ chip\n");
-
        /* Add chained IRQ handler for BCU IRQs */
        ret = bxtwc_add_chained_irq_chip(pmic, pmic->irq_chip_data,
                                         BXTWC_BCU_LVL1_IRQ,
index 7ccf583649e6beb8d0386d34305b1268b6c9843d..3c9778366d93033a78bfa1e6b0f39b8b1f9de2cb 100644 (file)
@@ -48,9 +48,8 @@ static irqreturn_t bxt_wcove_tmu_irq_handler(int irq, void *data)
 static int bxt_wcove_tmu_probe(struct platform_device *pdev)
 {
        struct intel_soc_pmic *pmic = dev_get_drvdata(pdev->dev.parent);
-       struct regmap_irq_chip_data *regmap_irq_chip;
        struct wcove_tmu *wctmu;
-       int ret, virq, irq;
+       int ret;
 
        wctmu = devm_kzalloc(&pdev->dev, sizeof(*wctmu), GFP_KERNEL);
        if (!wctmu)
@@ -59,27 +58,18 @@ static int bxt_wcove_tmu_probe(struct platform_device *pdev)
        wctmu->dev = &pdev->dev;
        wctmu->regmap = pmic->regmap;
 
-       irq = platform_get_irq(pdev, 0);
-       if (irq < 0)
-               return irq;
+       wctmu->irq = platform_get_irq(pdev, 0);
+       if (wctmu->irq < 0)
+               return wctmu->irq;
 
-       regmap_irq_chip = pmic->irq_chip_data_tmu;
-       virq = regmap_irq_get_virq(regmap_irq_chip, irq);
-       if (virq < 0) {
-               dev_err(&pdev->dev,
-                       "failed to get virtual interrupt=%d\n", irq);
-               return virq;
-       }
-
-       ret = devm_request_threaded_irq(&pdev->dev, virq,
+       ret = devm_request_threaded_irq(&pdev->dev, wctmu->irq,
                                        NULL, bxt_wcove_tmu_irq_handler,
                                        IRQF_ONESHOT, "bxt_wcove_tmu", wctmu);
        if (ret) {
                dev_err(&pdev->dev, "request irq failed: %d,virq: %d\n",
-                                                       ret, virq);
+                       ret, wctmu->irq);
                return ret;
        }
-       wctmu->irq = virq;
 
        /* Unmask TMU second level Wake & System alarm */
        regmap_update_bits(wctmu->regmap, BXTWC_MTMUIRQ_REG,