linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Michael Kao <michael.kao@mediatek.com>
To: Daniel Lezcano <daniel.lezcano@linaro.org>,
	Zhang Rui <rui.zhang@intel.com>, <linux-pm@vger.kernel.org>,
	<srv_heupstream@mediatek.com>
Cc: Eduardo Valentin <edubezval@gmail.com>,
	Rob Herring <robh+dt@kernel.org>,
	 Mark Rutland <mark.rutland@arm.com>,
	Matthias Brugger <matthias.bgg@gmail.com>, <hsinyi@chromium.org>,
	<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-mediatek@lists.infradead.org>
Subject: Re: [v3,1/3] thermal: mediatek: Relocate driver to mediatek folder
Date: Thu, 22 Apr 2021 16:47:28 +0800	[thread overview]
Message-ID: <6db776994f939cd5403addeffdc78fc82bc98e7a.camel@mediatek.com> (raw)
In-Reply-To: <836581c1-0738-8e42-b168-b54d0bd078a5@linaro.org>

On Tue, 2021-04-20 at 23:22 +0200, Daniel Lezcano wrote:
> On 12/03/2021 04:40, Michael Kao wrote:
> > Add Mediatek proprietary folder to upstream more thermal zone and
> > cooler
> > drivers. Relocate the original thermal controller driver to it and
> > rename
> > as soc_temp.c to show its purpose more clearly.
> 
> We already know the purpose :)
> 
> soc_temp gives no additional information.
> 
> Either keep the name or give the hardware sensor name. It is a driver
> directory.
> 

Dear Daniel,
The new thermal hardware design called lvts (Low voltage thermal
sensor).
Instead of original one using auxadc, the lvts use lvts device to
access thermal senosrs.
It will save power and be more efficient.
We use the config CONFIG_MTK_THERMAL and CONFIG_MTK_SOC_THERMAL_LVTS[1]
to select the different hardware archtecture.

[1] [v3,2/3] thermal: mediatek: Add LVTS drivers for SoC theraml zones

https://patchwork.kernel.org/project/linux-mediatek/patch/20210312034018.17437-3-michael.kao@mediatek.com/

> > Signed-off-by: Michael Kao <michael.kao@mediatek.com>
> > ---
> >  drivers/thermal/Kconfig                       | 14 ++++-------
> >  drivers/thermal/Makefile                      |  2 +-
> >  drivers/thermal/mediatek/Kconfig              | 23
> > +++++++++++++++++++
> >  drivers/thermal/mediatek/Makefile             |  1 +
> >  .../{mtk_thermal.c => mediatek/soc_temp.c}    |  0
> 
> [ ... ]
> 
> vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
> 
> 
> > +config MTK_THERMAL
> > +	tristate "Mediatek thermal drivers"
> > +	depends on THERMAL_OF
> > +	help
> > +	  This is the option for Mediatek thermal software
> > +	  solutions. Please enable corresponding options to
> > +	  get temperature information from thermal sensors or
> > +	  turn on throttle mechaisms for thermal mitigation.
> > +
> > +if MTK_THERMAL
> 
> 
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> 
> All the above not needed.
> 
> > +config MTK_SOC_THERMAL
> > +	tristate "Temperature sensor driver for mediatek SoCs"
> > +	depends on HAS_IOMEM
> > +	depends on NVMEM
> > +	depends on RESET_CONTROLLER
> > +	help
> > +	  Enable this option if you want to get SoC temperature
> > +	  information for Mediatek platforms. This driver
> > +	  configures thermal controllers to collect temperature
> > +	  via AUXADC interface.
> > +
> > +endif
> > diff --git a/drivers/thermal/mediatek/Makefile
> > b/drivers/thermal/mediatek/Makefile
> > new file mode 100644
> > index 000000000000..f75313ddce5e
> > --- /dev/null
> > +++ b/drivers/thermal/mediatek/Makefile
> > @@ -0,0 +1 @@
> > +obj-$(CONFIG_MTK_SOC_THERMAL)	+= soc_temp.o
> > diff --git a/drivers/thermal/mtk_thermal.c
> > b/drivers/thermal/mediatek/soc_temp.c
> > similarity index 100%
> > rename from drivers/thermal/mtk_thermal.c
> > rename to drivers/thermal/mediatek/soc_temp.c
> 
> 
> 
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2021-04-22  8:49 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-12  3:40 [v3,0/3] thermal: mediatek: Add LVTS architecture thermal controller Michael Kao
2021-03-12  3:40 ` [v3,1/3] thermal: mediatek: Relocate driver to mediatek folder Michael Kao
2021-04-07  9:08   ` Michael Kao
2021-04-07  9:10     ` Daniel Lezcano
2021-04-20 21:22   ` Daniel Lezcano
2021-04-22  8:32     ` Michael Kao
2021-04-22  8:47     ` Michael Kao [this message]
2021-03-12  3:40 ` [v3,2/3] thermal: mediatek: Add LVTS drivers for SoC theraml zones Michael Kao
2021-04-07  9:09   ` Michael Kao
2021-03-12  3:40 ` [v3, 3/3] dt-bindings: thermal: Add binding document for mt6873 thermal controller Michael Kao
2021-03-23 20:20   ` Rob Herring

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=6db776994f939cd5403addeffdc78fc82bc98e7a.camel@mediatek.com \
    --to=michael.kao@mediatek.com \
    --cc=daniel.lezcano@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=edubezval@gmail.com \
    --cc=hsinyi@chromium.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=matthias.bgg@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=rui.zhang@intel.com \
    --cc=srv_heupstream@mediatek.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).