Searched +full:sc +full:- +full:ovp +full:- +full:limit +full:- +full:microvolt (Results 1 – 3 of 3) sorted by relevance
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/power/supply/ |
| H A D | bq25980.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 4 --- 6 $schema: "http://devicetree.org/meta-schemas/core.yaml#" 11 - Dan Murphy <dmurphy@ti.com> 12 - Ricardo Rivera-Matos <r-rivera-matos@ti.com> 16 for use in high-power density portable electronics. These inductorless 21 - $ref: power-supply.yaml# 26 - ti,bq25980 27 - ti,bq25975 28 - ti,bq25960 [all …]
|
| H A D | sc8551_charger.txt | 4 - compatible: "sc,sc8551-standalone" for sc8551 Charger Power Supply 5 - monitored-battery: phandle of battery characteristics devicetree node 6 - interrupts: Interrupt mapping for GPIO IRQ. Use in conjunction with 7 "interrupt-parent". If an interrupt is not provided the driver will switch 10 - input-voltage-limit-microvolt: integer, input voltage level in uV, used to 13 - input-current-limit-microamp: integer, input current value in uA drained by the 16 - sc,sc8551,bat-ovp-disable: enable the battery over voltage protection 17 - sc,sc8551,bat-ocp-disable: enable the battery over current protection 18 - sc,sc8551,bus-ocp-disable: enable the bus over voltage protection 19 - sc,sc8551,bat-ovp-threshold: Configures the battery over voltage protection voltage (in uV). [all …]
|
| /OK3568_Linux_fs/kernel/drivers/power/supply/ |
| H A D | bq25980_charger.c | 1 // SPDX-License-Identifier: GPL-2.0 3 // Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/ 24 bool ovp; member 280 ret = regmap_read(bq->regmap, BQ25980_BUSOCP, &busocp_reg_code); in bq25980_get_input_curr_lim() 289 return regmap_update_bits(bq->regmap, BQ25980_CHRGR_CTRL_2, in bq25980_set_hiz() 306 if (bq->state.bypass) in bq25980_set_input_curr_lim() 307 busocp = min(busocp, bq->chip_info->busocp_sc_max); in bq25980_set_input_curr_lim() 309 busocp = min(busocp, bq->chip_info->busocp_byp_max); in bq25980_set_input_curr_lim() 311 busocp_reg_code = (busocp - BQ25980_BUSOCP_OFFSET_uA) in bq25980_set_input_curr_lim() 314 ret = regmap_write(bq->regmap, BQ25980_BUSOCP, busocp_reg_code); in bq25980_set_input_curr_lim() [all …]
|