| /OK3568_Linux_fs/u-boot/drivers/misc/ |
| H A D | swap_case.c | 66 ulong *valuep, enum pci_size_t size) in sandbox_swap_case_read_config() argument 72 *valuep = plat->command; in sandbox_swap_case_read_config() 75 *valuep = 0; in sandbox_swap_case_read_config() 78 *valuep = SANDBOX_PCI_VENDOR_ID; in sandbox_swap_case_read_config() 81 *valuep = SANDBOX_PCI_DEVICE_ID; in sandbox_swap_case_read_config() 85 *valuep = SANDBOX_PCI_CLASS_SUB_CODE; in sandbox_swap_case_read_config() 87 *valuep = (SANDBOX_PCI_CLASS_CODE << 8) | in sandbox_swap_case_read_config() 92 *valuep = SANDBOX_PCI_CLASS_CODE; in sandbox_swap_case_read_config() 119 *valuep = result; in sandbox_swap_case_read_config() 195 ulong *valuep, enum pci_size_t size) in sandbox_swap_case_read_io() argument [all …]
|
| /OK3568_Linux_fs/kernel/sound/core/ |
| H A D | control_compat.c | 219 void __user *valuep, in copy_ctl_value_from_user() argument 240 s32 __user *intp = valuep; in copy_ctl_value_from_user() 252 if (copy_from_user(data->value.bytes.data, valuep, size)) in copy_ctl_value_from_user() 263 void __user *valuep, in copy_ctl_value_to_user() argument 273 s32 __user *intp = valuep; in copy_ctl_value_to_user() 281 if (copy_to_user(valuep, data->value.bytes.data, size)) in copy_ctl_value_to_user() 290 void __user *userdata, void __user *valuep) in ctl_elem_read_user() argument 299 err = copy_ctl_value_from_user(card, data, userdata, valuep, in ctl_elem_read_user() 312 err = copy_ctl_value_to_user(userdata, valuep, data, type, count); in ctl_elem_read_user() 319 void __user *userdata, void __user *valuep) in ctl_elem_write_user() argument [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/pci/ |
| H A D | pcie_xilinx.c | 103 uint offset, ulong *valuep, in pcie_xilinx_read_config() argument 112 *valuep = pci_get_ff(size); in pcie_xilinx_read_config() 118 *valuep = __raw_readb(address); in pcie_xilinx_read_config() 121 *valuep = __raw_readw(address); in pcie_xilinx_read_config() 124 *valuep = __raw_readl(address); in pcie_xilinx_read_config()
|
| H A D | pci-uclass.c | 321 unsigned long *valuep, enum pci_size_t size) in pci_bus_read_config() argument 328 return ops->read_config(bus, bdf, offset, valuep, size); in pci_bus_read_config() 331 int pci_read_config(pci_dev_t bdf, int offset, unsigned long *valuep, in pci_read_config() argument 341 return pci_bus_read_config(bus, bdf, offset, valuep, size); in pci_read_config() 344 int dm_pci_read_config(struct udevice *dev, int offset, unsigned long *valuep, in dm_pci_read_config() argument 351 return pci_bus_read_config(bus, dm_pci_get_bdf(dev), offset, valuep, in dm_pci_read_config() 355 int pci_read_config32(pci_dev_t bdf, int offset, u32 *valuep) in pci_read_config32() argument 363 *valuep = value; in pci_read_config32() 368 int pci_read_config16(pci_dev_t bdf, int offset, u16 *valuep) in pci_read_config16() argument 376 *valuep = value; in pci_read_config16() [all …]
|
| H A D | pci_sandbox.c | 35 uint offset, ulong *valuep, in sandbox_pci_read_config() argument 43 *valuep = pci_get_ff(size); in sandbox_pci_read_config() 51 return ops->read_config(emul, offset, valuep, size); in sandbox_pci_read_config()
|
| H A D | pcie_layerscape.c | 267 uint offset, ulong *valuep, in ls_pcie_read_config() argument 274 *valuep = pci_get_ff(size); in ls_pcie_read_config() 282 *valuep = readb(address); in ls_pcie_read_config() 285 *valuep = readw(address); in ls_pcie_read_config() 288 *valuep = readl(address); in ls_pcie_read_config()
|
| H A D | pcie_dw_mvebu.c | 210 uint offset, ulong *valuep, in pcie_dw_mvebu_read_config() argument 222 *valuep = pci_get_ff(size); in pcie_dw_mvebu_read_config() 231 *valuep = pci_conv_32_to_size(value, offset, size); in pcie_dw_mvebu_read_config()
|
| H A D | pcie_dw_rockchip.c | 429 uint offset, ulong *valuep, in rockchip_pcie_rd_conf() argument 441 *valuep = pci_get_ff(size); in rockchip_pcie_rd_conf() 450 *valuep = pci_conv_32_to_size(value, offset, size); in rockchip_pcie_rd_conf()
|
| H A D | pci_tegra.c | 316 uint offset, ulong *valuep, in pci_tegra_read_config() argument 342 *valuep = pci_conv_32_to_size(value, offset, size); in pci_tegra_read_config()
|
| /OK3568_Linux_fs/u-boot/arch/x86/cpu/ |
| H A D | pci.c | 23 ulong *valuep, enum pci_size_t size) in pci_x86_read_config() argument 28 *valuep = inb(PCI_REG_DATA + (offset & 3)); in pci_x86_read_config() 31 *valuep = inw(PCI_REG_DATA + (offset & 2)); in pci_x86_read_config() 34 *valuep = inl(PCI_REG_DATA); in pci_x86_read_config()
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | pci.h | 853 ulong *valuep, enum pci_size_t size); 1021 unsigned long *valuep, enum pci_size_t size); 1055 int dm_pci_read_config(struct udevice *dev, int offset, unsigned long *valuep, 1058 int dm_pci_read_config8(struct udevice *dev, int offset, u8 *valuep); 1059 int dm_pci_read_config16(struct udevice *dev, int offset, u16 *valuep); 1060 int dm_pci_read_config32(struct udevice *dev, int offset, u32 *valuep); 1085 int pci_read_config32(pci_dev_t pcidev, int offset, u32 *valuep); 1086 int pci_read_config16(pci_dev_t pcidev, int offset, u16 *valuep); 1087 int pci_read_config8(pci_dev_t pcidev, int offset, u8 *valuep); 1113 u32 *valuep) in pci_read_config_dword() argument [all …]
|
| H A D | rtc.h | 145 int rtc_read16(struct udevice *dev, unsigned int reg, u16 *valuep); 165 int rtc_read32(struct udevice *dev, unsigned int reg, u32 *valuep);
|
| /OK3568_Linux_fs/u-boot/drivers/rtc/ |
| H A D | rtc-uclass.c | 63 int rtc_read16(struct udevice *dev, unsigned int reg, u16 *valuep) in rtc_read16() argument 76 *valuep = value; in rtc_read16() 93 int rtc_read32(struct udevice *dev, unsigned int reg, u32 *valuep) in rtc_read32() argument 106 *valuep = value; in rtc_read32()
|
| /OK3568_Linux_fs/u-boot/arch/sandbox/lib/ |
| H A D | pci_io.c | 52 static int pci_io_read(unsigned int addr, ulong *valuep, pci_size_t size) in pci_io_read() argument 57 *valuep = pci_get_ff(size); in pci_io_read() 64 ret = (ops->read_io)(dev, addr, valuep, size); in pci_io_read()
|
| /OK3568_Linux_fs/u-boot/arch/x86/include/asm/arch-quark/ |
| H A D | quark.h | 210 u32 *valuep) in qrk_pci_read_config_dword() argument 213 *valuep = inl(PCI_REG_DATA); in qrk_pci_read_config_dword()
|
| /OK3568_Linux_fs/kernel/scripts/dtc/ |
| H A D | fdtput.c | 57 char **valuep, int *value_len) in encode_value() argument 114 *valuep = value; in encode_value()
|
| /OK3568_Linux_fs/u-boot/arch/x86/include/asm/ |
| H A D | pci.h | 22 ulong *valuep, enum pci_size_t size);
|
| /OK3568_Linux_fs/kernel/drivers/usb/gadget/function/ |
| H A D | f_fs.c | 2050 u8 *valuep, 2239 u8 *valuep, struct usb_descriptor_header *desc, in __ffs_data_do_entity() argument 2257 if (*valuep >= helper->interfaces_count) in __ffs_data_do_entity() 2258 helper->interfaces_count = *valuep + 1; in __ffs_data_do_entity() 2266 if (*valuep > helper->ffs->strings_count) in __ffs_data_do_entity() 2267 helper->ffs->strings_count = *valuep; in __ffs_data_do_entity() 2841 static int __ffs_func_bind_do_descs(enum ffs_entity_type type, u8 *valuep, in __ffs_func_bind_do_descs() argument 2863 func->function.ss_descriptors[(long)valuep] = desc; in __ffs_func_bind_do_descs() 2866 func->function.hs_descriptors[(long)valuep] = desc; in __ffs_func_bind_do_descs() 2869 func->function.fs_descriptors[(long)valuep] = desc; in __ffs_func_bind_do_descs() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/rtc/ |
| H A D | rtc-pcf8523.c | 38 static int pcf8523_read(struct i2c_client *client, u8 reg, u8 *valuep) in pcf8523_read() argument 58 *valuep = value; in pcf8523_read()
|
| /OK3568_Linux_fs/u-boot/drivers/gpio/ |
| H A D | sh_pfc.c | 246 int *fieldp, int *valuep, in get_config_reg() argument 276 *valuep = n; in get_config_reg()
|
| /OK3568_Linux_fs/u-boot/include/drm/ |
| H A D | drm_dp_helper.h | 1201 unsigned int offset, u8 *valuep) in drm_dp_dpcd_readb() argument 1203 return drm_dp_dpcd_read(aux, offset, valuep, 1); in drm_dp_dpcd_readb()
|
| /OK3568_Linux_fs/kernel/include/drm/ |
| H A D | drm_dp_helper.h | 1623 unsigned int offset, u8 *valuep) in drm_dp_dpcd_readb() argument 1625 return drm_dp_dpcd_read(aux, offset, valuep, 1); in drm_dp_dpcd_readb()
|
| /OK3568_Linux_fs/kernel/drivers/pinctrl/renesas/ |
| H A D | core.c | 239 unsigned int *fieldp, u32 *valuep) in sh_pfc_get_config_reg() argument 270 *valuep = n; in sh_pfc_get_config_reg()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/ltrace/ltrace/ |
| H A D | 0001-Fix-tautological-compare-warning.patch | 172 return allocate_gpr(ctx, proc, info, valuep, sz);
|