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=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no 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 E925AC10F25 for ; Tue, 10 Mar 2020 00:26:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C725524654 for ; Tue, 10 Mar 2020 00:26:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727487AbgCJA0X (ORCPT ); Mon, 9 Mar 2020 20:26:23 -0400 Received: from mail.baikalelectronics.com ([87.245.175.226]:44426 "EHLO mail.baikalelectronics.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727322AbgCJA0X (ORCPT ); Mon, 9 Mar 2020 20:26:23 -0400 Received: from localhost (unknown [127.0.0.1]) by mail.baikalelectronics.ru (Postfix) with ESMTP id 68D30803087C; Tue, 10 Mar 2020 00:26:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at baikalelectronics.ru Received: from mail.baikalelectronics.ru ([127.0.0.1]) by localhost (mail.baikalelectronics.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5-s31Ti5uv7A; Tue, 10 Mar 2020 03:26:19 +0300 (MSK) Date: Tue, 10 Mar 2020 03:25:29 +0300 From: Sergey Semin To: Alexey Malahov , Maxim Kaurkin , Pavel Parkhomenko , Ramil Zaripov , Ekaterina Skachko , Vadim Vlasov , Thomas Bogendoerfer , Paul Burton , Ralf Baechle , Jean Delvare , Guenter Roeck , Rob Herring , Mark Rutland , , , Subject: Re: [PATCH 0/2] hwmon: Add Baikal-T1 SoC Process, Voltage and Temp sensor support References: <20200306132604.14312-1-Sergey.Semin@baikalelectronics.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20200306132604.14312-1-Sergey.Semin@baikalelectronics.ru> X-ClientProxiedBy: MAIL.baikal.int (192.168.51.25) To mail (192.168.51.25) Message-Id: <20200310002621.68D30803087C@mail.baikalelectronics.ru> Sender: linux-hwmon-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-hwmon@vger.kernel.org On Fri, Mar 06, 2020 at 04:26:02PM +0300, Sergey.Semin@baikalelectronics.ru wrote: > From: Serge Semin > > In order to keep track of Baikal-T1 SoC power consumption and make sure > the chip heating is within the normal temperature limits, there is > a dedicated hardware monitor sensor embedded into the SoC. It is based > on the Analog Bits PVT sensor but equipped with a vendor-specific control > wrapper, which ease an access to the sensors functionality. Fist of all it > provides an accessed to the sampled Temperature, Voltage and > Low/Standard/High Voltage thresholds. In addition the wrapper generates > an interrupt in case if one enabled for alarm thresholds or data ready > event. All of these functionality is implemented in the Baikal-T1 PVT > driver submitted within this patchset. Naturally there is also a patch, > which creates a corresponding yaml-based dt-binding file for the sensor. > > This patchset is rebased and tested on the mainline Linux kernel 5.6-rc4: > commit 98d54f81e36b ("Linux 5.6-rc4"). > > Signed-off-by: Serge Semin > Signed-off-by: Alexey Malahov > Signed-off-by: Maxim Kaurkin > Cc: Pavel Parkhomenko > Cc: Ramil Zaripov > Cc: Ekaterina Skachko > Cc: Vadim Vlasov > Cc: Thomas Bogendoerfer > Cc: Paul Burton > Cc: Ralf Baechle > Cc: Jean Delvare > Cc: Guenter Roeck > Cc: Rob Herring > Cc: Mark Rutland > Cc: linux-hwmon@vger.kernel.org > Cc: devicetree@vger.kernel.org > Cc: linux-kernel@vger.kernel.org > > Serge Semin (2): > dt-bindings: hwmon: Add Baikal-T1 PVT sensor bindings > hwmon: Add Baikal-T1 PVT sensor driver > > .../devicetree/bindings/hwmon/be,bt1-pvt.yaml | 100 ++ > Documentation/hwmon/bt1-pvt.rst | 113 ++ > drivers/hwmon/Kconfig | 29 + > drivers/hwmon/Makefile | 1 + > drivers/hwmon/bt1-pvt.c | 1147 +++++++++++++++++ > drivers/hwmon/bt1-pvt.h | 266 ++++ > 6 files changed, 1656 insertions(+) > create mode 100644 Documentation/devicetree/bindings/hwmon/be,bt1-pvt.yaml > create mode 100644 Documentation/hwmon/bt1-pvt.rst > create mode 100644 drivers/hwmon/bt1-pvt.c > create mode 100644 drivers/hwmon/bt1-pvt.h > > -- > 2.25.1 > Folks, It appears our corporate email server changes the Message-Id field of messages passing through it. Due to that the emails threading gets to be broken. I'll resubmit the properly structured v2 patchset as soon as our system administrator fixes the problem. Sorry for the inconvenience caused by it. Regards, -Sergey