Lines Matching refs:reg
71 unsigned long reg; in rt_hw_pmu_get_ceid() local
73 asm ("mrc p15, 0, %0, c9, c12, 6" : "=r"(reg)); in rt_hw_pmu_get_ceid()
74 return reg; in rt_hw_pmu_get_ceid()
132 unsigned long reg; in rt_hw_pmu_read_counter() local
136 asm volatile ("mrc p15, 0, %0, c9, c13, 2" : "=r"(reg)); in rt_hw_pmu_read_counter()
137 return reg; in rt_hw_pmu_read_counter()
142 unsigned long reg; in rt_hw_pmu_get_ovsr() local
144 asm ("mrc p15, 0, %0, c9, c12, 3" : "=r"(reg)); in rt_hw_pmu_get_ovsr()
145 return reg; in rt_hw_pmu_get_ovsr()
148 rt_inline void rt_hw_pmu_clear_ovsr(unsigned long reg) in rt_hw_pmu_clear_ovsr() argument
150 asm ("mcr p15, 0, %0, c9, c12, 3" : : "r"(reg)); in rt_hw_pmu_clear_ovsr()