Home
last modified time | relevance | path

Searched refs:stop (Results 1 – 25 of 305) sorted by relevance

12345678910>>...13

/u-boot/arch/arm/cpu/armv7/
A Dcache_v7.c38 for (mva = start; mva < stop; mva = mva + line_len) { in v7_dcache_clean_inval_range()
48 if (!check_cache_range(start, stop)) in v7_dcache_inval_range()
51 for (mva = start; mva < stop; mva = mva + line_len) { in v7_dcache_inval_range()
71 v7_dcache_clean_inval_range(start, stop, line_len); in v7_dcache_maint_range()
74 v7_dcache_inval_range(start, stop, line_len); in v7_dcache_maint_range()
121 check_cache_range(start, stop); in invalidate_dcache_range()
123 v7_dcache_maint_range(start, stop, ARMV7_DCACHE_INVAL_RANGE); in invalidate_dcache_range()
125 v7_outer_cache_inval_range(start, stop); in invalidate_dcache_range()
135 check_cache_range(start, stop); in flush_dcache_range()
139 v7_outer_cache_flush_range(start, stop); in flush_dcache_range()
[all …]
/u-boot/arch/arm/cpu/arm926ejs/
A Dcache.c28 void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument
30 if (!check_cache_range(start, stop)) in invalidate_dcache_range()
33 while (start < stop) { in invalidate_dcache_range()
39 void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
41 if (!check_cache_range(start, stop)) in flush_dcache_range()
44 while (start < stop) { in flush_dcache_range()
/u-boot/arch/arm/cpu/arm11/
A Dcpu.c69 void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument
71 if (!check_cache_range(start, stop)) in invalidate_dcache_range()
74 while (start < stop) { in invalidate_dcache_range()
80 void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
82 if (!check_cache_range(start, stop)) in flush_dcache_range()
85 while (start < stop) { in flush_dcache_range()
/u-boot/arch/arm/cpu/pxa/
A Dcache.c25 void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument
28 stop &= ~(CONFIG_SYS_CACHELINE_SIZE - 1); in invalidate_dcache_range()
30 while (start <= stop) { in invalidate_dcache_range()
36 void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
38 return invalidate_dcache_range(start, stop); in flush_dcache_range()
/u-boot/arch/arm/lib/
A Dcache-pl310.c52 void v7_outer_cache_flush_range(u32 start, u32 stop) in v7_outer_cache_flush_range() argument
63 for (pa = start; pa < stop; pa = pa + line_size) in v7_outer_cache_flush_range()
70 void v7_outer_cache_inval_range(u32 start, u32 stop) in v7_outer_cache_inval_range() argument
90 if (stop & (line_size - 1)) { in v7_outer_cache_inval_range()
92 __func__, stop); in v7_outer_cache_inval_range()
94 stop &= ~(line_size - 1); in v7_outer_cache_inval_range()
97 for (pa = start; pa < stop; pa = pa + line_size) in v7_outer_cache_inval_range()
A Dcache.c45 __weak void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument
49 __weak void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
54 int check_cache_range(unsigned long start, unsigned long stop) in check_cache_range() argument
61 if (stop & (CONFIG_SYS_CACHELINE_SIZE - 1)) in check_cache_range()
66 start, stop); in check_cache_range()
/u-boot/drivers/i2c/
A Di2c-uniphier.c95 *stop = false; in send_byte()
106 uint len, const u8 *buf, bool *stop) in uniphier_i2c_transmit() argument
117 ret = send_byte(priv, I2C_DTRM_NACK | *buf++, stop); in uniphier_i2c_transmit()
123 if (*stop) in uniphier_i2c_transmit()
130 uint len, u8 *buf, bool *stop) in uniphier_i2c_receive() argument
137 I2C_DTRM_RD | addr << 1, stop); in uniphier_i2c_receive()
145 if (*stop) in uniphier_i2c_receive()
156 bool stop; in uniphier_i2c_xfer() local
160 stop = nmsgs > 1 && msg[1].flags & I2C_M_RD ? false : true; in uniphier_i2c_xfer()
164 msg->buf, &stop); in uniphier_i2c_xfer()
[all …]
A Di2c-uniphier-f.c118 bool *stop) in wait_for_irq() argument
132 *stop = false; in wait_for_irq()
159 uint len, const u8 *buf, bool *stop) in uniphier_fi2c_transmit() argument
175 ret = wait_for_irq(priv, irq_flags, stop); in uniphier_fi2c_transmit()
185 ret = wait_for_irq(priv, irq_flags, stop); in uniphier_fi2c_transmit()
193 if (*stop) in uniphier_fi2c_transmit()
200 uint len, u8 *buf, bool *stop) in uniphier_fi2c_receive() argument
242 if (*stop) in uniphier_fi2c_receive()
253 bool stop; in uniphier_fi2c_xfer() local
265 msg->buf, &stop); in uniphier_fi2c_xfer()
[all …]
/u-boot/arch/mips/lib/
A Dcache.c145 void __weak flush_dcache_range(ulong start_addr, ulong stop) in flush_dcache_range() argument
151 if (start_addr == stop) in flush_dcache_range()
154 cache_loop(start_addr, stop, lsize, HIT_WRITEBACK_INV_D); in flush_dcache_range()
157 cache_loop(start_addr, stop, slsize, HIT_WRITEBACK_INV_SD); in flush_dcache_range()
163 void __weak invalidate_dcache_range(ulong start_addr, ulong stop) in invalidate_dcache_range() argument
169 if (start_addr == stop) in invalidate_dcache_range()
173 cache_loop(start_addr, stop, slsize, HIT_INVALIDATE_SD); in invalidate_dcache_range()
175 cache_loop(start_addr, stop, lsize, HIT_INVALIDATE_D); in invalidate_dcache_range()
/u-boot/doc/device-tree-bindings/i2c/
A Dgeneric-acpi.txt16 - stop-gpios : GPIO used to stop the device
22 - stop-delay-ms : Delay after de-aserting stop
23 - stop-off-delay-ms : Delay after asserting stop (during power off)
/u-boot/arch/mips/mach-octeon/
A Dcache.c11 void flush_dcache_range(ulong start_addr, ulong stop) in flush_dcache_range() argument
21 void invalidate_dcache_range(ulong start_addr, ulong stop) in invalidate_dcache_range() argument
/u-boot/net/
A Ddns.c121 int found, stop, dlen; in dns_handler() local
163 for (found = stop = 0; !stop && &p[12] < e; ) { in dns_handler()
183 stop = 1; in dns_handler()
186 stop = 1; in dns_handler()
/u-boot/arch/xtensa/lib/
A Dcache.c47 void invalidate_dcache_range(ulong start, ulong stop) in invalidate_dcache_range() argument
49 __invalidate_dcache_range(start, stop - start); in invalidate_dcache_range()
/u-boot/drivers/watchdog/
A Dwdt-uclass.c75 if (!ops->stop) in wdt_stop()
78 return ops->stop(dev); in wdt_stop()
147 if (ops->stop) in wdt_post_bind()
148 ops->stop += gd->reloc_off; in wdt_post_bind()
/u-boot/include/
A Dserial.h11 int (*stop)(void); member
108 #define SERIAL_SET_STOP(stop) \ argument
109 ((stop << SERIAL_STOP_SHIFT) & SERIAL_STOP_MASK)
113 #define SERIAL_CONFIG(par, bits, stop) \ argument
116 stop << SERIAL_STOP_SHIFT)
A Dcpu_func.h67 void flush_dcache_range(unsigned long start, unsigned long stop);
68 void invalidate_dcache_range(unsigned long start, unsigned long stop);
/u-boot/arch/powerpc/include/asm/
A Dcache.h49 extern void flush_dcache_range(unsigned long start, unsigned long stop);
50 extern void clean_dcache_range(unsigned long start, unsigned long stop);
51 extern void invalidate_dcache_range(unsigned long start, unsigned long stop);
/u-boot/drivers/tpm/
A Dtpm_tis_st33zp24_i2c.c151 unsigned long start, stop; in st33zp24_i2c_request_locality() local
165 stop = chip->timeout_a; in st33zp24_i2c_request_locality()
170 } while (get_timer(start) < stop); in st33zp24_i2c_request_locality()
197 unsigned long start, stop; in st33zp24_i2c_get_burstcount() local
203 stop = chip->timeout_d; in st33zp24_i2c_get_burstcount()
220 } while (get_timer(start) < stop); in st33zp24_i2c_get_burstcount()
249 unsigned long start, stop; in st33zp24_i2c_wait_for_stat() local
257 stop = timeout; in st33zp24_i2c_wait_for_stat()
263 } while (get_timer(start) < stop); in st33zp24_i2c_wait_for_stat()
A Dtpm2_tis_spi.c228 unsigned long start, stop; in tpm_tis_spi_request_locality() local
250 stop = chip->timeout_a; in tpm_tis_spi_request_locality()
263 } while (get_timer(start) < stop); in tpm_tis_spi_request_locality()
282 unsigned long stop = timeout; in tpm_tis_spi_wait_for_stat() local
293 } while (get_timer(start) < stop); in tpm_tis_spi_wait_for_stat()
309 unsigned long start, stop; in tpm_tis_spi_get_burstcount() local
314 stop = chip->timeout_d; in tpm_tis_spi_get_burstcount()
326 } while (get_timer(start) < stop); in tpm_tis_spi_get_burstcount()
559 unsigned long start, stop; in tpm_tis_wait_init() local
564 stop = chip->timeout_b; in tpm_tis_wait_init()
[all …]
A Dtpm_tis_infineon.c230 unsigned long start, stop; in tpm_tis_i2c_request_locality() local
251 stop = chip->timeout_a; in tpm_tis_i2c_request_locality()
262 } while (get_timer(start) < stop); in tpm_tis_i2c_request_locality()
299 unsigned long start, stop; in tpm_tis_i2c_get_burstcount() local
306 stop = chip->timeout_d; in tpm_tis_i2c_get_burstcount()
318 } while (get_timer(start) < stop); in tpm_tis_i2c_get_burstcount()
326 unsigned long start, stop; in tpm_tis_i2c_wait_for_stat() local
334 stop = timeout; in tpm_tis_i2c_wait_for_stat()
340 } while (get_timer(start) < stop); in tpm_tis_i2c_wait_for_stat()
A Dtpm_tis_st33zp24_spi.c280 unsigned long start, stop; in st33zp24_spi_request_locality() local
295 stop = chip->timeout_a; in st33zp24_spi_request_locality()
300 } while (get_timer(start) < stop); in st33zp24_spi_request_locality()
326 unsigned long start, stop; in st33zp24_spi_get_burstcount() local
332 stop = chip->timeout_d; in st33zp24_spi_get_burstcount()
349 } while (get_timer(start) < stop); in st33zp24_spi_get_burstcount()
378 unsigned long start, stop; in st33zp24_spi_wait_for_stat() local
386 stop = timeout; in st33zp24_spi_wait_for_stat()
392 } while (get_timer(start) < stop); in st33zp24_spi_wait_for_stat()
A Dtpm-uclass.c75 ulong start, stop; in tpm_xfer() local
104 stop = tpm_tis_i2c_calc_ordinal_duration(priv, ordinal); in tpm_xfer()
119 if (get_timer(start) > stop) { in tpm_xfer()
/u-boot/drivers/input/
A Dkeyboard-uclass.c27 if (ops->stop) in keyboard_stop()
28 return ops->stop(dev); in keyboard_stop()
74 sdev->stop = keyboard_stop; in keyboard_pre_probe()
/u-boot/drivers/serial/
A Dserial.c147 if (dev->stop) in serial_register()
148 dev->stop += gd->reloc_off; in serial_register()
202 return dev->stop(); in serial_stub_stop()
252 dev.stop = serial_stub_stop; in serial_stdio_init()
542 if (s->stop) in uart_post_test()
543 s->stop(); in uart_post_test()
/u-boot/arch/arm/cpu/armv7m/
A Dcache.c244 void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument
246 if (action_cache_range(INVALIDATE_POC, start, stop - start)) { in invalidate_dcache_range()
252 void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
254 if (action_cache_range(FLUSH_POC, start, stop - start)) { in flush_dcache_range()

Completed in 26 milliseconds

12345678910>>...13