]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
memory: tegra30-mc: Fix IRQ handler.
authorTuomas Tynkkynen <ttynkkynen@nvidia.com>
Tue, 11 Jun 2013 10:11:19 +0000 (13:11 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Jun 2013 23:46:06 +0000 (16:46 -0700)
In Tegra30 any memory controller interrupt would cause an infinite loop in the
IRQ handler. Additionally, a garbage pointer was used to read the MC
status registers, which causes wrong values to be printed if a MC error
occurred.

Signed-off-by: Tuomas Tynkkynen <ttynkkynen@nvidia.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Thierry Reding <thierry.reding@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/memory/tegra30-mc.c

index f4ae074badc37e5187d2a172b30e8e0c4112be90..58d2979b4035653543aaf6f2ec5d80cb01662991 100644 (file)
@@ -218,7 +218,7 @@ static void tegra30_mc_decode(struct tegra30_mc *mc, int n)
                return;
        }
 
-       err = readl(mc + MC_ERR_STATUS);
+       err = mc_readl(mc, MC_ERR_STATUS);
 
        type = (err & MC_ERR_TYPE_MASK) >> MC_ERR_TYPE_SHIFT;
        perm = (err & MC_ERR_INVALID_SMMU_PAGE_MASK) >>
@@ -235,7 +235,7 @@ static void tegra30_mc_decode(struct tegra30_mc *mc, int n)
        if (cid < ARRAY_SIZE(tegra30_mc_client))
                client = tegra30_mc_client[cid];
 
-       addr = readl(mc + MC_ERR_ADR);
+       addr = mc_readl(mc, MC_ERR_ADR);
 
        dev_err_ratelimited(mc->dev, "%s (0x%08x): 0x%08x %s (%s %s %s %s)\n",
                           mc_int_err[idx], err, addr, client,
@@ -313,8 +313,11 @@ static irqreturn_t tegra30_mc_isr(int irq, void *data)
        mask &= stat;
        if (!mask)
                return IRQ_NONE;
-       while ((bit = ffs(mask)) != 0)
+       while ((bit = ffs(mask)) != 0) {
                tegra30_mc_decode(mc, bit - 1);
+               mask &= ~BIT(bit - 1);
+       }
+
        mc_writel(mc, stat, MC_INTSTATUS);
        return IRQ_HANDLED;
 }