linux-hwmon.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/2] Add support for RAA229621
@ 2025-06-02  5:04 Chiang Brian
  2025-06-02  5:04 ` [PATCH v4 1/2] dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support Chiang Brian
  2025-06-02  5:04 ` [PATCH v4 2/2] hwmon: (pmbus/isl68137) Add support for RAA229621 Chiang Brian
  0 siblings, 2 replies; 6+ messages in thread
From: Chiang Brian @ 2025-06-02  5:04 UTC (permalink / raw)
  To: jdelvare, linux, robh, krzk+dt, conor+dt, geert+renesas,
	grant.peltier.jg
  Cc: linux-hwmon, devicetree, linux-kernel, linux-renesas-soc,
	Chiang Brian

The RAA229621 is a digital dual output multiphase
(X+Y <= 8) PWM controller designed to be compliant
with AMD SVI3 specifications, targeting
VDDCR_CPU and VDDCR_SOC rails.

Add support for it to the isl68137 driver.

---
v3 -> v4:
- Add Changelog
- Remove unnecessary "From" tag
- Add the compatible of raa229621 into dt-bindings
- Link to v3: https://lore.kernel.org/all/20250303083537.3312250-1-chiang.brian@inventec.corp-partner.google.com/

v2 -> v3: 
- Fix the corrupted patch by sending plain text email
- Link to v2: https://lore.kernel.org/all/CAJCfHmWJ9N1R8x6ikU02_RYq9ieq6yWY7CGdfvc4hRqHnX5szg@mail.gmail.com/

v1 -> v2: 
- Modify subject and description to meet requirements and remove the override of
  isl68137_probe, and add the of_match between raa229621 and  raa_dmpvr2_2rail
- Link to v1: https://lore.kernel.org/all/CAJCfHmXcrr_si4HLLCrXskuZ4aYmqAh0SFXNSkeL78d2qX2Qcg@mail.gmail.com/

---
Chiang Brian (2):
  dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support
  hwmon: (pmbus/isl68137) Add support for RAA229621


 .../devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml         | 1 +
 drivers/hwmon/pmbus/isl68137.c                                 | 3 +++
 2 files changed, 4 insertions(+)

-- 
2.43.0


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

* [PATCH v4 1/2] dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support
  2025-06-02  5:04 [PATCH v4 0/2] Add support for RAA229621 Chiang Brian
@ 2025-06-02  5:04 ` Chiang Brian
  2025-06-02  7:56   ` Krzysztof Kozlowski
  2025-06-02  5:04 ` [PATCH v4 2/2] hwmon: (pmbus/isl68137) Add support for RAA229621 Chiang Brian
  1 sibling, 1 reply; 6+ messages in thread
From: Chiang Brian @ 2025-06-02  5:04 UTC (permalink / raw)
  To: jdelvare, linux, robh, krzk+dt, conor+dt, geert+renesas,
	grant.peltier.jg
  Cc: linux-hwmon, devicetree, linux-kernel, linux-renesas-soc,
	Chiang Brian

Add device type support for raa229621

Signed-off-by: Chiang Brian <chiang.brian@inventec.com>
---
v1 -> v4:
- Correct the subject and commit message
- Patch kept in sync with series version
- Link to v1: https://lore.kernel.org/all/20250314032055.3125534-1-chiang.brian@inventec.com/

 Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml b/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml
index bac5f8e352aa..3dc7f15484d2 100644
--- a/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml
+++ b/Documentation/devicetree/bindings/hwmon/pmbus/isil,isl68137.yaml
@@ -56,6 +56,7 @@ properties:
       - renesas,raa228228
       - renesas,raa229001
       - renesas,raa229004
+      - renesas,raa229621
 
   reg:
     maxItems: 1
-- 
2.43.0

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

* [PATCH v4 2/2] hwmon: (pmbus/isl68137) Add support for RAA229621
  2025-06-02  5:04 [PATCH v4 0/2] Add support for RAA229621 Chiang Brian
  2025-06-02  5:04 ` [PATCH v4 1/2] dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support Chiang Brian
@ 2025-06-02  5:04 ` Chiang Brian
  2025-06-02  7:55   ` Krzysztof Kozlowski
  1 sibling, 1 reply; 6+ messages in thread
From: Chiang Brian @ 2025-06-02  5:04 UTC (permalink / raw)
  To: jdelvare, linux, robh, krzk+dt, conor+dt, geert+renesas,
	grant.peltier.jg
  Cc: linux-hwmon, devicetree, linux-kernel, linux-renesas-soc,
	Chiang Brian

The RAA229621 is a digital dual output multiphase
(X+Y <= 8) PWM controller designed to be compliant
with AMD SVI3 specifications, targeting
VDDCR_CPU and VDDCR_SOC rails.
Add support for it to the isl68137 driver.

this patch depends on patch:
dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support

Signed-off-by: Chiang Brian <chiang.brian@inventec.com>

---
v3 -> v4:
- Add Changelog
- Remove unnecessary "From" tag
- Link to v3: https://lore.kernel.org/all/20250303083537.3312250-1-chiang.brian@inventec.corp-partner.google.com/

v2 -> v3:
- Fix the corrupted patch by sending plain text email
- Link to v2: https://lore.kernel.org/all/CAJCfHmWJ9N1R8x6ikU02_RYq9ieq6yWY7CGdfvc4hRqHnX5szg@mail.gmail.com/

