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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since af6b5157 was af6b5157, checked in by Jiri Svoboda <jiri@…>, 15 years ago

Split driver.h into ddf/driver.h and ddf/interrupt.h.

  • Property mode set to 100644
File size: 16.7 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 * @defgroup libdrv generic device driver support.
32 * @brief HelenOS generic device driver support.
33 * @{
34 */
35
36/** @file
37 */
38
39#include <assert.h>
40#include <ipc/services.h>
41#include <ipc/ns.h>
42#include <async.h>
43#include <stdio.h>
44#include <errno.h>
45#include <bool.h>
46#include <fibril_synch.h>
47#include <stdlib.h>
48#include <str.h>
49#include <ctype.h>
50#include <errno.h>
51#include <inttypes.h>
52#include <devman.h>
53
54#include <ipc/driver.h>
55
56#include "dev_iface.h"
57#include "ddf/driver.h"
58#include "ddf/interrupt.h"
59
60/** Driver structure */
61static driver_t *driver;
62
63/** Devices */
64LIST_INITIALIZE(functions);
65FIBRIL_MUTEX_INITIALIZE(functions_mutex);
66
67/** Interrupts */
68static interrupt_context_list_t interrupt_contexts;
69
70static irq_cmd_t default_cmds[] = {
71 {
72 .cmd = CMD_ACCEPT
73 }
74};
75
76static irq_code_t default_pseudocode = {
77 sizeof(default_cmds) / sizeof(irq_cmd_t),
78 default_cmds
79};
80
81static ddf_dev_t *create_device(void);
82static void delete_device(ddf_dev_t *);
83static remote_handler_t *function_get_default_handler(ddf_fun_t *);
84static void *function_get_ops(ddf_fun_t *, dev_inferface_idx_t);
85
86static void driver_irq_handler(ipc_callid_t iid, ipc_call_t *icall)
87{
88 int id = (int)IPC_GET_IMETHOD(*icall);
89 interrupt_context_t *ctx;
90
91 ctx = find_interrupt_context_by_id(&interrupt_contexts, id);
92 if (ctx != NULL && ctx->handler != NULL)
93 (*ctx->handler)(ctx->dev, iid, icall);
94}
95
96interrupt_context_t *create_interrupt_context(void)
97{
98 interrupt_context_t *ctx;
99
100 ctx = (interrupt_context_t *) malloc(sizeof(interrupt_context_t));
101 if (ctx != NULL)
102 memset(ctx, 0, sizeof(interrupt_context_t));
103
104 return ctx;
105}
106
107void delete_interrupt_context(interrupt_context_t *ctx)
108{
109 if (ctx != NULL)
110 free(ctx);
111}
112
113void init_interrupt_context_list(interrupt_context_list_t *list)
114{
115 memset(list, 0, sizeof(interrupt_context_list_t));
116 fibril_mutex_initialize(&list->mutex);
117 list_initialize(&list->contexts);
118}
119
120void
121add_interrupt_context(interrupt_context_list_t *list, interrupt_context_t *ctx)
122{
123 fibril_mutex_lock(&list->mutex);
124 ctx->id = list->curr_id++;
125 list_append(&ctx->link, &list->contexts);
126 fibril_mutex_unlock(&list->mutex);
127}
128
129void remove_interrupt_context(interrupt_context_list_t *list,
130 interrupt_context_t *ctx)
131{
132 fibril_mutex_lock(&list->mutex);
133 list_remove(&ctx->link);
134 fibril_mutex_unlock(&list->mutex);
135}
136
137interrupt_context_t *
138find_interrupt_context_by_id(interrupt_context_list_t *list, int id)
139{
140 fibril_mutex_lock(&list->mutex);
141
142 link_t *link = list->contexts.next;
143 interrupt_context_t *ctx;
144
145 while (link != &list->contexts) {
146 ctx = list_get_instance(link, interrupt_context_t, link);
147 if (ctx->id == id) {
148 fibril_mutex_unlock(&list->mutex);
149 return ctx;
150 }
151 link = link->next;
152 }
153
154 fibril_mutex_unlock(&list->mutex);
155 return NULL;
156}
157
158interrupt_context_t *
159find_interrupt_context(interrupt_context_list_t *list, ddf_dev_t *dev, int irq)
160{
161 fibril_mutex_lock(&list->mutex);
162
163 link_t *link = list->contexts.next;
164 interrupt_context_t *ctx;
165
166 while (link != &list->contexts) {
167 ctx = list_get_instance(link, interrupt_context_t, link);
168 if (ctx->irq == irq && ctx->dev == dev) {
169 fibril_mutex_unlock(&list->mutex);
170 return ctx;
171 }
172 link = link->next;
173 }
174
175 fibril_mutex_unlock(&list->mutex);
176 return NULL;
177}
178
179
180int
181register_interrupt_handler(ddf_dev_t *dev, int irq, interrupt_handler_t *handler,
182 irq_code_t *pseudocode)
183{
184 interrupt_context_t *ctx = create_interrupt_context();
185
186 ctx->dev = dev;
187 ctx->irq = irq;
188 ctx->handler = handler;
189
190 add_interrupt_context(&interrupt_contexts, ctx);
191
192 if (pseudocode == NULL)
193 pseudocode = &default_pseudocode;
194
195 int res = register_irq(irq, dev->handle, ctx->id, pseudocode);
196 if (res != EOK) {
197 remove_interrupt_context(&interrupt_contexts, ctx);
198 delete_interrupt_context(ctx);
199 }
200
201 return res;
202}
203
204int unregister_interrupt_handler(ddf_dev_t *dev, int irq)
205{
206 interrupt_context_t *ctx = find_interrupt_context(&interrupt_contexts,
207 dev, irq);
208 int res = unregister_irq(irq, dev->handle);
209
210 if (ctx != NULL) {
211 remove_interrupt_context(&interrupt_contexts, ctx);
212 delete_interrupt_context(ctx);
213 }
214
215 return res;
216}
217
218static void add_to_functions_list(ddf_fun_t *fun)
219{
220 fibril_mutex_lock(&functions_mutex);
221 list_append(&fun->link, &functions);
222 fibril_mutex_unlock(&functions_mutex);
223}
224
225static void remove_from_functions_list(ddf_fun_t *fun)
226{
227 fibril_mutex_lock(&functions_mutex);
228 list_remove(&fun->link);
229 fibril_mutex_unlock(&functions_mutex);
230}
231
232static ddf_fun_t *driver_get_function(link_t *functions, devman_handle_t handle)
233{
234 ddf_fun_t *fun = NULL;
235 printf("driver_get_function handle=%" PRIun "\n", handle);
236
237 fibril_mutex_lock(&functions_mutex);
238 link_t *link = functions->next;
239
240 while (link != functions) {
241 fun = list_get_instance(link, ddf_fun_t, link);
242 printf(" - fun handle %" PRIun "\n", fun->handle);
243 if (fun->handle == handle) {
244 fibril_mutex_unlock(&functions_mutex);
245 return fun;
246 }
247
248 link = link->next;
249 }
250
251 fibril_mutex_unlock(&functions_mutex);
252
253 return NULL;
254}
255
256static void driver_add_device(ipc_callid_t iid, ipc_call_t *icall)
257{
258 char *dev_name = NULL;
259 int res;
260
261 devman_handle_t dev_handle = IPC_GET_ARG1(*icall);
262 devman_handle_t parent_fun_handle = IPC_GET_ARG2(*icall);
263
264 ddf_dev_t *dev = create_device();
265 dev->handle = dev_handle;
266
267 async_data_write_accept((void **) &dev_name, true, 0, 0, 0, 0);
268 dev->name = dev_name;
269
270 /*
271 * Currently not used, parent fun handle is stored in context
272 * of the connection to the parent device driver.
273 */
274 (void) parent_fun_handle;
275
276 res = driver->driver_ops->add_device(dev);
277 if (res == EOK) {
278 printf("%s: new device with handle=%" PRIun " was added.\n",
279 driver->name, dev_handle);
280 } else {
281 printf("%s: failed to add a new device with handle = %" PRIun ".\n",
282 driver->name, dev_handle);
283 delete_device(dev);
284 }
285
286 async_answer_0(iid, res);
287}
288
289static void driver_connection_devman(ipc_callid_t iid, ipc_call_t *icall)
290{
291 /* Accept connection */
292 async_answer_0(iid, EOK);
293
294 bool cont = true;
295 while (cont) {
296 ipc_call_t call;
297 ipc_callid_t callid = async_get_call(&call);
298
299 switch (IPC_GET_IMETHOD(call)) {
300 case IPC_M_PHONE_HUNGUP:
301 cont = false;
302 continue;
303 case DRIVER_ADD_DEVICE:
304 driver_add_device(callid, &call);
305 break;
306 default:
307 async_answer_0(callid, ENOENT);
308 }
309 }
310}
311
312/**
313 * Generic client connection handler both for applications and drivers.
314 *
315 * @param drv True for driver client, false for other clients
316 * (applications, services etc.).
317 */
318static void driver_connection_gen(ipc_callid_t iid, ipc_call_t *icall, bool drv)
319{
320 /*
321 * Answer the first IPC_M_CONNECT_ME_TO call and remember the handle of
322 * the device to which the client connected.
323 */
324 devman_handle_t handle = IPC_GET_ARG2(*icall);
325 ddf_fun_t *fun = driver_get_function(&functions, handle);
326
327 if (fun == NULL) {
328 printf("%s: driver_connection_gen error - no function with handle"
329 " %" PRIun " was found.\n", driver->name, handle);
330 async_answer_0(iid, ENOENT);
331 return;
332 }
333
334
335 /*
336 * TODO - if the client is not a driver, check whether it is allowed to
337 * use the device.
338 */
339
340 int ret = EOK;
341 /* Open device function */
342 if (fun->ops != NULL && fun->ops->open != NULL)
343 ret = (*fun->ops->open)(fun);
344
345 async_answer_0(iid, ret);
346 if (ret != EOK)
347 return;
348
349 while (1) {
350 ipc_callid_t callid;
351 ipc_call_t call;
352 callid = async_get_call(&call);
353 sysarg_t method = IPC_GET_IMETHOD(call);
354 int iface_idx;
355
356 switch (method) {
357 case IPC_M_PHONE_HUNGUP:
358 /* Close device function */
359 if (fun->ops != NULL && fun->ops->close != NULL)
360 (*fun->ops->close)(fun);
361 async_answer_0(callid, EOK);
362 return;
363 default:
364 /* convert ipc interface id to interface index */
365
366 iface_idx = DEV_IFACE_IDX(method);
367
368 if (!is_valid_iface_idx(iface_idx)) {
369 remote_handler_t *default_handler =
370 function_get_default_handler(fun);
371 if (default_handler != NULL) {
372 (*default_handler)(fun, callid, &call);
373 break;
374 }
375
376 /*
377 * Function has no such interface and
378 * default handler is not provided.
379 */
380 printf("%s: driver_connection_gen error - "
381 "invalid interface id %d.",
382 driver->name, iface_idx);
383 async_answer_0(callid, ENOTSUP);
384 break;
385 }
386
387 /* calling one of the function's interfaces */
388
389 /* Get the interface ops structure. */
390 void *ops = function_get_ops(fun, iface_idx);
391 if (ops == NULL) {
392 printf("%s: driver_connection_gen error - ",
393 driver->name);
394 printf("Function with handle %" PRIun " has no interface "
395 "with id %d.\n", handle, iface_idx);
396 async_answer_0(callid, ENOTSUP);
397 break;
398 }
399
400 /*
401 * Get the corresponding interface for remote request
402 * handling ("remote interface").
403 */
404 remote_iface_t *rem_iface = get_remote_iface(iface_idx);
405 assert(rem_iface != NULL);
406
407 /* get the method of the remote interface */
408 sysarg_t iface_method_idx = IPC_GET_ARG1(call);
409 remote_iface_func_ptr_t iface_method_ptr =
410 get_remote_method(rem_iface, iface_method_idx);
411 if (iface_method_ptr == NULL) {
412 // the interface has not such method
413 printf("%s: driver_connection_gen error - "
414 "invalid interface method.", driver->name);
415 async_answer_0(callid, ENOTSUP);
416 break;
417 }
418
419 /*
420 * Call the remote interface's method, which will
421 * receive parameters from the remote client and it will
422 * pass it to the corresponding local interface method
423 * associated with the function by its driver.
424 */
425 (*iface_method_ptr)(fun, ops, callid, &call);
426 break;
427 }
428 }
429}
430
431static void driver_connection_driver(ipc_callid_t iid, ipc_call_t *icall)
432{
433 driver_connection_gen(iid, icall, true);
434}
435
436static void driver_connection_client(ipc_callid_t iid, ipc_call_t *icall)
437{
438 driver_connection_gen(iid, icall, false);
439}
440
441/** Function for handling connections to device driver. */
442static void driver_connection(ipc_callid_t iid, ipc_call_t *icall)
443{
444 /* Select interface */
445 switch ((sysarg_t) (IPC_GET_ARG1(*icall))) {
446 case DRIVER_DEVMAN:
447 /* Handle request from device manager */
448 driver_connection_devman(iid, icall);
449 break;
450 case DRIVER_DRIVER:
451 /* Handle request from drivers of child devices */
452 driver_connection_driver(iid, icall);
453 break;
454 case DRIVER_CLIENT:
455 /* Handle request from client applications */
456 driver_connection_client(iid, icall);
457 break;
458 default:
459 /* No such interface */
460 async_answer_0(iid, ENOENT);
461 }
462}
463
464/** Create new device structure.
465 *
466 * @return The device structure.
467 */
468static ddf_dev_t *create_device(void)
469{
470 ddf_dev_t *dev;
471
472 dev = malloc(sizeof(ddf_dev_t));
473 if (dev == NULL)
474 return NULL;
475
476 memset(dev, 0, sizeof(ddf_dev_t));
477 return dev;
478}
479
480/** Create new function structure.
481 *
482 * @return The device structure.
483 */
484static ddf_fun_t *create_function(void)
485{
486 ddf_fun_t *fun;
487
488 fun = calloc(1, sizeof(ddf_fun_t));
489 if (fun == NULL)
490 return NULL;
491
492 init_match_ids(&fun->match_ids);
493 link_initialize(&fun->link);
494
495 return fun;
496}
497
498/** Delete device structure.
499 *
500 * @param dev The device structure.
501 */
502static void delete_device(ddf_dev_t *dev)
503{
504 free(dev);
505}
506
507/** Delete device structure.
508 *
509 * @param dev The device structure.
510 */
511static void delete_function(ddf_fun_t *fun)
512{
513 clean_match_ids(&fun->match_ids);
514 if (fun->name != NULL)
515 free(fun->name);
516 free(fun);
517}
518
519/** Create a DDF function node.
520 *
521 * Create a DDF function (in memory). Both child devices and external clients
522 * communicate with a device via its functions.
523 *
524 * The created function node is fully formed, but only exists in the memory
525 * of the client task. In order to be visible to the system, the function
526 * must be bound using ddf_fun_bind().
527 *
528 * This function should only fail if there is not enough free memory.
529 * Specifically, this function succeeds even if @a dev already has
530 * a (bound) function with the same name.
531 *
532 * Type: A function of type fun_inner indicates that DDF should attempt
533 * to attach child devices to the function. fun_exposed means that
534 * the function should be exported to external clients (applications).
535 *
536 * @param dev Device to which we are adding function
537 * @param ftype Type of function (fun_inner or fun_exposed)
538 * @param name Name of function
539 *
540 * @return New function or @c NULL if memory is not available
541 */
542ddf_fun_t *ddf_fun_create(ddf_dev_t *dev, fun_type_t ftype, const char *name)
543{
544 ddf_fun_t *fun;
545
546 fun = create_function();
547 if (fun == NULL)
548 return NULL;
549
550 fun->bound = false;
551 fun->dev = dev;
552 fun->ftype = ftype;
553
554 fun->name = str_dup(name);
555 if (fun->name == NULL) {
556 delete_function(fun);
557 return NULL;
558 }
559
560 return fun;
561}
562
563/** Destroy DDF function node.
564 *
565 * Destroy a function previously created with ddf_fun_create(). The function
566 * must not be bound.
567 *
568 * @param fun Function to destroy
569 */
570void ddf_fun_destroy(ddf_fun_t *fun)
571{
572 assert(fun->bound == false);
573 delete_function(fun);
574}
575
576static void *function_get_ops(ddf_fun_t *fun, dev_inferface_idx_t idx)
577{
578 assert(is_valid_iface_idx(idx));
579 if (fun->ops == NULL)
580 return NULL;
581 return fun->ops->interfaces[idx];
582}
583
584/** Bind a function node.
585 *
586 * Bind the specified function to the system. This effectively makes
587 * the function visible to the system (uploads it to the server).
588 *
589 * This function can fail for several reasons. Specifically,
590 * it will fail if the device already has a bound function of
591 * the same name.
592 *
593 * @param fun Function to bind
594 * @return EOK on success or negative error code
595 */
596int ddf_fun_bind(ddf_fun_t *fun)
597{
598 assert(fun->name != NULL);
599
600 int res;
601
602 add_to_functions_list(fun);
603 res = devman_add_function(fun->name, fun->ftype, &fun->match_ids,
604 fun->dev->handle, &fun->handle);
605 if (res != EOK) {
606 remove_from_functions_list(fun);
607 return res;
608 }
609
610 fun->bound = true;
611 return res;
612}
613
614/** Add single match ID to inner function.
615 *
616 * Construct and add a single match ID to the specified function.
617 * Cannot be called when the function node is bound.
618 *
619 * @param fun Function
620 * @param match_id_str Match string
621 * @param match_score Match score
622 * @return EOK on success, ENOMEM if out of memory.
623 */
624int ddf_fun_add_match_id(ddf_fun_t *fun, const char *match_id_str,
625 int match_score)
626{
627 match_id_t *match_id;
628
629 assert(fun->bound == false);
630 assert(fun->ftype == fun_inner);
631
632 match_id = create_match_id();
633 if (match_id == NULL)
634 return ENOMEM;
635
636 match_id->id = match_id_str;
637 match_id->score = 90;
638
639 add_match_id(&fun->match_ids, match_id);
640 return EOK;
641}
642
643/** Get default handler for client requests */
644static remote_handler_t *function_get_default_handler(ddf_fun_t *fun)
645{
646 if (fun->ops == NULL)
647 return NULL;
648 return fun->ops->default_handler;
649}
650
651/** Add exposed function to class.
652 *
653 * Must only be called when the function is bound.
654 */
655int ddf_fun_add_to_class(ddf_fun_t *fun, const char *class_name)
656{
657 assert(fun->bound == true);
658 assert(fun->ftype == fun_exposed);
659
660 return devman_add_device_to_class(fun->handle, class_name);
661}
662
663int ddf_driver_main(driver_t *drv)
664{
665 /*
666 * Remember the driver structure - driver_ops will be called by generic
667 * handler for incoming connections.
668 */
669 driver = drv;
670
671 /* Initialize the list of interrupt contexts. */
672 init_interrupt_context_list(&interrupt_contexts);
673
674 /* Set generic interrupt handler. */
675 async_set_interrupt_received(driver_irq_handler);
676
677 /*
678 * Register driver by device manager with generic handler for incoming
679 * connections.
680 */
681 devman_driver_register(driver->name, driver_connection);
682
683 async_manager();
684
685 /* Never reached. */
686 return 0;
687}
688
689/**
690 * @}
691 */
Note: See TracBrowser for help on using the repository browser.