2
0

accel.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * QEMU System Emulator, accelerator interfaces
  3. *
  4. * Copyright (c) 2003-2008 Fabrice Bellard
  5. * Copyright (c) 2014 Red Hat Inc.
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a copy
  8. * of this software and associated documentation files (the "Software"), to deal
  9. * in the Software without restriction, including without limitation the rights
  10. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. * copies of the Software, and to permit persons to whom the Software is
  12. * furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in
  15. * all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. * THE SOFTWARE.
  24. */
  25. #include "qemu/osdep.h"
  26. #include "sysemu/accel.h"
  27. #include "hw/boards.h"
  28. #include "qemu-common.h"
  29. #include "sysemu/arch_init.h"
  30. #include "sysemu/sysemu.h"
  31. #include "sysemu/kvm.h"
  32. #include "sysemu/qtest.h"
  33. #include "hw/xen/xen.h"
  34. #include "qom/object.h"
  35. #include "qemu/error-report.h"
  36. static const TypeInfo accel_type = {
  37. .name = TYPE_ACCEL,
  38. .parent = TYPE_OBJECT,
  39. .class_size = sizeof(AccelClass),
  40. .instance_size = sizeof(AccelState),
  41. };
  42. /* Lookup AccelClass from opt_name. Returns NULL if not found */
  43. static AccelClass *accel_find(const char *opt_name)
  44. {
  45. char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name);
  46. AccelClass *ac = ACCEL_CLASS(object_class_by_name(class_name));
  47. g_free(class_name);
  48. return ac;
  49. }
  50. static int accel_init_machine(AccelClass *acc, MachineState *ms)
  51. {
  52. ObjectClass *oc = OBJECT_CLASS(acc);
  53. const char *cname = object_class_get_name(oc);
  54. AccelState *accel = ACCEL(object_new(cname));
  55. int ret;
  56. ms->accelerator = accel;
  57. *(acc->allowed) = true;
  58. ret = acc->init_machine(ms);
  59. if (ret < 0) {
  60. ms->accelerator = NULL;
  61. *(acc->allowed) = false;
  62. object_unref(OBJECT(accel));
  63. }
  64. return ret;
  65. }
  66. void configure_accelerator(MachineState *ms)
  67. {
  68. const char *accel, *p;
  69. char buf[10];
  70. int ret;
  71. bool accel_initialised = false;
  72. bool init_failed = false;
  73. AccelClass *acc = NULL;
  74. accel = qemu_opt_get(qemu_get_machine_opts(), "accel");
  75. if (accel == NULL) {
  76. /* Use the default "accelerator", tcg */
  77. accel = "tcg";
  78. }
  79. p = accel;
  80. while (!accel_initialised && *p != '\0') {
  81. if (*p == ':') {
  82. p++;
  83. }
  84. p = get_opt_name(buf, sizeof(buf), p, ':');
  85. acc = accel_find(buf);
  86. if (!acc) {
  87. continue;
  88. }
  89. if (acc->available && !acc->available()) {
  90. printf("%s not supported for this target\n",
  91. acc->name);
  92. continue;
  93. }
  94. ret = accel_init_machine(acc, ms);
  95. if (ret < 0) {
  96. init_failed = true;
  97. error_report("failed to initialize %s: %s",
  98. acc->name, strerror(-ret));
  99. } else {
  100. accel_initialised = true;
  101. }
  102. }
  103. if (!accel_initialised) {
  104. if (!init_failed) {
  105. error_report("-machine accel=%s: No accelerator found", accel);
  106. }
  107. exit(1);
  108. }
  109. if (init_failed) {
  110. error_report("Back to %s accelerator", acc->name);
  111. }
  112. }
  113. void accel_register_compat_props(AccelState *accel)
  114. {
  115. AccelClass *class = ACCEL_GET_CLASS(accel);
  116. register_compat_props_array(class->global_props);
  117. }
  118. static void register_accel_types(void)
  119. {
  120. type_register_static(&accel_type);
  121. }
  122. type_init(register_accel_types);