source: mainline/uspace/drv/rootpc/rootpc.c@ f483a15

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

Fix format specifiers.

  • Property mode set to 100644
File size: 4.8 KB
Line 
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 root_pc PC platform driver.
31 * @brief HelenOS PC platform driver.
32 * @{
33 */
34
35/** @file
36 */
37
38#include <assert.h>
39#include <stdio.h>
40#include <errno.h>
41#include <bool.h>
42#include <fibril_synch.h>
43#include <stdlib.h>
44#include <str.h>
45#include <ctype.h>
46#include <macros.h>
47
48#include <ddf/driver.h>
49#include <devman.h>
50#include <ipc/devman.h>
51#include <ipc/dev_iface.h>
52#include <ops/hw_res.h>
53#include <device/hw_res.h>
54
55#define NAME "rootpc"
56
57/** Obtain function soft-state from DDF function node */
58#define ROOTPC_FUN(fnode) ((rootpc_fun_t *) (fnode)->driver_data)
59
60typedef struct rootpc_fun {
61 hw_resource_list_t hw_resources;
62} rootpc_fun_t;
63
64static int rootpc_add_device(ddf_dev_t *dev);
65static void root_pc_init(void);
66
67/** The root device driver's standard operations. */
68static driver_ops_t rootpc_ops = {
69 .add_device = &rootpc_add_device
70};
71
72/** The root device driver structure. */
73static driver_t rootpc_driver = {
74 .name = NAME,
75 .driver_ops = &rootpc_ops
76};
77
78static hw_resource_t pci_conf_regs = {
79 .type = IO_RANGE,
80 .res.io_range = {
81 .address = 0xCF8,
82 .size = 8,
83 .endianness = LITTLE_ENDIAN
84 }
85};
86
87static rootpc_fun_t pci_data = {
88 .hw_resources = {
89 1,
90 &pci_conf_regs
91 }
92};
93
94static hw_resource_list_t *rootpc_get_resources(ddf_fun_t *fnode)
95{
96 rootpc_fun_t *fun = ROOTPC_FUN(fnode);
97
98 assert(fun != NULL);
99 return &fun->hw_resources;
100}
101
102static bool rootpc_enable_interrupt(ddf_fun_t *fun)
103{
104 /* TODO */
105
106 return false;
107}
108
109static hw_res_ops_t fun_hw_res_ops = {
110 &rootpc_get_resources,
111 &rootpc_enable_interrupt
112};
113
114/* Initialized in root_pc_init() function. */
115static ddf_dev_ops_t rootpc_fun_ops;
116
117static bool
118rootpc_add_fun(ddf_dev_t *dev, const char *name, const char *str_match_id,
119 rootpc_fun_t *fun)
120{
121 printf(NAME ": adding new function '%s'.\n", name);
122
123 ddf_fun_t *fnode = NULL;
124 match_id_t *match_id = NULL;
125
126 /* Create new device. */
127 fnode = ddf_fun_create(dev, fun_inner, name);
128 if (fnode == NULL)
129 goto failure;
130
131 fnode->driver_data = fun;
132
133 /* Initialize match id list */
134 match_id = create_match_id();
135 if (match_id == NULL)
136 goto failure;
137
138 match_id->id = str_match_id;
139 match_id->score = 100;
140 add_match_id(&fnode->match_ids, match_id);
141
142 /* Set provided operations to the device. */
143 fnode->ops = &rootpc_fun_ops;
144
145 /* Register function. */
146 if (ddf_fun_bind(fnode) != EOK) {
147 printf(NAME ": error binding function %s.\n", name);
148 goto failure;
149 }
150
151 return true;
152
153failure:
154 if (match_id != NULL)
155 match_id->id = NULL;
156
157 if (fnode != NULL)
158 ddf_fun_destroy(fnode);
159
160 printf(NAME ": failed to add function '%s'.\n", name);
161
162 return false;
163}
164
165static bool rootpc_add_functions(ddf_dev_t *dev)
166{
167 return rootpc_add_fun(dev, "pci0", "intel_pci", &pci_data);
168}
169
170/** Get the root device.
171 *
172 * @param dev The device which is root of the whole device tree (both
173 * of HW and pseudo devices).
174 * @return Zero on success, negative error number otherwise.
175 */
176static int rootpc_add_device(ddf_dev_t *dev)
177{
178 printf(NAME ": rootpc_add_device, device handle = %d\n",
179 (int)dev->handle);
180
181 /* Register functions. */
182 if (!rootpc_add_functions(dev)) {
183 printf(NAME ": failed to add functions for PC platform.\n");
184 }
185
186 return EOK;
187}
188
189static void root_pc_init(void)
190{
191 rootpc_fun_ops.interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops;
192}
193
194int main(int argc, char *argv[])
195{
196 printf(NAME ": HelenOS PC platform driver\n");
197 root_pc_init();
198 return ddf_driver_main(&rootpc_driver);
199}
200
201/**
202 * @}
203 */
Note: See TracBrowser for help on using the repository browser.