1 | /*
|
---|
2 | * Copyright (c) 2010 Lenka Trochtova
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @addtogroup libdrv
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /** @file
|
---|
33 | */
|
---|
34 | #ifndef LIBDRV_DRIVER_H_
|
---|
35 | #define LIBDRV_DRIVER_H_
|
---|
36 |
|
---|
37 |
|
---|
38 | #include <adt/list.h>
|
---|
39 | #include <ipc/devman.h>
|
---|
40 |
|
---|
41 | typedef struct device {
|
---|
42 | device_handle_t handle;
|
---|
43 | ipcarg_t parent_phone;
|
---|
44 | const char *name;
|
---|
45 | match_id_list_t match_ids;
|
---|
46 |
|
---|
47 | // TODO add more items - parent bus type etc.
|
---|
48 |
|
---|
49 | link_t link;
|
---|
50 | } device_t;
|
---|
51 |
|
---|
52 | typedef struct driver_ops {
|
---|
53 | bool (*add_device)(device_t *dev);
|
---|
54 | // TODO add other generic driver operations
|
---|
55 | } driver_ops_t;
|
---|
56 |
|
---|
57 | typedef struct driver {
|
---|
58 | const char *name;
|
---|
59 | driver_ops_t *driver_ops;
|
---|
60 | } driver_t;
|
---|
61 |
|
---|
62 | int driver_main(driver_t *drv);
|
---|
63 |
|
---|
64 | static inline device_t * create_device()
|
---|
65 | {
|
---|
66 | device_t *dev = malloc(sizeof(device_t));
|
---|
67 | if (NULL != dev) {
|
---|
68 | memset(dev, 0, sizeof(device_t));
|
---|
69 | }
|
---|
70 | list_initialize(&dev->match_ids.ids);
|
---|
71 | return dev;
|
---|
72 | }
|
---|
73 |
|
---|
74 | static inline delete_device(device_t *dev) {
|
---|
75 | clean_match_ids(&dev->match_ids);
|
---|
76 | if (NULL != dev->name) {
|
---|
77 | free(dev->name);
|
---|
78 | }
|
---|
79 | free(dev);
|
---|
80 | }
|
---|
81 |
|
---|
82 | bool child_device_register(device_t *child, device_t *parent);
|
---|
83 |
|
---|
84 |
|
---|
85 | #endif
|
---|
86 |
|
---|
87 | /**
|
---|
88 | * @}
|
---|
89 | */ |
---|