source: mainline/uspace/srv/devman/devman.h@ 924c75e1

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 924c75e1 was 924c75e1, checked in by Lenka Trochtova <trochtova.lenka@…>, 15 years ago

backup (unstable)

  • Property mode set to 100644
File size: 6.8 KB
Line 
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 devman
30 * @{
31 */
32
33#ifndef DEVMAN_H_
34#define DEVMAN_H_
35
36#include <assert.h>
37#include <bool.h>
38#include <dirent.h>
39#include <string.h>
40#include <adt/list.h>
41#include <ipc/ipc.h>
42#include <fibril_synch.h>
43
44#include "util.h"
45
46#define NAME "devman"
47
48#define MATCH_EXT ".ma"
49
50struct node;
51
52typedef struct node node_t;
53
54/** Ids of device models used for device-to-driver matching.
55 */
56typedef struct match_id {
57 /** Pointers to next and previous ids.
58 */
59 link_t link;
60 /** Id of device model.
61 */
62 const char *id;
63 /** Relevancy of device-to-driver match.
64 * The higher is the product of scores specified for the device by the bus driver and by the leaf driver,
65 * the more suitable is the leaf driver for handling the device.
66 */
67 unsigned int score;
68} match_id_t;
69
70/** List of ids for matching devices to drivers sorted
71 * according to match scores in descending order.
72 */
73typedef struct match_id_list {
74 link_t ids;
75} match_id_list_t;
76
77typedef enum {
78 /** driver has not been started */
79 DRIVER_NOT_STARTED = 0,
80 /** driver has been started, but has not registered as running and ready to receive requests */
81 DRIVER_STARTING,
82 /** driver is running and prepared to serve incomming requests */
83 DRIVER_RUNNING
84} driver_state_t;
85
86/** Representation of device driver.
87 */
88typedef struct driver {
89 /** Pointers to previous and next drivers in a linked list */
90 link_t drivers;
91 /** Specifies whether the driver has been started and wheter is running and prepared to receive requests.*/
92 int state;
93 /** Phone asociated with this driver */
94 ipcarg_t phone;
95 /** Name of the device driver */
96 char *name;
97 /** Path to the driver's binary */
98 const char *binary_path;
99 /** List of device ids for device-to-driver matching.*/
100 match_id_list_t match_ids;
101 /** Pointer to the linked list of devices controlled by this driver */
102 link_t devices;
103 /** Fibril mutex for this driver - driver state, list of devices, phone.*/
104 fibril_mutex_t driver_mutex;
105} driver_t;
106
107/** The list of drivers. */
108typedef struct driver_list {
109 /** List of drivers */
110 link_t drivers;
111 /** Fibril mutex for list of drivers. */
112 fibril_mutex_t drivers_mutex;
113} driver_list_t;
114
115/** Representation of a node in the device tree.*/
116struct node {
117 /** The node of the parent device. */
118 node_t *parent;
119 /** Pointers to previous and next child devices in the linked list of parent device's node.*/
120 link_t sibling;
121 /** List of child device nodes. */
122 link_t children;
123 /** Fibril mutex for the list of child device nodes of this node. */
124 fibril_mutex_t children_mutex;
125 /** List of device ids for device-to-driver matching.*/
126 match_id_list_t match_ids;
127 /** Driver of this device.*/
128 driver_t *drv;
129 /** Pointer to the previous and next device in the list of devices
130 owned by one driver */
131 link_t driver_devices;
132};
133
134/** Represents device tree.
135 */
136typedef struct dev_tree {
137 /** Root device node. */
138 node_t *root_node;
139} dev_tree_t;
140
141
142
143// Match ids and scores
144
145int get_match_score(driver_t *drv, node_t *dev);
146
147bool parse_match_ids(const char *buf, match_id_list_t *ids);
148bool read_match_ids(const char *conf_path, match_id_list_t *ids);
149char * read_id(const char **buf) ;
150void add_match_id(match_id_list_t *ids, match_id_t *id);
151
152void clean_match_ids(match_id_list_t *ids);
153
154
155static inline match_id_t * create_match_id()
156{
157 match_id_t *id = malloc(sizeof(match_id_t));
158 memset(id, 0, sizeof(match_id_t));
159 return id;
160}
161
162static inline void delete_match_id(match_id_t *id)
163{
164 if (id) {
165 free_not_null(id->id);
166 free(id);
167 }
168}
169
170// Driver list
171
172static inline void init_driver_list(driver_list_t *drv_list)
173{
174 assert(NULL != drv_list);
175
176 list_initialize(&drv_list->drivers);
177 fibril_mutex_initialize(&drv_list->drivers_mutex);
178}
179
180// Drivers
181
182driver_t * create_driver();
183bool get_driver_info(const char *base_path, const char *name, driver_t *drv);
184int lookup_available_drivers(driver_list_t *drivers_list, const char *dir_path);
185
186driver_t * find_best_match_driver(driver_list_t *drivers_list, node_t *node);
187bool assign_driver(node_t *node, driver_list_t *drivers_list);
188
189void add_driver(driver_list_t *drivers_list, driver_t *drv);
190void attach_driver(node_t *node, driver_t *drv);
191bool add_device(driver_t *drv, node_t *node);
192bool start_driver(driver_t *drv);
193
194
195static inline void init_driver(driver_t *drv)
196{
197 printf(NAME ": init_driver\n");
198 assert(drv != NULL);
199
200 memset(drv, 0, sizeof(driver_t));
201 list_initialize(&drv->match_ids.ids);
202 list_initialize(&drv->devices);
203 fibril_mutex_initialize(&drv->driver_mutex);
204}
205
206static inline void clean_driver(driver_t *drv)
207{
208 printf(NAME ": clean_driver\n");
209 assert(drv != NULL);
210
211 free_not_null(drv->name);
212 free_not_null(drv->binary_path);
213
214 clean_match_ids(&drv->match_ids);
215
216 init_driver(drv);
217}
218
219static inline void delete_driver(driver_t *drv)
220{
221 printf(NAME ": delete_driver\n");
222 assert(NULL != drv);
223
224 clean_driver(drv);
225 free(drv);
226}
227
228// Device nodes
229node_t * create_root_node();
230
231static inline node_t * create_dev_node()
232{
233 node_t *res = malloc(sizeof(node_t));
234 if (res != NULL) {
235 memset(res, 0, sizeof(node_t));
236 }
237 return res;
238}
239
240static inline void init_dev_node(node_t *node, node_t *parent)
241{
242 assert(NULL != node);
243
244 node->parent = parent;
245 if (NULL != parent) {
246 list_append(&node->sibling, &parent->children);
247 }
248
249 list_initialize(&node->children);
250
251 list_initialize(&node->match_ids.ids);
252}
253
254
255// Device tree
256
257bool init_device_tree(dev_tree_t *tree, driver_list_t *drivers_list);
258
259
260#endif
Note: See TracBrowser for help on using the repository browser.