2
0

nmi.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * NMI monitor handler class and helpers.
  3. *
  4. * Copyright IBM Corp., 2014
  5. *
  6. * Author: Alexey Kardashevskiy <aik@ozlabs.ru>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License,
  11. * or (at your option) any later version.
  12. *
  13. * This program 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
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  20. */
  21. #include "qemu/osdep.h"
  22. #include "hw/nmi.h"
  23. #include "qapi/error.h"
  24. #include "qapi/qmp/qerror.h"
  25. #include "qemu/module.h"
  26. #include "monitor/monitor.h"
  27. struct do_nmi_s {
  28. int cpu_index;
  29. Error *err;
  30. bool handled;
  31. };
  32. static void nmi_children(Object *o, struct do_nmi_s *ns);
  33. static int do_nmi(Object *o, void *opaque)
  34. {
  35. struct do_nmi_s *ns = opaque;
  36. NMIState *n = (NMIState *) object_dynamic_cast(o, TYPE_NMI);
  37. if (n) {
  38. NMIClass *nc = NMI_GET_CLASS(n);
  39. ns->handled = true;
  40. nc->nmi_monitor_handler(n, ns->cpu_index, &ns->err);
  41. if (ns->err) {
  42. return -1;
  43. }
  44. }
  45. nmi_children(o, ns);
  46. return 0;
  47. }
  48. static void nmi_children(Object *o, struct do_nmi_s *ns)
  49. {
  50. object_child_foreach(o, do_nmi, ns);
  51. }
  52. void nmi_monitor_handle(int cpu_index, Error **errp)
  53. {
  54. struct do_nmi_s ns = {
  55. .cpu_index = cpu_index,
  56. .err = NULL,
  57. .handled = false
  58. };
  59. nmi_children(object_get_root(), &ns);
  60. if (ns.handled) {
  61. error_propagate(errp, ns.err);
  62. } else {
  63. error_setg(errp, QERR_UNSUPPORTED);
  64. }
  65. }
  66. static const TypeInfo nmi_info = {
  67. .name = TYPE_NMI,
  68. .parent = TYPE_INTERFACE,
  69. .class_size = sizeof(NMIClass),
  70. };
  71. static void nmi_register_types(void)
  72. {
  73. type_register_static(&nmi_info);
  74. }
  75. type_init(nmi_register_types)