* [PATCH v3 0/2] hwmon/pmbus: isl68137: Add RAA228942/RAA228943 support
@ 2026-03-23 3:20 Dawei Liu
2026-03-23 3:20 ` [PATCH 1/2] hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and RAA228943 Dawei Liu
2026-03-23 3:20 ` [PATCH 2/2] dt-bindings: hwmon: isl68137: Add compatible strings for " Dawei Liu
0 siblings, 2 replies; 4+ messages in thread
From: Dawei Liu @ 2026-03-23 3:20 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, linda.xin.jg,
Dawei Liu
Add support for Renesas RAA228942 and RAA228943 digital
dual-output 16-phase PWM controllers.
Changes in v3:
- Update commit message to clarify hardware differences
(suggested by Krzysztof Kozlowski)
- Drop enum cleanup patch as it has been merged
Changes in v2:
- Remove entire unused enum chips
(suggested by Guenter Roeck)
- Improve commit message to clarify hardware difference
- Split enum chips cleanup into separate patch
Dawei Liu (2):
hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and
RAA228943
dt-bindings: hwmon: isl68137: Add compatible strings for RAA228942 and
RAA228943
.../bindings/hwmon/pmbus/isil,isl68137.yaml | 2 ++
Documentation/hwmon/isl68137.rst | 20 +++++++++++++++++++
drivers/hwmon/pmbus/isl68137.c | 4 ++++
3 files changed, 26 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and RAA228943
2026-03-23 3:20 [PATCH v3 0/2] hwmon/pmbus: isl68137: Add RAA228942/RAA228943 support Dawei Liu
@ 2026-03-23 3:20 ` Dawei Liu
2026-03-23 3:20 ` [PATCH 2/2] dt-bindings: hwmon: isl68137: Add compatible strings for " Dawei Liu
1 sibling, 0 replies; 4+ messages in thread
From: Dawei Liu @ 2026-03-23 3:20 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, linda.xin.jg,
Dawei Liu
RAA228942 and RAA228943 are Renesas digital dual-output
16-phase (X+Y <= 16) PWM controllers with 2-rail non-TC
driver configuration. They have different hardware
interfaces and feature sets compared to existing
family members.
Signed-off-by: Dawei Liu <dawei.liu.jy@renesas.com>
---
Documentation/hwmon/isl68137.rst | 20 ++++++++++++++++++++
drivers/hwmon/pmbus/isl68137.c | 4 ++++
2 files changed, 24 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 3346afdf3..e9bb24a2a 100644
--- a/drivers/hwmon/pmbus/isl68137.c
+++ b/drivers/hwmon/pmbus/isl68137.c
@@ -432,6 +432,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},
@@ -483,6 +485,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 [flat|nested] 4+ messages in thread
* [PATCH 2/2] dt-bindings: hwmon: isl68137: Add compatible strings for RAA228942 and RAA228943
2026-03-23 3:20 [PATCH v3 0/2] hwmon/pmbus: isl68137: Add RAA228942/RAA228943 support Dawei Liu
2026-03-23 3:20 ` [PATCH 1/2] hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and RAA228943 Dawei Liu
@ 2026-03-23 3:20 ` Dawei Liu
2026-03-23 7:21 ` Krzysztof Kozlowski
1 sibling, 1 reply; 4+ messages in thread
From: Dawei Liu @ 2026-03-23 3:20 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, linda.xin.jg,
Dawei Liu
RAA228942 and RAA228943 are Renesas digital dual-output
16-phase (X+Y <= 16) PWM controllers with 2-rail non-TC
driver configuration. They have different hardware
interfaces and feature sets compared to existing
family members.
Signed-off-by: Dawei Liu <dawei.liu.jy@renesas.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 ae23a0537..53d07c0ce 100644
--- a/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml
+++ b/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml
@@ -56,6 +56,8 @@ properties:
- renesas,raa228228
- renesas,raa228244
- renesas,raa228246
+ - renesas,raa228942
+ - renesas,raa228943
- renesas,raa229001
- renesas,raa229004
- renesas,raa229621
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] dt-bindings: hwmon: isl68137: Add compatible strings for RAA228942 and RAA228943
2026-03-23 3:20 ` [PATCH 2/2] dt-bindings: hwmon: isl68137: Add compatible strings for " Dawei Liu
@ 2026-03-23 7:21 ` Krzysztof Kozlowski
0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2026-03-23 7:21 UTC (permalink / raw)
To: Dawei Liu, 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, linda.xin.jg
On 23/03/2026 04:20, Dawei Liu wrote:
> RAA228942 and RAA228943 are Renesas digital dual-output
> 16-phase (X+Y <= 16) PWM controllers with 2-rail non-TC
> driver configuration. They have different hardware
> interfaces and feature sets compared to existing
> family members.
Please wrap commit message according to Linux coding style / submission
process (neither too early nor over the limit):
https://elixir.bootlin.com/linux/v6.4-rc1/source/Documentation/process/submitting-patches.rst#L597
Anyway, same feedback as last time. I responded to your answer but you
did not give me chance anymore and sent v3.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-03-23 7:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-03-23 3:20 [PATCH v3 0/2] hwmon/pmbus: isl68137: Add RAA228942/RAA228943 support Dawei Liu
2026-03-23 3:20 ` [PATCH 1/2] hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and RAA228943 Dawei Liu
2026-03-23 3:20 ` [PATCH 2/2] dt-bindings: hwmon: isl68137: Add compatible strings for " Dawei Liu
2026-03-23 7:21 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®