blob: ff581f078792f2558c23863343d1d7109c0f6093 [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"
pbrook87ecb682007-11-17 17:14:51 +000021#include "qemu-timer.h"
aurel32bb7e7292008-10-12 20:16:03 +000022#include "host-utils.h"
Blue Swirl8546b092010-06-19 07:44:07 +000023#include "sysbus.h"
Blue Swirld8023f32010-10-20 16:41:28 +000024#include "trace.h"
bellard574bbf72005-01-03 23:27:31 +000025
26/* APIC Local Vector Table */
27#define APIC_LVT_TIMER 0
28#define APIC_LVT_THERMAL 1
29#define APIC_LVT_PERFORM 2
30#define APIC_LVT_LINT0 3
31#define APIC_LVT_LINT1 4
32#define APIC_LVT_ERROR 5
33#define APIC_LVT_NB 6
34
35/* APIC delivery modes */
36#define APIC_DM_FIXED 0
37#define APIC_DM_LOWPRI 1
38#define APIC_DM_SMI 2
39#define APIC_DM_NMI 4
40#define APIC_DM_INIT 5
41#define APIC_DM_SIPI 6
42#define APIC_DM_EXTINT 7
43
bellardd592d302005-07-23 19:05:37 +000044/* APIC destination mode */
45#define APIC_DESTMODE_FLAT 0xf
46#define APIC_DESTMODE_CLUSTER 1
47
bellard574bbf72005-01-03 23:27:31 +000048#define APIC_TRIGGER_EDGE 0
49#define APIC_TRIGGER_LEVEL 1
50
51#define APIC_LVT_TIMER_PERIODIC (1<<17)
52#define APIC_LVT_MASKED (1<<16)
53#define APIC_LVT_LEVEL_TRIGGER (1<<15)
54#define APIC_LVT_REMOTE_IRR (1<<14)
55#define APIC_INPUT_POLARITY (1<<13)
56#define APIC_SEND_PENDING (1<<12)
57
58#define ESR_ILLEGAL_ADDRESS (1 << 7)
59
60#define APIC_SV_ENABLE (1 << 8)
61
bellardd3e9db92005-12-17 01:27:28 +000062#define MAX_APICS 255
63#define MAX_APIC_WORDS 8
64
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +030065/* Intel APIC constants: from include/asm/msidef.h */
66#define MSI_DATA_VECTOR_SHIFT 0
67#define MSI_DATA_VECTOR_MASK 0x000000ff
68#define MSI_DATA_DELIVERY_MODE_SHIFT 8
69#define MSI_DATA_TRIGGER_SHIFT 15
70#define MSI_DATA_LEVEL_SHIFT 14
71#define MSI_ADDR_DEST_MODE_SHIFT 2
72#define MSI_ADDR_DEST_ID_SHIFT 12
73#define MSI_ADDR_DEST_ID_MASK 0x00ffff0
74
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +030075#define MSI_ADDR_SIZE 0x100000
76
Blue Swirl92a16d72010-06-19 07:47:42 +000077typedef struct APICState APICState;
78
Blue Swirlcf6d64b2010-06-19 10:42:08 +030079struct APICState {
Blue Swirl8546b092010-06-19 07:44:07 +000080 SysBusDevice busdev;
81 void *cpu_env;
bellard574bbf72005-01-03 23:27:31 +000082 uint32_t apicbase;
83 uint8_t id;
bellardd592d302005-07-23 19:05:37 +000084 uint8_t arb_id;
bellard574bbf72005-01-03 23:27:31 +000085 uint8_t tpr;
86 uint32_t spurious_vec;
bellardd592d302005-07-23 19:05:37 +000087 uint8_t log_dest;
88 uint8_t dest_mode;
bellard574bbf72005-01-03 23:27:31 +000089 uint32_t isr[8]; /* in service register */
90 uint32_t tmr[8]; /* trigger mode register */
91 uint32_t irr[8]; /* interrupt request register */
92 uint32_t lvt[APIC_LVT_NB];
93 uint32_t esr; /* error register */
94 uint32_t icr[2];
95
96 uint32_t divide_conf;
97 int count_shift;
98 uint32_t initial_count;
99 int64_t initial_count_load_time, next_time;
Gleb Natapov678e12c2009-06-10 15:40:48 +0300100 uint32_t idx;
bellard574bbf72005-01-03 23:27:31 +0000101 QEMUTimer *timer;
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300102 int sipi_vector;
103 int wait_for_sipi;
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300104};
bellard574bbf72005-01-03 23:27:31 +0000105
bellardd3e9db92005-12-17 01:27:28 +0000106static APICState *local_apics[MAX_APICS + 1];
aliguori73822ec2009-01-15 20:11:34 +0000107static int apic_irq_delivered;
108
bellardd592d302005-07-23 19:05:37 +0000109static void apic_set_irq(APICState *s, int vector_num, int trigger_mode);
110static void apic_update_irq(APICState *s);
aliguori610626a2009-03-12 20:25:12 +0000111static void apic_get_delivery_bitmask(uint32_t *deliver_bitmask,
112 uint8_t dest, uint8_t dest_mode);
bellardd592d302005-07-23 19:05:37 +0000113
aurel323b63c042008-12-06 10:46:35 +0000114/* Find first bit starting from msb */
115static int fls_bit(uint32_t value)
116{
117 return 31 - clz32(value);
118}
119
aurel32e95f5492008-10-12 00:53:17 +0000120/* Find first bit starting from lsb */
bellardd3e9db92005-12-17 01:27:28 +0000121static int ffs_bit(uint32_t value)
122{
aurel32bb7e7292008-10-12 20:16:03 +0000123 return ctz32(value);
bellardd3e9db92005-12-17 01:27:28 +0000124}
125
126static inline void set_bit(uint32_t *tab, int index)
127{
128 int i, mask;
129 i = index >> 5;
130 mask = 1 << (index & 0x1f);
131 tab[i] |= mask;
132}
133
134static inline void reset_bit(uint32_t *tab, int index)
135{
136 int i, mask;
137 i = index >> 5;
138 mask = 1 << (index & 0x1f);
139 tab[i] &= ~mask;
140}
141
aliguori73822ec2009-01-15 20:11:34 +0000142static inline int get_bit(uint32_t *tab, int index)
143{
144 int i, mask;
145 i = index >> 5;
146 mask = 1 << (index & 0x1f);
147 return !!(tab[i] & mask);
148}
149
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300150static void apic_local_deliver(APICState *s, int vector)
aurel32a5b38b52008-04-13 16:08:30 +0000151{
aurel32a5b38b52008-04-13 16:08:30 +0000152 uint32_t lvt = s->lvt[vector];
153 int trigger_mode;
154
Blue Swirld8023f32010-10-20 16:41:28 +0000155 trace_apic_local_deliver(vector, (lvt >> 8) & 7);
156
aurel32a5b38b52008-04-13 16:08:30 +0000157 if (lvt & APIC_LVT_MASKED)
158 return;
159
160 switch ((lvt >> 8) & 7) {
161 case APIC_DM_SMI:
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300162 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_SMI);
aurel32a5b38b52008-04-13 16:08:30 +0000163 break;
164
165 case APIC_DM_NMI:
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300166 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_NMI);
aurel32a5b38b52008-04-13 16:08:30 +0000167 break;
168
169 case APIC_DM_EXTINT:
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300170 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_HARD);
aurel32a5b38b52008-04-13 16:08:30 +0000171 break;
172
173 case APIC_DM_FIXED:
174 trigger_mode = APIC_TRIGGER_EDGE;
175 if ((vector == APIC_LVT_LINT0 || vector == APIC_LVT_LINT1) &&
176 (lvt & APIC_LVT_LEVEL_TRIGGER))
177 trigger_mode = APIC_TRIGGER_LEVEL;
178 apic_set_irq(s, lvt & 0xff, trigger_mode);
179 }
180}
181
Blue Swirl92a16d72010-06-19 07:47:42 +0000182void apic_deliver_pic_intr(DeviceState *d, int level)
aurel321a7de942008-08-21 03:14:52 +0000183{
Blue Swirl92a16d72010-06-19 07:47:42 +0000184 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
185
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300186 if (level) {
187 apic_local_deliver(s, APIC_LVT_LINT0);
188 } else {
aurel321a7de942008-08-21 03:14:52 +0000189 uint32_t lvt = s->lvt[APIC_LVT_LINT0];
190
191 switch ((lvt >> 8) & 7) {
192 case APIC_DM_FIXED:
193 if (!(lvt & APIC_LVT_LEVEL_TRIGGER))
194 break;
195 reset_bit(s->irr, lvt & 0xff);
196 /* fall through */
197 case APIC_DM_EXTINT:
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300198 cpu_reset_interrupt(s->cpu_env, CPU_INTERRUPT_HARD);
aurel321a7de942008-08-21 03:14:52 +0000199 break;
200 }
201 }
202}
203
bellardd3e9db92005-12-17 01:27:28 +0000204#define foreach_apic(apic, deliver_bitmask, code) \
205{\
206 int __i, __j, __mask;\
207 for(__i = 0; __i < MAX_APIC_WORDS; __i++) {\
208 __mask = deliver_bitmask[__i];\
209 if (__mask) {\
210 for(__j = 0; __j < 32; __j++) {\
211 if (__mask & (1 << __j)) {\
212 apic = local_apics[__i * 32 + __j];\
213 if (apic) {\
214 code;\
215 }\
216 }\
217 }\
218 }\
219 }\
220}
221
ths5fafdf22007-09-16 21:08:06 +0000222static void apic_bus_deliver(const uint32_t *deliver_bitmask,
bellardd3e9db92005-12-17 01:27:28 +0000223 uint8_t delivery_mode,
bellardd592d302005-07-23 19:05:37 +0000224 uint8_t vector_num, uint8_t polarity,
225 uint8_t trigger_mode)
226{
227 APICState *apic_iter;
228
229 switch (delivery_mode) {
230 case APIC_DM_LOWPRI:
bellard8dd69b82005-11-23 20:59:44 +0000231 /* XXX: search for focus processor, arbitration */
bellardd3e9db92005-12-17 01:27:28 +0000232 {
233 int i, d;
234 d = -1;
235 for(i = 0; i < MAX_APIC_WORDS; i++) {
236 if (deliver_bitmask[i]) {
237 d = i * 32 + ffs_bit(deliver_bitmask[i]);
238 break;
239 }
240 }
241 if (d >= 0) {
242 apic_iter = local_apics[d];
243 if (apic_iter) {
244 apic_set_irq(apic_iter, vector_num, trigger_mode);
245 }
246 }
bellard8dd69b82005-11-23 20:59:44 +0000247 }
bellardd3e9db92005-12-17 01:27:28 +0000248 return;
bellard8dd69b82005-11-23 20:59:44 +0000249
bellardd592d302005-07-23 19:05:37 +0000250 case APIC_DM_FIXED:
bellardd592d302005-07-23 19:05:37 +0000251 break;
252
253 case APIC_DM_SMI:
aurel32e2eb9d32008-04-13 16:08:23 +0000254 foreach_apic(apic_iter, deliver_bitmask,
255 cpu_interrupt(apic_iter->cpu_env, CPU_INTERRUPT_SMI) );
256 return;
257
bellardd592d302005-07-23 19:05:37 +0000258 case APIC_DM_NMI:
aurel32e2eb9d32008-04-13 16:08:23 +0000259 foreach_apic(apic_iter, deliver_bitmask,
260 cpu_interrupt(apic_iter->cpu_env, CPU_INTERRUPT_NMI) );
261 return;
bellardd592d302005-07-23 19:05:37 +0000262
263 case APIC_DM_INIT:
264 /* normal INIT IPI sent to processors */
ths5fafdf22007-09-16 21:08:06 +0000265 foreach_apic(apic_iter, deliver_bitmask,
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300266 cpu_interrupt(apic_iter->cpu_env, CPU_INTERRUPT_INIT) );
bellardd592d302005-07-23 19:05:37 +0000267 return;
ths3b46e622007-09-17 08:09:54 +0000268
bellardd592d302005-07-23 19:05:37 +0000269 case APIC_DM_EXTINT:
bellardb1fc0342005-07-23 21:43:15 +0000270 /* handled in I/O APIC code */
bellardd592d302005-07-23 19:05:37 +0000271 break;
272
273 default:
274 return;
275 }
276
ths5fafdf22007-09-16 21:08:06 +0000277 foreach_apic(apic_iter, deliver_bitmask,
bellardd3e9db92005-12-17 01:27:28 +0000278 apic_set_irq(apic_iter, vector_num, trigger_mode) );
bellardd592d302005-07-23 19:05:37 +0000279}
bellard574bbf72005-01-03 23:27:31 +0000280
aliguori610626a2009-03-12 20:25:12 +0000281void apic_deliver_irq(uint8_t dest, uint8_t dest_mode,
282 uint8_t delivery_mode, uint8_t vector_num,
283 uint8_t polarity, uint8_t trigger_mode)
284{
285 uint32_t deliver_bitmask[MAX_APIC_WORDS];
286
Blue Swirld8023f32010-10-20 16:41:28 +0000287 trace_apic_deliver_irq(dest, dest_mode, delivery_mode, vector_num,
288 polarity, trigger_mode);
289
aliguori610626a2009-03-12 20:25:12 +0000290 apic_get_delivery_bitmask(deliver_bitmask, dest, dest_mode);
291 apic_bus_deliver(deliver_bitmask, delivery_mode, vector_num, polarity,
292 trigger_mode);
293}
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
bellard574bbf72005-01-03 23:27:31 +0000373/* signal the CPU if an irq is pending */
374static void apic_update_irq(APICState *s)
375{
bellardd592d302005-07-23 19:05:37 +0000376 int irrv, ppr;
377 if (!(s->spurious_vec & APIC_SV_ENABLE))
378 return;
bellard574bbf72005-01-03 23:27:31 +0000379 irrv = get_highest_priority_int(s->irr);
380 if (irrv < 0)
381 return;
bellardd592d302005-07-23 19:05:37 +0000382 ppr = apic_get_ppr(s);
383 if (ppr && (irrv & 0xf0) <= (ppr & 0xf0))
bellard574bbf72005-01-03 23:27:31 +0000384 return;
385 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_HARD);
386}
387
aliguori73822ec2009-01-15 20:11:34 +0000388void apic_reset_irq_delivered(void)
389{
Blue Swirld8023f32010-10-20 16:41:28 +0000390 trace_apic_reset_irq_delivered(apic_irq_delivered);
391
aliguori73822ec2009-01-15 20:11:34 +0000392 apic_irq_delivered = 0;
393}
394
395int apic_get_irq_delivered(void)
396{
Blue Swirld8023f32010-10-20 16:41:28 +0000397 trace_apic_get_irq_delivered(apic_irq_delivered);
398
aliguori73822ec2009-01-15 20:11:34 +0000399 return apic_irq_delivered;
400}
401
bellard574bbf72005-01-03 23:27:31 +0000402static void apic_set_irq(APICState *s, int vector_num, int trigger_mode)
403{
aliguori73822ec2009-01-15 20:11:34 +0000404 apic_irq_delivered += !get_bit(s->irr, vector_num);
Blue Swirld8023f32010-10-20 16:41:28 +0000405
406 trace_apic_set_irq(apic_irq_delivered);
aliguori73822ec2009-01-15 20:11:34 +0000407
bellard574bbf72005-01-03 23:27:31 +0000408 set_bit(s->irr, vector_num);
409 if (trigger_mode)
410 set_bit(s->tmr, vector_num);
411 else
412 reset_bit(s->tmr, vector_num);
413 apic_update_irq(s);
414}
415
416static void apic_eoi(APICState *s)
417{
418 int isrv;
419 isrv = get_highest_priority_int(s->isr);
420 if (isrv < 0)
421 return;
422 reset_bit(s->isr, isrv);
bellardd592d302005-07-23 19:05:37 +0000423 /* XXX: send the EOI packet to the APIC bus to allow the I/O APIC to
424 set the remote IRR bit for level triggered interrupts. */
bellard574bbf72005-01-03 23:27:31 +0000425 apic_update_irq(s);
426}
427
Gleb Natapov678e12c2009-06-10 15:40:48 +0300428static int apic_find_dest(uint8_t dest)
429{
430 APICState *apic = local_apics[dest];
431 int i;
432
433 if (apic && apic->id == dest)
434 return dest; /* shortcut in case apic->id == apic->idx */
435
436 for (i = 0; i < MAX_APICS; i++) {
437 apic = local_apics[i];
438 if (apic && apic->id == dest)
439 return i;
Alex Williamsonb538e532010-11-05 16:01:29 -0600440 if (!apic)
441 break;
Gleb Natapov678e12c2009-06-10 15:40:48 +0300442 }
443
444 return -1;
445}
446
bellardd3e9db92005-12-17 01:27:28 +0000447static void apic_get_delivery_bitmask(uint32_t *deliver_bitmask,
448 uint8_t dest, uint8_t dest_mode)
bellardd592d302005-07-23 19:05:37 +0000449{
bellardd592d302005-07-23 19:05:37 +0000450 APICState *apic_iter;
bellardd3e9db92005-12-17 01:27:28 +0000451 int i;
bellardd592d302005-07-23 19:05:37 +0000452
453 if (dest_mode == 0) {
bellardd3e9db92005-12-17 01:27:28 +0000454 if (dest == 0xff) {
455 memset(deliver_bitmask, 0xff, MAX_APIC_WORDS * sizeof(uint32_t));
456 } else {
Gleb Natapov678e12c2009-06-10 15:40:48 +0300457 int idx = apic_find_dest(dest);
bellardd3e9db92005-12-17 01:27:28 +0000458 memset(deliver_bitmask, 0x00, MAX_APIC_WORDS * sizeof(uint32_t));
Gleb Natapov678e12c2009-06-10 15:40:48 +0300459 if (idx >= 0)
460 set_bit(deliver_bitmask, idx);
bellardd3e9db92005-12-17 01:27:28 +0000461 }
bellardd592d302005-07-23 19:05:37 +0000462 } else {
463 /* XXX: cluster mode */
bellardd3e9db92005-12-17 01:27:28 +0000464 memset(deliver_bitmask, 0x00, MAX_APIC_WORDS * sizeof(uint32_t));
465 for(i = 0; i < MAX_APICS; i++) {
466 apic_iter = local_apics[i];
467 if (apic_iter) {
468 if (apic_iter->dest_mode == 0xf) {
469 if (dest & apic_iter->log_dest)
470 set_bit(deliver_bitmask, i);
471 } else if (apic_iter->dest_mode == 0x0) {
472 if ((dest & 0xf0) == (apic_iter->log_dest & 0xf0) &&
473 (dest & apic_iter->log_dest & 0x0f)) {
474 set_bit(deliver_bitmask, i);
475 }
476 }
Alex Williamsonb538e532010-11-05 16:01:29 -0600477 } else {
478 break;
bellardd3e9db92005-12-17 01:27:28 +0000479 }
bellardd592d302005-07-23 19:05:37 +0000480 }
481 }
bellardd592d302005-07-23 19:05:37 +0000482}
483
Blue Swirl92a16d72010-06-19 07:47:42 +0000484void apic_init_reset(DeviceState *d)
bellardd592d302005-07-23 19:05:37 +0000485{
Blue Swirl92a16d72010-06-19 07:47:42 +0000486 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
bellardd592d302005-07-23 19:05:37 +0000487 int i;
488
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300489 if (!s)
490 return;
491
bellardd592d302005-07-23 19:05:37 +0000492 s->tpr = 0;
493 s->spurious_vec = 0xff;
494 s->log_dest = 0;
bellarde0fd8782005-11-21 23:26:26 +0000495 s->dest_mode = 0xf;
bellardd592d302005-07-23 19:05:37 +0000496 memset(s->isr, 0, sizeof(s->isr));
497 memset(s->tmr, 0, sizeof(s->tmr));
498 memset(s->irr, 0, sizeof(s->irr));
bellardb4511722006-10-08 18:20:51 +0000499 for(i = 0; i < APIC_LVT_NB; i++)
500 s->lvt[i] = 1 << 16; /* mask LVT */
bellardd592d302005-07-23 19:05:37 +0000501 s->esr = 0;
502 memset(s->icr, 0, sizeof(s->icr));
503 s->divide_conf = 0;
504 s->count_shift = 0;
505 s->initial_count = 0;
506 s->initial_count_load_time = 0;
507 s->next_time = 0;
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300508 s->wait_for_sipi = 1;
bellardd592d302005-07-23 19:05:37 +0000509}
510
bellarde0fd8782005-11-21 23:26:26 +0000511static void apic_startup(APICState *s, int vector_num)
512{
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300513 s->sipi_vector = vector_num;
514 cpu_interrupt(s->cpu_env, CPU_INTERRUPT_SIPI);
515}
516
Blue Swirl92a16d72010-06-19 07:47:42 +0000517void apic_sipi(DeviceState *d)
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300518{
Blue Swirl92a16d72010-06-19 07:47:42 +0000519 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
520
Blue Swirl4a942ce2010-06-19 10:42:31 +0300521 cpu_reset_interrupt(s->cpu_env, CPU_INTERRUPT_SIPI);
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300522
523 if (!s->wait_for_sipi)
bellarde0fd8782005-11-21 23:26:26 +0000524 return;
Blue Swirl0e26b7b2010-06-19 10:42:34 +0300525 cpu_x86_load_seg_cache_sipi(s->cpu_env, s->sipi_vector);
Gleb Natapovb09ea7d2009-06-17 23:26:59 +0300526 s->wait_for_sipi = 0;
bellarde0fd8782005-11-21 23:26:26 +0000527}
528
Blue Swirl92a16d72010-06-19 07:47:42 +0000529static void apic_deliver(DeviceState *d, uint8_t dest, uint8_t dest_mode,
bellardd592d302005-07-23 19:05:37 +0000530 uint8_t delivery_mode, uint8_t vector_num,
531 uint8_t polarity, uint8_t trigger_mode)
532{
Blue Swirl92a16d72010-06-19 07:47:42 +0000533 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
bellardd3e9db92005-12-17 01:27:28 +0000534 uint32_t deliver_bitmask[MAX_APIC_WORDS];
bellardd592d302005-07-23 19:05:37 +0000535 int dest_shorthand = (s->icr[0] >> 18) & 3;
536 APICState *apic_iter;
537
bellarde0fd8782005-11-21 23:26:26 +0000538 switch (dest_shorthand) {
bellardd3e9db92005-12-17 01:27:28 +0000539 case 0:
540 apic_get_delivery_bitmask(deliver_bitmask, dest, dest_mode);
541 break;
542 case 1:
543 memset(deliver_bitmask, 0x00, sizeof(deliver_bitmask));
Gleb Natapov678e12c2009-06-10 15:40:48 +0300544 set_bit(deliver_bitmask, s->idx);
bellardd3e9db92005-12-17 01:27:28 +0000545 break;
546 case 2:
547 memset(deliver_bitmask, 0xff, sizeof(deliver_bitmask));
548 break;
549 case 3:
550 memset(deliver_bitmask, 0xff, sizeof(deliver_bitmask));
Gleb Natapov678e12c2009-06-10 15:40:48 +0300551 reset_bit(deliver_bitmask, s->idx);
bellardd3e9db92005-12-17 01:27:28 +0000552 break;
bellarde0fd8782005-11-21 23:26:26 +0000553 }
554
bellardd592d302005-07-23 19:05:37 +0000555 switch (delivery_mode) {
bellardd592d302005-07-23 19:05:37 +0000556 case APIC_DM_INIT:
557 {
558 int trig_mode = (s->icr[0] >> 15) & 1;
559 int level = (s->icr[0] >> 14) & 1;
560 if (level == 0 && trig_mode == 1) {
ths5fafdf22007-09-16 21:08:06 +0000561 foreach_apic(apic_iter, deliver_bitmask,
bellardd3e9db92005-12-17 01:27:28 +0000562 apic_iter->arb_id = apic_iter->id );
bellardd592d302005-07-23 19:05:37 +0000563 return;
564 }
565 }
566 break;
567
568 case APIC_DM_SIPI:
ths5fafdf22007-09-16 21:08:06 +0000569 foreach_apic(apic_iter, deliver_bitmask,
bellardd3e9db92005-12-17 01:27:28 +0000570 apic_startup(apic_iter, vector_num) );
bellardd592d302005-07-23 19:05:37 +0000571 return;
572 }
573
bellardd592d302005-07-23 19:05:37 +0000574 apic_bus_deliver(deliver_bitmask, delivery_mode, vector_num, polarity,
575 trigger_mode);
576}
577
Blue Swirl92a16d72010-06-19 07:47:42 +0000578int apic_get_interrupt(DeviceState *d)
bellard574bbf72005-01-03 23:27:31 +0000579{
Blue Swirl92a16d72010-06-19 07:47:42 +0000580 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
bellard574bbf72005-01-03 23:27:31 +0000581 int intno;
582
583 /* if the APIC is installed or enabled, we let the 8259 handle the
584 IRQs */
585 if (!s)
586 return -1;
587 if (!(s->spurious_vec & APIC_SV_ENABLE))
588 return -1;
ths3b46e622007-09-17 08:09:54 +0000589
bellard574bbf72005-01-03 23:27:31 +0000590 /* XXX: spurious IRQ handling */
591 intno = get_highest_priority_int(s->irr);
592 if (intno < 0)
593 return -1;
bellardd592d302005-07-23 19:05:37 +0000594 if (s->tpr && intno <= s->tpr)
595 return s->spurious_vec & 0xff;
bellardb4511722006-10-08 18:20:51 +0000596 reset_bit(s->irr, intno);
bellard574bbf72005-01-03 23:27:31 +0000597 set_bit(s->isr, intno);
598 apic_update_irq(s);
599 return intno;
600}
601
Blue Swirl92a16d72010-06-19 07:47:42 +0000602int apic_accept_pic_intr(DeviceState *d)
ths0e21e122007-10-09 03:08:56 +0000603{
Blue Swirl92a16d72010-06-19 07:47:42 +0000604 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
ths0e21e122007-10-09 03:08:56 +0000605 uint32_t lvt0;
606
607 if (!s)
608 return -1;
609
610 lvt0 = s->lvt[APIC_LVT_LINT0];
611
aurel32a5b38b52008-04-13 16:08:30 +0000612 if ((s->apicbase & MSR_IA32_APICBASE_ENABLE) == 0 ||
613 (lvt0 & APIC_LVT_MASKED) == 0)
ths0e21e122007-10-09 03:08:56 +0000614 return 1;
615
616 return 0;
617}
618
bellard574bbf72005-01-03 23:27:31 +0000619static uint32_t apic_get_current_count(APICState *s)
620{
621 int64_t d;
622 uint32_t val;
ths5fafdf22007-09-16 21:08:06 +0000623 d = (qemu_get_clock(vm_clock) - s->initial_count_load_time) >>
bellard574bbf72005-01-03 23:27:31 +0000624 s->count_shift;
625 if (s->lvt[APIC_LVT_TIMER] & APIC_LVT_TIMER_PERIODIC) {
626 /* periodic */
bellardd592d302005-07-23 19:05:37 +0000627 val = s->initial_count - (d % ((uint64_t)s->initial_count + 1));
bellard574bbf72005-01-03 23:27:31 +0000628 } else {
629 if (d >= s->initial_count)
630 val = 0;
631 else
632 val = s->initial_count - d;
633 }
634 return val;
635}
636
637static void apic_timer_update(APICState *s, int64_t current_time)
638{
639 int64_t next_time, d;
ths3b46e622007-09-17 08:09:54 +0000640
bellard574bbf72005-01-03 23:27:31 +0000641 if (!(s->lvt[APIC_LVT_TIMER] & APIC_LVT_MASKED)) {
ths5fafdf22007-09-16 21:08:06 +0000642 d = (current_time - s->initial_count_load_time) >>
bellard574bbf72005-01-03 23:27:31 +0000643 s->count_shift;
644 if (s->lvt[APIC_LVT_TIMER] & APIC_LVT_TIMER_PERIODIC) {
aliguori681f8c22008-08-18 14:19:42 +0000645 if (!s->initial_count)
646 goto no_timer;
bellardd592d302005-07-23 19:05:37 +0000647 d = ((d / ((uint64_t)s->initial_count + 1)) + 1) * ((uint64_t)s->initial_count + 1);
bellard574bbf72005-01-03 23:27:31 +0000648 } else {
649 if (d >= s->initial_count)
650 goto no_timer;
bellardd592d302005-07-23 19:05:37 +0000651 d = (uint64_t)s->initial_count + 1;
bellard574bbf72005-01-03 23:27:31 +0000652 }
653 next_time = s->initial_count_load_time + (d << s->count_shift);
654 qemu_mod_timer(s->timer, next_time);
655 s->next_time = next_time;
656 } else {
657 no_timer:
658 qemu_del_timer(s->timer);
659 }
660}
661
662static void apic_timer(void *opaque)
663{
664 APICState *s = opaque;
665
Blue Swirlcf6d64b2010-06-19 10:42:08 +0300666 apic_local_deliver(s, APIC_LVT_TIMER);
bellard574bbf72005-01-03 23:27:31 +0000667 apic_timer_update(s, s->next_time);
668}
669
Anthony Liguoric227f092009-10-01 16:12:16 -0500670static uint32_t apic_mem_readb(void *opaque, target_phys_addr_t addr)
bellard574bbf72005-01-03 23:27:31 +0000671{
672 return 0;
673}
674
Anthony Liguoric227f092009-10-01 16:12:16 -0500675static uint32_t apic_mem_readw(void *opaque, target_phys_addr_t addr)
bellard574bbf72005-01-03 23:27:31 +0000676{
677 return 0;
678}
679
Anthony Liguoric227f092009-10-01 16:12:16 -0500680static void apic_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val)
bellard574bbf72005-01-03 23:27:31 +0000681{
682}
683
Anthony Liguoric227f092009-10-01 16:12:16 -0500684static void apic_mem_writew(void *opaque, target_phys_addr_t addr, uint32_t val)
bellard574bbf72005-01-03 23:27:31 +0000685{
686}
687
Anthony Liguoric227f092009-10-01 16:12:16 -0500688static uint32_t apic_mem_readl(void *opaque, target_phys_addr_t addr)
bellard574bbf72005-01-03 23:27:31 +0000689{
Blue Swirl92a16d72010-06-19 07:47:42 +0000690 DeviceState *d;
bellard574bbf72005-01-03 23:27:31 +0000691 APICState *s;
692 uint32_t val;
693 int index;
694
Blue Swirl92a16d72010-06-19 07:47:42 +0000695 d = cpu_get_current_apic();
696 if (!d) {
bellard574bbf72005-01-03 23:27:31 +0000697 return 0;
Blue Swirl0e26b7b2010-06-19 10:42:34 +0300698 }
Blue Swirl92a16d72010-06-19 07:47:42 +0000699 s = DO_UPCAST(APICState, busdev.qdev, d);
bellard574bbf72005-01-03 23:27:31 +0000700
701 index = (addr >> 4) & 0xff;
702 switch(index) {
703 case 0x02: /* id */
704 val = s->id << 24;
705 break;
706 case 0x03: /* version */
707 val = 0x11 | ((APIC_LVT_NB - 1) << 16); /* version 0x11 */
708 break;
709 case 0x08:
710 val = s->tpr;
711 break;
bellardd592d302005-07-23 19:05:37 +0000712 case 0x09:
713 val = apic_get_arb_pri(s);
714 break;
bellard574bbf72005-01-03 23:27:31 +0000715 case 0x0a:
716 /* ppr */
717 val = apic_get_ppr(s);
718 break;
aurel32b237db32008-03-28 22:31:36 +0000719 case 0x0b:
720 val = 0;
721 break;
bellardd592d302005-07-23 19:05:37 +0000722 case 0x0d:
723 val = s->log_dest << 24;
724 break;
725 case 0x0e:
726 val = s->dest_mode << 28;
727 break;
bellard574bbf72005-01-03 23:27:31 +0000728 case 0x0f:
729 val = s->spurious_vec;
730 break;
731 case 0x10 ... 0x17:
732 val = s->isr[index & 7];
733 break;
734 case 0x18 ... 0x1f:
735 val = s->tmr[index & 7];
736 break;
737 case 0x20 ... 0x27:
738 val = s->irr[index & 7];
739 break;
740 case 0x28:
741 val = s->esr;
742 break;
bellard574bbf72005-01-03 23:27:31 +0000743 case 0x30:
744 case 0x31:
745 val = s->icr[index & 1];
746 break;
bellarde0fd8782005-11-21 23:26:26 +0000747 case 0x32 ... 0x37:
748 val = s->lvt[index - 0x32];
749 break;
bellard574bbf72005-01-03 23:27:31 +0000750 case 0x38:
751 val = s->initial_count;
752 break;
753 case 0x39:
754 val = apic_get_current_count(s);
755 break;
756 case 0x3e:
757 val = s->divide_conf;
758 break;
759 default:
760 s->esr |= ESR_ILLEGAL_ADDRESS;
761 val = 0;
762 break;
763 }
Blue Swirld8023f32010-10-20 16:41:28 +0000764 trace_apic_mem_readl(addr, val);
bellard574bbf72005-01-03 23:27:31 +0000765 return val;
766}
767
Andreas Färberf5095c62010-12-19 17:22:39 +0100768static void apic_send_msi(target_phys_addr_t addr, uint32_t data)
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +0300769{
770 uint8_t dest = (addr & MSI_ADDR_DEST_ID_MASK) >> MSI_ADDR_DEST_ID_SHIFT;
771 uint8_t vector = (data & MSI_DATA_VECTOR_MASK) >> MSI_DATA_VECTOR_SHIFT;
772 uint8_t dest_mode = (addr >> MSI_ADDR_DEST_MODE_SHIFT) & 0x1;
773 uint8_t trigger_mode = (data >> MSI_DATA_TRIGGER_SHIFT) & 0x1;
774 uint8_t delivery = (data >> MSI_DATA_DELIVERY_MODE_SHIFT) & 0x7;
775 /* XXX: Ignore redirection hint. */
776 apic_deliver_irq(dest, dest_mode, delivery, vector, 0, trigger_mode);
777}
778
Anthony Liguoric227f092009-10-01 16:12:16 -0500779static void apic_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
bellard574bbf72005-01-03 23:27:31 +0000780{
Blue Swirl92a16d72010-06-19 07:47:42 +0000781 DeviceState *d;
bellard574bbf72005-01-03 23:27:31 +0000782 APICState *s;
Michael S. Tsirkin54c96da2009-06-21 19:50:03 +0300783 int index = (addr >> 4) & 0xff;
784 if (addr > 0xfff || !index) {
785 /* MSI and MMIO APIC are at the same memory location,
786 * but actually not on the global bus: MSI is on PCI bus
787 * APIC is connected directly to the CPU.
788 * Mapping them on the global bus happens to work because
789 * MSI registers are reserved in APIC MMIO and vice versa. */
790 apic_send_msi(addr, val);
791 return;
792 }
bellard574bbf72005-01-03 23:27:31 +0000793
Blue Swirl92a16d72010-06-19 07:47:42 +0000794 d = cpu_get_current_apic();
795 if (!d) {
bellard574bbf72005-01-03 23:27:31 +0000796 return;
Blue Swirl0e26b7b2010-06-19 10:42:34 +0300797 }
Blue Swirl92a16d72010-06-19 07:47:42 +0000798 s = DO_UPCAST(APICState, busdev.qdev, d);
bellard574bbf72005-01-03 23:27:31 +0000799
Blue Swirld8023f32010-10-20 16:41:28 +0000800 trace_apic_mem_writel(addr, val);
bellard574bbf72005-01-03 23:27:31 +0000801
bellard574bbf72005-01-03 23:27:31 +0000802 switch(index) {
803 case 0x02:
804 s->id = (val >> 24);
805 break;
bellarde0fd8782005-11-21 23:26:26 +0000806 case 0x03:
807 break;
bellard574bbf72005-01-03 23:27:31 +0000808 case 0x08:
809 s->tpr = val;
bellardd592d302005-07-23 19:05:37 +0000810 apic_update_irq(s);
bellard574bbf72005-01-03 23:27:31 +0000811 break;
bellarde0fd8782005-11-21 23:26:26 +0000812 case 0x09:
813 case 0x0a:
814 break;
bellard574bbf72005-01-03 23:27:31 +0000815 case 0x0b: /* EOI */
816 apic_eoi(s);
817 break;
bellardd592d302005-07-23 19:05:37 +0000818 case 0x0d:
819 s->log_dest = val >> 24;
820 break;
821 case 0x0e:
822 s->dest_mode = val >> 28;
823 break;
bellard574bbf72005-01-03 23:27:31 +0000824 case 0x0f:
825 s->spurious_vec = val & 0x1ff;
bellardd592d302005-07-23 19:05:37 +0000826 apic_update_irq(s);
bellard574bbf72005-01-03 23:27:31 +0000827 break;
bellarde0fd8782005-11-21 23:26:26 +0000828 case 0x10 ... 0x17:
829 case 0x18 ... 0x1f:
830 case 0x20 ... 0x27:
831 case 0x28:
832 break;
bellard574bbf72005-01-03 23:27:31 +0000833 case 0x30:
bellardd592d302005-07-23 19:05:37 +0000834 s->icr[0] = val;
Blue Swirl92a16d72010-06-19 07:47:42 +0000835 apic_deliver(d, (s->icr[1] >> 24) & 0xff, (s->icr[0] >> 11) & 1,
bellardd592d302005-07-23 19:05:37 +0000836 (s->icr[0] >> 8) & 7, (s->icr[0] & 0xff),
837 (s->icr[0] >> 14) & 1, (s->icr[0] >> 15) & 1);
838 break;
bellard574bbf72005-01-03 23:27:31 +0000839 case 0x31:
bellardd592d302005-07-23 19:05:37 +0000840 s->icr[1] = val;
bellard574bbf72005-01-03 23:27:31 +0000841 break;
842 case 0x32 ... 0x37:
843 {
844 int n = index - 0x32;
845 s->lvt[n] = val;
846 if (n == APIC_LVT_TIMER)
847 apic_timer_update(s, qemu_get_clock(vm_clock));
848 }
849 break;
850 case 0x38:
851 s->initial_count = val;
852 s->initial_count_load_time = qemu_get_clock(vm_clock);
853 apic_timer_update(s, s->initial_count_load_time);
854 break;
bellarde0fd8782005-11-21 23:26:26 +0000855 case 0x39:
856 break;
bellard574bbf72005-01-03 23:27:31 +0000857 case 0x3e:
858 {
859 int v;
860 s->divide_conf = val & 0xb;
861 v = (s->divide_conf & 3) | ((s->divide_conf >> 1) & 4);
862 s->count_shift = (v + 1) & 7;
863 }
864 break;
865 default:
866 s->esr |= ESR_ILLEGAL_ADDRESS;
867 break;
868 }
869}
870
Juan Quintela695dcf72009-08-20 19:42:28 +0200871/* This function is only used for old state version 1 and 2 */
872static int apic_load_old(QEMUFile *f, void *opaque, int version_id)
bellardd592d302005-07-23 19:05:37 +0000873{
874 APICState *s = opaque;
875 int i;
876
bellarde6cf6a82006-08-17 10:48:06 +0000877 if (version_id > 2)
bellardd592d302005-07-23 19:05:37 +0000878 return -EINVAL;
879
880 /* XXX: what if the base changes? (registered memory regions) */
881 qemu_get_be32s(f, &s->apicbase);
882 qemu_get_8s(f, &s->id);
883 qemu_get_8s(f, &s->arb_id);
884 qemu_get_8s(f, &s->tpr);
885 qemu_get_be32s(f, &s->spurious_vec);
886 qemu_get_8s(f, &s->log_dest);
887 qemu_get_8s(f, &s->dest_mode);
888 for (i = 0; i < 8; i++) {
889 qemu_get_be32s(f, &s->isr[i]);
890 qemu_get_be32s(f, &s->tmr[i]);
891 qemu_get_be32s(f, &s->irr[i]);
892 }
893 for (i = 0; i < APIC_LVT_NB; i++) {
894 qemu_get_be32s(f, &s->lvt[i]);
895 }
896 qemu_get_be32s(f, &s->esr);
897 qemu_get_be32s(f, &s->icr[0]);
898 qemu_get_be32s(f, &s->icr[1]);
899 qemu_get_be32s(f, &s->divide_conf);
thsbee8d682007-12-16 23:41:11 +0000900 s->count_shift=qemu_get_be32(f);
bellardd592d302005-07-23 19:05:37 +0000901 qemu_get_be32s(f, &s->initial_count);
thsbee8d682007-12-16 23:41:11 +0000902 s->initial_count_load_time=qemu_get_be64(f);
903 s->next_time=qemu_get_be64(f);
bellarde6cf6a82006-08-17 10:48:06 +0000904
905 if (version_id >= 2)
906 qemu_get_timer(f, s->timer);
bellardd592d302005-07-23 19:05:37 +0000907 return 0;
908}
909
Juan Quintela695dcf72009-08-20 19:42:28 +0200910static const VMStateDescription vmstate_apic = {
911 .name = "apic",
912 .version_id = 3,
913 .minimum_version_id = 3,
914 .minimum_version_id_old = 1,
915 .load_state_old = apic_load_old,
916 .fields = (VMStateField []) {
917 VMSTATE_UINT32(apicbase, APICState),
918 VMSTATE_UINT8(id, APICState),
919 VMSTATE_UINT8(arb_id, APICState),
920 VMSTATE_UINT8(tpr, APICState),
921 VMSTATE_UINT32(spurious_vec, APICState),
922 VMSTATE_UINT8(log_dest, APICState),
923 VMSTATE_UINT8(dest_mode, APICState),
924 VMSTATE_UINT32_ARRAY(isr, APICState, 8),
925 VMSTATE_UINT32_ARRAY(tmr, APICState, 8),
926 VMSTATE_UINT32_ARRAY(irr, APICState, 8),
927 VMSTATE_UINT32_ARRAY(lvt, APICState, APIC_LVT_NB),
928 VMSTATE_UINT32(esr, APICState),
929 VMSTATE_UINT32_ARRAY(icr, APICState, 2),
930 VMSTATE_UINT32(divide_conf, APICState),
931 VMSTATE_INT32(count_shift, APICState),
932 VMSTATE_UINT32(initial_count, APICState),
933 VMSTATE_INT64(initial_count_load_time, APICState),
934 VMSTATE_INT64(next_time, APICState),
935 VMSTATE_TIMER(timer, APICState),
936 VMSTATE_END_OF_LIST()
937 }
938};
939
Blue Swirl8546b092010-06-19 07:44:07 +0000940static void apic_reset(DeviceState *d)
bellardd592d302005-07-23 19:05:37 +0000941{
Blue Swirl8546b092010-06-19 07:44:07 +0000942 APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
Avi Kivity4c0960c2009-08-17 23:19:53 +0300943 int bsp;
aurel32fec5fa02008-09-02 00:09:08 +0000944
Avi Kivity4c0960c2009-08-17 23:19:53 +0300945 bsp = cpu_is_bsp(s->cpu_env);
aurel32fec5fa02008-09-02 00:09:08 +0000946 s->apicbase = 0xfee00000 |
Gleb Natapov678e12c2009-06-10 15:40:48 +0300947 (bsp ? MSR_IA32_APICBASE_BSP : 0) | MSR_IA32_APICBASE_ENABLE;
aurel32fec5fa02008-09-02 00:09:08 +0000948
Blue Swirl92a16d72010-06-19 07:47:42 +0000949 apic_init_reset(d);
ths0e21e122007-10-09 03:08:56 +0000950
Gleb Natapov678e12c2009-06-10 15:40:48 +0300951 if (bsp) {
aurel32a5b38b52008-04-13 16:08:30 +0000952 /*
953 * LINT0 delivery mode on CPU #0 is set to ExtInt at initialization
954 * time typically by BIOS, so PIC interrupt can be delivered to the
955 * processor when local APIC is enabled.
956 */
957 s->lvt[APIC_LVT_LINT0] = 0x700;
958 }
bellardd592d302005-07-23 19:05:37 +0000959}
bellard574bbf72005-01-03 23:27:31 +0000960
Blue Swirld60efc62009-08-25 18:29:31 +0000961static CPUReadMemoryFunc * const apic_mem_read[3] = {
bellard574bbf72005-01-03 23:27:31 +0000962 apic_mem_readb,
963 apic_mem_readw,
964 apic_mem_readl,
965};
966
Blue Swirld60efc62009-08-25 18:29:31 +0000967static CPUWriteMemoryFunc * const apic_mem_write[3] = {
bellard574bbf72005-01-03 23:27:31 +0000968 apic_mem_writeb,
969 apic_mem_writew,
970 apic_mem_writel,
971};
972
Blue Swirl8546b092010-06-19 07:44:07 +0000973static int apic_init1(SysBusDevice *dev)
974{
975 APICState *s = FROM_SYSBUS(APICState, dev);
976 int apic_io_memory;
977 static int last_apic_idx;
978
979 if (last_apic_idx >= MAX_APICS) {
980 return -1;
981 }
982 apic_io_memory = cpu_register_io_memory(apic_mem_read,
Alexander Graf2507c122010-12-08 12:05:37 +0100983 apic_mem_write, NULL,
984 DEVICE_NATIVE_ENDIAN);
Blue Swirl8546b092010-06-19 07:44:07 +0000985 sysbus_init_mmio(dev, MSI_ADDR_SIZE, apic_io_memory);
986
987 s->timer = qemu_new_timer(vm_clock, apic_timer, s);
988 s->idx = last_apic_idx++;
989 local_apics[s->idx] = s;
990 return 0;
991}
992
993static SysBusDeviceInfo apic_info = {
994 .init = apic_init1,
995 .qdev.name = "apic",
996 .qdev.size = sizeof(APICState),
997 .qdev.vmsd = &vmstate_apic,
998 .qdev.reset = apic_reset,
999 .qdev.no_user = 1,
1000 .qdev.props = (Property[]) {
1001 DEFINE_PROP_UINT8("id", APICState, id, -1),
1002 DEFINE_PROP_PTR("cpu_env", APICState, cpu_env),
1003 DEFINE_PROP_END_OF_LIST(),
1004 }
1005};
1006
1007static void apic_register_devices(void)
1008{
1009 sysbus_register_withprop(&apic_info);
1010}
1011
1012device_init(apic_register_devices)