/openbmc/u-boot/drivers/pinctrl/renesas/ |
H A D | pfc.c | 161 unsigned int field, u32 value) in sh_pfc_write_config_reg() argument 173 crp->reg, value, field, crp->reg_width, crp->field_width); in sh_pfc_write_config_reg() 176 value = value << pos; in sh_pfc_write_config_reg() 180 data |= value; in sh_pfc_write_config_reg() 285 u32 value; in sh_pfc_config_mux() local 327 ret = sh_pfc_get_config_reg(pfc, enum_id, &cr, &field, &value); in sh_pfc_config_mux() 331 sh_pfc_write_config_reg(pfc, cr, field, value); in sh_pfc_config_mux()
|
/openbmc/linux/sound/soc/codecs/ |
H A D | tas5720.c | 572 ucontrol->value.integer.value[0] = val << 1; in tas5722_volume_get() 575 ucontrol->value.integer.value[0] |= val & TAS5722_VOL_CONTROL_LSB; in tas5722_volume_get() 584 unsigned int sel = ucontrol->value.integer.value[0]; in tas5722_volume_set()
|
H A D | tas2562.c | 466 ucontrol->value.integer.value[0] = tas2562->volume_lvl; in tas2562_volume_control_get() 478 reg_val = float_vol_db_lookup[ucontrol->value.integer.value[0]/2]; in tas2562_volume_control_put() 496 tas2562->volume_lvl = ucontrol->value.integer.value[0]; in tas2562_volume_control_put()
|
/openbmc/linux/Documentation/hwmon/ |
H A D | adm9240.rst | 91 and is cleared when the temperature falls below the temp1_max_hyst value. 112 - fan_min set to register value 254 which corresponds 137 fan speed amplifier circuit. The analog output is set to maximum value on 158 The reading is an unsigned 8-bit value, nominal voltage measurement is 167 The chip has five inputs to read the 5-bit VID and reports the mV value 180 Clear the CI latch by writing value 0 to the sysfs intrusion0_alarm file.
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_l4lb_noinline_dynptr.c | 138 __u64 value; member 172 __type(value, struct vip_meta); 179 __type(value, __u32); 186 __type(value, struct real_definition); 193 __type(value, struct vip_stats); 200 __type(value, struct ctl_value);
|
H A D | verifier_sock.c | 16 __type(value, __u64); 23 __type(value, int); 30 __type(value, int); 37 __type(value, int); 49 __type(value, struct val);
|
/openbmc/linux/drivers/video/fbdev/omap/ |
H A D | sossi.c | 87 static inline void sossi_write_reg(int reg, u32 value) in sossi_write_reg() argument 89 writel(value, sossi.base + reg); in sossi_write_reg() 92 static inline void sossi_write_reg16(int reg, u16 value) in sossi_write_reg16() argument 94 writew(value, sossi.base + reg); in sossi_write_reg16() 97 static inline void sossi_write_reg8(int reg, u8 value) in sossi_write_reg8() argument 99 writeb(value, sossi.base + reg); in sossi_write_reg8()
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-driver-toshiba_acpi | 16 Also note that toggling this value on type 1 devices, requires 112 Note that when the value is set to disabled, the sleep function 125 Note that toggling this value requires a reboot for changes to 174 Note that toggling this value requires a reboot for changes to 188 Note that toggling this value requires a reboot for changes to 201 Note that toggling this value requires a reboot for changes to
|
H A D | sysfs-tty | 25 Shows the current uartclk value associated with the 147 user specified value to change it for the FIFO buffer. 148 Users can show or set this value regardless of opening the 152 serials. When users input a meaning less value to this I/F, 153 the RX trigger is changed to the nearest lower value for the
|
/openbmc/linux/drivers/spi/ |
H A D | spi-bcm63xx.c | 161 u8 value, unsigned int offset) in bcm_spi_writeb() argument 163 writeb(value, bs->regs + bs->reg_offsets[offset]); in bcm_spi_writeb() 167 u16 value, unsigned int offset) in bcm_spi_writew() argument 170 iowrite16be(value, bs->regs + bs->reg_offsets[offset]); in bcm_spi_writew() 172 writew(value, bs->regs + bs->reg_offsets[offset]); in bcm_spi_writew() 362 if (t->delay.value) { in bcm63xx_spi_transfer_one()
|
/openbmc/linux/drivers/pinctrl/ |
H A D | pinctrl-apple-gpio.c | 82 unsigned int pin, u32 mask, u32 value) in apple_gpio_set_reg() argument 84 regmap_update_bits(pctl->map, REG_GPIO(pin), mask, value); in apple_gpio_set_reg() 220 static void apple_gpio_set(struct gpio_chip *chip, unsigned int offset, int value) in apple_gpio_set() argument 224 apple_gpio_set_reg(pctl, offset, REG_GPIOx_DATA, value ? REG_GPIOx_DATA : 0); in apple_gpio_set() 240 unsigned int offset, int value) in apple_gpio_direction_output() argument 247 (value ? REG_GPIOx_DATA : 0)); in apple_gpio_direction_output()
|
/openbmc/qemu/hw/rtc/ |
H A D | m48t59.c | 174 static void set_up_watchdog(M48t59State *NVRAM, uint8_t value) in set_up_watchdog() argument 181 if (value != 0) { in set_up_watchdog() 182 interval = (1 << (2 * (value & 0x03))) * ((value >> 2) & 0x1F); in set_up_watchdog() 507 static void nvram_write(void *opaque, hwaddr addr, uint64_t value, in nvram_write() argument 512 return m48t59_write(NVRAM, addr, value); in nvram_write()
|
/openbmc/linux/drivers/char/tpm/ |
H A D | tpm_i2c_nuvoton.c | 164 static bool i2c_nuvoton_check_status(struct tpm_chip *chip, u8 mask, u8 value) in i2c_nuvoton_check_status() argument 167 return (status != TPM_STS_ERR_VAL) && ((status & mask) == value); in i2c_nuvoton_check_status() 170 static int i2c_nuvoton_wait_for_stat(struct tpm_chip *chip, u8 mask, u8 value, in i2c_nuvoton_wait_for_stat() argument 191 status_valid = i2c_nuvoton_check_status(chip, mask, value); in i2c_nuvoton_wait_for_stat() 208 value); in i2c_nuvoton_wait_for_stat() 214 value); in i2c_nuvoton_wait_for_stat()
|
/openbmc/linux/sound/soc/tegra/ |
H A D | tegra30_ahub.c | 623 unsigned int value; in tegra30_ahub_set_cif() local 625 value = (conf->threshold << in tegra30_ahub_set_cif() 648 regmap_write(regmap, reg, value); in tegra30_ahub_set_cif() 655 unsigned int value; in tegra124_ahub_set_cif() local 657 value = (conf->threshold << in tegra124_ahub_set_cif() 680 regmap_write(regmap, reg, value); in tegra124_ahub_set_cif()
|
H A D | tegra210_mixer.c | 190 ucontrol->value.integer.value[0] = mixer->gain_value[i]; in tegra210_mixer_get_gain() 210 if (mixer->gain_value[id] == ucontrol->value.integer.value[0]) in tegra210_mixer_apply_gain() 213 mixer->gain_value[id] = ucontrol->value.integer.value[0]; in tegra210_mixer_apply_gain()
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | migrate_reuseport.c | 326 __u64 value; in update_maps() local 332 value = (__u64)test_case->servers[i]; in update_maps() 333 err = bpf_map_update_elem(reuseport_map_fd, &i, &value, in update_maps() 338 err = bpf_map_lookup_elem(reuseport_map_fd, &i, &value); in update_maps() 342 err = bpf_map_update_elem(migrate_map_fd, &value, &migrated_to, in update_maps()
|
/openbmc/linux/Documentation/devicetree/bindings/powerpc/opal/ |
H A D | power-mgt.txt | 29 provides the value of that property for the idle state associated with 85 ibm,cpu-idle-state-psscr-mask value to 0xf, it implies that 95 - MTL and PSLL are set to the maximum allowed value as 98 - The Transition Rate, TR is set to the Maximum value 109 register value is to be set in pmicr for the corresponding
|
/openbmc/qemu/hw/intc/ |
H A D | riscv_imsic.c | 285 static void riscv_imsic_write(void *opaque, hwaddr addr, uint64_t value, in riscv_imsic_write() argument 307 msi.data = le32_to_cpu(value); in riscv_imsic_write() 318 if (value && (value < imsic->num_irqs)) { in riscv_imsic_write() 319 qatomic_or(&imsic->eistate[(page * imsic->num_irqs) + value], in riscv_imsic_write()
|
/openbmc/openpower-hw-diags/util/ |
H A D | pdbg.cpp | 668 ATTR_PHYS_BIN_PATH_Type value; in getPhysBinPath() local 669 if (DT_GET_PROP(ATTR_PHYS_BIN_PATH, target, value)) in getPhysBinPath() 682 binPath.insert(binPath.end(), value, value + sizeof(value)); in getPhysBinPath()
|
/openbmc/linux/tools/perf/util/ |
H A D | parse-events.l | 35 static int value(yyscan_t scanner, int base) in value() function 286 {num_dec} { return value(yyscanner, 10); } 287 {num_hex} { return value(yyscanner, 16); } 333 {num_dec} { return value(yyscanner, 10); } 334 {num_hex} { return value(yyscanner, 16); }
|
/openbmc/linux/Documentation/ABI/stable/ |
H A D | sysfs-bus-usb | 7 The file holds a boolean value (0 or 1) indicating whether or 24 being autosuspended at all, and writing a negative value 28 the value of the usbcore.autosuspend module parameter. 103 another value will change the active configuration. 106 configuration with a value equal to 0. Writing 0 to
|
/openbmc/qemu/contrib/vhost-user-input/ |
H A D | main.c | 104 g_debug("input %d %d %d", evdev.type, evdev.code, evdev.value); in vi_evdev_watch() 108 virtio.value = cpu_to_le32(evdev.value); in vi_evdev_watch() 129 evdev.value = le32_to_cpu(event->value); in vi_handle_status()
|
/openbmc/linux/drivers/hwmon/ |
H A D | ltc2945.c | 246 long long value; in ltc2945_value_show() local 248 value = ltc2945_reg_to_val(dev, attr->index); in ltc2945_value_show() 249 if (value < 0) in ltc2945_value_show() 250 return value; in ltc2945_value_show() 251 return sysfs_emit(buf, "%lld\n", value); in ltc2945_value_show()
|
/openbmc/linux/Documentation/RCU/ |
H A D | rculist_nulls.rst | 100 We need to make sure a reader cannot read the new 'obj->obj_node.next' value 101 and previous value of 'obj->key'. Otherwise, an item could be deleted 148 to another chain) checking the final 'nulls' value if 149 the lookup met the end of chain. If final 'nulls' value 182 // If the nulls value we got at the end of this lookup is
|
/openbmc/u-boot/drivers/net/ |
H A D | ftmac110.c | 369 uint16_t value = 0; in ftmac110_mdio_read() local 378 value = mdio_read(dev, addr, reg); in ftmac110_mdio_read() 383 return value; in ftmac110_mdio_read() 387 int reg, u16 value) in ftmac110_mdio_write() argument 397 mdio_write(dev, addr, reg, value); in ftmac110_mdio_write()
|