linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] Add support for RAA228244 and RAA228246
@ 2025-08-27 22:40 Grant Peltier
  2025-08-27 22:41 ` [PATCH 1/3] hwmon: (pmbus/isl68137) add support for Renesas " Grant Peltier
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Grant Peltier @ 2025-08-27 22:40 UTC (permalink / raw)
  To: linux
  Cc: grant.peltier.jg, robh, conor+dt, linux-hwmon, devicetree,
	linux-kernel

The RAA228244 and RAA228246 are both recently released dual-output
digital multiphase PWM controllers. Datasheets for both devices are not
publicly available but can be supplied by Renesas upon request and NDA.

Grant Peltier (3):
  hwmon: (pmbus/isl68137) add support for Renesas RAA228244 and
    RAA228246
  docs: hwmon: add RAA228244 and RAA228246 info to isl68137
    documentation
  dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246
    support

 .../bindings/hwmon/pmbus/isil,isl68137.yaml   |  2 ++
 Documentation/hwmon/isl68137.rst              | 20 +++++++++++++++++++
 drivers/hwmon/pmbus/isl68137.c                |  6 ++++++
 3 files changed, 28 insertions(+)

-- 
2.39.5


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

* [PATCH 1/3] hwmon: (pmbus/isl68137) add support for Renesas RAA228244 and RAA228246
  2025-08-27 22:40 [PATCH 0/3] Add support for RAA228244 and RAA228246 Grant Peltier
@ 2025-08-27 22:41 ` Grant Peltier
  2025-08-28 21:07   ` Guenter Roeck
  2025-08-27 22:42 ` [PATCH 2/3] docs: hwmon: add RAA228244 and RAA228246 info to isl68137 documentation Grant Peltier
  2025-08-27 22:44 ` [PATCH 3/3] dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246 support Grant Peltier
  2 siblings, 1 reply; 8+ messages in thread
From: Grant Peltier @ 2025-08-27 22:41 UTC (permalink / raw)
  To: linux
  Cc: grant.peltier.jg, robh, conor+dt, linux-hwmon, devicetree,
	linux-kernel

The RAA228244 and RAA228246 are both recently released digital dual-output
multiphase PWM controllers.

Signed-off-by: Grant Peltier <grantpeltier93@gmail.com>
---
 drivers/hwmon/pmbus/isl68137.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/hwmon/pmbus/isl68137.c b/drivers/hwmon/pmbus/isl68137.c
index c52c55d2e7f4..f27e2512f1ac 100644
--- a/drivers/hwmon/pmbus/isl68137.c
+++ b/drivers/hwmon/pmbus/isl68137.c
@@ -61,6 +61,8 @@ enum chips {
 	raa228004,
 	raa228006,
 	raa228228,
+	raa228244,
+	raa228246,
 	raa229001,
 	raa229004,
 	raa229621,
@@ -464,6 +466,8 @@ static const struct i2c_device_id raa_dmpvr_id[] = {
 	{"raa228004", raa_dmpvr2_hv},
 	{"raa228006", raa_dmpvr2_hv},
 	{"raa228228", raa_dmpvr2_2rail_nontc},
+	{"raa228244", raa_dmpvr2_2rail_nontc},
+	{"raa228246", raa_dmpvr2_2rail_nontc},
 	{"raa229001", raa_dmpvr2_2rail},
 	{"raa229004", raa_dmpvr2_2rail},
 	{"raa229621", raa_dmpvr2_2rail},
@@ -512,6 +516,8 @@ static const struct of_device_id isl68137_of_match[] = {
 	{ .compatible = "renesas,raa228004", .data = (void *)raa_dmpvr2_hv },
 	{ .compatible = "renesas,raa228006", .data = (void *)raa_dmpvr2_hv },
 	{ .compatible = "renesas,raa228228", .data = (void *)raa_dmpvr2_2rail_nontc },
+	{ .compatible = "renesas,raa228244", .data = (void *)raa_dmpvr2_2rail_nontc },
+	{ .compatible = "renesas,raa228246", .data = (void *)raa_dmpvr2_2rail_nontc },
 	{ .compatible = "renesas,raa229001", .data = (void *)raa_dmpvr2_2rail },
 	{ .compatible = "renesas,raa229004", .data = (void *)raa_dmpvr2_2rail },
 	{ .compatible = "renesas,raa229621", .data = (void *)raa_dmpvr2_2rail },
-- 
2.39.5


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

* [PATCH 2/3] docs: hwmon: add RAA228244 and RAA228246 info to isl68137 documentation
  2025-08-27 22:40 [PATCH 0/3] Add support for RAA228244 and RAA228246 Grant Peltier
  2025-08-27 22:41 ` [PATCH 1/3] hwmon: (pmbus/isl68137) add support for Renesas " Grant Peltier
