timer-sr.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright (C) 2012-2015 - ARM Ltd
  3. * Author: Marc Zyngier <marc.zyngier@arm.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, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <clocksource/arm_arch_timer.h>
  18. #include <linux/compiler.h>
  19. #include <linux/kvm_host.h>
  20. #include <asm/kvm_hyp.h>
  21. /* vcpu is already in the HYP VA space */
  22. void __hyp_text __timer_save_state(struct kvm_vcpu *vcpu)
  23. {
  24. struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
  25. u64 val;
  26. if (timer->enabled) {
  27. timer->cntv_ctl = read_sysreg_el0(cntv_ctl);
  28. timer->cntv_cval = read_sysreg_el0(cntv_cval);
  29. }
  30. /* Disable the virtual timer */
  31. write_sysreg_el0(0, cntv_ctl);
  32. /*
  33. * We don't need to do this for VHE since the host kernel runs in EL2
  34. * with HCR_EL2.TGE ==1, which makes those bits have no impact.
  35. */
  36. if (!has_vhe()) {
  37. /* Allow physical timer/counter access for the host */
  38. val = read_sysreg(cnthctl_el2);
  39. val |= CNTHCTL_EL1PCTEN | CNTHCTL_EL1PCEN;
  40. write_sysreg(val, cnthctl_el2);
  41. }
  42. /* Clear cntvoff for the host */
  43. write_sysreg(0, cntvoff_el2);
  44. }
  45. void __hyp_text __timer_restore_state(struct kvm_vcpu *vcpu)
  46. {
  47. struct kvm *kvm = kern_hyp_va(vcpu->kvm);
  48. struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
  49. u64 val;
  50. /* Those bits are already configured at boot on VHE-system */
  51. if (!has_vhe()) {
  52. /*
  53. * Disallow physical timer access for the guest
  54. * Physical counter access is allowed
  55. */
  56. val = read_sysreg(cnthctl_el2);
  57. val &= ~CNTHCTL_EL1PCEN;
  58. val |= CNTHCTL_EL1PCTEN;
  59. write_sysreg(val, cnthctl_el2);
  60. }
  61. if (timer->enabled) {
  62. write_sysreg(kvm->arch.timer.cntvoff, cntvoff_el2);
  63. write_sysreg_el0(timer->cntv_cval, cntv_cval);
  64. isb();
  65. write_sysreg_el0(timer->cntv_ctl, cntv_ctl);
  66. }
  67. }