blob: f3a0c562bcb53ff019aa8db27cfd40860a1a6335 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/base/power/sysfs.c - sysfs entries for device PM
3 */
4
5#include <linux/device.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -08006#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "power.h"
8
9
10/**
11 * state - Control current power state of device
12 *
13 * show() returns the current power state of the device. '0' indicates
14 * the device is on. Other values (1-3) indicate the device is in a low
15 * power state.
16 *
17 * store() sets the current power state, which is an integer value
18 * between 0-3. If the device is on ('0'), and the value written is
19 * greater than 0, then the device is placed directly into the low-power
20 * state (via its driver's ->suspend() method).
21 * If the device is currently in a low-power state, and the value is 0,
22 * the device is powered back on (via the ->resume() method).
23 * If the device is in a low-power state, and a different low-power state
24 * is requested, the device is first resumed, then suspended into the new
25 * low-power state.
26 */
27
Yani Ioannou74880c02005-05-17 06:41:12 -040028static ssize_t state_show(struct device * dev, struct device_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Pavel Machekca078ba2005-09-03 15:56:57 -070030 return sprintf(buf, "%u\n", dev->power.power_state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031}
32
Yani Ioannou74880c02005-05-17 06:41:12 -040033static ssize_t state_store(struct device * dev, struct device_attribute *attr, const char * buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Pavel Machekca078ba2005-09-03 15:56:57 -070035 pm_message_t state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 char * rest;
37 int error = 0;
38
Pavel Machekca078ba2005-09-03 15:56:57 -070039 state.event = simple_strtoul(buf, &rest, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 if (*rest)
41 return -EINVAL;
Pavel Machekca078ba2005-09-03 15:56:57 -070042 if (state.event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 error = dpm_runtime_suspend(dev, state);
44 else
45 dpm_runtime_resume(dev);
46 return error ? error : n;
47}
48
49static DEVICE_ATTR(state, 0644, state_show, state_store);
50
51
David Brownell0ac85242005-09-12 19:39:34 -070052/*
53 * wakeup - Report/change current wakeup option for device
54 *
55 * Some devices support "wakeup" events, which are hardware signals
56 * used to activate devices from suspended or low power states. Such
57 * devices have one of three values for the sysfs power/wakeup file:
58 *
59 * + "enabled\n" to issue the events;
60 * + "disabled\n" not to do so; or
61 * + "\n" for temporary or permanent inability to issue wakeup.
62 *
63 * (For example, unconfigured USB devices can't issue wakeups.)
64 *
65 * Familiar examples of devices that can issue wakeup events include
66 * keyboards and mice (both PS2 and USB styles), power buttons, modems,
67 * "Wake-On-LAN" Ethernet links, GPIO lines, and more. Some events
68 * will wake the entire system from a suspend state; others may just
69 * wake up the device (if the system as a whole is already active).
70 * Some wakeup events use normal IRQ lines; other use special out
71 * of band signaling.
72 *
73 * It is the responsibility of device drivers to enable (or disable)
74 * wakeup signaling as part of changing device power states, respecting
75 * the policy choices provided through the driver model.
76 *
77 * Devices may not be able to generate wakeup events from all power
78 * states. Also, the events may be ignored in some configurations;
79 * for example, they might need help from other devices that aren't
80 * active, or which may have wakeup disabled. Some drivers rely on
81 * wakeup events internally (unless they are disabled), keeping
82 * their hardware in low power modes whenever they're unused. This
83 * saves runtime power, without requiring system-wide sleep states.
84 */
85
86static const char enabled[] = "enabled";
87static const char disabled[] = "disabled";
88
89static ssize_t
90wake_show(struct device * dev, struct device_attribute *attr, char * buf)
91{
92 return sprintf(buf, "%s\n", device_can_wakeup(dev)
93 ? (device_may_wakeup(dev) ? enabled : disabled)
94 : "");
95}
96
97static ssize_t
98wake_store(struct device * dev, struct device_attribute *attr,
99 const char * buf, size_t n)
100{
101 char *cp;
102 int len = n;
103
104 if (!device_can_wakeup(dev))
105 return -EINVAL;
106
107 cp = memchr(buf, '\n', n);
108 if (cp)
109 len = cp - buf;
110 if (len == sizeof enabled - 1
111 && strncmp(buf, enabled, sizeof enabled - 1) == 0)
112 device_set_wakeup_enable(dev, 1);
113 else if (len == sizeof disabled - 1
114 && strncmp(buf, disabled, sizeof disabled - 1) == 0)
115 device_set_wakeup_enable(dev, 0);
116 else
117 return -EINVAL;
118 return n;
119}
120
121static DEVICE_ATTR(wakeup, 0644, wake_show, wake_store);
122
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static struct attribute * power_attrs[] = {
125 &dev_attr_state.attr,
David Brownell0ac85242005-09-12 19:39:34 -0700126 &dev_attr_wakeup.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 NULL,
128};
129static struct attribute_group pm_attr_group = {
130 .name = "power",
131 .attrs = power_attrs,
132};
133
134int dpm_sysfs_add(struct device * dev)
135{
136 return sysfs_create_group(&dev->kobj, &pm_attr_group);
137}
138
139void dpm_sysfs_remove(struct device * dev)
140{
141 sysfs_remove_group(&dev->kobj, &pm_attr_group);
142}