source: mainline/uspace/srv/hw/irc/apic/apic.c@ df02460

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

Fix includes.

  • Property mode set to 100644
File size: 5.6 KB
RevLine 
[3e5a814]1/*
[acc7ce4]2 * Copyright (c) 2011 Martin Decky
[3e5a814]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
[acc7ce4]29/** @addtogroup apic
[3e5a814]30 * @{
[acc7ce4]31 */
[3e5a814]32
33/**
[acc7ce4]34 * @file apic.c
35 * @brief APIC driver.
[3e5a814]36 */
37
38#include <ipc/services.h>
[acc7ce4]39#include <ipc/irc.h>
[79ae36dd]40#include <ns.h>
[3e5a814]41#include <sysinfo.h>
42#include <as.h>
43#include <ddi.h>
44#include <bool.h>
45#include <errno.h>
46#include <async.h>
[df02460]47#include <stdio.h>
[3e5a814]48
[acc7ce4]49#define NAME "apic"
[3e5a814]50
[f5d51de]51#define APIC_MAX_IRQ 15
52
53#define IOREGSEL (0x00U / sizeof(uint32_t))
54#define IOWIN (0x10U / sizeof(uint32_t))
55
56#define IOREDTBL 0x10U
57
58/** I/O Register Select Register. */
59typedef union {
60 uint32_t value;
61 struct {
62 uint8_t reg_addr; /**< APIC Register Address. */
63 unsigned int : 24; /**< Reserved. */
64 } __attribute__ ((packed));
65} io_regsel_t;
66
67/** I/O Redirection Register. */
68typedef struct io_redirection_reg {
69 union {
70 uint32_t lo;
71 struct {
72 uint8_t intvec; /**< Interrupt Vector. */
73 unsigned int delmod : 3; /**< Delivery Mode. */
74 unsigned int destmod : 1; /**< Destination mode. */
75 unsigned int delivs : 1; /**< Delivery status (RO). */
76 unsigned int intpol : 1; /**< Interrupt Input Pin Polarity. */
77 unsigned int irr : 1; /**< Remote IRR (RO). */
78 unsigned int trigger_mode : 1; /**< Trigger Mode. */
79 unsigned int masked : 1; /**< Interrupt Mask. */
80 unsigned int : 15; /**< Reserved. */
81 } __attribute__ ((packed));
82 };
83 union {
84 uint32_t hi;
85 struct {
86 unsigned int : 24; /**< Reserved. */
87 uint8_t dest : 8; /**< Destination Field. */
88 } __attribute__ ((packed));
89 };
90} __attribute__ ((packed)) io_redirection_reg_t;
91
92// FIXME: get the address from the kernel
93#define IO_APIC_BASE 0xfec00000UL
94#define IO_APIC_SIZE 20
95
96ioport32_t *io_apic = NULL;
97
98/** Read from IO APIC register.
99 *
100 * @param address IO APIC register address.
101 *
102 * @return Content of the addressed IO APIC register.
103 *
104 */
105static uint32_t io_apic_read(uint8_t address)
106{
107 io_regsel_t regsel;
108
109 regsel.value = io_apic[IOREGSEL];
110 regsel.reg_addr = address;
111 io_apic[IOREGSEL] = regsel.value;
112 return io_apic[IOWIN];
113}
114
115/** Write to IO APIC register.
116 *
117 * @param address IO APIC register address.
118 * @param val Content to be written to the addressed IO APIC register.
119 *
120 */
121static void io_apic_write(uint8_t address, uint32_t val)
122{
123 io_regsel_t regsel;
124
125 regsel.value = io_apic[IOREGSEL];
126 regsel.reg_addr = address;
127 io_apic[IOREGSEL] = regsel.value;
128 io_apic[IOWIN] = val;
129}
130
131static int irq_to_pin(int irq)
132{
133 // FIXME: get the map from the kernel, even though this may work
134 // for simple cases
135 return irq;
136}
137
[acc7ce4]138static int apic_enable_irq(sysarg_t irq)
139{
[f5d51de]140 io_redirection_reg_t reg;
141
142 if (irq > APIC_MAX_IRQ)
143 return ELIMIT;
144
145 int pin = irq_to_pin(irq);
146 if (pin == -1)
147 return ENOENT;
148
149 reg.lo = io_apic_read((uint8_t) (IOREDTBL + pin * 2));
150 reg.masked = false;
151 io_apic_write((uint8_t) (IOREDTBL + pin * 2), reg.lo);
152
153 return EOK;
[acc7ce4]154}
[3e5a814]155
[acc7ce4]156/** Handle one connection to APIC.
157 *
158 * @param iid Hash of the request that opened the connection.
159 * @param icall Call data of the request that opened the connection.
[9934f7d]160 * @param arg Local argument.
[3e5a814]161 */
[9934f7d]162static void apic_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
[3e5a814]163{
164 ipc_callid_t callid;
165 ipc_call_t call;
[acc7ce4]166
[3e5a814]167 /*
168 * Answer the first IPC_M_CONNECT_ME_TO call.
169 */
[ffa2c8ef]170 async_answer_0(iid, EOK);
[3e5a814]171
[acc7ce4]172 while (true) {
[3e5a814]173 callid = async_get_call(&call);
[acc7ce4]174
[79ae36dd]175 if (!IPC_GET_IMETHOD(call)) {
176 /* The other side has hung up. */
177 async_answer_0(callid, EOK);
178 return;
179 }
180
[228e490]181 switch (IPC_GET_IMETHOD(call)) {
[acc7ce4]182 case IRC_ENABLE_INTERRUPT:
[ffa2c8ef]183 async_answer_0(callid, apic_enable_irq(IPC_GET_ARG1(call)));
[acc7ce4]184 break;
185 case IRC_CLEAR_INTERRUPT:
186 /* Noop */
[ffa2c8ef]187 async_answer_0(callid, EOK);
[3e5a814]188 break;
189 default:
[ffa2c8ef]190 async_answer_0(callid, EINVAL);
[3e5a814]191 break;
192 }
193 }
194}
195
[acc7ce4]196/** Initialize the APIC driver.
[3e5a814]197 *
198 */
[acc7ce4]199static bool apic_init(void)
[3e5a814]200{
[acc7ce4]201 sysarg_t apic;
[3e5a814]202
[acc7ce4]203 if ((sysinfo_get_value("apic", &apic) != EOK) || (!apic)) {
[79ae36dd]204 printf("%s: No APIC found\n", NAME);
[3e5a814]205 return false;
206 }
[f5d51de]207
208 if (pio_enable((void *) IO_APIC_BASE, IO_APIC_SIZE,
209 (void **) &io_apic) != EOK)
210 return false;
[3e5a814]211
[acc7ce4]212 async_set_client_connection(apic_connection);
[57d129e]213 service_register(SERVICE_IRC);
[3e5a814]214
215 return true;
216}
217
218int main(int argc, char **argv)
219{
[79ae36dd]220 printf("%s: HelenOS APIC driver\n", NAME);
[3e5a814]221
[acc7ce4]222 if (!apic_init())
[3e5a814]223 return -1;
224
[79ae36dd]225 printf("%s: Accepting connections\n", NAME);
226 task_retval(0);
[3e5a814]227 async_manager();
[acc7ce4]228
[3e5a814]229 /* Never reached */
230 return 0;
231}
232
233/**
234 * @}
[acc7ce4]235 */
Note: See TracBrowser for help on using the repository browser.