arch_timer.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * arch/arm64/include/asm/arch_timer.h
  3. *
  4. * Copyright (C) 2012 ARM Ltd.
  5. * Author: Marc Zyngier <marc.zyngier@arm.com>
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program 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
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __ASM_ARCH_TIMER_H
  20. #define __ASM_ARCH_TIMER_H
  21. #include <asm/barrier.h>
  22. #include <linux/bug.h>
  23. #include <linux/init.h>
  24. #include <linux/types.h>
  25. #include <clocksource/arm_arch_timer.h>
  26. /*
  27. * These register accessors are marked inline so the compiler can
  28. * nicely work out which register we want, and chuck away the rest of
  29. * the code.
  30. */
  31. static __always_inline
  32. void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u32 val)
  33. {
  34. if (access == ARCH_TIMER_PHYS_ACCESS) {
  35. switch (reg) {
  36. case ARCH_TIMER_REG_CTRL:
  37. asm volatile("msr cntp_ctl_el0, %0" : : "r" (val));
  38. break;
  39. case ARCH_TIMER_REG_TVAL:
  40. asm volatile("msr cntp_tval_el0, %0" : : "r" (val));
  41. break;
  42. }
  43. } else if (access == ARCH_TIMER_VIRT_ACCESS) {
  44. switch (reg) {
  45. case ARCH_TIMER_REG_CTRL:
  46. asm volatile("msr cntv_ctl_el0, %0" : : "r" (val));
  47. break;
  48. case ARCH_TIMER_REG_TVAL:
  49. asm volatile("msr cntv_tval_el0, %0" : : "r" (val));
  50. break;
  51. }
  52. }
  53. isb();
  54. }
  55. static __always_inline
  56. u32 arch_timer_reg_read_cp15(int access, enum arch_timer_reg reg)
  57. {
  58. u32 val;
  59. if (access == ARCH_TIMER_PHYS_ACCESS) {
  60. switch (reg) {
  61. case ARCH_TIMER_REG_CTRL:
  62. asm volatile("mrs %0, cntp_ctl_el0" : "=r" (val));
  63. break;
  64. case ARCH_TIMER_REG_TVAL:
  65. asm volatile("mrs %0, cntp_tval_el0" : "=r" (val));
  66. break;
  67. }
  68. } else if (access == ARCH_TIMER_VIRT_ACCESS) {
  69. switch (reg) {
  70. case ARCH_TIMER_REG_CTRL:
  71. asm volatile("mrs %0, cntv_ctl_el0" : "=r" (val));
  72. break;
  73. case ARCH_TIMER_REG_TVAL:
  74. asm volatile("mrs %0, cntv_tval_el0" : "=r" (val));
  75. break;
  76. }
  77. }
  78. return val;
  79. }
  80. static inline u32 arch_timer_get_cntfrq(void)
  81. {
  82. u32 val;
  83. asm volatile("mrs %0, cntfrq_el0" : "=r" (val));
  84. return val;
  85. }
  86. static inline u32 arch_timer_get_cntkctl(void)
  87. {
  88. u32 cntkctl;
  89. asm volatile("mrs %0, cntkctl_el1" : "=r" (cntkctl));
  90. return cntkctl;
  91. }
  92. static inline void arch_timer_set_cntkctl(u32 cntkctl)
  93. {
  94. asm volatile("msr cntkctl_el1, %0" : : "r" (cntkctl));
  95. }
  96. static inline u64 arch_counter_get_cntpct(void)
  97. {
  98. /*
  99. * AArch64 kernel and user space mandate the use of CNTVCT.
  100. */
  101. BUG();
  102. return 0;
  103. }
  104. static inline u64 arch_counter_get_cntvct(void)
  105. {
  106. u64 cval;
  107. isb();
  108. asm volatile("mrs %0, cntvct_el0" : "=r" (cval));
  109. return cval;
  110. }
  111. static inline int arch_timer_arch_init(void)
  112. {
  113. return 0;
  114. }
  115. #endif