mbox series

[v4,0/3] hwmon: Adding support for Microchip Sparx5 SoC

Message ID 20200618135951.25441-1-lars.povlsen@microchip.com
Headers show
Series hwmon: Adding support for Microchip Sparx5 SoC | expand

Message

Lars Povlsen June 18, 2020, 1:59 p.m. UTC
This is an add-on series to the main SoC Sparx5 series
(Message-ID: <20200615133242.24911-1-lars.povlsen@microchip.com>

Changes in v4:
- Added sparx5-temp.rst
- Sorted #include lines
- Use AHB clock to derive sensor divider
- Added comments to temperature calculation

Changes in v3:
- Enabled driver for COMPILE_TEST
- Use "bitfield.h"
- Trimmed #includes even more
- Removed unnecessary devm_add_action()
- Maintain sort order in Makefile
- Minor cosmetics

Changes in v2:
- Removed unnecessary #includes
- Statement reordering in s5_read()
- Replaced EINVAL with EIO
- Add 'break' in default: case statement.
- Removed extra ()
- Removed superfluous initialization

Lars Povlsen (3):
  dt-bindings: hwmon: Add Sparx5 temperature sensor
  arm64: dts: sparx5: Add hwmon temperature sensor
  hwmon: sparx5: Add Sparx5 SoC temperature driver

 .../bindings/hwmon/microchip,sparx5-temp.yaml |  44 +++++
 Documentation/hwmon/sparx5-temp.rst           |  33 ++++
 arch/arm64/boot/dts/microchip/sparx5.dtsi     |   7 +
 drivers/hwmon/Kconfig                         |  10 ++
 drivers/hwmon/Makefile                        |   1 +
 drivers/hwmon/sparx5-temp.c                   | 168 ++++++++++++++++++
 6 files changed, 263 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/hwmon/microchip,sparx5-temp.yaml
 create mode 100644 Documentation/hwmon/sparx5-temp.rst
 create mode 100644 drivers/hwmon/sparx5-temp.c

--
2.27.0

Comments

Rob Herring July 9, 2020, 11:13 p.m. UTC | #1
On Thu, 18 Jun 2020 15:59:49 +0200, Lars Povlsen wrote:
> This add the DT binding specification for the Sparx5 temperature

> sensor.

> 

> Signed-off-by: Lars Povlsen <lars.povlsen@microchip.com>

> ---

>  .../bindings/hwmon/microchip,sparx5-temp.yaml | 44 +++++++++++++++++++

>  1 file changed, 44 insertions(+)

>  create mode 100644 Documentation/devicetree/bindings/hwmon/microchip,sparx5-temp.yaml

> 


Reviewed-by: Rob Herring <robh@kernel.org>