2011-10-16 09:16:36 +00:00
|
|
|
/*
|
|
|
|
* APIC support - common bits of emulated and KVM kernel model
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004-2005 Fabrice Bellard
|
|
|
|
* 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/>
|
|
|
|
*/
|
2013-02-05 16:06:20 +00:00
|
|
|
#include "hw/i386/apic.h"
|
|
|
|
#include "hw/i386/apic_internal.h"
|
2011-10-16 09:16:36 +00:00
|
|
|
#include "trace.h"
|
2012-12-17 17:20:04 +00:00
|
|
|
#include "sysemu/kvm.h"
|
2013-04-29 17:03:01 +00:00
|
|
|
#include "hw/qdev.h"
|
|
|
|
#include "hw/sysbus.h"
|
2011-10-16 09:16:36 +00:00
|
|
|
|
|
|
|
static int apic_irq_delivered;
|
2012-02-17 17:31:19 +00:00
|
|
|
bool apic_report_tpr_access;
|
2011-10-16 09:16:36 +00:00
|
|
|
|
|
|
|
void cpu_set_apic_base(DeviceState *d, uint64_t val)
|
|
|
|
{
|
|
|
|
trace_cpu_set_apic_base(val);
|
|
|
|
|
2012-01-24 19:12:29 +00:00
|
|
|
if (d) {
|
|
|
|
APICCommonState *s = APIC_COMMON(d);
|
|
|
|
APICCommonClass *info = APIC_COMMON_GET_CLASS(s);
|
2011-10-16 09:16:36 +00:00
|
|
|
info->set_base(s, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t cpu_get_apic_base(DeviceState *d)
|
|
|
|
{
|
2012-01-24 19:12:29 +00:00
|
|
|
if (d) {
|
|
|
|
APICCommonState *s = APIC_COMMON(d);
|
|
|
|
trace_cpu_get_apic_base((uint64_t)s->apicbase);
|
|
|
|
return s->apicbase;
|
|
|
|
} else {
|
2012-07-23 13:22:27 +00:00
|
|
|
trace_cpu_get_apic_base(MSR_IA32_APICBASE_BSP);
|
|
|
|
return MSR_IA32_APICBASE_BSP;
|
2012-01-24 19:12:29 +00:00
|
|
|
}
|
2011-10-16 09:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void cpu_set_apic_tpr(DeviceState *d, uint8_t val)
|
|
|
|
{
|
2012-01-24 19:12:29 +00:00
|
|
|
APICCommonState *s;
|
|
|
|
APICCommonClass *info;
|
2011-10-16 09:16:36 +00:00
|
|
|
|
2012-01-24 19:12:29 +00:00
|
|
|
if (!d) {
|
|
|
|
return;
|
2011-10-16 09:16:36 +00:00
|
|
|
}
|
2012-01-24 19:12:29 +00:00
|
|
|
|
|
|
|
s = APIC_COMMON(d);
|
|
|
|
info = APIC_COMMON_GET_CLASS(s);
|
|
|
|
|
|
|
|
info->set_tpr(s, val);
|
2011-10-16 09:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t cpu_get_apic_tpr(DeviceState *d)
|
2012-02-17 17:31:19 +00:00
|
|
|
{
|
|
|
|
APICCommonState *s;
|
|
|
|
APICCommonClass *info;
|
|
|
|
|
|
|
|
if (!d) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = APIC_COMMON(d);
|
|
|
|
info = APIC_COMMON_GET_CLASS(s);
|
|
|
|
|
|
|
|
return info->get_tpr(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void apic_enable_tpr_access_reporting(DeviceState *d, bool enable)
|
|
|
|
{
|
|
|
|
APICCommonState *s = DO_UPCAST(APICCommonState, busdev.qdev, d);
|
|
|
|
APICCommonClass *info = APIC_COMMON_GET_CLASS(s);
|
|
|
|
|
|
|
|
apic_report_tpr_access = enable;
|
|
|
|
if (info->enable_tpr_reporting) {
|
|
|
|
info->enable_tpr_reporting(s, enable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 10:30:10 +00:00
|
|
|
void apic_enable_vapic(DeviceState *d, hwaddr paddr)
|
2011-10-16 09:16:36 +00:00
|
|
|
{
|
|
|
|
APICCommonState *s = DO_UPCAST(APICCommonState, busdev.qdev, d);
|
2012-02-17 17:31:19 +00:00
|
|
|
APICCommonClass *info = APIC_COMMON_GET_CLASS(s);
|
2011-10-16 09:16:36 +00:00
|
|
|
|
2012-02-17 17:31:19 +00:00
|
|
|
s->vapic_paddr = paddr;
|
|
|
|
info->vapic_base_update(s);
|
2011-10-16 09:16:36 +00:00
|
|
|
}
|
|
|
|
|
2012-02-17 17:31:17 +00:00
|
|
|
void apic_handle_tpr_access_report(DeviceState *d, target_ulong ip,
|
|
|
|
TPRAccess access)
|
|
|
|
{
|
2012-02-17 17:31:19 +00:00
|
|
|
APICCommonState *s = DO_UPCAST(APICCommonState, busdev.qdev, d);
|
|
|
|
|
2013-01-16 18:29:31 +00:00
|
|
|
vapic_report_tpr_access(s->vapic, CPU(s->cpu), ip, access);
|
2012-02-17 17:31:17 +00:00
|
|
|
}
|
|
|
|
|
2011-10-16 09:16:36 +00:00
|
|
|
void apic_report_irq_delivered(int delivered)
|
|
|
|
{
|
|
|
|
apic_irq_delivered += delivered;
|
|
|
|
|
|
|
|
trace_apic_report_irq_delivered(apic_irq_delivered);
|
|
|
|
}
|
|
|
|
|
|
|
|
void apic_reset_irq_delivered(void)
|
|
|
|
{
|
|
|
|
trace_apic_reset_irq_delivered(apic_irq_delivered);
|
|
|
|
|
|
|
|
apic_irq_delivered = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int apic_get_irq_delivered(void)
|
|
|
|
{
|
|
|
|
trace_apic_get_irq_delivered(apic_irq_delivered);
|
|
|
|
|
|
|
|
return apic_irq_delivered;
|
|
|
|
}
|
|
|
|
|
|
|
|
void apic_deliver_nmi(DeviceState *d)
|
|
|
|
{
|
2012-01-24 19:12:29 +00:00
|
|
|
APICCommonState *s = APIC_COMMON(d);
|
|
|
|
APICCommonClass *info = APIC_COMMON_GET_CLASS(s);
|
2011-10-16 09:16:36 +00:00
|
|
|
|
|
|
|
info->external_nmi(s);
|
|
|
|
}
|
|
|
|
|
2011-10-16 10:19:12 +00:00
|
|
|
bool apic_next_timer(APICCommonState *s, int64_t current_time)
|
|
|
|
{
|
|
|
|
int64_t d;
|
|
|
|
|
|
|
|
/* We need to store the timer state separately to support APIC
|
|
|
|
* implementations that maintain a non-QEMU timer, e.g. inside the
|
|
|
|
* host kernel. This open-coded state allows us to migrate between
|
|
|
|
* both models. */
|
|
|
|
s->timer_expiry = -1;
|
|
|
|
|
|
|
|
if (s->lvt[APIC_LVT_TIMER] & APIC_LVT_MASKED) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
d = (current_time - s->initial_count_load_time) >> s->count_shift;
|
|
|
|
|
|
|
|
if (s->lvt[APIC_LVT_TIMER] & APIC_LVT_TIMER_PERIODIC) {
|
|
|
|
if (!s->initial_count) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
d = ((d / ((uint64_t)s->initial_count + 1)) + 1) *
|
|
|
|
((uint64_t)s->initial_count + 1);
|
|
|
|
} else {
|
|
|
|
if (d >= s->initial_count) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
d = (uint64_t)s->initial_count + 1;
|
|
|
|
}
|
|
|
|
s->next_time = s->initial_count_load_time + (d << s->count_shift);
|
|
|
|
s->timer_expiry = s->next_time;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-16 09:16:36 +00:00
|
|
|
void apic_init_reset(DeviceState *d)
|
|
|
|
{
|
|
|
|
APICCommonState *s = DO_UPCAST(APICCommonState, busdev.qdev, d);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!s) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
s->tpr = 0;
|
|
|
|
s->spurious_vec = 0xff;
|
|
|
|
s->log_dest = 0;
|
|
|
|
s->dest_mode = 0xf;
|
|
|
|
memset(s->isr, 0, sizeof(s->isr));
|
|
|
|
memset(s->tmr, 0, sizeof(s->tmr));
|
|
|
|
memset(s->irr, 0, sizeof(s->irr));
|
|
|
|
for (i = 0; i < APIC_LVT_NB; i++) {
|
|
|
|
s->lvt[i] = APIC_LVT_MASKED;
|
|
|
|
}
|
|
|
|
s->esr = 0;
|
|
|
|
memset(s->icr, 0, sizeof(s->icr));
|
|
|
|
s->divide_conf = 0;
|
|
|
|
s->count_shift = 0;
|
|
|
|
s->initial_count = 0;
|
|
|
|
s->initial_count_load_time = 0;
|
|
|
|
s->next_time = 0;
|
|
|
|
s->wait_for_sipi = 1;
|
|
|
|
|
2011-10-16 10:19:12 +00:00
|
|
|
if (s->timer) {
|
2013-08-21 15:03:08 +00:00
|
|
|
timer_del(s->timer);
|
2011-10-16 10:19:12 +00:00
|
|
|
}
|
|
|
|
s->timer_expiry = -1;
|
2011-10-16 09:16:36 +00:00
|
|
|
}
|
|
|
|
|
2012-07-23 13:22:27 +00:00
|
|
|
void apic_designate_bsp(DeviceState *d)
|
|
|
|
{
|
|
|
|
if (d == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
APICCommonState *s = APIC_COMMON(d);
|
|
|
|
s->apicbase |= MSR_IA32_APICBASE_BSP;
|
|
|
|
}
|
|
|
|
|
2011-10-16 09:16:36 +00:00
|
|
|
static void apic_reset_common(DeviceState *d)
|
|
|
|
{
|
|
|
|
APICCommonState *s = DO_UPCAST(APICCommonState, busdev.qdev, d);
|
2012-02-17 17:31:19 +00:00
|
|
|
APICCommonClass *info = APIC_COMMON_GET_CLASS(s);
|
2011-10-16 09:16:36 +00:00
|
|
|
bool bsp;
|
|
|
|
|
2012-10-10 12:10:07 +00:00
|
|
|
bsp = cpu_is_bsp(s->cpu);
|
2013-03-20 23:23:20 +00:00
|
|
|
s->apicbase = APIC_DEFAULT_ADDRESS |
|
2011-10-16 09:16:36 +00:00
|
|
|
(bsp ? MSR_IA32_APICBASE_BSP : 0) | MSR_IA32_APICBASE_ENABLE;
|
|
|
|
|
2012-02-17 17:31:19 +00:00
|
|
|
s->vapic_paddr = 0;
|
|
|
|
info->vapic_base_update(s);
|
|
|
|
|
2011-10-16 09:16:36 +00:00
|
|
|
apic_init_reset(d);
|
|
|
|
|
|
|
|
if (bsp) {
|
|
|
|
/*
|
|
|
|
* LINT0 delivery mode on CPU #0 is set to ExtInt at initialization
|
|
|
|
* time typically by BIOS, so PIC interrupt can be delivered to the
|
|
|
|
* processor when local APIC is enabled.
|
|
|
|
*/
|
|
|
|
s->lvt[APIC_LVT_LINT0] = 0x700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function is only used for old state version 1 and 2 */
|
|
|
|
static int apic_load_old(QEMUFile *f, void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
APICCommonState *s = opaque;
|
2012-02-05 11:45:20 +00:00
|
|
|
APICCommonClass *info = APIC_COMMON_GET_CLASS(s);
|
2011-10-16 09:16:36 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (version_id > 2) {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: what if the base changes? (registered memory regions) */
|
|
|
|
qemu_get_be32s(f, &s->apicbase);
|
|
|
|
qemu_get_8s(f, &s->id);
|
|
|
|
qemu_get_8s(f, &s->arb_id);
|
|
|
|
qemu_get_8s(f, &s->tpr);
|
|
|
|
qemu_get_be32s(f, &s->spurious_vec);
|
|
|
|
qemu_get_8s(f, &s->log_dest);
|
|
|
|
qemu_get_8s(f, &s->dest_mode);
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
qemu_get_be32s(f, &s->isr[i]);
|
|
|
|
qemu_get_be32s(f, &s->tmr[i]);
|
|
|
|
qemu_get_be32s(f, &s->irr[i]);
|
|
|
|
}
|
|
|
|
for (i = 0; i < APIC_LVT_NB; i++) {
|
|
|
|
qemu_get_be32s(f, &s->lvt[i]);
|
|
|
|
}
|
|
|
|
qemu_get_be32s(f, &s->esr);
|
|
|
|
qemu_get_be32s(f, &s->icr[0]);
|
|
|
|
qemu_get_be32s(f, &s->icr[1]);
|
|
|
|
qemu_get_be32s(f, &s->divide_conf);
|
|
|
|
s->count_shift = qemu_get_be32(f);
|
|
|
|
qemu_get_be32s(f, &s->initial_count);
|
|
|
|
s->initial_count_load_time = qemu_get_be64(f);
|
|
|
|
s->next_time = qemu_get_be64(f);
|
|
|
|
|
|
|
|
if (version_id >= 2) {
|
2012-02-05 11:45:20 +00:00
|
|
|
s->timer_expiry = qemu_get_be64(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info->post_load) {
|
|
|
|
info->post_load(s);
|
2011-10-16 09:16:36 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-04-29 17:03:01 +00:00
|
|
|
static int apic_init_common(ICCDevice *dev)
|
2011-10-16 09:16:36 +00:00
|
|
|
{
|
2012-01-24 19:12:29 +00:00
|
|
|
APICCommonState *s = APIC_COMMON(dev);
|
|
|
|
APICCommonClass *info;
|
2012-02-17 17:31:19 +00:00
|
|
|
static DeviceState *vapic;
|
2011-10-16 09:16:36 +00:00
|
|
|
static int apic_no;
|
2013-04-29 17:03:01 +00:00
|
|
|
static bool mmio_registered;
|
2011-10-16 09:16:36 +00:00
|
|
|
|
|
|
|
if (apic_no >= MAX_APICS) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
s->idx = apic_no++;
|
|
|
|
|
2012-01-24 19:12:29 +00:00
|
|
|
info = APIC_COMMON_GET_CLASS(s);
|
2011-10-16 09:16:36 +00:00
|
|
|
info->init(s);
|
2013-04-29 17:03:01 +00:00
|
|
|
if (!mmio_registered) {
|
|
|
|
ICCBus *b = ICC_BUS(qdev_get_parent_bus(DEVICE(dev)));
|
|
|
|
memory_region_add_subregion(b->apic_address_space, 0, &s->io_memory);
|
|
|
|
mmio_registered = true;
|
|
|
|
}
|
2012-02-17 17:31:19 +00:00
|
|
|
|
2012-08-14 11:43:12 +00:00
|
|
|
/* Note: We need at least 1M to map the VAPIC option ROM */
|
|
|
|
if (!vapic && s->vapic_control & VAPIC_ENABLE_MASK &&
|
|
|
|
ram_size >= 1024 * 1024) {
|
2012-02-17 17:31:19 +00:00
|
|
|
vapic = sysbus_create_simple("kvmvapic", -1, NULL);
|
|
|
|
}
|
|
|
|
s->vapic = vapic;
|
|
|
|
if (apic_report_tpr_access && info->enable_tpr_reporting) {
|
|
|
|
info->enable_tpr_reporting(s, true);
|
|
|
|
}
|
|
|
|
|
2011-10-16 09:16:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-17 17:31:19 +00:00
|
|
|
static void apic_dispatch_pre_save(void *opaque)
|
|
|
|
{
|
|
|
|
APICCommonState *s = APIC_COMMON(opaque);
|
|
|
|
APICCommonClass *info = APIC_COMMON_GET_CLASS(s);
|
|
|
|
|
|
|
|
if (info->pre_save) {
|
|
|
|
info->pre_save(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-16 10:19:12 +00:00
|
|
|
static int apic_dispatch_post_load(void *opaque, int version_id)
|
|
|
|
{
|
2012-01-24 19:12:29 +00:00
|
|
|
APICCommonState *s = APIC_COMMON(opaque);
|
|
|
|
APICCommonClass *info = APIC_COMMON_GET_CLASS(s);
|
2011-10-16 10:19:12 +00:00
|
|
|
|
|
|
|
if (info->post_load) {
|
|
|
|
info->post_load(s);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-16 09:16:36 +00:00
|
|
|
static const VMStateDescription vmstate_apic_common = {
|
|
|
|
.name = "apic",
|
|
|
|
.version_id = 3,
|
|
|
|
.minimum_version_id = 3,
|
|
|
|
.minimum_version_id_old = 1,
|
|
|
|
.load_state_old = apic_load_old,
|
2012-02-17 17:31:19 +00:00
|
|
|
.pre_save = apic_dispatch_pre_save,
|
2011-10-16 10:19:12 +00:00
|
|
|
.post_load = apic_dispatch_post_load,
|
2011-10-16 09:16:36 +00:00
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_UINT32(apicbase, APICCommonState),
|
|
|
|
VMSTATE_UINT8(id, APICCommonState),
|
|
|
|
VMSTATE_UINT8(arb_id, APICCommonState),
|
|
|
|
VMSTATE_UINT8(tpr, APICCommonState),
|
|
|
|
VMSTATE_UINT32(spurious_vec, APICCommonState),
|
|
|
|
VMSTATE_UINT8(log_dest, APICCommonState),
|
|
|
|
VMSTATE_UINT8(dest_mode, APICCommonState),
|
|
|
|
VMSTATE_UINT32_ARRAY(isr, APICCommonState, 8),
|
|
|
|
VMSTATE_UINT32_ARRAY(tmr, APICCommonState, 8),
|
|
|
|
VMSTATE_UINT32_ARRAY(irr, APICCommonState, 8),
|
|
|
|
VMSTATE_UINT32_ARRAY(lvt, APICCommonState, APIC_LVT_NB),
|
|
|
|
VMSTATE_UINT32(esr, APICCommonState),
|
|
|
|
VMSTATE_UINT32_ARRAY(icr, APICCommonState, 2),
|
|
|
|
VMSTATE_UINT32(divide_conf, APICCommonState),
|
|
|
|
VMSTATE_INT32(count_shift, APICCommonState),
|
|
|
|
VMSTATE_UINT32(initial_count, APICCommonState),
|
|
|
|
VMSTATE_INT64(initial_count_load_time, APICCommonState),
|
|
|
|
VMSTATE_INT64(next_time, APICCommonState),
|
2011-10-16 10:19:12 +00:00
|
|
|
VMSTATE_INT64(timer_expiry,
|
|
|
|
APICCommonState), /* open-coded timer state */
|
2011-10-16 09:16:36 +00:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static Property apic_properties_common[] = {
|
|
|
|
DEFINE_PROP_UINT8("id", APICCommonState, id, -1),
|
2012-02-17 17:31:19 +00:00
|
|
|
DEFINE_PROP_BIT("vapic", APICCommonState, vapic_control, VAPIC_ENABLE_BIT,
|
|
|
|
true),
|
2011-10-16 09:16:36 +00:00
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2012-01-24 19:12:29 +00:00
|
|
|
static void apic_common_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2013-04-29 17:03:01 +00:00
|
|
|
ICCDeviceClass *idc = ICC_DEVICE_CLASS(klass);
|
2011-12-08 03:34:16 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2012-01-24 19:12:29 +00:00
|
|
|
|
2011-12-08 03:34:16 +00:00
|
|
|
dc->vmsd = &vmstate_apic_common;
|
|
|
|
dc->reset = apic_reset_common;
|
qdev: Replace no_user by cannot_instantiate_with_device_add_yet
In an ideal world, machines can be built by wiring devices together
with configuration, not code. Unfortunately, that's not the world we
live in right now. We still have quite a few devices that need to be
wired up by code. If you try to device_add such a device, it'll fail
in sometimes mysterious ways. If you're lucky, you get an
unmysterious immediate crash.
To protect users from such badness, DeviceClass member no_user used to
make device models unavailable with -device / device_add, but that
regressed in commit 18b6dad. The device model is still omitted from
help, but is available anyway.
Attempts to fix the regression have been rejected with the argument
that the purpose of no_user isn't clear, and it's prone to misuse.
This commit clarifies no_user's purpose. Anthony suggested to rename
it cannot_instantiate_with_device_add_yet_due_to_internal_bugs, which
I shorten somewhat to keep checkpatch happy. While there, make it
bool.
Every use of cannot_instantiate_with_device_add_yet gets a FIXME
comment asking for rationale. The next few commits will clean them
all up, either by providing a rationale, or by getting rid of the use.
With that done, the regression fix is hopefully acceptable.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel.a@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
2013-11-28 16:26:54 +00:00
|
|
|
dc->cannot_instantiate_with_device_add_yet = true; /* FIXME explain why */
|
2011-12-08 03:34:16 +00:00
|
|
|
dc->props = apic_properties_common;
|
2013-04-29 17:03:01 +00:00
|
|
|
idc->init = apic_init_common;
|
2012-01-24 19:12:29 +00:00
|
|
|
}
|
2011-10-16 09:16:36 +00:00
|
|
|
|
2013-01-10 15:19:07 +00:00
|
|
|
static const TypeInfo apic_common_type = {
|
2012-01-24 19:12:29 +00:00
|
|
|
.name = TYPE_APIC_COMMON,
|
2013-04-29 17:03:01 +00:00
|
|
|
.parent = TYPE_ICC_DEVICE,
|
2012-01-24 19:12:29 +00:00
|
|
|
.instance_size = sizeof(APICCommonState),
|
|
|
|
.class_size = sizeof(APICCommonClass),
|
|
|
|
.class_init = apic_common_class_init,
|
|
|
|
.abstract = true,
|
|
|
|
};
|
|
|
|
|
2012-02-09 14:20:55 +00:00
|
|
|
static void register_types(void)
|
2012-01-24 19:12:29 +00:00
|
|
|
{
|
|
|
|
type_register_static(&apic_common_type);
|
|
|
|
}
|
|
|
|
|
2012-02-09 14:20:55 +00:00
|
|
|
type_init(register_types)
|