linux-hwmon.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025
@ 2025-06-30 20:14 Shantanu Tushar
  2025-07-01  3:53 ` Wilken Gottwalt
  2025-07-16 14:45 ` Guenter Roeck
  0 siblings, 2 replies; 7+ messages in thread
From: Shantanu Tushar @ 2025-06-30 20:14 UTC (permalink / raw)
  To: wilken.gottwalt; +Cc: jdelvare, linux, linux-hwmon, Shantanu Tushar

Add the USB ID of the Corsair HXi Series 2025 HX1200i PSU (CP-9020307).
Update the documentation to mention this.

Signed-off-by: Shantanu Tushar <shantanu@kde.org>
---
 Documentation/hwmon/corsair-psu.rst | 2 +-
 drivers/hwmon/corsair-psu.c         | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/hwmon/corsair-psu.rst b/Documentation/hwmon/corsair-psu.rst
index 7ed794087f84..2e99cfd556a0 100644
--- a/Documentation/hwmon/corsair-psu.rst
+++ b/Documentation/hwmon/corsair-psu.rst
@@ -17,7 +17,7 @@ Supported devices:
 
   Corsair HX1000i (Legacy and Series 2023)
 
-  Corsair HX1200i (Legacy and Series 2023)
+  Corsair HX1200i (Legacy, Series 2023 and Series 2025)
 
   Corsair HX1500i (Legacy and Series 2023)
 
