1 // SPDX-License-Identifier: GPL-2.0-only
3 * Sysfs interface for the universal power supply monitor class
5 * Copyright © 2007 David Woodhouse <dwmw2@infradead.org>
6 * Copyright © 2007 Anton Vorontsov <cbou@mail.ru>
7 * Copyright © 2004 Szabolcs Gyurko
8 * Copyright © 2003 Ian Molton <spyro@f2s.com>
10 * Modified: 2004, Oct Szabolcs Gyurko
13 #include <linux/ctype.h>
14 #include <linux/device.h>
15 #include <linux/power_supply.h>
16 #include <linux/slab.h>
17 #include <linux/stat.h>
19 #include "power_supply.h"
22 * This is because the name "current" breaks the device attr macro.
23 * The "current" word resolves to "(get_current())" so instead of
24 * "current" "(get_current())" appears in the sysfs.
26 * The source of this definition is the device.h which calls __ATTR
27 * macro in sysfs.h which calls the __stringify macro.
29 * Only modification that the name is not tried to be resolved
30 * (as a macro let's say).
33 #define POWER_SUPPLY_ATTR(_name) \
35 .attr = { .name = #_name }, \
36 .show = power_supply_show_property, \
37 .store = power_supply_store_property, \
40 static struct device_attribute power_supply_attrs
[];
42 static const char * const power_supply_type_text
[] = {
43 "Unknown", "Battery", "UPS", "Mains", "USB",
44 "USB_DCP", "USB_CDP", "USB_ACA", "USB_C",
45 "USB_PD", "USB_PD_DRP", "BrickID"
48 static const char * const power_supply_usb_type_text
[] = {
49 "Unknown", "SDP", "DCP", "CDP", "ACA", "C",
50 "PD", "PD_DRP", "PD_PPS", "BrickID"
53 static const char * const power_supply_status_text
[] = {
54 "Unknown", "Charging", "Discharging", "Not charging", "Full"
57 static const char * const power_supply_charge_type_text
[] = {
58 "Unknown", "N/A", "Trickle", "Fast", "Standard", "Adaptive", "Custom"
61 static const char * const power_supply_health_text
[] = {
62 "Unknown", "Good", "Overheat", "Dead", "Over voltage",
63 "Unspecified failure", "Cold", "Watchdog timer expire",
64 "Safety timer expire", "Over current"
67 static const char * const power_supply_technology_text
[] = {
68 "Unknown", "NiMH", "Li-ion", "Li-poly", "LiFe", "NiCd",
72 static const char * const power_supply_capacity_level_text
[] = {
73 "Unknown", "Critical", "Low", "Normal", "High", "Full"
76 static const char * const power_supply_scope_text
[] = {
77 "Unknown", "System", "Device"
80 static ssize_t
power_supply_show_usb_type(struct device
*dev
,
81 enum power_supply_usb_type
*usb_types
,
82 ssize_t num_usb_types
,
83 union power_supply_propval
*value
,
86 enum power_supply_usb_type usb_type
;
91 for (i
= 0; i
< num_usb_types
; ++i
) {
92 usb_type
= usb_types
[i
];
94 if (value
->intval
== usb_type
) {
95 count
+= sprintf(buf
+ count
, "[%s] ",
96 power_supply_usb_type_text
[usb_type
]);
99 count
+= sprintf(buf
+ count
, "%s ",
100 power_supply_usb_type_text
[usb_type
]);
105 dev_warn(dev
, "driver reporting unsupported connected type\n");
110 buf
[count
- 1] = '\n';
115 static ssize_t
power_supply_show_property(struct device
*dev
,
116 struct device_attribute
*attr
,
119 struct power_supply
*psy
= dev_get_drvdata(dev
);
120 enum power_supply_property psp
= attr
- power_supply_attrs
;
121 union power_supply_propval value
;
123 if (psp
== POWER_SUPPLY_PROP_TYPE
) {
124 value
.intval
= psy
->desc
->type
;
126 ret
= power_supply_get_property(psy
, psp
, &value
);
130 dev_dbg(dev
, "driver has no data for `%s' property\n",
132 else if (ret
!= -ENODEV
&& ret
!= -EAGAIN
)
133 dev_err_ratelimited(dev
,
134 "driver failed to report `%s' property: %zd\n",
135 attr
->attr
.name
, ret
);
141 case POWER_SUPPLY_PROP_STATUS
:
142 ret
= sprintf(buf
, "%s\n",
143 power_supply_status_text
[value
.intval
]);
145 case POWER_SUPPLY_PROP_CHARGE_TYPE
:
146 ret
= sprintf(buf
, "%s\n",
147 power_supply_charge_type_text
[value
.intval
]);
149 case POWER_SUPPLY_PROP_HEALTH
:
150 ret
= sprintf(buf
, "%s\n",
151 power_supply_health_text
[value
.intval
]);
153 case POWER_SUPPLY_PROP_TECHNOLOGY
:
154 ret
= sprintf(buf
, "%s\n",
155 power_supply_technology_text
[value
.intval
]);
157 case POWER_SUPPLY_PROP_CAPACITY_LEVEL
:
158 ret
= sprintf(buf
, "%s\n",
159 power_supply_capacity_level_text
[value
.intval
]);
161 case POWER_SUPPLY_PROP_TYPE
:
162 ret
= sprintf(buf
, "%s\n",
163 power_supply_type_text
[value
.intval
]);
165 case POWER_SUPPLY_PROP_USB_TYPE
:
166 ret
= power_supply_show_usb_type(dev
, psy
->desc
->usb_types
,
167 psy
->desc
->num_usb_types
,
170 case POWER_SUPPLY_PROP_SCOPE
:
171 ret
= sprintf(buf
, "%s\n",
172 power_supply_scope_text
[value
.intval
]);
174 case POWER_SUPPLY_PROP_MODEL_NAME
... POWER_SUPPLY_PROP_SERIAL_NUMBER
:
175 ret
= sprintf(buf
, "%s\n", value
.strval
);
178 ret
= sprintf(buf
, "%d\n", value
.intval
);
184 static ssize_t
power_supply_store_property(struct device
*dev
,
185 struct device_attribute
*attr
,
186 const char *buf
, size_t count
) {
188 struct power_supply
*psy
= dev_get_drvdata(dev
);
189 enum power_supply_property psp
= attr
- power_supply_attrs
;
190 union power_supply_propval value
;
193 case POWER_SUPPLY_PROP_STATUS
:
194 ret
= sysfs_match_string(power_supply_status_text
, buf
);
196 case POWER_SUPPLY_PROP_CHARGE_TYPE
:
197 ret
= sysfs_match_string(power_supply_charge_type_text
, buf
);
199 case POWER_SUPPLY_PROP_HEALTH
:
200 ret
= sysfs_match_string(power_supply_health_text
, buf
);
202 case POWER_SUPPLY_PROP_TECHNOLOGY
:
203 ret
= sysfs_match_string(power_supply_technology_text
, buf
);
205 case POWER_SUPPLY_PROP_CAPACITY_LEVEL
:
206 ret
= sysfs_match_string(power_supply_capacity_level_text
, buf
);
208 case POWER_SUPPLY_PROP_SCOPE
:
209 ret
= sysfs_match_string(power_supply_scope_text
, buf
);
216 * If no match was found, then check to see if it is an integer.
217 * Integer values are valid for enums in addition to the text value.
222 ret
= kstrtol(buf
, 10, &long_val
);
231 ret
= power_supply_set_property(psy
, psp
, &value
);
238 /* Must be in the same order as POWER_SUPPLY_PROP_* */
239 static struct device_attribute power_supply_attrs
[] = {
240 /* Properties of type `int' */
241 POWER_SUPPLY_ATTR(status
),
242 POWER_SUPPLY_ATTR(charge_type
),
243 POWER_SUPPLY_ATTR(health
),
244 POWER_SUPPLY_ATTR(present
),
245 POWER_SUPPLY_ATTR(online
),
246 POWER_SUPPLY_ATTR(authentic
),
247 POWER_SUPPLY_ATTR(technology
),
248 POWER_SUPPLY_ATTR(cycle_count
),
249 POWER_SUPPLY_ATTR(voltage_max
),
250 POWER_SUPPLY_ATTR(voltage_min
),
251 POWER_SUPPLY_ATTR(voltage_max_design
),
252 POWER_SUPPLY_ATTR(voltage_min_design
),
253 POWER_SUPPLY_ATTR(voltage_now
),
254 POWER_SUPPLY_ATTR(voltage_avg
),
255 POWER_SUPPLY_ATTR(voltage_ocv
),
256 POWER_SUPPLY_ATTR(voltage_boot
),
257 POWER_SUPPLY_ATTR(current_max
),
258 POWER_SUPPLY_ATTR(current_now
),
259 POWER_SUPPLY_ATTR(current_avg
),
260 POWER_SUPPLY_ATTR(current_boot
),
261 POWER_SUPPLY_ATTR(power_now
),
262 POWER_SUPPLY_ATTR(power_avg
),
263 POWER_SUPPLY_ATTR(charge_full_design
),
264 POWER_SUPPLY_ATTR(charge_empty_design
),
265 POWER_SUPPLY_ATTR(charge_full
),
266 POWER_SUPPLY_ATTR(charge_empty
),
267 POWER_SUPPLY_ATTR(charge_now
),
268 POWER_SUPPLY_ATTR(charge_avg
),
269 POWER_SUPPLY_ATTR(charge_counter
),
270 POWER_SUPPLY_ATTR(constant_charge_current
),
271 POWER_SUPPLY_ATTR(constant_charge_current_max
),
272 POWER_SUPPLY_ATTR(constant_charge_voltage
),
273 POWER_SUPPLY_ATTR(constant_charge_voltage_max
),
274 POWER_SUPPLY_ATTR(charge_control_limit
),
275 POWER_SUPPLY_ATTR(charge_control_limit_max
),
276 POWER_SUPPLY_ATTR(charge_control_start_threshold
),
277 POWER_SUPPLY_ATTR(charge_control_end_threshold
),
278 POWER_SUPPLY_ATTR(input_current_limit
),
279 POWER_SUPPLY_ATTR(input_voltage_limit
),
280 POWER_SUPPLY_ATTR(input_power_limit
),
281 POWER_SUPPLY_ATTR(energy_full_design
),
282 POWER_SUPPLY_ATTR(energy_empty_design
),
283 POWER_SUPPLY_ATTR(energy_full
),
284 POWER_SUPPLY_ATTR(energy_empty
),
285 POWER_SUPPLY_ATTR(energy_now
),
286 POWER_SUPPLY_ATTR(energy_avg
),
287 POWER_SUPPLY_ATTR(capacity
),
288 POWER_SUPPLY_ATTR(capacity_alert_min
),
289 POWER_SUPPLY_ATTR(capacity_alert_max
),
290 POWER_SUPPLY_ATTR(capacity_level
),
291 POWER_SUPPLY_ATTR(temp
),
292 POWER_SUPPLY_ATTR(temp_max
),
293 POWER_SUPPLY_ATTR(temp_min
),
294 POWER_SUPPLY_ATTR(temp_alert_min
),
295 POWER_SUPPLY_ATTR(temp_alert_max
),
296 POWER_SUPPLY_ATTR(temp_ambient
),
297 POWER_SUPPLY_ATTR(temp_ambient_alert_min
),
298 POWER_SUPPLY_ATTR(temp_ambient_alert_max
),
299 POWER_SUPPLY_ATTR(time_to_empty_now
),
300 POWER_SUPPLY_ATTR(time_to_empty_avg
),
301 POWER_SUPPLY_ATTR(time_to_full_now
),
302 POWER_SUPPLY_ATTR(time_to_full_avg
),
303 POWER_SUPPLY_ATTR(type
),
304 POWER_SUPPLY_ATTR(usb_type
),
305 POWER_SUPPLY_ATTR(scope
),
306 POWER_SUPPLY_ATTR(precharge_current
),
307 POWER_SUPPLY_ATTR(charge_term_current
),
308 POWER_SUPPLY_ATTR(calibrate
),
309 /* Properties of type `const char *' */
310 POWER_SUPPLY_ATTR(model_name
),
311 POWER_SUPPLY_ATTR(manufacturer
),
312 POWER_SUPPLY_ATTR(serial_number
),
315 static struct attribute
*
316 __power_supply_attrs
[ARRAY_SIZE(power_supply_attrs
) + 1];
318 static umode_t
power_supply_attr_is_visible(struct kobject
*kobj
,
319 struct attribute
*attr
,
322 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
323 struct power_supply
*psy
= dev_get_drvdata(dev
);
324 umode_t mode
= S_IRUSR
| S_IRGRP
| S_IROTH
;
327 if (attrno
== POWER_SUPPLY_PROP_TYPE
)
330 for (i
= 0; i
< psy
->desc
->num_properties
; i
++) {
331 int property
= psy
->desc
->properties
[i
];
333 if (property
== attrno
) {
334 if (psy
->desc
->property_is_writeable
&&
335 psy
->desc
->property_is_writeable(psy
, property
) > 0)
345 static struct attribute_group power_supply_attr_group
= {
346 .attrs
= __power_supply_attrs
,
347 .is_visible
= power_supply_attr_is_visible
,
350 static const struct attribute_group
*power_supply_attr_groups
[] = {
351 &power_supply_attr_group
,
355 void power_supply_init_attrs(struct device_type
*dev_type
)
359 dev_type
->groups
= power_supply_attr_groups
;
361 for (i
= 0; i
< ARRAY_SIZE(power_supply_attrs
); i
++)
362 __power_supply_attrs
[i
] = &power_supply_attrs
[i
].attr
;
365 static char *kstruprdup(const char *str
, gfp_t gfp
)
369 ustr
= ret
= kmalloc(strlen(str
) + 1, gfp
);
375 *ustr
++ = toupper(*str
++);
382 int power_supply_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
384 struct power_supply
*psy
= dev_get_drvdata(dev
);
389 if (!psy
|| !psy
->desc
) {
390 dev_dbg(dev
, "No power supply yet\n");
394 ret
= add_uevent_var(env
, "POWER_SUPPLY_NAME=%s", psy
->desc
->name
);
398 prop_buf
= (char *)get_zeroed_page(GFP_KERNEL
);
402 for (j
= 0; j
< psy
->desc
->num_properties
; j
++) {
403 struct device_attribute
*attr
;
406 attr
= &power_supply_attrs
[psy
->desc
->properties
[j
]];
408 ret
= power_supply_show_property(dev
, attr
, prop_buf
);
409 if (ret
== -ENODEV
|| ret
== -ENODATA
) {
410 /* When a battery is absent, we expect -ENODEV. Don't abort;
411 send the uevent with at least the the PRESENT=0 property */
419 line
= strchr(prop_buf
, '\n');
423 attrname
= kstruprdup(attr
->attr
.name
, GFP_KERNEL
);
429 ret
= add_uevent_var(env
, "POWER_SUPPLY_%s=%s", attrname
, prop_buf
);
436 free_page((unsigned long)prop_buf
);