Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1600540 > unrolled thread
| Started by | Lee Jones <lee.jones@linaro.org> |
|---|---|
| First post | 2017-03-14 16:00 +0100 |
| Last post | 2017-03-15 16:30 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v3 3/3] mfd: wm831x: Add device tree binding document Lee Jones <lee.jones@linaro.org> - 2017-03-14 16:00 +0100
Re: [PATCH v3 3/3] mfd: wm831x: Add device tree binding document Charles Keepax <ckeepax@opensource.wolfsonmicro.com> - 2017-03-15 16:30 +0100
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Date | 2017-03-14 16:00 +0100 |
| Subject | Re: [PATCH v3 3/3] mfd: wm831x: Add device tree binding document |
| Message-ID | <tkW5B-1Ad-51@gated-at.bofh.it> |
On Mon, 06 Mar 2017, Charles Keepax wrote:
> Add a device tree binding document for the wm831x series of PMICs.
> Currently only support for the registering the device and the GPIOs are
> actually implemented in the driver.
>
> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
> ---
>
> Changes since v2:
> - Flesh the binding some more with some additional features of the device,
> although these are not yet implemented in the code.
>
> Documentation/devicetree/bindings/mfd/wm831x.txt | 81 ++++++++++++++++++++++++
> MAINTAINERS | 1 +
> 2 files changed, 82 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/mfd/wm831x.txt
>
> diff --git a/Documentation/devicetree/bindings/mfd/wm831x.txt b/Documentation/devicetree/bindings/mfd/wm831x.txt
> new file mode 100644
> index 0000000..680ac18
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mfd/wm831x.txt
> @@ -0,0 +1,81 @@
> +Cirrus Logic/Wolfson Microelectronics wm831x PMICs
> +
> +System PMICs with a wide range of additional features.
> +
> +Required properties:
> +
> + - compatible : One of the following chip-specific strings:
> + "wlf,wm8310"
> + "wlf,wm8311"
> + "wlf,wm8312"
> + "wlf,wm8320"
> + "wlf,wm8321"
> + "wlf,wm8325"
> + "wlf,wm8326"
> +
> + - reg : I2C slave address when connected using I2C, chip select number
> + when using SPI.
> +
> + - gpio-controller : Indicates this device is a GPIO controller.
> + - #gpio-cells : Must be 2. The first cell is the pin number and the
> + second cell is used to specify optional parameters (currently unused).
Then why not "must be 1", if the second cell is unused?
> + - interrupts : The interrupt line the /IRQ signal for the device is
> + connected to.
What's with the '/'?
> + - interrupt-parent : The parent interrupt controller.
> +
> + - interrupt-controller : wm831x devices contain interrupt controllers and
> + may provide interrupt services to other devices.
> + - #interrupt-cells: Must be 2. The first cell is the IRQ number, and the
> + second cell is the flags, encoded as the trigger masks from
> + Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
Please use the succinct "../../" format.
> +Optional sub-nodes:
> + - regulators : Contains sub-nodes for each of the regulators supplied by
> + the device. The regulators are bound using their names listed below:
> +
> + dcdc1 : DCDC1
> + dcdc2 : DCDC2
> + dcdc3 : DCDC3
> + dcdc4 : DCDC3
> + isink1 : ISINK1
> + isink2 : ISINK2
> + ldo1 : LDO1
> + ldo2 : LDO2
> + ldo3 : LDO3
> + ldo4 : LDO4
> + ldo5 : LDO5
> + ldo7 : LDO7
> + ldo11 : LDO11
> +
> + The bindings details of each regulator can be found in:
> + Documentation/devicetree/bindings/regulator/regulator.txt
As above.
> +Example:
> +
> +wm8310: pmic@36 {
> + compatible = "wlf,wm8310";
> + reg = <0x36>;
> +
> + gpio-controller;
> + #gpio-cells = <2>;
> +
> + interrupts = <347>;
> + interrupt-parent = <&gic>;
> +
> + interrupt-controller;
> + #interrupt-cells = <2>;
> +
> + regulators {
> + dcdc1: dcdc1 {
> + regulator-name = "DCDC1";
> + regulator-min-microvolt = <600000>;
> + regulator-max-microvolt = <600000>;
> + };
> + ldo1: ldo1 {
> + regulator-name = "LDO1";
> + regulator-min-microvolt = <1700000>;
> + regulator-max-microvolt = <1700000>;
> + };
> + };
> +};
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 2d8ca28..48fdc82 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -13363,6 +13363,7 @@ F: Documentation/hwmon/wm83??
> F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
> F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
> F: Documentation/devicetree/bindings/mfd/arizona.txt
> +F: Documentation/devicetree/bindings/mfd/wm831x.txt
> F: arch/arm/mach-s3c64xx/mach-crag6410*
> F: drivers/clk/clk-wm83*.c
> F: drivers/extcon/extcon-arizona.c
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
[toc] | [next] | [standalone]
| From | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> |
|---|---|
| Date | 2017-03-15 16:30 +0100 |
| Message-ID | <tlj29-11P-5@gated-at.bofh.it> |
| In reply to | #1600540 |
On Tue, Mar 14, 2017 at 02:59:35PM +0000, Lee Jones wrote: > On Mon, 06 Mar 2017, Charles Keepax wrote: > > > Add a device tree binding document for the wm831x series of PMICs. > > Currently only support for the registering the device and the GPIOs are > > actually implemented in the driver. > > > > Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> > > --- > > > > Changes since v2: > > - Flesh the binding some more with some additional features of the device, > > although these are not yet implemented in the code. > > > > Documentation/devicetree/bindings/mfd/wm831x.txt | 81 ++++++++++++++++++++++++ > > MAINTAINERS | 1 + > > 2 files changed, 82 insertions(+) > > create mode 100644 Documentation/devicetree/bindings/mfd/wm831x.txt > > > > diff --git a/Documentation/devicetree/bindings/mfd/wm831x.txt b/Documentation/devicetree/bindings/mfd/wm831x.txt > > new file mode 100644 > > index 0000000..680ac18 > > --- /dev/null > > +++ b/Documentation/devicetree/bindings/mfd/wm831x.txt > > @@ -0,0 +1,81 @@ > > +Cirrus Logic/Wolfson Microelectronics wm831x PMICs > > + > > +System PMICs with a wide range of additional features. > > + > > +Required properties: > > + > > + - compatible : One of the following chip-specific strings: > > + "wlf,wm8310" > > + "wlf,wm8311" > > + "wlf,wm8312" > > + "wlf,wm8320" > > + "wlf,wm8321" > > + "wlf,wm8325" > > + "wlf,wm8326" > > + > > + - reg : I2C slave address when connected using I2C, chip select number > > + when using SPI. > > + > > + - gpio-controller : Indicates this device is a GPIO controller. > > + - #gpio-cells : Must be 2. The first cell is the pin number and the > > + second cell is used to specify optional parameters (currently unused). > > Then why not "must be 1", if the second cell is unused? > I believe it is generally advised to use at least 2 cells for GPIOs and since there is a reasonable chance someone might add flags later seems better have it in the binding already. > > + - interrupts : The interrupt line the /IRQ signal for the device is > > + connected to. > > What's with the '/'? Active low, but will remove. > > > + - interrupt-parent : The parent interrupt controller. > > + > > + - interrupt-controller : wm831x devices contain interrupt controllers and > > + may provide interrupt services to other devices. > > + - #interrupt-cells: Must be 2. The first cell is the IRQ number, and the > > + second cell is the flags, encoded as the trigger masks from > > + Documentation/devicetree/bindings/interrupt-controller/interrupts.txt > > Please use the succinct "../../" format. Can do. Thanks, Charles
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web