Home
last modified time | relevance | path

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

12

/rk3399_rockchip-uboot/drivers/i2c/
H A Dmvtwsi.c91 uint tick; member
263 uint tick) in twsi_wait() argument
279 ndelay(tick); /* One clock cycle */ in twsi_wait()
300 uint tick) in twsi_start() argument
306 return twsi_wait(twsi, expected_status, tick); in twsi_start()
323 int expected_status, uint tick) in twsi_send() argument
331 return twsi_wait(twsi, expected_status, tick); in twsi_send()
348 uint tick) in twsi_recv() argument
360 status = twsi_wait(twsi, expected_status, tick); in twsi_recv()
378 static int twsi_stop(struct mvtwsi_registers *twsi, uint tick) in twsi_stop() argument
[all …]
/rk3399_rockchip-uboot/lib/
H A Dtime.c118 static uint64_t notrace tick_to_time(uint64_t tick) in tick_to_time() argument
122 tick *= CONFIG_SYS_HZ; in tick_to_time()
123 do_div(tick, div); in tick_to_time()
124 return tick; in tick_to_time()
145 uint64_t tick = usec; in usec_to_tick() local
146 tick *= get_tbclk(); in usec_to_tick()
147 do_div(tick, 1000000); in usec_to_tick()
148 return tick; in usec_to_tick()
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mx27/
H A Dtimer.c41 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument
43 tick *= CONFIG_SYS_HZ; in tick_to_time()
44 do_div(tick, CONFIG_MX27_CLK32); in tick_to_time()
45 return tick; in tick_to_time()
67 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument
69 do_div(tick, TICK_PER_TIME); in tick_to_time()
70 return tick; in tick_to_time()
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/vf610/
H A Dtimer.c19 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument
21 tick *= CONFIG_SYS_HZ; in tick_to_time()
22 do_div(tick, mxc_get_clock(MXC_IPG_CLK)); in tick_to_time()
24 return tick; in tick_to_time()
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/
H A Dtimer.c32 static inline unsigned long long tick_to_time(unsigned long long tick) in tick_to_time() argument
38 tick *= CONFIG_SYS_HZ; in tick_to_time()
39 do_div(tick, freq); in tick_to_time()
41 return tick; in tick_to_time()
/rk3399_rockchip-uboot/arch/arm/mach-imx/
H A Dsyscounter.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()
/rk3399_rockchip-uboot/drivers/spi/
H A Dath79_spi.c67 u64 tick; in ath79_spi_xfer() local
100 tick = get_ticks() + priv->rrw_delay; in ath79_spi_xfer()
101 while (get_ticks() < tick) in ath79_spi_xfer()
110 tick = get_ticks() + priv->rrw_delay; in ath79_spi_xfer()
111 while (get_ticks() < tick) in ath79_spi_xfer()
/rk3399_rockchip-uboot/doc/device-tree-bindings/
H 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";
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/
H A Dtimer.c35 static inline unsigned long tick_to_time(unsigned long tick) in tick_to_time() argument
37 return tick / (MXS_INCREMENTER_HZ / CONFIG_SYS_HZ); in tick_to_time()
/rk3399_rockchip-uboot/arch/nds32/dts/
H A Dag101p.dts17 tick-timer = &timer0;
H A Dae3xx.dts17 tick-timer = &timer0;
/rk3399_rockchip-uboot/arch/arm/dts/
H A Dam335x-bonegreen.dts18 tick-timer = &timer2;
H A Drk3368-lion-u-boot.dtsi16 tick-timer = "/timer@ff810000";
H A Dam335x-boneblack.dts18 tick-timer = &timer2;
H A Dam335x-draco.dtsi14 tick-timer = &timer2;
H A Dam335x-bone-common.dtsi18 tick-timer = &timer2;
H A Dam335x-icev2.dts24 tick-timer = &timer2;
H A Dam437x-idk-evm.dts23 tick-timer = &timer2;
H A Dam335x-pxm2.dtsi19 tick-timer = &timer2;
H A Ddra72-evm-common.dtsi23 tick-timer = &timer2;
H A Dam335x-rut.dts28 tick-timer = &timer2;
H A Dam437x-sk-evm.dts29 tick-timer = &timer2;
H A Dam335x-evmsk.dts26 tick-timer = &timer2;
H A Dam335x-evm.dts19 tick-timer = &timer2;
/rk3399_rockchip-uboot/drivers/timer/
H A DKconfig10 counter. There may be no real tick, and no timer interrupt.

12