@ 2025-08-27 22:42 ` Grant Peltier
  2025-08-28 21:07   ` Guenter Roeck
  2025-08-27 22:44 ` [PATCH 3/3] dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246 support Grant Peltier
  2 siblings, 1 reply; 8+ messages in thread
From: Grant Peltier @ 2025-08-27 22:42 UTC (permalink / raw)
  To: linux
  Cc: grant.peltier.jg, robh, conor+dt, linux-hwmon, devicetree,
	linux-kernel

The Renesas RAA228244 and RAA228246 are recently released digital
multiphase controllers.

Signed-off-by: Grant Peltier <grantpeltier93@gmail.com>
---
 Documentation/hwmon/isl68137.rst | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/Documentation/hwmon/isl68137.rst b/Documentation/hwmon/isl68137.rst
index 0e71b22047f8..5bc029c98383 100644
--- a/Documentation/hwmon/isl68137.rst
+++ b/Documentation/hwmon/isl68137.rst
@@ -374,6 +374,26 @@ Supported chips:
 
       Publicly available (after August 2020 launch) at the Renesas website
 
+  * Renesas RAA228244
+
+    Prefix: 'raa228244'
+
+    Addresses scanned: -
+
+    Datasheet:
+
+      Provided by Renesas upon request and NDA
+
+  * Renesas RAA228246
+
+    Prefix: 'raa228246'
+
+    Addresses scanned: -
+
+    Datasheet:
+
+      Provided by Renesas upon request and NDA
+
   * Renesas RAA229001
 
     Prefix: 'raa229001'
-- 
2.39.5


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

* [PATCH 3/3] dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246 support
  2025-08-27 22:40 [PATCH 0/3] Add support for RAA228244 and RAA228246 Grant Peltier
  2025-08-27 22:41 ` [PATCH 1/3] hwmon: (pmbus/isl68137) add support for Renesas " Grant Peltier
  2025-08-27 22:42 ` [PATCH 2/3] docs: hwmon: add RAA228244 and RAA228246 info to isl68137 documentation Grant Peltier
@ 2025-08-27 22:44 ` Grant Peltier
  2025-08-28 17:21   ` Conor Dooley
  2025-08-28 21:06   ` Guenter Roeck
  2 siblings, 2 replies; 8+ messages in thread
From: Grant Peltier @ 2025-08-27 22:44 UTC (permalink / raw)
  To: robh, conor+dt
  Cc: grant.peltier.jg, linux, linux-hwmon, devicetree, linux-kernel

Add device type support for raa228244 and raa228246.

Signed-off-by: Grant Peltier <grantpeltier93@gmail.com>
---
 .../devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml          | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml b/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml
index 3dc7f15484d2..ae23a05375cb 100644
--- a/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml
+++ b/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml
@@ -54,6 +54,8 @@ properties:
       - renesas,raa228004
       - renesas,raa228006
       - renesas,raa228228
+      - renesas,raa228244
+      - renesas,raa228246
       - renesas,raa229001
       - renesas,raa229004
       - renesas,raa229621
-- 
2.39.5


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

