| /openbmc/u-boot/drivers/bios_emulator/x86emu/ |
| H A D | sys.c | 247 void X86EMU_setupMemFuncs(X86EMU_memFuncs * funcs) in X86EMU_setupMemFuncs() argument 249 sys_rdb = funcs->rdb; in X86EMU_setupMemFuncs() 250 sys_rdw = funcs->rdw; in X86EMU_setupMemFuncs() 251 sys_rdl = funcs->rdl; in X86EMU_setupMemFuncs() 252 sys_wrb = funcs->wrb; in X86EMU_setupMemFuncs() 253 sys_wrw = funcs->wrw; in X86EMU_setupMemFuncs() 254 sys_wrl = funcs->wrl; in X86EMU_setupMemFuncs() 266 void X86EMU_setupPioFuncs(X86EMU_pioFuncs * funcs) in X86EMU_setupPioFuncs() argument 268 sys_inb = funcs->inb; in X86EMU_setupPioFuncs() 269 sys_inw = funcs->inw; in X86EMU_setupPioFuncs() [all …]
|
| /openbmc/u-boot/drivers/pinctrl/mvebu/ |
| H A D | pinctrl-armada-37xx.c | 72 const char *funcs[NB_FUNCS]; member 96 struct armada_37xx_pmx_func *funcs; member 107 .funcs = {_func1, _func2} \ 117 .funcs = {_func1, "gpio"} \ 127 .funcs = {_func1, "gpio"} \ 137 .funcs = {_f1, _f2, "gpio"} \ 150 .funcs = {_f1, _f2} \ 224 for (f = 0; (f < NB_FUNCS) && grp->funcs[f]; f++) in armada_37xx_get_func_reg() 225 if (!strcmp(grp->funcs[f], func)) in armada_37xx_get_func_reg() 263 return info->funcs[selector].name; in armada_37xx_pmx_get_func_name() [all …]
|
| /openbmc/phosphor-power/tools/i2c/ |
| H A D | i2c.cpp | 51 unsigned long funcs = getFuncs(); in checkReadFuncs() local 55 if (!(funcs & I2C_FUNC_SMBUS_READ_BYTE)) in checkReadFuncs() 61 if (!(funcs & I2C_FUNC_SMBUS_READ_BYTE_DATA)) in checkReadFuncs() 68 if (!(funcs & I2C_FUNC_SMBUS_READ_WORD_DATA)) in checkReadFuncs() 75 if (!(funcs & I2C_FUNC_SMBUS_READ_BLOCK_DATA)) in checkReadFuncs() 82 if (!(funcs & I2C_FUNC_SMBUS_READ_I2C_BLOCK)) in checkReadFuncs() 97 unsigned long funcs = getFuncs(); in checkWriteFuncs() local 101 if (!(funcs & I2C_FUNC_SMBUS_WRITE_BYTE)) in checkWriteFuncs() 107 if (!(funcs & I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) in checkWriteFuncs() 114 if (!(funcs & I2C_FUNC_SMBUS_WRITE_WORD_DATA)) in checkWriteFuncs() [all …]
|
| /openbmc/openbmc/poky/meta/recipes-extended/cronie/cronie/ |
| H A D | make_error_func_prototype_complete.patch | 13 src/funcs.h | 2 +- 29 diff --git a/src/funcs.h b/src/funcs.h 31 --- a/src/funcs.h 32 +++ b/src/funcs.h
|
| /openbmc/u-boot/drivers/bios_emulator/include/ |
| H A D | x86emu.h | 153 void X86EMU_setupMemFuncs(X86EMU_memFuncs * funcs); 154 void X86EMU_setupPioFuncs(X86EMU_pioFuncs * funcs); 155 void X86EMU_setupIntrFuncs(X86EMU_intrFuncs funcs[]);
|
| /openbmc/u-boot/arch/arm/include/asm/arch-tegra/ |
| H A D | pinmux.h | 175 u8 funcs[4]; member 243 u8 funcs[2]; member
|
| /openbmc/openbmc/poky/meta/recipes-graphics/virglrenderer/virglrenderer/ |
| H A D | 0001-vrend-Fix-int-conversion-fatal-build-error-with-GCC-.patch | 10 | ../git/src/vrend_winsys_egl.c:364:62: error: passing argument 2 of 'egl->funcs.epoxy_eglGetPlatfo… 32 egl->egl_display = egl->funcs.eglGetPlatformDisplay(EGL_PLATFORM_GBM_KHR,
|
| /openbmc/dbus-sensors/src/mcu/ |
| H A D | MCUTempSensor.cpp | 134 unsigned long funcs = 0; in getMCURegsInfoWord() local 136 if (ioctl(fd, I2C_FUNCS, &funcs) < 0) in getMCURegsInfoWord() 143 if ((funcs & I2C_FUNC_SMBUS_READ_WORD_DATA) == 0U) in getMCURegsInfoWord()
|
| /openbmc/dbus-sensors/src/intrusion/ |
| H A D | ChassisIntrusionSensor.cpp | 381 unsigned long funcs = 0; in ChassisIntrusionPchSensor() local 384 if (ioctl(mBusFd, I2C_FUNCS, &funcs) < 0) in ChassisIntrusionPchSensor() 389 if ((funcs & I2C_FUNC_SMBUS_READ_BYTE_DATA) == 0U) in ChassisIntrusionPchSensor()
|
| /openbmc/u-boot/arch/arm/mach-tegra/ |
| H A D | xusb-padctl-common.h | 25 const unsigned int *funcs; member
|
| H A D | xusb-padctl-common.c | 140 if (lane->funcs[i] == func) in tegra_xusb_padctl_lane_find_function()
|
| H A D | pinmux-common.c | 175 if (tegra_soc_pingroups[pin].funcs[i] == func) { in pinmux_set_func() 724 if (tegra_soc_mipipadctrl_groups[grp].funcs[i] in pinmux_mipipadctrl_set_func()
|
| /openbmc/u-boot/drivers/pinctrl/mediatek/ |
| H A D | pinctrl-mtk-common.h | 162 const struct mtk_function_desc *funcs; member
|
| H A D | pinctrl-mtk-common.c | 255 if (!priv->soc->funcs[selector].name) in mtk_get_function_name() 258 return priv->soc->funcs[selector].name; in mtk_get_function_name()
|
| H A D | pinctrl-mt7629.c | 388 .funcs = mt7629_functions,
|
| /openbmc/u-boot/drivers/pinctrl/meson/ |
| H A D | pinctrl-meson-gx-pmx.c | 52 func = &priv->data->funcs[func_selector]; in meson_gx_pinmux_group_set()
|
| H A D | pinctrl-meson.h | 27 struct meson_pmx_func *funcs; member
|
| H A D | pinctrl-meson-axg-pmx.c | 82 func = &priv->data->funcs[func_selector]; in meson_axg_pinmux_group_set()
|
| H A D | pinctrl-meson-gxbb.c | 414 .funcs = meson_gxbb_periphs_functions, 427 .funcs = meson_gxbb_aobus_functions,
|
| /openbmc/smbios-mdr/src/ |
| H A D | cpuinfo_main.cpp | 106 unsigned long funcs = 0; in readSSpec() local 119 if (::ioctl(fd, I2C_FUNCS, &funcs) < 0) in readSSpec() 129 if (!(funcs & I2C_FUNC_SMBUS_READ_BYTE_DATA)) in readSSpec()
|
| /openbmc/dbus-sensors/src/smbpbi/ |
| H A D | SmbpbiSensor.cpp | 223 unsigned long funcs = 0; in i2cReadDataBytes() local 225 if (ioctl(fd, I2C_FUNCS, &funcs) < 0) in i2cReadDataBytes()
|
| /openbmc/qemu/target/s390x/ |
| H A D | arch_dump.c | 228 const NoteFuncDesc *funcs) in s390x_write_elf64_notes() argument 237 for (nf = funcs; nf->note_contents_func; nf++) { in s390x_write_elf64_notes()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/flex/ |
| H A D | flex_2.6.4.bb | 19 file://check-funcs.patch \
|
| /openbmc/openbmc/poky/bitbake/lib/bb/parse/ |
| H A D | ast.py | 316 funcs = {} 323 funcs[f] = fcall 324 bb.codeparser.add_module_functions(fn, funcs, "%s.%s" % (self.namespace, i))
|
| /openbmc/u-boot/arch/arm/mach-tegra/tegra124/ |
| H A D | xusb-padctl.c | 90 .funcs = tegra124_##_funcs##_functions, \
|