1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * HP Compaq TC1100 Tablet WMI Extras Driver
5 * Copyright (C) 2007 Carlos Corbacho <carlos@strangeworlds.co.uk>
6 * Copyright (C) 2004 Jamey Hicks <jamey.hicks@hp.com>
7 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
8 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/init.h>
17 #include <linux/types.h>
18 #include <linux/acpi.h>
19 #include <linux/platform_device.h>
21 #define GUID "C364AC71-36DB-495A-8494-B439D472A505"
23 #define TC1100_INSTANCE_WIRELESS 1
24 #define TC1100_INSTANCE_JOGDIAL 2
26 MODULE_AUTHOR("Jamey Hicks, Carlos Corbacho");
27 MODULE_DESCRIPTION("HP Compaq TC1100 Tablet WMI Extras");
28 MODULE_LICENSE("GPL");
29 MODULE_ALIAS("wmi:C364AC71-36DB-495A-8494-B439D472A505");
31 static struct platform_device
*tc1100_device
;
39 static struct tc1100_data suspend_data
;
42 /* --------------------------------------------------------------------------
44 -------------------------------------------------------------------------- */
46 static int get_state(u32
*out
, u8 instance
)
50 struct acpi_buffer result
= { ACPI_ALLOCATE_BUFFER
, NULL
};
51 union acpi_object
*obj
;
59 status
= wmi_query_block(GUID
, instance
, &result
);
60 if (ACPI_FAILURE(status
))
63 obj
= (union acpi_object
*) result
.pointer
;
64 if (obj
&& obj
->type
== ACPI_TYPE_INTEGER
) {
65 tmp
= obj
->integer
.value
;
70 if (result
.length
> 0)
71 kfree(result
.pointer
);
74 case TC1100_INSTANCE_WIRELESS
:
75 *out
= (tmp
== 3) ? 1 : 0;
77 case TC1100_INSTANCE_JOGDIAL
:
78 *out
= (tmp
== 1) ? 0 : 1;
85 static int set_state(u32
*in
, u8 instance
)
89 struct acpi_buffer input
;
98 case TC1100_INSTANCE_WIRELESS
:
99 value
= (*in
) ? 1 : 2;
101 case TC1100_INSTANCE_JOGDIAL
:
102 value
= (*in
) ? 0 : 1;
108 input
.length
= sizeof(u32
);
109 input
.pointer
= &value
;
111 status
= wmi_set_block(GUID
, instance
, &input
);
112 if (ACPI_FAILURE(status
))
118 /* --------------------------------------------------------------------------
120 -------------------------------------------------------------------------- */
123 * Read/ write bool sysfs macro
125 #define show_set_bool(value, instance) \
127 show_bool_##value(struct device *dev, struct device_attribute *attr, \
131 acpi_status status = get_state(&result, instance); \
132 if (ACPI_SUCCESS(status)) \
133 return sprintf(buf, "%d\n", result); \
134 return sprintf(buf, "Read error\n"); \
138 set_bool_##value(struct device *dev, struct device_attribute *attr, \
139 const char *buf, size_t count) \
141 u32 tmp = simple_strtoul(buf, NULL, 10); \
142 acpi_status status = set_state(&tmp, instance); \
143 if (ACPI_FAILURE(status)) \
147 static DEVICE_ATTR(value, S_IRUGO | S_IWUSR, \
148 show_bool_##value, set_bool_##value);
150 show_set_bool(wireless
, TC1100_INSTANCE_WIRELESS
);
151 show_set_bool(jogdial
, TC1100_INSTANCE_JOGDIAL
);
153 static struct attribute
*tc1100_attributes
[] = {
154 &dev_attr_wireless
.attr
,
155 &dev_attr_jogdial
.attr
,
159 static struct attribute_group tc1100_attribute_group
= {
160 .attrs
= tc1100_attributes
,
163 /* --------------------------------------------------------------------------
165 -------------------------------------------------------------------------- */
167 static int __init
tc1100_probe(struct platform_device
*device
)
169 return sysfs_create_group(&device
->dev
.kobj
, &tc1100_attribute_group
);
173 static int tc1100_remove(struct platform_device
*device
)
175 sysfs_remove_group(&device
->dev
.kobj
, &tc1100_attribute_group
);
181 static int tc1100_suspend(struct device
*dev
)
185 ret
= get_state(&suspend_data
.wireless
, TC1100_INSTANCE_WIRELESS
);
189 ret
= get_state(&suspend_data
.jogdial
, TC1100_INSTANCE_JOGDIAL
);
196 static int tc1100_resume(struct device
*dev
)
200 ret
= set_state(&suspend_data
.wireless
, TC1100_INSTANCE_WIRELESS
);
204 ret
= set_state(&suspend_data
.jogdial
, TC1100_INSTANCE_JOGDIAL
);
211 static const struct dev_pm_ops tc1100_pm_ops
= {
212 .suspend
= tc1100_suspend
,
213 .resume
= tc1100_resume
,
214 .freeze
= tc1100_suspend
,
215 .restore
= tc1100_resume
,
219 static struct platform_driver tc1100_driver
= {
221 .name
= "tc1100-wmi",
223 .pm
= &tc1100_pm_ops
,
226 .remove
= tc1100_remove
,
229 static int __init
tc1100_init(void)
233 if (!wmi_has_guid(GUID
))
236 tc1100_device
= platform_device_alloc("tc1100-wmi", -1);
240 error
= platform_device_add(tc1100_device
);
244 error
= platform_driver_probe(&tc1100_driver
, tc1100_probe
);
248 pr_info("HP Compaq TC1100 Tablet WMI Extras loaded\n");
252 platform_device_del(tc1100_device
);
254 platform_device_put(tc1100_device
);
258 static void __exit
tc1100_exit(void)
260 platform_device_unregister(tc1100_device
);
261 platform_driver_unregister(&tc1100_driver
);
264 module_init(tc1100_init
);
265 module_exit(tc1100_exit
);