Home
last modified time | relevance | path

Searched refs:step (Results 1 – 25 of 145) sorted by relevance

123456

/u-boot/drivers/ram/stm32mp1/
A Dstm32mp1_interactive.c145 if (step != expected) { in stm32mp1_check_step()
147 step, step_str[step], in stm32mp1_check_step()
164 printf("step = %d : %s\n", step, step_str[step]); in stm32mp1_do_info()
310 value <= step) { in stm32mp1_do_step()
313 step, step_str[step]); in stm32mp1_do_step()
322 return step; in stm32mp1_do_step()
410 log_debug("** step %d ** %s / %d\n", step, step_str[step], next_step); in stm32mp1_ddr_interactive()
415 if (step < 0 || step > ARRAY_SIZE(step_str)) { in stm32mp1_ddr_interactive()
420 printf("%d:%s\n", step, step_str[step]); in stm32mp1_ddr_interactive()
422 if (next_step > step) in stm32mp1_ddr_interactive()
[all …]
/u-boot/drivers/rng/
A Dmeson-rng.c34 size_t step; in meson_rng_read() local
37 step = 4; in meson_rng_read()
39 step = len; in meson_rng_read()
40 memcpy(buffer, &rand, step); in meson_rng_read()
41 buffer += step; in meson_rng_read()
42 len -= step; in meson_rng_read()
/u-boot/drivers/spi/
A Dexynos_spi.c78 if (step == 4) { in spi_request_bytes()
110 int step; in spi_rx_tx() local
121 step = 1; in spi_rx_tx()
124 step = 4; in spi_rx_tx()
156 out_bytes -= step; in spi_rx_tx()
158 txp += step; in spi_rx_tx()
159 tx_lvl += step; in spi_rx_tx()
171 if (step == 4) in spi_rx_tx()
175 rxp += step; in spi_rx_tx()
179 toread -= step; in spi_rx_tx()
[all …]
/u-boot/drivers/serial/
A Dserial_ar933x.c45 static u32 ar933x_serial_get_baud(u32 clk, u32 scale, u32 step) in ar933x_serial_get_baud() argument
52 t *= step; in ar933x_serial_get_baud()
60 u32 *scale, u32 *step) in ar933x_serial_get_scale_step() argument
66 *step = 0; in ar933x_serial_get_scale_step()
85 *step = tstep; in ar933x_serial_get_scale_step()
93 u32 val, scale, step; in ar933x_serial_setbrg() local
96 ar933x_serial_get_scale_step(val, baudrate, &scale, &step); in ar933x_serial_setbrg()
100 val |= (step & AR933X_UART_CLK_STEP_M) in ar933x_serial_setbrg()
203 u32 val, scale, step; in _debug_uart_init() local
219 CONFIG_BAUDRATE, &scale, &step); in _debug_uart_init()
[all …]
/u-boot/include/power/
A Dsandbox_pmic.h98 #define REG2VAL(min, step, reg) ((min) + ((step) * (reg))) argument
99 #define VAL2REG(min, step, val) (((val) - (min)) / (step)) argument
/u-boot/drivers/power/
A Dtps6586x.c138 static int calculate_next_voltage(int voltage, int target, int step) in calculate_next_voltage() argument
140 int diff = voltage < target ? step : -step; in calculate_next_voltage()
142 if (abs(target - voltage) > step) in calculate_next_voltage()
170 int tps6586x_adjust_sm0_sm1(int sm0_target, int sm1_target, int step, int rate, in tps6586x_adjust_sm0_sm1() argument
226 sm0 = calculate_next_voltage(sm0, sm0_target, step); in tps6586x_adjust_sm0_sm1()
234 sm1 = calculate_next_voltage(sm1, sm1_target, step); in tps6586x_adjust_sm0_sm1()
/u-boot/include/dt-bindings/pmic/
A Dsandbox_pmic.h31 #define VAL2REG(min, step, val) (((val) - (min)) / (step)) argument
/u-boot/tools/
A Denvcrc.c98 size_t i, start, end, step; in main() local
102 step = 1; in main()
106 step = -1; in main()
108 for (i = start; i != end; i += step) in main()
/u-boot/doc/device-tree-bindings/mtd/
A Dstm32-fmc2-nand.txt29 - nand-ecc-step-size: see nand.txt
31 The following ECC strength and step size are currently supported:
32 - nand-ecc-strength = <1>, nand-ecc-step-size = <512> (Hamming)
33 - nand-ecc-strength = <4>, nand-ecc-step-size = <512> (BCH4)
34 - nand-ecc-strength = <8>, nand-ecc-step-size = <512> (BCH8) (default)
/u-boot/drivers/power/regulator/
A Ds5m8767.c18 .step = 6250,
24 .step = 6250,
30 .step = 12500,
36 .step = 50000,
42 .step = 25000,
108 uv = desc->min + val * desc->step; in reg_get_value()
122 val = (uv - desc->min) / desc->step; in reg_set_value()
A Dpfuze100.c59 #define PFUZE100_SW_REG(_name, base, step) \ argument
63 .uV_step = (step), \
74 .uV_step = (step), \
89 #define PFUZE100_VGEN_REG(_name, base, step) \ argument
93 .uV_step = (step), \
100 #define PFUZE3000_VCC_REG(_name, base, step) \ argument
104 .uV_step = (step), \
111 #define PFUZE3000_SW1_REG(_name, base, step) \ argument
115 .uV_step = (step), \
126 .uV_step = (step), \
[all …]
A Dbd71837.c31 unsigned int step; member
67 .min_volt = (_min), .step = (_vstep), .min_sel = (_sel_low), \
251 *val = r->min_volt + r->step * (sel - r->min_sel); in vrange_find_value()
262 val <= r->min_volt + r->step * (num_vals - 1)) { in vrange_find_selector()
263 if (r->step) { in vrange_find_selector()
264 *sel = r->min_sel + ((val - r->min_volt) / r->step); in vrange_find_selector()
A Dsandbox.c25 .step = _step, \
39 int step; member
100 range[dev->driver_data - 1].step, in out_get_value()
128 range[dev->driver_data - 1].step, in out_set_value()
/u-boot/drivers/video/sunxi/
A Dlcdc.c216 int value, n, m, min_m, max_m, diff, step; in lcdc_pll_set() local
222 step = 6000; in lcdc_pll_set()
224 step = 3000; in lcdc_pll_set()
248 n = (m * dotclock) / step; in lcdc_pll_set()
251 value = (step * n) / m; in lcdc_pll_set()
267 n = (m * dotclock) / (step * 2); in lcdc_pll_set()
269 value = (step * 2 * n) / m; in lcdc_pll_set()
298 clock_set_pll3(best_n * step * 1000); in lcdc_pll_set()
302 best_double + 1, step, best_n, best_m); in lcdc_pll_set()
/u-boot/doc/board/atmel/
A Dat91ek.rst26 You can choose your storage location at config step (here for at91sam9260ek)::
50 You can choose your storage location at config step (here for at91sam9260ek)::
73 You can choose your storage location at config step (here for at91sam9260ek)::
79 You can choose to boot directly from U-Boot at config step::
97 You can choose your storage location at config step (here for at91sam9m10g45ek)::
117 You can choose your storage location at config step (here for at91sam9rlek)::
137 You can choose your storage location at config step (here for at91sam9x5ek)::
160 You can choose your storage location at config step (here for sama5d3xek)::
/u-boot/board/rockchip/evb_rk3399/
A DREADME27 Here is the step-by-step to boot to U-Boot on rk3399.
46 Get bl31.elf in this step, copy it to U-Boot root dir:
64 Get spl/u-boot-spl.bin and u-boot.itb in this step.
69 Get rkdeveloptool installed on your Host in this step.
89 Get idbspl.img in this step.
98 Get trust.img and uboot.img in this step.
/u-boot/board/rockchip/evb_rk3229/
A DREADME17 Get tee.bin in this step, copy it to U-Boot root dir:
29 Get tpl/u-boot-tpl.bin, spl/u-boot-spl.bin and u-boot.itb in this step.
40 Get rkdeveloptool in you Host in this step.
52 Get idbloader.img in this step.
/u-boot/fs/cbfs/
A Dcbfs.c108 u32 step; in file_cbfs_next_file() local
134 step = header.len; in file_cbfs_next_file()
135 if (step % align) in file_cbfs_next_file()
136 step = step + align - step % align; in file_cbfs_next_file()
138 *used += step; in file_cbfs_next_file()
/u-boot/include/
A Dtps6586x.h41 int tps6586x_adjust_sm0_sm1(int sm0_target, int sm1_target, int step, int rate,
A Dfsl_ddr.h90 const char *step_to_string(unsigned int step);
131 unsigned int ctrl_num, int step);
/u-boot/tools/buildman/
A Dcontrol.py33 count = (count + options.step - 1) // options.step
72 for upto in range(0, len(series.commits), options.step):
303 if not options.step:
304 options.step = len(series.commits) - 1
323 show_unknown=options.show_unknown, step=options.step,
/u-boot/doc/
A DREADME.davinci.nand_spl76 step 1:
83 step 2:
97 step 3:
134 is possible to burn step 1 and step 2 in one step into the
141 one step ... that would be nice ...
/u-boot/arch/mips/mach-ath79/qca953x/
A Dlowlevel_init.S81 #define MK_PLL_DDR_DIT_FRAC(max, min, step, cnt) \ argument
85 PLL_DDR_DIT_FRAC_STEP(step) | \
87 #define MK_PLL_CPU_DIT_FRAC(max, min, step, cnt) \ argument
91 PLL_CPU_DIT_FRAC_STEP(step) | \
/u-boot/board/rockchip/evb_rv1108/
A DREADME1 Here is the step-by-step to boot U-Boot on rv1108 evb.
/u-boot/board/rockchip/sheep_rk3368/
A DREADME1 Here is the step-by-step to boot to U-Boot on rk3368.

Completed in 1064 milliseconds

123456