1 | /*
|
---|
2 | * Copyright (c) 2011 Martin Decky
|
---|
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 apic
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 |
|
---|
33 | /**
|
---|
34 | * @file apic.c
|
---|
35 | * @brief APIC driver.
|
---|
36 | */
|
---|
37 |
|
---|
38 | #include <ipc/ipc.h>
|
---|
39 | #include <ipc/services.h>
|
---|
40 | #include <ipc/irc.h>
|
---|
41 | #include <ipc/ns.h>
|
---|
42 | #include <sysinfo.h>
|
---|
43 | #include <as.h>
|
---|
44 | #include <ddi.h>
|
---|
45 | #include <libarch/ddi.h>
|
---|
46 | #include <align.h>
|
---|
47 | #include <bool.h>
|
---|
48 | #include <errno.h>
|
---|
49 | #include <async.h>
|
---|
50 | #include <align.h>
|
---|
51 | #include <async.h>
|
---|
52 | #include <stdio.h>
|
---|
53 | #include <ipc/devmap.h>
|
---|
54 |
|
---|
55 | #define NAME "apic"
|
---|
56 |
|
---|
57 | static int apic_enable_irq(sysarg_t irq)
|
---|
58 | {
|
---|
59 | // FIXME: TODO
|
---|
60 | return ENOTSUP;
|
---|
61 | }
|
---|
62 |
|
---|
63 | /** Handle one connection to APIC.
|
---|
64 | *
|
---|
65 | * @param iid Hash of the request that opened the connection.
|
---|
66 | * @param icall Call data of the request that opened the connection.
|
---|
67 | *
|
---|
68 | */
|
---|
69 | static void apic_connection(ipc_callid_t iid, ipc_call_t *icall)
|
---|
70 | {
|
---|
71 | ipc_callid_t callid;
|
---|
72 | ipc_call_t call;
|
---|
73 |
|
---|
74 | /*
|
---|
75 | * Answer the first IPC_M_CONNECT_ME_TO call.
|
---|
76 | */
|
---|
77 | ipc_answer_0(iid, EOK);
|
---|
78 |
|
---|
79 | while (true) {
|
---|
80 | callid = async_get_call(&call);
|
---|
81 |
|
---|
82 | switch (IPC_GET_IMETHOD(call)) {
|
---|
83 | case IRC_ENABLE_INTERRUPT:
|
---|
84 | ipc_answer_0(callid, apic_enable_irq(IPC_GET_ARG1(call)));
|
---|
85 | break;
|
---|
86 | case IRC_CLEAR_INTERRUPT:
|
---|
87 | /* Noop */
|
---|
88 | ipc_answer_0(callid, EOK);
|
---|
89 | break;
|
---|
90 | default:
|
---|
91 | ipc_answer_0(callid, EINVAL);
|
---|
92 | break;
|
---|
93 | }
|
---|
94 | }
|
---|
95 | }
|
---|
96 |
|
---|
97 | /** Initialize the APIC driver.
|
---|
98 | *
|
---|
99 | */
|
---|
100 | static bool apic_init(void)
|
---|
101 | {
|
---|
102 | sysarg_t apic;
|
---|
103 |
|
---|
104 | if ((sysinfo_get_value("apic", &apic) != EOK) || (!apic)) {
|
---|
105 | printf(NAME ": No APIC found\n");
|
---|
106 | return false;
|
---|
107 | }
|
---|
108 |
|
---|
109 | async_set_client_connection(apic_connection);
|
---|
110 | sysarg_t phonead;
|
---|
111 | ipc_connect_to_me(PHONE_NS, SERVICE_APIC, 0, 0, &phonead);
|
---|
112 |
|
---|
113 | return true;
|
---|
114 | }
|
---|
115 |
|
---|
116 | int main(int argc, char **argv)
|
---|
117 | {
|
---|
118 | printf(NAME ": HelenOS APIC driver\n");
|
---|
119 |
|
---|
120 | if (!apic_init())
|
---|
121 | return -1;
|
---|
122 |
|
---|
123 | printf(NAME ": Accepting connections\n");
|
---|
124 | async_manager();
|
---|
125 |
|
---|
126 | /* Never reached */
|
---|
127 | return 0;
|
---|
128 | }
|
---|
129 |
|
---|
130 | /**
|
---|
131 | * @}
|
---|
132 | */
|
---|