ixgbe: Fix race when the VF driver does a reset
[linux/fpc-iii.git] / drivers / input / rmi4 / rmi_bus.c
blobbd0d5ff01b08f9c88920b03f56dbb4a3eed21af3
1 /*
2 * Copyright (c) 2011-2016 Synaptics Incorporated
3 * Copyright (c) 2011 Unixphere
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 */
10 #include <linux/kernel.h>
11 #include <linux/device.h>
12 #include <linux/irq.h>
13 #include <linux/irqdomain.h>
14 #include <linux/list.h>
15 #include <linux/pm.h>
16 #include <linux/rmi.h>
17 #include <linux/slab.h>
18 #include <linux/types.h>
19 #include <linux/of.h>
20 #include "rmi_bus.h"
21 #include "rmi_driver.h"
23 static int debug_flags;
24 module_param(debug_flags, int, 0644);
25 MODULE_PARM_DESC(debug_flags, "control debugging information");
27 void rmi_dbg(int flags, struct device *dev, const char *fmt, ...)
29 struct va_format vaf;
30 va_list args;
32 if (flags & debug_flags) {
33 va_start(args, fmt);
35 vaf.fmt = fmt;
36 vaf.va = &args;
38 dev_printk(KERN_DEBUG, dev, "%pV", &vaf);
40 va_end(args);
43 EXPORT_SYMBOL_GPL(rmi_dbg);
46 * RMI Physical devices
48 * Physical RMI device consists of several functions serving particular
49 * purpose. For example F11 is a 2D touch sensor while F01 is a generic
50 * function present in every RMI device.
53 static void rmi_release_device(struct device *dev)
55 struct rmi_device *rmi_dev = to_rmi_device(dev);
57 kfree(rmi_dev);
60 static const struct device_type rmi_device_type = {
61 .name = "rmi4_sensor",
62 .release = rmi_release_device,
65 bool rmi_is_physical_device(struct device *dev)
67 return dev->type == &rmi_device_type;
70 /**
71 * rmi_register_transport_device - register a transport device connection
72 * on the RMI bus. Transport drivers provide communication from the devices
73 * on a bus (such as SPI, I2C, and so on) to the RMI4 sensor.
75 * @xport: the transport device to register
77 int rmi_register_transport_device(struct rmi_transport_dev *xport)
79 static atomic_t transport_device_count = ATOMIC_INIT(0);
80 struct rmi_device *rmi_dev;
81 int error;
83 rmi_dev = kzalloc(sizeof(struct rmi_device), GFP_KERNEL);
84 if (!rmi_dev)
85 return -ENOMEM;
87 device_initialize(&rmi_dev->dev);
89 rmi_dev->xport = xport;
90 rmi_dev->number = atomic_inc_return(&transport_device_count) - 1;
92 dev_set_name(&rmi_dev->dev, "rmi4-%02d", rmi_dev->number);
94 rmi_dev->dev.bus = &rmi_bus_type;
95 rmi_dev->dev.type = &rmi_device_type;
97 xport->rmi_dev = rmi_dev;
99 error = device_add(&rmi_dev->dev);
100 if (error)
101 goto err_put_device;
103 rmi_dbg(RMI_DEBUG_CORE, xport->dev,
104 "%s: Registered %s as %s.\n", __func__,
105 dev_name(rmi_dev->xport->dev), dev_name(&rmi_dev->dev));
107 return 0;
109 err_put_device:
110 put_device(&rmi_dev->dev);
111 return error;
113 EXPORT_SYMBOL_GPL(rmi_register_transport_device);
116 * rmi_unregister_transport_device - unregister a transport device connection
117 * @xport: the transport driver to unregister
120 void rmi_unregister_transport_device(struct rmi_transport_dev *xport)
122 struct rmi_device *rmi_dev = xport->rmi_dev;
124 device_del(&rmi_dev->dev);
125 put_device(&rmi_dev->dev);
127 EXPORT_SYMBOL(rmi_unregister_transport_device);
130 /* Function specific stuff */
132 static void rmi_release_function(struct device *dev)
134 struct rmi_function *fn = to_rmi_function(dev);
136 kfree(fn);
139 static const struct device_type rmi_function_type = {
140 .name = "rmi4_function",
141 .release = rmi_release_function,
144 bool rmi_is_function_device(struct device *dev)
146 return dev->type == &rmi_function_type;
149 static int rmi_function_match(struct device *dev, struct device_driver *drv)
151 struct rmi_function_handler *handler = to_rmi_function_handler(drv);
152 struct rmi_function *fn = to_rmi_function(dev);
154 return fn->fd.function_number == handler->func;
157 #ifdef CONFIG_OF
158 static void rmi_function_of_probe(struct rmi_function *fn)
160 char of_name[9];
161 struct device_node *node = fn->rmi_dev->xport->dev->of_node;
163 snprintf(of_name, sizeof(of_name), "rmi4-f%02x",
164 fn->fd.function_number);
165 fn->dev.of_node = of_get_child_by_name(node, of_name);
167 #else
168 static inline void rmi_function_of_probe(struct rmi_function *fn)
170 #endif
172 static struct irq_chip rmi_irq_chip = {
173 .name = "rmi4",
176 static int rmi_create_function_irq(struct rmi_function *fn,
177 struct rmi_function_handler *handler)
179 struct rmi_driver_data *drvdata = dev_get_drvdata(&fn->rmi_dev->dev);
180 int i, error;
182 for (i = 0; i < fn->num_of_irqs; i++) {
183 set_bit(fn->irq_pos + i, fn->irq_mask);
185 fn->irq[i] = irq_create_mapping(drvdata->irqdomain,
186 fn->irq_pos + i);
188 irq_set_chip_data(fn->irq[i], fn);
189 irq_set_chip_and_handler(fn->irq[i], &rmi_irq_chip,
190 handle_simple_irq);
191 irq_set_nested_thread(fn->irq[i], 1);
193 error = devm_request_threaded_irq(&fn->dev, fn->irq[i], NULL,
194 handler->attention, IRQF_ONESHOT,
195 dev_name(&fn->dev), fn);
196 if (error) {
197 dev_err(&fn->dev, "Error %d registering IRQ\n", error);
198 return error;
202 return 0;
205 static int rmi_function_probe(struct device *dev)
207 struct rmi_function *fn = to_rmi_function(dev);
208 struct rmi_function_handler *handler =
209 to_rmi_function_handler(dev->driver);
210 int error;
212 rmi_function_of_probe(fn);
214 if (handler->probe) {
215 error = handler->probe(fn);
216 if (error)
217 return error;
220 if (fn->num_of_irqs && handler->attention) {
221 error = rmi_create_function_irq(fn, handler);
222 if (error)
223 return error;
226 return 0;
229 static int rmi_function_remove(struct device *dev)
231 struct rmi_function *fn = to_rmi_function(dev);
232 struct rmi_function_handler *handler =
233 to_rmi_function_handler(dev->driver);
235 if (handler->remove)
236 handler->remove(fn);
238 return 0;
241 int rmi_register_function(struct rmi_function *fn)
243 struct rmi_device *rmi_dev = fn->rmi_dev;
244 int error;
246 device_initialize(&fn->dev);
248 dev_set_name(&fn->dev, "%s.fn%02x",
249 dev_name(&rmi_dev->dev), fn->fd.function_number);
251 fn->dev.parent = &rmi_dev->dev;
252 fn->dev.type = &rmi_function_type;
253 fn->dev.bus = &rmi_bus_type;
255 error = device_add(&fn->dev);
256 if (error) {
257 dev_err(&rmi_dev->dev,
258 "Failed device_register function device %s\n",
259 dev_name(&fn->dev));
260 goto err_put_device;
263 rmi_dbg(RMI_DEBUG_CORE, &rmi_dev->dev, "Registered F%02X.\n",
264 fn->fd.function_number);
266 return 0;
268 err_put_device:
269 put_device(&fn->dev);
270 return error;
273 void rmi_unregister_function(struct rmi_function *fn)
275 int i;
277 rmi_dbg(RMI_DEBUG_CORE, &fn->dev, "Unregistering F%02X.\n",
278 fn->fd.function_number);
280 device_del(&fn->dev);
281 of_node_put(fn->dev.of_node);
282 put_device(&fn->dev);
284 for (i = 0; i < fn->num_of_irqs; i++)
285 irq_dispose_mapping(fn->irq[i]);
290 * rmi_register_function_handler - register a handler for an RMI function
291 * @handler: RMI handler that should be registered.
292 * @module: pointer to module that implements the handler
293 * @mod_name: name of the module implementing the handler
295 * This function performs additional setup of RMI function handler and
296 * registers it with the RMI core so that it can be bound to
297 * RMI function devices.
299 int __rmi_register_function_handler(struct rmi_function_handler *handler,
300 struct module *owner,
301 const char *mod_name)
303 struct device_driver *driver = &handler->driver;
304 int error;
306 driver->bus = &rmi_bus_type;
307 driver->owner = owner;
308 driver->mod_name = mod_name;
309 driver->probe = rmi_function_probe;
310 driver->remove = rmi_function_remove;
312 error = driver_register(driver);
313 if (error) {
314 pr_err("driver_register() failed for %s, error: %d\n",
315 driver->name, error);
316 return error;
319 return 0;
321 EXPORT_SYMBOL_GPL(__rmi_register_function_handler);
324 * rmi_unregister_function_handler - unregister given RMI function handler
325 * @handler: RMI handler that should be unregistered.
327 * This function unregisters given function handler from RMI core which
328 * causes it to be unbound from the function devices.
330 void rmi_unregister_function_handler(struct rmi_function_handler *handler)
332 driver_unregister(&handler->driver);
334 EXPORT_SYMBOL_GPL(rmi_unregister_function_handler);
336 /* Bus specific stuff */
338 static int rmi_bus_match(struct device *dev, struct device_driver *drv)
340 bool physical = rmi_is_physical_device(dev);
342 /* First see if types are not compatible */
343 if (physical != rmi_is_physical_driver(drv))
344 return 0;
346 return physical || rmi_function_match(dev, drv);
349 struct bus_type rmi_bus_type = {
350 .match = rmi_bus_match,
351 .name = "rmi4",
354 static struct rmi_function_handler *fn_handlers[] = {
355 &rmi_f01_handler,
356 #ifdef CONFIG_RMI4_F03
357 &rmi_f03_handler,
358 #endif
359 #ifdef CONFIG_RMI4_F11
360 &rmi_f11_handler,
361 #endif
362 #ifdef CONFIG_RMI4_F12
363 &rmi_f12_handler,
364 #endif
365 #ifdef CONFIG_RMI4_F30
366 &rmi_f30_handler,
367 #endif
368 #ifdef CONFIG_RMI4_F34
369 &rmi_f34_handler,
370 #endif
371 #ifdef CONFIG_RMI4_F54
372 &rmi_f54_handler,
373 #endif
374 #ifdef CONFIG_RMI4_F55
375 &rmi_f55_handler,
376 #endif
379 static void __rmi_unregister_function_handlers(int start_idx)
381 int i;
383 for (i = start_idx; i >= 0; i--)
384 rmi_unregister_function_handler(fn_handlers[i]);
387 static void rmi_unregister_function_handlers(void)
389 __rmi_unregister_function_handlers(ARRAY_SIZE(fn_handlers) - 1);
392 static int rmi_register_function_handlers(void)
394 int ret;
395 int i;
397 for (i = 0; i < ARRAY_SIZE(fn_handlers); i++) {
398 ret = rmi_register_function_handler(fn_handlers[i]);
399 if (ret) {
400 pr_err("%s: error registering the RMI F%02x handler: %d\n",
401 __func__, fn_handlers[i]->func, ret);
402 goto err_unregister_function_handlers;
406 return 0;
408 err_unregister_function_handlers:
409 __rmi_unregister_function_handlers(i - 1);
410 return ret;
413 int rmi_of_property_read_u32(struct device *dev, u32 *result,
414 const char *prop, bool optional)
416 int retval;
417 u32 val = 0;
419 retval = of_property_read_u32(dev->of_node, prop, &val);
420 if (retval && (!optional && retval == -EINVAL)) {
421 dev_err(dev, "Failed to get %s value: %d\n",
422 prop, retval);
423 return retval;
425 *result = val;
427 return 0;
429 EXPORT_SYMBOL_GPL(rmi_of_property_read_u32);
431 static int __init rmi_bus_init(void)
433 int error;
435 error = bus_register(&rmi_bus_type);
436 if (error) {
437 pr_err("%s: error registering the RMI bus: %d\n",
438 __func__, error);
439 return error;
442 error = rmi_register_function_handlers();
443 if (error)
444 goto err_unregister_bus;
446 error = rmi_register_physical_driver();
447 if (error) {
448 pr_err("%s: error registering the RMI physical driver: %d\n",
449 __func__, error);
450 goto err_unregister_bus;
453 return 0;
455 err_unregister_bus:
456 bus_unregister(&rmi_bus_type);
457 return error;
459 module_init(rmi_bus_init);
461 static void __exit rmi_bus_exit(void)
464 * We should only ever get here if all drivers are unloaded, so
465 * all we have to do at this point is unregister ourselves.
468 rmi_unregister_physical_driver();
469 rmi_unregister_function_handlers();
470 bus_unregister(&rmi_bus_type);
472 module_exit(rmi_bus_exit);
474 MODULE_AUTHOR("Christopher Heiny <cheiny@synaptics.com");
475 MODULE_AUTHOR("Andrew Duggan <aduggan@synaptics.com");
476 MODULE_DESCRIPTION("RMI bus");
477 MODULE_LICENSE("GPL");