Commit d56e746f authored by Markus Mayer's avatar Markus Mayer Committed by Florian Fainelli

memory: brcmstb: dpfe: introduce is_dcpu_enabled()

In order to check whether or not the DCPU is running, we introduce
a function called is_dcpu_enabled().
Signed-off-by: default avatarMarkus Mayer <mmayer@broadcom.com>
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent 0e9b1141
...@@ -202,17 +202,26 @@ static const u32 dpfe_commands[DPFE_CMD_MAX][MSG_FIELD_MAX] = { ...@@ -202,17 +202,26 @@ static const u32 dpfe_commands[DPFE_CMD_MAX][MSG_FIELD_MAX] = {
}, },
}; };
static bool is_dcpu_enabled(void __iomem *regs)
{
u32 val;
val = readl_relaxed(regs + REG_DCPU_RESET);
return !(val & DCPU_RESET_MASK);
}
static void __disable_dcpu(void __iomem *regs) static void __disable_dcpu(void __iomem *regs)
{ {
u32 val; u32 val;
/* Check if DCPU is running */ if (!is_dcpu_enabled(regs))
return;
/* Put DCPU in reset if it's running. */
val = readl_relaxed(regs + REG_DCPU_RESET); val = readl_relaxed(regs + REG_DCPU_RESET);
if (!(val & DCPU_RESET_MASK)) { val |= (1 << DCPU_RESET_SHIFT);
/* Put DCPU in reset */ writel_relaxed(val, regs + REG_DCPU_RESET);
val |= (1 << DCPU_RESET_SHIFT);
writel_relaxed(val, regs + REG_DCPU_RESET);
}
} }
static void __enable_dcpu(void __iomem *regs) static void __enable_dcpu(void __iomem *regs)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment