cpu.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * QEMU MIPS CPU
  3. *
  4. * Copyright (c) 2012 SUSE LINUX Products GmbH
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, see
  18. * <http://www.gnu.org/licenses/lgpl-2.1.html>
  19. */
  20. #include "cpu.h"
  21. #include "qemu-common.h"
  22. /* CPUClass::reset() */
  23. static void mips_cpu_reset(CPUState *s)
  24. {
  25. MIPSCPU *cpu = MIPS_CPU(s);
  26. MIPSCPUClass *mcc = MIPS_CPU_GET_CLASS(cpu);
  27. CPUMIPSState *env = &cpu->env;
  28. if (qemu_loglevel_mask(CPU_LOG_RESET)) {
  29. qemu_log("CPU Reset (CPU %d)\n", s->cpu_index);
  30. log_cpu_state(env, 0);
  31. }
  32. mcc->parent_reset(s);
  33. memset(env, 0, offsetof(CPUMIPSState, breakpoints));
  34. tlb_flush(env, 1);
  35. cpu_state_reset(env);
  36. }
  37. static void mips_cpu_initfn(Object *obj)
  38. {
  39. MIPSCPU *cpu = MIPS_CPU(obj);
  40. CPUMIPSState *env = &cpu->env;
  41. cpu_exec_init(env);
  42. }
  43. static void mips_cpu_class_init(ObjectClass *c, void *data)
  44. {
  45. MIPSCPUClass *mcc = MIPS_CPU_CLASS(c);
  46. CPUClass *cc = CPU_CLASS(c);
  47. mcc->parent_reset = cc->reset;
  48. cc->reset = mips_cpu_reset;
  49. }
  50. static const TypeInfo mips_cpu_type_info = {
  51. .name = TYPE_MIPS_CPU,
  52. .parent = TYPE_CPU,
  53. .instance_size = sizeof(MIPSCPU),
  54. .instance_init = mips_cpu_initfn,
  55. .abstract = false,
  56. .class_size = sizeof(MIPSCPUClass),
  57. .class_init = mips_cpu_class_init,
  58. };
  59. static void mips_cpu_register_types(void)
  60. {
  61. type_register_static(&mips_cpu_type_info);
  62. }
  63. type_init(mips_cpu_register_types)