Searched refs:tick (Results 1 – 25 of 47) sorted by relevance
12
128 static uint64_t notrace tick_to_time(uint64_t tick) in tick_to_time() argument132 tick *= CONFIG_SYS_HZ; in tick_to_time()133 do_div(tick, div); in tick_to_time()134 return tick; in tick_to_time()152 tick *= CONFIG_SYS_HZ; in tick_to_time_us()153 do_div(tick, div); in tick_to_time_us()154 return tick; in tick_to_time_us()174 uint64_t tick = usec; in usec_to_tick() local175 tick *= get_tbclk(); in usec_to_tick()176 do_div(tick, 1000000); in usec_to_tick()[all …]
97 uint tick; member269 uint tick) in twsi_wait() argument317 uint tick) in twsi_start() argument365 uint tick) in twsi_recv() argument576 uint tick) in __twsi_i2c_probe_chip() argument616 uint tick) in __twsi_i2c_read() argument665 uint tick) in __twsi_i2c_write() argument675 tick); in __twsi_i2c_write()679 tick); in __twsi_i2c_write()866 dev->tick);[all …]
45 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument47 tick *= CONFIG_SYS_HZ; in tick_to_time()48 do_div(tick, CONFIG_MX27_CLK32); in tick_to_time()49 return tick; in tick_to_time()71 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument73 do_div(tick, TICK_PER_TIME); in tick_to_time()74 return tick; in tick_to_time()
35 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument41 tick *= CONFIG_SYS_HZ; in tick_to_time()42 do_div(tick, freq); in tick_to_time()44 return tick; in tick_to_time()
22 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument24 tick *= CONFIG_SYS_HZ; in tick_to_time()25 do_div(tick, mxc_get_clock(MXC_IPG_CLK)); in tick_to_time()27 return tick; in tick_to_time()
38 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument44 tick *= CONFIG_SYS_HZ; in tick_to_time()45 do_div(tick, freq); in tick_to_time()47 return tick; in tick_to_time()
68 u64 tick; in ath79_spi_xfer() local101 tick = get_ticks() + priv->rrw_delay; in ath79_spi_xfer()102 while (get_ticks() < tick) in ath79_spi_xfer()111 tick = get_ticks() + priv->rrw_delay; in ath79_spi_xfer()112 while (get_ticks() < tick) in ath79_spi_xfer()
38 static inline unsigned long tick_to_time(unsigned long tick) in tick_to_time() argument40 return tick / (MXS_INCREMENTER_HZ / CONFIG_SYS_HZ); in tick_to_time()
25 tick-timer property28 as the tick-timer. Earlier it was hardcoded in the timer driver now30 used as tick timer.36 tick-timer = "/timer2@f00";
18 tick-timer = &timer2;
21 tick-timer = &timer0;
13 tick-timer = &timer2;
8 tick-timer = &timer2;
9 tick-timer = &timer1;
11 tick-timer = &timer1;
23 tick-timer = &timer0;
14 tick-timer = &timer2;
18 tick-timer = &timer0;
17 tick-timer = &timer0;
10 counter. There may be no real tick, and no timer interrupt.61 associated with timer tick.197 On x86 platforms the TSC timer tick starts at the value 0 on reset.
Completed in 29 milliseconds