From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Subject: Re: [PATCH v2 1/5] of: Add descriptions of thermtrip properties to Tegra PMC bindings Date: Thu, 21 Aug 2014 09:38:29 -0600 Message-ID: <53F61275.9020508@wwwdotorg.org> References: <1407933685-12404-1-git-send-email-mperttunen@nvidia.com> <1407933685-12404-2-git-send-email-mperttunen@nvidia.com> <53F50231.5010605@wwwdotorg.org> <20140821065853.GE4486@ulmo> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20140821065853.GE4486@ulmo> Sender: linux-tegra-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Thierry Reding Cc: Mikko Perttunen , linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, wni-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org List-Id: linux-tegra@vger.kernel.org On 08/21/2014 12:58 AM, Thierry Reding wrote: > On Wed, Aug 20, 2014 at 02:16:49PM -0600, Stephen Warren wrote: >> On 08/13/2014 06:41 AM, Mikko Perttunen wrote: >>> Hardware-triggered thermal reset requires configuring the I2C >>> reset procedure. This configuration is read from the device tree, >>> so document the relevant properties in the binding documentation. >> >>> diff --git a/Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-pmc.txt b/Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-pmc.txt >> >>> +Hardware-triggered thermal reset: >>> +On Tegra30, Tegra114 and Tegra124, if the 'i2c-thermtrip' subnode exists, >>> +hardware-triggered thermal reset will be enabled. >> >> "will be enabled" sounds like SW behaviour, whereas DT is suppose to >> describe HW, and leave SW to define its own behaviour. I would suggest: >> >> Optional sub-nodes: >> i2c-thermtrip: Describes how to power off the system in the event of a >> thermal emergency. >> >>> +Required properties for hardware-triggered thermal reset (inside 'i2c-thermtrip'): >> >> Simpler might be: >> >> Required properties for i2c-thermtrip node: >> >>> +- nvidia,pmu : Phandle to power management unit / PMIC handling poweroff >>> +- nvidia,reg-addr : I2C register address to write poweroff command to >>> +- nvidia,reg-data : Poweroff command to write to PMU >> >> Why are both the PMU/PMIC phandle and the register address/data required? I >> thought the purpose of having the phandle was to allow the register address >> and data to be queried from the PMU/PMIC driver. >> >> To me, it seems much simpler to get rid of the phandle and just hard-code >> the I2C bus number, address, and data into this node, rather than having to >> go query it from the PMU/PMIC driver, then find the I2C controller, then >> query it for its ID (and hope that all HW modules that talk to I2C >> controllers directly use the same numbering scheme...) > > I originally requested this to be changed. It seems wrong to duplicate > information about the PMIC in both the PMIC device tree node and the > i2c-thermtrip node if we can get the same information from the driver > directly (via the phandle). It certainly requires a little more code, > but at the advantage of not having to figure out the I2C controller > hardware number and I2C slave addresses when writing the i2c-thermtrip > node. I cant see that argument, but surely the PMIC driver can also supply the "reg-addr" and "reg-data" values too, if it's already being queried for the I2C device address and bus number? The binding above appears to duplicate part of the information, while requiring querying of the other part. From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751754AbaHUPiN (ORCPT ); Thu, 21 Aug 2014 11:38:13 -0400 Received: from avon.wwwdotorg.org ([70.85.31.133]:48293 "EHLO avon.wwwdotorg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751222AbaHUPiL (ORCPT ); Thu, 21 Aug 2014 11:38:11 -0400 Message-ID: <53F61275.9020508@wwwdotorg.org> Date: Thu, 21 Aug 2014 09:38:29 -0600 From: Stephen Warren User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: Thierry Reding CC: Mikko Perttunen , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-tegra@vger.kernel.org, wni@nvidia.com Subject: Re: [PATCH v2 1/5] of: Add descriptions of thermtrip properties to Tegra PMC bindings References: <1407933685-12404-1-git-send-email-mperttunen@nvidia.com> <1407933685-12404-2-git-send-email-mperttunen@nvidia.com> <53F50231.5010605@wwwdotorg.org> <20140821065853.GE4486@ulmo> In-Reply-To: <20140821065853.GE4486@ulmo> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 08/21/2014 12:58 AM, Thierry Reding wrote: > On Wed, Aug 20, 2014 at 02:16:49PM -0600, Stephen Warren wrote: >> On 08/13/2014 06:41 AM, Mikko Perttunen wrote: >>> Hardware-triggered thermal reset requires configuring the I2C >>> reset procedure. This configuration is read from the device tree, >>> so document the relevant properties in the binding documentation. >> >>> diff --git a/Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-pmc.txt b/Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-pmc.txt >> >>> +Hardware-triggered thermal reset: >>> +On Tegra30, Tegra114 and Tegra124, if the 'i2c-thermtrip' subnode exists, >>> +hardware-triggered thermal reset will be enabled. >> >> "will be enabled" sounds like SW behaviour, whereas DT is suppose to >> describe HW, and leave SW to define its own behaviour. I would suggest: >> >> Optional sub-nodes: >> i2c-thermtrip: Describes how to power off the system in the event of a >> thermal emergency. >> >>> +Required properties for hardware-triggered thermal reset (inside 'i2c-thermtrip'): >> >> Simpler might be: >> >> Required properties for i2c-thermtrip node: >> >>> +- nvidia,pmu : Phandle to power management unit / PMIC handling poweroff >>> +- nvidia,reg-addr : I2C register address to write poweroff command to >>> +- nvidia,reg-data : Poweroff command to write to PMU >> >> Why are both the PMU/PMIC phandle and the register address/data required? I >> thought the purpose of having the phandle was to allow the register address >> and data to be queried from the PMU/PMIC driver. >> >> To me, it seems much simpler to get rid of the phandle and just hard-code >> the I2C bus number, address, and data into this node, rather than having to >> go query it from the PMU/PMIC driver, then find the I2C controller, then >> query it for its ID (and hope that all HW modules that talk to I2C >> controllers directly use the same numbering scheme...) > > I originally requested this to be changed. It seems wrong to duplicate > information about the PMIC in both the PMIC device tree node and the > i2c-thermtrip node if we can get the same information from the driver > directly (via the phandle). It certainly requires a little more code, > but at the advantage of not having to figure out the I2C controller > hardware number and I2C slave addresses when writing the i2c-thermtrip > node. I cant see that argument, but surely the PMIC driver can also supply the "reg-addr" and "reg-data" values too, if it's already being queried for the I2C device address and bus number? The binding above appears to duplicate part of the information, while requiring querying of the other part. From mboxrd@z Thu Jan 1 00:00:00 1970 From: swarren@wwwdotorg.org (Stephen Warren) Date: Thu, 21 Aug 2014 09:38:29 -0600 Subject: [PATCH v2 1/5] of: Add descriptions of thermtrip properties to Tegra PMC bindings In-Reply-To: <20140821065853.GE4486@ulmo> References: <1407933685-12404-1-git-send-email-mperttunen@nvidia.com> <1407933685-12404-2-git-send-email-mperttunen@nvidia.com> <53F50231.5010605@wwwdotorg.org> <20140821065853.GE4486@ulmo> Message-ID: <53F61275.9020508@wwwdotorg.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 08/21/2014 12:58 AM, Thierry Reding wrote: > On Wed, Aug 20, 2014 at 02:16:49PM -0600, Stephen Warren wrote: >> On 08/13/2014 06:41 AM, Mikko Perttunen wrote: >>> Hardware-triggered thermal reset requires configuring the I2C >>> reset procedure. This configuration is read from the device tree, >>> so document the relevant properties in the binding documentation. >> >>> diff --git a/Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-pmc.txt b/Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-pmc.txt >> >>> +Hardware-triggered thermal reset: >>> +On Tegra30, Tegra114 and Tegra124, if the 'i2c-thermtrip' subnode exists, >>> +hardware-triggered thermal reset will be enabled. >> >> "will be enabled" sounds like SW behaviour, whereas DT is suppose to >> describe HW, and leave SW to define its own behaviour. I would suggest: >> >> Optional sub-nodes: >> i2c-thermtrip: Describes how to power off the system in the event of a >> thermal emergency. >> >>> +Required properties for hardware-triggered thermal reset (inside 'i2c-thermtrip'): >> >> Simpler might be: >> >> Required properties for i2c-thermtrip node: >> >>> +- nvidia,pmu : Phandle to power management unit / PMIC handling poweroff >>> +- nvidia,reg-addr : I2C register address to write poweroff command to >>> +- nvidia,reg-data : Poweroff command to write to PMU >> >> Why are both the PMU/PMIC phandle and the register address/data required? I >> thought the purpose of having the phandle was to allow the register address >> and data to be queried from the PMU/PMIC driver. >> >> To me, it seems much simpler to get rid of the phandle and just hard-code >> the I2C bus number, address, and data into this node, rather than having to >> go query it from the PMU/PMIC driver, then find the I2C controller, then >> query it for its ID (and hope that all HW modules that talk to I2C >> controllers directly use the same numbering scheme...) > > I originally requested this to be changed. It seems wrong to duplicate > information about the PMIC in both the PMIC device tree node and the > i2c-thermtrip node if we can get the same information from the driver > directly (via the phandle). It certainly requires a little more code, > but at the advantage of not having to figure out the I2C controller > hardware number and I2C slave addresses when writing the i2c-thermtrip > node. I cant see that argument, but surely the PMIC driver can also supply the "reg-addr" and "reg-data" values too, if it's already being queried for the I2C device address and bus number? The binding above appears to duplicate part of the information, while requiring querying of the other part.