| [c16cf62] | 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 | /**
|
|---|
| 30 | * @defgroup libdrv generic device driver support.
|
|---|
| 31 | * @brief HelenOS generic device driver support.
|
|---|
| 32 | * @{
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | /** @file
|
|---|
| 36 | */
|
|---|
| [52b7b1bb] | 37 |
|
|---|
| [c16cf62] | 38 | #include <assert.h>
|
|---|
| 39 | #include <ipc/services.h>
|
|---|
| 40 | #include <ipc/ns.h>
|
|---|
| 41 | #include <async.h>
|
|---|
| 42 | #include <stdio.h>
|
|---|
| 43 | #include <errno.h>
|
|---|
| 44 | #include <bool.h>
|
|---|
| 45 | #include <fibril_synch.h>
|
|---|
| 46 | #include <stdlib.h>
|
|---|
| [c47e1a8] | 47 | #include <str.h>
|
|---|
| [c16cf62] | 48 | #include <ctype.h>
|
|---|
| [66babbd] | 49 | #include <errno.h>
|
|---|
| [c16cf62] | 50 |
|
|---|
| [084ff99] | 51 | #include <ipc/driver.h>
|
|---|
| [c16cf62] | 52 |
|
|---|
| 53 | #include "driver.h"
|
|---|
| 54 |
|
|---|
| [7a252ec8] | 55 | /* driver structure */
|
|---|
| [7f8b581] | 56 |
|
|---|
| [c16cf62] | 57 | static driver_t *driver;
|
|---|
| [7f8b581] | 58 |
|
|---|
| [7a252ec8] | 59 | /* devices */
|
|---|
| [7f8b581] | 60 |
|
|---|
| [084ff99] | 61 | LIST_INITIALIZE(devices);
|
|---|
| [9a66bc2e] | 62 | FIBRIL_MUTEX_INITIALIZE(devices_mutex);
|
|---|
| [084ff99] | 63 |
|
|---|
| [7a252ec8] | 64 | /* interrupts */
|
|---|
| [7f8b581] | 65 |
|
|---|
| 66 | static interrupt_context_list_t interrupt_contexts;
|
|---|
| 67 |
|
|---|
| 68 | static irq_cmd_t default_cmds[] = {
|
|---|
| 69 | {
|
|---|
| 70 | .cmd = CMD_ACCEPT
|
|---|
| 71 | }
|
|---|
| 72 | };
|
|---|
| 73 |
|
|---|
| 74 | static irq_code_t default_pseudocode = {
|
|---|
| 75 | sizeof(default_cmds) / sizeof(irq_cmd_t),
|
|---|
| 76 | default_cmds
|
|---|
| 77 | };
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 | static void driver_irq_handler(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| [7a252ec8] | 81 | {
|
|---|
| [7f8b581] | 82 | int id = (int)IPC_GET_METHOD(*icall);
|
|---|
| [7a252ec8] | 83 | interrupt_context_t *ctx;
|
|---|
| 84 |
|
|---|
| 85 | ctx = find_interrupt_context_by_id(&interrupt_contexts, id);
|
|---|
| 86 | if (NULL != ctx && NULL != ctx->handler)
|
|---|
| 87 | (*ctx->handler)(ctx->dev, iid, icall);
|
|---|
| [7f8b581] | 88 | }
|
|---|
| 89 |
|
|---|
| [7a252ec8] | 90 | int
|
|---|
| 91 | register_interrupt_handler(device_t *dev, int irq, interrupt_handler_t *handler,
|
|---|
| 92 | irq_code_t *pseudocode)
|
|---|
| [7f8b581] | 93 | {
|
|---|
| 94 | interrupt_context_t *ctx = create_interrupt_context();
|
|---|
| 95 |
|
|---|
| 96 | ctx->dev = dev;
|
|---|
| 97 | ctx->irq = irq;
|
|---|
| 98 | ctx->handler = handler;
|
|---|
| 99 |
|
|---|
| 100 | add_interrupt_context(&interrupt_contexts, ctx);
|
|---|
| 101 |
|
|---|
| [7a252ec8] | 102 | if (NULL == pseudocode)
|
|---|
| [7f8b581] | 103 | pseudocode = &default_pseudocode;
|
|---|
| 104 |
|
|---|
| 105 | int res = ipc_register_irq(irq, dev->handle, ctx->id, pseudocode);
|
|---|
| 106 | if (0 != res) {
|
|---|
| 107 | remove_interrupt_context(&interrupt_contexts, ctx);
|
|---|
| 108 | delete_interrupt_context(ctx);
|
|---|
| 109 | }
|
|---|
| [7a252ec8] | 110 |
|
|---|
| 111 | return res;
|
|---|
| [7f8b581] | 112 | }
|
|---|
| 113 |
|
|---|
| 114 | int unregister_interrupt_handler(device_t *dev, int irq)
|
|---|
| 115 | {
|
|---|
| [7a252ec8] | 116 | interrupt_context_t *ctx = find_interrupt_context(&interrupt_contexts,
|
|---|
| 117 | dev, irq);
|
|---|
| [7f8b581] | 118 | int res = ipc_unregister_irq(irq, dev->handle);
|
|---|
| [7a252ec8] | 119 |
|
|---|
| [7f8b581] | 120 | if (NULL != ctx) {
|
|---|
| 121 | remove_interrupt_context(&interrupt_contexts, ctx);
|
|---|
| [7a252ec8] | 122 | delete_interrupt_context(ctx);
|
|---|
| [7f8b581] | 123 | }
|
|---|
| 124 | return res;
|
|---|
| 125 | }
|
|---|
| 126 |
|
|---|
| [9a66bc2e] | 127 | static void add_to_devices_list(device_t *dev)
|
|---|
| 128 | {
|
|---|
| 129 | fibril_mutex_lock(&devices_mutex);
|
|---|
| 130 | list_append(&dev->link, &devices);
|
|---|
| 131 | fibril_mutex_unlock(&devices_mutex);
|
|---|
| 132 | }
|
|---|
| 133 |
|
|---|
| 134 | static void remove_from_devices_list(device_t *dev)
|
|---|
| 135 | {
|
|---|
| 136 | fibril_mutex_lock(&devices_mutex);
|
|---|
| [5af21c5] | 137 | list_remove(&dev->link);
|
|---|
| [9a66bc2e] | 138 | fibril_mutex_unlock(&devices_mutex);
|
|---|
| 139 | }
|
|---|
| 140 |
|
|---|
| [52b7b1bb] | 141 | static device_t * driver_get_device(link_t *devices, device_handle_t handle)
|
|---|
| 142 | {
|
|---|
| [a1769ee] | 143 | device_t *dev = NULL;
|
|---|
| [9a66bc2e] | 144 |
|
|---|
| [7a252ec8] | 145 | fibril_mutex_lock(&devices_mutex);
|
|---|
| [a1769ee] | 146 | link_t *link = devices->next;
|
|---|
| 147 | while (link != devices) {
|
|---|
| 148 | dev = list_get_instance(link, device_t, link);
|
|---|
| 149 | if (handle == dev->handle) {
|
|---|
| [9a66bc2e] | 150 | fibril_mutex_unlock(&devices_mutex);
|
|---|
| [a1769ee] | 151 | return dev;
|
|---|
| 152 | }
|
|---|
| [9a66bc2e] | 153 | link = link->next;
|
|---|
| [a1769ee] | 154 | }
|
|---|
| [9a66bc2e] | 155 | fibril_mutex_unlock(&devices_mutex);
|
|---|
| [52b7b1bb] | 156 |
|
|---|
| [a1769ee] | 157 | return NULL;
|
|---|
| 158 | }
|
|---|
| 159 |
|
|---|
| [52b7b1bb] | 160 | static void driver_add_device(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| [084ff99] | 161 | {
|
|---|
| [df747b9c] | 162 | char *dev_name = NULL;
|
|---|
| 163 | int res = EOK;
|
|---|
| [9a66bc2e] | 164 |
|
|---|
| [52b7b1bb] | 165 | device_handle_t dev_handle = IPC_GET_ARG1(*icall);
|
|---|
| [5af21c5] | 166 | device_t *dev = create_device();
|
|---|
| [084ff99] | 167 | dev->handle = dev_handle;
|
|---|
| [df747b9c] | 168 |
|
|---|
| [7a252ec8] | 169 | async_data_write_accept((void **) &dev_name, true, 0, 0, 0, 0);
|
|---|
| [df747b9c] | 170 | dev->name = dev_name;
|
|---|
| 171 |
|
|---|
| [7a252ec8] | 172 | add_to_devices_list(dev);
|
|---|
| [df747b9c] | 173 | res = driver->driver_ops->add_device(dev);
|
|---|
| 174 | if (0 == res) {
|
|---|
| [7a252ec8] | 175 | printf("%s: new device with handle = %x was added.\n",
|
|---|
| 176 | driver->name, dev_handle);
|
|---|
| [9a66bc2e] | 177 | } else {
|
|---|
| [7a252ec8] | 178 | printf("%s: failed to add a new device with handle = %d.\n",
|
|---|
| 179 | driver->name, dev_handle);
|
|---|
| [9a66bc2e] | 180 | remove_from_devices_list(dev);
|
|---|
| [7a252ec8] | 181 | delete_device(dev);
|
|---|
| [084ff99] | 182 | }
|
|---|
| [df747b9c] | 183 |
|
|---|
| 184 | ipc_answer_0(iid, res);
|
|---|
| [084ff99] | 185 | }
|
|---|
| [c16cf62] | 186 |
|
|---|
| 187 | static void driver_connection_devman(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 188 | {
|
|---|
| 189 | /* Accept connection */
|
|---|
| 190 | ipc_answer_0(iid, EOK);
|
|---|
| [52b7b1bb] | 191 |
|
|---|
| [c16cf62] | 192 | bool cont = true;
|
|---|
| 193 | while (cont) {
|
|---|
| 194 | ipc_call_t call;
|
|---|
| 195 | ipc_callid_t callid = async_get_call(&call);
|
|---|
| [52b7b1bb] | 196 |
|
|---|
| [c16cf62] | 197 | switch (IPC_GET_METHOD(call)) {
|
|---|
| 198 | case IPC_M_PHONE_HUNGUP:
|
|---|
| 199 | cont = false;
|
|---|
| 200 | continue;
|
|---|
| 201 | case DRIVER_ADD_DEVICE:
|
|---|
| [084ff99] | 202 | driver_add_device(callid, &call);
|
|---|
| [c16cf62] | 203 | break;
|
|---|
| 204 | default:
|
|---|
| 205 | if (!(callid & IPC_CALLID_NOTIFICATION))
|
|---|
| 206 | ipc_answer_0(callid, ENOENT);
|
|---|
| 207 | }
|
|---|
| [52b7b1bb] | 208 | }
|
|---|
| [c16cf62] | 209 | }
|
|---|
| 210 |
|
|---|
| [52b7b1bb] | 211 | /**
|
|---|
| [a1769ee] | 212 | * Generic client connection handler both for applications and drivers.
|
|---|
| [52b7b1bb] | 213 | *
|
|---|
| [7a252ec8] | 214 | * @param drv True for driver client, false for other clients
|
|---|
| 215 | * (applications, services etc.).
|
|---|
| [a1769ee] | 216 | */
|
|---|
| [9a66bc2e] | 217 | static void driver_connection_gen(ipc_callid_t iid, ipc_call_t *icall, bool drv)
|
|---|
| [52b7b1bb] | 218 | {
|
|---|
| [7a252ec8] | 219 | /*
|
|---|
| 220 | * Answer the first IPC_M_CONNECT_ME_TO call and remember the handle of
|
|---|
| 221 | * the device to which the client connected.
|
|---|
| 222 | */
|
|---|
| [9a66bc2e] | 223 | device_handle_t handle = IPC_GET_ARG2(*icall);
|
|---|
| [a1769ee] | 224 | device_t *dev = driver_get_device(&devices, handle);
|
|---|
| [52b7b1bb] | 225 |
|
|---|
| [a1769ee] | 226 | if (dev == NULL) {
|
|---|
| [7a252ec8] | 227 | printf("%s: driver_connection_gen error - no device with handle"
|
|---|
| 228 | " %x was found.\n", driver->name, handle);
|
|---|
| [a1769ee] | 229 | ipc_answer_0(iid, ENOENT);
|
|---|
| 230 | return;
|
|---|
| 231 | }
|
|---|
| [5cd136ab] | 232 |
|
|---|
| 233 |
|
|---|
| [7a252ec8] | 234 | /*
|
|---|
| 235 | * TODO - if the client is not a driver, check whether it is allowed to
|
|---|
| 236 | * use the device.
|
|---|
| 237 | */
|
|---|
| [a1769ee] | 238 |
|
|---|
| [25a7e11d] | 239 | int ret = EOK;
|
|---|
| [7a252ec8] | 240 | /* open the device */
|
|---|
| 241 | if (NULL != dev->ops && NULL != dev->ops->open)
|
|---|
| [5159ae9] | 242 | ret = (*dev->ops->open)(dev);
|
|---|
| [a1769ee] | 243 |
|
|---|
| [25a7e11d] | 244 | ipc_answer_0(iid, ret);
|
|---|
| [7a252ec8] | 245 | if (EOK != ret)
|
|---|
| [a6e54c5d] | 246 | return;
|
|---|
| [52b7b1bb] | 247 |
|
|---|
| [a1769ee] | 248 | while (1) {
|
|---|
| 249 | ipc_callid_t callid;
|
|---|
| 250 | ipc_call_t call;
|
|---|
| 251 | callid = async_get_call(&call);
|
|---|
| 252 | ipcarg_t method = IPC_GET_METHOD(call);
|
|---|
| [3843ecb] | 253 | int iface_idx;
|
|---|
| 254 |
|
|---|
| [a1769ee] | 255 | switch (method) {
|
|---|
| [25a7e11d] | 256 | case IPC_M_PHONE_HUNGUP:
|
|---|
| [7a252ec8] | 257 | /* close the device */
|
|---|
| 258 | if (NULL != dev->ops && NULL != dev->ops->close)
|
|---|
| [5159ae9] | 259 | (*dev->ops->close)(dev);
|
|---|
| [a1769ee] | 260 | ipc_answer_0(callid, EOK);
|
|---|
| 261 | return;
|
|---|
| [3843ecb] | 262 | default:
|
|---|
| [7a252ec8] | 263 | /* convert ipc interface id to interface index */
|
|---|
| [3843ecb] | 264 |
|
|---|
| 265 | iface_idx = DEV_IFACE_IDX(method);
|
|---|
| 266 |
|
|---|
| 267 | if (!is_valid_iface_idx(iface_idx)) {
|
|---|
| [7a252ec8] | 268 | remote_handler_t *default_handler =
|
|---|
| 269 | device_get_default_handler(dev);
|
|---|
| 270 | if (NULL != default_handler) {
|
|---|
| [08d9525a] | 271 | (*default_handler)(dev, callid, &call);
|
|---|
| 272 | break;
|
|---|
| 273 | }
|
|---|
| [7a252ec8] | 274 | /*
|
|---|
| 275 | * This is not device's interface and the
|
|---|
| 276 | * default handler is not provided.
|
|---|
| 277 | */
|
|---|
| 278 | printf("%s: driver_connection_gen error - "
|
|---|
| 279 | "invalid interface id %d.",
|
|---|
| 280 | driver->name, iface_idx);
|
|---|
| [52b7b1bb] | 281 | ipc_answer_0(callid, ENOTSUP);
|
|---|
| 282 | break;
|
|---|
| 283 | }
|
|---|
| 284 |
|
|---|
| [7a252ec8] | 285 | /* calling one of the device's interfaces */
|
|---|
| [52b7b1bb] | 286 |
|
|---|
| [7a252ec8] | 287 | /* get the device interface structure */
|
|---|
| [3843ecb] | 288 | void *iface = device_get_iface(dev, iface_idx);
|
|---|
| [52b7b1bb] | 289 | if (NULL == iface) {
|
|---|
| [7a252ec8] | 290 | printf("%s: driver_connection_gen error - ",
|
|---|
| 291 | driver->name);
|
|---|
| 292 | printf("device with handle %d has no interface "
|
|---|
| 293 | "with id %d.\n", handle, iface_idx);
|
|---|
| [a1769ee] | 294 | ipc_answer_0(callid, ENOTSUP);
|
|---|
| [52b7b1bb] | 295 | break;
|
|---|
| [a1769ee] | 296 | }
|
|---|
| [52b7b1bb] | 297 |
|
|---|
| [7a252ec8] | 298 | /*
|
|---|
| 299 | * Get the corresponding interface for remote request
|
|---|
| 300 | * handling ("remote interface").
|
|---|
| 301 | */
|
|---|
| [3843ecb] | 302 | remote_iface_t* rem_iface = get_remote_iface(iface_idx);
|
|---|
| [52b7b1bb] | 303 | assert(NULL != rem_iface);
|
|---|
| 304 |
|
|---|
| [7a252ec8] | 305 | /* get the method of the remote interface */
|
|---|
| [52b7b1bb] | 306 | ipcarg_t iface_method_idx = IPC_GET_ARG1(call);
|
|---|
| [7a252ec8] | 307 | remote_iface_func_ptr_t iface_method_ptr =
|
|---|
| 308 | get_remote_method(rem_iface, iface_method_idx);
|
|---|
| [52b7b1bb] | 309 | if (NULL == iface_method_ptr) {
|
|---|
| 310 | // the interface has not such method
|
|---|
| [7a252ec8] | 311 | printf("%s: driver_connection_gen error - "
|
|---|
| 312 | "invalid interface method.", driver->name);
|
|---|
| [52b7b1bb] | 313 | ipc_answer_0(callid, ENOTSUP);
|
|---|
| 314 | break;
|
|---|
| 315 | }
|
|---|
| 316 |
|
|---|
| [7a252ec8] | 317 | /*
|
|---|
| 318 | * Call the remote interface's method, which will
|
|---|
| 319 | * receive parameters from the remote client and it will
|
|---|
| 320 | * pass it to the corresponding local interface method
|
|---|
| 321 | * associated with the device by its driver.
|
|---|
| 322 | */
|
|---|
| [52b7b1bb] | 323 | (*iface_method_ptr)(dev, iface, callid, &call);
|
|---|
| [a1769ee] | 324 | break;
|
|---|
| 325 | }
|
|---|
| 326 | }
|
|---|
| 327 | }
|
|---|
| 328 |
|
|---|
| [c16cf62] | 329 | static void driver_connection_driver(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 330 | {
|
|---|
| [52b7b1bb] | 331 | driver_connection_gen(iid, icall, true);
|
|---|
| [c16cf62] | 332 | }
|
|---|
| 333 |
|
|---|
| 334 | static void driver_connection_client(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 335 | {
|
|---|
| [52b7b1bb] | 336 | driver_connection_gen(iid, icall, false);
|
|---|
| [c16cf62] | 337 | }
|
|---|
| 338 |
|
|---|
| 339 |
|
|---|
| [7a252ec8] | 340 | /** Function for handling connections to device driver. */
|
|---|
| [c16cf62] | 341 | static void driver_connection(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 342 | {
|
|---|
| 343 | /* Select interface */
|
|---|
| 344 | switch ((ipcarg_t) (IPC_GET_ARG1(*icall))) {
|
|---|
| 345 | case DRIVER_DEVMAN:
|
|---|
| [7a252ec8] | 346 | /* handle PnP events from device manager */
|
|---|
| [c16cf62] | 347 | driver_connection_devman(iid, icall);
|
|---|
| 348 | break;
|
|---|
| 349 | case DRIVER_DRIVER:
|
|---|
| [7a252ec8] | 350 | /* handle request from drivers of child devices */
|
|---|
| [c16cf62] | 351 | driver_connection_driver(iid, icall);
|
|---|
| 352 | break;
|
|---|
| 353 | case DRIVER_CLIENT:
|
|---|
| [7a252ec8] | 354 | /* handle requests from client applications */
|
|---|
| [c16cf62] | 355 | driver_connection_client(iid, icall);
|
|---|
| 356 | break;
|
|---|
| 357 |
|
|---|
| 358 | default:
|
|---|
| [52b7b1bb] | 359 | /* No such interface */
|
|---|
| [c16cf62] | 360 | ipc_answer_0(iid, ENOENT);
|
|---|
| 361 | }
|
|---|
| 362 | }
|
|---|
| 363 |
|
|---|
| [df747b9c] | 364 | int child_device_register(device_t *child, device_t *parent)
|
|---|
| [7707954] | 365 | {
|
|---|
| [bda60d9] | 366 | assert(NULL != child->name);
|
|---|
| [52b7b1bb] | 367 |
|
|---|
| [df747b9c] | 368 | int res;
|
|---|
| 369 |
|
|---|
| [9a66bc2e] | 370 | add_to_devices_list(child);
|
|---|
| [7a252ec8] | 371 | res = devman_child_device_register(child->name, &child->match_ids,
|
|---|
| 372 | parent->handle, &child->handle);
|
|---|
| 373 | if (EOK == res)
|
|---|
| [df747b9c] | 374 | return res;
|
|---|
| [9a66bc2e] | 375 | remove_from_devices_list(child);
|
|---|
| [df747b9c] | 376 | return res;
|
|---|
| [7707954] | 377 | }
|
|---|
| 378 |
|
|---|
| [52b7b1bb] | 379 | int driver_main(driver_t *drv)
|
|---|
| [c16cf62] | 380 | {
|
|---|
| [7a252ec8] | 381 | /*
|
|---|
| 382 | * Remember the driver structure - driver_ops will be called by generic
|
|---|
| 383 | * handler for incoming connections.
|
|---|
| 384 | */
|
|---|
| [c16cf62] | 385 | driver = drv;
|
|---|
| [52b7b1bb] | 386 |
|
|---|
| [7a252ec8] | 387 | /* Initialize the list of interrupt contexts. */
|
|---|
| [7f8b581] | 388 | init_interrupt_context_list(&interrupt_contexts);
|
|---|
| 389 |
|
|---|
| [7a252ec8] | 390 | /* Set generic interrupt handler. */
|
|---|
| [7f8b581] | 391 | async_set_interrupt_received(driver_irq_handler);
|
|---|
| 392 |
|
|---|
| [7a252ec8] | 393 | /*
|
|---|
| 394 | * Register driver by device manager with generic handler for incoming
|
|---|
| 395 | * connections.
|
|---|
| 396 | */
|
|---|
| [52b7b1bb] | 397 | devman_driver_register(driver->name, driver_connection);
|
|---|
| [c16cf62] | 398 |
|
|---|
| 399 | async_manager();
|
|---|
| 400 |
|
|---|
| [7a252ec8] | 401 | /* Never reached. */
|
|---|
| [52b7b1bb] | 402 | return 0;
|
|---|
| [c16cf62] | 403 | }
|
|---|
| 404 |
|
|---|
| 405 | /**
|
|---|
| 406 | * @}
|
|---|
| [52b7b1bb] | 407 | */
|
|---|