source: mainline/uspace/srv/hw/irc/obio/obio.c@ 11bb813

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 11bb813 was 124c061, checked in by Jakub Jermar <jakub@…>, 14 years ago

ipc_connect_to_me() now takes one extra argument to store the client task hash.

  • Property mode set to 100644
File size: 4.3 KB
Line 
1/*
2 * Copyright (c) 2009 Jakub Jermar
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/** @addtogroup obio
30 * @{
31 */
32
33/**
34 * @file obio.c
35 * @brief OBIO driver.
36 *
37 * OBIO is a short for on-board I/O. On UltraSPARC IIi and systems with U2P,
38 * there is a piece of the root PCI bus controller address space, which
39 * contains interrupt mapping and clear registers for all on-board devices.
40 * Although UltraSPARC IIi and U2P are different in general, these registers can
41 * be found at the same addresses.
42 */
43
44#include <ipc/ipc.h>
45#include <ipc/services.h>
46#include <ipc/irc.h>
47#include <ipc/ns.h>
48#include <sysinfo.h>
49#include <as.h>
50#include <ddi.h>
51#include <align.h>
52#include <bool.h>
53#include <errno.h>
54#include <async.h>
55#include <align.h>
56#include <async.h>
57#include <stdio.h>
58#include <ipc/devmap.h>
59
60#define NAME "obio"
61
62#define OBIO_SIZE 0x1898
63
64#define OBIO_IMR_BASE 0x200
65#define OBIO_IMR(ino) (OBIO_IMR_BASE + ((ino) & INO_MASK))
66
67#define OBIO_CIR_BASE 0x300
68#define OBIO_CIR(ino) (OBIO_CIR_BASE + ((ino) & INO_MASK))
69
70#define INO_MASK 0x1f
71
72static void *base_phys;
73static volatile uint64_t *base_virt;
74
75/** Handle one connection to obio.
76 *
77 * @param iid Hash of the request that opened the connection.
78 * @param icall Call data of the request that opened the connection.
79 */
80static void obio_connection(ipc_callid_t iid, ipc_call_t *icall)
81{
82 ipc_callid_t callid;
83 ipc_call_t call;
84
85 /*
86 * Answer the first IPC_M_CONNECT_ME_TO call.
87 */
88 ipc_answer_0(iid, EOK);
89
90 while (1) {
91 int inr;
92
93 callid = async_get_call(&call);
94 switch (IPC_GET_IMETHOD(call)) {
95 case IRC_ENABLE_INTERRUPT:
96 /* Noop */
97 ipc_answer_0(callid, EOK);
98 break;
99 case IRC_CLEAR_INTERRUPT:
100 inr = IPC_GET_ARG1(call);
101 base_virt[OBIO_CIR(inr & INO_MASK)] = 0;
102 ipc_answer_0(callid, EOK);
103 break;
104 default:
105 ipc_answer_0(callid, EINVAL);
106 break;
107 }
108 }
109}
110
111/** Initialize the OBIO driver.
112 *
113 * So far, the driver heavily depends on information provided by the kernel via
114 * sysinfo. In the future, there should be a standalone OBIO driver.
115 */
116static bool obio_init(void)
117{
118 sysarg_t paddr;
119
120 if (sysinfo_get_value("obio.base.physical", &paddr) != EOK) {
121 printf(NAME ": no OBIO registers found\n");
122 return false;
123 }
124
125 base_phys = (void *) paddr;
126 base_virt = as_get_mappable_page(OBIO_SIZE);
127
128 int flags = AS_AREA_READ | AS_AREA_WRITE;
129 int retval = physmem_map(base_phys, (void *) base_virt,
130 ALIGN_UP(OBIO_SIZE, PAGE_SIZE) >> PAGE_WIDTH, flags);
131
132 if (retval < 0) {
133 printf(NAME ": Error mapping OBIO registers\n");
134 return false;
135 }
136
137 printf(NAME ": OBIO registers with base at %p\n", base_phys);
138
139 async_set_client_connection(obio_connection);
140 ipc_connect_to_me(PHONE_NS, SERVICE_OBIO, 0, 0, NULL, NULL);
141
142 return true;
143}
144
145int main(int argc, char **argv)
146{
147 printf(NAME ": HelenOS OBIO driver\n");
148
149 if (!obio_init())
150 return -1;
151
152 printf(NAME ": Accepting connections\n");
153 async_manager();
154
155 /* Never reached */
156 return 0;
157}
158
159/**
160 * @}
161 */
Note: See TracBrowser for help on using the repository browser.