blob: d8f56c8b7605406a0d984a1e15cd4158e93a0697 [file] [log] [blame]
bellard574bbf72005-01-03 23:27:31 +00001/*
2 * APIC support
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard574bbf72005-01-03 23:27:31 +00004 * Copyright (c) 2004-2005 Fabrice Bellard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>
bellard574bbf72005-01-03 23:27:31 +000018 */
pbrook87ecb682007-11-17 17:14:51 +000019#include "hw.h"
Blue Swirlaa28b9b2010-03-21 19:46:26 +000020#include "apic.h"
Jan Kiszka0280b572011-02-03 22:54:11 +010021#include "ioapic.h"
pbrook87ecb682007-11-17 17:14:51 +000022#include "qemu-timer.h"
aurel32bb7e7292008-10-12 20:16:03 +000023#include "host-utils.h"
Blue Swirl8546b092010-06-19 07:44:07 +000024#include "sysbus.h"
Blue Swirld8023f32010-10-20 16:41:28 +000025#include "trace.h"
bellard574bbf72005-01-03 23:27:31 +000026
27/* APIC Local Vector Table */
28#define APIC_LVT_TIMER 0
29#define APIC_LVT_THERMAL 1
30#define APIC_LVT_PERFORM 2
31#define APIC_LVT_LINT0 3
32#define APIC_LVT_LINT1 4
33#define APIC_LVT_ERROR 5
34#define APIC_LVT_NB 6
35
36/* APIC delivery modes */
37#define APIC_DM_FIXED 0
38#define APIC_DM_LOWPRI 1
39#define APIC_DM_SMI 2
40#define APIC_DM_NMI 4
41#define APIC_DM_INIT 5
42#define APIC_DM_SIPI 6
43#define APIC_DM_EXTINT 7
44
bellardd592d302005-07-23 19:05:37 +000045/* APIC destination mode */
46#define APIC_DESTMODE_FLAT 0xf
47#define APIC_DESTMODE_CLUSTER 1
48
bellard574bbf72005-01-03 23:27:31 +000049#define APIC_TRIGGER_EDGE 0
50#define APIC_TRIGGER_LEVEL 1
51
52#define APIC_LVT_TIMER_PERIODIC (1<<17)
53#define APIC_LVT_MASKED (1<<16)
54#define APIC_LVT_LEVEL_TRIGGER (1<<15)
55#define APIC_LVT_REMOTE_IRR (1<<14)
56#define APIC_INPUT_POLARITY (1<<13)
57#define APIC_SEND_PENDING (1<<12)
58
59#define ESR_ILLEGAL_ADDRESS (1 << 7)
60
Jan Kiszka0280b572011-02-03 22:54:11 +010061#define APIC_SV_DIRECTED_IO (1<<12)
62#define APIC_SV_ENABLE (1<<8)
bellard574bbf72005-01-03 23:27:31 +000063
bellardd3e9db92005-12-17 01:27:28 +000064#define MAX_APICS 255
65#define MAX_APIC_WORDS 8
66
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +030067/* Intel APIC constants: from include/asm/msidef.h */
68#define MSI_DATA_VECTOR_SHIFT 0
69#define MSI_DATA_VECTOR_MASK 0x000000ff
70#define MSI_DATA_DELIVERY_MODE_SHIFT 8
71#define MSI_DATA_TRIGGER_SHIFT 15
72#define MSI_DATA_LEVEL_SHIFT 14
73#define MSI_ADDR_DEST_MODE_SHIFT 2
74#define MSI_ADDR_DEST_ID_SHIFT 12
75#define MSI_ADDR_DEST_ID_MASK 0x00ffff0
76
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +030077#define MSI_ADDR_SIZE 0x100000
78
Blue Swirl92a16d72010-06-19 07:47:42 +000079typedef struct APICState APICState;
80
Blue Swirlcf6d64b2010-06-19 10:42:08 +030081struct APICState {
Blue Swirl8546b092010-06-19 07:44:07 +000082 SysBusDevice busdev;
Avi Kivity312b4232011-08-15 17:17:16 +030083 MemoryRegion io_memory;
Blue Swirl8546b092010-06-19 07:44:07 +000084 void *cpu_env;
bellard574bbf72005-01-03 23:27:31 +000085 uint32_t apicbase;
86 uint8_t id;
bellardd592d302005-07-23 19:05:37 +000087 uint8_t arb_id;
bellard574bbf72005-01-03 23:27:31 +000088 uint8_t tpr;
89 uint32_t spurious_vec;
bellardd592d302005-07-23 19:05:37 +000090 uint8_t log_dest;
91 uint8_t dest_mode;
bellard574bbf72005-01-03 23:27:31 +000092 uint32_t isr[8]; /* in service register */
93 uint32_t tmr[8]; /* trigger mode register */
94 uint32_t irr[8]; /* interrupt request register */
95 uint32_t lvt[APIC_LVT_NB];
96 uint32_t esr; /* error register */
97 uint32_t icr[2];
98
99 uint32_t divide_conf;
100 int count_shift;
101 uint32_t initial_count;
102 int64_t initial_count_load_time, next_time;
Gleb Natapov678e12c2009-06-10 15:40:48 +0300103 uint32_t idx;
bellard574bbf72005-01-03 23:27:31 +0000104 QEMUTimer *timer;
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300105 int sipi_vector;
106 int wait_for_sipi;
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300107};
bellard574bbf72005-01-03 23:27:31 +0000108
bellardd3e9db92005-12-17 01:27:28 +0000109static APICState *local_apics[MAX_APICS + 1];
aliguori73822ec2009-01-15 20:11:34 +0000110static int apic_irq_delivered;
111
bellardd592d302005-07-23 19:05:37 +0000112static void apic_set_irq(APICState *s, int vector_num, int trigger_mode);
113static void apic_update_irq(APICState *s);
aliguori610626a2009-03-12 20:25:12 +0000114static void apic_get_delivery_bitmask(uint32_t *deliver_bitmask,
115 uint8_t dest, uint8_t dest_mode);
bellardd592d302005-07-23 19:05:37 +0000116
aurel323b63c042008-12-06 10:46:35 +0000117/* Find first bit starting from msb */
118static int fls_bit(uint32_t value)
119{
120 return 31 - clz32(value);
121}
122
aurel32e95f5492008-10-12 00:53:17 +0000123/* Find first bit starting from lsb */
bellardd3e9db92005-12-17 01:27:28 +0000124static int ffs_bit(uint32_t value)
125{
aurel32bb7e7292008-10-12 20:16:03 +0000126 return ctz32(value);
bellardd3e9db92005-12-17 01:27:28 +0000127}
128
129static inline void set_bit(uint32_t *tab, int index)
130{
131 int i, mask;
132 i = index >> 5;
133 mask = 1 << (index & 0x1f);
134 tab[i] |= mask;
135}
136
137static inline void reset_bit(uint32_t *tab, int index)
138{
139 int i, mask;
140 i = index >> 5;
141 mask = 1 << (index & 0x1f);
142 tab[i] &= ~mask;
143}
144
aliguori73822ec2009-01-15 20:11:34 +0000145static inline int get_bit(uint32_t *tab, int index)
146{
147 int i, mask;
148 i = index >> 5;
149 mask = 1 << (index & 0x1f);
150 return !!(tab[i] & mask);
151}
152
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300153static void apic_local_deliver(APICState *s, int vector)
aurel32a5b38b52008-04-13 16:08:30 +0000154{
aurel32a5b38b52008-04-13 16:08:30 +0000155 uint32_t lvt = s->lvt[vector];
156 int trigger_mode;
157
Blue Swirld8023f32010-10-20 16:41:28 +0000158 trace_apic_local_deliver(vector, (lvt >> 8) & 7);
159
aurel32a5b38b52008-04-13 16:08:30 +0000160 if (lvt & APIC_LVT_MASKED)
161 return;
162
163 switch ((lvt >> 8) & 7) {
164 case APIC_DM_SMI:
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300165 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_SMI);
aurel32a5b38b52008-04-13 16:08:30 +0000166 break;
167
168 case APIC_DM_NMI:
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300169 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_NMI);
aurel32a5b38b52008-04-13 16:08:30 +0000170 break;
171
172 case APIC_DM_EXTINT:
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300173 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_HARD);
aurel32a5b38b52008-04-13 16:08:30 +0000174 break;
175
176 case APIC_DM_FIXED:
177 trigger_mode = APIC_TRIGGER_EDGE;
178 if ((vector == APIC_LVT_LINT0 || vector == APIC_LVT_LINT1) &&
179 (lvt & APIC_LVT_LEVEL_TRIGGER))
180 trigger_mode = APIC_TRIGGER_LEVEL;
181 apic_set_irq(s, lvt & 0xff, trigger_mode);
182 }
183}
184
Blue Swirl92a16d72010-06-19 07:47:42 +0000185void apic_deliver_pic_intr(DeviceState *d, int level)
aurel321a7de942008-08-21 03:14:52 +0000186{
Blue Swirl92a16d72010-06-19 07:47:42 +0000187 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
188
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300189 if (level) {
190 apic_local_deliver(s, APIC_LVT_LINT0);
191 } else {
aurel321a7de942008-08-21 03:14:52 +0000192 uint32_t lvt = s->lvt[APIC_LVT_LINT0];
193
194 switch ((lvt >> 8) & 7) {
195 case APIC_DM_FIXED:
196 if (!(lvt & APIC_LVT_LEVEL_TRIGGER))
197 break;
198 reset_bit(s->irr, lvt & 0xff);
199 /* fall through */
200 case APIC_DM_EXTINT:
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300201 cpu_reset_interrupt(s->cpu_env, CPU_INTERRUPT_HARD);
aurel321a7de942008-08-21 03:14:52 +0000202 break;
203 }
204 }
205}
206
bellardd3e9db92005-12-17 01:27:28 +0000207#define foreach_apic(apic, deliver_bitmask, code) \
208{\
209 int __i, __j, __mask;\
210 for(__i = 0; __i < MAX_APIC_WORDS; __i++) {\
211 __mask = deliver_bitmask[__i];\
212 if (__mask) {\
213 for(__j = 0; __j < 32; __j++) {\
214 if (__mask & (1 << __j)) {\
215 apic = local_apics[__i * 32 + __j];\
216 if (apic) {\
217 code;\
218 }\
219 }\
220 }\
221 }\
222 }\
223}
224
ths5fafdf22007-09-16 21:08:06 +0000225static void apic_bus_deliver(const uint32_t *deliver_bitmask,
Jan Kiszka1f6f4082011-08-22 17:46:31 +0200226 uint8_t delivery_mode, uint8_t vector_num,
bellardd592d302005-07-23 19:05:37 +0000227 uint8_t trigger_mode)
228{
229 APICState *apic_iter;
230
231 switch (delivery_mode) {
232 case APIC_DM_LOWPRI:
bellard8dd69b82005-11-23 20:59:44 +0000233 /* XXX: search for focus processor, arbitration */
bellardd3e9db92005-12-17 01:27:28 +0000234 {
235 int i, d;
236 d = -1;
237 for(i = 0; i < MAX_APIC_WORDS; i++) {
238 if (deliver_bitmask[i]) {
239 d = i * 32 + ffs_bit(deliver_bitmask[i]);
240 break;
241 }
242 }
243 if (d >= 0) {
244 apic_iter = local_apics[d];
245 if (apic_iter) {
246 apic_set_irq(apic_iter, vector_num, trigger_mode);
247 }
248 }
bellard8dd69b82005-11-23 20:59:44 +0000249 }
bellardd3e9db92005-12-17 01:27:28 +0000250 return;
bellard8dd69b82005-11-23 20:59:44 +0000251
bellardd592d302005-07-23 19:05:37 +0000252 case APIC_DM_FIXED:
bellardd592d302005-07-23 19:05:37 +0000253 break;
254
255 case APIC_DM_SMI:
aurel32e2eb9d32008-04-13 16:08:23 +0000256 foreach_apic(apic_iter, deliver_bitmask,
257 cpu_interrupt(apic_iter->cpu_env, CPU_INTERRUPT_SMI) );
258 return;
259
bellardd592d302005-07-23 19:05:37 +0000260 case APIC_DM_NMI:
aurel32e2eb9d32008-04-13 16:08:23 +0000261 foreach_apic(apic_iter, deliver_bitmask,
262 cpu_interrupt(apic_iter->cpu_env, CPU_INTERRUPT_NMI) );
263 return;
bellardd592d302005-07-23 19:05:37 +0000264
265 case APIC_DM_INIT:
266 /* normal INIT IPI sent to processors */
ths5fafdf22007-09-16 21:08:06 +0000267 foreach_apic(apic_iter, deliver_bitmask,
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300268 cpu_interrupt(apic_iter->cpu_env, CPU_INTERRUPT_INIT) );
bellardd592d302005-07-23 19:05:37 +0000269 return;
ths3b46e622007-09-17 08:09:54 +0000270
bellardd592d302005-07-23 19:05:37 +0000271 case APIC_DM_EXTINT:
bellardb1fc0342005-07-23 21:43:15 +0000272 /* handled in I/O APIC code */
bellardd592d302005-07-23 19:05:37 +0000273 break;
274
275 default:
276 return;
277 }
278
ths5fafdf22007-09-16 21:08:06 +0000279 foreach_apic(apic_iter, deliver_bitmask,
bellardd3e9db92005-12-17 01:27:28 +0000280 apic_set_irq(apic_iter, vector_num, trigger_mode) );
bellardd592d302005-07-23 19:05:37 +0000281}
bellard574bbf72005-01-03 23:27:31 +0000282
Jan Kiszka1f6f4082011-08-22 17:46:31 +0200283void apic_deliver_irq(uint8_t dest, uint8_t dest_mode, uint8_t delivery_mode,
284 uint8_t vector_num, uint8_t trigger_mode)
aliguori610626a2009-03-12 20:25:12 +0000285{
286 uint32_t deliver_bitmask[MAX_APIC_WORDS];
287
Blue Swirld8023f32010-10-20 16:41:28 +0000288 trace_apic_deliver_irq(dest, dest_mode, delivery_mode, vector_num,
Jan Kiszka1f6f4082011-08-22 17:46:31 +0200289 trigger_mode);
Blue Swirld8023f32010-10-20 16:41:28 +0000290
aliguori610626a2009-03-12 20:25:12 +0000291 apic_get_delivery_bitmask(deliver_bitmask, dest, dest_mode);
Jan Kiszka1f6f4082011-08-22 17:46:31 +0200292 apic_bus_deliver(deliver_bitmask, delivery_mode, vector_num, trigger_mode);
aliguori610626a2009-03-12 20:25:12 +0000293}
294
Blue Swirl92a16d72010-06-19 07:47:42 +0000295void cpu_set_apic_base(DeviceState *d, uint64_t val)
bellard574bbf72005-01-03 23:27:31 +0000296{
Blue Swirl92a16d72010-06-19 07:47:42 +0000297 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
298
Blue Swirld8023f32010-10-20 16:41:28 +0000299 trace_cpu_set_apic_base(val);
300
aurel322c7c13d2009-04-08 22:56:26 +0000301 if (!s)
302 return;
ths5fafdf22007-09-16 21:08:06 +0000303 s->apicbase = (val & 0xfffff000) |
bellard574bbf72005-01-03 23:27:31 +0000304 (s->apicbase & (MSR_IA32_APICBASE_BSP | MSR_IA32_APICBASE_ENABLE));
305 /* if disabled, cannot be enabled again */
306 if (!(val & MSR_IA32_APICBASE_ENABLE)) {
307 s->apicbase &= ~MSR_IA32_APICBASE_ENABLE;
Blue Swirl0e26b7b2010-06-19 10:42:34 +0300308 cpu_clear_apic_feature(s->cpu_env);
bellard574bbf72005-01-03 23:27:31 +0000309 s->spurious_vec &= ~APIC_SV_ENABLE;
310 }
311}
312
Blue Swirl92a16d72010-06-19 07:47:42 +0000313uint64_t cpu_get_apic_base(DeviceState *d)
bellard574bbf72005-01-03 23:27:31 +0000314{
Blue Swirl92a16d72010-06-19 07:47:42 +0000315 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
316
Blue Swirld8023f32010-10-20 16:41:28 +0000317 trace_cpu_get_apic_base(s ? (uint64_t)s->apicbase: 0);
318
aurel322c7c13d2009-04-08 22:56:26 +0000319 return s ? s->apicbase : 0;
bellard574bbf72005-01-03 23:27:31 +0000320}
321
Blue Swirl92a16d72010-06-19 07:47:42 +0000322void cpu_set_apic_tpr(DeviceState *d, uint8_t val)
bellard9230e662005-01-23 20:46:56 +0000323{
Blue Swirl92a16d72010-06-19 07:47:42 +0000324 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
325
aurel322c7c13d2009-04-08 22:56:26 +0000326 if (!s)
327 return;
bellard9230e662005-01-23 20:46:56 +0000328 s->tpr = (val & 0x0f) << 4;
bellardd592d302005-07-23 19:05:37 +0000329 apic_update_irq(s);
bellard9230e662005-01-23 20:46:56 +0000330}
331
Blue Swirl92a16d72010-06-19 07:47:42 +0000332uint8_t cpu_get_apic_tpr(DeviceState *d)
bellard9230e662005-01-23 20:46:56 +0000333{
Blue Swirl92a16d72010-06-19 07:47:42 +0000334 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
335
aurel322c7c13d2009-04-08 22:56:26 +0000336 return s ? s->tpr >> 4 : 0;
bellard9230e662005-01-23 20:46:56 +0000337}
338
bellardd592d302005-07-23 19:05:37 +0000339/* return -1 if no bit is set */
340static int get_highest_priority_int(uint32_t *tab)
341{
342 int i;
343 for(i = 7; i >= 0; i--) {
344 if (tab[i] != 0) {
aurel323b63c042008-12-06 10:46:35 +0000345 return i * 32 + fls_bit(tab[i]);
bellardd592d302005-07-23 19:05:37 +0000346 }
347 }
348 return -1;
349}
350
bellard574bbf72005-01-03 23:27:31 +0000351static int apic_get_ppr(APICState *s)
352{
353 int tpr, isrv, ppr;
354
355 tpr = (s->tpr >> 4);
356 isrv = get_highest_priority_int(s->isr);
357 if (isrv < 0)
358 isrv = 0;
359 isrv >>= 4;
360 if (tpr >= isrv)
361 ppr = s->tpr;
362 else
363 ppr = isrv << 4;
364 return ppr;
365}
366
bellardd592d302005-07-23 19:05:37 +0000367static int apic_get_arb_pri(APICState *s)
368{
369 /* XXX: arbitration */
370 return 0;
371}
372
Gleb Natapov0fbfbb52011-02-07 16:14:44 +0200373
374/*
375 * <0 - low prio interrupt,
376 * 0 - no interrupt,
377 * >0 - interrupt number
378 */
379static int apic_irq_pending(APICState *s)
380{
381 int irrv, ppr;
382 irrv = get_highest_priority_int(s->irr);
383 if (irrv < 0) {
384 return 0;
385 }
386 ppr = apic_get_ppr(s);
387 if (ppr && (irrv & 0xf0) <= (ppr & 0xf0)) {
388 return -1;
389 }
390
391 return irrv;
392}
393
bellard574bbf72005-01-03 23:27:31 +0000394/* signal the CPU if an irq is pending */
395static void apic_update_irq(APICState *s)
396{
Gleb Natapov0fbfbb52011-02-07 16:14:44 +0200397 if (!(s->spurious_vec & APIC_SV_ENABLE)) {
bellardd592d302005-07-23 19:05:37 +0000398 return;
Gleb Natapov0fbfbb52011-02-07 16:14:44 +0200399 }
400 if (apic_irq_pending(s) > 0) {
401 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_HARD);
402 }
bellard574bbf72005-01-03 23:27:31 +0000403}
404
aliguori73822ec2009-01-15 20:11:34 +0000405void apic_reset_irq_delivered(void)
406{
Blue Swirld8023f32010-10-20 16:41:28 +0000407 trace_apic_reset_irq_delivered(apic_irq_delivered);
408
aliguori73822ec2009-01-15 20:11:34 +0000409 apic_irq_delivered = 0;
410}
411
412int apic_get_irq_delivered(void)
413{
Blue Swirld8023f32010-10-20 16:41:28 +0000414 trace_apic_get_irq_delivered(apic_irq_delivered);
415
aliguori73822ec2009-01-15 20:11:34 +0000416 return apic_irq_delivered;
417}
418
bellard574bbf72005-01-03 23:27:31 +0000419static void apic_set_irq(APICState *s, int vector_num, int trigger_mode)
420{
aliguori73822ec2009-01-15 20:11:34 +0000421 apic_irq_delivered += !get_bit(s->irr, vector_num);
Blue Swirld8023f32010-10-20 16:41:28 +0000422
423 trace_apic_set_irq(apic_irq_delivered);
aliguori73822ec2009-01-15 20:11:34 +0000424
bellard574bbf72005-01-03 23:27:31 +0000425 set_bit(s->irr, vector_num);
426 if (trigger_mode)
427 set_bit(s->tmr, vector_num);
428 else
429 reset_bit(s->tmr, vector_num);
430 apic_update_irq(s);
431}
432
433static void apic_eoi(APICState *s)
434{
435 int isrv;
436 isrv = get_highest_priority_int(s->isr);
437 if (isrv < 0)
438 return;
439 reset_bit(s->isr, isrv);
Jan Kiszka0280b572011-02-03 22:54:11 +0100440 if (!(s->spurious_vec & APIC_SV_DIRECTED_IO) && get_bit(s->tmr, isrv)) {
441 ioapic_eoi_broadcast(isrv);
442 }
bellard574bbf72005-01-03 23:27:31 +0000443 apic_update_irq(s);
444}
445
Gleb Natapov678e12c2009-06-10 15:40:48 +0300446static int apic_find_dest(uint8_t dest)
447{
448 APICState *apic = local_apics[dest];
449 int i;
450
451 if (apic && apic->id == dest)
452 return dest; /* shortcut in case apic->id == apic->idx */
453
454 for (i = 0; i < MAX_APICS; i++) {
455 apic = local_apics[i];
456 if (apic && apic->id == dest)
457 return i;
Alex Williamsonb538e532010-11-05 16:01:29 -0600458 if (!apic)
459 break;
Gleb Natapov678e12c2009-06-10 15:40:48 +0300460 }
461
462 return -1;
463}
464
bellardd3e9db92005-12-17 01:27:28 +0000465static void apic_get_delivery_bitmask(uint32_t *deliver_bitmask,
466 uint8_t dest, uint8_t dest_mode)
bellardd592d302005-07-23 19:05:37 +0000467{
bellardd592d302005-07-23 19:05:37 +0000468 APICState *apic_iter;
bellardd3e9db92005-12-17 01:27:28 +0000469 int i;
bellardd592d302005-07-23 19:05:37 +0000470
471 if (dest_mode == 0) {
bellardd3e9db92005-12-17 01:27:28 +0000472 if (dest == 0xff) {
473 memset(deliver_bitmask, 0xff, MAX_APIC_WORDS * sizeof(uint32_t));
474 } else {
Gleb Natapov678e12c2009-06-10 15:40:48 +0300475 int idx = apic_find_dest(dest);
bellardd3e9db92005-12-17 01:27:28 +0000476 memset(deliver_bitmask, 0x00, MAX_APIC_WORDS * sizeof(uint32_t));
Gleb Natapov678e12c2009-06-10 15:40:48 +0300477 if (idx >= 0)
478 set_bit(deliver_bitmask, idx);
bellardd3e9db92005-12-17 01:27:28 +0000479 }
bellardd592d302005-07-23 19:05:37 +0000480 } else {
481 /* XXX: cluster mode */
bellardd3e9db92005-12-17 01:27:28 +0000482 memset(deliver_bitmask, 0x00, MAX_APIC_WORDS * sizeof(uint32_t));
483 for(i = 0; i < MAX_APICS; i++) {
484 apic_iter = local_apics[i];
485 if (apic_iter) {
486 if (apic_iter->dest_mode == 0xf) {
487 if (dest & apic_iter->log_dest)
488 set_bit(deliver_bitmask, i);
489 } else if (apic_iter->dest_mode == 0x0) {
490 if ((dest & 0xf0) == (apic_iter->log_dest & 0xf0) &&
491 (dest & apic_iter->log_dest & 0x0f)) {
492 set_bit(deliver_bitmask, i);
493 }
494 }
Alex Williamsonb538e532010-11-05 16:01:29 -0600495 } else {
496 break;
bellardd3e9db92005-12-17 01:27:28 +0000497 }
bellardd592d302005-07-23 19:05:37 +0000498 }
499 }
bellardd592d302005-07-23 19:05:37 +0000500}
501
Blue Swirl92a16d72010-06-19 07:47:42 +0000502void apic_init_reset(DeviceState *d)
bellardd592d302005-07-23 19:05:37 +0000503{
Blue Swirl92a16d72010-06-19 07:47:42 +0000504 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
bellardd592d302005-07-23 19:05:37 +0000505 int i;
506
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300507 if (!s)
508 return;
509
bellardd592d302005-07-23 19:05:37 +0000510 s->tpr = 0;
511 s->spurious_vec = 0xff;
512 s->log_dest = 0;
bellarde0fd8782005-11-21 23:26:26 +0000513 s->dest_mode = 0xf;
bellardd592d302005-07-23 19:05:37 +0000514 memset(s->isr, 0, sizeof(s->isr));
515 memset(s->tmr, 0, sizeof(s->tmr));
516 memset(s->irr, 0, sizeof(s->irr));
bellardb4511722006-10-08 18:20:51 +0000517 for(i = 0; i < APIC_LVT_NB; i++)
518 s->lvt[i] = 1 << 16; /* mask LVT */
bellardd592d302005-07-23 19:05:37 +0000519 s->esr = 0;
520 memset(s->icr, 0, sizeof(s->icr));
521 s->divide_conf = 0;
522 s->count_shift = 0;
523 s->initial_count = 0;
524 s->initial_count_load_time = 0;
525 s->next_time = 0;
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300526 s->wait_for_sipi = 1;
bellardd592d302005-07-23 19:05:37 +0000527}
528
bellarde0fd8782005-11-21 23:26:26 +0000529static void apic_startup(APICState *s, int vector_num)
530{
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300531 s->sipi_vector = vector_num;
532 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_SIPI);
533}
534
Blue Swirl92a16d72010-06-19 07:47:42 +0000535void apic_sipi(DeviceState *d)
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300536{
Blue Swirl92a16d72010-06-19 07:47:42 +0000537 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
538
Blue Swirl4a942ce2010-06-19 10:42:31 +0300539 cpu_reset_interrupt(s->cpu_env, CPU_INTERRUPT_SIPI);
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300540
541 if (!s->wait_for_sipi)
bellarde0fd8782005-11-21 23:26:26 +0000542 return;
Blue Swirl0e26b7b2010-06-19 10:42:34 +0300543 cpu_x86_load_seg_cache_sipi(s->cpu_env, s->sipi_vector);
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300544 s->wait_for_sipi = 0;
bellarde0fd8782005-11-21 23:26:26 +0000545}
546
Blue Swirl92a16d72010-06-19 07:47:42 +0000547static void apic_deliver(DeviceState *d, uint8_t dest, uint8_t dest_mode,
bellardd592d302005-07-23 19:05:37 +0000548 uint8_t delivery_mode, uint8_t vector_num,
Jan Kiszka1f6f4082011-08-22 17:46:31 +0200549 uint8_t trigger_mode)
bellardd592d302005-07-23 19:05:37 +0000550{
Blue Swirl92a16d72010-06-19 07:47:42 +0000551 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
bellardd3e9db92005-12-17 01:27:28 +0000552 uint32_t deliver_bitmask[MAX_APIC_WORDS];
bellardd592d302005-07-23 19:05:37 +0000553 int dest_shorthand = (s->icr[0] >> 18) & 3;
554 APICState *apic_iter;
555
bellarde0fd8782005-11-21 23:26:26 +0000556 switch (dest_shorthand) {
bellardd3e9db92005-12-17 01:27:28 +0000557 case 0:
558 apic_get_delivery_bitmask(deliver_bitmask, dest, dest_mode);
559 break;
560 case 1:
561 memset(deliver_bitmask, 0x00, sizeof(deliver_bitmask));
Gleb Natapov678e12c2009-06-10 15:40:48 +0300562 set_bit(deliver_bitmask, s->idx);
bellardd3e9db92005-12-17 01:27:28 +0000563 break;
564 case 2:
565 memset(deliver_bitmask, 0xff, sizeof(deliver_bitmask));
566 break;
567 case 3:
568 memset(deliver_bitmask, 0xff, sizeof(deliver_bitmask));
Gleb Natapov678e12c2009-06-10 15:40:48 +0300569 reset_bit(deliver_bitmask, s->idx);
bellardd3e9db92005-12-17 01:27:28 +0000570 break;
bellarde0fd8782005-11-21 23:26:26 +0000571 }
572
bellardd592d302005-07-23 19:05:37 +0000573 switch (delivery_mode) {
bellardd592d302005-07-23 19:05:37 +0000574 case APIC_DM_INIT:
575 {
576 int trig_mode = (s->icr[0] >> 15) & 1;
577 int level = (s->icr[0] >> 14) & 1;
578 if (level == 0 && trig_mode == 1) {
ths5fafdf22007-09-16 21:08:06 +0000579 foreach_apic(apic_iter, deliver_bitmask,
bellardd3e9db92005-12-17 01:27:28 +0000580 apic_iter->arb_id = apic_iter->id );
bellardd592d302005-07-23 19:05:37 +0000581 return;
582 }
583 }
584 break;
585
586 case APIC_DM_SIPI:
ths5fafdf22007-09-16 21:08:06 +0000587 foreach_apic(apic_iter, deliver_bitmask,
bellardd3e9db92005-12-17 01:27:28 +0000588 apic_startup(apic_iter, vector_num) );
bellardd592d302005-07-23 19:05:37 +0000589 return;
590 }
591
Jan Kiszka1f6f4082011-08-22 17:46:31 +0200592 apic_bus_deliver(deliver_bitmask, delivery_mode, vector_num, trigger_mode);
bellardd592d302005-07-23 19:05:37 +0000593}
594
Blue Swirl92a16d72010-06-19 07:47:42 +0000595int apic_get_interrupt(DeviceState *d)
bellard574bbf72005-01-03 23:27:31 +0000596{
Blue Swirl92a16d72010-06-19 07:47:42 +0000597 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
bellard574bbf72005-01-03 23:27:31 +0000598 int intno;
599
600 /* if the APIC is installed or enabled, we let the 8259 handle the
601 IRQs */
602 if (!s)
603 return -1;
604 if (!(s->spurious_vec & APIC_SV_ENABLE))
605 return -1;
ths3b46e622007-09-17 08:09:54 +0000606
Gleb Natapov0fbfbb52011-02-07 16:14:44 +0200607 intno = apic_irq_pending(s);
608
609 if (intno == 0) {
bellard574bbf72005-01-03 23:27:31 +0000610 return -1;
Gleb Natapov0fbfbb52011-02-07 16:14:44 +0200611 } else if (intno < 0) {
bellardd592d302005-07-23 19:05:37 +0000612 return s->spurious_vec & 0xff;
Gleb Natapov0fbfbb52011-02-07 16:14:44 +0200613 }
bellardb4511722006-10-08 18:20:51 +0000614 reset_bit(s->irr, intno);
bellard574bbf72005-01-03 23:27:31 +0000615 set_bit(s->isr, intno);
616 apic_update_irq(s);
617 return intno;
618}
619
Blue Swirl92a16d72010-06-19 07:47:42 +0000620int apic_accept_pic_intr(DeviceState *d)
ths0e21e122007-10-09 03:08:56 +0000621{
Blue Swirl92a16d72010-06-19 07:47:42 +0000622 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
ths0e21e122007-10-09 03:08:56 +0000623 uint32_t lvt0;
624
625 if (!s)
626 return -1;
627
628 lvt0 = s->lvt[APIC_LVT_LINT0];
629
aurel32a5b38b52008-04-13 16:08:30 +0000630 if ((s->apicbase & MSR_IA32_APICBASE_ENABLE) == 0 ||
631 (lvt0 & APIC_LVT_MASKED) == 0)
ths0e21e122007-10-09 03:08:56 +0000632 return 1;
633
634 return 0;
635}
636
bellard574bbf72005-01-03 23:27:31 +0000637static uint32_t apic_get_current_count(APICState *s)
638{
639 int64_t d;
640 uint32_t val;
Paolo Bonzini74475452011-03-11 16:47:48 +0100641 d = (qemu_get_clock_ns(vm_clock) - s->initial_count_load_time) >>
bellard574bbf72005-01-03 23:27:31 +0000642 s->count_shift;
643 if (s->lvt[APIC_LVT_TIMER] & APIC_LVT_TIMER_PERIODIC) {
644 /* periodic */
bellardd592d302005-07-23 19:05:37 +0000645 val = s->initial_count - (d % ((uint64_t)s->initial_count + 1));
bellard574bbf72005-01-03 23:27:31 +0000646 } else {
647 if (d >= s->initial_count)
648 val = 0;
649 else
650 val = s->initial_count - d;
651 }
652 return val;
653}
654
655static void apic_timer_update(APICState *s, int64_t current_time)
656{
657 int64_t next_time, d;
ths3b46e622007-09-17 08:09:54 +0000658
bellard574bbf72005-01-03 23:27:31 +0000659 if (!(s->lvt[APIC_LVT_TIMER] & APIC_LVT_MASKED)) {
ths5fafdf22007-09-16 21:08:06 +0000660 d = (current_time - s->initial_count_load_time) >>
bellard574bbf72005-01-03 23:27:31 +0000661 s->count_shift;
662 if (s->lvt[APIC_LVT_TIMER] & APIC_LVT_TIMER_PERIODIC) {
aliguori681f8c22008-08-18 14:19:42 +0000663 if (!s->initial_count)
664 goto no_timer;
bellardd592d302005-07-23 19:05:37 +0000665 d = ((d / ((uint64_t)s->initial_count + 1)) + 1) * ((uint64_t)s->initial_count + 1);
bellard574bbf72005-01-03 23:27:31 +0000666 } else {
667 if (d >= s->initial_count)
668 goto no_timer;
bellardd592d302005-07-23 19:05:37 +0000669 d = (uint64_t)s->initial_count + 1;
bellard574bbf72005-01-03 23:27:31 +0000670 }
671 next_time = s->initial_count_load_time + (d << s->count_shift);
672 qemu_mod_timer(s->timer, next_time);
673 s->next_time = next_time;
674 } else {
675 no_timer:
676 qemu_del_timer(s->timer);
677 }
678}
679
680static void apic_timer(void *opaque)
681{
682 APICState *s = opaque;
683
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300684 apic_local_deliver(s, APIC_LVT_TIMER);
bellard574bbf72005-01-03 23:27:31 +0000685 apic_timer_update(s, s->next_time);
686}
687
Anthony Liguoric227f092009-10-01 16:12:16 -0500688static uint32_t apic_mem_readb(void *opaque, target_phys_addr_t addr)
bellard574bbf72005-01-03 23:27:31 +0000689{
690 return 0;
691}
692
Anthony Liguoric227f092009-10-01 16:12:16 -0500693static uint32_t apic_mem_readw(void *opaque, target_phys_addr_t addr)
bellard574bbf72005-01-03 23:27:31 +0000694{
695 return 0;
696}
697
Anthony Liguoric227f092009-10-01 16:12:16 -0500698static void apic_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val)
bellard574bbf72005-01-03 23:27:31 +0000699{
700}
701
Anthony Liguoric227f092009-10-01 16:12:16 -0500702static void apic_mem_writew(void *opaque, target_phys_addr_t addr, uint32_t val)
bellard574bbf72005-01-03 23:27:31 +0000703{
704}
705
Anthony Liguoric227f092009-10-01 16:12:16 -0500706static uint32_t apic_mem_readl(void *opaque, target_phys_addr_t addr)
bellard574bbf72005-01-03 23:27:31 +0000707{
Blue Swirl92a16d72010-06-19 07:47:42 +0000708 DeviceState *d;
bellard574bbf72005-01-03 23:27:31 +0000709 APICState *s;
710 uint32_t val;
711 int index;
712
Blue Swirl92a16d72010-06-19 07:47:42 +0000713 d = cpu_get_current_apic();
714 if (!d) {
bellard574bbf72005-01-03 23:27:31 +0000715 return 0;
Blue Swirl0e26b7b2010-06-19 10:42:34 +0300716 }
Blue Swirl92a16d72010-06-19 07:47:42 +0000717 s = DO_UPCAST(APICState, busdev.qdev, d);
bellard574bbf72005-01-03 23:27:31 +0000718
719 index = (addr >> 4) & 0xff;
720 switch(index) {
721 case 0x02: /* id */
722 val = s->id << 24;
723 break;
724 case 0x03: /* version */
725 val = 0x11 | ((APIC_LVT_NB - 1) << 16); /* version 0x11 */
726 break;
727 case 0x08:
728 val = s->tpr;
729 break;
bellardd592d302005-07-23 19:05:37 +0000730 case 0x09:
731 val = apic_get_arb_pri(s);
732 break;
bellard574bbf72005-01-03 23:27:31 +0000733 case 0x0a:
734 /* ppr */
735 val = apic_get_ppr(s);
736 break;
aurel32b237db32008-03-28 22:31:36 +0000737 case 0x0b:
738 val = 0;
739 break;
bellardd592d302005-07-23 19:05:37 +0000740 case 0x0d:
741 val = s->log_dest << 24;
742 break;
743 case 0x0e:
744 val = s->dest_mode << 28;
745 break;
bellard574bbf72005-01-03 23:27:31 +0000746 case 0x0f:
747 val = s->spurious_vec;
748 break;
749 case 0x10 ... 0x17:
750 val = s->isr[index & 7];
751 break;
752 case 0x18 ... 0x1f:
753 val = s->tmr[index & 7];
754 break;
755 case 0x20 ... 0x27:
756 val = s->irr[index & 7];
757 break;
758 case 0x28:
759 val = s->esr;
760 break;
bellard574bbf72005-01-03 23:27:31 +0000761 case 0x30:
762 case 0x31:
763 val = s->icr[index & 1];
764 break;
bellarde0fd8782005-11-21 23:26:26 +0000765 case 0x32 ... 0x37:
766 val = s->lvt[index - 0x32];
767 break;
bellard574bbf72005-01-03 23:27:31 +0000768 case 0x38:
769 val = s->initial_count;
770 break;
771 case 0x39:
772 val = apic_get_current_count(s);
773 break;
774 case 0x3e:
775 val = s->divide_conf;
776 break;
777 default:
778 s->esr |= ESR_ILLEGAL_ADDRESS;
779 val = 0;
780 break;
781 }
Blue Swirld8023f32010-10-20 16:41:28 +0000782 trace_apic_mem_readl(addr, val);
bellard574bbf72005-01-03 23:27:31 +0000783 return val;
784}
785
Andreas Färberf5095c62010-12-19 17:22:39 +0100786static void apic_send_msi(target_phys_addr_t addr, uint32_t data)
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +0300787{
788 uint8_t dest = (addr & MSI_ADDR_DEST_ID_MASK) >> MSI_ADDR_DEST_ID_SHIFT;
789 uint8_t vector = (data & MSI_DATA_VECTOR_MASK) >> MSI_DATA_VECTOR_SHIFT;
790 uint8_t dest_mode = (addr >> MSI_ADDR_DEST_MODE_SHIFT) & 0x1;
791 uint8_t trigger_mode = (data >> MSI_DATA_TRIGGER_SHIFT) & 0x1;
792 uint8_t delivery = (data >> MSI_DATA_DELIVERY_MODE_SHIFT) & 0x7;
793 /* XXX: Ignore redirection hint. */
Jan Kiszka1f6f4082011-08-22 17:46:31 +0200794 apic_deliver_irq(dest, dest_mode, delivery, vector, trigger_mode);
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +0300795}
796
Anthony Liguoric227f092009-10-01 16:12:16 -0500797static void apic_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
bellard574bbf72005-01-03 23:27:31 +0000798{
Blue Swirl92a16d72010-06-19 07:47:42 +0000799 DeviceState *d;
bellard574bbf72005-01-03 23:27:31 +0000800 APICState *s;
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +0300801 int index = (addr >> 4) & 0xff;
802 if (addr > 0xfff || !index) {
803 /* MSI and MMIO APIC are at the same memory location,
804 * but actually not on the global bus: MSI is on PCI bus
805 * APIC is connected directly to the CPU.
806 * Mapping them on the global bus happens to work because
807 * MSI registers are reserved in APIC MMIO and vice versa. */
808 apic_send_msi(addr, val);
809 return;
810 }
bellard574bbf72005-01-03 23:27:31 +0000811
Blue Swirl92a16d72010-06-19 07:47:42 +0000812 d = cpu_get_current_apic();
813 if (!d) {
bellard574bbf72005-01-03 23:27:31 +0000814 return;
Blue Swirl0e26b7b2010-06-19 10:42:34 +0300815 }
Blue Swirl92a16d72010-06-19 07:47:42 +0000816 s = DO_UPCAST(APICState, busdev.qdev, d);
bellard574bbf72005-01-03 23:27:31 +0000817
Blue Swirld8023f32010-10-20 16:41:28 +0000818 trace_apic_mem_writel(addr, val);
bellard574bbf72005-01-03 23:27:31 +0000819
bellard574bbf72005-01-03 23:27:31 +0000820 switch(index) {
821 case 0x02:
822 s->id = (val >> 24);
823 break;
bellarde0fd8782005-11-21 23:26:26 +0000824 case 0x03:
825 break;
bellard574bbf72005-01-03 23:27:31 +0000826 case 0x08:
827 s->tpr = val;
bellardd592d302005-07-23 19:05:37 +0000828 apic_update_irq(s);
bellard574bbf72005-01-03 23:27:31 +0000829 break;
bellarde0fd8782005-11-21 23:26:26 +0000830 case 0x09:
831 case 0x0a:
832 break;
bellard574bbf72005-01-03 23:27:31 +0000833 case 0x0b: /* EOI */
834 apic_eoi(s);
835 break;
bellardd592d302005-07-23 19:05:37 +0000836 case 0x0d:
837 s->log_dest = val >> 24;
838 break;
839 case 0x0e:
840 s->dest_mode = val >> 28;
841 break;
bellard574bbf72005-01-03 23:27:31 +0000842 case 0x0f:
843 s->spurious_vec = val & 0x1ff;
bellardd592d302005-07-23 19:05:37 +0000844 apic_update_irq(s);
bellard574bbf72005-01-03 23:27:31 +0000845 break;
bellarde0fd8782005-11-21 23:26:26 +0000846 case 0x10 ... 0x17:
847 case 0x18 ... 0x1f:
848 case 0x20 ... 0x27:
849 case 0x28:
850 break;
bellard574bbf72005-01-03 23:27:31 +0000851 case 0x30:
bellardd592d302005-07-23 19:05:37 +0000852 s->icr[0] = val;
Blue Swirl92a16d72010-06-19 07:47:42 +0000853 apic_deliver(d, (s->icr[1] >> 24) & 0xff, (s->icr[0] >> 11) & 1,
bellardd592d302005-07-23 19:05:37 +0000854 (s->icr[0] >> 8) & 7, (s->icr[0] & 0xff),
Jan Kiszka1f6f4082011-08-22 17:46:31 +0200855 (s->icr[0] >> 15) & 1);
bellardd592d302005-07-23 19:05:37 +0000856 break;
bellard574bbf72005-01-03 23:27:31 +0000857 case 0x31:
bellardd592d302005-07-23 19:05:37 +0000858 s->icr[1] = val;
bellard574bbf72005-01-03 23:27:31 +0000859 break;
860 case 0x32 ... 0x37:
861 {
862 int n = index - 0x32;
863 s->lvt[n] = val;
864 if (n == APIC_LVT_TIMER)
Paolo Bonzini74475452011-03-11 16:47:48 +0100865 apic_timer_update(s, qemu_get_clock_ns(vm_clock));
bellard574bbf72005-01-03 23:27:31 +0000866 }
867 break;
868 case 0x38:
869 s->initial_count = val;
Paolo Bonzini74475452011-03-11 16:47:48 +0100870 s->initial_count_load_time = qemu_get_clock_ns(vm_clock);
bellard574bbf72005-01-03 23:27:31 +0000871 apic_timer_update(s, s->initial_count_load_time);
872 break;
bellarde0fd8782005-11-21 23:26:26 +0000873 case 0x39:
874 break;
bellard574bbf72005-01-03 23:27:31 +0000875 case 0x3e:
876 {
877 int v;
878 s->divide_conf = val & 0xb;
879 v = (s->divide_conf & 3) | ((s->divide_conf >> 1) & 4);
880 s->count_shift = (v + 1) & 7;
881 }
882 break;
883 default:
884 s->esr |= ESR_ILLEGAL_ADDRESS;
885 break;
886 }
887}
888
Juan Quintela695dcf72009-08-20 19:42:28 +0200889/* This function is only used for old state version 1 and 2 */
890static int apic_load_old(QEMUFile *f, void *opaque, int version_id)
bellardd592d302005-07-23 19:05:37 +0000891{
892 APICState *s = opaque;
893 int i;
894
bellarde6cf6a82006-08-17 10:48:06 +0000895 if (version_id > 2)
bellardd592d302005-07-23 19:05:37 +0000896 return -EINVAL;
897
898 /* XXX: what if the base changes? (registered memory regions) */
899 qemu_get_be32s(f, &s->apicbase);
900 qemu_get_8s(f, &s->id);
901 qemu_get_8s(f, &s->arb_id);
902 qemu_get_8s(f, &s->tpr);
903 qemu_get_be32s(f, &s->spurious_vec);
904 qemu_get_8s(f, &s->log_dest);
905 qemu_get_8s(f, &s->dest_mode);
906 for (i = 0; i < 8; i++) {
907 qemu_get_be32s(f, &s->isr[i]);
908 qemu_get_be32s(f, &s->tmr[i]);
909 qemu_get_be32s(f, &s->irr[i]);
910 }
911 for (i = 0; i < APIC_LVT_NB; i++) {
912 qemu_get_be32s(f, &s->lvt[i]);
913 }
914 qemu_get_be32s(f, &s->esr);
915 qemu_get_be32s(f, &s->icr[0]);
916 qemu_get_be32s(f, &s->icr[1]);
917 qemu_get_be32s(f, &s->divide_conf);
thsbee8d682007-12-16 23:41:11 +0000918 s->count_shift=qemu_get_be32(f);
bellardd592d302005-07-23 19:05:37 +0000919 qemu_get_be32s(f, &s->initial_count);
thsbee8d682007-12-16 23:41:11 +0000920 s->initial_count_load_time=qemu_get_be64(f);
921 s->next_time=qemu_get_be64(f);
bellarde6cf6a82006-08-17 10:48:06 +0000922
923 if (version_id >= 2)
924 qemu_get_timer(f, s->timer);
bellardd592d302005-07-23 19:05:37 +0000925 return 0;
926}
927
Juan Quintela695dcf72009-08-20 19:42:28 +0200928static const VMStateDescription vmstate_apic = {
929 .name = "apic",
930 .version_id = 3,
931 .minimum_version_id = 3,
932 .minimum_version_id_old = 1,
933 .load_state_old = apic_load_old,
934 .fields = (VMStateField []) {
935 VMSTATE_UINT32(apicbase, APICState),
936 VMSTATE_UINT8(id, APICState),
937 VMSTATE_UINT8(arb_id, APICState),
938 VMSTATE_UINT8(tpr, APICState),
939 VMSTATE_UINT32(spurious_vec, APICState),
940 VMSTATE_UINT8(log_dest, APICState),
941 VMSTATE_UINT8(dest_mode, APICState),
942 VMSTATE_UINT32_ARRAY(isr, APICState, 8),
943 VMSTATE_UINT32_ARRAY(tmr, APICState, 8),
944 VMSTATE_UINT32_ARRAY(irr, APICState, 8),
945 VMSTATE_UINT32_ARRAY(lvt, APICState, APIC_LVT_NB),
946 VMSTATE_UINT32(esr, APICState),
947 VMSTATE_UINT32_ARRAY(icr, APICState, 2),
948 VMSTATE_UINT32(divide_conf, APICState),
949 VMSTATE_INT32(count_shift, APICState),
950 VMSTATE_UINT32(initial_count, APICState),
951 VMSTATE_INT64(initial_count_load_time, APICState),
952 VMSTATE_INT64(next_time, APICState),
953 VMSTATE_TIMER(timer, APICState),
954 VMSTATE_END_OF_LIST()
955 }
956};
957
Blue Swirl8546b092010-06-19 07:44:07 +0000958static void apic_reset(DeviceState *d)
bellardd592d302005-07-23 19:05:37 +0000959{
Blue Swirl8546b092010-06-19 07:44:07 +0000960 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
Avi Kivity4c0960c2009-08-17 23:19:53 +0300961 int bsp;
aurel32fec5fa02008-09-02 00:09:08 +0000962
Avi Kivity4c0960c2009-08-17 23:19:53 +0300963 bsp = cpu_is_bsp(s->cpu_env);
aurel32fec5fa02008-09-02 00:09:08 +0000964 s->apicbase = 0xfee00000 |
Gleb Natapov678e12c2009-06-10 15:40:48 +0300965 (bsp ? MSR_IA32_APICBASE_BSP : 0) | MSR_IA32_APICBASE_ENABLE;
aurel32fec5fa02008-09-02 00:09:08 +0000966
Blue Swirl92a16d72010-06-19 07:47:42 +0000967 apic_init_reset(d);
ths0e21e122007-10-09 03:08:56 +0000968
Gleb Natapov678e12c2009-06-10 15:40:48 +0300969 if (bsp) {
aurel32a5b38b52008-04-13 16:08:30 +0000970 /*
971 * LINT0 delivery mode on CPU #0 is set to ExtInt at initialization
972 * time typically by BIOS, so PIC interrupt can be delivered to the
973 * processor when local APIC is enabled.
974 */
975 s->lvt[APIC_LVT_LINT0] = 0x700;
976 }
bellardd592d302005-07-23 19:05:37 +0000977}
bellard574bbf72005-01-03 23:27:31 +0000978
Avi Kivity312b4232011-08-15 17:17:16 +0300979static const MemoryRegionOps apic_io_ops = {
980 .old_mmio = {
981 .read = { apic_mem_readb, apic_mem_readw, apic_mem_readl, },
982 .write = { apic_mem_writeb, apic_mem_writew, apic_mem_writel, },
983 },
984 .endianness = DEVICE_NATIVE_ENDIAN,
bellard574bbf72005-01-03 23:27:31 +0000985};
986
Blue Swirl8546b092010-06-19 07:44:07 +0000987static int apic_init1(SysBusDevice *dev)
988{
989 APICState *s = FROM_SYSBUS(APICState, dev);
Blue Swirl8546b092010-06-19 07:44:07 +0000990 static int last_apic_idx;
991
992 if (last_apic_idx >= MAX_APICS) {
993 return -1;
994 }
Avi Kivity312b4232011-08-15 17:17:16 +0300995 memory_region_init_io(&s->io_memory, &apic_io_ops, s, "apic",
996 MSI_ADDR_SIZE);
997 sysbus_init_mmio_region(dev, &s->io_memory);
Blue Swirl8546b092010-06-19 07:44:07 +0000998
Paolo Bonzini74475452011-03-11 16:47:48 +0100999 s->timer = qemu_new_timer_ns(vm_clock, apic_timer, s);
Blue Swirl8546b092010-06-19 07:44:07 +00001000 s->idx = last_apic_idx++;
1001 local_apics[s->idx] = s;
1002 return 0;
1003}
1004
1005static SysBusDeviceInfo apic_info = {
1006 .init = apic_init1,
1007 .qdev.name = "apic",
1008 .qdev.size = sizeof(APICState),
1009 .qdev.vmsd = &vmstate_apic,
1010 .qdev.reset = apic_reset,
1011 .qdev.no_user = 1,
1012 .qdev.props = (Property[]) {
1013 DEFINE_PROP_UINT8("id", APICState, id, -1),
1014 DEFINE_PROP_PTR("cpu_env", APICState, cpu_env),
1015 DEFINE_PROP_END_OF_LIST(),
1016 }
1017};
1018
1019static void apic_register_devices(void)
1020{
1021 sysbus_register_withprop(&apic_info);
1022}
1023
1024device_init(apic_register_devices)