From: Ezequiel Garcia <ezequiel.garcia@imgtec.com>
To: Andrew Bresticker <abrestic@chromium.org>,
Linus Walleij <linus.walleij@linaro.org>,
Alexandre Courbot <gnurou@gmail.com>,
"Ralf Baechle" <ralf@linux-mips.org>
Cc: <devicetree@vger.kernel.org>, <linux-gpio@vger.kernel.org>,
<linux-mips@linux-mips.org>, <linux-kernel@vger.kernel.org>,
James Hartley <james.hartley@imgtec.com>,
James Hogan <james.hogan@imgtec.com>,
"Damien Horsley" <Damien.Horsley@imgtec.com>,
Govindraj Raja <govindraj.raja@imgtec.com>,
Kevin Cernekee <cernekee@chromium.org>,
"Paul Bolle" <pebolle@tiscali.nl>
Subject: Re: [PATCH V3 2/2] pinctrl: Add Pistachio SoC pin control driver
Date: Tue, 28 Apr 2015 19:40:53 -0300 [thread overview]
Message-ID: <55400C75.9070609@imgtec.com> (raw)
In-Reply-To: <1428435862-14354-3-git-send-email-abrestic@chromium.org>
Just a silly comment.
On 04/07/2015 04:44 PM, Andrew Bresticker wrote:
[..]
> +
> +static const struct pinmux_ops pistachio_pinmux_ops = {
> + .get_functions_count = pistachio_pinmux_get_functions_count,
> + .get_function_name = pistachio_pinmux_get_function_name,
> + .get_function_groups = pistachio_pinmux_get_function_groups,
> + .set_mux = pistachio_pinmux_enable,
> +};
> +
> +static int pistachio_pinconf_get(struct pinctrl_dev *pctldev, unsigned pin,
> + unsigned long *config)
> +{
> + struct pistachio_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
> + enum pin_config_param param = pinconf_to_config_param(*config);
> + u32 val, arg;
> +
> + switch (param) {
> + case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
> + val = pctl_readl(pctl, PADS_SCHMITT_EN_REG(pin));
> + arg = !!(val & PADS_SCHMITT_EN_BIT(pin));
> + break;
> + case PIN_CONFIG_BIAS_HIGH_IMPEDANCE:
> + val = pctl_readl(pctl, PADS_PU_PD_REG(pin)) >>
> + PADS_PU_PD_SHIFT(pin);
> + arg = (val & PADS_PU_PD_MASK) == PADS_PU_PD_HIGHZ;
> + break;
> + case PIN_CONFIG_BIAS_PULL_UP:
> + val = pctl_readl(pctl, PADS_PU_PD_REG(pin)) >>
> + PADS_PU_PD_SHIFT(pin);
> + arg = (val & PADS_PU_PD_MASK) == PADS_PU_PD_UP;
> + break;
> + case PIN_CONFIG_BIAS_PULL_DOWN:
> + val = pctl_readl(pctl, PADS_PU_PD_REG(pin)) >>
> + PADS_PU_PD_SHIFT(pin);
> + arg = (val & PADS_PU_PD_MASK) == PADS_PU_PD_DOWN;
> + break;
> + case PIN_CONFIG_BIAS_BUS_HOLD:
> + val = pctl_readl(pctl, PADS_PU_PD_REG(pin)) >>
> + PADS_PU_PD_SHIFT(pin);
> + arg = (val & PADS_PU_PD_MASK) == PADS_PU_PD_BUS;
> + break;
> + case PIN_CONFIG_SLEW_RATE:
> + val = pctl_readl(pctl, PADS_SLEW_RATE_REG(pin));
> + arg = !!(val & PADS_SLEW_RATE_BIT(pin));
> + break;
> + case PIN_CONFIG_DRIVE_STRENGTH:
> + val = pctl_readl(pctl, PADS_DRIVE_STRENGTH_REG(pin)) >>
> + PADS_DRIVE_STRENGTH_SHIFT(pin);
> + switch (val & PADS_DRIVE_STRENGTH_MASK) {
> + case PADS_DRIVE_STRENGTH_2MA:
> + arg = 2;
> + break;
> + case PADS_DRIVE_STRENGTH_4MA:
> + arg = 4;
> + break;
> + case PADS_DRIVE_STRENGTH_8MA:
> + arg = 8;
> + break;
> + case PADS_DRIVE_STRENGTH_12MA:
> + default:
> + arg = 12;
> + break;
> + }
> + break;
> + default:
> + dev_err(pctl->dev, "Property %u not supported\n", param);
Probably just a nitpick, but maybe this should be dev_dbg. Otherwise,
we'll get a ton of these errors when cat'ing pinconf-pins in debugfs.
> + return -EINVAL;
And this should be -ENOTSUPP. I guess it doesn't matter much.
--
Ezequiel
next prev parent reply other threads:[~2015-04-28 22:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-07 19:44 [PATCH V3 0/2] pinctrl: Support for IMG Pistachio Andrew Bresticker
2015-04-07 19:44 ` [PATCH V3 1/2] pinctrl: Add Pistachio SoC pin control binding document Andrew Bresticker
2015-04-07 19:44 ` [PATCH V3 2/2] pinctrl: Add Pistachio SoC pin control driver Andrew Bresticker
2015-04-17 5:27 ` Ezequiel Garcia
2015-04-17 16:39 ` Andrew Bresticker
2015-04-28 22:40 ` Ezequiel Garcia [this message]
2015-04-28 22:56 ` Andrew Bresticker
2015-04-28 23:24 ` Ezequiel Garcia
2015-04-29 0:49 ` Andrew Bresticker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55400C75.9070609@imgtec.com \
--to=ezequiel.garcia@imgtec.com \
--cc=Damien.Horsley@imgtec.com \
--cc=abrestic@chromium.org \
--cc=cernekee@chromium.org \
--cc=devicetree@vger.kernel.org \
--cc=gnurou@gmail.com \
--cc=govindraj.raja@imgtec.com \
--cc=james.hartley@imgtec.com \
--cc=james.hogan@imgtec.com \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=pebolle@tiscali.nl \
--cc=ralf@linux-mips.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox