source: mainline/uspace/lib/drv/include/driver.h@ 7a252ec8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7a252ec8 was 7a252ec8, checked in by Jakub Jermar <jakub@…>, 15 years ago

Cstyle fixes in libdrv.

  • Property mode set to 100644
File size: 7.9 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 libdrv
30 * @{
31 */
32/** @file
33 */
34
35#ifndef LIBDRV_DRIVER_H_
36#define LIBDRV_DRIVER_H_
37
38#include <adt/list.h>
39#include <ipc/ipc.h>
40#include <devman.h>
41#include <ipc/devman.h>
42#include <ipc/dev_iface.h>
43#include <device/hw_res.h>
44#include <device/char.h>
45#include <assert.h>
46#include <ddi.h>
47#include <libarch/ddi.h>
48#include <fibril_synch.h>
49#include <malloc.h>
50
51struct device;
52typedef struct device device_t;
53
54/* device interface */
55
56/*
57 * First two parameters: device and interface structure registered by the
58 * devices driver.
59 */
60typedef void remote_iface_func_t(device_t *, void *, ipc_callid_t,
61 ipc_call_t *);
62typedef remote_iface_func_t *remote_iface_func_ptr_t;
63typedef void remote_handler_t(device_t *, ipc_callid_t, ipc_call_t *);
64
65typedef struct {
66 size_t method_count;
67 remote_iface_func_ptr_t *methods;
68} remote_iface_t;
69
70typedef struct {
71 remote_iface_t *ifaces[DEV_IFACE_COUNT];
72} iface_dipatch_table_t;
73
74
75static inline bool is_valid_iface_idx(int idx)
76{
77 return 0 <= idx && idx < DEV_IFACE_MAX;
78}
79
80remote_iface_t *get_remote_iface(int);
81remote_iface_func_ptr_t get_remote_method(remote_iface_t *, ipcarg_t);
82
83
84/* device class */
85
86/** Devices operations. */
87typedef struct device_ops {
88 /**
89 * Optional callback function called when a client is connecting to the
90 * device.
91 */
92 int (*open)(device_t *);
93
94 /**
95 * Optional callback function called when a client is disconnecting from
96 * the device.
97 */
98 void (*close)(device_t *);
99
100 /** The table of standard interfaces implemented by the device. */
101 void *interfaces[DEV_IFACE_COUNT];
102
103 /**
104 * The default handler of remote client requests. If the client's remote
105 * request cannot be handled by any of the standard interfaces, the
106 * default handler is used.
107 */
108 remote_handler_t *default_handler;
109} device_ops_t;
110
111
112/* device */
113
114/** The device. */
115struct device {
116 /**
117 * Globally unique device identifier (assigned to the device by the
118 * device manager).
119 */
120 device_handle_t handle;
121
122 /**
123 * The phone to the parent device driver (if it is different from this
124 * driver).
125 */
126 int parent_phone;
127
128 /** Parent device if handled by this driver, NULL otherwise. */
129 device_t *parent;
130 /** The device's name. */
131 const char *name;
132 /** The list of device ids for device-to-driver matching. */
133 match_id_list_t match_ids;
134 /** The device driver's data associated with this device. */
135 void *driver_data;
136 /** The implementation of operations provided by this device. */
137 device_ops_t *ops;
138
139 /**
140 * Pointer to the previous and next device in the list of devices
141 * handled by the driver.
142 */
143 link_t link;
144};
145
146
147/* driver */
148
149/** Generic device driver operations. */
150typedef struct driver_ops {
151 /** Callback method for passing a new device to the device driver.*/
152 int (*add_device)(device_t *dev);
153 /* TODO add other generic driver operations */
154} driver_ops_t;
155
156/** The driver structure.*/
157typedef struct driver {
158 /** The name of the device driver. */
159 const char *name;
160 /** Generic device driver operations. */
161 driver_ops_t *driver_ops;
162} driver_t;
163
164int driver_main(driver_t *);
165
166/** Create new device structure.
167 *
168 * @return The device structure.
169 */
170static inline device_t *create_device(void)
171{
172 device_t *dev = malloc(sizeof(device_t));
173 if (NULL != dev) {
174 memset(dev, 0, sizeof(device_t));
175 init_match_ids(&dev->match_ids);
176 }
177 return dev;
178}
179
180/** Delete device structure.
181 *
182 * @param dev The device structure.
183 */
184static inline void delete_device(device_t *dev)
185{
186 clean_match_ids(&dev->match_ids);
187 if (NULL != dev->name)
188 free(dev->name);
189 free(dev);
190}
191
192static inline void *device_get_iface(device_t *dev, dev_inferface_idx_t idx)
193{
194 assert(is_valid_iface_idx(idx));
195 if (NULL == dev->ops)
196 return NULL;
197 return dev->ops->interfaces[idx];
198}
199
200int child_device_register(device_t *, device_t *);
201
202
203/* interrupts */
204
205typedef void interrupt_handler_t(device_t *, ipc_callid_t, ipc_call_t *);
206
207typedef struct interrupt_context {
208 int id;
209 device_t *dev;
210 int irq;
211 interrupt_handler_t *handler;
212 link_t link;
213} interrupt_context_t;
214
215typedef struct interrupt_context_list {
216 int curr_id;
217 link_t contexts;
218 fibril_mutex_t mutex;
219} interrupt_context_list_t;
220
221static inline interrupt_context_t *create_interrupt_context(void)
222{
223 interrupt_context_t *ctx;
224
225 ctx = (interrupt_context_t *) malloc(sizeof(interrupt_context_t));
226 if (NULL != ctx)
227 memset(ctx, 0, sizeof(interrupt_context_t));
228
229 return ctx;
230}
231
232static inline void delete_interrupt_context(interrupt_context_t *ctx)
233{
234 if (NULL != ctx)
235 free(ctx);
236}
237
238static inline void init_interrupt_context_list(interrupt_context_list_t *list)
239{
240 memset(list, 0, sizeof(interrupt_context_list_t));
241 fibril_mutex_initialize(&list->mutex);
242 list_initialize(&list->contexts);
243}
244
245static inline void
246add_interrupt_context(interrupt_context_list_t *list, interrupt_context_t *ctx)
247{
248 fibril_mutex_lock(&list->mutex);
249 ctx->id = list->curr_id++;
250 list_append(&ctx->link, &list->contexts);
251 fibril_mutex_unlock(&list->mutex);
252}
253
254static inline void
255remove_interrupt_context(interrupt_context_list_t *list,
256 interrupt_context_t *ctx)
257{
258 fibril_mutex_lock(&list->mutex);
259 list_remove(&ctx->link);
260 fibril_mutex_unlock(&list->mutex);
261}
262
263static inline interrupt_context_t *
264find_interrupt_context_by_id(interrupt_context_list_t *list, int id)
265{
266 fibril_mutex_lock(&list->mutex);
267
268 link_t *link = list->contexts.next;
269 interrupt_context_t *ctx;
270
271 while (link != &list->contexts) {
272 ctx = list_get_instance(link, interrupt_context_t, link);
273 if (id == ctx->id) {
274 fibril_mutex_unlock(&list->mutex);
275 return ctx;
276 }
277 link = link->next;
278 }
279
280 fibril_mutex_unlock(&list->mutex);
281 return NULL;
282}
283
284static inline interrupt_context_t *
285find_interrupt_context(interrupt_context_list_t *list, device_t *dev, int irq)
286{
287 fibril_mutex_lock(&list->mutex);
288
289 link_t *link = list->contexts.next;
290 interrupt_context_t *ctx;
291
292 while (link != &list->contexts) {
293 ctx = list_get_instance(link, interrupt_context_t, link);
294 if (irq == ctx->irq && dev == ctx->dev) {
295 fibril_mutex_unlock(&list->mutex);
296 return ctx;
297 }
298 link = link->next;
299 }
300
301 fibril_mutex_unlock(&list->mutex);
302 return NULL;
303}
304
305int register_interrupt_handler(device_t *, int, interrupt_handler_t *,
306 irq_code_t *);
307int unregister_interrupt_handler(device_t *, int);
308
309
310/* default handler for client requests */
311
312static inline remote_handler_t *device_get_default_handler(device_t *dev)
313{
314 if (NULL == dev->ops)
315 return NULL;
316 return dev->ops->default_handler;
317}
318
319static inline int add_device_to_class(device_t *dev, const char *class_name)
320{
321 return devman_add_device_to_class(dev->handle, class_name);
322}
323
324#endif
325
326/**
327 * @}
328 */
Note: See TracBrowser for help on using the repository browser.