power_supply_sysfs.c 9.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 *  Sysfs interface for the universal power supply monitor class
 *
 *  Copyright © 2007  David Woodhouse <dwmw2@infradead.org>
 *  Copyright © 2007  Anton Vorontsov <cbou@mail.ru>
 *  Copyright © 2004  Szabolcs Gyurko
 *  Copyright © 2003  Ian Molton <spyro@f2s.com>
 *
 *  Modified: 2004, Oct     Szabolcs Gyurko
 *
 *  You may use this code as per GPL version 2
 */

#include <linux/ctype.h>
15
#include <linux/device.h>
16
#include <linux/power_supply.h>
17
#include <linux/slab.h>
18
#include <linux/stat.h>
19

20 21
#include "power_supply.h"

22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*
 * This is because the name "current" breaks the device attr macro.
 * The "current" word resolves to "(get_current())" so instead of
 * "current" "(get_current())" appears in the sysfs.
 *
 * The source of this definition is the device.h which calls __ATTR
 * macro in sysfs.h which calls the __stringify macro.
 *
 * Only modification that the name is not tried to be resolved
 * (as a macro let's say).
 */

#define POWER_SUPPLY_ATTR(_name)					\
{									\
36
	.attr = { .name = #_name },					\
37
	.show = power_supply_show_property,				\
38
	.store = power_supply_store_property,				\
39 40 41 42 43 44 45
}

static struct device_attribute power_supply_attrs[];

static ssize_t power_supply_show_property(struct device *dev,
					  struct device_attribute *attr,
					  char *buf) {
46
	static char *type_text[] = {
47
		"Unknown", "Battery", "UPS", "Mains", "USB",
48
		"USB_DCP", "USB_CDP", "USB_ACA", "USB_C",
49
		"USB_PD", "USB_PD_DRP", "BrickID"
50
	};
51 52 53
	static char *status_text[] = {
		"Unknown", "Charging", "Discharging", "Not charging", "Full"
	};
54 55 56
	static char *charge_type[] = {
		"Unknown", "N/A", "Trickle", "Fast"
	};
57 58
	static char *health_text[] = {
		"Unknown", "Good", "Overheat", "Dead", "Over voltage",
59 60
		"Unspecified failure", "Cold", "Watchdog timer expire",
		"Safety timer expire"
61 62
	};
	static char *technology_text[] = {
63 64
		"Unknown", "NiMH", "Li-ion", "Li-poly", "LiFe", "NiCd",
		"LiMn"
65
	};
66 67 68
	static char *capacity_level_text[] = {
		"Unknown", "Critical", "Low", "Normal", "High", "Full"
	};
69 70 71
	static char *scope_text[] = {
		"Unknown", "System", "Device"
	};
72
	ssize_t ret = 0;
73 74 75 76
	struct power_supply *psy = dev_get_drvdata(dev);
	const ptrdiff_t off = attr - power_supply_attrs;
	union power_supply_propval value;

77
	if (off == POWER_SUPPLY_PROP_TYPE) {
78
		value.intval = psy->desc->type;
79
	} else {
80
		ret = power_supply_get_property(psy, off, &value);
81

82 83 84 85
		if (ret < 0) {
			if (ret == -ENODATA)
				dev_dbg(dev, "driver has no data for `%s' property\n",
					attr->attr.name);
86
			else if (ret != -ENODEV && ret != -EAGAIN)
87 88 89 90
				dev_err(dev, "driver failed to report `%s' property: %zd\n",
					attr->attr.name, ret);
			return ret;
		}
91 92 93 94
	}

	if (off == POWER_SUPPLY_PROP_STATUS)
		return sprintf(buf, "%s\n", status_text[value.intval]);
95 96
	else if (off == POWER_SUPPLY_PROP_CHARGE_TYPE)
		return sprintf(buf, "%s\n", charge_type[value.intval]);
97 98 99 100
	else if (off == POWER_SUPPLY_PROP_HEALTH)
		return sprintf(buf, "%s\n", health_text[value.intval]);
	else if (off == POWER_SUPPLY_PROP_TECHNOLOGY)
		return sprintf(buf, "%s\n", technology_text[value.intval]);
101 102
	else if (off == POWER_SUPPLY_PROP_CAPACITY_LEVEL)
		return sprintf(buf, "%s\n", capacity_level_text[value.intval]);
103 104
	else if (off == POWER_SUPPLY_PROP_TYPE)
		return sprintf(buf, "%s\n", type_text[value.intval]);
105 106
	else if (off == POWER_SUPPLY_PROP_SCOPE)
		return sprintf(buf, "%s\n", scope_text[value.intval]);
107 108 109 110 111 112
	else if (off >= POWER_SUPPLY_PROP_MODEL_NAME)
		return sprintf(buf, "%s\n", value.strval);

	return sprintf(buf, "%d\n", value.intval);
}

113 114 115 116 117 118 119 120 121 122
static ssize_t power_supply_store_property(struct device *dev,
					   struct device_attribute *attr,
					   const char *buf, size_t count) {
	ssize_t ret;
	struct power_supply *psy = dev_get_drvdata(dev);
	const ptrdiff_t off = attr - power_supply_attrs;
	union power_supply_propval value;
	long long_val;

	/* TODO: support other types than int */
123
	ret = kstrtol(buf, 10, &long_val);
124 125 126 127 128
	if (ret < 0)
		return ret;

	value.intval = long_val;

129
	ret = power_supply_set_property(psy, off, &value);
130 131 132 133 134 135
	if (ret < 0)
		return ret;

	return count;
}

136 137 138 139
/* Must be in the same order as POWER_SUPPLY_PROP_* */
static struct device_attribute power_supply_attrs[] = {
	/* Properties of type `int' */
	POWER_SUPPLY_ATTR(status),
140
	POWER_SUPPLY_ATTR(charge_type),
141 142 143
	POWER_SUPPLY_ATTR(health),
	POWER_SUPPLY_ATTR(present),
	POWER_SUPPLY_ATTR(online),
144
	POWER_SUPPLY_ATTR(authentic),
145
	POWER_SUPPLY_ATTR(technology),
146
	POWER_SUPPLY_ATTR(cycle_count),
147 148
	POWER_SUPPLY_ATTR(voltage_max),
	POWER_SUPPLY_ATTR(voltage_min),
149 150 151 152
	POWER_SUPPLY_ATTR(voltage_max_design),
	POWER_SUPPLY_ATTR(voltage_min_design),
	POWER_SUPPLY_ATTR(voltage_now),
	POWER_SUPPLY_ATTR(voltage_avg),
153
	POWER_SUPPLY_ATTR(voltage_ocv),
154
	POWER_SUPPLY_ATTR(voltage_boot),
155
	POWER_SUPPLY_ATTR(current_max),
156 157
	POWER_SUPPLY_ATTR(current_now),
	POWER_SUPPLY_ATTR(current_avg),
158
	POWER_SUPPLY_ATTR(current_boot),
159 160
	POWER_SUPPLY_ATTR(power_now),
	POWER_SUPPLY_ATTR(power_avg),
161 162 163 164 165 166
	POWER_SUPPLY_ATTR(charge_full_design),
	POWER_SUPPLY_ATTR(charge_empty_design),
	POWER_SUPPLY_ATTR(charge_full),
	POWER_SUPPLY_ATTR(charge_empty),
	POWER_SUPPLY_ATTR(charge_now),
	POWER_SUPPLY_ATTR(charge_avg),
167
	POWER_SUPPLY_ATTR(charge_counter),
168
	POWER_SUPPLY_ATTR(constant_charge_current),
169
	POWER_SUPPLY_ATTR(constant_charge_current_max),
170
	POWER_SUPPLY_ATTR(constant_charge_voltage),
171
	POWER_SUPPLY_ATTR(constant_charge_voltage_max),
172 173
	POWER_SUPPLY_ATTR(charge_control_limit),
	POWER_SUPPLY_ATTR(charge_control_limit_max),
174
	POWER_SUPPLY_ATTR(input_current_limit),
175 176 177 178 179 180 181
	POWER_SUPPLY_ATTR(energy_full_design),
	POWER_SUPPLY_ATTR(energy_empty_design),
	POWER_SUPPLY_ATTR(energy_full),
	POWER_SUPPLY_ATTR(energy_empty),
	POWER_SUPPLY_ATTR(energy_now),
	POWER_SUPPLY_ATTR(energy_avg),
	POWER_SUPPLY_ATTR(capacity),
182 183
	POWER_SUPPLY_ATTR(capacity_alert_min),
	POWER_SUPPLY_ATTR(capacity_alert_max),
184
	POWER_SUPPLY_ATTR(capacity_level),
185
	POWER_SUPPLY_ATTR(temp),
186 187
	POWER_SUPPLY_ATTR(temp_max),
	POWER_SUPPLY_ATTR(temp_min),
188 189
	POWER_SUPPLY_ATTR(temp_alert_min),
	POWER_SUPPLY_ATTR(temp_alert_max),
190
	POWER_SUPPLY_ATTR(temp_ambient),
191 192
	POWER_SUPPLY_ATTR(temp_ambient_alert_min),
	POWER_SUPPLY_ATTR(temp_ambient_alert_max),
193 194 195 196
	POWER_SUPPLY_ATTR(time_to_empty_now),
	POWER_SUPPLY_ATTR(time_to_empty_avg),
	POWER_SUPPLY_ATTR(time_to_full_now),
	POWER_SUPPLY_ATTR(time_to_full_avg),
197
	POWER_SUPPLY_ATTR(type),
198
	POWER_SUPPLY_ATTR(scope),
199
	POWER_SUPPLY_ATTR(charge_term_current),
200
	POWER_SUPPLY_ATTR(calibrate),
201 202 203
	/* Properties of type `const char *' */
	POWER_SUPPLY_ATTR(model_name),
	POWER_SUPPLY_ATTR(manufacturer),
204
	POWER_SUPPLY_ATTR(serial_number),
205 206
};

207 208
static struct attribute *
__power_supply_attrs[ARRAY_SIZE(power_supply_attrs) + 1];
209

210
static umode_t power_supply_attr_is_visible(struct kobject *kobj,
211 212
					   struct attribute *attr,
					   int attrno)
213
{
214 215
	struct device *dev = container_of(kobj, struct device, kobj);
	struct power_supply *psy = dev_get_drvdata(dev);
216
	umode_t mode = S_IRUSR | S_IRGRP | S_IROTH;
217
	int i;
218

219 220 221
	if (attrno == POWER_SUPPLY_PROP_TYPE)
		return mode;

222 223
	for (i = 0; i < psy->desc->num_properties; i++) {
		int property = psy->desc->properties[i];
224 225

		if (property == attrno) {
226
			if (psy->desc->property_is_writeable &&
227
			    psy->desc->property_is_writeable(psy, property) > 0)
228 229 230 231
				mode |= S_IWUSR;

			return mode;
		}
232 233
	}

234
	return 0;
235 236
}

237 238 239 240 241 242 243 244 245 246 247
static struct attribute_group power_supply_attr_group = {
	.attrs = __power_supply_attrs,
	.is_visible = power_supply_attr_is_visible,
};

static const struct attribute_group *power_supply_attr_groups[] = {
	&power_supply_attr_group,
	NULL,
};

void power_supply_init_attrs(struct device_type *dev_type)
248 249 250
{
	int i;

251
	dev_type->groups = power_supply_attr_groups;
252

253 254
	for (i = 0; i < ARRAY_SIZE(power_supply_attrs); i++)
		__power_supply_attrs[i] = &power_supply_attrs[i].attr;
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
}

static char *kstruprdup(const char *str, gfp_t gfp)
{
	char *ret, *ustr;

	ustr = ret = kmalloc(strlen(str) + 1, gfp);

	if (!ret)
		return NULL;

	while (*str)
		*ustr++ = toupper(*str++);

	*ustr = 0;

	return ret;
}

274
int power_supply_uevent(struct device *dev, struct kobj_uevent_env *env)
275 276
{
	struct power_supply *psy = dev_get_drvdata(dev);
277
	int ret = 0, j;
278 279 280 281 282
	char *prop_buf;
	char *attrname;

	dev_dbg(dev, "uevent\n");

283
	if (!psy || !psy->desc) {
284 285 286 287
		dev_dbg(dev, "No power supply yet\n");
		return ret;
	}

288
	dev_dbg(dev, "POWER_SUPPLY_NAME=%s\n", psy->desc->name);
289

290
	ret = add_uevent_var(env, "POWER_SUPPLY_NAME=%s", psy->desc->name);
291 292 293 294 295 296 297
	if (ret)
		return ret;

	prop_buf = (char *)get_zeroed_page(GFP_KERNEL);
	if (!prop_buf)
		return -ENOMEM;

298
	for (j = 0; j < psy->desc->num_properties; j++) {
299 300 301
		struct device_attribute *attr;
		char *line;

302
		attr = &power_supply_attrs[psy->desc->properties[j]];
303 304

		ret = power_supply_show_property(dev, attr, prop_buf);
305
		if (ret == -ENODEV || ret == -ENODATA) {
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
			/* When a battery is absent, we expect -ENODEV. Don't abort;
			   send the uevent with at least the the PRESENT=0 property */
			ret = 0;
			continue;
		}

		if (ret < 0)
			goto out;

		line = strchr(prop_buf, '\n');
		if (line)
			*line = 0;

		attrname = kstruprdup(attr->attr.name, GFP_KERNEL);
		if (!attrname) {
			ret = -ENOMEM;
			goto out;
		}

		dev_dbg(dev, "prop %s=%s\n", attrname, prop_buf);

327
		ret = add_uevent_var(env, "POWER_SUPPLY_%s=%s", attrname, prop_buf);
328 329 330 331 332 333 334 335 336 337
		kfree(attrname);
		if (ret)
			goto out;
	}

out:
	free_page((unsigned long)prop_buf);

	return ret;
}