public inbox for linux-hwmon@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] hwmon/pmbus: (isl68137) Add support for Renesas RAA228942 and RAA228943
@ 2026-03-16  5:35 Dawei Liu
  2026-03-16  5:35 ` [PATCH 2/2] dt-bindings: hwmon: isl68137: Add compatible string for " Dawei Liu
                   ` (2 more replies)
  0 siblings, 3 replies; 23+ messages in thread
From: Dawei Liu @ 2026-03-16  5:35 UTC (permalink / raw)
  To: linux
  Cc: linux-hwmon, linux-kernel, linux-doc, devicetree,
	linux-renesas-soc, robh, krzk+dt, conor+dt, corbet, skhan,
	geert+renesas, magnus.damm, grant.peltier.jg, Dawei Liu

Both RAA228942 and RAA228943 are digital dual-output
16-Phase(X+Y ≤ 16) PWM controllers

Signed-off-by: Dawei Liu <dawei.liu.jy@renesas.com>
---
 Documentation/hwmon/isl68137.rst | 20 ++++++++++++++++++++
 drivers/hwmon/pmbus/isl68137.c   |  6 ++++++
 2 files changed, 26 insertions(+)

diff --git a/Documentation/hwmon/isl68137.rst b/Documentation/hwmon/isl68137.rst
index e77f582c2..0ce20d091 100644
--- a/Documentation/hwmon/isl68137.rst
+++ b/Documentation/hwmon/isl68137.rst
@@ -394,6 +394,26 @@ Supported chips:
 
       Provided by Renesas upon request and NDA
 
+  * Renesas RAA228942
+
+    Prefix: 'raa228942'
+
+    Addresses scanned: -
+
+    Datasheet:
+
+      Provided by Renesas upon request and NDA
+
+  * Renesas RAA228943
+
+    Prefix: 'raa228943'
+
+    Addresses scanned: -
+
+    Datasheet:
+
+      Provided by Renesas upon request and NDA
+
   * Renesas RAA229001
 
     Prefix: 'raa229001'
diff --git a/drivers/hwmon/pmbus/isl68137.c b/drivers/hwmon/pmbus/isl68137.c
index 78cff9712..da2484d42 100644
--- a/drivers/hwmon/pmbus/isl68137.c
+++ b/drivers/hwmon/pmbus/isl68137.c
@@ -63,6 +63,8 @@ enum chips {
 	raa228228,
 	raa228244,
 	raa228246,
+	raa228942,
+	raa228943,
 	raa229001,
 	raa229004,
 	raa229141,
@@ -478,6 +480,8 @@ static const struct i2c_device_id raa_dmpvr_id[] = {
 	{"raa228228", raa_dmpvr2_2rail_nontc},
 	{"raa228244", raa_dmpvr2_2rail_nontc},
 	{"raa228246", raa_dmpvr2_2rail_nontc},
+	{"raa228942", raa_dmpvr2_2rail_nontc},
+	{"raa228943", raa_dmpvr2_2rail_nontc},
 	{"raa229001", raa_dmpvr2_2rail},
 	{"raa229004", raa_dmpvr2_2rail},
 	{"raa229141", raa_dmpvr2_2rail_pmbus},
@@ -529,6 +533,8 @@ static const struct of_device_id isl68137_of_match[] = {
 	{ .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,raa228942", .data = (void *)raa_dmpvr2_2rail_nontc },
+	{ .compatible = "renesas,raa228943", .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.34.1


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

end of thread, other threads:[~2026-03-23  7:20 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-16  5:35 [PATCH 1/2] hwmon/pmbus: (isl68137) Add support for Renesas RAA228942 and RAA228943 Dawei Liu
2026-03-16  5:35 ` [PATCH 2/2] dt-bindings: hwmon: isl68137: Add compatible string for " Dawei Liu
2026-03-16  8:25   ` Krzysztof Kozlowski
2026-03-16  9:00     ` Dawei Liu
2026-03-18  8:24       ` Krzysztof Kozlowski
2026-03-18 18:35       ` Krzysztof Kozlowski
2026-03-16 15:47 ` [PATCH 1/2] hwmon/pmbus: (isl68137) Add support for Renesas " Guenter Roeck
2026-03-17  2:50   ` Dawei Liu
2026-03-17  3:52     ` Guenter Roeck
2026-03-18  2:19 ` [PATCH v2 0/3] hwmon/pmbus: isl68137: Add RAA228942/RAA228943 support Dawei Liu
2026-03-18  2:19   ` [PATCH v2 1/3] hwmon: (pmbus/isl68137) Remove unused enum chips Dawei Liu
2026-03-18  4:48     ` Guenter Roeck
2026-03-18  2:19   ` [PATCH v2 2/3] hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and RAA228943 Dawei Liu
2026-03-18  5:23     ` Guenter Roeck
2026-03-18  8:25       ` Krzysztof Kozlowski
2026-03-18 17:49         ` Guenter Roeck
2026-03-18  2:19   ` [PATCH v2 3/3] dt-bindings: hwmon: isl68137: Add compatible strings for " Dawei Liu
2026-03-18  5:43     ` Dawei Liu
2026-03-18  8:23       ` Krzysztof Kozlowski
2026-03-19  2:05         ` Dawei Liu
2026-03-21 20:46     ` Krzysztof Kozlowski
2026-03-23  4:22       ` Dawei Liu
2026-03-23  7:20         ` Krzysztof Kozlowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox