Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d801243 authored by Adam Baker's avatar Adam Baker Committed by Guenter Roeck
Browse files

hwmon: Define binding for the nsa320-hwmon driver



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: default avatarAdam Baker <linux@baker-net.org.uk>
Acked-by: default avatarRob Herring <robh@kernel.org>
[groeck: Fixed whitespace error]
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 709066ac
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
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>;
	};