From: francescolavra.fl@gmail.com (Francesco Lavra)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/4] mfd: ab8500: add devicetree support for btemp
Date: Sat, 27 Oct 2012 17:08:36 +0200 [thread overview]
Message-ID: <508BF8F4.1060006@gmail.com> (raw)
In-Reply-To: <1351146654-9110-3-git-send-email-rajanikanth.hv@stericsson.com>
On 10/25/2012 08:30 AM, Rajanikanth H.V wrote:
> From: "Rajanikanth H.V" <rajanikanth.hv@stericsson.com>
>
> This patch adds device tree support for
> battery-temperature-monitor driver
>
> Signed-off-by: Rajanikanth H.V <rajanikanth.hv@stericsson.com>
> ---
> Documentation/devicetree/bindings/mfd/ab8500.txt | 6 ++
> .../bindings/power_supply/ab8500/btemp.txt | 16 +++++
> arch/arm/boot/dts/dbx5x0.dtsi | 5 ++
> drivers/mfd/ab8500-core.c | 5 ++
> drivers/power/Kconfig | 6 --
> drivers/power/ab8500_bmdata.c | 4 +-
> drivers/power/ab8500_btemp.c | 66 ++++++++++++--------
> 7 files changed, 73 insertions(+), 35 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/power_supply/ab8500/btemp.txt
>
> diff --git a/Documentation/devicetree/bindings/mfd/ab8500.txt b/Documentation/devicetree/bindings/mfd/ab8500.txt
> index 6ca8d81..179c802 100644
> --- a/Documentation/devicetree/bindings/mfd/ab8500.txt
> +++ b/Documentation/devicetree/bindings/mfd/ab8500.txt
> @@ -30,6 +30,12 @@ ab8500-fg : : vddadc : Fuel Gauge
> : LOW_BAT_F : : LOW threshold battery voltage
> : CC_INT_CALIB : : Coulomb Counter Internal Calibration
> : CCEOC : : Coulomb Counter End of Conversion
> +ab8500-btemp : : vtvout : Battery Temperature
> + : BAT_CTRL_INDB : : Battery Removal Indicator
> + : BTEMP_LOW : : Btemp < BtempLow, if battery temperature is lower than -10?C
> + : BTEMP_HIGH : : BtempLow < Btemp < BtempMedium,if battery temperature is between -10 and 0?C
> + : BTEMP_LOW_MEDIUM : : BtempMedium < Btemp < BtempHigh,if battery temperature is between 0?C and?MaxTemp
> + : BTEMP_MEDIUM_HIGH : : Btemp > BtempHigh, if battery temperature is higher than ?MaxTemp?
BTEMP_HIGH, BTEMP_LOW_MEDIUM and BTEMP_MEDIUM_HIGH are in the wrong
order and don't correspond to their description.
--
Francesco
WARNING: multiple messages have this Message-ID (diff)
From: Francesco Lavra <francescolavra.fl@gmail.com>
To: "Rajanikanth H.V" <rajanikanth.hv@stericsson.com>
Cc: lee.jones@linaro.org, arnd@arndb.de, anton.vorontsov@linaro.org,
linus.walleij@stericsson.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linaro-dev@lists.linaro.org,
patches@linaro.org, STEricsson_nomadik_linux@list.st.com
Subject: Re: [PATCH 2/4] mfd: ab8500: add devicetree support for btemp
Date: Sat, 27 Oct 2012 17:08:36 +0200 [thread overview]
Message-ID: <508BF8F4.1060006@gmail.com> (raw)
In-Reply-To: <1351146654-9110-3-git-send-email-rajanikanth.hv@stericsson.com>
On 10/25/2012 08:30 AM, Rajanikanth H.V wrote:
> From: "Rajanikanth H.V" <rajanikanth.hv@stericsson.com>
>
> This patch adds device tree support for
> battery-temperature-monitor driver
>
> Signed-off-by: Rajanikanth H.V <rajanikanth.hv@stericsson.com>
> ---
> Documentation/devicetree/bindings/mfd/ab8500.txt | 6 ++
> .../bindings/power_supply/ab8500/btemp.txt | 16 +++++
> arch/arm/boot/dts/dbx5x0.dtsi | 5 ++
> drivers/mfd/ab8500-core.c | 5 ++
> drivers/power/Kconfig | 6 --
> drivers/power/ab8500_bmdata.c | 4 +-
> drivers/power/ab8500_btemp.c | 66 ++++++++++++--------
> 7 files changed, 73 insertions(+), 35 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/power_supply/ab8500/btemp.txt
>
> diff --git a/Documentation/devicetree/bindings/mfd/ab8500.txt b/Documentation/devicetree/bindings/mfd/ab8500.txt
> index 6ca8d81..179c802 100644
> --- a/Documentation/devicetree/bindings/mfd/ab8500.txt
> +++ b/Documentation/devicetree/bindings/mfd/ab8500.txt
> @@ -30,6 +30,12 @@ ab8500-fg : : vddadc : Fuel Gauge
> : LOW_BAT_F : : LOW threshold battery voltage
> : CC_INT_CALIB : : Coulomb Counter Internal Calibration
> : CCEOC : : Coulomb Counter End of Conversion
> +ab8500-btemp : : vtvout : Battery Temperature
> + : BAT_CTRL_INDB : : Battery Removal Indicator
> + : BTEMP_LOW : : Btemp < BtempLow, if battery temperature is lower than -10°C
> + : BTEMP_HIGH : : BtempLow < Btemp < BtempMedium,if battery temperature is between -10 and 0°C
> + : BTEMP_LOW_MEDIUM : : BtempMedium < Btemp < BtempHigh,if battery temperature is between 0°C and“MaxTemp
> + : BTEMP_MEDIUM_HIGH : : Btemp > BtempHigh, if battery temperature is higher than “MaxTemp”
BTEMP_HIGH, BTEMP_LOW_MEDIUM and BTEMP_MEDIUM_HIGH are in the wrong
order and don't correspond to their description.
--
Francesco
next prev parent reply other threads:[~2012-10-27 15:08 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-25 6:30 [PATCH 0/4] Implement device tree support for ab8500 BM Devices Rajanikanth H.V
2012-10-25 6:30 ` [PATCH 1/4] mfd: ab8500: add devicetree support for fuelgauge Rajanikanth H.V
2012-10-27 15:07 ` Francesco Lavra
2012-10-27 15:07 ` Francesco Lavra
2012-10-27 16:00 ` Rajanikanth HV
2012-10-27 16:00 ` Rajanikanth HV
2012-10-27 16:18 ` Francesco Lavra
2012-10-27 16:18 ` Francesco Lavra
2012-10-25 6:30 ` [PATCH 2/4] mfd: ab8500: add devicetree support for btemp Rajanikanth H.V
2012-10-27 15:08 ` Francesco Lavra [this message]
2012-10-27 15:08 ` Francesco Lavra
2012-10-25 6:30 ` [PATCH 3/4] mfd: ab8500: add devicetree support for charger Rajanikanth H.V
2012-10-27 15:10 ` Francesco Lavra
2012-10-27 15:10 ` Francesco Lavra
2012-10-25 6:30 ` [PATCH 4/4] mfd: ab8500: add devicetree support for chargalg Rajanikanth H.V
2012-10-27 15:11 ` Francesco Lavra
2012-10-27 15:11 ` Francesco Lavra
-- strict thread matches above, loose matches on Subject: below --
2012-11-22 18:43 [PATCH 0/4] Implement device tree support for ab8500 BM Devices Rajanikanth H.V
2012-11-22 18:43 ` [PATCH 2/4] mfd: ab8500: add devicetree support for btemp Rajanikanth H.V
2012-11-22 18:43 ` Rajanikanth H.V
2012-10-31 15:40 [PATCH 0/4] Implement device tree support for ab8500 BM Devices Rajanikanth H.V
2012-10-31 15:40 ` [PATCH 2/4] mfd: ab8500: add devicetree support for btemp Rajanikanth H.V
2012-10-31 15:40 ` Rajanikanth H.V
2012-10-01 4:08 [PATCH 0/4] Implement device tree support for ab8500 BM Devices Rajanikanth H.V
2012-10-01 4:08 ` [PATCH 2/4] mfd: ab8500: add devicetree support for Btemp Rajanikanth H.V
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=508BF8F4.1060006@gmail.com \
--to=francescolavra.fl@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.