From: Eduardo Valentin <eduardo.valentin@ti.com>
To: Zhang Rui <rui.zhang@intel.com>
Cc: Eduardo Valentin <eduardo.valentin@ti.com>,
gregkh@linuxfoundation.org, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org
Subject: Re: [PATCH 0/2] staging -> thermal: move ti-soc-thermal to drivers/thermal
Date: Tue, 28 May 2013 10:30:23 -0400 [thread overview]
Message-ID: <51A4BF7F.4010705@ti.com> (raw)
In-Reply-To: <1369708896.1913.5.camel@rzhang1-mobl4>
[-- Attachment #1: Type: text/plain, Size: 4279 bytes --]
On 27-05-2013 22:41, Zhang Rui wrote:
> On Wed, 2013-05-15 at 11:45 -0400, Eduardo Valentin wrote:
>> Hello Greg and Rui,
>>
>> I am proposing to move the ti-soc-thermal driver from drivers/stating/
>> to drivers/thermal. It has been some time that we have been fixing and
>> improving the code under staging tree.
>>
>> I believe it is time to move on. The driver now has a better code
>> organization (split between code and data), DT support, better coding
>> style, it supports TI OMAP chips 4430, 4460, 4470 and 5430, and it is
>> ready for easy addition of other SoC chips containing the bandgap IP.
>> Besides, this driver required some major changes in the thermal framework,
>> before it could provide basic functionality using the device capability.
>> These changes have been already merged in previous merge windows,
>> so there is no pending dependencies.
>>
>> The remaining items in the TODO list are actually not a blocker for this
>> move, IMO. The PM support is not fully completed on all supported OMAP chips.
>> The locking so far has not caused any issues, and I believe that most of
>> the interesting data is protected by the thermal framework.
>>
>> I am sending this patch for your appreciation and also to get wider review.
>>
>
> patch applied to thermal -next tree and targeted for 3.11.
Thanks Rui,
I am going to send the usual ti soc thermal fixes patch set to you now.
I ve been sending it anyway to linux-pm. Only thing is that it should go
via your tree now.
Next set should contain some fixes identified during internal testing.
>
> thanks,
> rui
>> All best,
>>
>> Eduardo Valentin (2):
>> thermal: introduce TI SoC thermal driver
>> MAINTAINERS: update TI SoC thermal driver entry
>>
>> .../devicetree/bindings/thermal}/ti_soc_thermal.txt | 0
>> MAINTAINERS | 4 ++--
>> drivers/staging/Kconfig | 2 --
>> drivers/staging/Makefile | 1 -
>> drivers/thermal/Kconfig | 3 +++
>> drivers/thermal/Makefile | 2 +-
>> drivers/{staging => thermal}/ti-soc-thermal/Kconfig | 0
>> drivers/{staging => thermal}/ti-soc-thermal/Makefile | 0
>> drivers/{staging => thermal}/ti-soc-thermal/TODO | 0
>> drivers/{staging => thermal}/ti-soc-thermal/omap4-thermal-data.c | 0
>> drivers/{staging => thermal}/ti-soc-thermal/omap4xxx-bandgap.h | 0
>> drivers/{staging => thermal}/ti-soc-thermal/omap5-thermal-data.c | 0
>> drivers/{staging => thermal}/ti-soc-thermal/omap5xxx-bandgap.h | 0
>> drivers/{staging => thermal}/ti-soc-thermal/ti-bandgap.c | 0
>> drivers/{staging => thermal}/ti-soc-thermal/ti-bandgap.h | 0
>> drivers/{staging => thermal}/ti-soc-thermal/ti-thermal-common.c | 0
>> drivers/{staging => thermal}/ti-soc-thermal/ti-thermal.h | 0
>> 17 files changed, 6 insertions(+), 6 deletions(-)
>> rename {drivers/staging/ti-soc-thermal => Documentation/devicetree/bindings/thermal}/ti_soc_thermal.txt (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/Kconfig (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/Makefile (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/TODO (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/omap4-thermal-data.c (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/omap4xxx-bandgap.h (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/omap5-thermal-data.c (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/omap5xxx-bandgap.h (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/ti-bandgap.c (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/ti-bandgap.h (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/ti-thermal-common.c (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/ti-thermal.h (100%)
>>
>
>
>
>
--
You have got to be excited about what you are doing. (L. Lamport)
Eduardo Valentin
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 295 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Eduardo Valentin <eduardo.valentin@ti.com>
To: Zhang Rui <rui.zhang@intel.com>
Cc: Eduardo Valentin <eduardo.valentin@ti.com>,
<gregkh@linuxfoundation.org>, <linux-pm@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <devel@driverdev.osuosl.org>
Subject: Re: [PATCH 0/2] staging -> thermal: move ti-soc-thermal to drivers/thermal
Date: Tue, 28 May 2013 10:30:23 -0400 [thread overview]
Message-ID: <51A4BF7F.4010705@ti.com> (raw)
In-Reply-To: <1369708896.1913.5.camel@rzhang1-mobl4>
[-- Attachment #1: Type: text/plain, Size: 4279 bytes --]
On 27-05-2013 22:41, Zhang Rui wrote:
> On Wed, 2013-05-15 at 11:45 -0400, Eduardo Valentin wrote:
>> Hello Greg and Rui,
>>
>> I am proposing to move the ti-soc-thermal driver from drivers/stating/
>> to drivers/thermal. It has been some time that we have been fixing and
>> improving the code under staging tree.
>>
>> I believe it is time to move on. The driver now has a better code
>> organization (split between code and data), DT support, better coding
>> style, it supports TI OMAP chips 4430, 4460, 4470 and 5430, and it is
>> ready for easy addition of other SoC chips containing the bandgap IP.
>> Besides, this driver required some major changes in the thermal framework,
>> before it could provide basic functionality using the device capability.
>> These changes have been already merged in previous merge windows,
>> so there is no pending dependencies.
>>
>> The remaining items in the TODO list are actually not a blocker for this
>> move, IMO. The PM support is not fully completed on all supported OMAP chips.
>> The locking so far has not caused any issues, and I believe that most of
>> the interesting data is protected by the thermal framework.
>>
>> I am sending this patch for your appreciation and also to get wider review.
>>
>
> patch applied to thermal -next tree and targeted for 3.11.
Thanks Rui,
I am going to send the usual ti soc thermal fixes patch set to you now.
I ve been sending it anyway to linux-pm. Only thing is that it should go
via your tree now.
Next set should contain some fixes identified during internal testing.
>
> thanks,
> rui
>> All best,
>>
>> Eduardo Valentin (2):
>> thermal: introduce TI SoC thermal driver
>> MAINTAINERS: update TI SoC thermal driver entry
>>
>> .../devicetree/bindings/thermal}/ti_soc_thermal.txt | 0
>> MAINTAINERS | 4 ++--
>> drivers/staging/Kconfig | 2 --
>> drivers/staging/Makefile | 1 -
>> drivers/thermal/Kconfig | 3 +++
>> drivers/thermal/Makefile | 2 +-
>> drivers/{staging => thermal}/ti-soc-thermal/Kconfig | 0
>> drivers/{staging => thermal}/ti-soc-thermal/Makefile | 0
>> drivers/{staging => thermal}/ti-soc-thermal/TODO | 0
>> drivers/{staging => thermal}/ti-soc-thermal/omap4-thermal-data.c | 0
>> drivers/{staging => thermal}/ti-soc-thermal/omap4xxx-bandgap.h | 0
>> drivers/{staging => thermal}/ti-soc-thermal/omap5-thermal-data.c | 0
>> drivers/{staging => thermal}/ti-soc-thermal/omap5xxx-bandgap.h | 0
>> drivers/{staging => thermal}/ti-soc-thermal/ti-bandgap.c | 0
>> drivers/{staging => thermal}/ti-soc-thermal/ti-bandgap.h | 0
>> drivers/{staging => thermal}/ti-soc-thermal/ti-thermal-common.c | 0
>> drivers/{staging => thermal}/ti-soc-thermal/ti-thermal.h | 0
>> 17 files changed, 6 insertions(+), 6 deletions(-)
>> rename {drivers/staging/ti-soc-thermal => Documentation/devicetree/bindings/thermal}/ti_soc_thermal.txt (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/Kconfig (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/Makefile (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/TODO (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/omap4-thermal-data.c (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/omap4xxx-bandgap.h (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/omap5-thermal-data.c (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/omap5xxx-bandgap.h (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/ti-bandgap.c (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/ti-bandgap.h (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/ti-thermal-common.c (100%)
>> rename drivers/{staging => thermal}/ti-soc-thermal/ti-thermal.h (100%)
>>
>
>
>
>
--
You have got to be excited about what you are doing. (L. Lamport)
Eduardo Valentin
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 295 bytes --]
next prev parent reply other threads:[~2013-05-28 14:30 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-15 15:45 [PATCH 0/2] staging -> thermal: move ti-soc-thermal to drivers/thermal Eduardo Valentin
2013-05-15 15:45 ` Eduardo Valentin
2013-05-15 15:46 ` [PATCH 1/2] thermal: introduce TI SoC thermal driver Eduardo Valentin
2013-05-15 15:46 ` Eduardo Valentin
2013-05-15 15:46 ` [PATCH 2/2] MAINTAINERS: update TI SoC thermal driver entry Eduardo Valentin
2013-05-15 15:46 ` Eduardo Valentin
2013-05-21 17:03 ` [PATCH 0/2] staging -> thermal: move ti-soc-thermal to drivers/thermal Greg KH
2013-05-21 18:16 ` Eduardo Valentin
2013-05-21 18:16 ` Eduardo Valentin
2013-05-28 2:41 ` Zhang Rui
2013-05-28 14:30 ` Eduardo Valentin [this message]
2013-05-28 14:30 ` Eduardo Valentin
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=51A4BF7F.4010705@ti.com \
--to=eduardo.valentin@ti.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rui.zhang@intel.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.