Lines Matching +full:pmic +full:- +full:specific
1 // SPDX-License-Identifier: GPL-2.0-only
3 * pmic-cpcap.c - CPCAP-specific functions for the OPP code
21 * omap_cpcap_vsel_to_uv - convert CPCAP VSEL value to microvolts DC
24 * Returns: the microvolts DC that the CPCAP PMIC should generate when
35 * omap_cpcap_uv_to_vsel - convert microvolts DC to CPCAP VSEL value
38 * Returns: the VSEL value necessary for the CPCAP PMIC to
47 return DIV_ROUND_UP(uv - 600000, 12500); in omap_cpcap_uv_to_vsel()
85 * omap_max8952_vsel_to_uv - convert MAX8952 VSEL value to microvolts DC
99 * omap_max8952_uv_to_vsel - convert microvolts DC to MAX8952 VSEL value
111 return DIV_ROUND_UP(uv - 770000, 10000); in omap_max8952_uv_to_vsel()
132 * omap_fan535503_vsel_to_uv - convert FAN535503 VSEL value to microvolts DC
147 * omap_fan535508_vsel_to_uv - convert FAN535508 VSEL value to microvolts DC
165 * omap_fan535503_uv_to_vsel - convert microvolts DC to FAN535503 VSEL value
179 vsel = DIV_ROUND_UP(uv - 750000, 12500); in omap_fan535503_uv_to_vsel()
184 * omap_fan535508_uv_to_vsel - convert microvolts DC to FAN535508 VSEL value
198 vsel = DIV_ROUND_UP(uv - 750000, 12500); in omap_fan535508_uv_to_vsel()
202 /* fan5335-core */
243 return -ENODEV; in omap4_cpcap_init()
248 if (of_machine_is_compatible("motorola,droid-bionic")) { in omap4_cpcap_init()