/openbmc/linux/drivers/misc/ |
H A D | qcom-coincell.c | 29 /* if enable==0, rset and vset are ignored */ 30 static int qcom_coincell_chgr_config(struct qcom_coincell *chgr, int rset, in qcom_coincell_chgr_config() argument 42 if (rset == qcom_rset_map[i]) in qcom_coincell_chgr_config() 46 dev_err(chgr->dev, "invalid rset-ohms value %d\n", rset); in qcom_coincell_chgr_config() 69 dev_err(chgr->dev, "could not write to RSET register\n"); in qcom_coincell_chgr_config() 88 u32 rset = 0; in qcom_coincell_probe() local 108 rc = of_property_read_u32(node, "qcom,rset-ohms", &rset); in qcom_coincell_probe() 111 "can't find 'qcom,rset-ohms' in DT block"); in qcom_coincell_probe() 123 return qcom_coincell_chgr_config(&chgr, rset, vset, enable); in qcom_coincell_probe()
|
/openbmc/linux/drivers/iio/light/ |
H A D | cm3605.c | 41 * @als_max: maximum LUX detection (depends on RSET) 161 u32 rset; in cm3605_probe() local 174 ret = device_property_read_u32(dev, "capella,aset-resistance-ohms", &rset); in cm3605_probe() 176 dev_info(dev, "no RSET specified, assuming 100K\n"); in cm3605_probe() 177 rset = 100000; in cm3605_probe() 179 switch (rset) { in cm3605_probe()
|
H A D | veml6070.c | 95 * the RSET pin (default: 270 KOhm) in veml6070_to_uv_index()
|
/openbmc/linux/crypto/ |
H A D | poly1305_generic.c | 28 dctx->rset = 0; in crypto_poly1305_init() 38 if (!dctx->rset && srclen >= POLY1305_BLOCK_SIZE) { in crypto_poly1305_setdesckey() 42 dctx->rset = 2; in crypto_poly1305_setdesckey()
|
/openbmc/linux/Documentation/devicetree/bindings/power/supply/ |
H A D | qcom,pm8941-coincell.yaml | 30 qcom,rset-ohms: 64 qcom,rset-ohms = <2100>;
|
/openbmc/linux/arch/powerpc/crypto/ |
H A D | poly1305-p10-glue.c | 43 dctx->rset = 0; in crypto_poly1305_p10_init() 55 if (!dctx->rset && len >= POLY1305_BLOCK_SIZE) { in crypto_poly1305_setdctxkey() 63 dctx->rset = 1; in crypto_poly1305_setdctxkey()
|
/openbmc/linux/arch/mips/crypto/ |
H A D | poly1305-glue.c | 36 dctx->rset = 0; in mips_poly1305_init() 46 if (!dctx->rset) { in mips_poly1305_blocks() 50 dctx->rset = 1; in mips_poly1305_blocks()
|
/openbmc/linux/Documentation/devicetree/bindings/leds/ |
H A D | skyworks,aat1290.yaml | 42 formula:: I = 1A * 162 kOhm / Rset. 77 // Ct = 220 nF, Rset = 160 kOhm
|
H A D | kinetic,ktd2692.yaml | 56 Formula - I(uA) = 15000000 / Rset.
|
/openbmc/linux/arch/arm64/crypto/ |
H A D | poly1305-glue.c | 44 dctx->rset = 0; in neon_poly1305_init() 54 if (!dctx->rset) { in neon_poly1305_blocks() 58 dctx->rset = 1; in neon_poly1305_blocks()
|
/openbmc/ipmitool/src/plugins/open/ |
H A D | open.c | 178 fd_set rset; in ipmi_openipmi_send_cmd() local 328 FD_ZERO(&rset); in ipmi_openipmi_send_cmd() 329 FD_SET(intf->fd, &rset); in ipmi_openipmi_send_cmd() 331 if (select(intf->fd+1, &rset, NULL, NULL, NULL) < 0) { in ipmi_openipmi_send_cmd() 339 if (FD_ISSET(intf->fd, &rset) == 0) { in ipmi_openipmi_send_cmd()
|
/openbmc/linux/arch/arm/crypto/ |
H A D | poly1305-glue.c | 48 dctx->rset = 0; in arm_poly1305_init() 58 if (!dctx->rset) { in arm_poly1305_blocks() 62 dctx->rset = 1; in arm_poly1305_blocks()
|
/openbmc/linux/include/crypto/ |
H A D | poly1305.h | 47 unsigned short rset; member
|
/openbmc/linux/lib/crypto/ |
H A D | poly1305.c | 26 desc->rset = 2; in poly1305_init_generic()
|
/openbmc/linux/arch/x86/crypto/ |
H A D | poly1305_glue.c | 149 if (!dctx->rset && len >= POLY1305_BLOCK_SIZE) { in crypto_poly1305_setdctxkey() 154 dctx->rset = 1; in crypto_poly1305_setdctxkey()
|
/openbmc/linux/net/nfc/hci/ |
H A D | llc_shdlc.c | 403 * We sent RSET, but chip wants to negotiate or we in llc_shdlc_rcv_u_frame() 404 * got RSET before we managed to send out our. in llc_shdlc_rcv_u_frame() 423 * Chip resent RSET due to its timeout - Ignote it in llc_shdlc_rcv_u_frame()
|
/openbmc/qemu/tests/qtest/libqos/ |
H A D | ahci.c | 1261 #define RSET(REG, MASK) (BITSET(ahci_px_rreg(ahci, cmd->port, (REG)), (MASK))) in ahci_command_wait() macro 1263 while (!RSET(AHCI_PX_TFD, AHCI_PX_TFD_STS_ERR) && in ahci_command_wait() 1264 (RSET(AHCI_PX_TFD, AHCI_PX_TFD_STS_BSY) || in ahci_command_wait() 1265 RSET(AHCI_PX_CI, 1 << cmd->slot) || in ahci_command_wait() 1266 (cmd->props->ncq && RSET(AHCI_PX_SACT, 1 << cmd->slot)))) { in ahci_command_wait()
|
/openbmc/linux/fs/reiserfs/ |
H A D | fix_node.c | 789 if (rset==RIGHT_SHIFT_FLOW)\ 790 set_parameters (tb, h, 0, rpar, rnver, snum012+rset,\ 793 set_parameters (tb, h, 0, rpar - (tb->rbytes!=-1), rnver, snum012+rset,\ 1489 int lpar, rpar, nset, lset, rset, lrset; in ip_check_balance() local 1496 * nset, lset, rset, lrset - shows, whether flowing items in ip_check_balance() 1574 rset = RIGHT_SHIFT_NO_FLOW; in ip_check_balance() 1594 rset = RIGHT_SHIFT_FLOW, rnver = rnver1; in ip_check_balance()
|
/openbmc/linux/arch/arm/boot/dts/qcom/ |
H A D | qcom-msm8974pro-oneplus-bacon.dts | 167 qcom,rset-ohms = <800>;
|
H A D | qcom-msm8974-sony-xperia-rhine.dtsi | 137 qcom,rset-ohms = <2100>;
|
H A D | qcom-msm8974pro-sony-xperia-shinano-castor.dts | 220 qcom,rset-ohms = <2100>;
|
/openbmc/linux/drivers/media/i2c/ |
H A D | s5k5baf.c | 232 RSET, enumerator 962 s5k5baf_gpio_deassert(state, RSET); in s5k5baf_power_on() 980 s5k5baf_gpio_assert(state, RSET); in s5k5baf_power_off()
|
/openbmc/linux/drivers/net/wireless/microchip/wilc1000/ |
H A D | wlan_if.h | 252 * Configuration : HighPerf Compat(RSet #1) Compat(RSet #2)
|
/openbmc/linux/drivers/fsi/ |
H A D | fsi-sbefifo.c | 117 #define SBEFIFO_RESET_MAGIC 0x52534554 /* "RSET" */
|
/openbmc/linux/drivers/net/ethernet/realtek/ |
H A D | r8169_phy_config.c | 492 /* RSET couple improve */ in rtl8168d_1_hw_phy_config()
|