Home
last modified time | relevance | path

Searched refs:tick (Results 1 – 25 of 47) sorted by relevance

12

/u-boot/lib/
A Dtime.c128 static uint64_t notrace tick_to_time(uint64_t tick) in tick_to_time() argument
132 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() local
175 tick *= get_tbclk(); in usec_to_tick()
176 do_div(tick, 1000000); in usec_to_tick()
[all …]
/u-boot/drivers/i2c/
A Dmvtwsi.c97 uint tick; member
269 uint tick) in twsi_wait() argument
317 uint tick) in twsi_start() argument
365 uint tick) in twsi_recv() argument
576 uint tick) in __twsi_i2c_probe_chip() argument
616 uint tick) in __twsi_i2c_read() argument
665 uint tick) in __twsi_i2c_write() argument
675 tick); in __twsi_i2c_write()
679 tick); in __twsi_i2c_write()
866 dev->tick);
[all …]
/u-boot/arch/arm/cpu/arm926ejs/mx27/
A Dtimer.c45 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument
47 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() argument
73 do_div(tick, TICK_PER_TIME); in tick_to_time()
74 return tick; in tick_to_time()
/u-boot/arch/arm/cpu/armv7/ls102xa/
A Dtimer.c35 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument
41 tick *= CONFIG_SYS_HZ; in tick_to_time()
42 do_div(tick, freq); in tick_to_time()
44 return tick; in tick_to_time()
/u-boot/arch/arm/cpu/armv7/vf610/
A Dtimer.c22 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument
24 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()
/u-boot/arch/arm/mach-imx/
A Dsyscounter.c38 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument
44 tick *= CONFIG_SYS_HZ; in tick_to_time()
45 do_div(tick, freq); in tick_to_time()
47 return tick; in tick_to_time()
/u-boot/drivers/spi/
A Dath79_spi.c68 u64 tick; in ath79_spi_xfer() local
101 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()
/u-boot/arch/arm/cpu/arm926ejs/mxs/
A Dtimer.c38 static inline unsigned long tick_to_time(unsigned long tick) in tick_to_time() argument
40 return tick / (MXS_INCREMENTER_HZ / CONFIG_SYS_HZ); in tick_to_time()
/u-boot/doc/device-tree-bindings/
A Dchosen.txt25 tick-timer property
28 as the tick-timer. Earlier it was hardcoded in the timer driver now
30 used as tick timer.
36 tick-timer = "/timer2@f00";
/u-boot/arch/arm/dts/
A Dam335x-bonegreen.dts18 tick-timer = &timer2;
A Dmt8518-ap1-emmc.dts21 tick-timer = &timer0;
A Domap5-u-boot.dtsi13 tick-timer = &timer2;
A Dsocfpga_arria10-u-boot.dtsi8 tick-timer = &timer2;
A Dmt8512-bm1-emmc.dts21 tick-timer = &timer0;
A Dk3-j7200-common-proc-board-u-boot.dtsi9 tick-timer = &timer1;
A Dam335x-boneblack.dts18 tick-timer = &timer2;
A Dk3-j721e-common-proc-board-u-boot.dtsi11 tick-timer = &timer1;
A Dmt7623a-unielec-u7623-02-emmc.dts23 tick-timer = &timer0;
A Dam335x-draco.dtsi14 tick-timer = &timer2;
A Dmt7622-bananapi-bpi-r64.dts18 tick-timer = &timer0;
A Dmt7622-rfb.dts18 tick-timer = &timer0;
A Dmt7623n-bananapi-bpi-r2.dts18 tick-timer = &timer0;
/u-boot/arch/nds32/dts/
A Dag101p.dts17 tick-timer = &timer0;
A Dae3xx.dts18 tick-timer = &timer0;
/u-boot/drivers/timer/
A DKconfig10 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

12