| /Linux-v6.1/drivers/nvmem/ |
| D | lpc18xx_eeprom.c | 50 unsigned val_bytes; member 118 bytes -= eeprom->val_bytes; in lpc18xx_eeprom_gather_write() 119 val += eeprom->val_bytes; in lpc18xx_eeprom_gather_write() 120 offset += eeprom->val_bytes; in lpc18xx_eeprom_gather_write() 142 bytes -= eeprom->val_bytes; in lpc18xx_eeprom_read() 143 val += eeprom->val_bytes; in lpc18xx_eeprom_read() 144 offset += eeprom->val_bytes; in lpc18xx_eeprom_read() 210 eeprom->val_bytes = 4; in lpc18xx_eeprom_probe()
|
| /Linux-v6.1/drivers/base/regmap/ |
| D | regmap.c | 818 map->format.val_bytes = DIV_ROUND_UP(config->val_bits, 8); in __regmap_init() 1695 for (i = 0; i < val_len / map->format.val_bytes; i++) { in _regmap_raw_write_impl() 1706 int val_bytes = map->format.val_bytes; in _regmap_raw_write_impl() local 1707 for (i = 0; i < val_len / val_bytes; i++) { in _regmap_raw_write_impl() 1708 ival = map->format.parse_val(val + (i * val_bytes)); in _regmap_raw_write_impl() 1727 int val_num = val_len / map->format.val_bytes; in _regmap_raw_write_impl() 1734 win_residue, val_len / map->format.val_bytes); in _regmap_raw_write_impl() 1737 map->format.val_bytes, noinc); in _regmap_raw_write_impl() 1743 val += win_residue * map->format.val_bytes; in _regmap_raw_write_impl() 1744 val_len -= win_residue * map->format.val_bytes; in _regmap_raw_write_impl() [all …]
|
| D | regmap-mmio.c | 19 unsigned int val_bytes; member 189 if (ctx->big_endian && (ctx->val_bytes > 1)) { in regmap_mmio_noinc_write() 190 switch (ctx->val_bytes) { in regmap_mmio_noinc_write() 220 switch (ctx->val_bytes) { in regmap_mmio_noinc_write() 356 switch (ctx->val_bytes) { in regmap_mmio_noinc_read() 382 if (ctx->big_endian && (ctx->val_bytes > 1)) { in regmap_mmio_noinc_read() 383 switch (ctx->val_bytes) { in regmap_mmio_noinc_read() 462 ctx->val_bytes = config->val_bits / 8; in regmap_mmio_gen_context()
|
| D | regcache.c | 714 size_t val_bytes = map->format.val_bytes; in regcache_sync_block_raw_flush() local 723 count * val_bytes, count, base, cur - map->reg_stride); in regcache_sync_block_raw_flush() 727 ret = _regmap_raw_write(map, base, *data, count * val_bytes, false); in regcache_sync_block_raw_flush()
|
| D | regmap-irq.c | 474 for_each_set_bit(b, &mreg, map->format.val_bytes * 8) { in regmap_irq_thread() 475 if (i * map->format.val_bytes * 8 + b > in regmap_irq_thread() 507 switch (map->format.val_bytes) { in regmap_irq_thread() 903 map->format.val_bytes, in regmap_add_irq_chip_fwnode()
|
| D | internal.h | 35 size_t val_bytes; member
|
| D | regmap-debugfs.c | 187 map->debugfs_val_len = 2 * map->format.val_bytes; in regmap_calc_tot_len() 263 buf_pos += 2 * map->format.val_bytes; in regmap_read_debugfs()
|
| /Linux-v6.1/sound/soc/ |
| D | soc-ops.c | 680 uinfo->count = params->num_regs * component->val_bytes; in snd_soc_bytes_info() 696 params->num_regs * component->val_bytes); in snd_soc_bytes_get() 702 switch (component->val_bytes) { in snd_soc_bytes_get() 735 len = params->num_regs * component->val_bytes; in snd_soc_bytes_put() 753 switch (component->val_bytes) { in snd_soc_bytes_put() 885 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE; in snd_soc_get_xr_sx() 930 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE; in snd_soc_put_xr_sx()
|
| D | soc-component.c | 384 int val_bytes = regmap_get_val_bytes(component->regmap); in snd_soc_component_setup_regmap() local 387 if (val_bytes > 0) in snd_soc_component_setup_regmap() 388 component->val_bytes = val_bytes; in snd_soc_component_setup_regmap()
|
| /Linux-v6.1/sound/soc/tegra/ |
| D | tegra210_mbdrc.c | 316 for (i = 0; i < params->soc.num_regs; i++, regs += cmpnt->val_bytes) { in tegra210_mbdrc_band_params_get() 338 for (i = 0; i < params->soc.num_regs; i++, regs += cmpnt->val_bytes) { in tegra210_mbdrc_band_params_put() 362 for (i = 0; i < num_regs; i += 4, regs += cmpnt->val_bytes) { in tegra210_mbdrc_threshold_get() 390 for (i = 0; i < num_regs; i += 4, regs += cmpnt->val_bytes) { in tegra210_mbdrc_threshold_put() 418 memset(data, 0, params->soc.num_regs * cmpnt->val_bytes); in tegra210_mbdrc_biquad_coeffs_get() 430 u32 reg_data = reg_ctrl + cmpnt->val_bytes; in tegra210_mbdrc_biquad_coeffs_put()
|
| D | tegra210_peq.c | 153 u32 reg_data = reg_ctrl + cmpnt->val_bytes; in tegra210_peq_ram_get() 176 u32 reg_data = reg_ctrl + cmpnt->val_bytes; in tegra210_peq_ram_put()
|
| D | tegra210_ahub.c | 38 (8 * cmpnt->val_bytes * i); in tegra_ahub_get_value_enum() 72 reg_idx = (value - 1) / (8 * cmpnt->val_bytes); in tegra_ahub_put_value_enum() 73 bit_pos = (value - 1) % (8 * cmpnt->val_bytes); in tegra_ahub_put_value_enum()
|
| /Linux-v6.1/drivers/net/can/spi/mcp251xfd/ |
| D | mcp251xfd-tef.c | 153 const int val_bytes = regmap_get_val_bytes(priv->map_rx); in mcp251xfd_tef_obj_read() local 168 sizeof(*hw_tef_obj) / val_bytes * len); in mcp251xfd_tef_obj_read()
|
| D | mcp251xfd-rx.c | 189 const int val_bytes = regmap_get_val_bytes(priv->map_rx); in mcp251xfd_rx_obj_read() local 195 len * ring->obj_size / val_bytes); in mcp251xfd_rx_obj_read()
|
| D | mcp251xfd-dump.c | 67 const int val_bytes = regmap_get_val_bytes(priv->map_rx); in mcp251xfd_dump_registers() local 83 buf, reg_space->size / val_bytes); in mcp251xfd_dump_registers()
|
| D | mcp251xfd-core.c | 1400 const int val_bytes = regmap_get_val_bytes(priv->map_reg); in mcp251xfd_read_regs_status() local 1409 &priv->regs_status, len / val_bytes); in mcp251xfd_read_regs_status()
|
| /Linux-v6.1/include/sound/ |
| D | soc-component.h | 218 int val_bytes; member
|