v1 -> v2:
- Modify subject and description to meet requirements
- Remove the override of isl68137_probe
- Add the of_match between raa229621 and raa_dmpvr2_2rail
- Link to v1: https://lore.kernel.org/all/CAJCfHmXm-fPD70uN-mNJdJkzf9B526y8p=Jh5E+W5cwJ0NVhEQ@mail.gmail.com/

 drivers/hwmon/pmbus/isl68137.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/hwmon/pmbus/isl68137.c b/drivers/hwmon/pmbus/isl68137.c
index 2af921039309..c52c55d2e7f4 100644
--- a/drivers/hwmon/pmbus/isl68137.c
+++ b/drivers/hwmon/pmbus/isl68137.c
@@ -63,6 +63,7 @@ enum chips {
 	raa228228,
 	raa229001,
 	raa229004,
+	raa229621,
 };
 
 enum variants {
@@ -465,6 +466,7 @@ static const struct i2c_device_id raa_dmpvr_id[] = {
 	{"raa228228", raa_dmpvr2_2rail_nontc},
 	{"raa229001", raa_dmpvr2_2rail},
 	{"raa229004", raa_dmpvr2_2rail},
+	{"raa229621", raa_dmpvr2_2rail},
 	{}
 };
 
@@ -512,6 +514,7 @@ static const struct of_device_id isl68137_of_match[] = {
 	{ .compatible = "renesas,raa228228", .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.43.0


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

* Re: [PATCH v4 2/2] hwmon: (pmbus/isl68137) Add support for RAA229621
  2025-06-02  5:04 ` [PATCH v4 2/2] hwmon: (pmbus/isl68137) Add support for RAA229621 Chiang Brian
@ 2025-06-02  7:55   ` Krzysztof Kozlowski
  2025-06-05  3:52     ` Chiang Brian
  0 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-02  7:55 UTC (permalink / raw)
  To: Chiang Brian
  Cc: jdelvare, linux, robh, krzk+dt, conor+dt, geert+renesas,
	grant.peltier.jg, linux-hwmon, devicetree, linux-kernel,
	linux-renesas-soc

On Mon, Jun 02, 2025 at 01:04:15PM GMT, Chiang Brian wrote:
> The RAA229621 is a digital dual output multiphase
> (X+Y <= 8) PWM controller designed to be compliant
> with AMD SVI3 specifications, targeting
> VDDCR_CPU and VDDCR_SOC rails.
> Add support for it to the isl68137 driver.

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

> 
> this patch depends on patch:
> dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support

No, it does not, please drop this sentence.

Best regards,
Krzysztof


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

* Re: [PATCH v4 1/2] dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support
  2025-06-02  5:04 ` [PATCH v4 1/2] dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support Chiang Brian
@ 2025-06-02  7:56   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-02  7:56 UTC (permalink / raw)
  To: Chiang Brian
  Cc: jdelvare, linux, robh, krzk+dt, conor+dt, geert+renesas,
	grant.peltier.jg, linux-hwmon, devicetree, linux-kernel,
	linux-renesas-soc

On Mon, Jun 02, 2025 at 01:04:14PM GMT, Chiang Brian wrote:
> Add device type support for raa229621
> 
> Signed-off-by: Chiang Brian <chiang.brian@inventec.com>
> ---
> v1 -> v4:
> - Correct the subject and commit message
> - Patch kept in sync with series version
> - Link to v1: https://lore.kernel.org/all/20250314032055.3125534-1-chiang.brian@inventec.com/

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH v4 2/2] hwmon: (pmbus/isl68137) Add support for RAA229621
  2025-06-02  7:55   ` Krzysztof Kozlowski
@ 2025-06-05  3:52     ` Chiang Brian
  0 siblings, 0 replies; 6+ messages in thread
From: Chiang Brian @ 2025-06-05  3:52 UTC (permalink / raw)
  To: krzk
  Cc: chiang.brian, conor+dt, devicetree, geert+renesas,
	grant.peltier.jg, jdelvare, krzk+dt, linux-hwmon, linux-kernel,
	linux-renesas-soc, linux, robh

On Mon, Jun 02, 2025 at 07:55:37PM GMT, Krzysztof Kozlowski wrote:
> 
> On Mon, Jun 02, 2025 at 01:04:15PM GMT, Chiang Brian wrote:
> > The RAA229621 is a digital dual output multiphase
> > (X+Y <= 8) PWM controller designed to be compliant
> > with AMD SVI3 specifications, targeting
> > VDDCR_CPU and VDDCR_SOC rails.
> > Add support for it to the isl68137 driver.
> 
> 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

I'll wrap the commit message body at 75 columns.
Thanks for the pointing out.

> > 
> > this patch depends on patch:
> > dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support
> 
> No, it does not, please drop this sentence.
> 

I'll remove the incorrect sentence as well.
Thank you for the patient reviewing.

Best regards,
Brian Chiang

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

end of thread, other threads:[~2025-06-05  3:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-02  5:04 [PATCH v4 0/2] Add support for RAA229621 Chiang Brian
2025-06-02  5:04 ` [PATCH v4 1/2] dt-bindings: hwmon: (pmbus/isl68137) Add RAA229621 support Chiang Brian
2025-06-02  7:56   ` Krzysztof Kozlowski
2025-06-02  5:04 ` [PATCH v4 2/2] hwmon: (pmbus/isl68137) Add support for RAA229621 Chiang Brian
2025-06-02  7:55   ` Krzysztof Kozlowski
2025-06-05  3:52     ` Chiang Brian

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