PM / sleep: Asynchronous threads for suspend_noirq
[linux/fpc-iii.git] / drivers / platform / x86 / intel-rst.c
blobd45bca34bf1b3bc935f5dc9b729fd87219cf4825
1 /*
2 * Copyright 2013 Matthew Garrett <mjg59@srcf.ucam.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/slab.h>
23 #include <linux/acpi.h>
25 MODULE_LICENSE("GPL");
27 static ssize_t irst_show_wakeup_events(struct device *dev,
28 struct device_attribute *attr,
29 char *buf)
31 struct acpi_device *acpi;
32 unsigned long long value;
33 acpi_status status;
35 acpi = to_acpi_device(dev);
37 status = acpi_evaluate_integer(acpi->handle, "GFFS", NULL, &value);
38 if (!ACPI_SUCCESS(status))
39 return -EINVAL;
41 return sprintf(buf, "%lld\n", value);
44 static ssize_t irst_store_wakeup_events(struct device *dev,
45 struct device_attribute *attr,
46 const char *buf, size_t count)
48 struct acpi_device *acpi;
49 acpi_status status;
50 unsigned long value;
51 int error;
53 acpi = to_acpi_device(dev);
55 error = kstrtoul(buf, 0, &value);
57 if (error)
58 return error;
60 status = acpi_execute_simple_method(acpi->handle, "SFFS", value);
62 if (!ACPI_SUCCESS(status))
63 return -EINVAL;
65 return count;
68 static struct device_attribute irst_wakeup_attr = {
69 .attr = { .name = "wakeup_events", .mode = 0600 },
70 .show = irst_show_wakeup_events,
71 .store = irst_store_wakeup_events
74 static ssize_t irst_show_wakeup_time(struct device *dev,
75 struct device_attribute *attr, char *buf)
77 struct acpi_device *acpi;
78 unsigned long long value;
79 acpi_status status;
81 acpi = to_acpi_device(dev);
83 status = acpi_evaluate_integer(acpi->handle, "GFTV", NULL, &value);
84 if (!ACPI_SUCCESS(status))
85 return -EINVAL;
87 return sprintf(buf, "%lld\n", value);
90 static ssize_t irst_store_wakeup_time(struct device *dev,
91 struct device_attribute *attr,
92 const char *buf, size_t count)
94 struct acpi_device *acpi;
95 acpi_status status;
96 unsigned long value;
97 int error;
99 acpi = to_acpi_device(dev);
101 error = kstrtoul(buf, 0, &value);
103 if (error)
104 return error;
106 status = acpi_execute_simple_method(acpi->handle, "SFTV", value);
108 if (!ACPI_SUCCESS(status))
109 return -EINVAL;
111 return count;
114 static struct device_attribute irst_timeout_attr = {
115 .attr = { .name = "wakeup_time", .mode = 0600 },
116 .show = irst_show_wakeup_time,
117 .store = irst_store_wakeup_time
120 static int irst_add(struct acpi_device *acpi)
122 int error = 0;
124 error = device_create_file(&acpi->dev, &irst_timeout_attr);
125 if (error)
126 goto out;
128 error = device_create_file(&acpi->dev, &irst_wakeup_attr);
129 if (error)
130 goto out_timeout;
132 return 0;
134 out_timeout:
135 device_remove_file(&acpi->dev, &irst_timeout_attr);
136 out:
137 return error;
140 static int irst_remove(struct acpi_device *acpi)
142 device_remove_file(&acpi->dev, &irst_wakeup_attr);
143 device_remove_file(&acpi->dev, &irst_timeout_attr);
145 return 0;
148 static const struct acpi_device_id irst_ids[] = {
149 {"INT3392", 0},
150 {"", 0}
153 static struct acpi_driver irst_driver = {
154 .owner = THIS_MODULE,
155 .name = "intel_rapid_start",
156 .class = "intel_rapid_start",
157 .ids = irst_ids,
158 .ops = {
159 .add = irst_add,
160 .remove = irst_remove,
164 module_acpi_driver(irst_driver);
166 MODULE_DEVICE_TABLE(acpi, irst_ids);