2 * ioapic.c IOAPIC emulation logic
4 * Copyright (c) 2004-2005 Fabrice Bellard
6 * Split the ioapic logic from apic.c
7 * Xiantao Zhang <xiantao.zhang@intel.com>
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
26 #include "qemu-timer.h"
27 #include "host-utils.h"
29 //#define DEBUG_IOAPIC
31 #define IOAPIC_NUM_PINS 0x18
32 #define IOAPIC_LVT_MASKED (1<<16)
34 #define IOAPIC_TRIGGER_EDGE 0
35 #define IOAPIC_TRIGGER_LEVEL 1
37 /*io{apic,sapic} delivery mode*/
38 #define IOAPIC_DM_FIXED 0x0
39 #define IOAPIC_DM_LOWEST_PRIORITY 0x1
40 #define IOAPIC_DM_PMI 0x2
41 #define IOAPIC_DM_NMI 0x4
42 #define IOAPIC_DM_INIT 0x5
43 #define IOAPIC_DM_SIPI 0x5
44 #define IOAPIC_DM_EXTINT 0x7
51 uint64_t ioredtbl
[IOAPIC_NUM_PINS
];
54 static void ioapic_service(IOAPICState
*s
)
59 uint8_t delivery_mode
;
66 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
69 entry
= s
->ioredtbl
[i
];
70 if (!(entry
& IOAPIC_LVT_MASKED
)) {
71 trig_mode
= ((entry
>> 15) & 1);
73 dest_mode
= (entry
>> 11) & 1;
74 delivery_mode
= (entry
>> 8) & 7;
75 polarity
= (entry
>> 13) & 1;
76 if (trig_mode
== IOAPIC_TRIGGER_EDGE
)
78 if (delivery_mode
== IOAPIC_DM_EXTINT
)
79 vector
= pic_read_irq(isa_pic
);
81 vector
= entry
& 0xff;
83 apic_deliver_irq(dest
, dest_mode
, delivery_mode
,
84 vector
, polarity
, trig_mode
);
90 void ioapic_set_irq(void *opaque
, int vector
, int level
)
92 IOAPICState
*s
= opaque
;
94 /* ISA IRQs map to GSI 1-1 except for IRQ0 which maps
95 * to GSI 2. GSI maps to ioapic 1-1. This is not
96 * the cleanest way of doing it but it should work. */
101 if (vector
>= 0 && vector
< IOAPIC_NUM_PINS
) {
102 uint32_t mask
= 1 << vector
;
103 uint64_t entry
= s
->ioredtbl
[vector
];
105 if ((entry
>> 15) & 1) {
106 /* level triggered */
123 static uint32_t ioapic_mem_readl(void *opaque
, target_phys_addr_t addr
)
125 IOAPICState
*s
= opaque
;
132 } else if (addr
== 0x10) {
133 switch (s
->ioregsel
) {
138 val
= 0x11 | ((IOAPIC_NUM_PINS
- 1) << 16); /* version 0x11 */
144 index
= (s
->ioregsel
- 0x10) >> 1;
145 if (index
>= 0 && index
< IOAPIC_NUM_PINS
) {
147 val
= s
->ioredtbl
[index
] >> 32;
149 val
= s
->ioredtbl
[index
] & 0xffffffff;
153 printf("I/O APIC read: %08x = %08x\n", s
->ioregsel
, val
);
159 static void ioapic_mem_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
161 IOAPICState
*s
= opaque
;
168 } else if (addr
== 0x10) {
170 printf("I/O APIC write: %08x = %08x\n", s
->ioregsel
, val
);
172 switch (s
->ioregsel
) {
174 s
->id
= (val
>> 24) & 0xff;
180 index
= (s
->ioregsel
- 0x10) >> 1;
181 if (index
>= 0 && index
< IOAPIC_NUM_PINS
) {
182 if (s
->ioregsel
& 1) {
183 s
->ioredtbl
[index
] &= 0xffffffff;
184 s
->ioredtbl
[index
] |= (uint64_t)val
<< 32;
186 s
->ioredtbl
[index
] &= ~0xffffffffULL
;
187 s
->ioredtbl
[index
] |= val
;
195 static void ioapic_save(QEMUFile
*f
, void *opaque
)
197 IOAPICState
*s
= opaque
;
200 qemu_put_8s(f
, &s
->id
);
201 qemu_put_8s(f
, &s
->ioregsel
);
202 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
203 qemu_put_be64s(f
, &s
->ioredtbl
[i
]);
207 static int ioapic_load(QEMUFile
*f
, void *opaque
, int version_id
)
209 IOAPICState
*s
= opaque
;
215 qemu_get_8s(f
, &s
->id
);
216 qemu_get_8s(f
, &s
->ioregsel
);
217 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
218 qemu_get_be64s(f
, &s
->ioredtbl
[i
]);
223 static void ioapic_reset(void *opaque
)
225 IOAPICState
*s
= opaque
;
228 memset(s
, 0, sizeof(*s
));
229 for(i
= 0; i
< IOAPIC_NUM_PINS
; i
++)
230 s
->ioredtbl
[i
] = 1 << 16; /* mask LVT */
233 static CPUReadMemoryFunc
*ioapic_mem_read
[3] = {
239 static CPUWriteMemoryFunc
*ioapic_mem_write
[3] = {
245 IOAPICState
*ioapic_init(void)
250 s
= qemu_mallocz(sizeof(IOAPICState
));
253 io_memory
= cpu_register_io_memory(ioapic_mem_read
,
254 ioapic_mem_write
, s
);
255 cpu_register_physical_memory(0xfec00000, 0x1000, io_memory
);
257 register_savevm("ioapic", 0, 1, ioapic_save
, ioapic_load
, s
);
258 qemu_register_reset(ioapic_reset
, s
);