Merge branch 'for-linus' of git://git.infradead.org/users/vkoul/slave-dma
[firefly-linux-kernel-4.4.55.git] / drivers / input / misc / soc_button_array.c
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 #include <linux/pnp.h>
22
23 /*
24  * Definition of buttons on the tablet. The ACPI index of each button
25  * is defined in section 2.8.7.2 of "Windows ACPI Design Guide for SoC
26  * Platforms"
27  */
28 #define MAX_NBUTTONS    5
29
30 struct soc_button_info {
31         const char *name;
32         int acpi_index;
33         unsigned int event_type;
34         unsigned int event_code;
35         bool autorepeat;
36         bool wakeup;
37 };
38
39 /*
40  * Some of the buttons like volume up/down are auto repeat, while others
41  * are not. To support both, we register two platform devices, and put
42  * buttons into them based on whether the key should be auto repeat.
43  */
44 #define BUTTON_TYPES    2
45
46 struct soc_button_data {
47         struct platform_device *children[BUTTON_TYPES];
48 };
49
50 /*
51  * Get the Nth GPIO number from the ACPI object.
52  */
53 static int soc_button_lookup_gpio(struct device *dev, int acpi_index)
54 {
55         struct gpio_desc *desc;
56         int gpio;
57
58         desc = gpiod_get_index(dev, KBUILD_MODNAME, acpi_index);
59         if (IS_ERR(desc))
60                 return PTR_ERR(desc);
61
62         gpio = desc_to_gpio(desc);
63
64         gpiod_put(desc);
65
66         return gpio;
67 }
68
69 static struct platform_device *
70 soc_button_device_create(struct pnp_dev *pdev,
71                          const struct soc_button_info *button_info,
72                          bool autorepeat)
73 {
74         const struct soc_button_info *info;
75         struct platform_device *pd;
76         struct gpio_keys_button *gpio_keys;
77         struct gpio_keys_platform_data *gpio_keys_pdata;
78         int n_buttons = 0;
79         int gpio;
80         int error;
81
82         gpio_keys_pdata = devm_kzalloc(&pdev->dev,
83                                        sizeof(*gpio_keys_pdata) +
84                                         sizeof(*gpio_keys) * MAX_NBUTTONS,
85                                        GFP_KERNEL);
86         if (!gpio_keys_pdata)
87                 return ERR_PTR(-ENOMEM);
88
89         gpio_keys = (void *)(gpio_keys_pdata + 1);
90
91         for (info = button_info; info->name; info++) {
92                 if (info->autorepeat != autorepeat)
93                         continue;
94
95                 gpio = soc_button_lookup_gpio(&pdev->dev, info->acpi_index);
96                 if (gpio < 0)
97                         continue;
98
99                 gpio_keys[n_buttons].type = info->event_type;
100                 gpio_keys[n_buttons].code = info->event_code;
101                 gpio_keys[n_buttons].gpio = gpio;
102                 gpio_keys[n_buttons].active_low = 1;
103                 gpio_keys[n_buttons].desc = info->name;
104                 gpio_keys[n_buttons].wakeup = info->wakeup;
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
134 err_free_pdev:
135         platform_device_put(pd);
136 err_free_mem:
137         devm_kfree(&pdev->dev, gpio_keys_pdata);
138         return ERR_PTR(error);
139 }
140
141 static void soc_button_remove(struct pnp_dev *pdev)
142 {
143         struct soc_button_data *priv = pnp_get_drvdata(pdev);
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
151 static int soc_button_pnp_probe(struct pnp_dev *pdev,
152                                 const struct pnp_device_id *id)
153 {
154         const struct soc_button_info *button_info = (void *)id->driver_data;
155         struct soc_button_data *priv;
156         struct platform_device *pd;
157         int i;
158         int error;
159
160         priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
161         if (!priv)
162                 return -ENOMEM;
163
164         pnp_set_drvdata(pdev, priv);
165
166         for (i = 0; i < BUTTON_TYPES; i++) {
167                 pd = soc_button_device_create(pdev, button_info, i == 0);
168                 if (IS_ERR(pd)) {
169                         error = PTR_ERR(pd);
170                         if (error != -ENODEV) {
171                                 soc_button_remove(pdev);
172                                 return error;
173                         }
174                         continue;
175                 }
176
177                 priv->children[i] = pd;
178         }
179
180         if (!priv->children[0] && !priv->children[1])
181                 return -ENODEV;
182
183         return 0;
184 }
185
186 static struct soc_button_info soc_button_PNP0C40[] = {
187         { "power", 0, EV_KEY, KEY_POWER, false, true },
188         { "home", 1, EV_KEY, KEY_HOME, false, true },
189         { "volume_up", 2, EV_KEY, KEY_VOLUMEUP, true, false },
190         { "volume_down", 3, EV_KEY, KEY_VOLUMEDOWN, true, false },
191         { "rotation_lock", 4, EV_SW, SW_ROTATE_LOCK, false, false },
192         { }
193 };
194
195 static const struct pnp_device_id soc_button_pnp_match[] = {
196         { .id = "PNP0C40", .driver_data = (long)soc_button_PNP0C40 },
197         { .id = "" }
198 };
199 MODULE_DEVICE_TABLE(pnp, soc_button_pnp_match);
200
201 static struct pnp_driver soc_button_pnp_driver = {
202         .name           = KBUILD_MODNAME,
203         .id_table       = soc_button_pnp_match,
204         .probe          = soc_button_pnp_probe,
205         .remove         = soc_button_remove,
206 };
207
208 static int __init soc_button_init(void)
209 {
210         return pnp_register_driver(&soc_button_pnp_driver);
211 }
212
213 static void __exit soc_button_exit(void)
214 {
215         pnp_unregister_driver(&soc_button_pnp_driver);
216 }
217
218 module_init(soc_button_init);
219 module_exit(soc_button_exit);
220
221 MODULE_LICENSE("GPL");