From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752957AbbIFWC6 (ORCPT ); Sun, 6 Sep 2015 18:02:58 -0400 Received: from gproxy10-pub.mail.unifiedlayer.com ([69.89.20.226]:57180 "HELO gproxy10-pub.mail.unifiedlayer.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752649AbbIFWCq (ORCPT ); Sun, 6 Sep 2015 18:02:46 -0400 X-Authority-Analysis: v=2.1 cv=C6F6l2/+ c=1 sm=1 tr=0 a=J7Q474dc+DFtUK1fo70nSg==:117 a=J7Q474dc+DFtUK1fo70nSg==:17 a=cNaOj0WVAAAA:8 a=f5113yIGAAAA:8 a=dSbym95GAAAA:8 a=YvBuOYWDVJoA:10 a=heSzzRBCdDkA:10 a=ff-B7xzCdYMA:10 a=-parXFROmEwcZXUYZrMA:9 From: Constantine Shulyupin To: Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Constantine Shulyupin , devicetree@vger.kernel.org (open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS), linux-kernel@vger.kernel.org (open list) Cc: Guenter Roeck Subject: [PATCH v2] Documentation: add Device tree bindings for hwmon/nct7802 Date: Mon, 7 Sep 2015 00:59:49 +0300 Message-Id: <1441576829-15789-1-git-send-email-const@MakeLinux.com> X-Mailer: git-send-email 1.9.1 X-Identified-User: {1470:box668.bluehost.com:makelinu:makelinux.com} {sentby:smtp auth 84.229.35.146 authed with const@makelinux.com} Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Changed in v2: - Removed nct7802,reg-init - Added registers initialization by names Introduced in v1: - nct7802,reg-init Signed-off-by: Constantine Shulyupin --- --- .../devicetree/bindings/hwmon/nct7802.txt | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Documentation/devicetree/bindings/hwmon/nct7802.txt diff --git a/Documentation/devicetree/bindings/hwmon/nct7802.txt b/Documentation/devicetree/bindings/hwmon/nct7802.txt new file mode 100644 index 0000000..56214bf --- /dev/null +++ b/Documentation/devicetree/bindings/hwmon/nct7802.txt @@ -0,0 +1,24 @@ +Nuvoton NCT7802Y Hardware Monitoring IC + +Required node properties: + + - "compatible": must be "nuvoton,nct7802" + - "reg": I2C bus address of the device + +Optional properties: + +One byte registers: + - nct7802,Start + - nct7802,Mode + - nct7802,EnPECI + - nct7802,EnFan + - nct7802,EnV + +Example nct7802 node: + +nct7802 { + compatible = "nuvoton,nct7802"; + reg = <0x2a>; + nct7802,Start = <0x01>; + nct7802,Mode = <0x7E>; // RTD1_MD = 2 +}; -- 1.9.1