greybus: add bg_hd_connection_find()
[cascardo/linux.git] / drivers / staging / greybus / core.c
1 /*
2  * Greybus "Core"
3  *
4  * Copyright 2014 Google Inc.
5  *
6  * Released under the GPLv2 only.
7  */
8
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
11 #include <linux/types.h>
12 #include <linux/module.h>
13 #include <linux/moduleparam.h>
14 #include <linux/kernel.h>
15 #include <linux/slab.h>
16 #include <linux/device.h>
17
18 #include "greybus.h"
19
20 /* Allow greybus to be disabled at boot if needed */
21 static bool nogreybus;
22 #ifdef MODULE
23 module_param(nogreybus, bool, 0444);
24 #else
25 core_param(nogreybus, bool, 0444);
26 #endif
27 int greybus_disabled(void)
28 {
29         return nogreybus;
30 }
31 EXPORT_SYMBOL_GPL(greybus_disabled);
32
33 static spinlock_t cport_id_map_lock;
34
35 static int greybus_module_match(struct device *dev, struct device_driver *drv)
36 {
37         struct greybus_driver *driver = to_greybus_driver(dev->driver);
38         struct gb_module *gmod = to_gb_module(dev);
39         const struct greybus_module_id *id;
40
41         id = gb_module_match_id(gmod, driver->id_table);
42         if (id)
43                 return 1;
44         /* FIXME - Dyanmic ids? */
45         return 0;
46 }
47
48 static int greybus_uevent(struct device *dev, struct kobj_uevent_env *env)
49 {
50         /* struct gb_module *gmod = to_gb_module(dev); */
51
52         /* FIXME - add some uevents here... */
53         return 0;
54 }
55
56 static struct bus_type greybus_bus_type = {
57         .name =         "greybus",
58         .match =        greybus_module_match,
59         .uevent =       greybus_uevent,
60 };
61
62 static int greybus_probe(struct device *dev)
63 {
64         struct greybus_driver *driver = to_greybus_driver(dev->driver);
65         struct gb_module *gmod = to_gb_module(dev);
66         const struct greybus_module_id *id;
67         int retval;
68
69         /* match id */
70         id = gb_module_match_id(gmod, driver->id_table);
71         if (!id)
72                 return -ENODEV;
73
74         retval = driver->probe(gmod, id);
75         if (retval)
76                 return retval;
77
78         return 0;
79 }
80
81 static int greybus_remove(struct device *dev)
82 {
83         struct greybus_driver *driver = to_greybus_driver(dev->driver);
84         struct gb_module *gmod = to_gb_module(dev);
85
86         driver->disconnect(gmod);
87         return 0;
88 }
89
90 int greybus_register_driver(struct greybus_driver *driver, struct module *owner,
91                 const char *mod_name)
92 {
93         int retval;
94
95         if (greybus_disabled())
96                 return -ENODEV;
97
98         driver->driver.name = driver->name;
99         driver->driver.probe = greybus_probe;
100         driver->driver.remove = greybus_remove;
101         driver->driver.owner = owner;
102         driver->driver.mod_name = mod_name;
103
104         retval = driver_register(&driver->driver);
105         if (retval)
106                 return retval;
107
108         pr_info("registered new driver %s\n", driver->name);
109         return 0;
110 }
111 EXPORT_SYMBOL_GPL(greybus_register_driver);
112
113 void greybus_deregister(struct greybus_driver *driver)
114 {
115         driver_unregister(&driver->driver);
116 }
117 EXPORT_SYMBOL_GPL(greybus_deregister);
118
119
120 static void greybus_module_release(struct device *dev)
121 {
122         struct gb_module *gmod = to_gb_module(dev);
123         int i;
124
125         for (i = 0; i < gmod->num_strings; ++i)
126                 kfree(gmod->string[i]);
127         kfree(gmod);
128 }
129
130
131 static struct device_type greybus_module_type = {
132         .name =         "greybus_module",
133         .release =      greybus_module_release,
134 };
135
136 /* XXX
137  * This needs to be driven by the list of functions that the
138  * manifest says are present.
139  */
140 static int gb_init_subdevs(struct gb_module *gmod,
141                            const struct greybus_module_id *id)
142 {
143         int retval;
144
145         /* Allocate all of the different "sub device types" for this device */
146
147         /* XXX
148          * Decide what exactly we should get supplied for the i2c
149          * probe, and then work that back to what should be present
150          * in the manifest.
151          */
152         retval = gb_i2c_probe(gmod, id);
153         if (retval)
154                 goto error_i2c;
155
156         retval = gb_gpio_probe(gmod, id);
157         if (retval)
158                 goto error_gpio;
159
160         retval = gb_sdio_probe(gmod, id);
161         if (retval)
162                 goto error_sdio;
163
164         retval = gb_tty_probe(gmod, id);
165         if (retval)
166                 goto error_tty;
167
168         retval = gb_battery_probe(gmod, id);
169         if (retval)
170                 goto error_battery;
171         return 0;
172
173 error_battery:
174         gb_tty_disconnect(gmod);
175
176 error_tty:
177         gb_sdio_disconnect(gmod);
178
179 error_sdio:
180         gb_gpio_disconnect(gmod);
181
182 error_gpio:
183         gb_i2c_disconnect(gmod);
184
185 error_i2c:
186         return retval;
187 }
188
189 static const struct greybus_module_id fake_greybus_module_id = {
190         GREYBUS_DEVICE(0x42, 0x42)
191 };
192
193
194 /**
195  * gb_add_module
196  *
197  * Pass in a buffer that _should_ contain a Greybus module manifest
198  * and register a greybus device structure with the kernel core.
199  */
200 void gb_add_module(struct greybus_host_device *hd, u8 module_id,
201                    u8 *data, int size)
202 {
203         struct gb_module *gmod;
204         int retval;
205
206         gmod = gb_module_create(hd, module_id);
207         if (!gmod) {
208                 dev_err(hd->parent, "failed to create module\n");
209                 return;
210         }
211
212         /*
213          * Parse the manifest and build up our data structures
214          * representing what's in it.
215          */
216         if (!gb_manifest_parse(gmod, data, size)) {
217                 dev_err(hd->parent, "manifest error\n");
218                 goto error;
219         }
220
221         /*
222          * XXX
223          * We've successfully parsed the manifest.  Now we need to
224          * allocate CPort Id's for connecting to the CPorts found on
225          * other modules.  For each of these, establish a connection
226          * between the local and remote CPorts (including
227          * configuring the switch to allow them to communicate).
228          */
229
230         gmod->dev.parent = hd->parent;
231         gmod->dev.driver = NULL;
232         gmod->dev.bus = &greybus_bus_type;
233         gmod->dev.type = &greybus_module_type;
234         gmod->dev.groups = greybus_module_groups;
235         gmod->dev.dma_mask = hd->parent->dma_mask;
236         device_initialize(&gmod->dev);
237         dev_set_name(&gmod->dev, "%d", module_id);
238
239         retval = device_add(&gmod->dev);
240         if (retval)
241                 goto error;
242
243         retval = gb_init_subdevs(gmod, &fake_greybus_module_id);
244         if (retval)
245                 goto error_subdevs;
246
247         //return gmod;
248         return;
249
250 error_subdevs:
251         device_del(&gmod->dev);
252
253 error:
254         gb_module_destroy(gmod);
255
256         put_device(&gmod->dev);
257         greybus_module_release(&gmod->dev);
258 }
259
260 void gb_remove_module(struct greybus_host_device *hd, u8 module_id)
261 {
262         struct gb_module *gmod;
263         bool found = false;
264
265         list_for_each_entry(gmod, &hd->modules, links)
266                 if (gmod->module_id == module_id) {
267                         found = true;
268                         break;
269                 }
270
271         if (found)
272                 greybus_remove_device(gmod);
273         else
274                 dev_err(hd->parent, "module id %d remove error\n", module_id);
275 }
276
277 void greybus_remove_device(struct gb_module *gmod)
278 {
279         /* tear down all of the "sub device types" for this device */
280         gb_i2c_disconnect(gmod);
281         gb_gpio_disconnect(gmod);
282         gb_sdio_disconnect(gmod);
283         gb_tty_disconnect(gmod);
284         gb_battery_disconnect(gmod);
285
286         device_del(&gmod->dev);
287         put_device(&gmod->dev);
288 }
289
290 static DEFINE_MUTEX(hd_mutex);
291
292 static void free_hd(struct kref *kref)
293 {
294         struct greybus_host_device *hd;
295
296         hd = container_of(kref, struct greybus_host_device, kref);
297
298         kfree(hd);
299 }
300
301 struct greybus_host_device *greybus_create_hd(struct greybus_host_driver *driver,
302                                               struct device *parent)
303 {
304         struct greybus_host_device *hd;
305
306         hd = kzalloc(sizeof(*hd) + driver->hd_priv_size, GFP_KERNEL);
307         if (!hd)
308                 return NULL;
309
310         kref_init(&hd->kref);
311         hd->parent = parent;
312         hd->driver = driver;
313         INIT_LIST_HEAD(&hd->modules);
314         hd->connections = RB_ROOT;
315         ida_init(&hd->cport_id_map);
316
317         return hd;
318 }
319 EXPORT_SYMBOL_GPL(greybus_create_hd);
320
321 void greybus_remove_hd(struct greybus_host_device *hd)
322 {
323         kref_put_mutex(&hd->kref, free_hd, &hd_mutex);
324 }
325 EXPORT_SYMBOL_GPL(greybus_remove_hd);
326
327
328 static int __init gb_init(void)
329 {
330         int retval;
331
332         BUILD_BUG_ON(HOST_DEV_CPORT_ID_MAX >= (long)CPORT_ID_BAD);
333         spin_lock_init(&cport_id_map_lock);
334
335         retval = gb_debugfs_init();
336         if (retval) {
337                 pr_err("debugfs failed\n");
338                 return retval;
339         }
340
341         retval = bus_register(&greybus_bus_type);
342         if (retval) {
343                 pr_err("bus_register failed\n");
344                 goto error_bus;
345         }
346
347         retval = gb_ap_init();
348         if (retval) {
349                 pr_err("gb_ap_init failed\n");
350                 goto error_ap;
351         }
352
353         retval = gb_gbuf_init();
354         if (retval) {
355                 pr_err("gb_gbuf_init failed\n");
356                 goto error_gbuf;
357         }
358
359         retval = gb_tty_init();
360         if (retval) {
361                 pr_err("gb_tty_init failed\n");
362                 goto error_tty;
363         }
364
365         return 0;
366
367 error_tty:
368         gb_gbuf_exit();
369
370 error_gbuf:
371         gb_ap_exit();
372
373 error_ap:
374         bus_unregister(&greybus_bus_type);
375
376 error_bus:
377         gb_debugfs_cleanup();
378
379         return retval;
380 }
381
382 static void __exit gb_exit(void)
383 {
384         gb_tty_exit();
385         gb_gbuf_exit();
386         gb_ap_exit();
387         bus_unregister(&greybus_bus_type);
388         gb_debugfs_cleanup();
389 }
390
391 module_init(gb_init);
392 module_exit(gb_exit);
393
394 MODULE_LICENSE("GPL");
395 MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@linuxfoundation.org>");