diff --git a/drivers/hwmon/corsair-psu.c b/drivers/hwmon/corsair-psu.c
index f8f22b8a67cd..6b5c8f200780 100644
--- a/drivers/hwmon/corsair-psu.c
+++ b/drivers/hwmon/corsair-psu.c
@@ -885,6 +885,7 @@ static const struct hid_device_id corsairpsu_idtable[] = {
 	{ HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsair HX1000i Series 2023 */
 	{ HID_USB_DEVICE(0x1b1c, 0x1c1f) }, /* Corsair HX1500i Legacy and Series 2023 */
 	{ HID_USB_DEVICE(0x1b1c, 0x1c23) }, /* Corsair HX1200i Series 2023 */
+	{ HID_USB_DEVICE(0x1b1c, 0x1c27) }, /* Corsair HX1200i Series 2025 */
 	{ },
 };
 MODULE_DEVICE_TABLE(hid, corsairpsu_idtable);
-- 
2.50.0


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

* Re: [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025
  2025-06-30 20:14 [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025 Shantanu Tushar
@ 2025-07-01  3:53 ` Wilken Gottwalt
  2025-07-04  6:23   ` Shantanu Tushar
  2025-07-16 14:45 ` Guenter Roeck
  1 sibling, 1 reply; 7+ messages in thread
From: Wilken Gottwalt @ 2025-07-01  3:53 UTC (permalink / raw)
  To: Shantanu Tushar; +Cc: jdelvare, linux, linux-hwmon

Yeah, looks fine to me. And it looks like there is also a HXi 1500 Series
2025 now.

Reviewed-by: Wilken Gottwalt <wilken.gottwalt@posteo.net>

On Mon, 30 Jun 2025 22:14:44 +0200
Shantanu Tushar <shantanu@kde.org> wrote:

> Add the USB ID of the Corsair HXi Series 2025 HX1200i PSU (CP-9020307).
> Update the documentation to mention this.
> 
> Signed-off-by: Shantanu Tushar <shantanu@kde.org>
> ---
>  Documentation/hwmon/corsair-psu.rst | 2 +-
>  drivers/hwmon/corsair-psu.c         | 1 +
>  2 files changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/Documentation/hwmon/corsair-psu.rst b/Documentation/hwmon/corsair-psu.rst
> index 7ed794087f84..2e99cfd556a0 100644
> --- a/Documentation/hwmon/corsair-psu.rst
> +++ b/Documentation/hwmon/corsair-psu.rst
> @@ -17,7 +17,7 @@ Supported devices:
>  
>    Corsair HX1000i (Legacy and Series 2023)
>  
> -  Corsair HX1200i (Legacy and Series 2023)
> +  Corsair HX1200i (Legacy, Series 2023 and Series 2025)
>  
>    Corsair HX1500i (Legacy and Series 2023)
>  
> diff --git a/drivers/hwmon/corsair-psu.c b/drivers/hwmon/corsair-psu.c
> index f8f22b8a67cd..6b5c8f200780 100644
> --- a/drivers/hwmon/corsair-psu.c
> +++ b/drivers/hwmon/corsair-psu.c
> @@ -885,6 +885,7 @@ static const struct hid_device_id corsairpsu_idtable[] = {
>  	{ HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsair HX1000i Series 2023 */
>  	{ HID_USB_DEVICE(0x1b1c, 0x1c1f) }, /* Corsair HX1500i Legacy and Series 2023 */
>  	{ HID_USB_DEVICE(0x1b1c, 0x1c23) }, /* Corsair HX1200i Series 2023 */
> +	{ HID_USB_DEVICE(0x1b1c, 0x1c27) }, /* Corsair HX1200i Series 2025 */
>  	{ },
>  };
>  MODULE_DEVICE_TABLE(hid, corsairpsu_idtable);


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

* Re: [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025
  2025-07-01  3:53 ` Wilken Gottwalt
@ 2025-07-04  6:23   ` Shantanu Tushar
  2025-07-04  6:40     ` Wilken Gottwalt
  0 siblings, 1 reply; 7+ messages in thread
From: Shantanu Tushar @ 2025-07-04  6:23 UTC (permalink / raw)
  To: Wilken Gottwalt; +Cc: jdelvare, linux, linux-hwmon

Hi Wilken,

Thanks for the review. Unfortunately I only have access to a HXi 1200
PSU to test. Maybe support for the new HXi 1500 can come later?

Regards,
Shantanu Tushar

On Tue, 1 Jul 2025 at 05:53, Wilken Gottwalt <wilken.gottwalt@posteo.net> wrote:
>
> Yeah, looks fine to me. And it looks like there is also a HXi 1500 Series
> 2025 now.
>
> Reviewed-by: Wilken Gottwalt <wilken.gottwalt@posteo.net>
>
> On Mon, 30 Jun 2025 22:14:44 +0200
> Shantanu Tushar <shantanu@kde.org> wrote:
>
> > Add the USB ID of the Corsair HXi Series 2025 HX1200i PSU (CP-9020307).
> > Update the documentation to mention this.
> >
> > Signed-off-by: Shantanu Tushar <shantanu@kde.org>
> > ---
> >  Documentation/hwmon/corsair-psu.rst | 2 +-
> >  drivers/hwmon/corsair-psu.c         | 1 +
> >  2 files changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/Documentation/hwmon/corsair-psu.rst b/Documentation/hwmon/corsair-psu.rst
> > index 7ed794087f84..2e99cfd556a0 100644
> > --- a/Documentation/hwmon/corsair-psu.rst
> > +++ b/Documentation/hwmon/corsair-psu.rst
> > @@ -17,7 +17,7 @@ Supported devices:
> >
> >    Corsair HX1000i (Legacy and Series 2023)
> >
> > -  Corsair HX1200i (Legacy and Series 2023)
> > +  Corsair HX1200i (Legacy, Series 2023 and Series 2025)
> >
> >    Corsair HX1500i (Legacy and Series 2023)
> >
> > diff --git a/drivers/hwmon/corsair-psu.c b/drivers/hwmon/corsair-psu.c
> > index f8f22b8a67cd..6b5c8f200780 100644
> > --- a/drivers/hwmon/corsair-psu.c
> > +++ b/drivers/hwmon/corsair-psu.c
> > @@ -885,6 +885,7 @@ static const struct hid_device_id corsairpsu_idtable[] = {
> >       { HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsair HX1000i Series 2023 */
> >       { HID_USB_DEVICE(0x1b1c, 0x1c1f) }, /* Corsair HX1500i Legacy and Series 2023 */
> >       { HID_USB_DEVICE(0x1b1c, 0x1c23) }, /* Corsair HX1200i Series 2023 */
> > +     { HID_USB_DEVICE(0x1b1c, 0x1c27) }, /* Corsair HX1200i Series 2025 */
> >       { },
> >  };
> >  MODULE_DEVICE_TABLE(hid, corsairpsu_idtable);
>

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

* Re: [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025
  2025-07-04  6:23   ` Shantanu Tushar
@ 2025-07-04  6:40     ` Wilken Gottwalt
  2025-07-05 19:19       ` Guenter Roeck
  0 siblings, 1 reply; 7+ messages in thread
From: Wilken Gottwalt @ 2025-07-04  6:40 UTC (permalink / raw)
  To: Shantanu Tushar; +Cc: jdelvare, linux, linux-hwmon

Hi Shantanu,

don't worry. That was only a comment/mental note for me. Looks like Corsair does
a lot of refreshs of that hardware. Hmm, but Guenter seems to be a bit slow on
this one.

greetings

On Fri, 4 Jul 2025 08:23:45 +0200
Shantanu Tushar <shantanu@kde.org> wrote:

> Hi Wilken,
> 
> Thanks for the review. Unfortunately I only have access to a HXi 1200
> PSU to test. Maybe support for the new HXi 1500 can come later?
> 
> Regards,
> Shantanu Tushar
> 
> On Tue, 1 Jul 2025 at 05:53, Wilken Gottwalt <wilken.gottwalt@posteo.net> wrote:
> >
> > Yeah, looks fine to me. And it looks like there is also a HXi 1500 Series
> > 2025 now.
> >
> > Reviewed-by: Wilken Gottwalt <wilken.gottwalt@posteo.net>
> >
> > On Mon, 30 Jun 2025 22:14:44 +0200
> > Shantanu Tushar <shantanu@kde.org> wrote:
> >
> > > Add the USB ID of the Corsair HXi Series 2025 HX1200i PSU (CP-9020307).
> > > Update the documentation to mention this.
> > >
> > > Signed-off-by: Shantanu Tushar <shantanu@kde.org>
> > > ---
> > >  Documentation/hwmon/corsair-psu.rst | 2 +-
> > >  drivers/hwmon/corsair-psu.c         | 1 +
> > >  2 files changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/Documentation/hwmon/corsair-psu.rst b/Documentation/hwmon/corsair-psu.rst
> > > index 7ed794087f84..2e99cfd556a0 100644
> > > --- a/Documentation/hwmon/corsair-psu.rst
> > > +++ b/Documentation/hwmon/corsair-psu.rst
> > > @@ -17,7 +17,7 @@ Supported devices:
> > >
> > >    Corsair HX1000i (Legacy and Series 2023)
> > >
> > > -  Corsair HX1200i (Legacy and Series 2023)
> > > +  Corsair HX1200i (Legacy, Series 2023 and Series 2025)
> > >
> > >    Corsair HX1500i (Legacy and Series 2023)
> > >
> > > diff --git a/drivers/hwmon/corsair-psu.c b/drivers/hwmon/corsair-psu.c
> > > index f8f22b8a67cd..6b5c8f200780 100644
> > > --- a/drivers/hwmon/corsair-psu.c
> > > +++ b/drivers/hwmon/corsair-psu.c
> > > @@ -885,6 +885,7 @@ static const struct hid_device_id corsairpsu_idtable[] = {
> > >       { HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsair HX1000i Series 2023 */
> > >       { HID_USB_DEVICE(0x1b1c, 0x1c1f) }, /* Corsair HX1500i Legacy and Series 2023 */
> > >       { HID_USB_DEVICE(0x1b1c, 0x1c23) }, /* Corsair HX1200i Series 2023 */
> > > +     { HID_USB_DEVICE(0x1b1c, 0x1c27) }, /* Corsair HX1200i Series 2025 */
> > >       { },
> > >  };
> > >  MODULE_DEVICE_TABLE(hid, corsairpsu_idtable);
> >


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

* Re: [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025
  2025-07-04  6:40     ` Wilken Gottwalt
@ 2025-07-05 19:19       ` Guenter Roeck
  2025-07-06 12:08         ` Wilken Gottwalt
  0 siblings, 1 reply; 7+ messages in thread
From: Guenter Roeck @ 2025-07-05 19:19 UTC (permalink / raw)
  To: Wilken Gottwalt; +Cc: Shantanu Tushar, jdelvare, linux-hwmon

On Fri, Jul 04, 2025 at 06:40:03AM +0000, Wilken Gottwalt wrote:
> Hi Shantanu,
> 
> don't worry. That was only a comment/mental note for me. Looks like Corsair does
> a lot of refreshs of that hardware. Hmm, but Guenter seems to be a bit slow on
> this one.
> 

Please remember I am _not_ getting paid for this job, and once in a while
I need a break.

Guenter

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

* Re: [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025
  2025-07-05 19:19       ` Guenter Roeck
@ 2025-07-06 12:08         ` Wilken Gottwalt
  0 siblings, 0 replies; 7+ messages in thread
From: Wilken Gottwalt @ 2025-07-06 12:08 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: Shantanu Tushar, jdelvare, linux-hwmon

On Sat, 5 Jul 2025 12:19:05 -0700
Guenter Roeck <linux@roeck-us.net> wrote:

> On Fri, Jul 04, 2025 at 06:40:03AM +0000, Wilken Gottwalt wrote:
> > Hi Shantanu,
> > 
> > don't worry. That was only a comment/mental note for me. Looks like Corsair does
> > a lot of refreshs of that hardware. Hmm, but Guenter seems to be a bit slow on
> > this one.
> > 
> 
> Please remember I am _not_ getting paid for this job, and once in a while
> I need a break.
> 
> Guenter

Oh sorry, that wasn't meant harsh in any way, I just wondered.

greetings

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

* Re: [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025
  2025-06-30 20:14 [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025 Shantanu Tushar
  2025-07-01  3:53 ` Wilken Gottwalt
@ 2025-07-16 14:45 ` Guenter Roeck
  1 sibling, 0 replies; 7+ messages in thread
From: Guenter Roeck @ 2025-07-16 14:45 UTC (permalink / raw)
  To: Shantanu Tushar; +Cc: wilken.gottwalt, jdelvare, linux-hwmon

On Mon, Jun 30, 2025 at 10:14:44PM +0200, Shantanu Tushar wrote:
> Add the USB ID of the Corsair HXi Series 2025 HX1200i PSU (CP-9020307).
> Update the documentation to mention this.
> 
> Signed-off-by: Shantanu Tushar <shantanu@kde.org>
> Reviewed-by: Wilken Gottwalt <wilken.gottwalt@posteo.net>

Applied.

Thanks,
Guenter

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

end of thread, other threads:[~2025-07-16 14:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-30 20:14 [PATCH] hwmon: (corsair-psu) add support for HX1200i Series 2025 Shantanu Tushar
2025-07-01  3:53 ` Wilken Gottwalt
2025-07-04  6:23   ` Shantanu Tushar
2025-07-04  6:40     ` Wilken Gottwalt
2025-07-05 19:19       ` Guenter Roeck
2025-07-06 12:08         ` Wilken Gottwalt
2025-07-16 14:45 ` 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).