From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6B30FC43141 for ; Thu, 21 Jun 2018 19:41:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2A75321CE8 for ; Thu, 21 Jun 2018 19:41:34 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2A75321CE8 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933484AbeFUTla (ORCPT ); Thu, 21 Jun 2018 15:41:30 -0400 Received: from mga09.intel.com ([134.134.136.24]:58558 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932621AbeFUTl3 (ORCPT ); Thu, 21 Jun 2018 15:41:29 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Jun 2018 12:41:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,253,1526367600"; d="scan'208";a="66600663" Received: from maru.jf.intel.com ([10.54.51.80]) by orsmga001.jf.intel.com with ESMTP; 21 Jun 2018 12:41:22 -0700 From: Jae Hyun Yoo To: Rob Herring , Mark Rutland , Haiyue Wang , Vernon Mauery , James Feist , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, openbmc@lists.ozlabs.org Cc: Jae Hyun Yoo , Andrew Jeffery , Arnd Bergmann , Jason M Biils , Joel Stanley Subject: [PATCH linux-next v6 09/13] dt-bindings: hwmon: Add documents for PECI hwmon client drivers Date: Thu, 21 Jun 2018 12:41:21 -0700 Message-Id: <20180621194121.20982-1-jae.hyun.yoo@linux.intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180621193721.20588-1-jae.hyun.yoo@linux.intel.com> References: <20180621193721.20588-1-jae.hyun.yoo@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This commit adds dt-bindings documents for PECI hwmon client drivers. Signed-off-by: Jae Hyun Yoo Reviewed-by: Haiyue Wang Reviewed-by: James Feist Reviewed-by: Vernon Mauery Cc: Andrew Jeffery Cc: Arnd Bergmann Cc: Jason M Biils Cc: Joel Stanley --- .../devicetree/bindings/hwmon/peci-cputemp.txt | 11 +++++++++++ .../devicetree/bindings/hwmon/peci-dimmtemp.txt | 12 ++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 Documentation/devicetree/bindings/hwmon/peci-cputemp.txt create mode 100644 Documentation/devicetree/bindings/hwmon/peci-dimmtemp.txt diff --git a/Documentation/devicetree/bindings/hwmon/peci-cputemp.txt b/Documentation/devicetree/bindings/hwmon/peci-cputemp.txt new file mode 100644 index 000000000000..19c7da57deab --- /dev/null +++ b/Documentation/devicetree/bindings/hwmon/peci-cputemp.txt @@ -0,0 +1,11 @@ +Bindings for Intel PECI (Platform Environment Control Interface) cputemp driver. + +Required properties: +- compatible : Should be "intel,peci-cputemp". + +This node is a subnode of the PECI client MFD. + +Example: + peci-cputemp { + compatible = "intel,peci-cputemp"; + }; diff --git a/Documentation/devicetree/bindings/hwmon/peci-dimmtemp.txt b/Documentation/devicetree/bindings/hwmon/peci-dimmtemp.txt new file mode 100644 index 000000000000..08ce163ba831 --- /dev/null +++ b/Documentation/devicetree/bindings/hwmon/peci-dimmtemp.txt @@ -0,0 +1,12 @@ +Bindings for Intel PECI (Platform Environment Control Interface) dimmtemp +driver. + +Required properties: +- compatible : Should be "intel,peci-dimmtemp". + +This node is a subnode of the PECI client MFD. + +Example: + peci-dimmtemp@30 { + compatible = "intel,peci-dimmtemp"; + }; \ No newline at end of file -- 2.17.1