1 # SPDX-License-Identifier: GPL-2.0 2 # Copyright (C) 2021 Sebastian Reichel 3 %YAML 1.2 4 --- 5 $id: http://devicetree.org/schemas/power/suppl 6 $schema: http://devicetree.org/meta-schemas/co 7 8 title: Motorola CPCAP PMIC charger 9 10 maintainers: 11 - Tony Lindgren <tony@atomide.com> 12 - Sebastian Reichel <sre@kernel.org> 13 14 description: | 15 Motorola CPCAP is a PMIC found in some mobil 16 the Droid 4. This binding describes its batt 17 sub-function. 18 19 allOf: 20 - $ref: power-supply.yaml# 21 22 properties: 23 compatible: 24 const: motorola,mapphone-cpcap-charger 25 26 interrupts: 27 items: 28 - description: charger detection interru 29 - description: reverse charge interrupt 30 - description: SE1 charger detection int 31 - description: SE0 charger detection int 32 - description: reverse mode interrupt 33 - description: charge current 2 interrup 34 - description: charge current 1 interrup 35 - description: VBUS valid interrupt 36 - description: battery detect interrupt 37 38 interrupt-names: 39 items: 40 - const: chrg_det 41 - const: rvrs_chrg 42 - const: chrg_se1b 43 - const: se0conn 44 - const: rvrs_mode 45 - const: chrgcurr2 46 - const: chrgcurr1 47 - const: vbusvld 48 - const: battdetb 49 50 io-channels: 51 items: 52 - description: battery temperature 53 - description: battery voltage 54 - description: VBUS voltage 55 - description: battery charge current 56 - description: battery current 57 58 io-channel-names: 59 items: 60 - const: battdetb 61 - const: battp 62 - const: vbus 63 - const: chg_isense 64 - const: batti 65 66 mode-gpios: 67 description: | 68 Optionally CPCAP charger can have a comp 69 charge controller that is controlled wit 70 that are active low. 71 minItems: 2 72 maxItems: 2 73 74 required: 75 - compatible 76 - interrupts 77 - interrupt-names 78 - io-channels 79 - io-channel-names 80 81 additionalProperties: false 82 83 examples: 84 - | 85 #include <dt-bindings/gpio/gpio.h> 86 cpcap { 87 charger { 88 compatible = "motorola,mapphone-cpcap- 89 interrupts-extended = 90 <&cpcap 13 0>, <&cpcap 12 0>, 91 <&cpcap 22 0>, <&cpcap 21 0>, 92 <&cpcap 54 0>; 93 interrupt-names = 94 "chrg_det", "rvrs_chrg", "chrg 95 "rvrs_mode", "chrgcurr2", "chr 96 "battdetb"; 97 mode-gpios = <&gpio3 29 GPIO_ACTIVE_LO 98 <&gpio3 23 GPIO_ACTIVE_LO 99 io-channels = <&cpcap_adc 0>, <&cpcap_ 100 <&cpcap_adc 2>, <&cpcap_ 101 <&cpcap_adc 6>; 102 io-channel-names = "battdetb", "battp" 103 "vbus", "chg_isense 104 "batti"; 105 }; 106 };
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.