mbox series

[linux,dev-6.6,0/2] Add ltc4286 and ltc4287 driver support

Message ID 20240709115855.17623-1-potin.lai.pt@gmail.com
Headers show
Series Add ltc4286 and ltc4287 driver support | expand

Message

Potin Lai July 9, 2024, 11:58 a.m. UTC
Backport ltc4286 and ltc4287 driver support to openbmc linux.

LORE Link: https://lore.kernel.org/all/20231123015440.199822-1-Delphine_CC_Chiu@Wiwynn.com/

Delphine CC Chiu (2):
  dt-bindings: hwmon: Add lltc ltc4286 driver bindings
  hwmon: pmbus: Add ltc4286 driver

 .../bindings/hwmon/lltc,ltc4286.yaml          |  50 +++++
 Documentation/hwmon/index.rst                 |   1 +
 Documentation/hwmon/ltc4286.rst               |  95 ++++++++++
 MAINTAINERS                                   |  10 +
 drivers/hwmon/pmbus/Kconfig                   |  10 +
 drivers/hwmon/pmbus/Makefile                  |   1 +
 drivers/hwmon/pmbus/ltc4286.c                 | 176 ++++++++++++++++++
 7 files changed, 343 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/hwmon/lltc,ltc4286.yaml
 create mode 100644 Documentation/hwmon/ltc4286.rst
 create mode 100644 drivers/hwmon/pmbus/ltc4286.c

Comments

Andrew Jeffery July 16, 2024, 4:09 a.m. UTC | #1
On Tue, 2024-07-09 at 19:58 +0800, Potin Lai wrote:
> Backport ltc4286 and ltc4287 driver support to openbmc linux.
> 
> LORE Link: https://lore.kernel.org/all/20231123015440.199822-1-Delphine_CC_Chiu@Wiwynn.com/
> 
> Delphine CC Chiu (2):
>   dt-bindings: hwmon: Add lltc ltc4286 driver bindings
>   hwmon: pmbus: Add ltc4286 driver
> 
>  .../bindings/hwmon/lltc,ltc4286.yaml          |  50 +++++
>  Documentation/hwmon/index.rst                 |   1 +
>  Documentation/hwmon/ltc4286.rst               |  95 ++++++++++
>  MAINTAINERS                                   |  10 +
>  drivers/hwmon/pmbus/Kconfig                   |  10 +
>  drivers/hwmon/pmbus/Makefile                  |   1 +
>  drivers/hwmon/pmbus/ltc4286.c                 | 176 ++++++++++++++++++
>  7 files changed, 343 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/hwmon/lltc,ltc4286.yaml
>  create mode 100644 Documentation/hwmon/ltc4286.rst
>  create mode 100644 drivers/hwmon/pmbus/ltc4286.c
> 

Thanks Potin. I've backported these into openbmc/linux dev-6.6 from
upstream directly, along with some subsequent cleanups.

Andrew