source: mainline/uspace/lib/drv/generic/driver.c@ 5c38838

Last change on this file since 5c38838 was 4122410, checked in by Jakub Jermar <jakub@…>, 7 years ago

Improve Doxygen documentaion

This is stil WiP. A number of libraries, drivers and services were
converted to using a more hierarchical and decentralized scheme when it
comes to specifying to which doxygen group they belong.

  • Property mode set to 100644
File size: 22.9 KB
Line 
1/*
2 * Copyright (c) 2010 Lenka Trochtova
3 * Copyright (c) 2011 Jiri Svoboda
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/**
31 * @addtogroup libdrv
32 * @{
33 */
34
35/** @file
36 */
37
38#include <assert.h>
39#include <ipc/services.h>
40#include <ipc/ns.h>
41#include <async.h>
42#include <stdio.h>
43#include <errno.h>
44#include <stdbool.h>
45#include <fibril_synch.h>
46#include <stdlib.h>
47#include <str.h>
48#include <str_error.h>
49#include <ctype.h>
50#include <inttypes.h>
51#include <devman.h>
52
53#include "dev_iface.h"
54#include "ddf/driver.h"
55#include "ddf/interrupt.h"
56#include "private/driver.h"
57
58/** Driver structure */
59static const driver_t *driver;
60
61/** Devices */
62LIST_INITIALIZE(devices);
63FIBRIL_MUTEX_INITIALIZE(devices_mutex);
64
65/** Functions */
66LIST_INITIALIZE(functions);
67FIBRIL_MUTEX_INITIALIZE(functions_mutex);
68
69FIBRIL_RWLOCK_INITIALIZE(stopping_lock);
70static bool stopping = false;
71
72static ddf_dev_t *create_device(void);
73static void delete_device(ddf_dev_t *);
74static void dev_add_ref(ddf_dev_t *);
75static void dev_del_ref(ddf_dev_t *);
76static void fun_add_ref(ddf_fun_t *);
77static void fun_del_ref(ddf_fun_t *);
78static remote_handler_t *function_get_default_handler(ddf_fun_t *);
79static void *function_get_ops(ddf_fun_t *, dev_inferface_idx_t);
80
81static void add_to_functions_list(ddf_fun_t *fun)
82{
83 fibril_mutex_lock(&functions_mutex);
84 list_append(&fun->link, &functions);
85 fibril_mutex_unlock(&functions_mutex);
86}
87
88static void remove_from_functions_list(ddf_fun_t *fun)
89{
90 fibril_mutex_lock(&functions_mutex);
91 list_remove(&fun->link);
92 fibril_mutex_unlock(&functions_mutex);
93}
94
95static ddf_dev_t *driver_get_device(devman_handle_t handle)
96{
97 assert(fibril_mutex_is_locked(&devices_mutex));
98
99 list_foreach(devices, link, ddf_dev_t, dev) {
100 if (dev->handle == handle)
101 return dev;
102 }
103
104 return NULL;
105}
106
107static ddf_fun_t *driver_get_function(devman_handle_t handle)
108{
109 assert(fibril_mutex_is_locked(&functions_mutex));
110
111 list_foreach(functions, link, ddf_fun_t, fun) {
112 if (fun->handle == handle)
113 return fun;
114 }
115
116 return NULL;
117}
118
119static void driver_dev_add(ipc_call_t *icall)
120{
121 devman_handle_t dev_handle = IPC_GET_ARG1(*icall);
122 devman_handle_t parent_fun_handle = IPC_GET_ARG2(*icall);
123
124 char *dev_name = NULL;
125 errno_t rc = async_data_write_accept((void **) &dev_name, true, 0, 0, 0, 0);
126 if (rc != EOK) {
127 async_answer_0(icall, rc);
128 return;
129 }
130
131 fibril_rwlock_read_lock(&stopping_lock);
132
133 if (stopping) {
134 fibril_rwlock_read_unlock(&stopping_lock);
135 async_answer_0(icall, EIO);
136 return;
137 }
138
139 ddf_dev_t *dev = create_device();
140 if (!dev) {
141 fibril_rwlock_read_unlock(&stopping_lock);
142 free(dev_name);
143 async_answer_0(icall, ENOMEM);
144 return;
145 }
146
147 /* Add one reference that will be dropped by driver_dev_remove() */
148 dev_add_ref(dev);
149 dev->handle = dev_handle;
150 dev->name = dev_name;
151
152 /*
153 * Currently not used, parent fun handle is stored in context
154 * of the connection to the parent device driver.
155 */
156 (void) parent_fun_handle;
157
158 errno_t res = driver->driver_ops->dev_add(dev);
159
160 if (res != EOK) {
161 fibril_rwlock_read_unlock(&stopping_lock);
162 dev_del_ref(dev);
163 async_answer_0(icall, res);
164 return;
165 }
166
167 fibril_mutex_lock(&devices_mutex);
168 list_append(&dev->link, &devices);
169 fibril_mutex_unlock(&devices_mutex);
170 fibril_rwlock_read_unlock(&stopping_lock);
171
172 async_answer_0(icall, res);
173}
174
175static void driver_dev_remove(ipc_call_t *icall)
176{
177 devman_handle_t devh = IPC_GET_ARG1(*icall);
178
179 fibril_mutex_lock(&devices_mutex);
180 ddf_dev_t *dev = driver_get_device(devh);
181 if (dev != NULL)
182 dev_add_ref(dev);
183 fibril_mutex_unlock(&devices_mutex);
184
185 if (dev == NULL) {
186 async_answer_0(icall, ENOENT);
187 return;
188 }
189
190 errno_t rc;
191
192 if (driver->driver_ops->dev_remove != NULL)
193 rc = driver->driver_ops->dev_remove(dev);
194 else
195 rc = ENOTSUP;
196
197 if (rc == EOK) {
198 fibril_mutex_lock(&devices_mutex);
199 list_remove(&dev->link);
200 fibril_mutex_unlock(&devices_mutex);
201 dev_del_ref(dev);
202 }
203
204 dev_del_ref(dev);
205 async_answer_0(icall, rc);
206}
207
208static void driver_dev_gone(ipc_call_t *icall)
209{
210 devman_handle_t devh = IPC_GET_ARG1(*icall);
211
212 fibril_mutex_lock(&devices_mutex);
213 ddf_dev_t *dev = driver_get_device(devh);
214 if (dev != NULL)
215 dev_add_ref(dev);
216 fibril_mutex_unlock(&devices_mutex);
217
218 if (dev == NULL) {
219 async_answer_0(icall, ENOENT);
220 return;
221 }
222
223 errno_t rc;
224
225 if (driver->driver_ops->dev_gone != NULL)
226 rc = driver->driver_ops->dev_gone(dev);
227 else
228 rc = ENOTSUP;
229
230 if (rc == EOK) {
231 fibril_mutex_lock(&devices_mutex);
232 list_remove(&dev->link);
233 fibril_mutex_unlock(&devices_mutex);
234 dev_del_ref(dev);
235 }
236
237 dev_del_ref(dev);
238 async_answer_0(icall, rc);
239}
240
241static void driver_fun_online(ipc_call_t *icall)
242{
243 devman_handle_t funh = IPC_GET_ARG1(*icall);
244
245 /*
246 * Look the function up. Bump reference count so that
247 * the function continues to exist until we return
248 * from the driver.
249 */
250 fibril_mutex_lock(&functions_mutex);
251
252 ddf_fun_t *fun = driver_get_function(funh);
253 if (fun != NULL)
254 fun_add_ref(fun);
255
256 fibril_mutex_unlock(&functions_mutex);
257
258 if (fun == NULL) {
259 async_answer_0(icall, ENOENT);
260 return;
261 }
262
263 /* Call driver entry point */
264 errno_t rc;
265
266 if (driver->driver_ops->fun_online != NULL)
267 rc = driver->driver_ops->fun_online(fun);
268 else
269 rc = ENOTSUP;
270
271 fun_del_ref(fun);
272
273 async_answer_0(icall, rc);
274}
275
276static void driver_fun_offline(ipc_call_t *icall)
277{
278 devman_handle_t funh = IPC_GET_ARG1(*icall);
279
280 /*
281 * Look the function up. Bump reference count so that
282 * the function continues to exist until we return
283 * from the driver.
284 */
285 fibril_mutex_lock(&functions_mutex);
286
287 ddf_fun_t *fun = driver_get_function(funh);
288 if (fun != NULL)
289 fun_add_ref(fun);
290
291 fibril_mutex_unlock(&functions_mutex);
292
293 if (fun == NULL) {
294 async_answer_0(icall, ENOENT);
295 return;
296 }
297
298 /* Call driver entry point */
299 errno_t rc;
300
301 if (driver->driver_ops->fun_offline != NULL)
302 rc = driver->driver_ops->fun_offline(fun);
303 else
304 rc = ENOTSUP;
305
306 async_answer_0(icall, rc);
307}
308
309static void driver_stop(ipc_call_t *icall)
310{
311 /* Prevent new devices from being added */
312 fibril_rwlock_write_lock(&stopping_lock);
313 stopping = true;
314
315 /* Check if there are any devices */
316 fibril_mutex_lock(&devices_mutex);
317 if (list_first(&devices) != NULL) {
318 /* Devices exist, roll back */
319 fibril_mutex_unlock(&devices_mutex);
320 stopping = false;
321 fibril_rwlock_write_unlock(&stopping_lock);
322 async_answer_0(icall, EBUSY);
323 return;
324 }
325
326 fibril_rwlock_write_unlock(&stopping_lock);
327
328 /* There should be no functions at this point */
329 fibril_mutex_lock(&functions_mutex);
330 assert(list_first(&functions) == NULL);
331 fibril_mutex_unlock(&functions_mutex);
332
333 /* Reply with success and terminate */
334 async_answer_0(icall, EOK);
335 exit(0);
336}
337
338static void driver_connection_devman(ipc_call_t *icall, void *arg)
339{
340 /* Accept connection */
341 async_answer_0(icall, EOK);
342
343 while (true) {
344 ipc_call_t call;
345 async_get_call(&call);
346
347 if (!IPC_GET_IMETHOD(call))
348 break;
349
350 switch (IPC_GET_IMETHOD(call)) {
351 case DRIVER_DEV_ADD:
352 driver_dev_add(&call);
353 break;
354 case DRIVER_DEV_REMOVE:
355 driver_dev_remove(&call);
356 break;
357 case DRIVER_DEV_GONE:
358 driver_dev_gone(&call);
359 break;
360 case DRIVER_FUN_ONLINE:
361 driver_fun_online(&call);
362 break;
363 case DRIVER_FUN_OFFLINE:
364 driver_fun_offline(&call);
365 break;
366 case DRIVER_STOP:
367 driver_stop(&call);
368 break;
369 default:
370 async_answer_0(&call, ENOTSUP);
371 }
372 }
373}
374
375/** Generic client connection handler both for applications and drivers.
376 *
377 * @param drv True for driver client, false for other clients
378 * (applications, services, etc.).
379 *
380 */
381static void driver_connection_gen(ipc_call_t *icall, bool drv)
382{
383 /*
384 * Answer the first IPC_M_CONNECT_ME_TO call and remember the handle of
385 * the device to which the client connected.
386 */
387 devman_handle_t handle = IPC_GET_ARG2(*icall);
388
389 fibril_mutex_lock(&functions_mutex);
390 ddf_fun_t *fun = driver_get_function(handle);
391 if (fun != NULL)
392 fun_add_ref(fun);
393 fibril_mutex_unlock(&functions_mutex);
394
395 if (fun == NULL) {
396 printf("%s: driver_connection_gen error - no function with handle"
397 " %" PRIun " was found.\n", driver->name, handle);
398 async_answer_0(icall, ENOENT);
399 return;
400 }
401
402 if (fun->conn_handler != NULL) {
403 /* Driver has a custom connection handler. */
404 (*fun->conn_handler)(icall, (void *)fun);
405 fun_del_ref(fun);
406 return;
407 }
408
409 /*
410 * TODO - if the client is not a driver, check whether it is allowed to
411 * use the device.
412 */
413
414 errno_t ret = EOK;
415 /* Open device function */
416 if (fun->ops != NULL && fun->ops->open != NULL)
417 ret = (*fun->ops->open)(fun);
418
419 async_answer_0(icall, ret);
420 if (ret != EOK) {
421 fun_del_ref(fun);
422 return;
423 }
424
425 while (true) {
426 ipc_call_t call;
427 async_get_call(&call);
428
429 sysarg_t method = IPC_GET_IMETHOD(call);
430
431 if (!method) {
432 /* Close device function */
433 if (fun->ops != NULL && fun->ops->close != NULL)
434 (*fun->ops->close)(fun);
435 async_answer_0(&call, EOK);
436 fun_del_ref(fun);
437 return;
438 }
439
440 /* Convert ipc interface id to interface index */
441
442 int iface_idx = DEV_IFACE_IDX(method);
443
444 if (!is_valid_iface_idx(iface_idx)) {
445 remote_handler_t *default_handler =
446 function_get_default_handler(fun);
447 if (default_handler != NULL) {
448 (*default_handler)(fun, &call);
449 continue;
450 }
451
452 /*
453 * Function has no such interface and
454 * default handler is not provided.
455 */
456 printf("%s: driver_connection_gen error - "
457 "invalid interface id %d.",
458 driver->name, iface_idx);
459 async_answer_0(&call, ENOTSUP);
460 continue;
461 }
462
463 /* Calling one of the function's interfaces */
464
465 /* Get the interface ops structure. */
466 void *ops = function_get_ops(fun, iface_idx);
467 if (ops == NULL) {
468 printf("%s: driver_connection_gen error - ", driver->name);
469 printf("Function with handle %" PRIun " has no interface "
470 "with id %d.\n", handle, iface_idx);
471 async_answer_0(&call, ENOTSUP);
472 continue;
473 }
474
475 /*
476 * Get the corresponding interface for remote request
477 * handling ("remote interface").
478 */
479 const remote_iface_t *rem_iface = get_remote_iface(iface_idx);
480 assert(rem_iface != NULL);
481
482 /* get the method of the remote interface */
483 sysarg_t iface_method_idx = IPC_GET_ARG1(call);
484 remote_iface_func_ptr_t iface_method_ptr =
485 get_remote_method(rem_iface, iface_method_idx);
486 if (iface_method_ptr == NULL) {
487 /* The interface has not such method */
488 printf("%s: driver_connection_gen error - "
489 "invalid interface method.", driver->name);
490 async_answer_0(&call, ENOTSUP);
491 continue;
492 }
493
494 /*
495 * Call the remote interface's method, which will
496 * receive parameters from the remote client and it will
497 * pass it to the corresponding local interface method
498 * associated with the function by its driver.
499 */
500 (*iface_method_ptr)(fun, ops, &call);
501 }
502}
503
504static void driver_connection_driver(ipc_call_t *icall, void *arg)
505{
506 driver_connection_gen(icall, true);
507}
508
509static void driver_connection_client(ipc_call_t *icall, void *arg)
510{
511 driver_connection_gen(icall, false);
512}
513
514/** Create new device structure.
515 *
516 * @return The device structure.
517 */
518static ddf_dev_t *create_device(void)
519{
520 ddf_dev_t *dev;
521
522 dev = calloc(1, sizeof(ddf_dev_t));
523 if (dev == NULL)
524 return NULL;
525
526 return dev;
527}
528
529/** Create new function structure.
530 *
531 * @return The device structure.
532 */
533static ddf_fun_t *create_function(void)
534{
535 ddf_fun_t *fun;
536
537 fun = calloc(1, sizeof(ddf_fun_t));
538 if (fun == NULL)
539 return NULL;
540
541 init_match_ids(&fun->match_ids);
542 link_initialize(&fun->link);
543
544 return fun;
545}
546
547/** Delete device structure.
548 *
549 * @param dev The device structure.
550 */
551static void delete_device(ddf_dev_t *dev)
552{
553 if (dev->parent_sess)
554 async_hangup(dev->parent_sess);
555 if (dev->driver_data != NULL)
556 free(dev->driver_data);
557 if (dev->name)
558 free(dev->name);
559 free(dev);
560}
561
562/** Delete function structure.
563 *
564 * @param dev The device structure.
565 */
566static void delete_function(ddf_fun_t *fun)
567{
568 clean_match_ids(&fun->match_ids);
569 if (fun->driver_data != NULL)
570 free(fun->driver_data);
571 if (fun->name != NULL)
572 free(fun->name);
573 free(fun);
574}
575
576/** Increase device reference count. */
577static void dev_add_ref(ddf_dev_t *dev)
578{
579 refcount_up(&dev->refcnt);
580}
581
582/** Decrease device reference count.
583 *
584 * Free the device structure if the reference count drops to zero.
585 */
586static void dev_del_ref(ddf_dev_t *dev)
587{
588 if (refcount_down(&dev->refcnt))
589 delete_device(dev);
590}
591
592/** Increase function reference count.
593 *
594 * This also increases reference count on the device. The device structure
595 * will thus not be deallocated while there are some associated function
596 * structures.
597 */
598static void fun_add_ref(ddf_fun_t *fun)
599{
600 dev_add_ref(fun->dev);
601 refcount_up(&fun->refcnt);
602}
603
604/** Decrease function reference count.
605 *
606 * Free the function structure if the reference count drops to zero.
607 */
608static void fun_del_ref(ddf_fun_t *fun)
609{
610 ddf_dev_t *dev = fun->dev;
611
612 if (refcount_down(&fun->refcnt))
613 delete_function(fun);
614
615 dev_del_ref(dev);
616}
617
618/** Allocate driver-specific device data. */
619void *ddf_dev_data_alloc(ddf_dev_t *dev, size_t size)
620{
621 assert(dev->driver_data == NULL);
622
623 void *data = calloc(1, size);
624 if (data == NULL)
625 return NULL;
626
627 dev->driver_data = data;
628 return data;
629}
630
631/** Return driver-specific device data. */
632void *ddf_dev_data_get(ddf_dev_t *dev)
633{
634 return dev->driver_data;
635}
636
637/** Get device handle. */
638devman_handle_t ddf_dev_get_handle(ddf_dev_t *dev)
639{
640 return dev->handle;
641}
642
643/** Return device name.
644 *
645 * @param dev Device
646 * @return Device name. Valid as long as @a dev is valid.
647 */
648const char *ddf_dev_get_name(ddf_dev_t *dev)
649{
650 return dev->name;
651}
652
653/** Return existing session with the parent function.
654 *
655 * @param dev Device
656 * @return Session with parent function or NULL upon failure
657 */
658async_sess_t *ddf_dev_parent_sess_get(ddf_dev_t *dev)
659{
660 if (dev->parent_sess == NULL) {
661 dev->parent_sess = devman_parent_device_connect(dev->handle,
662 IPC_FLAG_BLOCKING);
663 }
664
665 return dev->parent_sess;
666}
667
668/** Set function name (if it was not specified when node was created.)
669 *
670 * @param dev Device whose name has not been set yet
671 * @param name Name, will be copied
672 * @return EOK on success, ENOMEM if out of memory
673 */
674errno_t ddf_fun_set_name(ddf_fun_t *dev, const char *name)
675{
676 assert(dev->name == NULL);
677
678 dev->name = str_dup(name);
679 if (dev->name == NULL)
680 return ENOENT;
681
682 return EOK;
683}
684
685/** Get device to which function belongs. */
686ddf_dev_t *ddf_fun_get_dev(ddf_fun_t *fun)
687{
688 return fun->dev;
689}
690
691/** Get function handle.
692 *
693 * XXX USB uses this, but its use should be eliminated.
694 */
695devman_handle_t ddf_fun_get_handle(ddf_fun_t *fun)
696{
697 return fun->handle;
698}
699
700/** Create a DDF function node.
701 *
702 * Create a DDF function (in memory). Both child devices and external clients
703 * communicate with a device via its functions.
704 *
705 * The created function node is fully formed, but only exists in the memory
706 * of the client task. In order to be visible to the system, the function
707 * must be bound using ddf_fun_bind().
708 *
709 * This function should only fail if there is not enough free memory.
710 * Specifically, this function succeeds even if @a dev already has
711 * a (bound) function with the same name. @a name can be NULL in which
712 * case the caller will set the name later using ddf_fun_set_name().
713 * He must do this before binding the function.
714 *
715 * Type: A function of type fun_inner indicates that DDF should attempt
716 * to attach child devices to the function. fun_exposed means that
717 * the function should be exported to external clients (applications).
718 *
719 * @param dev Device to which we are adding function
720 * @param ftype Type of function (fun_inner or fun_exposed)
721 * @param name Name of function or NULL
722 *
723 * @return New function or @c NULL if memory is not available
724 */
725ddf_fun_t *ddf_fun_create(ddf_dev_t *dev, fun_type_t ftype, const char *name)
726{
727 ddf_fun_t *fun = create_function();
728 if (fun == NULL)
729 return NULL;
730
731 /* Add one reference that will be dropped by ddf_fun_destroy() */
732 fun->dev = dev;
733 fun_add_ref(fun);
734
735 fun->bound = false;
736 fun->ftype = ftype;
737
738 if (name != NULL) {
739 fun->name = str_dup(name);
740 if (fun->name == NULL) {
741 delete_function(fun);
742 return NULL;
743 }
744 }
745
746 return fun;
747}
748
749/** Allocate driver-specific function data. */
750void *ddf_fun_data_alloc(ddf_fun_t *fun, size_t size)
751{
752 assert(fun->bound == false);
753 assert(fun->driver_data == NULL);
754
755 void *data = calloc(1, size);
756 if (data == NULL)
757 return NULL;
758
759 fun->driver_data = data;
760 return data;
761}
762
763/** Return driver-specific function data. */
764void *ddf_fun_data_get(ddf_fun_t *fun)
765{
766 return fun->driver_data;
767}
768
769/** Return function name.
770 *
771 * @param fun Function
772 * @return Function name. Valid as long as @a fun is valid.
773 */
774const char *ddf_fun_get_name(ddf_fun_t *fun)
775{
776 return fun->name;
777}
778
779/** Destroy DDF function node.
780 *
781 * Destroy a function previously created with ddf_fun_create(). The function
782 * must not be bound.
783 *
784 * @param fun Function to destroy
785 *
786 */
787void ddf_fun_destroy(ddf_fun_t *fun)
788{
789 assert(fun->bound == false);
790
791 /*
792 * Drop the reference added by ddf_fun_create(). This will deallocate
793 * the function as soon as all other references are dropped (i.e.
794 * as soon control leaves all driver entry points called in context
795 * of this function.
796 */
797 fun_del_ref(fun);
798}
799
800static void *function_get_ops(ddf_fun_t *fun, dev_inferface_idx_t idx)
801{
802 assert(is_valid_iface_idx(idx));
803 if (fun->ops == NULL)
804 return NULL;
805
806 return fun->ops->interfaces[idx];
807}
808
809/** Bind a function node.
810 *
811 * Bind the specified function to the system. This effectively makes
812 * the function visible to the system (uploads it to the server).
813 *
814 * This function can fail for several reasons. Specifically,
815 * it will fail if the device already has a bound function of
816 * the same name.
817 *
818 * @param fun Function to bind
819 *
820 * @return EOK on success or an error code
821 *
822 */
823errno_t ddf_fun_bind(ddf_fun_t *fun)
824{
825 assert(fun->bound == false);
826 assert(fun->name != NULL);
827 assert(fun->dev != NULL);
828
829 add_to_functions_list(fun);
830 errno_t res = devman_add_function(fun->name, fun->ftype, &fun->match_ids,
831 fun->dev->handle, &fun->handle);
832 if (res != EOK) {
833 remove_from_functions_list(fun);
834 return res;
835 }
836
837 fun->bound = true;
838 return res;
839}
840
841/** Unbind a function node.
842 *
843 * Unbind the specified function from the system. This effectively makes
844 * the function invisible to the system.
845 *
846 * @param fun Function to unbind
847 *
848 * @return EOK on success or an error code
849 *
850 */
851errno_t ddf_fun_unbind(ddf_fun_t *fun)
852{
853 assert(fun->bound == true);
854
855 errno_t res = devman_remove_function(fun->handle);
856 if (res != EOK)
857 return res;
858
859 remove_from_functions_list(fun);
860
861 fun->bound = false;
862 return EOK;
863}
864
865/** Online function.
866 *
867 * @param fun Function to online
868 *
869 * @return EOK on success or an error code
870 *
871 */
872errno_t ddf_fun_online(ddf_fun_t *fun)
873{
874 assert(fun->bound == true);
875
876 errno_t res = devman_drv_fun_online(fun->handle);
877 if (res != EOK)
878 return res;
879
880 return EOK;
881}
882
883/** Offline function.
884 *
885 * @param fun Function to offline
886 *
887 * @return EOK on success or an error code
888 *
889 */
890errno_t ddf_fun_offline(ddf_fun_t *fun)
891{
892 assert(fun->bound == true);
893
894 errno_t res = devman_drv_fun_offline(fun->handle);
895 if (res != EOK)
896 return res;
897
898 return EOK;
899}
900
901/** Add single match ID to inner function.
902 *
903 * Construct and add a single match ID to the specified function.
904 * Cannot be called when the function node is bound.
905 *
906 * @param fun Function
907 * @param match_id_str Match string
908 * @param match_score Match score
909 *
910 * @return EOK on success.
911 * @return ENOMEM if out of memory.
912 *
913 */
914errno_t ddf_fun_add_match_id(ddf_fun_t *fun, const char *match_id_str,
915 int match_score)
916{
917 assert(fun->bound == false);
918 assert(fun->ftype == fun_inner);
919
920 match_id_t *match_id = create_match_id();
921 if (match_id == NULL)
922 return ENOMEM;
923
924 match_id->id = str_dup(match_id_str);
925 match_id->score = match_score;
926
927 add_match_id(&fun->match_ids, match_id);
928 return EOK;
929}
930
931/** Set function ops. */
932void ddf_fun_set_ops(ddf_fun_t *fun, const ddf_dev_ops_t *dev_ops)
933{
934 assert(fun->conn_handler == NULL);
935 fun->ops = dev_ops;
936}
937
938/** Set user-defined connection handler.
939 *
940 * This allows handling connections the non-devman way.
941 */
942void ddf_fun_set_conn_handler(ddf_fun_t *fun, async_port_handler_t conn)
943{
944 assert(fun->ops == NULL);
945 fun->conn_handler = conn;
946}
947
948/** Get default handler for client requests */
949static remote_handler_t *function_get_default_handler(ddf_fun_t *fun)
950{
951 if (fun->ops == NULL)
952 return NULL;
953 return fun->ops->default_handler;
954}
955
956/** Add exposed function to category.
957 *
958 * Must only be called when the function is bound.
959 *
960 */
961errno_t ddf_fun_add_to_category(ddf_fun_t *fun, const char *cat_name)
962{
963 assert(fun->bound == true);
964 assert(fun->ftype == fun_exposed);
965
966 return devman_add_device_to_category(fun->handle, cat_name);
967}
968
969errno_t ddf_driver_main(const driver_t *drv)
970{
971 /*
972 * Remember the driver structure - driver_ops will be called by generic
973 * handler for incoming connections.
974 */
975 driver = drv;
976
977 /*
978 * Register driver with device manager using generic handler for
979 * incoming connections.
980 */
981 port_id_t port;
982 errno_t rc = async_create_port(INTERFACE_DDF_DRIVER, driver_connection_driver,
983 NULL, &port);
984 if (rc != EOK) {
985 printf("Error: Failed to create driver port.\n");
986 return rc;
987 }
988
989 rc = async_create_port(INTERFACE_DDF_DEVMAN, driver_connection_devman,
990 NULL, &port);
991 if (rc != EOK) {
992 printf("Error: Failed to create devman port.\n");
993 return rc;
994 }
995
996 async_set_fallback_port_handler(driver_connection_client, NULL);
997
998 rc = devman_driver_register(driver->name);
999 if (rc != EOK) {
1000 printf("Error: Failed to register driver with device manager "
1001 "(%s).\n", (rc == EEXIST) ? "driver already started" :
1002 str_error(rc));
1003
1004 return rc;
1005 }
1006
1007 /* Return success from the task since server has started. */
1008 rc = task_retval(0);
1009 if (rc != EOK) {
1010 printf("Error: Failed returning task value.\n");
1011 return rc;
1012 }
1013
1014 async_manager();
1015
1016 /* Never reached. */
1017 return EOK;
1018}
1019
1020/**
1021 * @}
1022 */
Note: See TracBrowser for help on using the repository browser.