| 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 | */
|
|---|
| 37 |
|
|---|
| 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>
|
|---|
| 47 | #include <string.h>
|
|---|
| 48 | #include <ctype.h>
|
|---|
| 49 |
|
|---|
| 50 | #include <devman.h>
|
|---|
| 51 | #include <ipc/devman.h>
|
|---|
| 52 | #include <ipc/driver.h>
|
|---|
| 53 |
|
|---|
| 54 | #include "driver.h"
|
|---|
| 55 |
|
|---|
| 56 | static driver_t *driver;
|
|---|
| 57 | LIST_INITIALIZE(devices);
|
|---|
| 58 |
|
|---|
| 59 | static device_t* driver_create_device()
|
|---|
| 60 | {
|
|---|
| 61 | device_t *dev = (device_t *)malloc(sizeof(device_t));
|
|---|
| 62 | if (NULL != dev) {
|
|---|
| 63 | memset(dev, 0, sizeof(device_t));
|
|---|
| 64 | }
|
|---|
| 65 | return dev;
|
|---|
| 66 | }
|
|---|
| 67 |
|
|---|
| 68 | static void driver_add_device(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 69 | {
|
|---|
| 70 | printf("%s: driver_add_device\n", driver->name);
|
|---|
| 71 |
|
|---|
| 72 | // result of the operation - device was added, device is not present etc.
|
|---|
| 73 | ipcarg_t ret = 0;
|
|---|
| 74 | device_handle_t dev_handle = IPC_GET_ARG1(*icall);
|
|---|
| 75 | device_t *dev = driver_create_device();
|
|---|
| 76 | dev->handle = dev_handle;
|
|---|
| 77 | if (driver->driver_ops->add_device(dev)) {
|
|---|
| 78 | list_append(&dev->link, &devices);
|
|---|
| 79 | // TODO set return value
|
|---|
| 80 | }
|
|---|
| 81 | printf("%s: new device with handle = %x was added.\n", driver->name, dev_handle);
|
|---|
| 82 |
|
|---|
| 83 | ipcarg_t r = ipc_answer_1(iid, EOK, ret);
|
|---|
| 84 | }
|
|---|
| 85 |
|
|---|
| 86 | static void driver_connection_devman(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 87 | {
|
|---|
| 88 | printf("%s: driver_connection_devman \n", driver->name);
|
|---|
| 89 |
|
|---|
| 90 | /* Accept connection */
|
|---|
| 91 | ipc_answer_0(iid, EOK);
|
|---|
| 92 |
|
|---|
| 93 | bool cont = true;
|
|---|
| 94 | while (cont) {
|
|---|
| 95 | ipc_call_t call;
|
|---|
| 96 | ipc_callid_t callid = async_get_call(&call);
|
|---|
| 97 |
|
|---|
| 98 | switch (IPC_GET_METHOD(call)) {
|
|---|
| 99 | case IPC_M_PHONE_HUNGUP:
|
|---|
| 100 | cont = false;
|
|---|
| 101 | continue;
|
|---|
| 102 | case DRIVER_ADD_DEVICE:
|
|---|
| 103 | driver_add_device(callid, &call);
|
|---|
| 104 | break;
|
|---|
| 105 | default:
|
|---|
| 106 | if (!(callid & IPC_CALLID_NOTIFICATION))
|
|---|
| 107 | ipc_answer_0(callid, ENOENT);
|
|---|
| 108 | }
|
|---|
| 109 | }
|
|---|
| 110 | }
|
|---|
| 111 |
|
|---|
| 112 | static void driver_connection_driver(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 113 | {
|
|---|
| 114 | // TODO later
|
|---|
| 115 | }
|
|---|
| 116 |
|
|---|
| 117 | static void driver_connection_client(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 118 | {
|
|---|
| 119 | // TODO later
|
|---|
| 120 | }
|
|---|
| 121 |
|
|---|
| 122 |
|
|---|
| 123 | /** Function for handling connections to device driver.
|
|---|
| 124 | *
|
|---|
| 125 | */
|
|---|
| 126 | static void driver_connection(ipc_callid_t iid, ipc_call_t *icall)
|
|---|
| 127 | {
|
|---|
| 128 | /* Select interface */
|
|---|
| 129 | switch ((ipcarg_t) (IPC_GET_ARG1(*icall))) {
|
|---|
| 130 | case DRIVER_DEVMAN:
|
|---|
| 131 | // handle PnP events from device manager
|
|---|
| 132 | driver_connection_devman(iid, icall);
|
|---|
| 133 | break;
|
|---|
| 134 | case DRIVER_DRIVER:
|
|---|
| 135 | // handle request from drivers of child devices
|
|---|
| 136 | driver_connection_driver(iid, icall);
|
|---|
| 137 | break;
|
|---|
| 138 | case DRIVER_CLIENT:
|
|---|
| 139 | // handle requests from client applications
|
|---|
| 140 | driver_connection_client(iid, icall);
|
|---|
| 141 | break;
|
|---|
| 142 |
|
|---|
| 143 | default:
|
|---|
| 144 | /* No such interface */
|
|---|
| 145 | ipc_answer_0(iid, ENOENT);
|
|---|
| 146 | }
|
|---|
| 147 | }
|
|---|
| 148 |
|
|---|
| 149 | bool child_device_register(device_t *child, device_t *parent)
|
|---|
| 150 | {
|
|---|
| 151 | printf("%s: child_device_register\n", driver->name);
|
|---|
| 152 |
|
|---|
| 153 | assert(NULL != child->name);
|
|---|
| 154 |
|
|---|
| 155 | if (devman_child_device_register(child->name, &child->match_ids, parent->handle, &child->handle)) {
|
|---|
| 156 | // TODO initialize child device
|
|---|
| 157 | return true;
|
|---|
| 158 | }
|
|---|
| 159 | return false;
|
|---|
| 160 | }
|
|---|
| 161 |
|
|---|
| 162 | int driver_main(driver_t *drv)
|
|---|
| 163 | {
|
|---|
| 164 | // remember the driver structure - driver_ops will be called by generic handler for incoming connections
|
|---|
| 165 | driver = drv;
|
|---|
| 166 |
|
|---|
| 167 | // register driver by device manager with generic handler for incoming connections
|
|---|
| 168 | devman_driver_register(driver->name, driver_connection);
|
|---|
| 169 |
|
|---|
| 170 | async_manager();
|
|---|
| 171 |
|
|---|
| 172 | // Never reached
|
|---|
| 173 | return 0;
|
|---|
| 174 | }
|
|---|
| 175 |
|
|---|
| 176 | /**
|
|---|
| 177 | * @}
|
|---|
| 178 | */ |
|---|