Lines Matching refs:timx
118 union cvmx_ciu_timx timx; in start_timer() local
121 timx.u64 = 0; in start_timer()
122 timx.s.one_shot = 1; in start_timer()
123 timx.s.len = interval; in start_timer()
126 cvmx_write_csr(CVMX_CIU_TIMX(timer), timx.u64); in start_timer()
128 timx.u64 = cvmx_read_csr(CVMX_CIU_TIMX(timer)); in start_timer()
158 union cvmx_ciu_timx timx; in disable_timer() local
160 timx.s.one_shot = 0; in disable_timer()
161 timx.s.len = 0; in disable_timer()
162 cvmx_write_csr(CVMX_CIU_TIMX(timer), timx.u64); in disable_timer()
164 timx.u64 = cvmx_read_csr(CVMX_CIU_TIMX(timer)); in disable_timer()