Searched refs:loops (Results 1 - 15 of 15) sorted by relevance

/u-boot/arch/arm/cpu/arm926ejs/
H A Dcpu.c31 void sdelay(unsigned long loops) argument
34 "bne 1b":"=r" (loops):"0"(loops));
/u-boot/arch/arm/cpu/armv7/
H A Dsyslib.c20 void sdelay(unsigned long loops) argument
23 "bne 1b":"=r" (loops):"0"(loops));
/u-boot/arch/arm/cpu/armv8/
H A Dcpu.c25 * Will delay execution by roughly (@loops * 2) cycles.
28 * A value of "0" will results in 2^64 loops.
30 void sdelay(unsigned long loops) argument
33 "b.ne 1b" : "=r" (loops) : "0"(loops) : "cc");
/u-boot/drivers/power/regulator/
H A Dtps65090_regulator.c92 int loops; local
98 for (loops = 0;; loops++) {
111 debug("%s: FET%d failed to power on: time=%lums, loops=%d\n",
112 __func__, fet_id, get_timer(start), loops);
113 else if (loops)
114 debug("%s: FET%d powered on after %lums, loops=%d\n",
115 __func__, fet_id, get_timer(start), loops);
/u-boot/arch/arm/mach-omap2/omap3/
H A Dspl_id_nand.c30 int loops = 1000; local
43 if (--loops == 0)
/u-boot/board/isee/igep00x0/
H A Dcommon.c34 int loops = 100; local
46 if (--loops == 0) {
/u-boot/board/armltd/vexpress/
H A Dvexpress_common.c47 static inline void delay(ulong loops) argument
51 "bne 1b" : "=r" (loops) : "0" (loops));
/u-boot/drivers/pci/
H A Dpci_auto.c199 u64 loops = 0, trcount = 0, ntrcount = 0, flips = 0; local
222 loops++;
229 "%3llu flips, %6llu loops of which %6llu while training, "
233 (unsigned long long)flips, (unsigned long long)loops,
236 return dllla || ntrcount >= loops / 2;
/u-boot/board/kosagi/novena/
H A Dvideo.c285 int ret, loops = 250; local
296 while (--loops) {
/u-boot/arch/arm/lib/
H A Dlib1funcs.S253 rsbmi r1, r1, #0 @ loops below use unsigned.
296 rsbmi r1, r1, #0 @ loops below use unsigned.
/u-boot/drivers/adc/
H A Dadc-uclass.c29 extern void sdelay(unsigned long loops);
/u-boot/arch/arm/mach-exynos/
H A Dclock.c1417 const unsigned int loops = 1 << main_scaler_bits; local
1433 for (i = 1; i <= loops; i++) {
/u-boot/arch/arm/mach-socfpga/
H A Dclock_manager_arria10.c18 void sdelay(unsigned long loops);
/u-boot/drivers/ram/
H A Dk3-am654-ddrss.c20 void sdelay(unsigned long loops);
/u-boot/drivers/ram/octeon/
H A Docteon3_lmc.c317 // loops are ordered so that only a single 64-bit slot is written to
2561 * static global variables needed, so that functions (loops) can be
6797 /* We recorded the best score across the averaging loops */
6899 // some of the rank-related loops below need to operate only on
10366 // bursts, loops, etc, control the load...
10550 int loops = 1, loop; local
10559 loops = strtoul(s, NULL, 0);
10567 debug("N%d: H/W Tuning for bytelane %d will use %d loops, %d bursts, and %d patterns.\n",
10568 node, bytelane, loops, dram_tune_byte_bursts, NUM_BYTE_PATTERNS);
10596 for (loop = 0; loop < loops; loo
[all...]

Completed in 104 milliseconds