reset.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Copyright (C) 2012 - Virtual Open Systems and Columbia University
  3. * Author: Christoffer Dall <c.dall@virtualopensystems.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License, version 2, as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. */
  18. #include <linux/compiler.h>
  19. #include <linux/errno.h>
  20. #include <linux/sched.h>
  21. #include <linux/kvm_host.h>
  22. #include <linux/kvm.h>
  23. #include <asm/unified.h>
  24. #include <asm/ptrace.h>
  25. #include <asm/cputype.h>
  26. #include <asm/kvm_arm.h>
  27. #include <asm/kvm_coproc.h>
  28. #include <asm/kvm_emulate.h>
  29. #include <kvm/arm_arch_timer.h>
  30. /******************************************************************************
  31. * Cortex-A15 and Cortex-A7 Reset Values
  32. */
  33. static struct kvm_regs cortexa_regs_reset = {
  34. .usr_regs.ARM_cpsr = SVC_MODE | PSR_A_BIT | PSR_I_BIT | PSR_F_BIT,
  35. };
  36. /*******************************************************************************
  37. * Exported reset function
  38. */
  39. /**
  40. * kvm_reset_vcpu - sets core registers and cp15 registers to reset value
  41. * @vcpu: The VCPU pointer
  42. *
  43. * This function finds the right table above and sets the registers on the
  44. * virtual CPU struct to their architecturally defined reset values.
  45. */
  46. int kvm_reset_vcpu(struct kvm_vcpu *vcpu)
  47. {
  48. struct kvm_regs *reset_regs;
  49. switch (vcpu->arch.target) {
  50. case KVM_ARM_TARGET_CORTEX_A7:
  51. case KVM_ARM_TARGET_CORTEX_A15:
  52. reset_regs = &cortexa_regs_reset;
  53. vcpu->arch.midr = read_cpuid_id();
  54. break;
  55. default:
  56. return -ENODEV;
  57. }
  58. /* Reset core registers */
  59. memcpy(&vcpu->arch.ctxt.gp_regs, reset_regs, sizeof(vcpu->arch.ctxt.gp_regs));
  60. /* Reset CP15 registers */
  61. kvm_reset_coprocs(vcpu);
  62. /*
  63. * Additional reset state handling that PSCI may have imposed on us.
  64. * Must be done after all the sys_reg reset.
  65. */
  66. if (READ_ONCE(vcpu->arch.reset_state.reset)) {
  67. unsigned long target_pc = vcpu->arch.reset_state.pc;
  68. /* Gracefully handle Thumb2 entry point */
  69. if (target_pc & 1) {
  70. target_pc &= ~1UL;
  71. vcpu_set_thumb(vcpu);
  72. }
  73. /* Propagate caller endianness */
  74. if (vcpu->arch.reset_state.be)
  75. kvm_vcpu_set_be(vcpu);
  76. *vcpu_pc(vcpu) = target_pc;
  77. vcpu_set_reg(vcpu, 0, vcpu->arch.reset_state.r0);
  78. vcpu->arch.reset_state.reset = false;
  79. }
  80. /* Reset arch_timer context */
  81. return kvm_timer_vcpu_reset(vcpu);
  82. }