/openbmc/linux/Documentation/input/ |
H A D | notifier.rst | 13 - 'value' depends on the type of event. 15 - KBD_KEYCODE events are always sent before other events, value is the keycode. 17 value is the keycode. 19 unicode character. value is the unicode value. 21 non-unicode character. value is the keysym. 33 params.value = keycode; 41 param.value = unicode; 48 params.value = keysym;
|
/openbmc/phosphor-power/ |
H A D | meson.options | 3 value: 'org.open_power.powersupply', 8 value: '/org/open_power/sensors/aggregation/per_30s', 13 value: 'power-ffs-sync-history', 20 'long-tests', type: 'feature', value: 'disabled', 26 'power_sequencer', type: 'string', value: 'ucd90160', 31 'device-access', type: 'boolean', value: true, 36 'ibm-vpd', type: 'boolean', value: false, 41 'ucd90160-yaml', type: 'string', value: 'example/ucd90160.yaml', 45 'oe-sdk', type: 'feature', value: 'disabled', description: 'Enable OE SDK'
|
/openbmc/qemu/scripts/ |
H A D | meson-buildoptions.py | 86 value = opt["value"] 87 if isinstance(value, list): 88 return ",".join(value) 89 if isinstance(value, bool): 90 return "enabled" if value else "disabled" 91 return str(value) 113 value = get_help(opt) 114 if value != "auto" and value != "":
|
/openbmc/qemu/include/qemu/ |
H A D | qtree.h | 70 gpointer value); 73 gpointer value); 83 gpointer *value); 136 gpointer value) in q_tree_insert() argument 138 g_tree_insert(tree, key, value); in q_tree_insert() 143 gpointer value) in q_tree_replace() argument 145 g_tree_replace(tree, key, value); in q_tree_replace() 169 gpointer *value) in q_tree_lookup_extended() argument 171 return g_tree_lookup_extended(tree, lookup_key, orig_key, value); in q_tree_lookup_extended()
|
/openbmc/qemu/block/monitor/ |
H A D | block-hmp-cmds.c | 422 if (!info->value->inserted) { in hmp_nbd_server_start() 751 print_block_info(mon, info->value, info->value->inserted, in hmp_info_block() 765 assert(blockdev->value->node_name); in hmp_info_block() 786 if (!stats->value->device) { in hmp_info_blockstats() 835 list->value->device, in hmp_info_block_jobs() 836 list->value->offset, in hmp_info_block_jobs() 837 list->value->len, in hmp_info_block_jobs() 838 list->value->speed); in hmp_info_block_jobs() 844 list->value->device, in hmp_info_block_jobs() 845 list->value->offset, in hmp_info_block_jobs() [all …]
|
/openbmc/linux/include/linux/ssb/ |
H A D | ssb_embedded.h | 13 u32 ssb_gpio_out(struct ssb_bus *bus, u32 mask, u32 value); 14 u32 ssb_gpio_outen(struct ssb_bus *bus, u32 mask, u32 value); 15 u32 ssb_gpio_control(struct ssb_bus *bus, u32 mask, u32 value); 16 u32 ssb_gpio_intmask(struct ssb_bus *bus, u32 mask, u32 value); 17 u32 ssb_gpio_polarity(struct ssb_bus *bus, u32 mask, u32 value);
|
/openbmc/phosphor-power/phosphor-regulators/src/actions/ |
H A D | i2c_write_byte_action.hpp | 56 explicit I2CWriteByteAction(uint8_t reg, uint8_t value, in I2CWriteByteAction() argument 58 reg{reg}, value{value}, mask{mask} in I2CWriteByteAction() 95 return value; in getValue() 128 const uint8_t value{0x00}; member in phosphor::power::regulators::I2CWriteByteAction
|
H A D | i2c_compare_byte_action.hpp | 57 explicit I2CCompareByteAction(uint8_t reg, uint8_t value, in I2CCompareByteAction() argument 59 reg{reg}, value{value}, mask{mask} in I2CCompareByteAction() 97 return value; in getValue() 130 const uint8_t value{0x00}; member in phosphor::power::regulators::I2CCompareByteAction
|
/openbmc/linux/drivers/staging/media/atomisp/pci/ |
H A D | isp2400_input_system_private.h | 28 const hrt_data value) in input_system_reg_store() argument 33 value); in input_system_reg_store() 50 const hrt_data value) in receiver_reg_store() argument 54 ia_css_device_store_uint32(RX_BASE[ID] + reg * sizeof(hrt_data), value); in receiver_reg_store() 71 const hrt_data value) in receiver_port_reg_store() argument 78 sizeof(hrt_data), value); in receiver_port_reg_store() 99 const hrt_data value) in input_system_sub_system_reg_store() argument 106 reg * sizeof(hrt_data), value); in input_system_sub_system_reg_store()
|
/openbmc/linux/drivers/net/wireless/broadcom/b43/ |
H A D | pio.h | 120 u16 offset, u16 value) in b43_piotx_write16() argument 122 b43_write16(q->dev, q->mmio_base + offset, value); in b43_piotx_write16() 126 u16 offset, u32 value) in b43_piotx_write32() argument 128 b43_write32(q->dev, q->mmio_base + offset, value); in b43_piotx_write32() 143 u16 offset, u16 value) in b43_piorx_write16() argument 145 b43_write16(q->dev, q->mmio_base + offset, value); in b43_piorx_write16() 149 u16 offset, u32 value) in b43_piorx_write32() argument 151 b43_write32(q->dev, q->mmio_base + offset, value); in b43_piorx_write32()
|
/openbmc/linux/lib/kunit/ |
H A D | kunit-example-test.c | 191 int value; member 193 { .value = 2, }, 194 { .value = 1, }, 195 { .value = 0, }, 200 snprintf(desc, KUNIT_PARAM_DESC_SIZE, "example value %d", p->value); in example_param_get_desc() 216 if (!param->value) in example_params_test() 220 KUNIT_EXPECT_EQ(test, param->value % param->value, 0); in example_params_test()
|
/openbmc/qemu/ui/ |
H A D | ui-hmp-cmds.c | 92 mouse->value->current ? '*' : ' ', in hmp_info_mice() 93 mouse->value->index, mouse->value->name, in hmp_info_mice() 126 VncClientInfo *cinfo = client->value; in hmp_info_vnc_clients() 141 VncServerInfo2 *sinfo = server->value; in hmp_info_vnc_servers() 165 VncInfo2 *info = info2l->value; in hmp_info_vnc() 238 chan->value->host, chan->value->port, in hmp_info_spice() 241 chan->value->connection_id); in hmp_info_spice() 243 chan->value->channel_type, chan->value->channel_id); in hmp_info_spice() 246 if (chan->value->channel_type > 0 && in hmp_info_spice() 377 int value; in hmp_sendkey() local [all …]
|
/openbmc/linux/kernel/ |
H A D | acct.c | 339 while (value > MAXFRACT) { in encode_comp_t() 349 value >>= EXPSIZE; in encode_comp_t() 382 exp = (value > (MAXFRACT2>>1)); in encode_comp2_t() 384 while (value > MAXFRACT2) { in encode_comp2_t() 385 rnd = value & 1; in encode_comp2_t() 386 value >>= 1; in encode_comp2_t() 394 value >>= 1; in encode_comp2_t() 409 static u32 encode_float(u64 value) in encode_float() argument 414 if (value == 0) in encode_float() 416 while ((s64)value > 0) { in encode_float() [all …]
|
/openbmc/openpower-proc-control/ |
H A D | meson.options | 7 value : '/usr/share/pdata/preserved_attrs_list', 11 value : '/var/lib/phal/exportdevtree', 15 value : '/media/hostfw/running/DEVTREE', 19 value : '/media/hostfw/running-ro/', 23 value : '/usr/share/pdata/attributes_info.db', 27 value : '/usr/share/pdata/reinit_devtree_attrs_list', 32 value: '/org/openpower/dump',
|
/openbmc/qemu/hw/fsi/ |
H A D | trace-events | 2 fsi_scratchpad_write(uint64_t addr, uint32_t size, uint64_t data) "@0x%" PRIx64 " size=%d value=0x%… 4 fsi_slave_write(uint64_t addr, uint32_t size, uint64_t data) "@0x%" PRIx64 " size=%d value=0x%"PRIx… 6 fsi_cfam_config_write(uint64_t addr, uint32_t size, uint64_t data) "@0x%" PRIx64 " size=%d value=0x… 8 …emented_write(uint64_t addr, uint32_t size, uint64_t data) "@0x%" PRIx64 " size=%d value=0x%"PRIx64 9 …_write_noaddr(uint64_t addr, uint32_t size, uint64_t data) "@0x%" PRIx64 " size=%d value=0x%"PRIx64 11 fsi_master_write(uint64_t addr, uint32_t size, uint64_t data) "@0x%" PRIx64 " size=%d value=0x%"PRI… 13 fsi_aspeed_apb2opb_write(uint64_t addr, uint32_t size, uint64_t data) "@0x%" PRIx64 " size=%d value…
|
/openbmc/linux/Documentation/hwmon/ |
H A D | w83793.rst | 56 - If the value is 3, it starts monitoring using a remote termal diode 61 Temp5-6 can be connected to external thermistors (value of 65 For voltage sensors, an alarm triggers if the measured value is below 67 For temperature sensors, an alarm triggers if the measured value goes 69 value drops below the hysteresis value. 70 For fan sensors, an alarm triggers if the measured value is below the 85 PWM value requests from different temperature channels, but the chip 86 will always pick the safest (max) PWM value for each fan. 89 predefined value, within a tolerance margin. So if tempX_input > 90 thermal_cruiseX + toleranceX, the chip will increase the PWM value, [all …]
|
/openbmc/qemu/hw/ssi/ |
H A D | mss-spi.c | 271 uint32_t value = val64; in spi_write() local 295 s->regs[R_SPI_CONTROL] = value; in spi_write() 296 if (value & C_BIGFIFO) { in spi_write() 301 s->enabled = value & C_ENABLE; in spi_write() 303 if (value & C_RESET) { in spi_write() 323 s->regs[R_SPI_DFSIZE] = value; in spi_write() 327 s->regs[R_SPI_INTCLR] = value; in spi_write() 328 if (value & S_TXDONE) { in spi_write() 331 if (value & S_RXRDY) { in spi_write() 334 if (value & S_RXCHOVRF) { in spi_write() [all …]
|
/openbmc/linux/sound/pci/pcxhr/ |
H A D | pcxhr_mix22.c | 500 *value = (int)(reg & PCXHR_STAT_GPI_MASK) >> in hr222_read_gpio() 714 ucontrol->value.integer.value[0] = chip->mic_volume; in hr222_mic_vol_get() 725 if (chip->mic_volume != ucontrol->value.integer.value[0]) { in hr222_mic_vol_put() 727 chip->mic_volume = ucontrol->value.integer.value[0]; in hr222_mic_vol_put() 754 uinfo->value.integer.min = 0; /* 0 dB */ in hr222_mic_boost_info() 755 uinfo->value.integer.max = 3; /* 54 dB */ in hr222_mic_boost_info() 764 ucontrol->value.integer.value[0] = chip->mic_boost; in hr222_mic_boost_get() 775 if (chip->mic_boost != ucontrol->value.integer.value[0]) { in hr222_mic_boost_put() 777 chip->mic_boost = ucontrol->value.integer.value[0]; in hr222_mic_boost_put() 804 ucontrol->value.integer.value[0] = chip->phantom_power; in hr222_phantom_power_get() [all …]
|
/openbmc/linux/drivers/net/ethernet/hisilicon/hns/ |
H A D | hns_dsaf_misc.c | 65 obj_args[0].integer.value = link; in hns_dsaf_acpi_ledctrl_by_port() 67 obj_args[1].integer.value = port; in hns_dsaf_acpi_ledctrl_by_port() 69 obj_args[2].integer.value = act; in hns_dsaf_acpi_ledctrl_by_port() 96 obj_args[1].integer.value = port; in hns_dsaf_acpi_locate_ledctrl_by_port() 117 u8 value; in hns_cpld_set_led() local 132 value = mac_cb->cpld_led_value; in hns_cpld_set_led() 143 mac_cb->cpld_led_value = value; in hns_cpld_set_led() 149 mac_cb->cpld_led_value = value; in hns_cpld_set_led() 261 obj_args[2].integer.value = val; in hns_dsaf_acpi_srst_by_port() 564 phy_if = obj->integer.value ? in hns_mac_get_phy_if_acpi() [all …]
|
/openbmc/linux/arch/x86/include/asm/shared/ |
H A D | io.h | 8 static __always_inline void __out##bwl(type value, u16 port) \ 11 : : "a"(value), "Nd"(port)); \ 16 type value; \ 18 : "=a"(value) : "Nd"(port)); \ 19 return value; \
|
/openbmc/qemu/hw/sd/ |
H A D | sdhci.c | 466 uint32_t value = 0; in sdhci_read_dataport() local 503 return value; in sdhci_read_dataport() 568 value >>= 8; in sdhci_write_dataport() 1123 switch (value) { in sdhci_reset_write() 1150 uint32_t value = val; in sdhci_write() local 1151 value <<= shift; in sdhci_write() 1309 s->acmd12errsts |= value; in sdhci_write() 1346 value >> shift, value >> shift); in sdhci_write() 1720 s->vendor_spec = value; in usdhc_write() 1813 value &= ~UINT16_MAX; in usdhc_write() [all …]
|
/openbmc/linux/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/ |
H A D | timed_ctrl.c | 30 hrt_data value) in timed_ctrl_snd_commnd() argument 39 timed_ctrl_reg_store(ID, _HRT_TIMED_CONTROLLER_CMD_REG_IDX, value); in timed_ctrl_snd_commnd() 52 hrt_data value) in timed_ctrl_snd_sp_commnd() argument 58 SP_DMEM_BASE[SP_ID] + offset, value); in timed_ctrl_snd_sp_commnd() 68 hrt_data value) in timed_ctrl_snd_gpio_commnd() argument 74 GPIO_BASE[GPIO_ID] + offset, value); in timed_ctrl_snd_gpio_commnd()
|
/openbmc/u-boot/arch/powerpc/include/asm/ |
H A D | byteorder.h | 42 static __inline__ __attribute__((const)) __u16 ___arch__swab16(__u16 value) in ___arch__swab16() argument 48 : "r" (value), "0" (value >> 8)); in ___arch__swab16() 52 static __inline__ __attribute__((const)) __u32 ___arch__swab32(__u32 value) in ___arch__swab32() argument 60 : "r" (value), "0" (value >> 24)); in ___arch__swab32()
|
/openbmc/phosphor-debug-collector/test/ |
H A D | debug_inif_test.cpp | 49 bool value = phosphor::dump::elog::deserialize(dumpFile.c_str(), e); in TEST_F() local 50 EXPECT_EQ(value, true); in TEST_F() 58 bool value = phosphor::dump::elog::deserialize(dumpFile.c_str(), e); in TEST_F() local 59 EXPECT_EQ(value, false); in TEST_F() 68 bool value = phosphor::dump::elog::deserialize("/tmp/Fake/serial", e); in TEST() local 69 EXPECT_EQ(value, false); in TEST()
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_map_in_map.c | 13 __type(value, __u32); 21 __type(value, __u32); 31 __type(value, __u32); 53 int value = 123; in xdp_mimtest0() local 62 bpf_map_update_elem(map, &key, &value, 0); in xdp_mimtest0() 71 bpf_map_update_elem(map, &key, &value, 0); in xdp_mimtest0()
|