timer-sr.c 242 B

123456789101112
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (C) 2012-2015 - ARM Ltd
  4. * Author: Marc Zyngier <[email protected]>
  5. */
  6. #include <asm/kvm_hyp.h>
  7. void __kvm_timer_set_cntvoff(u64 cntvoff)
  8. {
  9. write_sysreg(cntvoff, cntvoff_el2);
  10. }