source: mainline/uspace/drv/infrastructure/rootpc/rootpc.c@ 690d2e7

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 690d2e7 was 230385c, checked in by Jan Vesely <jano.vesely@…>, 14 years ago

pci: Setup addr port and data port separately.

We will need this for non-pc pci.

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