* [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property
@ 2026-06-22 12:21 Flaviu Nistor
2026-06-22 12:22 ` [PATCH 2/2] hwmon: (chipcap2) Add support for label Flaviu Nistor
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Flaviu Nistor @ 2026-06-22 12:21 UTC (permalink / raw)
To: Guenter Roeck, Javier Carrasco, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jonathan Corbet, Shuah Khan
Cc: Flaviu Nistor, linux-hwmon, linux-kernel, devicetree, linux-doc
Add support for an optional label property similar to other hwmon devices.
This allows, in case of boards with multiple CHIPCAP2 sensors, to assign
distinct names to each instance.
Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com>
---
.../devicetree/bindings/hwmon/amphenol,chipcap2.yaml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml
index 17351fdbefce..f00b5a4b14dd 100644
--- a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml
+++ b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml
@@ -33,6 +33,10 @@ properties:
reg:
maxItems: 1
+ label:
+ description:
+ A descriptive name for this channel, like "ambient" or "psu".
+
interrupts:
items:
- description: measurement ready indicator
@@ -72,6 +76,7 @@ examples:
<5 IRQ_TYPE_EDGE_RISING>,
<6 IRQ_TYPE_EDGE_RISING>;
interrupt-names = "ready", "low", "high";
+ label = "somelabel";
vdd-supply = <®_vdd>;
};
};
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH 2/2] hwmon: (chipcap2) Add support for label 2026-06-22 12:21 [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property Flaviu Nistor @ 2026-06-22 12:22 ` Flaviu Nistor 2026-06-22 12:30 ` sashiko-bot 2026-06-22 12:32 ` [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property sashiko-bot 2026-06-22 16:29 ` Javier Carrasco 2 siblings, 1 reply; 8+ messages in thread From: Flaviu Nistor @ 2026-06-22 12:22 UTC (permalink / raw) To: Guenter Roeck, Javier Carrasco, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jonathan Corbet, Shuah Khan Cc: Flaviu Nistor, linux-hwmon, linux-kernel, devicetree, linux-doc Add support for label sysfs attribute similar to other hwmon devices. This is particularly useful for systems with multiple sensors on the same board, where identifying individual sensors is much easier since labels can be defined via device tree. Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> --- Documentation/hwmon/chipcap2.rst | 2 ++ drivers/hwmon/chipcap2.c | 25 +++++++++++++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/Documentation/hwmon/chipcap2.rst b/Documentation/hwmon/chipcap2.rst index dc165becc64c..c38d87b91b69 100644 --- a/Documentation/hwmon/chipcap2.rst +++ b/Documentation/hwmon/chipcap2.rst @@ -70,4 +70,6 @@ humidity1_min_hyst: RW humidity low hystersis humidity1_max_hyst: RW humidity high hystersis humidity1_min_alarm: RO humidity low alarm indicator humidity1_max_alarm: RO humidity high alarm indicator +humidity1_label: RO descriptive name for the sensor +temp1_label: RO descriptive name for the sensor =============================== ======= ======================================== diff --git a/drivers/hwmon/chipcap2.c b/drivers/hwmon/chipcap2.c index 4aecf463180f..086571d556b7 100644 --- a/drivers/hwmon/chipcap2.c +++ b/drivers/hwmon/chipcap2.c @@ -22,6 +22,8 @@ #include <linux/irq.h> #include <linux/module.h> #include <linux/regulator/consumer.h> +#include <linux/mod_devicetable.h> +#include <linux/property.h> #define CC2_START_CM 0xA0 #define CC2_START_NOM 0x80 @@ -83,6 +85,7 @@ struct cc2_data { struct i2c_client *client; struct regulator *regulator; const char *name; + const char *label; int irq_ready; int irq_low; int irq_high; @@ -449,6 +452,8 @@ static umode_t cc2_is_visible(const void *data, enum hwmon_sensor_types type, switch (attr) { case hwmon_humidity_input: return 0444; + case hwmon_humidity_label: + return cc2->label ? 0444 : 0; case hwmon_humidity_min_alarm: return cc2->rh_alarm.low_alarm_visible ? 0444 : 0; case hwmon_humidity_max_alarm: @@ -466,6 +471,8 @@ static umode_t cc2_is_visible(const void *data, enum hwmon_sensor_types type, switch (attr) { case hwmon_temp_input: return 0444; + case hwmon_temp_label: + return cc2->label ? 0444 : 0; default: return 0; } @@ -552,6 +559,16 @@ static int cc2_humidity_max_alarm_status(struct cc2_data *data, long *val) return 0; } +static int cc2_read_string(struct device *dev, enum hwmon_sensor_types type, + u32 attr, int channel, const char **str) +{ + struct cc2_data *data = dev_get_drvdata(dev); + + *str = data->label; + + return 0; +} + static int cc2_read(struct device *dev, enum hwmon_sensor_types type, u32 attr, int channel, long *val) { @@ -670,8 +687,9 @@ static int cc2_request_alarm_irqs(struct cc2_data *data, struct device *dev) } static const struct hwmon_channel_info *cc2_info[] = { - HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT), - HWMON_CHANNEL_INFO(humidity, HWMON_H_INPUT | HWMON_H_MIN | HWMON_H_MAX | + HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT | HWMON_T_LABEL), + HWMON_CHANNEL_INFO(humidity, HWMON_H_INPUT | HWMON_H_LABEL | + HWMON_H_MIN | HWMON_H_MAX | HWMON_H_MIN_HYST | HWMON_H_MAX_HYST | HWMON_H_MIN_ALARM | HWMON_H_MAX_ALARM), NULL @@ -680,6 +698,7 @@ static const struct hwmon_channel_info *cc2_info[] = { static const struct hwmon_ops cc2_hwmon_ops = { .is_visible = cc2_is_visible, .read = cc2_read, + .read_string = cc2_read_string, .write = cc2_write, }; @@ -710,6 +729,8 @@ static int cc2_probe(struct i2c_client *client) return dev_err_probe(dev, PTR_ERR(data->regulator), "Failed to get regulator\n"); + device_property_read_string(dev, "label", &data->label); + ret = cc2_request_ready_irq(data, dev); if (ret) return dev_err_probe(dev, ret, "Failed to request ready irq\n"); -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] hwmon: (chipcap2) Add support for label 2026-06-22 12:22 ` [PATCH 2/2] hwmon: (chipcap2) Add support for label Flaviu Nistor @ 2026-06-22 12:30 ` sashiko-bot 0 siblings, 0 replies; 8+ messages in thread From: sashiko-bot @ 2026-06-22 12:30 UTC (permalink / raw) To: Flaviu Nistor; +Cc: linux-hwmon, robh, conor+dt, devicetree Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: Pre-existing issues: - [High] Data race on shared state between threaded interrupt handlers and sysfs context, violating hwmon subsystem guidelines. -- commit a4752e881c74f908f48e460d6cd5322c3eb88341 Author: Flaviu Nistor <flaviu.nistor@gmail.com> hwmon: (chipcap2) Add support for label This commit adds support for the label sysfs attribute to the chipcap2 hwmon device. This allows for easier identification of individual sensors via the device tree. > diff --git a/drivers/hwmon/chipcap2.c b/drivers/hwmon/chipcap2.c > index 4aecf463180fd..086571d556b7e 100644 > --- a/drivers/hwmon/chipcap2.c > +++ b/drivers/hwmon/chipcap2.c [ ... ] > @@ -552,6 +559,16 @@ static int cc2_humidity_max_alarm_status(struct cc2_data *data, long *val) > return 0; > } > [Severity: High] This isn't a bug introduced by this patch, but while reviewing this driver I noticed a potential data race. Does the driver access and modify shared variables (rh_alarm.low_alarm) concurrently from both sysfs read paths and threaded interrupt handlers without locking? In the sysfs process context, the flag is evaluated and cleared without locks: drivers/hwmon/chipcap2.c:cc2_humidity_min_alarm_status() { ... if (data->rh_alarm.low_alarm) { *val = (measurement < min_hyst) ? 1 : 0; data->rh_alarm.low_alarm = *val; } else { *val = 0; } ... } Concurrently, the threaded interrupt handler sets the flag: drivers/hwmon/chipcap2.c:cc2_low_interrupt() { ... if (cc2->process_irqs) { hwmon_notify_event(cc2->hwmon, hwmon_humidity, hwmon_humidity_min_alarm, CC2_CHAN_HUMIDITY); cc2->rh_alarm.low_alarm = true; } ... } The hwmon subsystem guidelines mandate that drivers must implement locking required for interrupt handling, specifically recommending the use of hwmon_lock() and hwmon_unlock() to serialize operations. Can these paths race and cause state corruption or lost alarm events? > +static int cc2_read_string(struct device *dev, enum hwmon_sensor_types type, > + u32 attr, int channel, const char **str) > +{ > + struct cc2_data *data = dev_get_drvdata(dev); > + > + *str = data->label; > + > + return 0; > +} > + -- Sashiko AI review · https://sashiko.dev/#/patchset/20260622122200.14245-1-flaviu.nistor@gmail.com?part=2 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property 2026-06-22 12:21 [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property Flaviu Nistor 2026-06-22 12:22 ` [PATCH 2/2] hwmon: (chipcap2) Add support for label Flaviu Nistor @ 2026-06-22 12:32 ` sashiko-bot 2026-06-22 16:29 ` Javier Carrasco 2 siblings, 0 replies; 8+ messages in thread From: sashiko-bot @ 2026-06-22 12:32 UTC (permalink / raw) To: Flaviu Nistor; +Cc: robh, conor+dt, devicetree, linux-hwmon Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider: New issues: - [Low] The 'label' property description incorrectly refers to 'this channel', but the property is applied to the top-level device node. Pre-existing issues: - [High] Threaded interrupt handlers modify shared state without holding any locks, violating hwmon subsystem guidelines and causing potential loss of alarm events. -- commit 6b42d122bc193119c40ff5ee9be18fcec09fc567 Author: Flaviu Nistor <flaviu.nistor@gmail.com> dt-bindings: hwmon: chipcap2: Add label property Add support for an optional label property similar to other hwmon devices. This allows, in case of boards with multiple CHIPCAP2 sensors, to assign distinct names to each instance. > diff --git a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml > index 17351fdbefce6..f00b5a4b14ddd 100644 > --- a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml > +++ b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml > @@ -33,6 +33,10 @@ properties: > reg: > maxItems: 1 > > + label: > + description: > + A descriptive name for this channel, like "ambient" or "psu". [Severity: Low] Is this description accurate? The label property is being added to the root node, so it applies to the entire device/instance rather than a single channel. The chipcap2 sensor provides multiple channels via a single device node. Could the description be updated to clarify it names the entire sensor rather than a single channel? > + > interrupts: > items: > - description: measurement ready indicator [Severity: High] This is a pre-existing issue, but does drivers/hwmon/chipcap2.c lack locking between the threaded interrupt handlers and the sysfs paths, which could lead to lost alarm events? The threaded interrupt handlers modify shared state without holding any locks, which violates hwmon subsystem guidelines. If an interrupt fires between the sysfs read and write: CPU1 in drivers/hwmon/chipcap2.c:cc2_humidity_min_alarm_status() { ... if (data->rh_alarm.low_alarm) { *val = (measurement < min_hyst) ? 1 : 0; CPU2 in drivers/hwmon/chipcap2.c:cc2_low_interrupt() { cc2->rh_alarm.low_alarm = true; } CPU1 continues: data->rh_alarm.low_alarm = *val; } else { *val = 0; } ... } The interrupt's update will be overwritten with 0 and permanently lost. The hwmon subsystem guidelines require drivers to implement locking for interrupt handling and sysfs attributes, recommending the use of hwmon_lock() and hwmon_unlock(). Could this concurrent access to data->rh_alarm.low_alarm be protected? -- Sashiko AI review · https://sashiko.dev/#/patchset/20260622122200.14245-1-flaviu.nistor@gmail.com?part=1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property 2026-06-22 12:21 [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property Flaviu Nistor 2026-06-22 12:22 ` [PATCH 2/2] hwmon: (chipcap2) Add support for label Flaviu Nistor 2026-06-22 12:32 ` [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property sashiko-bot @ 2026-06-22 16:29 ` Javier Carrasco 2026-06-23 18:16 ` Flaviu Nistor 2 siblings, 1 reply; 8+ messages in thread From: Javier Carrasco @ 2026-06-22 16:29 UTC (permalink / raw) To: Flaviu Nistor, Guenter Roeck, Javier Carrasco, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jonathan Corbet, Shuah Khan Cc: linux-hwmon, linux-kernel, devicetree, linux-doc On Mon Jun 22, 2026 at 2:21 PM CEST, Flaviu Nistor wrote: > Add support for an optional label property similar to other hwmon devices. > This allows, in case of boards with multiple CHIPCAP2 sensors, to assign > distinct names to each instance. > > Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> > --- > .../devicetree/bindings/hwmon/amphenol,chipcap2.yaml | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml > index 17351fdbefce..f00b5a4b14dd 100644 > --- a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml > +++ b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml > @@ -33,6 +33,10 @@ properties: > reg: > maxItems: 1 > > + label: > + description: > + A descriptive name for this channel, like "ambient" or "psu". > + > interrupts: > items: > - description: measurement ready indicator > @@ -72,6 +76,7 @@ examples: > <5 IRQ_TYPE_EDGE_RISING>, > <6 IRQ_TYPE_EDGE_RISING>; > interrupt-names = "ready", "low", "high"; > + label = "somelabel"; > vdd-supply = <®_vdd>; > }; > }; Hello Falviu, thank you for your patch. Should we not add a reference to hwmon-common.yaml (with unevelautedProperties instead of additionalProperties), as label is defined there? I believe that Krzysztof Kozlowski did something similar for the shunt-resistor-micro-ohms property. Could we follow suit here? I am also not a big fan of a name like "somelabel", and a more meaningful name from a "real" example would look better. I know that some examples have already used "somelabel" as an example, but others have used more meaningful names too. Best regards, Javier Carrasco ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re:[PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property 2026-06-22 16:29 ` Javier Carrasco @ 2026-06-23 18:16 ` Flaviu Nistor 2026-06-23 18:58 ` [PATCH " Guenter Roeck 0 siblings, 1 reply; 8+ messages in thread From: Flaviu Nistor @ 2026-06-23 18:16 UTC (permalink / raw) To: Javier Carrasco Cc: Guenter Roeck, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jonathan Corbet, Shuah Khan, Flaviu Nistor, linux-hwmon, linux-kernel, devicetree, linux-doc On Mon Jun 22, 2026 at 7:29 PM CEST, Javier Carrasco wrote: >On Mon Jun 22, 2026 at 2:21 PM CEST, Flaviu Nistor wrote: >> Add support for an optional label property similar to other hwmon devices >> This allows, in case of boards with multiple CHIPCAP2 sensors, to assign >> distinct names to each instance. >> >> Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> >> --- >> .../devicetree/bindings/hwmon/amphenol,chipcap2.yaml | 5 +++++ >> 1 file changed, 5 insertions(+) >> >> diff --git a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.ya= >ml b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >> index 17351fdbefce..f00b5a4b14dd 100644 >> --- a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >> +++ b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >> @@ -33,6 +33,10 @@ properties: >> reg: >> maxItems: 1 >> >> + label: >> + description: >> + A descriptive name for this channel, like "ambient" or "psu". >> + >> interrupts: >> items: >> - description: measurement ready indicator >> @@ -72,6 +76,7 @@ examples: >> <5 IRQ_TYPE_EDGE_RISING>, >> <6 IRQ_TYPE_EDGE_RISING>; >> interrupt-names =3D "ready", "low", "high"; >> + label =3D "somelabel"; >> vdd-supply =3D <®_vdd>; >> }; > }; > >Hello Falviu, thank you for your patch. > Hello Javier, thanks for your reply. >Should we not add a reference to hwmon-common.yaml (with >unevelautedProperties instead of additionalProperties), as label is >defined there? I believe that Krzysztof Kozlowski did something similar >for the shunt-resistor-micro-ohms property. Could we follow suit here? > This is a good question and I am happy you asked. I also thought a lot about this and the reason I decided to go for this approach is that by using $ref: hwmon-common.yaml#, I would have to change additionalProperties: false to unevaluatedProperties: false, which will evaluate in case it is used, also shunt-resistor-micro-ohms property which does not apply to this sensor. At least this is my understanding, but of course I can be wrong (I see lm75 binding also uses $ref: hwmon-common.yaml# but shunt-resistor-micro-ohms does not apply). >I am also not a big fan of a name like "somelabel", and a more >meaningful name from a "real" example would look better. I know that >some examples have already used "somelabel" as an example, but others >have used more meaningful names too. > I will have to send a v2 since for the label property description I used "channel" instead of "sensor" (detected by Sashiko AI review), so I can use in the example section a more meaningful name like "Room" if no other suggestion. >Best regards, >Javier Carrasco Best regards, Flaviu Nistor ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property 2026-06-23 18:16 ` Flaviu Nistor @ 2026-06-23 18:58 ` Guenter Roeck 2026-06-23 19:22 ` Flaviu Nistor 0 siblings, 1 reply; 8+ messages in thread From: Guenter Roeck @ 2026-06-23 18:58 UTC (permalink / raw) To: Flaviu Nistor, Javier Carrasco Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jonathan Corbet, Shuah Khan, linux-hwmon, linux-kernel, devicetree, linux-doc On 6/23/26 11:16, Flaviu Nistor wrote: > On Mon Jun 22, 2026 at 7:29 PM CEST, Javier Carrasco wrote: >> On Mon Jun 22, 2026 at 2:21 PM CEST, Flaviu Nistor wrote: >>> Add support for an optional label property similar to other hwmon devices >>> This allows, in case of boards with multiple CHIPCAP2 sensors, to assign >>> distinct names to each instance. >>> >>> Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> >>> --- >>> .../devicetree/bindings/hwmon/amphenol,chipcap2.yaml | 5 +++++ >>> 1 file changed, 5 insertions(+) >>> >>> diff --git a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.ya= >> ml b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >>> index 17351fdbefce..f00b5a4b14dd 100644 >>> --- a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >>> +++ b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >>> @@ -33,6 +33,10 @@ properties: >>> reg: >>> maxItems: 1 >>> >>> + label: >>> + description: >>> + A descriptive name for this channel, like "ambient" or "psu". >>> + >>> interrupts: >>> items: >>> - description: measurement ready indicator >>> @@ -72,6 +76,7 @@ examples: >>> <5 IRQ_TYPE_EDGE_RISING>, >>> <6 IRQ_TYPE_EDGE_RISING>; >>> interrupt-names =3D "ready", "low", "high"; >>> + label =3D "somelabel"; >>> vdd-supply =3D <®_vdd>; >>> }; >> }; >> >> Hello Falviu, thank you for your patch. >> > > Hello Javier, thanks for your reply. > >> Should we not add a reference to hwmon-common.yaml (with >> unevelautedProperties instead of additionalProperties), as label is >> defined there? I believe that Krzysztof Kozlowski did something similar >> for the shunt-resistor-micro-ohms property. Could we follow suit here? >> > > This is a good question and I am happy you asked. I also thought a lot > about this and the reason I decided to go for this approach is that by using > $ref: hwmon-common.yaml#, I would have to change additionalProperties: false > to unevaluatedProperties: false, which will evaluate in case it is used, also > shunt-resistor-micro-ohms property which does not apply to this sensor. At > least this is my understanding, but of course I can be wrong (I see lm75 binding > also uses $ref: hwmon-common.yaml# but shunt-resistor-micro-ohms does not apply). > Where does the idea come from that shunt-resistor-micro-ohms would be mandatory ? That would make hwmon-common.yaml unusable for most chips. Guenter >> I am also not a big fan of a name like "somelabel", and a more >> meaningful name from a "real" example would look better. I know that >> some examples have already used "somelabel" as an example, but others >> have used more meaningful names too. >> > > I will have to send a v2 since for the label property description I used > "channel" instead of "sensor" (detected by Sashiko AI review), so I can > use in the example section a more meaningful name like "Room" if no other > suggestion. > >> Best regards, >> Javier Carrasco > > Best regards, > Flaviu Nistor > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re:[PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property 2026-06-23 18:58 ` [PATCH " Guenter Roeck @ 2026-06-23 19:22 ` Flaviu Nistor 0 siblings, 0 replies; 8+ messages in thread From: Flaviu Nistor @ 2026-06-23 19:22 UTC (permalink / raw) To: Guenter Roeck Cc: Javier Carrasco, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jonathan Corbet, Shuah Khan, Flaviu Nistor, linux-hwmon, linux-kernel, devicetree, linux-doc On 6/23/26 9:58 PM CET, Guenter Roeck wrote: >On 6/23/26 11:16, Flaviu Nistor wrote: >> On Mon Jun 22, 2026 at 7:29 PM CEST, Javier Carrasco wrote: >>> On Mon Jun 22, 2026 at 2:21 PM CEST, Flaviu Nistor wrote: >>>> Add support for an optional label property similar to other hwmon devices >>>> This allows, in case of boards with multiple CHIPCAP2 sensors, to assign >>>> distinct names to each instance. >>>> >>>> Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> >>>> --- >>>> .../devicetree/bindings/hwmon/amphenol,chipcap2.yaml | 5 +++++ >>>> 1 file changed, 5 insertions(+) >>>> >>>> diff --git a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.ya= >>> ml b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >>>> index 17351fdbefce..f00b5a4b14dd 100644 >>>> --- a/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >>>> +++ b/Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml >>>> @@ -33,6 +33,10 @@ properties: >>>> reg: >>>> maxItems: 1 >>>> >>>> + label: >>>> + description: >>>> + A descriptive name for this channel, like "ambient" or "psu". >>>> + >>>> interrupts: >>>> items: >>>> - description: measurement ready indicator >>>> @@ -72,6 +76,7 @@ examples: >>>> <5 IRQ_TYPE_EDGE_RISING>, >>>> <6 IRQ_TYPE_EDGE_RISING>; >>>> interrupt-names =3D "ready", "low", "high"; >>>> + label =3D "somelabel"; >>>> vdd-supply =3D <®_vdd>; >>>> }; >>> }; >>> >>> Hello Falviu, thank you for your patch. >>> >> >> Hello Javier, thanks for your reply. >> >>> Should we not add a reference to hwmon-common.yaml (with >>> unevelautedProperties instead of additionalProperties), as label is >>> defined there? I believe that Krzysztof Kozlowski did something similar >>> for the shunt-resistor-micro-ohms property. Could we follow suit here? >>> >> >> This is a good question and I am happy you asked. I also thought a lot >> about this and the reason I decided to go for this approach is that by using >> $ref: hwmon-common.yaml#, I would have to change additionalProperties: false >> to unevaluatedProperties: false, which will evaluate in case it is used, also >> shunt-resistor-micro-ohms property which does not apply to this sensor. At >> least this is my understanding, but of course I can be wrong (I see lm75 binding >> also uses $ref: hwmon-common.yaml# but shunt-resistor-micro-ohms does not apply). >> > >Where does the idea come from that shunt-resistor-micro-ohms would be mandatory ? >That would make hwmon-common.yaml unusable for most chips. I think this is a misunderstanding since I never had the intention to imply that shunt-resistor-micro-ohms would be mandatory, but rather I observed that if I used $ref: hwmon-common.yaml#, property shunt-resistor-micro-ohms can be added (no need to, but still possible) in the example section and the dt_binding_check will pass. Since hwmon-common.yaml is already there I will change the binding in a v2 and use it. Best regards, Flaviu ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-06-23 19:22 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-22 12:21 [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property Flaviu Nistor 2026-06-22 12:22 ` [PATCH 2/2] hwmon: (chipcap2) Add support for label Flaviu Nistor 2026-06-22 12:30 ` sashiko-bot 2026-06-22 12:32 ` [PATCH 1/2] dt-bindings: hwmon: chipcap2: Add label property sashiko-bot 2026-06-22 16:29 ` Javier Carrasco 2026-06-23 18:16 ` Flaviu Nistor 2026-06-23 18:58 ` [PATCH " Guenter Roeck 2026-06-23 19:22 ` Flaviu Nistor
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox