| [924c75e1] | 1 | /*
|
|---|
| 2 | * Copyright (c) 2010 Lenka Trochtova
|
|---|
| [0ca16307] | 3 | * Copyright (c) 2010 Vojtech Horky
|
|---|
| [68414f4a] | 4 | * Copyright (c) 2011 Jiri Svoboda
|
|---|
| [924c75e1] | 5 | * All rights reserved.
|
|---|
| 6 | *
|
|---|
| 7 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 8 | * modification, are permitted provided that the following conditions
|
|---|
| 9 | * are met:
|
|---|
| 10 | *
|
|---|
| 11 | * - Redistributions of source code must retain the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 13 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 14 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 15 | * documentation and/or other materials provided with the distribution.
|
|---|
| 16 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 17 | * derived from this software without specific prior written permission.
|
|---|
| 18 | *
|
|---|
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 29 | */
|
|---|
| 30 |
|
|---|
| 31 | /**
|
|---|
| [c16cf62] | 32 | * @defgroup root Root device driver.
|
|---|
| [924c75e1] | 33 | * @brief HelenOS root device driver.
|
|---|
| 34 | * @{
|
|---|
| 35 | */
|
|---|
| 36 |
|
|---|
| 37 | /** @file
|
|---|
| 38 | */
|
|---|
| 39 |
|
|---|
| 40 | #include <assert.h>
|
|---|
| 41 | #include <stdio.h>
|
|---|
| 42 | #include <errno.h>
|
|---|
| 43 | #include <bool.h>
|
|---|
| 44 | #include <fibril_synch.h>
|
|---|
| 45 | #include <stdlib.h>
|
|---|
| [c47e1a8] | 46 | #include <str.h>
|
|---|
| [659ca07] | 47 | #include <str_error.h>
|
|---|
| [924c75e1] | 48 | #include <ctype.h>
|
|---|
| [bda60d9] | 49 | #include <macros.h>
|
|---|
| [7e752b2] | 50 | #include <inttypes.h>
|
|---|
| [eff1f033] | 51 | #include <sysinfo.h>
|
|---|
| [924c75e1] | 52 |
|
|---|
| [af6b5157] | 53 | #include <ddf/driver.h>
|
|---|
| [fc51296] | 54 | #include <ddf/log.h>
|
|---|
| [729fa2d6] | 55 | #include <devman.h>
|
|---|
| [924c75e1] | 56 | #include <ipc/devman.h>
|
|---|
| 57 |
|
|---|
| 58 | #define NAME "root"
|
|---|
| 59 |
|
|---|
| [68414f4a] | 60 | #define PLATFORM_FUN_NAME "hw"
|
|---|
| 61 | #define PLATFORM_FUN_MATCH_ID_FMT "platform/%s"
|
|---|
| 62 | #define PLATFORM_FUN_MATCH_SCORE 100
|
|---|
| [0ca16307] | 63 |
|
|---|
| [68414f4a] | 64 | #define VIRTUAL_FUN_NAME "virt"
|
|---|
| 65 | #define VIRTUAL_FUN_MATCH_ID "rootvirt"
|
|---|
| 66 | #define VIRTUAL_FUN_MATCH_SCORE 100
|
|---|
| [6f9e7fea] | 67 |
|
|---|
| [0c0f823b] | 68 | static int root_dev_add(ddf_dev_t *dev);
|
|---|
| [deac215e] | 69 | static int root_fun_online(ddf_fun_t *fun);
|
|---|
| 70 | static int root_fun_offline(ddf_fun_t *fun);
|
|---|
| [924c75e1] | 71 |
|
|---|
| [5291411] | 72 | /** The root device driver's standard operations. */
|
|---|
| [729fa2d6] | 73 | static driver_ops_t root_ops = {
|
|---|
| [0c0f823b] | 74 | .dev_add = &root_dev_add,
|
|---|
| [deac215e] | 75 | .fun_online = &root_fun_online,
|
|---|
| 76 | .fun_offline = &root_fun_offline
|
|---|
| [729fa2d6] | 77 | };
|
|---|
| 78 |
|
|---|
| [5291411] | 79 | /** The root device driver structure. */
|
|---|
| [729fa2d6] | 80 | static driver_t root_driver = {
|
|---|
| 81 | .name = NAME,
|
|---|
| 82 | .driver_ops = &root_ops
|
|---|
| 83 | };
|
|---|
| 84 |
|
|---|
| [68414f4a] | 85 | /** Create the function which represents the root of virtual device tree.
|
|---|
| [6f9e7fea] | 86 | *
|
|---|
| [68414f4a] | 87 | * @param dev Device
|
|---|
| 88 | * @return EOK on success or negative error code
|
|---|
| [6f9e7fea] | 89 | */
|
|---|
| [83a2f43] | 90 | static int add_virtual_root_fun(ddf_dev_t *dev)
|
|---|
| [6f9e7fea] | 91 | {
|
|---|
| [659ca07] | 92 | const char *name = VIRTUAL_FUN_NAME;
|
|---|
| [83a2f43] | 93 | ddf_fun_t *fun;
|
|---|
| [659ca07] | 94 | int rc;
|
|---|
| 95 |
|
|---|
| [fc51296] | 96 | ddf_msg(LVL_DEBUG, "Adding new function for virtual devices. "
|
|---|
| [ebcb05a] | 97 | "Function node is `%s' (%d %s)", name,
|
|---|
| [68414f4a] | 98 | VIRTUAL_FUN_MATCH_SCORE, VIRTUAL_FUN_MATCH_ID);
|
|---|
| [6f9e7fea] | 99 |
|
|---|
| [659ca07] | 100 | fun = ddf_fun_create(dev, fun_inner, name);
|
|---|
| 101 | if (fun == NULL) {
|
|---|
| [ebcb05a] | 102 | ddf_msg(LVL_ERROR, "Failed creating function %s", name);
|
|---|
| [659ca07] | 103 | return ENOMEM;
|
|---|
| 104 | }
|
|---|
| [6f9e7fea] | 105 |
|
|---|
| [659ca07] | 106 | rc = ddf_fun_add_match_id(fun, VIRTUAL_FUN_MATCH_ID,
|
|---|
| 107 | VIRTUAL_FUN_MATCH_SCORE);
|
|---|
| 108 | if (rc != EOK) {
|
|---|
| [ebcb05a] | 109 | ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s",
|
|---|
| 110 | name);
|
|---|
| [659ca07] | 111 | ddf_fun_destroy(fun);
|
|---|
| 112 | return rc;
|
|---|
| 113 | }
|
|---|
| 114 |
|
|---|
| 115 | rc = ddf_fun_bind(fun);
|
|---|
| 116 | if (rc != EOK) {
|
|---|
| [ebcb05a] | 117 | ddf_msg(LVL_ERROR, "Failed binding function %s: %s", name,
|
|---|
| [659ca07] | 118 | str_error(rc));
|
|---|
| 119 | ddf_fun_destroy(fun);
|
|---|
| 120 | return rc;
|
|---|
| 121 | }
|
|---|
| 122 |
|
|---|
| 123 | return EOK;
|
|---|
| [6f9e7fea] | 124 | }
|
|---|
| 125 |
|
|---|
| [68414f4a] | 126 | /** Create the function which represents the root of HW device tree.
|
|---|
| [5291411] | 127 | *
|
|---|
| [68414f4a] | 128 | * @param dev Device
|
|---|
| 129 | * @return EOK on success or negative error code
|
|---|
| [66babbd] | 130 | */
|
|---|
| [83a2f43] | 131 | static int add_platform_fun(ddf_dev_t *dev)
|
|---|
| [5291411] | 132 | {
|
|---|
| [eff1f033] | 133 | char *match_id;
|
|---|
| 134 | char *platform;
|
|---|
| 135 | size_t platform_size;
|
|---|
| [659ca07] | 136 |
|
|---|
| 137 | const char *name = PLATFORM_FUN_NAME;
|
|---|
| [83a2f43] | 138 | ddf_fun_t *fun;
|
|---|
| [659ca07] | 139 | int rc;
|
|---|
| [eff1f033] | 140 |
|
|---|
| 141 | /* Get platform name from sysinfo. */
|
|---|
| 142 | platform = sysinfo_get_data("platform", &platform_size);
|
|---|
| 143 | if (platform == NULL) {
|
|---|
| [ebcb05a] | 144 | ddf_msg(LVL_ERROR, "Failed to obtain platform name.");
|
|---|
| [eff1f033] | 145 | return ENOENT;
|
|---|
| 146 | }
|
|---|
| 147 |
|
|---|
| 148 | /* Null-terminate string. */
|
|---|
| 149 | platform = realloc(platform, platform_size + 1);
|
|---|
| 150 | if (platform == NULL) {
|
|---|
| [ebcb05a] | 151 | ddf_msg(LVL_ERROR, "Memory allocation failed.");
|
|---|
| [eff1f033] | 152 | return ENOMEM;
|
|---|
| 153 | }
|
|---|
| 154 |
|
|---|
| 155 | platform[platform_size] = '\0';
|
|---|
| 156 |
|
|---|
| 157 | /* Construct match ID. */
|
|---|
| [68414f4a] | 158 | if (asprintf(&match_id, PLATFORM_FUN_MATCH_ID_FMT, platform) == -1) {
|
|---|
| [ebcb05a] | 159 | ddf_msg(LVL_ERROR, "Memory allocation failed.");
|
|---|
| [f943dd3] | 160 | free(platform);
|
|---|
| [eff1f033] | 161 | return ENOMEM;
|
|---|
| 162 | }
|
|---|
| 163 |
|
|---|
| [f943dd3] | 164 | free(platform);
|
|---|
| 165 |
|
|---|
| [68414f4a] | 166 | /* Add function. */
|
|---|
| [fc51296] | 167 | ddf_msg(LVL_DEBUG, "Adding platform function. Function node is `%s' "
|
|---|
| [ebcb05a] | 168 | " (%d %s)", PLATFORM_FUN_NAME, PLATFORM_FUN_MATCH_SCORE,
|
|---|
| [fc51296] | 169 | match_id);
|
|---|
| [eff1f033] | 170 |
|
|---|
| [659ca07] | 171 | fun = ddf_fun_create(dev, fun_inner, name);
|
|---|
| 172 | if (fun == NULL) {
|
|---|
| [ebcb05a] | 173 | ddf_msg(LVL_ERROR, "Error creating function %s", name);
|
|---|
| [f943dd3] | 174 | free(match_id);
|
|---|
| [659ca07] | 175 | return ENOMEM;
|
|---|
| 176 | }
|
|---|
| [0ca16307] | 177 |
|
|---|
| [659ca07] | 178 | rc = ddf_fun_add_match_id(fun, match_id, PLATFORM_FUN_MATCH_SCORE);
|
|---|
| 179 | if (rc != EOK) {
|
|---|
| [ebcb05a] | 180 | ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s",
|
|---|
| [fc51296] | 181 | name);
|
|---|
| [f943dd3] | 182 | free(match_id);
|
|---|
| [659ca07] | 183 | ddf_fun_destroy(fun);
|
|---|
| 184 | return rc;
|
|---|
| 185 | }
|
|---|
| 186 |
|
|---|
| [ef9460b] | 187 | free(match_id);
|
|---|
| 188 |
|
|---|
| [659ca07] | 189 | rc = ddf_fun_bind(fun);
|
|---|
| 190 | if (rc != EOK) {
|
|---|
| [ebcb05a] | 191 | ddf_msg(LVL_ERROR, "Failed binding function %s: %s", name,
|
|---|
| [659ca07] | 192 | str_error(rc));
|
|---|
| 193 | ddf_fun_destroy(fun);
|
|---|
| 194 | return rc;
|
|---|
| 195 | }
|
|---|
| 196 |
|
|---|
| 197 | return EOK;
|
|---|
| [bda60d9] | 198 | }
|
|---|
| 199 |
|
|---|
| [66babbd] | 200 | /** Get the root device.
|
|---|
| [5291411] | 201 | *
|
|---|
| 202 | * @param dev The device which is root of the whole device tree (both
|
|---|
| 203 | * of HW and pseudo devices).
|
|---|
| [66babbd] | 204 | */
|
|---|
| [0c0f823b] | 205 | static int root_dev_add(ddf_dev_t *dev)
|
|---|
| [c16cf62] | 206 | {
|
|---|
| [0c0f823b] | 207 | ddf_msg(LVL_DEBUG, "root_dev_add, device handle=%" PRIun,
|
|---|
| [7e752b2] | 208 | dev->handle);
|
|---|
| [bab6388] | 209 |
|
|---|
| [6f9e7fea] | 210 | /*
|
|---|
| 211 | * Register virtual devices root.
|
|---|
| 212 | * We ignore error occurrence because virtual devices shall not be
|
|---|
| 213 | * vital for the system.
|
|---|
| 214 | */
|
|---|
| [f943dd3] | 215 | (void) add_virtual_root_fun(dev);
|
|---|
| [6f9e7fea] | 216 |
|
|---|
| [5291411] | 217 | /* Register root device's children. */
|
|---|
| [68414f4a] | 218 | int res = add_platform_fun(dev);
|
|---|
| [5291411] | 219 | if (EOK != res)
|
|---|
| [ebcb05a] | 220 | ddf_msg(LVL_ERROR, "Failed adding child device for platform.");
|
|---|
| [bab6388] | 221 |
|
|---|
| [df747b9c] | 222 | return res;
|
|---|
| [c16cf62] | 223 | }
|
|---|
| 224 |
|
|---|
| [deac215e] | 225 | static int root_fun_online(ddf_fun_t *fun)
|
|---|
| 226 | {
|
|---|
| 227 | ddf_msg(LVL_DEBUG, "root_fun_online()");
|
|---|
| 228 | return ddf_fun_online(fun);
|
|---|
| 229 | }
|
|---|
| 230 |
|
|---|
| 231 | static int root_fun_offline(ddf_fun_t *fun)
|
|---|
| 232 | {
|
|---|
| 233 | ddf_msg(LVL_DEBUG, "root_fun_offline()");
|
|---|
| 234 | return ddf_fun_offline(fun);
|
|---|
| 235 | }
|
|---|
| 236 |
|
|---|
| [924c75e1] | 237 | int main(int argc, char *argv[])
|
|---|
| 238 | {
|
|---|
| [5291411] | 239 | printf(NAME ": HelenOS root device driver\n");
|
|---|
| [fc51296] | 240 |
|
|---|
| 241 | ddf_log_init(NAME, LVL_ERROR);
|
|---|
| [83a2f43] | 242 | return ddf_driver_main(&root_driver);
|
|---|
| [924c75e1] | 243 | }
|
|---|
| [c16cf62] | 244 |
|
|---|
| 245 | /**
|
|---|
| 246 | * @}
|
|---|
| [bda60d9] | 247 | */
|
|---|
| [5291411] | 248 |
|
|---|