source: mainline/uspace/srv/devman/devman.h@ 4224ef7

Last change on this file since 4224ef7 was 5559712, checked in by Matthieu Riolo <matthieu.riolo@…>, 6 years ago

sysman: Naive autostart instrumentation of locsrv

  • Add IPC_FLAG_AUTOSTART flag.
  • libsysman: sysman's broker and control API.
  • Simple implementation of service unit, exposee verification is missing.
  • Simple mapping of exposee to unit name in locsrv.
  • Temporary debug prints in locsrv.

Conflicts:

boot/Makefile.common
boot/arch/amd64/Makefile.inc
uspace/lib/c/include/ipc/services.h
uspace/srv/locsrv/locsrv.c

  • Property mode set to 100644
File size: 5.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/** @addtogroup devman
31 * @{
32 */
33
34#ifndef DEVMAN_H_
35#define DEVMAN_H_
36
37#include <stdbool.h>
38#include <adt/list.h>
39#include <adt/hash_table.h>
40#include <ipc/devman.h>
41#include <ipc/loc.h>
42#include <fibril_synch.h>
43#include <refcount.h>
44#include <async.h>
45
46#include "util.h"
47
48#define NAME "devman"
49
50#define LOC_SEPARATOR '\\'
51
52struct dev_node;
53typedef struct dev_node dev_node_t;
54
55struct fun_node;
56typedef struct fun_node fun_node_t;
57
58typedef struct {
59 fibril_mutex_t mutex;
60 struct driver *driver;
61} client_t;
62
63/** Representation of device driver. */
64typedef struct driver {
65 /** Pointers to previous and next drivers in a linked list. */
66 link_t drivers;
67 /** Handle */
68 devman_handle_t handle;
69
70 /**
71 * Specifies whether the driver has been started and wheter is running
72 * and prepared to receive requests.
73 */
74 driver_state_t state;
75
76 /** Session asociated with this driver. */
77 async_sess_t *sess;
78 /** Name of the device driver. */
79 char *name;
80 /** Path to the driver's binary. */
81 char *binary_path;
82 /** List of device ids for device-to-driver matching. */
83 match_id_list_t match_ids;
84 /** List of devices controlled by this driver. */
85 list_t devices;
86
87 /**
88 * Fibril mutex for this driver - driver state, list of devices, session.
89 */
90 fibril_mutex_t driver_mutex;
91} driver_t;
92
93/** The list of drivers. */
94typedef struct driver_list {
95 /** List of drivers */
96 list_t drivers;
97 /** Fibril mutex for list of drivers. */
98 fibril_mutex_t drivers_mutex;
99 /** Next free handle */
100 devman_handle_t next_handle;
101} driver_list_t;
102
103/** Device state */
104typedef enum {
105 DEVICE_NOT_INITIALIZED = 0,
106 DEVICE_USABLE,
107 DEVICE_NOT_PRESENT,
108 DEVICE_INVALID,
109 /** Device node has been removed from the tree */
110 DEVICE_REMOVED
111} device_state_t;
112
113/** Device node in the device tree. */
114struct dev_node {
115 /** Reference count */
116 atomic_refcount_t refcnt;
117
118 /** The global unique identifier of the device. */
119 devman_handle_t handle;
120
121 /** (Parent) function the device is attached to. */
122 fun_node_t *pfun;
123
124 /** List of device functions. */
125 list_t functions;
126 /** Driver of this device. */
127 driver_t *drv;
128 /** The state of the device. */
129 device_state_t state;
130 /** Link to list of devices owned by driver (driver_t.devices) */
131 link_t driver_devices;
132
133 /**
134 * Used by the hash table of devices indexed by devman device handles.
135 */
136 ht_link_t devman_dev;
137
138 /**
139 * Whether this device was already passed to the driver.
140 */
141 bool passed_to_driver;
142};
143
144/** Function state */
145typedef enum {
146 FUN_INIT = 0,
147 FUN_OFF_LINE,
148 FUN_ON_LINE,
149 /** Function node has been removed from the tree */
150 FUN_REMOVED
151} fun_state_t;
152
153/** Function node in the device tree. */
154struct fun_node {
155 /** Reference count */
156 atomic_refcount_t refcnt;
157 /** State */
158 fun_state_t state;
159 /** Locked while performing reconfiguration operations */
160 fibril_mutex_t busy_lock;
161
162 /** The global unique identifier of the function */
163 devman_handle_t handle;
164 /** Name of the function, assigned by the device driver */
165 char *name;
166 /** Function type */
167 fun_type_t ftype;
168
169 /** Full path and name of the device in device hierarchy */
170 char *pathname;
171
172 /** Device which this function belongs to */
173 dev_node_t *dev;
174
175 /** Link to list of functions in the device (ddf_dev_t.functions) */
176 link_t dev_functions;
177
178 /** Child device node (if any attached). */
179 dev_node_t *child;
180 /** List of device ids for device-to-driver matching. */
181 match_id_list_t match_ids;
182
183 /** Service ID if the device function is registered with loc. */
184 service_id_t service_id;
185
186 /**
187 * Used by the hash table of functions indexed by devman device handles.
188 */
189 ht_link_t devman_fun;
190
191 /**
192 * Used by the hash table of functions indexed by service IDs.
193 */
194 ht_link_t loc_fun;
195};
196
197/** Represents device tree. */
198typedef struct dev_tree {
199 /** Root device node. */
200 fun_node_t *root_node;
201
202 /**
203 * The next available handle - handles are assigned in a sequential
204 * manner.
205 */
206 devman_handle_t current_handle;
207
208 /** Synchronize access to the device tree. */
209 fibril_rwlock_t rwlock;
210
211 /** Hash table of all devices indexed by devman handles. */
212 hash_table_t devman_devices;
213
214 /** Hash table of all devices indexed by devman handles. */
215 hash_table_t devman_functions;
216
217 /**
218 * Hash table of services registered with location service, indexed by
219 * service IDs.
220 */
221 hash_table_t loc_functions;
222} dev_tree_t;
223
224#endif
225
226/** @}
227 */
Note: See TracBrowser for help on using the repository browser.