mmc: rtsx_pci: Enable MMC_CAP_ERASE to allow erase/discard/trim requests
[linux/fpc-iii.git] / drivers / input / rmi4 / rmi_bus.c
blob253df96be4276cc9196a6c0ab25b04f838d061ac
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/kconfig.h>
13 #include <linux/list.h>
14 #include <linux/pm.h>
15 #include <linux/rmi.h>
16 #include <linux/slab.h>
17 #include <linux/types.h>
18 #include <linux/of.h>
19 #include "rmi_bus.h"
20 #include "rmi_driver.h"
22 static int debug_flags;
23 module_param(debug_flags, int, 0644);
24 MODULE_PARM_DESC(debug_flags, "control debugging information");
26 void rmi_dbg(int flags, struct device *dev, const char *fmt, ...)
28 struct va_format vaf;
29 va_list args;
31 if (flags & debug_flags) {
32 va_start(args, fmt);
34 vaf.fmt = fmt;
35 vaf.va = &args;
37 dev_printk(KERN_DEBUG, dev, "%pV", &vaf);
39 va_end(args);
42 EXPORT_SYMBOL_GPL(rmi_dbg);
45 * RMI Physical devices
47 * Physical RMI device consists of several functions serving particular
48 * purpose. For example F11 is a 2D touch sensor while F01 is a generic
49 * function present in every RMI device.
52 static void rmi_release_device(struct device *dev)
54 struct rmi_device *rmi_dev = to_rmi_device(dev);
56 kfree(rmi_dev);
59 static struct device_type rmi_device_type = {
60 .name = "rmi4_sensor",
61 .release = rmi_release_device,
64 bool rmi_is_physical_device(struct device *dev)
66 return dev->type == &rmi_device_type;
69 /**
70 * rmi_register_transport_device - register a transport device connection
71 * on the RMI bus. Transport drivers provide communication from the devices
72 * on a bus (such as SPI, I2C, and so on) to the RMI4 sensor.
74 * @xport: the transport device to register
76 int rmi_register_transport_device(struct rmi_transport_dev *xport)
78 static atomic_t transport_device_count = ATOMIC_INIT(0);
79 struct rmi_device *rmi_dev;
80 int error;
82 rmi_dev = kzalloc(sizeof(struct rmi_device), GFP_KERNEL);
83 if (!rmi_dev)
84 return -ENOMEM;
86 device_initialize(&rmi_dev->dev);
88 rmi_dev->xport = xport;
89 rmi_dev->number = atomic_inc_return(&transport_device_count) - 1;
91 dev_set_name(&rmi_dev->dev, "rmi4-%02d", rmi_dev->number);
93 rmi_dev->dev.bus = &rmi_bus_type;
94 rmi_dev->dev.type = &rmi_device_type;
96 xport->rmi_dev = rmi_dev;
98 error = device_add(&rmi_dev->dev);
99 if (error)
100 goto err_put_device;
102 rmi_dbg(RMI_DEBUG_CORE, xport->dev,
103 "%s: Registered %s as %s.\n", __func__,
104 dev_name(rmi_dev->xport->dev), dev_name(&rmi_dev->dev));
106 return 0;
108 err_put_device:
109 put_device(&rmi_dev->dev);
110 return error;
112 EXPORT_SYMBOL_GPL(rmi_register_transport_device);
115 * rmi_unregister_transport_device - unregister a transport device connection
116 * @xport: the transport driver to unregister
119 void rmi_unregister_transport_device(struct rmi_transport_dev *xport)
121 struct rmi_device *rmi_dev = xport->rmi_dev;
123 device_del(&rmi_dev->dev);
124 put_device(&rmi_dev->dev);
126 EXPORT_SYMBOL(rmi_unregister_transport_device);
129 /* Function specific stuff */
131 static void rmi_release_function(struct device *dev)
133 struct rmi_function *fn = to_rmi_function(dev);
135 kfree(fn);
138 static struct device_type rmi_function_type = {
139 .name = "rmi4_function",
140 .release = rmi_release_function,
143 bool rmi_is_function_device(struct device *dev)
145 return dev->type == &rmi_function_type;
148 static int rmi_function_match(struct device *dev, struct device_driver *drv)
150 struct rmi_function_handler *handler = to_rmi_function_handler(drv);
151 struct rmi_function *fn = to_rmi_function(dev);
153 return fn->fd.function_number == handler->func;
156 #ifdef CONFIG_OF
157 static void rmi_function_of_probe(struct rmi_function *fn)
159 char of_name[9];
160 struct device_node *node = fn->rmi_dev->xport->dev->of_node;
162 snprintf(of_name, sizeof(of_name), "rmi4-f%02x",
163 fn->fd.function_number);
164 fn->dev.of_node = of_get_child_by_name(node, of_name);
166 #else
167 static inline void rmi_function_of_probe(struct rmi_function *fn)
169 #endif
171 static int rmi_function_probe(struct device *dev)
173 struct rmi_function *fn = to_rmi_function(dev);
174 struct rmi_function_handler *handler =
175 to_rmi_function_handler(dev->driver);
176 int error;
178 rmi_function_of_probe(fn);
180 if (handler->probe) {
181 error = handler->probe(fn);
182 return error;
185 return 0;
188 static int rmi_function_remove(struct device *dev)
190 struct rmi_function *fn = to_rmi_function(dev);
191 struct rmi_function_handler *handler =
192 to_rmi_function_handler(dev->driver);
194 if (handler->remove)
195 handler->remove(fn);
197 return 0;
200 int rmi_register_function(struct rmi_function *fn)
202 struct rmi_device *rmi_dev = fn->rmi_dev;
203 int error;
205 device_initialize(&fn->dev);
207 dev_set_name(&fn->dev, "%s.fn%02x",
208 dev_name(&rmi_dev->dev), fn->fd.function_number);
210 fn->dev.parent = &rmi_dev->dev;
211 fn->dev.type = &rmi_function_type;
212 fn->dev.bus = &rmi_bus_type;
214 error = device_add(&fn->dev);
215 if (error) {
216 dev_err(&rmi_dev->dev,
217 "Failed device_register function device %s\n",
218 dev_name(&fn->dev));
219 goto err_put_device;
222 rmi_dbg(RMI_DEBUG_CORE, &rmi_dev->dev, "Registered F%02X.\n",
223 fn->fd.function_number);
225 return 0;
227 err_put_device:
228 put_device(&fn->dev);
229 return error;
232 void rmi_unregister_function(struct rmi_function *fn)
234 device_del(&fn->dev);
236 if (fn->dev.of_node)
237 of_node_put(fn->dev.of_node);
239 put_device(&fn->dev);
243 * rmi_register_function_handler - register a handler for an RMI function
244 * @handler: RMI handler that should be registered.
245 * @module: pointer to module that implements the handler
246 * @mod_name: name of the module implementing the handler
248 * This function performs additional setup of RMI function handler and
249 * registers it with the RMI core so that it can be bound to
250 * RMI function devices.
252 int __rmi_register_function_handler(struct rmi_function_handler *handler,
253 struct module *owner,
254 const char *mod_name)
256 struct device_driver *driver = &handler->driver;
257 int error;
259 driver->bus = &rmi_bus_type;
260 driver->owner = owner;
261 driver->mod_name = mod_name;
262 driver->probe = rmi_function_probe;
263 driver->remove = rmi_function_remove;
265 error = driver_register(&handler->driver);
266 if (error) {
267 pr_err("driver_register() failed for %s, error: %d\n",
268 handler->driver.name, error);
269 return error;
272 return 0;
274 EXPORT_SYMBOL_GPL(__rmi_register_function_handler);
277 * rmi_unregister_function_handler - unregister given RMI function handler
278 * @handler: RMI handler that should be unregistered.
280 * This function unregisters given function handler from RMI core which
281 * causes it to be unbound from the function devices.
283 void rmi_unregister_function_handler(struct rmi_function_handler *handler)
285 driver_unregister(&handler->driver);
287 EXPORT_SYMBOL_GPL(rmi_unregister_function_handler);
289 /* Bus specific stuff */
291 static int rmi_bus_match(struct device *dev, struct device_driver *drv)
293 bool physical = rmi_is_physical_device(dev);
295 /* First see if types are not compatible */
296 if (physical != rmi_is_physical_driver(drv))
297 return 0;
299 return physical || rmi_function_match(dev, drv);
302 struct bus_type rmi_bus_type = {
303 .match = rmi_bus_match,
304 .name = "rmi4",
307 static struct rmi_function_handler *fn_handlers[] = {
308 &rmi_f01_handler,
309 #ifdef CONFIG_RMI4_F11
310 &rmi_f11_handler,
311 #endif
312 #ifdef CONFIG_RMI4_F12
313 &rmi_f12_handler,
314 #endif
315 #ifdef CONFIG_RMI4_F30
316 &rmi_f30_handler,
317 #endif
320 static void __rmi_unregister_function_handlers(int start_idx)
322 int i;
324 for (i = start_idx; i >= 0; i--)
325 rmi_unregister_function_handler(fn_handlers[i]);
328 static void rmi_unregister_function_handlers(void)
330 __rmi_unregister_function_handlers(ARRAY_SIZE(fn_handlers) - 1);
333 static int rmi_register_function_handlers(void)
335 int ret;
336 int i;
338 for (i = 0; i < ARRAY_SIZE(fn_handlers); i++) {
339 ret = rmi_register_function_handler(fn_handlers[i]);
340 if (ret) {
341 pr_err("%s: error registering the RMI F%02x handler: %d\n",
342 __func__, fn_handlers[i]->func, ret);
343 goto err_unregister_function_handlers;
347 return 0;
349 err_unregister_function_handlers:
350 __rmi_unregister_function_handlers(i - 1);
351 return ret;
354 int rmi_of_property_read_u32(struct device *dev, u32 *result,
355 const char *prop, bool optional)
357 int retval;
358 u32 val = 0;
360 retval = of_property_read_u32(dev->of_node, prop, &val);
361 if (retval && (!optional && retval == -EINVAL)) {
362 dev_err(dev, "Failed to get %s value: %d\n",
363 prop, retval);
364 return retval;
366 *result = val;
368 return 0;
370 EXPORT_SYMBOL_GPL(rmi_of_property_read_u32);
372 static int __init rmi_bus_init(void)
374 int error;
376 error = bus_register(&rmi_bus_type);
377 if (error) {
378 pr_err("%s: error registering the RMI bus: %d\n",
379 __func__, error);
380 return error;
383 error = rmi_register_function_handlers();
384 if (error)
385 goto err_unregister_bus;
387 error = rmi_register_physical_driver();
388 if (error) {
389 pr_err("%s: error registering the RMI physical driver: %d\n",
390 __func__, error);
391 goto err_unregister_bus;
394 return 0;
396 err_unregister_bus:
397 bus_unregister(&rmi_bus_type);
398 return error;
400 module_init(rmi_bus_init);
402 static void __exit rmi_bus_exit(void)
405 * We should only ever get here if all drivers are unloaded, so
406 * all we have to do at this point is unregister ourselves.
409 rmi_unregister_physical_driver();
410 rmi_unregister_function_handlers();
411 bus_unregister(&rmi_bus_type);
413 module_exit(rmi_bus_exit);
415 MODULE_AUTHOR("Christopher Heiny <cheiny@synaptics.com");
416 MODULE_AUTHOR("Andrew Duggan <aduggan@synaptics.com");
417 MODULE_DESCRIPTION("RMI bus");
418 MODULE_LICENSE("GPL");
419 MODULE_VERSION(RMI_DRIVER_VERSION);