source: mainline/uspace/srv/devman/devman.h@ c0e4fc50

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