timer-sr.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. /* Allow physical timer/counter access for the host */
  33. val = read_sysreg(cnthctl_el2);
  34. val |= CNTHCTL_EL1PCTEN | CNTHCTL_EL1PCEN;
  35. write_sysreg(val, cnthctl_el2);
  36. /* Clear cntvoff for the host */
  37. write_sysreg(0, cntvoff_el2);
  38. }
  39. void __hyp_text __timer_restore_state(struct kvm_vcpu *vcpu)
  40. {
  41. struct kvm *kvm = kern_hyp_va(vcpu->kvm);
  42. struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
  43. u64 val;
  44. /*
  45. * Disallow physical timer access for the guest
  46. * Physical counter access is allowed
  47. */
  48. val = read_sysreg(cnthctl_el2);
  49. val &= ~CNTHCTL_EL1PCEN;
  50. val |= CNTHCTL_EL1PCTEN;
  51. write_sysreg(val, cnthctl_el2);
  52. if (timer->enabled) {
  53. write_sysreg(kvm->arch.timer.cntvoff, cntvoff_el2);
  54. write_sysreg_el0(timer->cntv_cval, cntv_cval);
  55. isb();
  56. write_sysreg_el0(timer->cntv_ctl, cntv_ctl);
  57. }
  58. }