From mboxrd@z Thu Jan 1 00:00:00 1970 From: Guenter Roeck Subject: Re: [PATCH v2 1/3] hwmon: Define binding for the nsa320-hwmon driver Date: Mon, 15 Feb 2016 17:48:26 -0800 Message-ID: <56C27FEA.1090806@roeck-us.net> References: <1455578705-10531-1-git-send-email-linux@baker-net.org.uk> <1455578705-10531-2-git-send-email-linux@baker-net.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1455578705-10531-2-git-send-email-linux-u8Lxuz9p/S1csCcyGdaD/Q@public.gmane.org> Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Adam Baker , Jason Cooper , Andrew Lunn , Gregory Clement , Sebastian Hesselbarth , Jean Delvare Cc: Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Russell King , devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, lm-sensors-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org, carl.wolfgang-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org List-Id: devicetree@vger.kernel.org On 02/15/2016 03:25 PM, Adam Baker wrote: > Define a binding for the hardware monitoring chip present in the Zyxel > NSA-320 and some of the other Zyxel NAS devices. > > Signed-off-by: Adam Baker Rob sent you an Ack for this patch. Since you did not change the patch since v1, I would expect to see it here (instead of having to look it up). Thanks, Guenter > --- > .../devicetree/bindings/hwmon/nsa320-mcu.txt | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > create mode 100644 Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt > > diff --git a/Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt b/Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt > new file mode 100644 > index 0000000..7b346d4 > --- /dev/null > +++ b/Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt > @@ -0,0 +1,21 @@ > +Bindings for the fan / temperature monitor microcontroller used on > +the Zyxel NSA 320 and several subsequent models. > + > +Required properties: > +- compatible : "zyxel,nsa320-mcu" > +- data-gpios : The GPIO pin connected to the data line on the MCU > +- clk-gpios : The GPIO pin connected to the clock line on the MCU > +- act-gpios : The GPIO pin connected to the active line on the MCU > + > +Example: > + > + hwmon { > + compatible = "zyxel,nsa320-mcu"; > + pinctrl-0 = <&pmx_mcu_data &pmx_mcu_clk &pmx_mcu_act>; > + pinctrl-names = "default"; > + > + data-gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>; > + clk-gpios = <&gpio0 16 GPIO_ACTIVE_HIGH>; > + act-gpios = <&gpio0 17 GPIO_ACTIVE_LOW>; > + }; > + > -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: linux@roeck-us.net (Guenter Roeck) Date: Mon, 15 Feb 2016 17:48:26 -0800 Subject: [PATCH v2 1/3] hwmon: Define binding for the nsa320-hwmon driver In-Reply-To: <1455578705-10531-2-git-send-email-linux@baker-net.org.uk> References: <1455578705-10531-1-git-send-email-linux@baker-net.org.uk> <1455578705-10531-2-git-send-email-linux@baker-net.org.uk> Message-ID: <56C27FEA.1090806@roeck-us.net> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 02/15/2016 03:25 PM, Adam Baker wrote: > Define a binding for the hardware monitoring chip present in the Zyxel > NSA-320 and some of the other Zyxel NAS devices. > > Signed-off-by: Adam Baker Rob sent you an Ack for this patch. Since you did not change the patch since v1, I would expect to see it here (instead of having to look it up). Thanks, Guenter > --- > .../devicetree/bindings/hwmon/nsa320-mcu.txt | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > create mode 100644 Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt > > diff --git a/Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt b/Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt > new file mode 100644 > index 0000000..7b346d4 > --- /dev/null > +++ b/Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt > @@ -0,0 +1,21 @@ > +Bindings for the fan / temperature monitor microcontroller used on > +the Zyxel NSA 320 and several subsequent models. > + > +Required properties: > +- compatible : "zyxel,nsa320-mcu" > +- data-gpios : The GPIO pin connected to the data line on the MCU > +- clk-gpios : The GPIO pin connected to the clock line on the MCU > +- act-gpios : The GPIO pin connected to the active line on the MCU > + > +Example: > + > + hwmon { > + compatible = "zyxel,nsa320-mcu"; > + pinctrl-0 = <&pmx_mcu_data &pmx_mcu_clk &pmx_mcu_act>; > + pinctrl-names = "default"; > + > + data-gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>; > + clk-gpios = <&gpio0 16 GPIO_ACTIVE_HIGH>; > + act-gpios = <&gpio0 17 GPIO_ACTIVE_LOW>; > + }; > + >