2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012-2013, NVIDIA Corporation
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/host1x.h>
20 #include <linux/slab.h>
25 static DEFINE_MUTEX(clients_lock
);
26 static LIST_HEAD(clients
);
28 static DEFINE_MUTEX(drivers_lock
);
29 static LIST_HEAD(drivers
);
31 static DEFINE_MUTEX(devices_lock
);
32 static LIST_HEAD(devices
);
34 struct host1x_subdev
{
35 struct host1x_client
*client
;
36 struct device_node
*np
;
37 struct list_head list
;
41 * host1x_subdev_add() - add a new subdevice with an associated device node
43 static int host1x_subdev_add(struct host1x_device
*device
,
44 struct device_node
*np
)
46 struct host1x_subdev
*subdev
;
48 subdev
= kzalloc(sizeof(*subdev
), GFP_KERNEL
);
52 INIT_LIST_HEAD(&subdev
->list
);
53 subdev
->np
= of_node_get(np
);
55 mutex_lock(&device
->subdevs_lock
);
56 list_add_tail(&subdev
->list
, &device
->subdevs
);
57 mutex_unlock(&device
->subdevs_lock
);
63 * host1x_subdev_del() - remove subdevice
65 static void host1x_subdev_del(struct host1x_subdev
*subdev
)
67 list_del(&subdev
->list
);
68 of_node_put(subdev
->np
);
73 * host1x_device_parse_dt() - scan device tree and add matching subdevices
75 static int host1x_device_parse_dt(struct host1x_device
*device
)
77 struct device_node
*np
;
80 for_each_child_of_node(device
->dev
.parent
->of_node
, np
) {
81 if (of_match_node(device
->driver
->subdevs
, np
) &&
82 of_device_is_available(np
)) {
83 err
= host1x_subdev_add(device
, np
);
92 static void host1x_subdev_register(struct host1x_device
*device
,
93 struct host1x_subdev
*subdev
,
94 struct host1x_client
*client
)
99 * Move the subdevice to the list of active (registered) subdevices
100 * and associate it with a client. At the same time, associate the
101 * client with its parent device.
103 mutex_lock(&device
->subdevs_lock
);
104 mutex_lock(&device
->clients_lock
);
105 list_move_tail(&client
->list
, &device
->clients
);
106 list_move_tail(&subdev
->list
, &device
->active
);
107 client
->parent
= &device
->dev
;
108 subdev
->client
= client
;
109 mutex_unlock(&device
->clients_lock
);
110 mutex_unlock(&device
->subdevs_lock
);
113 * When all subdevices have been registered, the composite device is
114 * ready to be probed.
116 if (list_empty(&device
->subdevs
)) {
117 err
= device
->driver
->probe(device
);
119 dev_err(&device
->dev
, "probe failed: %d\n", err
);
123 static void __host1x_subdev_unregister(struct host1x_device
*device
,
124 struct host1x_subdev
*subdev
)
126 struct host1x_client
*client
= subdev
->client
;
130 * If all subdevices have been activated, we're about to remove the
131 * first active subdevice, so unload the driver first.
133 if (list_empty(&device
->subdevs
)) {
134 err
= device
->driver
->remove(device
);
136 dev_err(&device
->dev
, "remove failed: %d\n", err
);
140 * Move the subdevice back to the list of idle subdevices and remove
141 * it from list of clients.
143 mutex_lock(&device
->clients_lock
);
144 subdev
->client
= NULL
;
145 client
->parent
= NULL
;
146 list_move_tail(&subdev
->list
, &device
->subdevs
);
148 * XXX: Perhaps don't do this here, but rather explicitly remove it
149 * when the device is about to be deleted.
151 * This is somewhat complicated by the fact that this function is
152 * used to remove the subdevice when a client is unregistered but
153 * also when the composite device is about to be removed.
155 list_del_init(&client
->list
);
156 mutex_unlock(&device
->clients_lock
);
159 static void host1x_subdev_unregister(struct host1x_device
*device
,
160 struct host1x_subdev
*subdev
)
162 mutex_lock(&device
->subdevs_lock
);
163 __host1x_subdev_unregister(device
, subdev
);
164 mutex_unlock(&device
->subdevs_lock
);
167 int host1x_device_init(struct host1x_device
*device
)
169 struct host1x_client
*client
;
172 mutex_lock(&device
->clients_lock
);
174 list_for_each_entry(client
, &device
->clients
, list
) {
175 if (client
->ops
&& client
->ops
->init
) {
176 err
= client
->ops
->init(client
);
178 dev_err(&device
->dev
,
179 "failed to initialize %s: %d\n",
180 dev_name(client
->dev
), err
);
181 mutex_unlock(&device
->clients_lock
);
187 mutex_unlock(&device
->clients_lock
);
191 EXPORT_SYMBOL(host1x_device_init
);
193 int host1x_device_exit(struct host1x_device
*device
)
195 struct host1x_client
*client
;
198 mutex_lock(&device
->clients_lock
);
200 list_for_each_entry_reverse(client
, &device
->clients
, list
) {
201 if (client
->ops
&& client
->ops
->exit
) {
202 err
= client
->ops
->exit(client
);
204 dev_err(&device
->dev
,
205 "failed to cleanup %s: %d\n",
206 dev_name(client
->dev
), err
);
207 mutex_unlock(&device
->clients_lock
);
213 mutex_unlock(&device
->clients_lock
);
217 EXPORT_SYMBOL(host1x_device_exit
);
219 static int host1x_register_client(struct host1x
*host1x
,
220 struct host1x_client
*client
)
222 struct host1x_device
*device
;
223 struct host1x_subdev
*subdev
;
225 mutex_lock(&host1x
->devices_lock
);
227 list_for_each_entry(device
, &host1x
->devices
, list
) {
228 list_for_each_entry(subdev
, &device
->subdevs
, list
) {
229 if (subdev
->np
== client
->dev
->of_node
) {
230 host1x_subdev_register(device
, subdev
, client
);
231 mutex_unlock(&host1x
->devices_lock
);
237 mutex_unlock(&host1x
->devices_lock
);
241 static int host1x_unregister_client(struct host1x
*host1x
,
242 struct host1x_client
*client
)
244 struct host1x_device
*device
, *dt
;
245 struct host1x_subdev
*subdev
;
247 mutex_lock(&host1x
->devices_lock
);
249 list_for_each_entry_safe(device
, dt
, &host1x
->devices
, list
) {
250 list_for_each_entry(subdev
, &device
->active
, list
) {
251 if (subdev
->client
== client
) {
252 host1x_subdev_unregister(device
, subdev
);
253 mutex_unlock(&host1x
->devices_lock
);
259 mutex_unlock(&host1x
->devices_lock
);
263 static struct bus_type host1x_bus_type
= {
267 int host1x_bus_init(void)
269 return bus_register(&host1x_bus_type
);
272 void host1x_bus_exit(void)
274 bus_unregister(&host1x_bus_type
);
277 static void host1x_device_release(struct device
*dev
)
279 struct host1x_device
*device
= to_host1x_device(dev
);
284 static int host1x_device_add(struct host1x
*host1x
,
285 struct host1x_driver
*driver
)
287 struct host1x_client
*client
, *tmp
;
288 struct host1x_subdev
*subdev
;
289 struct host1x_device
*device
;
292 device
= kzalloc(sizeof(*device
), GFP_KERNEL
);
296 mutex_init(&device
->subdevs_lock
);
297 INIT_LIST_HEAD(&device
->subdevs
);
298 INIT_LIST_HEAD(&device
->active
);
299 mutex_init(&device
->clients_lock
);
300 INIT_LIST_HEAD(&device
->clients
);
301 INIT_LIST_HEAD(&device
->list
);
302 device
->driver
= driver
;
304 device
->dev
.coherent_dma_mask
= host1x
->dev
->coherent_dma_mask
;
305 device
->dev
.dma_mask
= &device
->dev
.coherent_dma_mask
;
306 device
->dev
.release
= host1x_device_release
;
307 dev_set_name(&device
->dev
, "%s", driver
->name
);
308 device
->dev
.bus
= &host1x_bus_type
;
309 device
->dev
.parent
= host1x
->dev
;
311 err
= device_register(&device
->dev
);
315 err
= host1x_device_parse_dt(device
);
317 device_unregister(&device
->dev
);
321 mutex_lock(&host1x
->devices_lock
);
322 list_add_tail(&device
->list
, &host1x
->devices
);
323 mutex_unlock(&host1x
->devices_lock
);
325 mutex_lock(&clients_lock
);
327 list_for_each_entry_safe(client
, tmp
, &clients
, list
) {
328 list_for_each_entry(subdev
, &device
->subdevs
, list
) {
329 if (subdev
->np
== client
->dev
->of_node
) {
330 host1x_subdev_register(device
, subdev
, client
);
336 mutex_unlock(&clients_lock
);
342 * Removes a device by first unregistering any subdevices and then removing
343 * itself from the list of devices.
345 * This function must be called with the host1x->devices_lock held.
347 static void host1x_device_del(struct host1x
*host1x
,
348 struct host1x_device
*device
)
350 struct host1x_subdev
*subdev
, *sd
;
351 struct host1x_client
*client
, *cl
;
353 mutex_lock(&device
->subdevs_lock
);
355 /* unregister subdevices */
356 list_for_each_entry_safe(subdev
, sd
, &device
->active
, list
) {
358 * host1x_subdev_unregister() will remove the client from
359 * any lists, so we'll need to manually add it back to the
360 * list of idle clients.
362 * XXX: Alternatively, perhaps don't remove the client from
363 * any lists in host1x_subdev_unregister() and instead do
364 * that explicitly from host1x_unregister_client()?
366 client
= subdev
->client
;
368 __host1x_subdev_unregister(device
, subdev
);
370 /* add the client to the list of idle clients */
371 mutex_lock(&clients_lock
);
372 list_add_tail(&client
->list
, &clients
);
373 mutex_unlock(&clients_lock
);
376 /* remove subdevices */
377 list_for_each_entry_safe(subdev
, sd
, &device
->subdevs
, list
)
378 host1x_subdev_del(subdev
);
380 mutex_unlock(&device
->subdevs_lock
);
382 /* move clients to idle list */
383 mutex_lock(&clients_lock
);
384 mutex_lock(&device
->clients_lock
);
386 list_for_each_entry_safe(client
, cl
, &device
->clients
, list
)
387 list_move_tail(&client
->list
, &clients
);
389 mutex_unlock(&device
->clients_lock
);
390 mutex_unlock(&clients_lock
);
392 /* finally remove the device */
393 list_del_init(&device
->list
);
394 device_unregister(&device
->dev
);
397 static void host1x_attach_driver(struct host1x
*host1x
,
398 struct host1x_driver
*driver
)
400 struct host1x_device
*device
;
403 mutex_lock(&host1x
->devices_lock
);
405 list_for_each_entry(device
, &host1x
->devices
, list
) {
406 if (device
->driver
== driver
) {
407 mutex_unlock(&host1x
->devices_lock
);
412 mutex_unlock(&host1x
->devices_lock
);
414 err
= host1x_device_add(host1x
, driver
);
416 dev_err(host1x
->dev
, "failed to allocate device: %d\n", err
);
419 static void host1x_detach_driver(struct host1x
*host1x
,
420 struct host1x_driver
*driver
)
422 struct host1x_device
*device
, *tmp
;
424 mutex_lock(&host1x
->devices_lock
);
426 list_for_each_entry_safe(device
, tmp
, &host1x
->devices
, list
)
427 if (device
->driver
== driver
)
428 host1x_device_del(host1x
, device
);
430 mutex_unlock(&host1x
->devices_lock
);
433 int host1x_register(struct host1x
*host1x
)
435 struct host1x_driver
*driver
;
437 mutex_lock(&devices_lock
);
438 list_add_tail(&host1x
->list
, &devices
);
439 mutex_unlock(&devices_lock
);
441 mutex_lock(&drivers_lock
);
443 list_for_each_entry(driver
, &drivers
, list
)
444 host1x_attach_driver(host1x
, driver
);
446 mutex_unlock(&drivers_lock
);
451 int host1x_unregister(struct host1x
*host1x
)
453 struct host1x_driver
*driver
;
455 mutex_lock(&drivers_lock
);
457 list_for_each_entry(driver
, &drivers
, list
)
458 host1x_detach_driver(host1x
, driver
);
460 mutex_unlock(&drivers_lock
);
462 mutex_lock(&devices_lock
);
463 list_del_init(&host1x
->list
);
464 mutex_unlock(&devices_lock
);
469 int host1x_driver_register(struct host1x_driver
*driver
)
471 struct host1x
*host1x
;
473 INIT_LIST_HEAD(&driver
->list
);
475 mutex_lock(&drivers_lock
);
476 list_add_tail(&driver
->list
, &drivers
);
477 mutex_unlock(&drivers_lock
);
479 mutex_lock(&devices_lock
);
481 list_for_each_entry(host1x
, &devices
, list
)
482 host1x_attach_driver(host1x
, driver
);
484 mutex_unlock(&devices_lock
);
488 EXPORT_SYMBOL(host1x_driver_register
);
490 void host1x_driver_unregister(struct host1x_driver
*driver
)
492 mutex_lock(&drivers_lock
);
493 list_del_init(&driver
->list
);
494 mutex_unlock(&drivers_lock
);
496 EXPORT_SYMBOL(host1x_driver_unregister
);
498 int host1x_client_register(struct host1x_client
*client
)
500 struct host1x
*host1x
;
503 mutex_lock(&devices_lock
);
505 list_for_each_entry(host1x
, &devices
, list
) {
506 err
= host1x_register_client(host1x
, client
);
508 mutex_unlock(&devices_lock
);
513 mutex_unlock(&devices_lock
);
515 mutex_lock(&clients_lock
);
516 list_add_tail(&client
->list
, &clients
);
517 mutex_unlock(&clients_lock
);
521 EXPORT_SYMBOL(host1x_client_register
);
523 int host1x_client_unregister(struct host1x_client
*client
)
525 struct host1x_client
*c
;
526 struct host1x
*host1x
;
529 mutex_lock(&devices_lock
);
531 list_for_each_entry(host1x
, &devices
, list
) {
532 err
= host1x_unregister_client(host1x
, client
);
534 mutex_unlock(&devices_lock
);
539 mutex_unlock(&devices_lock
);
540 mutex_lock(&clients_lock
);
542 list_for_each_entry(c
, &clients
, list
) {
544 list_del_init(&c
->list
);
549 mutex_unlock(&clients_lock
);
553 EXPORT_SYMBOL(host1x_client_unregister
);