From: Caesar Wang <caesar.upstream@gmail.com>
To: edubezval@gmail.com, linux-pm@vger.kernel.org
Cc: Caesar Wang <wxt@rock-chips.com>,
huangtao@rock-chips.com, javi.merino@arm.com,
Heiko Stuebner <heiko@sntech.de>, Keerthy <j-keerthy@ti.com>,
dmitry.torokhov@gmail.com, peter@piie.net, dianders@chromium.org,
linux-kernel@vger.kernel.org, linux-rockchip@lists.infradead.org,
smbarber@google.com, cf@rock-chips.com, briannorris@google.com,
Zhang Rui <rui.zhang@intel.com>,
linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v4 0/4] Thermal: Support for hardware-tracked trip points
Date: Fri, 27 May 2016 16:41:59 +0800 [thread overview]
Message-ID: <57480857.4070904@gmail.com> (raw)
In-Reply-To: <1464337408-7123-1-git-send-email-wxt@rock-chips.com>
Forget to send a patch, sorry for the noise.:-(
Please ignore this series patches [PATCH v4 0/4].
RESEND the new series patches "[RESEND PATCH v4 0/5]".
On 2016年05月27日 16:23, Caesar Wang wrote:
> The history patches come from Mikko and Sascha.
> http://thread.gmane.org/gmane.linux.power-management.general/59451
>
> Now, I pick them up to continue upstream.
> Nevermind!
>
> This series history patches:
> v3: https://lkml.org/lkml/2016/5/24/797
> v2: https://lkml.org/lkml/2016/5/3/220
> v1: https://lkml.org/lkml/2016/4/24/227
>
> This series adds support for hardware trip points. It picks up earlier
> work from Mikko Perttunen. Mikko implemented hardware trip points as part
> of the device tree support. It was suggested back then to move the
> functionality to the thermal core instead of putting more code into the
> device tree support. This series does exactly that.
>
> This series patches rebase the conflicts.
> Note that the hardware-tracked trip points are very well tested currently.
>
> Verified and tested on https://github.com/Caesar-github/rockchip/tree/wip/fixes-thermal-0525
> That's based on linux-kernel 20160524.
>
>
> Changes in v4:
> - as the Javi comments, %s/implemnets/implements.
>
> Changes in v3:
> - as the Javi comments on https://patchwork.kernel.org/patch/9001311/.
> - add the select if they set the option for devicetree.
> - Add the peter's ACK.
>
> Changes in v2:
> - add the commit in patch[v2 2/5].
> - Update the commit for patch[v2 4/5].
>
> Caesar Wang (1):
> thermal: rockchip: add the set_trips function
>
> Sascha Hauer (3):
> thermal: of: implement .set_trips for device tree thermal zones
> thermal: streamline get_trend callbacks
> thermal: bang-bang governor: act on lower trip boundary
>
> drivers/thermal/gov_bang_bang.c | 2 +-
> drivers/thermal/of-thermal.c | 30 +++++++++++------
> drivers/thermal/rockchip_thermal.c | 39 ++++++++++++++++++++++
> drivers/thermal/ti-soc-thermal/ti-thermal-common.c | 25 +++++---------
> include/linux/thermal.h | 6 +++-
> 5 files changed, 73 insertions(+), 29 deletions(-)
>
WARNING: multiple messages have this Message-ID (diff)
From: caesar.upstream@gmail.com (Caesar Wang)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 0/4] Thermal: Support for hardware-tracked trip points
Date: Fri, 27 May 2016 16:41:59 +0800 [thread overview]
Message-ID: <57480857.4070904@gmail.com> (raw)
In-Reply-To: <1464337408-7123-1-git-send-email-wxt@rock-chips.com>
Forget to send a patch, sorry for the noise.:-(
Please ignore this series patches [PATCH v4 0/4].
RESEND the new series patches "[RESEND PATCH v4 0/5]".
On 2016?05?27? 16:23, Caesar Wang wrote:
> The history patches come from Mikko and Sascha.
> http://thread.gmane.org/gmane.linux.power-management.general/59451
>
> Now, I pick them up to continue upstream.
> Nevermind!
>
> This series history patches:
> v3: https://lkml.org/lkml/2016/5/24/797
> v2: https://lkml.org/lkml/2016/5/3/220
> v1: https://lkml.org/lkml/2016/4/24/227
>
> This series adds support for hardware trip points. It picks up earlier
> work from Mikko Perttunen. Mikko implemented hardware trip points as part
> of the device tree support. It was suggested back then to move the
> functionality to the thermal core instead of putting more code into the
> device tree support. This series does exactly that.
>
> This series patches rebase the conflicts.
> Note that the hardware-tracked trip points are very well tested currently.
>
> Verified and tested on https://github.com/Caesar-github/rockchip/tree/wip/fixes-thermal-0525
> That's based on linux-kernel 20160524.
>
>
> Changes in v4:
> - as the Javi comments, %s/implemnets/implements.
>
> Changes in v3:
> - as the Javi comments on https://patchwork.kernel.org/patch/9001311/.
> - add the select if they set the option for devicetree.
> - Add the peter's ACK.
>
> Changes in v2:
> - add the commit in patch[v2 2/5].
> - Update the commit for patch[v2 4/5].
>
> Caesar Wang (1):
> thermal: rockchip: add the set_trips function
>
> Sascha Hauer (3):
> thermal: of: implement .set_trips for device tree thermal zones
> thermal: streamline get_trend callbacks
> thermal: bang-bang governor: act on lower trip boundary
>
> drivers/thermal/gov_bang_bang.c | 2 +-
> drivers/thermal/of-thermal.c | 30 +++++++++++------
> drivers/thermal/rockchip_thermal.c | 39 ++++++++++++++++++++++
> drivers/thermal/ti-soc-thermal/ti-thermal-common.c | 25 +++++---------
> include/linux/thermal.h | 6 +++-
> 5 files changed, 73 insertions(+), 29 deletions(-)
>
next prev parent reply other threads:[~2016-05-27 8:41 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-27 8:23 [PATCH v4 0/4] Thermal: Support for hardware-tracked trip points Caesar Wang
2016-05-27 8:23 ` Caesar Wang
2016-05-27 8:23 ` [PATCH v4 1/4] thermal: of: implement .set_trips for device tree thermal zones Caesar Wang
[not found] ` <1464337408-7123-1-git-send-email-wxt-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
2016-05-27 8:23 ` [PATCH v4 2/4] thermal: streamline get_trend callbacks Caesar Wang
2016-05-27 8:23 ` Caesar Wang
2016-05-27 8:23 ` [PATCH v4 3/4] thermal: bang-bang governor: act on lower trip boundary Caesar Wang
2016-05-27 8:23 ` Caesar Wang
2016-05-27 8:23 ` [PATCH v4 4/4] thermal: rockchip: add the set_trips function Caesar Wang
2016-05-27 8:23 ` Caesar Wang
2016-05-27 8:23 ` Caesar Wang
2016-05-27 8:41 ` Caesar Wang [this message]
2016-05-27 8:41 ` [PATCH v4 0/4] Thermal: Support for hardware-tracked trip points Caesar Wang
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=57480857.4070904@gmail.com \
--to=caesar.upstream@gmail.com \
--cc=briannorris@google.com \
--cc=cf@rock-chips.com \
--cc=dianders@chromium.org \
--cc=dmitry.torokhov@gmail.com \
--cc=edubezval@gmail.com \
--cc=heiko@sntech.de \
--cc=huangtao@rock-chips.com \
--cc=j-keerthy@ti.com \
--cc=javi.merino@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=peter@piie.net \
--cc=rui.zhang@intel.com \
--cc=smbarber@google.com \
--cc=wxt@rock-chips.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.