Re: [PATCH] pinmux: 1 pin is not allowed to be configured for both GPIO and peripheral funtion

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



PING

On Thu, Feb 26, 2015 at 3:41 PM, Sonic Zhang <sonic.adi@xxxxxxxxx> wrote:
> From: Sonic Zhang <sonic.zhang@xxxxxxxxxx>
>
> The blackfin pinmux and gpio controller doesn't allow user to set up 1 pin
> for both GPIO and peripheral function. So, check both gpio_owner and
> mux_owner before approving the pin request.
>
> Signed-off-by: Sonic Zhang <sonic.zhang@xxxxxxxxxx>
> ---
>  drivers/pinctrl/pinmux.c |   28 ++++++++++++++--------------
>  1 file changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/pinctrl/pinmux.c b/drivers/pinctrl/pinmux.c
> index b874458..b58b97c 100644
> --- a/drivers/pinctrl/pinmux.c
> +++ b/drivers/pinctrl/pinmux.c
> @@ -99,24 +99,24 @@ static int pin_request(struct pinctrl_dev *pctldev,
>         dev_dbg(pctldev->dev, "request pin %d (%s) for %s\n",
>                 pin, desc->name, owner);
>
> +       if (desc->gpio_owner) {
> +               dev_err(pctldev->dev,
> +                       "pin %s already requested by %s; cannot claim for %s\n",
> +                       desc->name, desc->gpio_owner, owner);
> +               goto out;
> +       }
> +
> +       if (desc->mux_usecount && strcmp(desc->mux_owner, owner)) {
> +               dev_err(pctldev->dev,
> +                       "pin %s already requested by %s; cannot claim for %s\n",
> +                       desc->name, desc->mux_owner, owner);
> +               goto out;
> +       }
> +
>         if (gpio_range) {
>                 /* There's no need to support multiple GPIO requests */
> -               if (desc->gpio_owner) {
> -                       dev_err(pctldev->dev,
> -                               "pin %s already requested by %s; cannot claim for %s\n",
> -                               desc->name, desc->gpio_owner, owner);
> -                       goto out;
> -               }
> -
>                 desc->gpio_owner = owner;
>         } else {
> -               if (desc->mux_usecount && strcmp(desc->mux_owner, owner)) {
> -                       dev_err(pctldev->dev,
> -                               "pin %s already requested by %s; cannot claim for %s\n",
> -                               desc->name, desc->mux_owner, owner);
> -                       goto out;
> -               }
> -
>                 desc->mux_usecount++;
>                 if (desc->mux_usecount > 1)
>                         return 0;
> --
> 1.7.9.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux SPI]     [Linux Kernel]     [Linux ARM (vger)]     [Linux ARM MSM]     [Linux Omap]     [Linux Arm]     [Linux Tegra]     [Fedora ARM]     [Linux for Samsung SOC]     [eCos]     [Linux Fastboot]     [Gcc Help]     [Git]     [DCCP]     [IETF Announce]     [Security]     [Linux MIPS]     [Yosemite Campsites]

  Powered by Linux