| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  IOAPIC emulation logic - common bits of emulated and KVM kernel model | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (c) 2004-2005 Fabrice Bellard | 
					
						
							|  |  |  |  *  Copyright (c) 2009      Xiantao Zhang, Intel | 
					
						
							|  |  |  |  *  Copyright (c) 2011      Jan Kiszka, Siemens AG | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:03 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
											  
											
												include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef.  Since then, we've moved to include qemu/osdep.h
everywhere.  Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h.  That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h.  Include qapi/error.h in .c files that need it and don't
get it now.  Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly.  Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h.  Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third.  Unfortunately, the number depending on
qapi-types.h shrinks only a little.  More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
											
										 
											2016-03-14 09:01:28 +01:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-22 16:18:20 +03:00
										 |  |  | #include "monitor/monitor.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/i386/ioapic.h"
 | 
					
						
							|  |  |  | #include "hw/i386/ioapic_internal.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/sysbus.h"
 | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 18:16:05 +08:00
										 |  |  | /* ioapic_no count start from 0 to MAX_IOAPICS,
 | 
					
						
							|  |  |  |  * remove as static variable from ioapic_common_init. | 
					
						
							|  |  |  |  * now as a global variable, let child to increase the counter | 
					
						
							|  |  |  |  * then we can drop the 'instance_no' argument | 
					
						
							|  |  |  |  * and convert to our QOM's realize function | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int ioapic_no; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 16:18:20 +03:00
										 |  |  | static void ioapic_irr_dump(Monitor *mon, const char *name, uint32_t bitmap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     monitor_printf(mon, "%-10s ", name); | 
					
						
							|  |  |  |     if (bitmap == 0) { | 
					
						
							|  |  |  |         monitor_printf(mon, "(none)\n"); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     for (i = 0; i < IOAPIC_NUM_PINS; i++) { | 
					
						
							|  |  |  |         if (bitmap & (1 << i)) { | 
					
						
							|  |  |  |             monitor_printf(mon, "%-2u ", i); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     monitor_printf(mon, "\n"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ioapic_print_redtbl(Monitor *mon, IOAPICCommonState *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     static const char *delm_str[] = { | 
					
						
							|  |  |  |         "fixed", "lowest", "SMI", "...", "NMI", "INIT", "...", "extINT"}; | 
					
						
							|  |  |  |     uint32_t remote_irr = 0; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     monitor_printf(mon, "ioapic id=0x%02x sel=0x%02x", s->id, s->ioregsel); | 
					
						
							|  |  |  |     if (s->ioregsel) { | 
					
						
							|  |  |  |         monitor_printf(mon, " (redir[%u])\n", | 
					
						
							|  |  |  |                        (s->ioregsel - IOAPIC_REG_REDTBL_BASE) >> 1); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         monitor_printf(mon, "\n"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     for (i = 0; i < IOAPIC_NUM_PINS; i++) { | 
					
						
							|  |  |  |         uint64_t entry = s->ioredtbl[i]; | 
					
						
							|  |  |  |         uint32_t delm = (uint32_t)((entry & IOAPIC_LVT_DELIV_MODE) >> | 
					
						
							|  |  |  |                                    IOAPIC_LVT_DELIV_MODE_SHIFT); | 
					
						
							|  |  |  |         monitor_printf(mon, "pin %-2u 0x%016"PRIx64" dest=%"PRIx64 | 
					
						
							|  |  |  |                        " vec=%-3"PRIu64" %s %-5s %-6s %-6s %s\n", | 
					
						
							|  |  |  |                        i, entry, | 
					
						
							|  |  |  |                        (entry >> IOAPIC_LVT_DEST_SHIFT) & | 
					
						
							|  |  |  |                             (entry & IOAPIC_LVT_DEST_MODE ? 0xff : 0xf), | 
					
						
							|  |  |  |                        entry & IOAPIC_VECTOR_MASK, | 
					
						
							|  |  |  |                        entry & IOAPIC_LVT_POLARITY ? "active-lo" : "active-hi", | 
					
						
							|  |  |  |                        entry & IOAPIC_LVT_TRIGGER_MODE ? "level" : "edge", | 
					
						
							|  |  |  |                        entry & IOAPIC_LVT_MASKED ? "masked" : "", | 
					
						
							|  |  |  |                        delm_str[delm], | 
					
						
							|  |  |  |                        entry & IOAPIC_LVT_DEST_MODE ? "logical" : "physical"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         remote_irr |= entry & IOAPIC_LVT_TRIGGER_MODE ? | 
					
						
							|  |  |  |                         (entry & IOAPIC_LVT_REMOTE_IRR ? (1 << i) : 0) : 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ioapic_irr_dump(mon, "IRR", s->irr); | 
					
						
							|  |  |  |     ioapic_irr_dump(mon, "Remote IRR", remote_irr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | void ioapic_reset_common(DeviceState *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  |     IOAPICCommonState *s = IOAPIC_COMMON(dev); | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->id = 0; | 
					
						
							|  |  |  |     s->ioregsel = 0; | 
					
						
							|  |  |  |     s->irr = 0; | 
					
						
							|  |  |  |     for (i = 0; i < IOAPIC_NUM_PINS; i++) { | 
					
						
							|  |  |  |         s->ioredtbl[i] = 1 << IOAPIC_LVT_MASKED_SHIFT; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void ioapic_dispatch_pre_save(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  |     IOAPICCommonState *s = IOAPIC_COMMON(opaque); | 
					
						
							|  |  |  |     IOAPICCommonClass *info = IOAPIC_COMMON_GET_CLASS(s); | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (info->pre_save) { | 
					
						
							|  |  |  |         info->pre_save(s); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ioapic_dispatch_post_load(void *opaque, int version_id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  |     IOAPICCommonState *s = IOAPIC_COMMON(opaque); | 
					
						
							|  |  |  |     IOAPICCommonClass *info = IOAPIC_COMMON_GET_CLASS(s); | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (info->post_load) { | 
					
						
							|  |  |  |         info->post_load(s); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 18:18:41 +08:00
										 |  |  | static void ioapic_common_realize(DeviceState *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-04-05 16:37:00 +02:00
										 |  |  |     IOAPICCommonState *s = IOAPIC_COMMON(dev); | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  |     IOAPICCommonClass *info; | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ioapic_no >= MAX_IOAPICS) { | 
					
						
							| 
									
										
										
										
											2013-07-01 18:18:41 +08:00
										 |  |  |         error_setg(errp, "Only %d ioapics allowed", MAX_IOAPICS); | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  |     info = IOAPIC_COMMON_GET_CLASS(s); | 
					
						
							| 
									
										
										
										
											2013-11-05 18:16:05 +08:00
										 |  |  |     info->realize(dev, errp); | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 18:18:41 +08:00
										 |  |  |     sysbus_init_mmio(SYS_BUS_DEVICE(s), &s->io_memory); | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  |     ioapic_no++; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const VMStateDescription vmstate_ioapic_common = { | 
					
						
							|  |  |  |     .name = "ioapic", | 
					
						
							|  |  |  |     .version_id = 3, | 
					
						
							|  |  |  |     .minimum_version_id = 1, | 
					
						
							|  |  |  |     .pre_save = ioapic_dispatch_pre_save, | 
					
						
							|  |  |  |     .post_load = ioapic_dispatch_post_load, | 
					
						
							|  |  |  |     .fields = (VMStateField[]) { | 
					
						
							|  |  |  |         VMSTATE_UINT8(id, IOAPICCommonState), | 
					
						
							|  |  |  |         VMSTATE_UINT8(ioregsel, IOAPICCommonState), | 
					
						
							|  |  |  |         VMSTATE_UNUSED_V(2, 8), /* to account for qemu-kvm's v2 format */ | 
					
						
							|  |  |  |         VMSTATE_UINT32_V(irr, IOAPICCommonState, 2), | 
					
						
							|  |  |  |         VMSTATE_UINT64_ARRAY(ioredtbl, IOAPICCommonState, IOAPIC_NUM_PINS), | 
					
						
							|  |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  | static void ioapic_common_class_init(ObjectClass *klass, void *data) | 
					
						
							| 
									
										
										
										
											2011-10-16 19:38:22 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 18:18:41 +08:00
										 |  |  |     dc->realize = ioapic_common_realize; | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     dc->vmsd = &vmstate_ioapic_common; | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:19:07 +01:00
										 |  |  | static const TypeInfo ioapic_common_type = { | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  |     .name = TYPE_IOAPIC_COMMON, | 
					
						
							|  |  |  |     .parent = TYPE_SYS_BUS_DEVICE, | 
					
						
							|  |  |  |     .instance_size = sizeof(IOAPICCommonState), | 
					
						
							|  |  |  |     .class_size = sizeof(IOAPICCommonClass), | 
					
						
							|  |  |  |     .class_init = ioapic_common_class_init, | 
					
						
							|  |  |  |     .abstract = true, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 18:16:04 +08:00
										 |  |  | static void ioapic_common_register_types(void) | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  | { | 
					
						
							|  |  |  |     type_register_static(&ioapic_common_type); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 18:16:04 +08:00
										 |  |  | type_init(ioapic_common_register_types) |