From: Andrew Lunn <andrew@lunn.ch>
To: Zhang Rui <rui.zhang@intel.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>,
linux ARM <linux-arm-kernel@lists.infradead.org>,
linux-pm@vger.kernel.org, Jason Cooper <jason@lakedaemon.net>,
Sebastian Hesselbarth <sebastian.hesselbarth@googlemail.com>,
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
jgunthorpe@obsidianresearch.com
Subject: Re: [PATCH 1/2] thermal: Add support for thermal sensor for Orion SoC
Date: Fri, 04 Jan 2013 09:15:44 +0100 [thread overview]
Message-ID: <50E68FB0.9050807@lunn.ch> (raw)
In-Reply-To: <1357284783.2152.2.camel@rzhang1-mobl4>
On 04/01/13 08:33, Zhang Rui wrote:
> On Fri, 2012-12-14 at 23:11 +0100, Andrew Lunn wrote:
>> On Sat, Dec 15, 2012 at 06:54:17AM +0900, Nobuhiro Iwamatsu wrote:
>>> Hi,
>>>
>>> Thanks you for your work.
>>> Sorry, I dont hava a time at this week about this.
>>
>> Its not a problem. We have plenty of time before the next merge
>> window. I was just interested in seeing it work on my QNAP device, so
>> did some of the cleanup work.
>>
>>> On Fri, Dec 14, 2012 at 8:03 PM, Andrew Lunn<andrew@lunn.ch> wrote:
>>>> From: Nobuhiro Iwamatsu<iwamatsu@nigauri.org>
>>>>
>>>> Some Orion SoC has thermal sensor.
>>>> This patch adds support for 88F6282 and 88F6283.
>>>>
>>>> Signed-off-by: Nobuhiro Iwamatsu<iwamatsu@nigauri.org>
>>>> Signed-off-by: Andrew Lunn<andrew@lunn.ch>
>>>> ---
>>>> .../devicetree/bindings/thermal/orion-thermal.txt | 16 +++
>>>> drivers/thermal/Kconfig | 7 ++
>>>> drivers/thermal/Makefile | 1 +
>>>> drivers/thermal/orion_thermal.c | 133 ++++++++++++++++++++
>>>> 4 files changed, 157 insertions(+)
>>>> create mode 100644 Documentation/devicetree/bindings/thermal/orion-thermal.txt
>>>> create mode 100644 drivers/thermal/orion_thermal.c
>>>>
>>>> diff --git a/Documentation/devicetree/bindings/thermal/orion-thermal.txt b/Documentation/devicetree/bindings/thermal/orion-thermal.txt
>>>> new file mode 100644
>>>> index 0000000..5ce925d
>>>> --- /dev/null
>>>> +++ b/Documentation/devicetree/bindings/thermal/orion-thermal.txt
>>>> @@ -0,0 +1,16 @@
>>>> +* Orion Thermal
>>>> +
>>>> +This initial version is for Kirkwood 88F8262& 88F6283 SoCs, however
>>>> +it is expected the driver will sometime in the future be expanded to
>>>> +also support Dove, using a different compatibility string.
>>>> +
>>>> +Required properties:
>>>> +- compatible : "marvell,kirkwood-thermal"
>>>> +- reg : Address range of the thermal registers
>>>> +
>>>> +Example:
>>>> +
>>>> + thermal@10078 {
>>>> + compatible = "marvell,kirkwood";
>>>
>>> compatible = "marvell,kirkwood-thermal"; ?
>>
>> Yep, my error.
>>
>>>> + reg =<0x10078 0x4>;
>>>> + };
>>>> diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
>>>> index e1cb6bd..3bba13f 100644
>>>> --- a/drivers/thermal/Kconfig
>>>> +++ b/drivers/thermal/Kconfig
>>>> @@ -55,3 +55,10 @@ config EXYNOS_THERMAL
>>>> help
>>>> If you say yes here you get support for TMU (Thermal Managment
>>>> Unit) on SAMSUNG EXYNOS series of SoC.
>>>> +
>>>> +config ORION_THERMAL
>>>> + tristate "Temperature sensor on Marvel Orion SoCs"
>>>
>>> Marvel -> Marvell
>>
>> Missed that one, thanks.
>>
>> Thanks for the Tested-by. I will add it to the next version. I
>> started work on Dove support, so i will probably repost when i have
>> that ready for testing.
>
> sorry for the late response, can you resend the refreshed version on top
> of the thermal next tree?
Hi Rui
Im in the process of generalizing the driver so that it works for
Kirkwood, Dove, Armada 370 and Armada XP. The combined driver is not
finished yet. Once i have something ready i will repost.
Andrew
WARNING: multiple messages have this Message-ID (diff)
From: andrew@lunn.ch (Andrew Lunn)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] thermal: Add support for thermal sensor for Orion SoC
Date: Fri, 04 Jan 2013 09:15:44 +0100 [thread overview]
Message-ID: <50E68FB0.9050807@lunn.ch> (raw)
In-Reply-To: <1357284783.2152.2.camel@rzhang1-mobl4>
On 04/01/13 08:33, Zhang Rui wrote:
> On Fri, 2012-12-14 at 23:11 +0100, Andrew Lunn wrote:
>> On Sat, Dec 15, 2012 at 06:54:17AM +0900, Nobuhiro Iwamatsu wrote:
>>> Hi,
>>>
>>> Thanks you for your work.
>>> Sorry, I dont hava a time at this week about this.
>>
>> Its not a problem. We have plenty of time before the next merge
>> window. I was just interested in seeing it work on my QNAP device, so
>> did some of the cleanup work.
>>
>>> On Fri, Dec 14, 2012 at 8:03 PM, Andrew Lunn<andrew@lunn.ch> wrote:
>>>> From: Nobuhiro Iwamatsu<iwamatsu@nigauri.org>
>>>>
>>>> Some Orion SoC has thermal sensor.
>>>> This patch adds support for 88F6282 and 88F6283.
>>>>
>>>> Signed-off-by: Nobuhiro Iwamatsu<iwamatsu@nigauri.org>
>>>> Signed-off-by: Andrew Lunn<andrew@lunn.ch>
>>>> ---
>>>> .../devicetree/bindings/thermal/orion-thermal.txt | 16 +++
>>>> drivers/thermal/Kconfig | 7 ++
>>>> drivers/thermal/Makefile | 1 +
>>>> drivers/thermal/orion_thermal.c | 133 ++++++++++++++++++++
>>>> 4 files changed, 157 insertions(+)
>>>> create mode 100644 Documentation/devicetree/bindings/thermal/orion-thermal.txt
>>>> create mode 100644 drivers/thermal/orion_thermal.c
>>>>
>>>> diff --git a/Documentation/devicetree/bindings/thermal/orion-thermal.txt b/Documentation/devicetree/bindings/thermal/orion-thermal.txt
>>>> new file mode 100644
>>>> index 0000000..5ce925d
>>>> --- /dev/null
>>>> +++ b/Documentation/devicetree/bindings/thermal/orion-thermal.txt
>>>> @@ -0,0 +1,16 @@
>>>> +* Orion Thermal
>>>> +
>>>> +This initial version is for Kirkwood 88F8262& 88F6283 SoCs, however
>>>> +it is expected the driver will sometime in the future be expanded to
>>>> +also support Dove, using a different compatibility string.
>>>> +
>>>> +Required properties:
>>>> +- compatible : "marvell,kirkwood-thermal"
>>>> +- reg : Address range of the thermal registers
>>>> +
>>>> +Example:
>>>> +
>>>> + thermal at 10078 {
>>>> + compatible = "marvell,kirkwood";
>>>
>>> compatible = "marvell,kirkwood-thermal"; ?
>>
>> Yep, my error.
>>
>>>> + reg =<0x10078 0x4>;
>>>> + };
>>>> diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
>>>> index e1cb6bd..3bba13f 100644
>>>> --- a/drivers/thermal/Kconfig
>>>> +++ b/drivers/thermal/Kconfig
>>>> @@ -55,3 +55,10 @@ config EXYNOS_THERMAL
>>>> help
>>>> If you say yes here you get support for TMU (Thermal Managment
>>>> Unit) on SAMSUNG EXYNOS series of SoC.
>>>> +
>>>> +config ORION_THERMAL
>>>> + tristate "Temperature sensor on Marvel Orion SoCs"
>>>
>>> Marvel -> Marvell
>>
>> Missed that one, thanks.
>>
>> Thanks for the Tested-by. I will add it to the next version. I
>> started work on Dove support, so i will probably repost when i have
>> that ready for testing.
>
> sorry for the late response, can you resend the refreshed version on top
> of the thermal next tree?
Hi Rui
Im in the process of generalizing the driver so that it works for
Kirkwood, Dove, Armada 370 and Armada XP. The combined driver is not
finished yet. Once i have something ready i will repost.
Andrew
next prev parent reply other threads:[~2013-01-04 8:16 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-14 11:03 [PATCH 0/2] Thermal sensor for Orion/Kirkwood Andrew Lunn
2012-12-14 11:03 ` Andrew Lunn
2012-12-14 11:03 ` [PATCH 1/2] thermal: Add support for thermal sensor for Orion SoC Andrew Lunn
2012-12-14 11:03 ` Andrew Lunn
2012-12-14 11:30 ` R, Durgadoss
2012-12-14 11:30 ` R, Durgadoss
2012-12-14 11:50 ` Andrew Lunn
2012-12-14 11:50 ` Andrew Lunn
2012-12-14 22:03 ` Nobuhiro Iwamatsu
2012-12-14 22:03 ` Nobuhiro Iwamatsu
2012-12-14 18:13 ` Jason Gunthorpe
2012-12-14 18:13 ` Jason Gunthorpe
2012-12-14 21:54 ` Nobuhiro Iwamatsu
2012-12-14 21:54 ` Nobuhiro Iwamatsu
2012-12-14 22:11 ` Andrew Lunn
2012-12-14 22:11 ` Andrew Lunn
2013-01-04 7:33 ` Zhang Rui
2013-01-04 7:33 ` Zhang Rui
2013-01-04 8:15 ` Andrew Lunn [this message]
2013-01-04 8:15 ` Andrew Lunn
2013-01-04 9:40 ` Eduardo Valentin
2013-01-04 9:40 ` Eduardo Valentin
2013-01-04 9:47 ` Eduardo Valentin
2013-01-04 9:47 ` Eduardo Valentin
2013-01-04 15:35 ` Andrew Lunn
2013-01-04 15:35 ` Andrew Lunn
2013-01-07 10:06 ` Eduardo Valentin
2013-01-07 10:06 ` Eduardo Valentin
2013-01-07 10:16 ` Andrew Lunn
2013-01-07 10:16 ` Andrew Lunn
2012-12-14 11:03 ` [PATCH 2/2] ARM: Kirkwood: Add support thermal sensor for 88F6282 and 88F6283 Andrew Lunn
2012-12-14 11:03 ` Andrew Lunn
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=50E68FB0.9050807@lunn.ch \
--to=andrew@lunn.ch \
--cc=iwamatsu@nigauri.org \
--cc=jason@lakedaemon.net \
--cc=jgunthorpe@obsidianresearch.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-pm@vger.kernel.org \
--cc=rui.zhang@intel.com \
--cc=sebastian.hesselbarth@googlemail.com \
--cc=thomas.petazzoni@free-electrons.com \
/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.