* Re: [PATCH 3/3] dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246 support
  2025-08-27 22:44 ` [PATCH 3/3] dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246 support Grant Peltier
@ 2025-08-28 17:21   ` Conor Dooley
  2025-08-28 21:06   ` Guenter Roeck
  1 sibling, 0 replies; 8+ messages in thread
From: Conor Dooley @ 2025-08-28 17:21 UTC (permalink / raw)
  To: Grant Peltier
  Cc: robh, conor+dt, grant.peltier.jg, linux, linux-hwmon, devicetree,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 52 bytes --]

Acked-by: Conor Dooley <conor.dooley@microchip.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH 3/3] dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246 support
  2025-08-27 22:44 ` [PATCH 3/3] dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246 support Grant Peltier
  2025-08-28 17:21   ` Conor Dooley
@ 2025-08-28 21:06   ` Guenter Roeck
  1 sibling, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2025-08-28 21:06 UTC (permalink / raw)
  To: Grant Peltier
  Cc: robh, conor+dt, grant.peltier.jg, linux-hwmon, devicetree,
	linux-kernel

On Wed, Aug 27, 2025 at 05:44:19PM -0500, Grant Peltier wrote:
> Add device type support for raa228244 and raa228246.
> 
> Signed-off-by: Grant Peltier <grantpeltier93@gmail.com>
> Acked-by: Conor Dooley <conor.dooley@microchip.com>

Applied.

Guenter

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

* Re: [PATCH 1/3] hwmon: (pmbus/isl68137) add support for Renesas RAA228244 and RAA228246
  2025-08-27 22:41 ` [PATCH 1/3] hwmon: (pmbus/isl68137) add support for Renesas " Grant Peltier
@ 2025-08-28 21:07   ` Guenter Roeck
  0 siblings, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2025-08-28 21:07 UTC (permalink / raw)
  To: Grant Peltier
  Cc: grant.peltier.jg, robh, conor+dt, linux-hwmon, devicetree,
	linux-kernel

On Wed, Aug 27, 2025 at 05:41:36PM -0500, Grant Peltier wrote:
> The RAA228244 and RAA228246 are both recently released digital dual-output
> multiphase PWM controllers.
> 
> Signed-off-by: Grant Peltier <grantpeltier93@gmail.com>

Applied.

Guenter

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

* Re: [PATCH 2/3] docs: hwmon: add RAA228244 and RAA228246 info to isl68137 documentation
  2025-08-27 22:42 ` [PATCH 2/3] docs: hwmon: add RAA228244 and RAA228246 info to isl68137 documentation Grant Peltier
@ 2025-08-28 21:07   ` Guenter Roeck
  0 siblings, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2025-08-28 21:07 UTC (permalink / raw)
  To: Grant Peltier
  Cc: grant.peltier.jg, robh, conor+dt, linux-hwmon, devicetree,
	linux-kernel

On Wed, Aug 27, 2025 at 05:42:47PM -0500, Grant Peltier wrote:
> The Renesas RAA228244 and RAA228246 are recently released digital
> multiphase controllers.
> 
> Signed-off-by: Grant Peltier <grantpeltier93@gmail.com>

Applied.

Guenter

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

end of thread, other threads:[~2025-08-28 21:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-27 22:40 [PATCH 0/3] Add support for RAA228244 and RAA228246 Grant Peltier
2025-08-27 22:41 ` [PATCH 1/3] hwmon: (pmbus/isl68137) add support for Renesas " Grant Peltier
2025-08-28 21:07   ` Guenter Roeck
2025-08-27 22:42 ` [PATCH 2/3] docs: hwmon: add RAA228244 and RAA228246 info to isl68137 documentation Grant Peltier
2025-08-28 21:07   ` Guenter Roeck
2025-08-27 22:44 ` [PATCH 3/3] dt-bindings: hwmon: (pmbus/isl68137) add RAA228244 and RAA228246 support Grant Peltier
2025-08-28 17:21   ` Conor Dooley
2025-08-28 21:06   ` Guenter Roeck

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).