Skip to content

Commit

Permalink
pinctrl: renesas: rza2: Add lock around pinctrl_generic{{add,remove}_…
Browse files Browse the repository at this point in the history
…group,{add,remove}_function}

[ Upstream commit 8fcc1c4 ]

The pinctrl group and function creation/remove calls expect
caller to take care of locking. Add lock around these functions.

Fixes: b59d0e7 ("pinctrl: Add RZ/A2 pin and gpio controller")
Signed-off-by: Biju Das <[email protected]>
Reviewed-by: Geert Uytterhoeven <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Geert Uytterhoeven <[email protected]>
Signed-off-by: Sasha Levin <[email protected]>
  • Loading branch information
bijudas authored and gregkh committed Aug 30, 2023
1 parent 197c546 commit f49cac7
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions drivers/pinctrl/pinctrl-rza2.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/gpio/driver.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/of_device.h>
#include <linux/pinctrl/pinmux.h>

Expand Down Expand Up @@ -46,6 +47,7 @@ struct rza2_pinctrl_priv {
struct pinctrl_dev *pctl;
struct pinctrl_gpio_range gpio_range;
int npins;
struct mutex mutex; /* serialize adding groups and functions */
};

#define RZA2_PDR(port) (0x0000 + (port) * 2) /* Direction 16-bit */
Expand Down Expand Up @@ -359,10 +361,14 @@ static int rza2_dt_node_to_map(struct pinctrl_dev *pctldev,
psel_val[i] = MUX_FUNC(value);
}

mutex_lock(&priv->mutex);

/* Register a single pin group listing all the pins we read from DT */
gsel = pinctrl_generic_add_group(pctldev, np->name, pins, npins, NULL);
if (gsel < 0)
return gsel;
if (gsel < 0) {
ret = gsel;
goto unlock;
}

/*
* Register a single group function where the 'data' is an array PSEL
Expand Down Expand Up @@ -391,6 +397,8 @@ static int rza2_dt_node_to_map(struct pinctrl_dev *pctldev,
(*map)->data.mux.function = np->name;
*num_maps = 1;

mutex_unlock(&priv->mutex);

return 0;

remove_function:
Expand All @@ -399,6 +407,9 @@ static int rza2_dt_node_to_map(struct pinctrl_dev *pctldev,
remove_group:
pinctrl_generic_remove_group(pctldev, gsel);

unlock:
mutex_unlock(&priv->mutex);

dev_err(priv->dev, "Unable to parse DT node %s\n", np->name);

return ret;
Expand Down Expand Up @@ -476,6 +487,8 @@ static int rza2_pinctrl_probe(struct platform_device *pdev)
if (IS_ERR(priv->base))
return PTR_ERR(priv->base);

mutex_init(&priv->mutex);

platform_set_drvdata(pdev, priv);

priv->npins = (int)(uintptr_t)of_device_get_match_data(&pdev->dev) *
Expand Down

0 comments on commit f49cac7

Please sign in to comment.