1 | /*
|
---|
2 | * Copyright (c) 2025 Jiri Svoboda
|
---|
3 | * Copyright (c) 2010 Lenka Trochtova
|
---|
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 libdrv
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 | /** @file
|
---|
34 | */
|
---|
35 |
|
---|
36 | #ifndef DDF_DRIVER_H_
|
---|
37 | #define DDF_DRIVER_H_
|
---|
38 |
|
---|
39 | #include <async.h>
|
---|
40 | #include <ipc/devman.h>
|
---|
41 | #include <ipc/dev_iface.h>
|
---|
42 | #include "../dev_iface.h"
|
---|
43 |
|
---|
44 | /*
|
---|
45 | * Device
|
---|
46 | */
|
---|
47 |
|
---|
48 | typedef struct ddf_dev ddf_dev_t;
|
---|
49 | typedef struct ddf_fun ddf_fun_t;
|
---|
50 |
|
---|
51 | /** Devices operations */
|
---|
52 | typedef struct ddf_dev_ops {
|
---|
53 | /**
|
---|
54 | * Optional callback function called when a client is connecting to the
|
---|
55 | * device.
|
---|
56 | */
|
---|
57 | errno_t (*open)(ddf_fun_t *);
|
---|
58 |
|
---|
59 | /**
|
---|
60 | * Optional callback function called when a client is disconnecting from
|
---|
61 | * the device.
|
---|
62 | */
|
---|
63 | void (*close)(ddf_fun_t *);
|
---|
64 |
|
---|
65 | /** The table of standard interfaces implemented by the device. */
|
---|
66 | void *interfaces[DEV_IFACE_COUNT];
|
---|
67 |
|
---|
68 | /**
|
---|
69 | * The default handler of remote client requests. If the client's remote
|
---|
70 | * request cannot be handled by any of the standard interfaces, the
|
---|
71 | * default handler is used.
|
---|
72 | */
|
---|
73 | remote_handler_t *default_handler;
|
---|
74 | } ddf_dev_ops_t;
|
---|
75 |
|
---|
76 | /** Device structure */
|
---|
77 | struct ddf_dev;
|
---|
78 |
|
---|
79 | /** Function structure */
|
---|
80 | struct ddf_fun;
|
---|
81 |
|
---|
82 | /*
|
---|
83 | * Driver
|
---|
84 | */
|
---|
85 |
|
---|
86 | /** Generic device driver operations */
|
---|
87 | typedef struct driver_ops {
|
---|
88 | /** Ask driver to add a new device */
|
---|
89 | errno_t (*dev_add)(ddf_dev_t *);
|
---|
90 |
|
---|
91 | /** Ask driver to remove a device */
|
---|
92 | errno_t (*dev_remove)(ddf_dev_t *);
|
---|
93 |
|
---|
94 | /** Inform driver a device disappeared */
|
---|
95 | errno_t (*dev_gone)(ddf_dev_t *);
|
---|
96 |
|
---|
97 | /** Ask driver to quiesce device (disable interrupts and DMA) */
|
---|
98 | errno_t (*dev_quiesce)(ddf_dev_t *);
|
---|
99 |
|
---|
100 | /** Ask driver to online a specific function */
|
---|
101 | errno_t (*fun_online)(ddf_fun_t *);
|
---|
102 |
|
---|
103 | /** Ask driver to offline a specific function */
|
---|
104 | errno_t (*fun_offline)(ddf_fun_t *);
|
---|
105 | } driver_ops_t;
|
---|
106 |
|
---|
107 | /** Driver structure */
|
---|
108 | typedef struct driver {
|
---|
109 | /** Name of the device driver */
|
---|
110 | const char *name;
|
---|
111 | /** Generic device driver operations */
|
---|
112 | const driver_ops_t *driver_ops;
|
---|
113 | } driver_t;
|
---|
114 |
|
---|
115 | extern int ddf_driver_main(const driver_t *);
|
---|
116 |
|
---|
117 | extern void *ddf_dev_data_alloc(ddf_dev_t *, size_t);
|
---|
118 | extern void *ddf_dev_data_get(ddf_dev_t *);
|
---|
119 | extern devman_handle_t ddf_dev_get_handle(ddf_dev_t *);
|
---|
120 | extern const char *ddf_dev_get_name(ddf_dev_t *);
|
---|
121 | extern async_sess_t *ddf_dev_parent_sess_get(ddf_dev_t *);
|
---|
122 | extern ddf_fun_t *ddf_fun_create(ddf_dev_t *, fun_type_t, const char *);
|
---|
123 | extern devman_handle_t ddf_fun_get_handle(ddf_fun_t *);
|
---|
124 | extern void ddf_fun_destroy(ddf_fun_t *);
|
---|
125 | extern void *ddf_fun_data_alloc(ddf_fun_t *, size_t);
|
---|
126 | extern void *ddf_fun_data_get(ddf_fun_t *);
|
---|
127 | extern const char *ddf_fun_get_name(ddf_fun_t *);
|
---|
128 | extern errno_t ddf_fun_set_name(ddf_fun_t *, const char *);
|
---|
129 | extern ddf_dev_t *ddf_fun_get_dev(ddf_fun_t *);
|
---|
130 | extern errno_t ddf_fun_bind(ddf_fun_t *);
|
---|
131 | extern errno_t ddf_fun_unbind(ddf_fun_t *);
|
---|
132 | extern errno_t ddf_fun_online(ddf_fun_t *);
|
---|
133 | extern errno_t ddf_fun_offline(ddf_fun_t *);
|
---|
134 | extern errno_t ddf_fun_quiesce(ddf_fun_t *);
|
---|
135 | extern errno_t ddf_fun_add_match_id(ddf_fun_t *, const char *, int);
|
---|
136 | extern void ddf_fun_set_ops(ddf_fun_t *, const ddf_dev_ops_t *);
|
---|
137 | extern void ddf_fun_set_conn_handler(ddf_fun_t *, async_port_handler_t);
|
---|
138 | extern errno_t ddf_fun_add_to_category(ddf_fun_t *, const char *);
|
---|
139 | extern errno_t ddf_fun_wait_stable(ddf_fun_t *);
|
---|
140 |
|
---|
141 | #endif
|
---|
142 |
|
---|
143 | /**
|
---|
144 | * @}
|
---|
145 | */
|
---|