2 * HP Compaq TC1100 Tablet WMI Extras Driver
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/slab.h>
33 #include <linux/init.h>
34 #include <linux/types.h>
35 #include <acpi/acpi.h>
36 #include <acpi/acpi_bus.h>
37 #include <acpi/acpi_drivers.h>
38 #include <linux/platform_device.h>
40 #define GUID "C364AC71-36DB-495A-8494-B439D472A505"
42 #define TC1100_INSTANCE_WIRELESS 1
43 #define TC1100_INSTANCE_JOGDIAL 2
45 MODULE_AUTHOR("Jamey Hicks, Carlos Corbacho");
46 MODULE_DESCRIPTION("HP Compaq TC1100 Tablet WMI Extras");
47 MODULE_LICENSE("GPL");
48 MODULE_ALIAS("wmi:C364AC71-36DB-495A-8494-B439D472A505");
50 static struct platform_device *tc1100_device;
57 static struct tc1100_data suspend_data;
59 /* --------------------------------------------------------------------------
61 -------------------------------------------------------------------------- */
63 static int get_state(u32 *out, u8 instance)
67 struct acpi_buffer result = { ACPI_ALLOCATE_BUFFER, NULL };
68 union acpi_object *obj;
76 status = wmi_query_block(GUID, instance, &result);
77 if (ACPI_FAILURE(status))
80 obj = (union acpi_object *) result.pointer;
81 if (obj && obj->type == ACPI_TYPE_INTEGER) {
82 tmp = obj->integer.value;
87 if (result.length > 0 && result.pointer)
88 kfree(result.pointer);
91 case TC1100_INSTANCE_WIRELESS:
92 *out = (tmp == 3) ? 1 : 0;
94 case TC1100_INSTANCE_JOGDIAL:
95 *out = (tmp == 1) ? 0 : 1;
102 static int set_state(u32 *in, u8 instance)
106 struct acpi_buffer input;
115 case TC1100_INSTANCE_WIRELESS:
116 value = (*in) ? 1 : 2;
118 case TC1100_INSTANCE_JOGDIAL:
119 value = (*in) ? 0 : 1;
125 input.length = sizeof(u32);
126 input.pointer = &value;
128 status = wmi_set_block(GUID, instance, &input);
129 if (ACPI_FAILURE(status))
135 /* --------------------------------------------------------------------------
137 -------------------------------------------------------------------------- */
140 * Read/ write bool sysfs macro
142 #define show_set_bool(value, instance) \
144 show_bool_##value(struct device *dev, struct device_attribute *attr, \
148 acpi_status status = get_state(&result, instance); \
149 if (ACPI_SUCCESS(status)) \
150 return sprintf(buf, "%d\n", result); \
151 return sprintf(buf, "Read error\n"); \
155 set_bool_##value(struct device *dev, struct device_attribute *attr, \
156 const char *buf, size_t count) \
158 u32 tmp = simple_strtoul(buf, NULL, 10); \
159 acpi_status status = set_state(&tmp, instance); \
160 if (ACPI_FAILURE(status)) \
164 static DEVICE_ATTR(value, S_IRUGO | S_IWUSR, \
165 show_bool_##value, set_bool_##value);
167 show_set_bool(wireless, TC1100_INSTANCE_WIRELESS);
168 show_set_bool(jogdial, TC1100_INSTANCE_JOGDIAL);
170 static struct attribute *tc1100_attributes[] = {
171 &dev_attr_wireless.attr,
172 &dev_attr_jogdial.attr,
176 static struct attribute_group tc1100_attribute_group = {
177 .attrs = tc1100_attributes,
180 /* --------------------------------------------------------------------------
182 -------------------------------------------------------------------------- */
184 static int __init tc1100_probe(struct platform_device *device)
186 return sysfs_create_group(&device->dev.kobj, &tc1100_attribute_group);
190 static int tc1100_remove(struct platform_device *device)
192 sysfs_remove_group(&device->dev.kobj, &tc1100_attribute_group);
198 static int tc1100_suspend(struct device *dev)
202 ret = get_state(&suspend_data.wireless, TC1100_INSTANCE_WIRELESS);
206 ret = get_state(&suspend_data.jogdial, TC1100_INSTANCE_JOGDIAL);
213 static int tc1100_resume(struct device *dev)
217 ret = set_state(&suspend_data.wireless, TC1100_INSTANCE_WIRELESS);
221 ret = set_state(&suspend_data.jogdial, TC1100_INSTANCE_JOGDIAL);
228 static const struct dev_pm_ops tc1100_pm_ops = {
229 .suspend = tc1100_suspend,
230 .resume = tc1100_resume,
231 .freeze = tc1100_suspend,
232 .restore = tc1100_resume,
236 static struct platform_driver tc1100_driver = {
238 .name = "tc1100-wmi",
239 .owner = THIS_MODULE,
241 .pm = &tc1100_pm_ops,
244 .remove = tc1100_remove,
247 static int __init tc1100_init(void)
251 if (!wmi_has_guid(GUID))
254 tc1100_device = platform_device_alloc("tc1100-wmi", -1);
258 error = platform_device_add(tc1100_device);
262 error = platform_driver_probe(&tc1100_driver, tc1100_probe);
266 pr_info("HP Compaq TC1100 Tablet WMI Extras loaded\n");
270 platform_device_del(tc1100_device);
272 platform_device_put(tc1100_device);
276 static void __exit tc1100_exit(void)
278 platform_device_unregister(tc1100_device);
279 platform_driver_unregister(&tc1100_driver);
282 module_init(tc1100_init);
283 module_exit(tc1100_exit);