Skip to content

Commit

Permalink
memory: brcmstb: dpfe: introduce is_dcpu_enabled()
Browse files Browse the repository at this point in the history
In order to check whether or not the DCPU is running, we introduce
a function called is_dcpu_enabled().

Signed-off-by: Markus Mayer <[email protected]>
Signed-off-by: Florian Fainelli <[email protected]>
  • Loading branch information
Markus Mayer authored and ffainelli committed Oct 6, 2017
1 parent 0e9b114 commit d56e746
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions drivers/memory/brcmstb_dpfe.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
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);
if (!(val & DCPU_RESET_MASK)) {
/* Put DCPU in reset */
val |= (1 << DCPU_RESET_SHIFT);
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)
Expand Down

0 comments on commit d56e746

Please sign in to comment.