All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/5] SCPI Sensor support
@ 2015-09-14 13:00 ` Punit Agrawal
  0 siblings, 0 replies; 60+ messages in thread
From: Punit Agrawal @ 2015-09-14 13:00 UTC (permalink / raw)
  To: linux-arm-kernel, devicetree
  Cc: sudeep.holla, linux-pm, lm-sensors, liviu.dudau, edubezval,
	mark.rutland, linux, linux-kernel, robh+dt, Punit Agrawal

Hi

The series adds support for SCPI based sensors for ARM development
platform. In addition to supporting sensors, when a temperature sensor
is discovered the driver registers the sensor with the thermal
framework.

The sensor patches here have been split out from a longer series
adding support for registering power model based cooling devices for
the CPU via device tree. Earliers postings can be seen at [0], [1].

Patches 1-3 create a hwmon sensor driver for sensors provided by SCPI
firmware. Patch 4 adds support for the temperature sensors to register
with the thermal framework. This allows setting up platform thermals
using OF thermal bindings.

The last patch adds support for the sensors in the Juno device tree.

The patches depend on SCPI and mailbox patches[2] from Sudeep. The
SCPI protocol document with details of the sensor interface can be
found at [3].

I'd like to aim for merging the patches with the SCPI changes if
possible. The hwmon patches have been acked by Guenter. If there
aren't any objections, I would like to request acks for the binding
updates in Patch 1.

Thanks,
Punit

Changes v2->v3
  - split out the sensor patches (posted here)
  - rebase onto v4.3-rc1
  
Changes v1->v2
  - added documentation for the scpi-hwmon driver
  - replaced static allocation of platform structure in scpi-hwmon.c
    with dynamic allocation
  - re-structured registering of thermal zones to better handle
    error conditions
  - reduced chattiness in scpi-hwmon.c
  - corrected sensor numbering to align with hwmon documentation
  - dynamic allocation of attributes and attribute groups

[0] http://thread.gmane.org/gmane.linux.kernel/2002152
[1] http://thread.gmane.org/gmane.linux.kernel/2011466
[2] http://thread.gmane.org/gmane.linux.kernel/2009735
[3] http://infocenter.arm.com/help/topic/com.arm.doc.dui0922b/index.html

Punit Agrawal (5):
  Documentation: add DT bindings for ARM SCPI sensors
  firmware: arm_scpi: Extend to support sensors
  hwmon: Support sensors exported via ARM SCP interface
  hwmon: Support registration of thermal zones for SCP temperature
    sensors
  arm64: dts: Add sensor node to Juno dt

 Documentation/devicetree/bindings/arm/arm,scpi.txt |  15 ++
 Documentation/hwmon/scpi-hwmon                     |  33 +++
 arch/arm64/boot/dts/arm/juno-base.dtsi             |   5 +
 drivers/firmware/arm_scpi.c                        |  60 +++++
 drivers/hwmon/Kconfig                              |   8 +
 drivers/hwmon/Makefile                             |   1 +
 drivers/hwmon/scpi-hwmon.c                         | 288 +++++++++++++++++++++
 include/linux/scpi_protocol.h                      |  17 ++
 8 files changed, 427 insertions(+)
 create mode 100644 Documentation/hwmon/scpi-hwmon
 create mode 100644 drivers/hwmon/scpi-hwmon.c

-- 
2.5.0


^ permalink raw reply	[flat|nested] 60+ messages in thread

end of thread, other threads:[~2015-09-15 16:32 UTC | newest]

Thread overview: 60+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-14 13:00 [PATCH v3 0/5] SCPI Sensor support Punit Agrawal
2015-09-14 13:00 ` Punit Agrawal
2015-09-14 13:00 ` [PATCH v3 1/5] Documentation: add DT bindings for ARM SCPI sensors Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:14   ` Mark Rutland
2015-09-14 13:14     ` Mark Rutland
2015-09-14 13:14     ` Mark Rutland
2015-09-14 13:34     ` Punit Agrawal
2015-09-14 13:34       ` Punit Agrawal
2015-09-14 13:34       ` Punit Agrawal
2015-09-14 13:49       ` Mark Rutland
2015-09-14 13:49         ` Mark Rutland
2015-09-14 14:38         ` Punit Agrawal
2015-09-14 14:38           ` Punit Agrawal
2015-09-14 14:38           ` Punit Agrawal
2015-09-14 14:43           ` Mark Rutland
2015-09-14 14:43             ` Mark Rutland
2015-09-14 14:43             ` Mark Rutland
2015-09-14 15:01             ` Punit Agrawal
2015-09-14 15:01               ` Punit Agrawal
2015-09-14 15:01               ` Punit Agrawal
2015-09-14 15:15               ` Mark Rutland
2015-09-14 15:15                 ` Mark Rutland
2015-09-14 16:03                 ` Punit Agrawal
2015-09-14 16:03                   ` Punit Agrawal
2015-09-14 16:03                   ` Punit Agrawal
2015-09-14 17:18           ` Jon Medhurst (Tixy)
2015-09-14 17:18             ` Jon Medhurst (Tixy)
2015-09-14 17:18             ` Jon Medhurst (Tixy)
2015-09-15  9:37             ` Punit Agrawal
2015-09-15  9:37               ` Punit Agrawal
2015-09-15  9:37               ` Punit Agrawal
2015-09-15 10:46               ` Jon Medhurst (Tixy)
2015-09-15 10:46                 ` Jon Medhurst (Tixy)
2015-09-15 11:03                 ` Mark Rutland
2015-09-15 11:03                   ` Mark Rutland
2015-09-15 11:03                   ` Mark Rutland
2015-09-15 11:37                   ` Jon Medhurst (Tixy)
2015-09-15 11:37                     ` Jon Medhurst (Tixy)
2015-09-15 11:37                     ` Jon Medhurst (Tixy)
2015-09-15 16:04                 ` Punit Agrawal
2015-09-15 16:04                   ` Punit Agrawal
2015-09-15 16:04                   ` Punit Agrawal
2015-09-15 16:31                   ` Jon Medhurst (Tixy)
2015-09-15 16:31                     ` Jon Medhurst (Tixy)
2015-09-14 13:00 ` [PATCH v3 2/5] firmware: arm_scpi: Extend to support sensors Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00 ` [PATCH v3 3/5] hwmon: Support sensors exported via ARM SCP interface Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00 ` [Patch v3 4/5] hwmon: Support registration of thermal zones for SCP temperature sensors Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:19   ` Punit Agrawal
2015-09-14 13:19     ` Punit Agrawal
2015-09-14 13:19     ` Punit Agrawal
2015-09-14 13:00 ` [PATCH v3 4/5] hwmon: Support thermal zones registration " Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00 ` [PATCH v3 5/5] arm64: dts: Add sensor node to Juno dt Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal

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.