* [PATCH] HID: i2c-hid: Add vddl regulator control
@ 2018-05-31 20:42 Stephen Boyd
2018-05-31 22:03 ` Dmitry Torokhov
2018-06-12 20:09 ` Rob Herring
0 siblings, 2 replies; 4+ messages in thread
From: Stephen Boyd @ 2018-05-31 20:42 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-input, Benjamin Tissoires, Hans de Goede, Andy Shevchenko,
Dmitry Torokhov, Doug Anderson, devicetree
Some wacom w9013 devices have a vddl supply for "low voltage"
requirements. Add support in this driver to turn on this low voltage
supply.
Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Dmitry Torokhov <dtor@chromium.org>
Cc: Doug Anderson <dianders@chromium.org>
Cc: <devicetree@vger.kernel.org>
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
---
.../bindings/input/hid-over-i2c.txt | 3 ++-
drivers/hid/i2c-hid/i2c-hid.c | 19 +++++++++++++++++++
include/linux/platform_data/i2c-hid.h | 2 ++
3 files changed, 23 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/input/hid-over-i2c.txt b/Documentation/devicetree/bindings/input/hid-over-i2c.txt
index 4d3da9d91de4..89e6ab89ba38 100644
--- a/Documentation/devicetree/bindings/input/hid-over-i2c.txt
+++ b/Documentation/devicetree/bindings/input/hid-over-i2c.txt
@@ -26,7 +26,8 @@ device-specific compatible properties, which should be used in addition to the
- compatible:
* "wacom,w9013" (Wacom W9013 digitizer). Supports:
- - vdd-supply
+ - vdd-supply (3.3V)
+ - vddl-supply (1.8V)
- post-power-on-delay-ms
- vdd-supply: phandle of the regulator that provides the supply voltage.
diff --git a/drivers/hid/i2c-hid/i2c-hid.c b/drivers/hid/i2c-hid/i2c-hid.c
index 6e803f361249..b6f02f98fec6 100644
--- a/drivers/hid/i2c-hid/i2c-hid.c
+++ b/drivers/hid/i2c-hid/i2c-hid.c
@@ -1032,12 +1032,29 @@ static int i2c_hid_probe(struct i2c_client *client,
goto err;
}
+ ihid->pdata.supply_l = devm_regulator_get(&client->dev, "vddl");
+ if (IS_ERR(ihid->pdata.supply_l)) {
+ ret = PTR_ERR(ihid->pdata.supply_l);
+ if (ret != -EPROBE_DEFER)
+ dev_err(&client->dev, "Failed to get regulator: %d\n",
+ ret);
+ goto err;
+ }
+
ret = regulator_enable(ihid->pdata.supply);
if (ret < 0) {
dev_err(&client->dev, "Failed to enable regulator: %d\n",
ret);
goto err;
}
+
+ ret = regulator_enable(ihid->pdata.supply_l);
+ if (ret < 0) {
+ dev_err(&client->dev, "Failed to enable low regulator: %d\n",
+ ret);
+ goto err_regulator_l;
+ }
+
if (ihid->pdata.post_power_delay_ms)
msleep(ihid->pdata.post_power_delay_ms);
@@ -1124,6 +1141,8 @@ static int i2c_hid_probe(struct i2c_client *client,
pm_runtime_disable(&client->dev);
err_regulator:
+ regulator_disable(ihid->pdata.supply_l);
+err_regulator_l:
regulator_disable(ihid->pdata.supply);
err:
diff --git a/include/linux/platform_data/i2c-hid.h b/include/linux/platform_data/i2c-hid.h
index 1fb088239d12..1e4612751adf 100644
--- a/include/linux/platform_data/i2c-hid.h
+++ b/include/linux/platform_data/i2c-hid.h
@@ -20,6 +20,7 @@ struct regulator;
* struct i2chid_platform_data - used by hid over i2c implementation.
* @hid_descriptor_address: i2c register where the HID descriptor is stored.
* @supply: regulator for powering on the device.
+ * @supply_l: regulator for powering on the low voltage supply for device.
* @post_power_delay_ms: delay after powering on before device is usable.
*
* Note that it is the responsibility of the platform driver (or the acpi 5.0
@@ -36,6 +37,7 @@ struct regulator;
struct i2c_hid_platform_data {
u16 hid_descriptor_address;
struct regulator *supply;
+ struct regulator *supply_l;
int post_power_delay_ms;
};
--
Sent by a computer through tubes
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] HID: i2c-hid: Add vddl regulator control
2018-05-31 20:42 [PATCH] HID: i2c-hid: Add vddl regulator control Stephen Boyd
@ 2018-05-31 22:03 ` Dmitry Torokhov
2018-06-11 17:02 ` Stephen Boyd
2018-06-12 20:09 ` Rob Herring
1 sibling, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2018-05-31 22:03 UTC (permalink / raw)
To: Stephen Boyd
Cc: Jiri Kosina, open list:HID CORE LAYER, Benjamin Tissoires,
Hans de Goede, Andy Shevchenko, Doug Anderson, devicetree
On Thu, May 31, 2018 at 1:42 PM, Stephen Boyd <swboyd@chromium.org> wrote:
> Some wacom w9013 devices have a vddl supply for "low voltage"
> requirements. Add support in this driver to turn on this low voltage
> supply.
>
> Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> Cc: Hans de Goede <hdegoede@redhat.com>
> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Cc: Dmitry Torokhov <dtor@chromium.org>
> Cc: Doug Anderson <dianders@chromium.org>
> Cc: <devicetree@vger.kernel.org>
> Signed-off-by: Stephen Boyd <swboyd@chromium.org>
> ---
> .../bindings/input/hid-over-i2c.txt | 3 ++-
> drivers/hid/i2c-hid/i2c-hid.c | 19 +++++++++++++++++++
> include/linux/platform_data/i2c-hid.h | 2 ++
> 3 files changed, 23 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/input/hid-over-i2c.txt b/Documentation/devicetree/bindings/input/hid-over-i2c.txt
> index 4d3da9d91de4..89e6ab89ba38 100644
> --- a/Documentation/devicetree/bindings/input/hid-over-i2c.txt
> +++ b/Documentation/devicetree/bindings/input/hid-over-i2c.txt
> @@ -26,7 +26,8 @@ device-specific compatible properties, which should be used in addition to the
>
> - compatible:
> * "wacom,w9013" (Wacom W9013 digitizer). Supports:
> - - vdd-supply
> + - vdd-supply (3.3V)
> + - vddl-supply (1.8V)
> - post-power-on-delay-ms
>
> - vdd-supply: phandle of the regulator that provides the supply voltage.
> diff --git a/drivers/hid/i2c-hid/i2c-hid.c b/drivers/hid/i2c-hid/i2c-hid.c
> index 6e803f361249..b6f02f98fec6 100644
> --- a/drivers/hid/i2c-hid/i2c-hid.c
> +++ b/drivers/hid/i2c-hid/i2c-hid.c
> @@ -1032,12 +1032,29 @@ static int i2c_hid_probe(struct i2c_client *client,
> goto err;
> }
>
> + ihid->pdata.supply_l = devm_regulator_get(&client->dev, "vddl");
> + if (IS_ERR(ihid->pdata.supply_l)) {
> + ret = PTR_ERR(ihid->pdata.supply_l);
> + if (ret != -EPROBE_DEFER)
> + dev_err(&client->dev, "Failed to get regulator: %d\n",
> + ret);
> + goto err;
> + }
> +
> ret = regulator_enable(ihid->pdata.supply);
> if (ret < 0) {
> dev_err(&client->dev, "Failed to enable regulator: %d\n",
> ret);
> goto err;
> }
> +
> + ret = regulator_enable(ihid->pdata.supply_l);
> + if (ret < 0) {
> + dev_err(&client->dev, "Failed to enable low regulator: %d\n",
> + ret);
> + goto err_regulator_l;
> + }
> +
Since there don't seem to be any timing constraints between powering
various supplies, maybe use bulk regulator API?
> if (ihid->pdata.post_power_delay_ms)
> msleep(ihid->pdata.post_power_delay_ms);
>
> @@ -1124,6 +1141,8 @@ static int i2c_hid_probe(struct i2c_client *client,
> pm_runtime_disable(&client->dev);
>
> err_regulator:
> + regulator_disable(ihid->pdata.supply_l);
> +err_regulator_l:
> regulator_disable(ihid->pdata.supply);
>
> err:
> diff --git a/include/linux/platform_data/i2c-hid.h b/include/linux/platform_data/i2c-hid.h
> index 1fb088239d12..1e4612751adf 100644
> --- a/include/linux/platform_data/i2c-hid.h
> +++ b/include/linux/platform_data/i2c-hid.h
> @@ -20,6 +20,7 @@ struct regulator;
> * struct i2chid_platform_data - used by hid over i2c implementation.
> * @hid_descriptor_address: i2c register where the HID descriptor is stored.
> * @supply: regulator for powering on the device.
> + * @supply_l: regulator for powering on the low voltage supply for device.
> * @post_power_delay_ms: delay after powering on before device is usable.
> *
> * Note that it is the responsibility of the platform driver (or the acpi 5.0
> @@ -36,6 +37,7 @@ struct regulator;
> struct i2c_hid_platform_data {
> u16 hid_descriptor_address;
> struct regulator *supply;
> + struct regulator *supply_l;
> int post_power_delay_ms;
> };
>
> --
> Sent by a computer through tubes
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] HID: i2c-hid: Add vddl regulator control
2018-05-31 22:03 ` Dmitry Torokhov
@ 2018-06-11 17:02 ` Stephen Boyd
0 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2018-06-11 17:02 UTC (permalink / raw)
To: Dmitry Torokhov
Cc: Jiri Kosina, open list:HID CORE LAYER, Benjamin Tissoires,
Hans de Goede, Andy Shevchenko, Doug Anderson, devicetree
Quoting Dmitry Torokhov (2018-05-31 15:03:36)
> On Thu, May 31, 2018 at 1:42 PM, Stephen Boyd <swboyd@chromium.org> wrote:
> > Some wacom w9013 devices have a vddl supply for "low voltage"
> > requirements. Add support in this driver to turn on this low voltage
> > supply.
> >
> > Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> > Cc: Hans de Goede <hdegoede@redhat.com>
> > Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > Cc: Dmitry Torokhov <dtor@chromium.org>
> > Cc: Doug Anderson <dianders@chromium.org>
> > Cc: <devicetree@vger.kernel.org>
> > Signed-off-by: Stephen Boyd <swboyd@chromium.org>
> > ---
> > .../bindings/input/hid-over-i2c.txt | 3 ++-
> > drivers/hid/i2c-hid/i2c-hid.c | 19 +++++++++++++++++++
> > include/linux/platform_data/i2c-hid.h | 2 ++
> > 3 files changed, 23 insertions(+), 1 deletion(-)
> >
> > diff --git a/Documentation/devicetree/bindings/input/hid-over-i2c.txt b/Documentation/devicetree/bindings/input/hid-over-i2c.txt
> > index 4d3da9d91de4..89e6ab89ba38 100644
> > --- a/Documentation/devicetree/bindings/input/hid-over-i2c.txt
> > +++ b/Documentation/devicetree/bindings/input/hid-over-i2c.txt
> > @@ -26,7 +26,8 @@ device-specific compatible properties, which should be used in addition to the
> >
> > - compatible:
> > * "wacom,w9013" (Wacom W9013 digitizer). Supports:
> > - - vdd-supply
> > + - vdd-supply (3.3V)
> > + - vddl-supply (1.8V)
> > - post-power-on-delay-ms
> >
> > - vdd-supply: phandle of the regulator that provides the supply voltage.
> > diff --git a/drivers/hid/i2c-hid/i2c-hid.c b/drivers/hid/i2c-hid/i2c-hid.c
> > index 6e803f361249..b6f02f98fec6 100644
> > --- a/drivers/hid/i2c-hid/i2c-hid.c
> > +++ b/drivers/hid/i2c-hid/i2c-hid.c
> > @@ -1032,12 +1032,29 @@ static int i2c_hid_probe(struct i2c_client *client,
> > goto err;
> > }
> >
> > + ihid->pdata.supply_l = devm_regulator_get(&client->dev, "vddl");
> > + if (IS_ERR(ihid->pdata.supply_l)) {
> > + ret = PTR_ERR(ihid->pdata.supply_l);
> > + if (ret != -EPROBE_DEFER)
> > + dev_err(&client->dev, "Failed to get regulator: %d\n",
> > + ret);
> > + goto err;
> > + }
> > +
> > ret = regulator_enable(ihid->pdata.supply);
> > if (ret < 0) {
> > dev_err(&client->dev, "Failed to enable regulator: %d\n",
> > ret);
> > goto err;
> > }
> > +
> > + ret = regulator_enable(ihid->pdata.supply_l);
> > + if (ret < 0) {
> > + dev_err(&client->dev, "Failed to enable low regulator: %d\n",
> > + ret);
> > + goto err_regulator_l;
> > + }
> > +
>
> Since there don't seem to be any timing constraints between powering
> various supplies, maybe use bulk regulator API?
>
Sure. I left it as is because this driver uses a platform data structure
and converting that to a bulk regulator looked more invasive. I'll
attempt to change it to bulk APIs.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] HID: i2c-hid: Add vddl regulator control
2018-05-31 20:42 [PATCH] HID: i2c-hid: Add vddl regulator control Stephen Boyd
2018-05-31 22:03 ` Dmitry Torokhov
@ 2018-06-12 20:09 ` Rob Herring
1 sibling, 0 replies; 4+ messages in thread
From: Rob Herring @ 2018-06-12 20:09 UTC (permalink / raw)
To: Stephen Boyd
Cc: Jiri Kosina, linux-input, Benjamin Tissoires, Hans de Goede,
Andy Shevchenko, Dmitry Torokhov, Doug Anderson, devicetree
On Thu, May 31, 2018 at 01:42:50PM -0700, Stephen Boyd wrote:
> Some wacom w9013 devices have a vddl supply for "low voltage"
> requirements. Add support in this driver to turn on this low voltage
> supply.
>
> Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> Cc: Hans de Goede <hdegoede@redhat.com>
> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Cc: Dmitry Torokhov <dtor@chromium.org>
> Cc: Doug Anderson <dianders@chromium.org>
> Cc: <devicetree@vger.kernel.org>
> Signed-off-by: Stephen Boyd <swboyd@chromium.org>
> ---
> .../bindings/input/hid-over-i2c.txt | 3 ++-
Acked-by: Rob Herring <robh@kernel.org>
> drivers/hid/i2c-hid/i2c-hid.c | 19 +++++++++++++++++++
> include/linux/platform_data/i2c-hid.h | 2 ++
> 3 files changed, 23 insertions(+), 1 deletion(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-06-12 20:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-31 20:42 [PATCH] HID: i2c-hid: Add vddl regulator control Stephen Boyd
2018-05-31 22:03 ` Dmitry Torokhov
2018-06-11 17:02 ` Stephen Boyd
2018-06-12 20:09 ` Rob Herring
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox