Searched refs:fout (Results 1 - 14 of 14) sorted by relevance

/u-boot/tools/
H A Dproftool.c237 * @fout: Output file
245 FILE *fout; member in struct:twriter
739 * @fout: File to write to
743 static int tputh(FILE *fout, unsigned int val) argument
745 fputc(val, fout);
746 fputc(val >> 8, fout);
754 * @fout: File to write to
758 static int tputl(FILE *fout, ulong val) argument
760 fputc(val, fout);
761 fputc(val >> 8, fout);
775 tputq(FILE *fout, unsigned long long val) argument
792 tputs(FILE *fout, const char *str) argument
1017 FILE *fout = tw->fout; local
1186 FILE *fout = tw->fout; local
1315 FILE *fout = tw->fout; local
1498 FILE *fout = tw->fout; local
1575 make_ftrace(FILE *fout, enum out_format_t out_format) argument
1804 output_tree(FILE *fout, enum out_format_t out_format, const struct flame_node *node, struct abuf *str_buf, int base) argument
1871 make_flamegraph(FILE *fout, enum out_format_t out_format) argument
1924 FILE *fout; local
1938 FILE *fout; local
[all...]
H A Dfdtgrep.c69 FILE *fout; /* File to write dts/dtb output */ member in struct:display_info
94 * @fout: Output file
97 static void print_ansi_colour(FILE *fout, int col) argument
100 fprintf(fout, "\033[0m");
102 fprintf(fout, "\033[1;%dm", col + 30);
243 FILE *f = disp->fout;
917 if ((size_t)size != fwrite(fdt, 1, size, disp->fout)) {
1269 disp.fout = fopen(disp.output_fname, "w");
1270 if (!disp.fout)
1273 disp.fout
[all...]
/u-boot/drivers/clk/
H A Dics8n3qv01.c79 static int ics8n3qv01_calc_parameters(uint fout, uint *_mint, uint *_mfrac, argument
85 if (fout < 417000000U)
86 n = 2 * ((2215000000U / 2 + fout / 2) / fout);
88 n = (2215000000U + fout / 2) / fout;
93 foutiic = fout - (fout / 10000);
110 static ulong ics8n3qv01_set_rate(struct clk *clk, ulong fout) argument
122 priv->rate = fout;
[all...]
/u-boot/arch/arm/mach-lpc32xx/
H A Dclk.c25 unsigned long long fin, fref, fcco, fout; local
58 fout = fcco;
62 do_div(fout, p_div);
67 return fout;
/u-boot/arch/m68k/cpu/mcf532x/
H A Dspeed.c115 int fout; local
124 fout = get_sys_clock();
126 return fout;
146 int fref, temp, fout, mfd; local
184 fout = ((fref * mfd) / BUSDIV);
190 fout = ((fref * mfd) / (BUSDIV * 4));
248 return fout;
/u-boot/board/gdsys/common/
H A Dosd.c83 static void mpc92469ac_calc_parameters(unsigned int fout, argument
91 if (fout < 50169600)
93 else if (fout < 100339199)
95 else if (fout < 200678399)
100 a = fout * n + (b / 2); /* add b/2 for proper rounding */
108 static void mpc92469ac_set(unsigned screen, unsigned int fout) argument
113 mpc92469ac_calc_parameters(fout, &n, &m);
170 static void ics8n3qv01_calc_parameters(unsigned int fout, argument
180 n = (2215000000U + fout / 2) / fout;
199 ics8n3qv01_set(unsigned int fout) argument
[all...]
/u-boot/arch/arm/mach-s5pc1xx/
H A Dclock.c25 unsigned long r, m, p, s, mask, fout; local
66 fout = m * (freq / (p * (1 << s)));
68 return fout;
76 unsigned long r, m, p, s, mask, fout; local
120 fout = m * (freq / (p * (1 << (s - 1))));
123 fout = m * (freq / (p * (1 << s)));
125 return fout;
/u-boot/drivers/phy/rockchip/
H A Dphy-rockchip-inno-dsidphy.c304 unsigned long fref, fout; local
326 fout = 1000000000UL;
328 fout = rate;
338 tmp = (u64)fout * _prediv;
355 delta = abs(fout - tmp);
/u-boot/drivers/clk/rockchip/
H A Dclk_pll.c101 printf("Can't FIND postdiv1/2 to make fout=%lu in 800~2000M.\n",
138 debug("fin = %ld, fout = %ld, clk_gcd = %ld,\n",
173 u64 fref, fout, ffrac; local
178 fout = ffrac * 65536;
179 k = fout / fref;
183 fout = ffrac * 65536;
184 k = ((fout * 10 / fref) + 7) / 10;
260 pr_err("CANNOT FIND Fout by auto,fout = %lu\n", fout_hz);
264 pr_err("CANNOT FIND Fout by auto,fout = %lu\n",
/u-boot/arch/arm/mach-exynos/
H A Dclock.c117 unsigned long m, p, s = 0, mask, fout; local
145 fout = (m + k / PLL_DIV_65536) * (freq / (p * (1 << s)));
169 fout = (m + k / div) * (freq / (p * (1 << s)));
179 fout = m * (freq / (p * (1 << (s - 1))));
181 fout = m * (freq / (p * (1 << s)));
183 return fout;
251 unsigned long r, k = 0, fout; local
277 fout = exynos_get_pll_clk(pllreg, r, k);
299 fout /= 2;
302 return fout;
[all...]
/u-boot/drivers/video/rockchip/
H A Ddw_mipi_dsi_rockchip.c534 unsigned long fvco_min, fvco_max, fin, fout; local
571 fout = target_mbps * USEC_PER_SEC;
585 tmp = (u64)fout * _prediv;
603 delta = abs(fout - tmp);
/u-boot/tools/dtoc/
H A Dtest_src_scan.py79 with open(driver_fn, 'wb+') as fout:
80 fout.write(b'\x81')
H A Dtest_dtoc.py133 with open(fname, 'w') as fout:
134 fout.write(data)
/u-boot/drivers/clk/aspeed/
H A Dclk_ast2600.c692 uint32_t fout; /* fout = fin / n */ member in struct:ast2600_mac_clk_div
699 .fout = 125000000,
706 .fout = 50000000,

Completed in 204 milliseconds