devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Xinwei Kong <kong.kongxinwei@hisilicon.com>
To: edubezval@gmail.com, rui.zhuang@intel.com,
	amit.kucheria@linaro.org, punit.agrawal@arm.com,
	Javi.Merino@arm.com, jorge.ramirez-ortiz@linaro.org,
	haojian.zhuang@linaro.org, linux-pm@vger.kernel.org
Cc: dan.zhao@hisilicon.com, devicetree@vger.kernel.org,
	gongyu@hisilicon.com, guodong.xu@linaro.org, robh@kernel.org,
	mark.rutland@arm.com, linuxarm@huawei.com,
	zhenwei.wang@hisilicon.com, leo.yan@linaro.org,
	mporter@konsulko.com, zhangfei.gao@linaro.org,
	liguozhu@hisilicon.com
Subject: [PATCH v5 0/3] 96boards: add thermal senor support to hikey board
Date: Mon, 18 May 2015 15:11:46 +0800	[thread overview]
Message-ID: <1431933109-22764-1-git-send-email-kong.kongxinwei@hisilicon.com> (raw)

From: kongxinwei <kong.kongxinwei@hisilicon.com>

The Linaro connect introduce 96boards series in Hong Kong,The HiKey board
is the first board to be certified 96Boards Consumer Edition compatible.
This board is based on the HiSilicon SoC. you can get more information
from https://www.96boards.org.

The hisilicon SoC contains thermal module, this thermal module has 4 sensors,

	- sensor 0: local sensor;
	- sensor 1: remote sensor for ACPU cluster 1;
	- sensor 2: remote sensor for ACPU cluster 2;
	- sensor 3: remote sensor for GPU;

It can obtain this device temperature by operating this hardware. The new
sensor driver satisfies thermal framework and to realize the ACPU ,GPU and
so on to cool function.

Changes v4->v5;
* Rebase to kernel 4.1-rc1
* Add the DTS file according to the maintainer advice
* Clean up "include" header file and fix detail format
* Deal with negative temperature and add mutex lock to
  protect binding irq variable
* Remove this "const struct themal_trip" from "struct
  hisi_thermal_sensor", making it as local variable
* Make sensor_temp part of "struct hisi_thremal_sensors"

Changes v3->v4;
* using "usleep_range" function instead of "msleep" function
* delete code detail error

Changes v2->v3;
* delete sensor id property in binding document 
* fix sensor driver to satisfy sensor register after deleting sensor id
  property

Changes v1->v2;
* change patch's position between binding document and driver file
* clean up some regiser for enabling thermal sensor
* use mutex lock to replace the spin lock

Changes v0->v1;
* Delete this hi6220 dtsi.
* Fix documentation and error checks.
* Modify this driver which makes use of kernel to decide how to dynamically
  bind the interrupt to hottest sensor.
* Delete "sensor-thres-temp" property and read thermal_zone trips points
  replace of it.
* Delete "sensor-reset-temp" property and define the fixed value replace
  of it.

kongxinwei (3):
  dt-bindings: Document the hi6220 thermal sensor bindings
  thermal: hisilicon: add new hisilicon thermal sensor driver
  dts: hi6220: enable thermal sensor for hisilicon SoC

 .../bindings/thermal/hisilicon-thermal.txt         |  23 ++
 arch/arm64/boot/dts/hisilicon/hi6220.dtsi          | 127 +++++++
 drivers/thermal/Kconfig                            |   8 +
 drivers/thermal/Makefile                           |   1 +
 drivers/thermal/hisi_thermal.c                     | 418 +++++++++++++++++++++
 5 files changed, 577 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/thermal/hisilicon-thermal.txt
 create mode 100644 arch/arm64/boot/dts/hisilicon/hi6220.dtsi
 create mode 100644 drivers/thermal/hisi_thermal.c

-- 
1.9.1



             reply	other threads:[~2015-05-18  7:11 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-18  7:11 Xinwei Kong [this message]
2015-05-18  7:11 ` [PATCH v5 1/3] dt-bindings: Document the hi6220 thermal sensor bindings Xinwei Kong
2015-05-20  1:06   ` Leo Yan
2015-05-18  7:11 ` [PATCH v5 2/3] thermal: hisilicon: add new hisilicon thermal sensor driver Xinwei Kong
     [not found]   ` <1431933109-22764-3-git-send-email-kong.kongxinwei-C8/M+/jPZTeaMJb+Lgu22Q@public.gmane.org>
2015-05-20  4:46     ` Eduardo Valentin
     [not found]       ` <20150520044638.GA4295-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2015-05-20  3:23         ` Xinwei Kong
2015-05-18  7:11 ` [PATCH v5 3/3] dts: hi6220: enable thermal sensor for hisilicon SoC Xinwei Kong
2015-05-20  4:51   ` Eduardo Valentin
2015-05-20  3:02     ` Xinwei Kong
2015-05-20  3:02     ` Leo Yan

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=1431933109-22764-1-git-send-email-kong.kongxinwei@hisilicon.com \
    --to=kong.kongxinwei@hisilicon.com \
    --cc=Javi.Merino@arm.com \
    --cc=amit.kucheria@linaro.org \
    --cc=dan.zhao@hisilicon.com \
    --cc=devicetree@vger.kernel.org \
    --cc=edubezval@gmail.com \
    --cc=gongyu@hisilicon.com \
    --cc=guodong.xu@linaro.org \
    --cc=haojian.zhuang@linaro.org \
    --cc=jorge.ramirez-ortiz@linaro.org \
    --cc=leo.yan@linaro.org \
    --cc=liguozhu@hisilicon.com \
    --cc=linux-pm@vger.kernel.org \
    --cc=linuxarm@huawei.com \
    --cc=mark.rutland@arm.com \
    --cc=mporter@konsulko.com \
    --cc=punit.agrawal@arm.com \
    --cc=robh@kernel.org \
    --cc=rui.zhuang@intel.com \
    --cc=zhangfei.gao@linaro.org \
    --cc=zhenwei.wang@hisilicon.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).