blob: 65f6877d79fec3ade28db8592d6c8dd4ab0a008a [file] [log] [blame]
Jan Kiszka244ac3a2011-10-16 19:38:22 +02001/*
2 * IOAPIC emulation logic - common bits of emulated and KVM kernel model
3 *
4 * Copyright (c) 2004-2005 Fabrice Bellard
5 * Copyright (c) 2009 Xiantao Zhang, Intel
6 * Copyright (c) 2011 Jan Kiszka, Siemens AG
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 */
21
Pavel Butsykind665d692015-09-22 16:18:20 +030022#include "monitor/monitor.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010023#include "hw/i386/ioapic.h"
24#include "hw/i386/ioapic_internal.h"
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010025#include "hw/sysbus.h"
Jan Kiszka244ac3a2011-10-16 19:38:22 +020026
xiaoqiang zhaodb0f8882013-11-05 18:16:05 +080027/* ioapic_no count start from 0 to MAX_IOAPICS,
28 * remove as static variable from ioapic_common_init.
29 * now as a global variable, let child to increase the counter
30 * then we can drop the 'instance_no' argument
31 * and convert to our QOM's realize function
32 */
33int ioapic_no;
34
Pavel Butsykind665d692015-09-22 16:18:20 +030035static void ioapic_irr_dump(Monitor *mon, const char *name, uint32_t bitmap)
36{
37 int i;
38
39 monitor_printf(mon, "%-10s ", name);
40 if (bitmap == 0) {
41 monitor_printf(mon, "(none)\n");
42 return;
43 }
44 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
45 if (bitmap & (1 << i)) {
46 monitor_printf(mon, "%-2u ", i);
47 }
48 }
49 monitor_printf(mon, "\n");
50}
51
52void ioapic_print_redtbl(Monitor *mon, IOAPICCommonState *s)
53{
54 static const char *delm_str[] = {
55 "fixed", "lowest", "SMI", "...", "NMI", "INIT", "...", "extINT"};
56 uint32_t remote_irr = 0;
57 int i;
58
59 monitor_printf(mon, "ioapic id=0x%02x sel=0x%02x", s->id, s->ioregsel);
60 if (s->ioregsel) {
61 monitor_printf(mon, " (redir[%u])\n",
62 (s->ioregsel - IOAPIC_REG_REDTBL_BASE) >> 1);
63 } else {
64 monitor_printf(mon, "\n");
65 }
66 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
67 uint64_t entry = s->ioredtbl[i];
68 uint32_t delm = (uint32_t)((entry & IOAPIC_LVT_DELIV_MODE) >>
69 IOAPIC_LVT_DELIV_MODE_SHIFT);
70 monitor_printf(mon, "pin %-2u 0x%016"PRIx64" dest=%"PRIx64
71 " vec=%-3"PRIu64" %s %-5s %-6s %-6s %s\n",
72 i, entry,
73 (entry >> IOAPIC_LVT_DEST_SHIFT) &
74 (entry & IOAPIC_LVT_DEST_MODE ? 0xff : 0xf),
75 entry & IOAPIC_VECTOR_MASK,
76 entry & IOAPIC_LVT_POLARITY ? "active-lo" : "active-hi",
77 entry & IOAPIC_LVT_TRIGGER_MODE ? "level" : "edge",
78 entry & IOAPIC_LVT_MASKED ? "masked" : "",
79 delm_str[delm],
80 entry & IOAPIC_LVT_DEST_MODE ? "logical" : "physical");
81
82 remote_irr |= entry & IOAPIC_LVT_TRIGGER_MODE ?
83 (entry & IOAPIC_LVT_REMOTE_IRR ? (1 << i) : 0) : 0;
84 }
85 ioapic_irr_dump(mon, "IRR", s->irr);
86 ioapic_irr_dump(mon, "Remote IRR", remote_irr);
87}
88
Jan Kiszka244ac3a2011-10-16 19:38:22 +020089void ioapic_reset_common(DeviceState *dev)
90{
Anthony Liguori999e12b2012-01-24 13:12:29 -060091 IOAPICCommonState *s = IOAPIC_COMMON(dev);
Jan Kiszka244ac3a2011-10-16 19:38:22 +020092 int i;
93
94 s->id = 0;
95 s->ioregsel = 0;
96 s->irr = 0;
97 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
98 s->ioredtbl[i] = 1 << IOAPIC_LVT_MASKED_SHIFT;
99 }
100}
101
102static void ioapic_dispatch_pre_save(void *opaque)
103{
Anthony Liguori999e12b2012-01-24 13:12:29 -0600104 IOAPICCommonState *s = IOAPIC_COMMON(opaque);
105 IOAPICCommonClass *info = IOAPIC_COMMON_GET_CLASS(s);
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200106
107 if (info->pre_save) {
108 info->pre_save(s);
109 }
110}
111
112static int ioapic_dispatch_post_load(void *opaque, int version_id)
113{
Anthony Liguori999e12b2012-01-24 13:12:29 -0600114 IOAPICCommonState *s = IOAPIC_COMMON(opaque);
115 IOAPICCommonClass *info = IOAPIC_COMMON_GET_CLASS(s);
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200116
117 if (info->post_load) {
118 info->post_load(s);
119 }
120 return 0;
121}
122
Hu Taof5ba7522013-07-01 18:18:41 +0800123static void ioapic_common_realize(DeviceState *dev, Error **errp)
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200124{
Igor Mammedovf16a69f2013-04-05 16:37:00 +0200125 IOAPICCommonState *s = IOAPIC_COMMON(dev);
Anthony Liguori999e12b2012-01-24 13:12:29 -0600126 IOAPICCommonClass *info;
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200127
128 if (ioapic_no >= MAX_IOAPICS) {
Hu Taof5ba7522013-07-01 18:18:41 +0800129 error_setg(errp, "Only %d ioapics allowed", MAX_IOAPICS);
130 return;
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200131 }
132
Anthony Liguori999e12b2012-01-24 13:12:29 -0600133 info = IOAPIC_COMMON_GET_CLASS(s);
xiaoqiang zhaodb0f8882013-11-05 18:16:05 +0800134 info->realize(dev, errp);
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200135
Hu Taof5ba7522013-07-01 18:18:41 +0800136 sysbus_init_mmio(SYS_BUS_DEVICE(s), &s->io_memory);
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200137 ioapic_no++;
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200138}
139
140static const VMStateDescription vmstate_ioapic_common = {
141 .name = "ioapic",
142 .version_id = 3,
143 .minimum_version_id = 1,
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200144 .pre_save = ioapic_dispatch_pre_save,
145 .post_load = ioapic_dispatch_post_load,
146 .fields = (VMStateField[]) {
147 VMSTATE_UINT8(id, IOAPICCommonState),
148 VMSTATE_UINT8(ioregsel, IOAPICCommonState),
149 VMSTATE_UNUSED_V(2, 8), /* to account for qemu-kvm's v2 format */
150 VMSTATE_UINT32_V(irr, IOAPICCommonState, 2),
151 VMSTATE_UINT64_ARRAY(ioredtbl, IOAPICCommonState, IOAPIC_NUM_PINS),
152 VMSTATE_END_OF_LIST()
153 }
154};
155
Anthony Liguori999e12b2012-01-24 13:12:29 -0600156static void ioapic_common_class_init(ObjectClass *klass, void *data)
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200157{
Anthony Liguori39bffca2011-12-07 21:34:16 -0600158 DeviceClass *dc = DEVICE_CLASS(klass);
Anthony Liguori999e12b2012-01-24 13:12:29 -0600159
Hu Taof5ba7522013-07-01 18:18:41 +0800160 dc->realize = ioapic_common_realize;
Anthony Liguori39bffca2011-12-07 21:34:16 -0600161 dc->vmsd = &vmstate_ioapic_common;
Jan Kiszka244ac3a2011-10-16 19:38:22 +0200162}
Anthony Liguori999e12b2012-01-24 13:12:29 -0600163
Andreas Färber8c43a6f2013-01-10 16:19:07 +0100164static const TypeInfo ioapic_common_type = {
Anthony Liguori999e12b2012-01-24 13:12:29 -0600165 .name = TYPE_IOAPIC_COMMON,
166 .parent = TYPE_SYS_BUS_DEVICE,
167 .instance_size = sizeof(IOAPICCommonState),
168 .class_size = sizeof(IOAPICCommonClass),
169 .class_init = ioapic_common_class_init,
170 .abstract = true,
171};
172
xiaoqiang zhaof9771852013-11-05 18:16:04 +0800173static void ioapic_common_register_types(void)
Anthony Liguori999e12b2012-01-24 13:12:29 -0600174{
175 type_register_static(&ioapic_common_type);
176}
177
xiaoqiang zhaof9771852013-11-05 18:16:04 +0800178type_init(ioapic_common_register_types)