/openbmc/linux/drivers/staging/octeon/ |
H A D | octeon-stubs.h | 1184 int32_t value) in cvmx_fau_fetch_and_add32() argument 1186 return value; in cvmx_fau_fetch_and_add32() 1190 int32_t value) in cvmx_fau_atomic_add32() argument 1194 int32_t value) in cvmx_fau_atomic_write32() argument 1202 static inline void cvmx_scratch_write64(uint64_t address, uint64_t value) in cvmx_scratch_write64() argument 1372 int32_t value) in cvmx_fau_async_fetch_and_add32() argument
|
/openbmc/linux/arch/um/drivers/ |
H A D | Kconfig | 83 will be attached by default. This value can be overridden from the 84 command line. The default value is "fd:0,fd:1", which attaches the 93 except the main console will be attached by default. This value can 94 be overridden from the command line. The default value is "xterm", 105 will be attached by default. This value can be overridden from the 106 command line. The default value is "pty", which attaches them to
|
/openbmc/linux/Documentation/networking/ |
H A D | j1939.rst | 265 int value = 1; 266 setsockopt(sock, SOL_SOCKET, SO_BROADCAST, &value, sizeof(value)); 371 int value = 1; 372 setsockopt(sock, SOL_SOCKET, SO_BROADCAST, &value, sizeof(value));
|
/openbmc/linux/sound/soc/codecs/ |
H A D | cs47l15.c | 113 ucontrol->value.integer.value[0] = !!cs47l15->in1_lp_mode; in cs47l15_in1_adc_get() 125 if (!!ucontrol->value.integer.value[0] == cs47l15->in1_lp_mode) in cs47l15_in1_adc_put() 128 switch (ucontrol->value.integer.value[0]) { in cs47l15_in1_adc_put()
|
/openbmc/linux/drivers/gpio/ |
H A D | gpio-mvebu.c | 300 static void mvebu_gpio_set(struct gpio_chip *chip, unsigned int pin, int value) in mvebu_gpio_set() argument 305 BIT(pin), value ? BIT(pin) : 0); in mvebu_gpio_set() 331 int value) in mvebu_gpio_blink() argument 336 BIT(pin), value ? BIT(pin) : 0); in mvebu_gpio_blink() 359 int value) in mvebu_gpio_direction_output() argument 373 mvebu_gpio_set(chip, pin, value); in mvebu_gpio_direction_output()
|
H A D | gpio-pca953x.c | 484 u8 value[MAX_BANK]; in pca953x_write_regs() local 488 value[i] = bitmap_get_value8(val, i * BANK_SZ); in pca953x_write_regs() 490 ret = regmap_bulk_write(chip->regmap, regaddr, value, NBANK(chip)); in pca953x_write_regs() 502 u8 value[MAX_BANK]; in pca953x_read_regs() local 505 ret = regmap_bulk_read(chip->regmap, regaddr, value, NBANK(chip)); in pca953x_read_regs() 512 bitmap_set_value8(val, value[i], i * BANK_SZ); in pca953x_read_regs()
|
/openbmc/linux/drivers/media/i2c/ |
H A D | ov7251.c | 959 static int ov7251_set_hflip(struct ov7251 *ov7251, s32 value) in ov7251_set_hflip() argument 964 if (value) in ov7251_set_hflip() 976 static int ov7251_set_vflip(struct ov7251 *ov7251, s32 value) in ov7251_set_vflip() argument 981 if (value) in ov7251_set_vflip() 993 static int ov7251_set_test_pattern(struct ov7251 *ov7251, s32 value) in ov7251_set_test_pattern() argument 998 if (value) in ov7251_set_test_pattern()
|
/openbmc/linux/Documentation/scheduler/ |
H A D | sched-capacity.rst | 120 It should be noted that having a *single* value to represent differences in CPU 215 with ``max_capacity`` being the highest CPU capacity value in the 319 hierarchy of CPUs 0-1 spans a single capacity value: SD_ASYM_CPUCAPACITY isn't 348 value for a task, either via sched_setattr() or via the cgroup interface (see 363 on any CPU by giving it a low uclamp.max value. Conversely, it can force a small 365 giving it a high uclamp.min value.
|
/openbmc/linux/drivers/ssb/ |
H A D | pci.c | 1035 static void ssb_pci_write8(struct ssb_device *dev, u16 offset, u8 value) in ssb_pci_write8() argument 1045 iowrite8(value, bus->mmio + offset); in ssb_pci_write8() 1048 static void ssb_pci_write16(struct ssb_device *dev, u16 offset, u16 value) in ssb_pci_write16() argument 1058 iowrite16(value, bus->mmio + offset); in ssb_pci_write16() 1061 static void ssb_pci_write32(struct ssb_device *dev, u16 offset, u32 value) in ssb_pci_write32() argument 1071 iowrite32(value, bus->mmio + offset); in ssb_pci_write32()
|
/openbmc/linux/drivers/media/rc/ |
H A D | ite-cir.c | 571 static void it87_put_tx_byte(struct ite_dev *dev, u8 value) in it87_put_tx_byte() argument 573 outb(value, dev->cir_addr + IT87_DR); in it87_put_tx_byte() 774 static void it8708_put_tx_byte(struct ite_dev *dev, u8 value) in it8708_put_tx_byte() argument 776 outb(value, dev->cir_addr + IT8708_C0DR); in it8708_put_tx_byte() 1048 static void it8709_put_tx_byte(struct ite_dev *dev, u8 value) in it8709_put_tx_byte() argument 1050 it8709_wr(dev, value, IT85_C0DR); in it8709_put_tx_byte()
|
/openbmc/linux/sound/soc/tegra/ |
H A D | tegra210_ahub.c | 46 uctl->value.enumerated.item[0] = i; in tegra_ahub_get_value_enum() 62 unsigned int *item = uctl->value.enumerated.item; in tegra_ahub_put_value_enum() 63 unsigned int value = e->values[item[0]]; in tegra_ahub_put_value_enum() local 70 if (value) { in tegra_ahub_put_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()
|
/openbmc/linux/arch/arm/common/ |
H A D | sa1111.c | 540 int value) in sa1111_gpio_direction_output() argument 548 sa1111_gpio_modify(reg + SA1111_GPIO_PXDWR, mask, value ? mask : 0); in sa1111_gpio_direction_output() 549 sa1111_gpio_modify(reg + SA1111_GPIO_PXSSR, mask, value ? mask : 0); in sa1111_gpio_direction_output() 566 static void sa1111_gpio_set(struct gpio_chip *gc, unsigned offset, int value) in sa1111_gpio_set() argument 574 sa1111_gpio_modify(reg + SA1111_GPIO_PXDWR, mask, value ? mask : 0); in sa1111_gpio_set() 575 sa1111_gpio_modify(reg + SA1111_GPIO_PXSSR, mask, value ? mask : 0); in sa1111_gpio_set()
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | selftest_timeline.c | 454 static int emit_ggtt_store_dw(struct i915_request *rq, u32 addr, u32 value) in emit_ggtt_store_dw() argument 466 *cs++ = value; in emit_ggtt_store_dw() 471 *cs++ = value; in emit_ggtt_store_dw() 475 *cs++ = value; in emit_ggtt_store_dw() 485 checked_tl_write(struct intel_timeline *tl, struct intel_engine_cs *engine, u32 value) in checked_tl_write() argument 509 err = emit_ggtt_store_dw(rq, tl->hwsp_offset, value); in checked_tl_write()
|
H A D | selftest_migrate.c | 259 u32 value, in clear() argument 453 u32 value, in __migrate_clear() argument 460 value, out); in __migrate_clear() 466 u32 value, in __global_clear() argument 473 value, out); in __global_clear()
|
/openbmc/linux/drivers/pinctrl/samsung/ |
H A D | pinctrl-samsung.c | 542 unsigned offset, int value) in samsung_gpio_set_value() argument 553 if (value) in samsung_gpio_set_value() 559 static void samsung_gpio_set(struct gpio_chip *gc, unsigned offset, int value) in samsung_gpio_set() argument 565 samsung_gpio_set_value(gc, offset, value); in samsung_gpio_set() 637 int value) in samsung_gpio_direction_output() argument 644 samsung_gpio_set_value(gc, offset, value); in samsung_gpio_direction_output()
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/esw/ |
H A D | qos.c | 755 u64 value; in esw_qos_devlink_rate_to_mbps() local 764 value = div_u64_rem(*rate, MLX5_LINKSPEED_UNIT, &remainder); in esw_qos_devlink_rate_to_mbps() 772 if (value > link_speed_max) { in esw_qos_devlink_rate_to_mbps() 774 name, value, link_speed_max); in esw_qos_devlink_rate_to_mbps() 779 *rate = value; in esw_qos_devlink_rate_to_mbps()
|
/openbmc/linux/drivers/hwmon/ |
H A D | f75375s.c | 152 u8 value) in f75375_write8() argument 154 i2c_smbus_write_byte_data(client, reg, value); in f75375_write8() 158 u16 value) in f75375_write16() argument 160 int err = i2c_smbus_write_byte_data(client, reg, (value >> 8)); in f75375_write16() 163 i2c_smbus_write_byte_data(client, reg + 1, (value & 0xFF)); in f75375_write16()
|
H A D | asb100.c | 885 static void asb100_write_value(struct i2c_client *client, u16 reg, u16 value) in asb100_write_value() argument 899 i2c_smbus_write_byte_data(client, reg & 0xff, value & 0xff); in asb100_write_value() 907 i2c_smbus_write_byte_data(cl, 1, value & 0xff); in asb100_write_value() 910 i2c_smbus_write_word_swapped(cl, 2, value); in asb100_write_value() 913 i2c_smbus_write_word_swapped(cl, 3, value); in asb100_write_value()
|
/openbmc/linux/drivers/i2c/busses/ |
H A D | i2c-bcm-iproc.c | 439 u8 value; in bcm_iproc_i2c_slave_isr() local 448 &value); in bcm_iproc_i2c_slave_isr() 453 &value); in bcm_iproc_i2c_slave_isr() 455 iproc_i2c_wr_reg(iproc_i2c, S_TX_OFFSET, value); in bcm_iproc_i2c_slave_isr() 488 i2c_slave_event(iproc_i2c->slave, I2C_SLAVE_STOP, &value); in bcm_iproc_i2c_slave_isr()
|
/openbmc/u-boot/doc/ |
H A D | README.fsl-ddr | 65 Either numerical or string value is accepted. 277 value. (The value of ddr_interactive may have a meaning in the future, but, 320 edit <c#> <d#> <spd|dimmparms|commonparms|opts|addresses|regs> <element> <value> 331 <value> - decimal or heximal (prefixed with 0x) numbers
|
/openbmc/docs/ |
H A D | rest-api.md | 56 object from above, we can query just the `Name` value: 332 of key-value pairs. This dictionary serves as the "events filter". All the keys 334 filters represented by each of the key-value pairs are ORed. 336 One of the supported keys is "paths". The corresponding value is an array of 341 The other supported key is "interfaces". The corresponding value is an array of
|
/openbmc/linux/Documentation/arch/x86/ |
H A D | tdx.rst | 83 - Bit fields for which the hypervisor controls the value seen by the guest 86 - Bit fields for which the hypervisor configures the value such that the 87 guest TD either sees their native value or a value of 0. For these bit 93 value with a hypercall.
|
/openbmc/u-boot/drivers/video/ |
H A D | ipu_common.c | 434 u32 value; in ipu_reset() local 438 value = __raw_readl(reg); in ipu_reset() 439 value = value | SW_IPU_RST; in ipu_reset() 440 __raw_writel(value, reg); in ipu_reset()
|
/openbmc/linux/sound/soc/mediatek/mt8186/ |
H A D | mt8186-dai-i2s.c | 121 ucontrol->value.integer.value[0] = i2s_priv->low_jitter_en; in mt8186_i2s_hd_get() 135 if (ucontrol->value.enumerated.item[0] >= e->items) in mt8186_i2s_hd_set() 138 hd_en = ucontrol->value.integer.value[0]; in mt8186_i2s_hd_set()
|
/openbmc/linux/Documentation/core-api/ |
H A D | debug-objects.rst | 222 false. The return value is used to update the statistics. 241 false. The return value is used to update the statistics. 267 false. The return value is used to update the statistics. 283 false. The return value is used to update the statistics. 296 false. The return value is used to update the statistics.
|