accel.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. int tcg_tb_size;
  36. static bool tcg_allowed = true;
  37. static int tcg_init(MachineState *ms)
  38. {
  39. tcg_exec_init(tcg_tb_size * 1024 * 1024);
  40. return 0;
  41. }
  42. static const TypeInfo accel_type = {
  43. .name = TYPE_ACCEL,
  44. .parent = TYPE_OBJECT,
  45. .class_size = sizeof(AccelClass),
  46. .instance_size = sizeof(AccelState),
  47. };
  48. /* Lookup AccelClass from opt_name. Returns NULL if not found */
  49. static AccelClass *accel_find(const char *opt_name)
  50. {
  51. char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name);
  52. AccelClass *ac = ACCEL_CLASS(object_class_by_name(class_name));
  53. g_free(class_name);
  54. return ac;
  55. }
  56. static int accel_init_machine(AccelClass *acc, MachineState *ms)
  57. {
  58. ObjectClass *oc = OBJECT_CLASS(acc);
  59. const char *cname = object_class_get_name(oc);
  60. AccelState *accel = ACCEL(object_new(cname));
  61. int ret;
  62. ms->accelerator = accel;
  63. *(acc->allowed) = true;
  64. ret = acc->init_machine(ms);
  65. if (ret < 0) {
  66. ms->accelerator = NULL;
  67. *(acc->allowed) = false;
  68. object_unref(OBJECT(accel));
  69. }
  70. return ret;
  71. }
  72. void configure_accelerator(MachineState *ms)
  73. {
  74. const char *p;
  75. char buf[10];
  76. int ret;
  77. bool accel_initialised = false;
  78. bool init_failed = false;
  79. AccelClass *acc = NULL;
  80. p = qemu_opt_get(qemu_get_machine_opts(), "accel");
  81. if (p == NULL) {
  82. /* Use the default "accelerator", tcg */
  83. p = "tcg";
  84. }
  85. while (!accel_initialised && *p != '\0') {
  86. if (*p == ':') {
  87. p++;
  88. }
  89. p = get_opt_name(buf, sizeof(buf), p, ':');
  90. acc = accel_find(buf);
  91. if (!acc) {
  92. fprintf(stderr, "\"%s\" accelerator not found.\n", buf);
  93. continue;
  94. }
  95. if (acc->available && !acc->available()) {
  96. printf("%s not supported for this target\n",
  97. acc->name);
  98. continue;
  99. }
  100. ret = accel_init_machine(acc, ms);
  101. if (ret < 0) {
  102. init_failed = true;
  103. fprintf(stderr, "failed to initialize %s: %s\n",
  104. acc->name,
  105. strerror(-ret));
  106. } else {
  107. accel_initialised = true;
  108. }
  109. }
  110. if (!accel_initialised) {
  111. if (!init_failed) {
  112. fprintf(stderr, "No accelerator found!\n");
  113. }
  114. exit(1);
  115. }
  116. if (init_failed) {
  117. fprintf(stderr, "Back to %s accelerator.\n", acc->name);
  118. }
  119. }
  120. static void tcg_accel_class_init(ObjectClass *oc, void *data)
  121. {
  122. AccelClass *ac = ACCEL_CLASS(oc);
  123. ac->name = "tcg";
  124. ac->init_machine = tcg_init;
  125. ac->allowed = &tcg_allowed;
  126. }
  127. #define TYPE_TCG_ACCEL ACCEL_CLASS_NAME("tcg")
  128. static const TypeInfo tcg_accel_type = {
  129. .name = TYPE_TCG_ACCEL,
  130. .parent = TYPE_ACCEL,
  131. .class_init = tcg_accel_class_init,
  132. };
  133. static void register_accel_types(void)
  134. {
  135. type_register_static(&accel_type);
  136. type_register_static(&tcg_accel_type);
  137. }
  138. type_init(register_accel_types);