Linux Audio

Check our new training course

Loading...
v4.6
  1/*
  2 * Supports for the button array on SoC tablets originally running
  3 * Windows 8.
  4 *
  5 * (C) Copyright 2014 Intel Corporation
  6 *
  7 * This program is free software; you can redistribute it and/or
  8 * modify it under the terms of the GNU General Public License
  9 * as published by the Free Software Foundation; version 2
 10 * of the License.
 11 */
 12
 13#include <linux/module.h>
 14#include <linux/input.h>
 15#include <linux/init.h>
 16#include <linux/kernel.h>
 17#include <linux/acpi.h>
 18#include <linux/gpio/consumer.h>
 19#include <linux/gpio_keys.h>
 
 20#include <linux/platform_device.h>
 21
 22/*
 23 * Definition of buttons on the tablet. The ACPI index of each button
 24 * is defined in section 2.8.7.2 of "Windows ACPI Design Guide for SoC
 25 * Platforms"
 26 */
 27#define MAX_NBUTTONS	5
 28
 29struct soc_button_info {
 30	const char *name;
 31	int acpi_index;
 32	unsigned int event_type;
 33	unsigned int event_code;
 34	bool autorepeat;
 35	bool wakeup;
 36};
 37
 38/*
 39 * Some of the buttons like volume up/down are auto repeat, while others
 40 * are not. To support both, we register two platform devices, and put
 41 * buttons into them based on whether the key should be auto repeat.
 42 */
 43#define BUTTON_TYPES	2
 44
 45struct soc_button_data {
 46	struct platform_device *children[BUTTON_TYPES];
 47};
 48
 49/*
 50 * Get the Nth GPIO number from the ACPI object.
 51 */
 52static int soc_button_lookup_gpio(struct device *dev, int acpi_index)
 53{
 54	struct gpio_desc *desc;
 55	int gpio;
 56
 57	desc = gpiod_get_index(dev, KBUILD_MODNAME, acpi_index, GPIOD_ASIS);
 58	if (IS_ERR(desc))
 59		return PTR_ERR(desc);
 60
 61	gpio = desc_to_gpio(desc);
 62
 63	gpiod_put(desc);
 64
 65	return gpio;
 66}
 67
 68static struct platform_device *
 69soc_button_device_create(struct platform_device *pdev,
 70			 const struct soc_button_info *button_info,
 71			 bool autorepeat)
 72{
 73	const struct soc_button_info *info;
 74	struct platform_device *pd;
 75	struct gpio_keys_button *gpio_keys;
 76	struct gpio_keys_platform_data *gpio_keys_pdata;
 77	int n_buttons = 0;
 78	int gpio;
 79	int error;
 80
 
 
 
 
 81	gpio_keys_pdata = devm_kzalloc(&pdev->dev,
 82				       sizeof(*gpio_keys_pdata) +
 83					sizeof(*gpio_keys) * MAX_NBUTTONS,
 84				       GFP_KERNEL);
 85	if (!gpio_keys_pdata)
 86		return ERR_PTR(-ENOMEM);
 87
 88	gpio_keys = (void *)(gpio_keys_pdata + 1);
 
 89
 90	for (info = button_info; info->name; info++) {
 91		if (info->autorepeat != autorepeat)
 92			continue;
 93
 94		gpio = soc_button_lookup_gpio(&pdev->dev, info->acpi_index);
 95		if (gpio < 0)
 96			continue;
 97
 98		gpio_keys[n_buttons].type = info->event_type;
 99		gpio_keys[n_buttons].code = info->event_code;
100		gpio_keys[n_buttons].gpio = gpio;
101		gpio_keys[n_buttons].active_low = 1;
102		gpio_keys[n_buttons].desc = info->name;
103		gpio_keys[n_buttons].wakeup = info->wakeup;
 
 
104		n_buttons++;
105	}
106
107	if (n_buttons == 0) {
108		error = -ENODEV;
109		goto err_free_mem;
110	}
111
112	gpio_keys_pdata->buttons = gpio_keys;
113	gpio_keys_pdata->nbuttons = n_buttons;
114	gpio_keys_pdata->rep = autorepeat;
115
116	pd = platform_device_alloc("gpio-keys", PLATFORM_DEVID_AUTO);
117	if (!pd) {
118		error = -ENOMEM;
119		goto err_free_mem;
120	}
121
122	error = platform_device_add_data(pd, gpio_keys_pdata,
123					 sizeof(*gpio_keys_pdata));
124	if (error)
125		goto err_free_pdev;
126
127	error = platform_device_add(pd);
128	if (error)
129		goto err_free_pdev;
130
131	return pd;
132
133err_free_pdev:
134	platform_device_put(pd);
135err_free_mem:
136	devm_kfree(&pdev->dev, gpio_keys_pdata);
137	return ERR_PTR(error);
138}
139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140static int soc_button_remove(struct platform_device *pdev)
141{
142	struct soc_button_data *priv = platform_get_drvdata(pdev);
143
144	int i;
145
146	for (i = 0; i < BUTTON_TYPES; i++)
147		if (priv->children[i])
148			platform_device_unregister(priv->children[i]);
149
150	return 0;
151}
152
153static int soc_button_probe(struct platform_device *pdev)
154{
155	struct device *dev = &pdev->dev;
156	const struct acpi_device_id *id;
157	struct soc_button_info *button_info;
158	struct soc_button_data *priv;
159	struct platform_device *pd;
160	int i;
161	int error;
162
163	id = acpi_match_device(dev->driver->acpi_match_table, dev);
164	if (!id)
165		return -ENODEV;
166
167	button_info = (struct soc_button_info *)id->driver_data;
 
 
 
 
 
 
 
 
 
 
 
 
168
169	priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
170	if (!priv)
171		return -ENOMEM;
172
173	platform_set_drvdata(pdev, priv);
174
175	for (i = 0; i < BUTTON_TYPES; i++) {
176		pd = soc_button_device_create(pdev, button_info, i == 0);
177		if (IS_ERR(pd)) {
178			error = PTR_ERR(pd);
179			if (error != -ENODEV) {
180				soc_button_remove(pdev);
181				return error;
182			}
183			continue;
184		}
185
186		priv->children[i] = pd;
187	}
188
189	if (!priv->children[0] && !priv->children[1])
190		return -ENODEV;
191
 
 
 
192	return 0;
193}
194
 
 
 
 
 
