source: mainline/uspace/drv/root/root.c@ 19e0560e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 19e0560e was ebcb05a, checked in by Jiri Svoboda <jiri@…>, 14 years ago

Logging functions should append newline automatically. Since one has no
choice but to end log message with a newline, there is no need to do it
manually in every invocation.

  • Property mode set to 100644
File size: 5.7 KB
RevLine 
[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
[83a2f43]68static int root_add_device(ddf_dev_t *dev);
[924c75e1]69
[5291411]70/** The root device driver's standard operations. */
[729fa2d6]71static driver_ops_t root_ops = {
72 .add_device = &root_add_device
73};
74
[5291411]75/** The root device driver structure. */
[729fa2d6]76static driver_t root_driver = {
77 .name = NAME,
78 .driver_ops = &root_ops
79};
80
[68414f4a]81/** Create the function which represents the root of virtual device tree.
[6f9e7fea]82 *
[68414f4a]83 * @param dev Device
84 * @return EOK on success or negative error code
[6f9e7fea]85 */
[83a2f43]86static int add_virtual_root_fun(ddf_dev_t *dev)
[6f9e7fea]87{
[659ca07]88 const char *name = VIRTUAL_FUN_NAME;
[83a2f43]89 ddf_fun_t *fun;
[659ca07]90 int rc;
91
[fc51296]92 ddf_msg(LVL_DEBUG, "Adding new function for virtual devices. "
[ebcb05a]93 "Function node is `%s' (%d %s)", name,
[68414f4a]94 VIRTUAL_FUN_MATCH_SCORE, VIRTUAL_FUN_MATCH_ID);
[6f9e7fea]95
[659ca07]96 fun = ddf_fun_create(dev, fun_inner, name);
97 if (fun == NULL) {
[ebcb05a]98 ddf_msg(LVL_ERROR, "Failed creating function %s", name);
[659ca07]99 return ENOMEM;
100 }
[6f9e7fea]101
[659ca07]102 rc = ddf_fun_add_match_id(fun, VIRTUAL_FUN_MATCH_ID,
103 VIRTUAL_FUN_MATCH_SCORE);
104 if (rc != EOK) {
[ebcb05a]105 ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s",
106 name);
[659ca07]107 ddf_fun_destroy(fun);
108 return rc;
109 }
110
111 rc = ddf_fun_bind(fun);
112 if (rc != EOK) {
[ebcb05a]113 ddf_msg(LVL_ERROR, "Failed binding function %s: %s", name,
[659ca07]114 str_error(rc));
115 ddf_fun_destroy(fun);
116 return rc;
117 }
118
119 return EOK;
[6f9e7fea]120}
121
[68414f4a]122/** Create the function which represents the root of HW device tree.
[5291411]123 *
[68414f4a]124 * @param dev Device
125 * @return EOK on success or negative error code
[66babbd]126 */
[83a2f43]127static int add_platform_fun(ddf_dev_t *dev)
[5291411]128{
[eff1f033]129 char *match_id;
130 char *platform;
131 size_t platform_size;
[659ca07]132
133 const char *name = PLATFORM_FUN_NAME;
[83a2f43]134 ddf_fun_t *fun;
[659ca07]135 int rc;
[eff1f033]136
137 /* Get platform name from sysinfo. */
138 platform = sysinfo_get_data("platform", &platform_size);
139 if (platform == NULL) {
[ebcb05a]140 ddf_msg(LVL_ERROR, "Failed to obtain platform name.");
[eff1f033]141 return ENOENT;
142 }
143
144 /* Null-terminate string. */
145 platform = realloc(platform, platform_size + 1);
146 if (platform == NULL) {
[ebcb05a]147 ddf_msg(LVL_ERROR, "Memory allocation failed.");
[eff1f033]148 return ENOMEM;
149 }
150
151 platform[platform_size] = '\0';
152
153 /* Construct match ID. */
[68414f4a]154 if (asprintf(&match_id, PLATFORM_FUN_MATCH_ID_FMT, platform) == -1) {
[ebcb05a]155 ddf_msg(LVL_ERROR, "Memory allocation failed.");
[eff1f033]156 return ENOMEM;
157 }
158
[68414f4a]159 /* Add function. */
[fc51296]160 ddf_msg(LVL_DEBUG, "Adding platform function. Function node is `%s' "
[ebcb05a]161 " (%d %s)", PLATFORM_FUN_NAME, PLATFORM_FUN_MATCH_SCORE,
[fc51296]162 match_id);
[eff1f033]163
[659ca07]164 fun = ddf_fun_create(dev, fun_inner, name);
165 if (fun == NULL) {
[ebcb05a]166 ddf_msg(LVL_ERROR, "Error creating function %s", name);
[659ca07]167 return ENOMEM;
168 }
[0ca16307]169
[659ca07]170 rc = ddf_fun_add_match_id(fun, match_id, PLATFORM_FUN_MATCH_SCORE);
171 if (rc != EOK) {
[ebcb05a]172 ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s",
[fc51296]173 name);
[659ca07]174 ddf_fun_destroy(fun);
175 return rc;
176 }
177
178 rc = ddf_fun_bind(fun);
179 if (rc != EOK) {
[ebcb05a]180 ddf_msg(LVL_ERROR, "Failed binding function %s: %s", name,
[659ca07]181 str_error(rc));
182 ddf_fun_destroy(fun);
183 return rc;
184 }
185
186 return EOK;
[bda60d9]187}
188
[66babbd]189/** Get the root device.
[5291411]190 *
191 * @param dev The device which is root of the whole device tree (both
192 * of HW and pseudo devices).
[66babbd]193 */
[83a2f43]194static int root_add_device(ddf_dev_t *dev)
[c16cf62]195{
[ebcb05a]196 ddf_msg(LVL_DEBUG, "root_add_device, device handle=%" PRIun,
[7e752b2]197 dev->handle);
[bab6388]198
[6f9e7fea]199 /*
200 * Register virtual devices root.
201 * We ignore error occurrence because virtual devices shall not be
202 * vital for the system.
203 */
[68414f4a]204 add_virtual_root_fun(dev);
[6f9e7fea]205
[5291411]206 /* Register root device's children. */
[68414f4a]207 int res = add_platform_fun(dev);
[5291411]208 if (EOK != res)
[ebcb05a]209 ddf_msg(LVL_ERROR, "Failed adding child device for platform.");
[bab6388]210
[df747b9c]211 return res;
[c16cf62]212}
213
[924c75e1]214int main(int argc, char *argv[])
215{
[5291411]216 printf(NAME ": HelenOS root device driver\n");
[fc51296]217
218 ddf_log_init(NAME, LVL_ERROR);
[83a2f43]219 return ddf_driver_main(&root_driver);
[924c75e1]220}
[c16cf62]221
222/**
223 * @}
[bda60d9]224 */
[5291411]225
Note: See TracBrowser for help on using the repository browser.