Home
last modified time | relevance | path

Searched refs:od (Results 1 – 25 of 42) sorted by relevance

12

/openbmc/u-boot/board/freescale/common/
H A Dics307_clk.c52 unsigned long vdw, rdw, odp, s_vdw = 0, s_rdw = 0, s_odp = 0, od; in ics307_sysclk_calculator() local
57 od = ics307_s_to_od[odp]; in ics307_sysclk_calculator()
58 if (od * out_freq < MIN_VCO || od * out_freq > MAX_VCO) in ics307_sysclk_calculator()
62 vdw = out_freq * 1000 * od * rdw / (input_freq * 2); in ics307_sysclk_calculator()
68 tmp_out = input_freq * 2 * vdw / (rdw * od * 1000); in ics307_sysclk_calculator()
105 unsigned long od = ics307_s_to_od[cw0 & 0x7]; in ics307_clk_freq() local
124 freq = input_freq * 2 * (vdw + 8) / ((rdw + 2) * od); in ics307_clk_freq()
/openbmc/qemu/docs/spin/
H A Daio_notify.promela50 od;
58 od
81 od;
85 od;
92 od;
H A Daio_notify_bug.promela46 od;
86 od;
95 od;
103 od;
125 od;
129 :: !event && notifier_done -> do :: true -> skip; od;
H A Daio_notify_accept.promela66 od;
96 od;
107 od;
115 od;
137 od;
141 :: !event && notifier_done -> do :: true -> skip; od;
H A Dtcg-exclusive.promela82 od
99 od; \
104 od; \
198 od;
224 od;
H A Dwin32-qemu-event.promela22 #define RAW_WAIT do :: event -> break; od
/openbmc/u-boot/drivers/pinctrl/
H A Dpinctrl-sti.c94 int oe = 0, pu = 0, od = 0; in sti_pin_configure() local
128 oe = 0; pu = 0; od = 0; in sti_pin_configure()
131 oe = 0; pu = 1; od = 0; in sti_pin_configure()
134 oe = 1; pu = 0; od = 0; in sti_pin_configure()
137 oe = 1; pu = 0; od = 1; in sti_pin_configure()
140 oe = 1; pu = 1; od = 1; in sti_pin_configure()
202 if (od) in sti_pin_configure()
/openbmc/u-boot/drivers/video/meson/
H A Dmeson_vclk.c373 static inline unsigned int pll_od_to_reg(unsigned int od) in pll_od_to_reg() argument
375 switch (od) { in pll_od_to_reg()
531 unsigned int *od) in meson_hdmi_pll_find_params() argument
534 for (*od = 16 ; *od > 1 ; *od >>= 1) { in meson_hdmi_pll_find_params()
535 *m = meson_hdmi_pll_get_m(priv, freq * *od); in meson_hdmi_pll_find_params()
538 *frac = meson_hdmi_pll_get_frac(priv, *m, freq * *od); in meson_hdmi_pll_find_params()
541 freq, *m, *frac, *od); in meson_hdmi_pll_find_params()
554 unsigned int od, m, frac; in meson_vclk_dmt_supported_freq() local
559 if (meson_hdmi_pll_find_params(priv, freq, &m, &frac, &od)) in meson_vclk_dmt_supported_freq()
569 unsigned int od, m, frac, od1, od2, od3; in meson_hdmi_pll_generic_set() local
[all …]
/openbmc/u-boot/arch/arm/mach-tegra/
H A Dpinmux-common.c40 #define pmux_pin_od_isvalid(od) \ argument
41 (((od) >= PMUX_PIN_OD_DISABLE) && ((od) <= PMUX_PIN_OD_ENABLE))
281 static void pinmux_set_od(enum pmux_pingrp pin, enum pmux_pin_od od) in pinmux_set_od() argument
286 if (od == PMUX_PIN_OD_DEFAULT) in pinmux_set_od()
291 assert(pmux_pin_od_isvalid(od)); in pinmux_set_od()
294 if (od == PMUX_PIN_OD_ENABLE) in pinmux_set_od()
443 pinmux_set_od(pin, config->od); in pinmux_config_pingrp()
/openbmc/u-boot/drivers/clk/
H A Dclk_meson_axg.c205 u16 n, m, od; in meson_pll_get_rate() local
230 od = PARM_GET(pod->width, pod->shift, reg); in meson_pll_get_rate()
232 return ((parent_rate_mhz * m / n) >> od) * 1000000; in meson_pll_get_rate()
H A Dclk_meson.c693 u16 n, m, od; in meson_pll_get_rate() local
718 od = PARM_GET(pod->width, pod->shift, reg); in meson_pll_get_rate()
720 return ((parent_rate_mhz * m / n) >> od) * 1000000; in meson_pll_get_rate()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/memtool/memtool/
H A Dtest_read_write_plainfiles.sh47 readonly replace_str_bytes=$(echo "Yocto!" | od -t d4 -A n)
/openbmc/u-boot/arch/mips/mach-jz47xx/jz4780/
H A Dpll.c361 #define M_N_OD(m, n, od) \ argument
362 ((((m) - 1) << 19) | (((n) - 1) << 13) | (((od) - 1) << 9))
370 static void pll_init_one(int pll, int m, int n, int od) in pll_init_one() argument
375 setbits_le32(pll_reg, M_N_OD(m, n, od) | XPLLEN); in pll_init_one()
/openbmc/u-boot/drivers/clk/aspeed/
H A Dclk_ast2400.c73 u32 od = (mpll_reg >> 4) & 0x1; in ast2400_get_mpll_rate() local
78 mult = (2 - od) * (n + 2); in ast2400_get_mpll_rate()
109 u32 od = (hpll_reg >> 4) & 0x1; in ast2400_get_hpll_rate() local
112 mult = (2 - od) * (n + 2); in ast2400_get_hpll_rate()
/openbmc/openbmc/poky/meta/recipes-extended/findutils/
H A Dfindutils_4.10.0.bb17 # need od from coreutils for -t option
/openbmc/u-boot/arch/arm/dts/
H A Drk3399-gru-bob.dts76 h1_int_od_l: h1-int-od-l {
/openbmc/u-boot/arch/arm/include/asm/arch-tegra/
H A Dpinmux.h122 u32 od:2; /* open-drain or push-pull driver */ member
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3-numpy/
H A Dfix_reproducibility.patch7 It includes "od", which happens to be a substring of "reproducible"
/openbmc/u-boot/board/nvidia/dalmore/
H A Dpinmux-config-dalmore.h17 .od = PMUX_PIN_OD_DEFAULT, \
29 .od = PMUX_PIN_OD_##_od, \
53 .od = PMUX_PIN_OD_DEFAULT, \
65 .od = PMUX_PIN_OD_##_od, \
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/uutils-coreutils/
H A Duutils-coreutils_0.1.0.bb33 join link logname md5sum mkfifo nl nohup nproc od paste pathchk \
/openbmc/qemu/tests/qemu-iotests/
H A Dcommon.rc108 for byte in $(od -j"$2" -N"$3" -An -v -tu1 "$1"); do
121 for byte in $(od -j"$2" -N"$3" -An -v -tu1 "$1"); do
/openbmc/u-boot/board/toradex/apalis_t30/
H A Dpinmux-config-apalis_t30.h17 .od = PMUX_PIN_OD_DEFAULT, \
29 .od = PMUX_PIN_OD_##_od, \
41 .od = PMUX_PIN_OD_DEFAULT, \
/openbmc/u-boot/board/nvidia/cardhu/
H A Dpinmux-config-cardhu.h17 .od = PMUX_PIN_OD_DEFAULT, \
29 .od = PMUX_PIN_OD_##_od, \
41 .od = PMUX_PIN_OD_DEFAULT, \
/openbmc/u-boot/board/toradex/colibri_t30/
H A Dpinmux-config-colibri_t30.h17 .od = PMUX_PIN_OD_DEFAULT, \
29 .od = PMUX_PIN_OD_##_od, \
41 .od = PMUX_PIN_OD_DEFAULT, \
/openbmc/u-boot/board/avionic-design/common/
H A Dpinmux-config-tamonten-ng.h18 .od = PMUX_PIN_OD_DEFAULT, \
30 .od = PMUX_PIN_OD_##_od, \
42 .od = PMUX_PIN_OD_DEFAULT, \

12