195static struct soc_button_info soc_button_PNP0C40[] = {
196	{ "power", 0, EV_KEY, KEY_POWER, false, true },
197	{ "home", 1, EV_KEY, KEY_LEFTMETA, false, true },
198	{ "volume_up", 2, EV_KEY, KEY_VOLUMEUP, true, false },
199	{ "volume_down", 3, EV_KEY, KEY_VOLUMEDOWN, true, false },
200	{ "rotation_lock", 4, EV_SW, SW_ROTATE_LOCK, false, false },
201	{ }
202};
203
204static const struct acpi_device_id soc_button_acpi_match[] = {
205	{ "PNP0C40", (unsigned long)soc_button_PNP0C40 },
 
206	{ }
207};
208
209MODULE_DEVICE_TABLE(acpi, soc_button_acpi_match);
210
211static struct platform_driver soc_button_driver = {
212	.probe          = soc_button_probe,
213	.remove		= soc_button_remove,
214	.driver		= {
215		.name = KBUILD_MODNAME,
216		.acpi_match_table = ACPI_PTR(soc_button_acpi_match),
217	},
218};
219module_platform_driver(soc_button_driver);
220
221MODULE_LICENSE("GPL");
v4.17
  1/*
  2 * Supports for the button array on SoC tablets originally running
  3 * Windows 8.
  4 *
  5 * (C) Copyright 2014 Intel Corporation
  6 *
  7 * This program is free software; you can redistribute it and/or
  8 * modify it under the terms of the GNU General Public License
  9 * as published by the Free Software Foundation; version 2
 10 * of the License.
 11 */
 12
 13#include <linux/module.h>
 14#include <linux/input.h>
 15#include <linux/init.h>
 16#include <linux/kernel.h>
 17#include <linux/acpi.h>
 18#include <linux/gpio/consumer.h>
 19#include <linux/gpio_keys.h>
 20#include <linux/gpio.h>
 21#include <linux/platform_device.h>
 22
 
 
 
 
 
 
 
 23struct soc_button_info {
 24	const char *name;
 25	int acpi_index;
 26	unsigned int event_type;
 27	unsigned int event_code;
 28	bool autorepeat;
 29	bool wakeup;
 30};
 31
 32/*
 33 * Some of the buttons like volume up/down are auto repeat, while others
 34 * are not. To support both, we register two platform devices, and put
 35 * buttons into them based on whether the key should be auto repeat.
 36 */
 37#define BUTTON_TYPES	2
 38
 39struct soc_button_data {
 40	struct platform_device *children[BUTTON_TYPES];
 41};
 42
 43/*
 44 * Get the Nth GPIO number from the ACPI object.
 45 */
 46static int soc_button_lookup_gpio(struct device *dev, int acpi_index)
 47{
 48	struct gpio_desc *desc;
 49	int gpio;
 50
 51	desc = gpiod_get_index(dev, NULL, acpi_index, GPIOD_ASIS);
 52	if (IS_ERR(desc))
 53		return PTR_ERR(desc);
 54
 55	gpio = desc_to_gpio(desc);
 56
 57	gpiod_put(desc);
 58
 59	return gpio;
 60}
 61
 62static struct platform_device *
 63soc_button_device_create(struct platform_device *pdev,
 64			 const struct soc_button_info *button_info,
 65			 bool autorepeat)
 66{
 67	const struct soc_button_info *info;
 68	struct platform_device *pd;
 69	struct gpio_keys_button *gpio_keys;
 70	struct gpio_keys_platform_data *gpio_keys_pdata;
 71	int n_buttons = 0;
 72	int gpio;
 73	int error;
 74
 75	for (info = button_info; info->name; info++)
 76		if (info->autorepeat == autorepeat)
 77			n_buttons++;
 78
 79	gpio_keys_pdata = devm_kzalloc(&pdev->dev,
 80				       sizeof(*gpio_keys_pdata) +
 81					sizeof(*gpio_keys) * n_buttons,
 82				       GFP_KERNEL);
 83	if (!gpio_keys_pdata)
 84		return ERR_PTR(-ENOMEM);
 85
 86	gpio_keys = (void *)(gpio_keys_pdata + 1);
 87	n_buttons = 0;
 88
 89	for (info = button_info; info->name; info++) {
 90		if (info->autorepeat != autorepeat)
 91			continue;
 92
 93		gpio = soc_button_lookup_gpio(&pdev->dev, info->acpi_index);
 94		if (!gpio_is_valid(gpio))
 95			continue;
 96
 97		gpio_keys[n_buttons].type = info->event_type;
 98		gpio_keys[n_buttons].code = info->event_code;
 99		gpio_keys[n_buttons].gpio = gpio;
100		gpio_keys[n_buttons].active_low = 1;
101		gpio_keys[n_buttons].desc = info->name;
102		gpio_keys[n_buttons].wakeup = info->wakeup;
103		/* These devices often use cheap buttons, use 50 ms debounce */
104		gpio_keys[n_buttons].debounce_interval = 50;
105		n_buttons++;
106	}
107
108	if (n_buttons == 0) {
109		error = -ENODEV;
110		goto err_free_mem;
111	}
112
113	gpio_keys_pdata->buttons = gpio_keys;
114	gpio_keys_pdata->nbuttons = n_buttons;
115	gpio_keys_pdata->rep = autorepeat;
116
117	pd = platform_device_alloc("gpio-keys", PLATFORM_DEVID_AUTO);
118	if (!pd) {
119		error = -ENOMEM;
120		goto err_free_mem;
121	}
122
123	error = platform_device_add_data(pd, gpio_keys_pdata,
124					 sizeof(*gpio_keys_pdata));
125	if (error)
126		goto err_free_pdev;
127
128	error = platform_device_add(pd);
129	if (error)
130		goto err_free_pdev;
131
132	return pd;
133
134err_free_pdev:
135	platform_device_put(pd);
136err_free_mem:
137	devm_kfree(&pdev->dev, gpio_keys_pdata);
138	return ERR_PTR(error);
139}
140
141static int soc_button_get_acpi_object_int(const union acpi_object *obj)
142{
143	if (obj->type != ACPI_TYPE_INTEGER)
144		return -1;
145
146	return obj->integer.value;
147}
148
149/* Parse a single ACPI0011 _DSD button descriptor */
150static int soc_button_parse_btn_desc(struct device *dev,
151				     const union acpi_object *desc,
152				     int collection_uid,
153				     struct soc_button_info *info)
154{
155	int upage, usage;
156
157	if (desc->type != ACPI_TYPE_PACKAGE ||
158	    desc->package.count != 5 ||
159	    /* First byte should be 1 (control) */
160	    soc_button_get_acpi_object_int(&desc->package.elements[0]) != 1 ||
161	    /* Third byte should be collection uid */
162	    soc_button_get_acpi_object_int(&desc->package.elements[2]) !=
163							    collection_uid) {
164		dev_err(dev, "Invalid ACPI Button Descriptor\n");
165		return -ENODEV;
166	}
167
168	info->event_type = EV_KEY;
169	info->acpi_index =
170		soc_button_get_acpi_object_int(&desc->package.elements[1]);
171	upage = soc_button_get_acpi_object_int(&desc->package.elements[3]);
172	usage = soc_button_get_acpi_object_int(&desc->package.elements[4]);
173
174	/*
175	 * The UUID: fa6bd625-9ce8-470d-a2c7-b3ca36c4282e descriptors use HID
176	 * usage page and usage codes, but otherwise the device is not HID
177	 * compliant: it uses one irq per button instead of generating HID
178	 * input reports and some buttons should generate wakeups where as
179	 * others should not, so we cannot use the HID subsystem.
180	 *
181	 * Luckily all devices only use a few usage page + usage combinations,
182	 * so we can simply check for the known combinations here.
183	 */
184	if (upage == 0x01 && usage == 0x81) {
185		info->name = "power";
186		info->event_code = KEY_POWER;
187		info->wakeup = true;
188	} else if (upage == 0x07 && usage == 0xe3) {
189		info->name = "home";
190		info->event_code = KEY_LEFTMETA;
191		info->wakeup = true;
192	} else if (upage == 0x0c && usage == 0xe9) {
193		info->name = "volume_up";
194		info->event_code = KEY_VOLUMEUP;
195		info->autorepeat = true;
196	} else if (upage == 0x0c && usage == 0xea) {
197		info->name = "volume_down";
198		info->event_code = KEY_VOLUMEDOWN;
199		info->autorepeat = true;
200	} else {
201		dev_warn(dev, "Unknown button index %d upage %02x usage %02x, ignoring\n",
202			 info->acpi_index, upage, usage);
203		info->name = "unknown";
204		info->event_code = KEY_RESERVED;
205	}
206
207	return 0;
208}
209
210/* ACPI0011 _DSD btns descriptors UUID: fa6bd625-9ce8-470d-a2c7-b3ca36c4282e */
211static const u8 btns_desc_uuid[16] = {
212	0x25, 0xd6, 0x6b, 0xfa, 0xe8, 0x9c, 0x0d, 0x47,
213	0xa2, 0xc7, 0xb3, 0xca, 0x36, 0xc4, 0x28, 0x2e
214};
215
216/* Parse ACPI0011 _DSD button descriptors */
217static struct soc_button_info *soc_button_get_button_info(struct device *dev)
218{
219	struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
220	const union acpi_object *desc, *el0, *uuid, *btns_desc = NULL;
221	struct soc_button_info *button_info;
222	acpi_status status;
223	int i, btn, collection_uid = -1;
224
225	status = acpi_evaluate_object_typed(ACPI_HANDLE(dev), "_DSD", NULL,
226					    &buf, ACPI_TYPE_PACKAGE);
227	if (ACPI_FAILURE(status)) {
228		dev_err(dev, "ACPI _DSD object not found\n");
229		return ERR_PTR(-ENODEV);
230	}
231
232	/* Look for the Button Descriptors UUID */
233	desc = buf.pointer;
234	for (i = 0; (i + 1) < desc->package.count; i += 2) {
235		uuid = &desc->package.elements[i];
236
237		if (uuid->type != ACPI_TYPE_BUFFER ||
238		    uuid->buffer.length != 16 ||
239		    desc->package.elements[i + 1].type != ACPI_TYPE_PACKAGE) {
240			break;
241		}
242
243		if (memcmp(uuid->buffer.pointer, btns_desc_uuid, 16) == 0) {
244			btns_desc = &desc->package.elements[i + 1];
245			break;
246		}
247	}
248
249	if (!btns_desc) {
250		dev_err(dev, "ACPI Button Descriptors not found\n");
251		button_info = ERR_PTR(-ENODEV);
252		goto out;
253	}
254
255	/* The first package describes the collection */
256	el0 = &btns_desc->package.elements[0];
257	if (el0->type == ACPI_TYPE_PACKAGE &&
258	    el0->package.count == 5 &&
259	    /* First byte should be 0 (collection) */
260	    soc_button_get_acpi_object_int(&el0->package.elements[0]) == 0 &&
261	    /* Third byte should be 0 (top level collection) */
262	    soc_button_get_acpi_object_int(&el0->package.elements[2]) == 0) {
263		collection_uid = soc_button_get_acpi_object_int(
264						&el0->package.elements[1]);
265	}
266	if (collection_uid == -1) {
267		dev_err(dev, "Invalid Button Collection Descriptor\n");
268		button_info = ERR_PTR(-ENODEV);
269		goto out;
270	}
271
272	/* There are package.count - 1 buttons + 1 terminating empty entry */
273	button_info = devm_kcalloc(dev, btns_desc->package.count,
274				   sizeof(*button_info), GFP_KERNEL);
275	if (!button_info) {
276		button_info = ERR_PTR(-ENOMEM);
277		goto out;
278	}
279
280	/* Parse the button descriptors */
281	for (i = 1, btn = 0; i < btns_desc->package.count; i++, btn++) {
282		if (soc_button_parse_btn_desc(dev,
283					      &btns_desc->package.elements[i],
284					      collection_uid,
285					      &button_info[btn])) {
286			button_info = ERR_PTR(-ENODEV);
287			goto out;
288		}
289	}
290
291out:
292	kfree(buf.pointer);
293	return button_info;
294}
295
296static int soc_button_remove(struct platform_device *pdev)
297{
298	struct soc_button_data *priv = platform_get_drvdata(pdev);
299
300	int i;
301
302	for (i = 0; i < BUTTON_TYPES; i++)
303		if (priv->children[i])
304			platform_device_unregister(priv->children[i]);
305
306	return 0;
307}
308
309static int soc_button_probe(struct platform_device *pdev)
310{
311	struct device *dev = &pdev->dev;
312	const struct acpi_device_id *id;
313	struct soc_button_info *button_info;
314	struct soc_button_data *priv;
315	struct platform_device *pd;
316	int i;
317	int error;
318
319	id = acpi_match_device(dev->driver->acpi_match_table, dev);
320	if (!id)
321		return -ENODEV;
322
323	if (!id->driver_data) {
324		button_info = soc_button_get_button_info(dev);
325		if (IS_ERR(button_info))
326			return PTR_ERR(button_info);
327	} else {
328		button_info = (struct soc_button_info *)id->driver_data;
329	}
330
331	error = gpiod_count(dev, NULL);
332	if (error < 0) {
333		dev_dbg(dev, "no GPIO attached, ignoring...\n");
334		return -ENODEV;
335	}
336
337	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
338	if (!priv)
339		return -ENOMEM;
340
341	platform_set_drvdata(pdev, priv);
342
343	for (i = 0; i < BUTTON_TYPES; i++) {
344		pd = soc_button_device_create(pdev, button_info, i == 0);
345		if (IS_ERR(pd)) {
346			error = PTR_ERR(pd);
347			if (error != -ENODEV) {
348				soc_button_remove(pdev);
349				return error;
350			}
351			continue;
352		}
353
354		priv->children[i] = pd;
355	}
356
357	if (!priv->children[0] && !priv->children[1])
358		return -ENODEV;
359
360	if (!id->driver_data)
361		devm_kfree(dev, button_info);
362
363	return 0;
364}
365
366/*
367 * Definition of buttons on the tablet. The ACPI index of each button
368 * is defined in section 2.8.7.2 of "Windows ACPI Design Guide for SoC
369 * Platforms"
370 */
371static struct soc_button_info soc_button_PNP0C40[] = {
372	{ "power", 0, EV_KEY, KEY_POWER, false, true },
373	{ "home", 1, EV_KEY, KEY_LEFTMETA, false, true },
374	{ "volume_up", 2, EV_KEY, KEY_VOLUMEUP, true, false },
375	{ "volume_down", 3, EV_KEY, KEY_VOLUMEDOWN, true, false },
376	{ "rotation_lock", 4, EV_SW, SW_ROTATE_LOCK, false, false },
377	{ }
378};
379
380static const struct acpi_device_id soc_button_acpi_match[] = {
381	{ "PNP0C40", (unsigned long)soc_button_PNP0C40 },
382	{ "ACPI0011", 0 },
383	{ }
384};
385
386MODULE_DEVICE_TABLE(acpi, soc_button_acpi_match);
387
388static struct platform_driver soc_button_driver = {
389	.probe          = soc_button_probe,
390	.remove		= soc_button_remove,
391	.driver		= {
392		.name = KBUILD_MODNAME,
393		.acpi_match_table = ACPI_PTR(soc_button_acpi_match),
394	},
395};
396module_platform_driver(soc_button_driver);
397
398MODULE_LICENSE("GPL");