source: mainline/uspace/srv/devman/devman.h@ 3e6a98c5

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

Standards-compliant boolean type.

  • Property mode set to 100644
File size: 9.1 KB
RevLine 
[e2b9a993]1/*
2 * Copyright (c) 2010 Lenka Trochtova
[d0dd7b5]3 * Copyright (c) 2011 Jiri Svoboda
[e2b9a993]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/** @addtogroup devman
31 * @{
32 */
[08d9c4e6]33
[e2b9a993]34#ifndef DEVMAN_H_
35#define DEVMAN_H_
36
37#include <assert.h>
[3e6a98c5]38#include <stdbool.h>
[e2b9a993]39#include <dirent.h>
[c47e1a8]40#include <str.h>
[e2b9a993]41#include <adt/list.h>
[957cfa58]42#include <adt/hash_table.h>
[bda60d9]43#include <ipc/devman.h>
[15f3c3f]44#include <ipc/loc.h>
[e85920d]45#include <fibril_synch.h>
[084ff99]46#include <atomic.h>
[79ae36dd]47#include <async.h>
[e2b9a993]48
[08d9c4e6]49#include "util.h"
[e2b9a993]50
51#define NAME "devman"
52
53#define MATCH_EXT ".ma"
54
[15f3c3f]55#define LOC_DEVICE_NAMESPACE "devices"
56#define LOC_SEPARATOR '\\'
[ce89036b]57
[ba38f72c]58struct dev_node;
59typedef struct dev_node dev_node_t;
60
61struct fun_node;
62typedef struct fun_node fun_node_t;
[e2b9a993]63
[422722e]64typedef struct {
65 fibril_mutex_t mutex;
66 struct driver *driver;
67} client_t;
68
[e85920d]69typedef enum {
[38b3baf]70 /** Driver has not been started. */
[e85920d]71 DRIVER_NOT_STARTED = 0,
[38b3baf]72
73 /**
74 * Driver has been started, but has not registered as running and ready
75 * to receive requests.
76 */
[e85920d]77 DRIVER_STARTING,
[38b3baf]78
79 /** Driver is running and prepared to serve incomming requests. */
[e85920d]80 DRIVER_RUNNING
81} driver_state_t;
82
[38b3baf]83/** Representation of device driver. */
[e2b9a993]84typedef struct driver {
[38b3baf]85 /** Pointers to previous and next drivers in a linked list. */
[e2b9a993]86 link_t drivers;
[38b3baf]87
88 /**
89 * Specifies whether the driver has been started and wheter is running
90 * and prepared to receive requests.
91 */
[e85920d]92 int state;
[38b3baf]93
[79ae36dd]94 /** Session asociated with this driver. */
95 async_sess_t *sess;
[38b3baf]96 /** Name of the device driver. */
[e2b9a993]97 char *name;
[38b3baf]98 /** Path to the driver's binary. */
[e2b9a993]99 const char *binary_path;
[38b3baf]100 /** List of device ids for device-to-driver matching. */
[e2b9a993]101 match_id_list_t match_ids;
[b72efe8]102 /** List of devices controlled by this driver. */
103 list_t devices;
[38b3baf]104
105 /**
[79ae36dd]106 * Fibril mutex for this driver - driver state, list of devices, session.
[38b3baf]107 */
[e85920d]108 fibril_mutex_t driver_mutex;
[e2b9a993]109} driver_t;
110
[e85920d]111/** The list of drivers. */
112typedef struct driver_list {
113 /** List of drivers */
[b72efe8]114 list_t drivers;
[e85920d]115 /** Fibril mutex for list of drivers. */
[38b3baf]116 fibril_mutex_t drivers_mutex;
[e85920d]117} driver_list_t;
118
[c1a0488]119/** Device state */
[df747b9c]120typedef enum {
121 DEVICE_NOT_INITIALIZED = 0,
122 DEVICE_USABLE,
123 DEVICE_NOT_PRESENT,
[c1a0488]124 DEVICE_INVALID,
125 /** Device node has been removed from the tree */
126 DEVICE_REMOVED
[df747b9c]127} device_state_t;
128
[ba38f72c]129/** Device node in the device tree. */
130struct dev_node {
[58cbb0c8]131 /** Reference count */
132 atomic_t refcnt;
133
[38b3baf]134 /** The global unique identifier of the device. */
[0b5a4131]135 devman_handle_t handle;
[ba38f72c]136
137 /** (Parent) function the device is attached to. */
138 fun_node_t *pfun;
139
140 /** List of device functions. */
[b72efe8]141 list_t functions;
[ba38f72c]142 /** Driver of this device. */
143 driver_t *drv;
144 /** The state of the device. */
145 device_state_t state;
146 /** Link to list of devices owned by driver (driver_t.devices) */
147 link_t driver_devices;
[38b3baf]148
149 /**
[ba38f72c]150 * Used by the hash table of devices indexed by devman device handles.
[38b3baf]151 */
[062d900]152 ht_link_t devman_dev;
[38b3baf]153
154 /**
[ba38f72c]155 * Whether this device was already passed to the driver.
[38b3baf]156 */
[ba38f72c]157 bool passed_to_driver;
158};
159
[c1a0488]160/** Function state */
161typedef enum {
162 FUN_INIT = 0,
163 FUN_OFF_LINE,
164 FUN_ON_LINE,
165 /** Function node has been removed from the tree */
166 FUN_REMOVED
167} fun_state_t;
168
[ba38f72c]169/** Function node in the device tree. */
170struct fun_node {
[58cbb0c8]171 /** Reference count */
172 atomic_t refcnt;
[c1a0488]173 /** State */
174 fun_state_t state;
[4820360]175 /** Locked while performing reconfiguration operations */
176 fibril_mutex_t busy_lock;
[58cbb0c8]177
[ba38f72c]178 /** The global unique identifier of the function */
179 devman_handle_t handle;
180 /** Name of the function, assigned by the device driver */
181 char *name;
[d0dd7b5]182 /** Function type */
183 fun_type_t ftype;
[ba38f72c]184
185 /** Full path and name of the device in device hierarchy */
186 char *pathname;
187
188 /** Device which this function belongs to */
189 dev_node_t *dev;
[38b3baf]190
[83a2f43]191 /** Link to list of functions in the device (ddf_dev_t.functions) */
[ba38f72c]192 link_t dev_functions;
193
194 /** Child device node (if any attached). */
195 dev_node_t *child;
[38b3baf]196 /** List of device ids for device-to-driver matching. */
[08d9c4e6]197 match_id_list_t match_ids;
[38b3baf]198
[15f3c3f]199 /** Service ID if the device function is registered with loc. */
200 service_id_t service_id;
[38b3baf]201
202 /**
[ba38f72c]203 * Used by the hash table of functions indexed by devman device handles.
[38b3baf]204 */
[062d900]205 ht_link_t devman_fun;
[38b3baf]206
207 /**
[15f3c3f]208 * Used by the hash table of functions indexed by service IDs.
[5bee897]209 */
[062d900]210 ht_link_t loc_fun;
[e2b9a993]211};
212
[38b3baf]213/** Represents device tree. */
[e2b9a993]214typedef struct dev_tree {
215 /** Root device node. */
[ba38f72c]216 fun_node_t *root_node;
[38b3baf]217
218 /**
219 * The next available handle - handles are assigned in a sequential
220 * manner.
221 */
[0b5a4131]222 devman_handle_t current_handle;
[38b3baf]223
224 /** Synchronize access to the device tree. */
[957cfa58]225 fibril_rwlock_t rwlock;
[38b3baf]226
227 /** Hash table of all devices indexed by devman handles. */
[957cfa58]228 hash_table_t devman_devices;
[38b3baf]229
[ba38f72c]230 /** Hash table of all devices indexed by devman handles. */
231 hash_table_t devman_functions;
232
[38b3baf]233 /**
[15f3c3f]234 * Hash table of services registered with location service, indexed by
235 * service IDs.
[38b3baf]236 */
[15f3c3f]237 hash_table_t loc_functions;
[e2b9a993]238} dev_tree_t;
239
[38b3baf]240/* Match ids and scores */
[e2b9a993]241
[ba38f72c]242extern int get_match_score(driver_t *, dev_node_t *);
[e2b9a993]243
[38b3baf]244extern bool parse_match_ids(char *, match_id_list_t *);
245extern bool read_match_ids(const char *, match_id_list_t *);
246extern char *read_match_id(char **);
247extern char *read_id(const char **);
[729fa2d6]248
[38b3baf]249/* Drivers */
[0c3666d]250
[791f58c]251extern void init_driver_list(driver_list_t *);
[38b3baf]252extern driver_t *create_driver(void);
253extern bool get_driver_info(const char *, const char *, driver_t *);
254extern int lookup_available_drivers(driver_list_t *, const char *);
[e2b9a993]255
[ba38f72c]256extern driver_t *find_best_match_driver(driver_list_t *, dev_node_t *);
257extern bool assign_driver(dev_node_t *, driver_list_t *, dev_tree_t *);
[e2b9a993]258
[38b3baf]259extern void add_driver(driver_list_t *, driver_t *);
[58cbb0c8]260extern void attach_driver(dev_tree_t *, dev_node_t *, driver_t *);
261extern void detach_driver(dev_tree_t *, dev_node_t *);
[45059d6b]262extern void add_device(driver_t *, dev_node_t *, dev_tree_t *);
[38b3baf]263extern bool start_driver(driver_t *);
[58cbb0c8]264extern int driver_dev_remove(dev_tree_t *, dev_node_t *);
[80a96d2]265extern int driver_dev_gone(dev_tree_t *, dev_node_t *);
[58cbb0c8]266extern int driver_fun_online(dev_tree_t *, fun_node_t *);
267extern int driver_fun_offline(dev_tree_t *, fun_node_t *);
[e2b9a993]268
[38b3baf]269extern driver_t *find_driver(driver_list_t *, const char *);
[791f58c]270extern void initialize_running_driver(driver_t *, dev_tree_t *);
[e2b9a993]271
[791f58c]272extern void init_driver(driver_t *);
273extern void clean_driver(driver_t *);
274extern void delete_driver(driver_t *);
[38b3baf]275
276/* Device nodes */
277
[ba38f72c]278extern dev_node_t *create_dev_node(void);
279extern void delete_dev_node(dev_node_t *node);
[58cbb0c8]280extern void dev_add_ref(dev_node_t *);
281extern void dev_del_ref(dev_node_t *);
[4820360]282
[ba38f72c]283extern dev_node_t *find_dev_node_no_lock(dev_tree_t *tree,
284 devman_handle_t handle);
285extern dev_node_t *find_dev_node(dev_tree_t *tree, devman_handle_t handle);
286extern dev_node_t *find_dev_function(dev_node_t *, const char *);
[7beb220]287extern int dev_get_functions(dev_tree_t *tree, dev_node_t *, devman_handle_t *,
288 size_t, size_t *);
[ba38f72c]289
290extern fun_node_t *create_fun_node(void);
291extern void delete_fun_node(fun_node_t *);
[58cbb0c8]292extern void fun_add_ref(fun_node_t *);
293extern void fun_del_ref(fun_node_t *);
[4820360]294extern void fun_busy_lock(fun_node_t *);
295extern void fun_busy_unlock(fun_node_t *);
[ba38f72c]296extern fun_node_t *find_fun_node_no_lock(dev_tree_t *tree,
[0b5a4131]297 devman_handle_t handle);
[ba38f72c]298extern fun_node_t *find_fun_node(dev_tree_t *tree, devman_handle_t handle);
299extern fun_node_t *find_fun_node_by_path(dev_tree_t *, char *);
[58cbb0c8]300extern fun_node_t *find_fun_node_in_device(dev_tree_t *tree, dev_node_t *,
301 const char *);
[38b3baf]302
303/* Device tree */
[5cd136ab]304
[38b3baf]305extern bool init_device_tree(dev_tree_t *, driver_list_t *);
[ba38f72c]306extern bool create_root_nodes(dev_tree_t *);
307extern bool insert_dev_node(dev_tree_t *, dev_node_t *, fun_node_t *);
[1a5b252]308extern void remove_dev_node(dev_tree_t *, dev_node_t *);
[ba38f72c]309extern bool insert_fun_node(dev_tree_t *, fun_node_t *, char *, dev_node_t *);
[d0dd7b5]310extern void remove_fun_node(dev_tree_t *, fun_node_t *);
[e2b9a993]311
[15f3c3f]312/* Loc services */
[ce89036b]313
[15f3c3f]314extern void loc_register_tree_function(fun_node_t *, dev_tree_t *);
[8b1e15ac]315
[15f3c3f]316extern fun_node_t *find_loc_tree_function(dev_tree_t *, service_id_t);
[a32defa]317
[15f3c3f]318extern void tree_add_loc_function(dev_tree_t *, fun_node_t *);
[a32defa]319
[e2b9a993]320#endif
[c16cf62]321
322/** @}
[38b3baf]323 */
Note: See TracBrowser for help on using the repository browser.