ioapic_common.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  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. #include "hw/i386/ioapic.h"
  22. #include "hw/i386/ioapic_internal.h"
  23. #include "hw/sysbus.h"
  24. /* ioapic_no count start from 0 to MAX_IOAPICS,
  25. * remove as static variable from ioapic_common_init.
  26. * now as a global variable, let child to increase the counter
  27. * then we can drop the 'instance_no' argument
  28. * and convert to our QOM's realize function
  29. */
  30. int ioapic_no;
  31. void ioapic_reset_common(DeviceState *dev)
  32. {
  33. IOAPICCommonState *s = IOAPIC_COMMON(dev);
  34. int i;
  35. s->id = 0;
  36. s->ioregsel = 0;
  37. s->irr = 0;
  38. for (i = 0; i < IOAPIC_NUM_PINS; i++) {
  39. s->ioredtbl[i] = 1 << IOAPIC_LVT_MASKED_SHIFT;
  40. }
  41. }
  42. static void ioapic_dispatch_pre_save(void *opaque)
  43. {
  44. IOAPICCommonState *s = IOAPIC_COMMON(opaque);
  45. IOAPICCommonClass *info = IOAPIC_COMMON_GET_CLASS(s);
  46. if (info->pre_save) {
  47. info->pre_save(s);
  48. }
  49. }
  50. static int ioapic_dispatch_post_load(void *opaque, int version_id)
  51. {
  52. IOAPICCommonState *s = IOAPIC_COMMON(opaque);
  53. IOAPICCommonClass *info = IOAPIC_COMMON_GET_CLASS(s);
  54. if (info->post_load) {
  55. info->post_load(s);
  56. }
  57. return 0;
  58. }
  59. static void ioapic_common_realize(DeviceState *dev, Error **errp)
  60. {
  61. IOAPICCommonState *s = IOAPIC_COMMON(dev);
  62. IOAPICCommonClass *info;
  63. if (ioapic_no >= MAX_IOAPICS) {
  64. error_setg(errp, "Only %d ioapics allowed", MAX_IOAPICS);
  65. return;
  66. }
  67. info = IOAPIC_COMMON_GET_CLASS(s);
  68. info->realize(dev, errp);
  69. sysbus_init_mmio(SYS_BUS_DEVICE(s), &s->io_memory);
  70. ioapic_no++;
  71. }
  72. static const VMStateDescription vmstate_ioapic_common = {
  73. .name = "ioapic",
  74. .version_id = 3,
  75. .minimum_version_id = 1,
  76. .minimum_version_id_old = 1,
  77. .pre_save = ioapic_dispatch_pre_save,
  78. .post_load = ioapic_dispatch_post_load,
  79. .fields = (VMStateField[]) {
  80. VMSTATE_UINT8(id, IOAPICCommonState),
  81. VMSTATE_UINT8(ioregsel, IOAPICCommonState),
  82. VMSTATE_UNUSED_V(2, 8), /* to account for qemu-kvm's v2 format */
  83. VMSTATE_UINT32_V(irr, IOAPICCommonState, 2),
  84. VMSTATE_UINT64_ARRAY(ioredtbl, IOAPICCommonState, IOAPIC_NUM_PINS),
  85. VMSTATE_END_OF_LIST()
  86. }
  87. };
  88. static void ioapic_common_class_init(ObjectClass *klass, void *data)
  89. {
  90. DeviceClass *dc = DEVICE_CLASS(klass);
  91. dc->realize = ioapic_common_realize;
  92. dc->vmsd = &vmstate_ioapic_common;
  93. }
  94. static const TypeInfo ioapic_common_type = {
  95. .name = TYPE_IOAPIC_COMMON,
  96. .parent = TYPE_SYS_BUS_DEVICE,
  97. .instance_size = sizeof(IOAPICCommonState),
  98. .class_size = sizeof(IOAPICCommonClass),
  99. .class_init = ioapic_common_class_init,
  100. .abstract = true,
  101. };
  102. static void ioapic_common_register_types(void)
  103. {
  104. type_register_static(&ioapic_common_type);
  105. }
  106. type_init(ioapic_common_register_types)