Commit a4ea6a0f authored by Geert Uytterhoeven's avatar Geert Uytterhoeven

clk: renesas: cpg-mssr: Rename cpg_mssr_priv.mstp_lock

The spinlock is used to protect Read-Modify-Write register accesses,
which won't be limited to SMSTPCR register accesses.
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Acked-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 67c995b5
...@@ -98,7 +98,7 @@ static const u16 srcr[] = { ...@@ -98,7 +98,7 @@ static const u16 srcr[] = {
* *
* @dev: CPG/MSSR device * @dev: CPG/MSSR device
* @base: CPG/MSSR register block base address * @base: CPG/MSSR register block base address
* @mstp_lock: protects writes to SMSTPCR * @rmw_lock: protects RMW register accesses
* @clks: Array containing all Core and Module Clocks * @clks: Array containing all Core and Module Clocks
* @num_core_clks: Number of Core Clocks in clks[] * @num_core_clks: Number of Core Clocks in clks[]
* @num_mod_clks: Number of Module Clocks in clks[] * @num_mod_clks: Number of Module Clocks in clks[]
...@@ -107,7 +107,7 @@ static const u16 srcr[] = { ...@@ -107,7 +107,7 @@ static const u16 srcr[] = {
struct cpg_mssr_priv { struct cpg_mssr_priv {
struct device *dev; struct device *dev;
void __iomem *base; void __iomem *base;
spinlock_t mstp_lock; spinlock_t rmw_lock;
struct clk **clks; struct clk **clks;
unsigned int num_core_clks; unsigned int num_core_clks;
...@@ -144,7 +144,7 @@ static int cpg_mstp_clock_endisable(struct clk_hw *hw, bool enable) ...@@ -144,7 +144,7 @@ static int cpg_mstp_clock_endisable(struct clk_hw *hw, bool enable)
dev_dbg(dev, "MSTP %u%02u/%pC %s\n", reg, bit, hw->clk, dev_dbg(dev, "MSTP %u%02u/%pC %s\n", reg, bit, hw->clk,
enable ? "ON" : "OFF"); enable ? "ON" : "OFF");
spin_lock_irqsave(&priv->mstp_lock, flags); spin_lock_irqsave(&priv->rmw_lock, flags);
value = readl(priv->base + SMSTPCR(reg)); value = readl(priv->base + SMSTPCR(reg));
if (enable) if (enable)
...@@ -153,7 +153,7 @@ static int cpg_mstp_clock_endisable(struct clk_hw *hw, bool enable) ...@@ -153,7 +153,7 @@ static int cpg_mstp_clock_endisable(struct clk_hw *hw, bool enable)
value |= bitmask; value |= bitmask;
writel(value, priv->base + SMSTPCR(reg)); writel(value, priv->base + SMSTPCR(reg));
spin_unlock_irqrestore(&priv->mstp_lock, flags); spin_unlock_irqrestore(&priv->rmw_lock, flags);
if (!enable) if (!enable)
return 0; return 0;
...@@ -550,7 +550,7 @@ static int __init cpg_mssr_probe(struct platform_device *pdev) ...@@ -550,7 +550,7 @@ static int __init cpg_mssr_probe(struct platform_device *pdev)
return -ENOMEM; return -ENOMEM;
priv->dev = dev; priv->dev = dev;
spin_lock_init(&priv->mstp_lock); spin_lock_init(&priv->rmw_lock);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
priv->base = devm_ioremap_resource(dev, res); priv->base = devm_ioremap_resource(dev, res);
......
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