-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings:iio:adc:motorola,cpcap-adc yaml conversion
Conversion from txt to yaml. Slightly expanded example to give a bit more context. Description lifted from the original driver commit. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Rob Herring <robh@kernel.org> Cc: Tony Lindgren <tony@atomide.com> Link: https://lore.kernel.org/r/20200909175946.395313-12-jic23@kernel.org
- Loading branch information
Jonathan Cameron
authored and
Jonathan Cameron
committed
Sep 21, 2020
1 parent
45f90fe
commit 1ca9d1b
Showing
2 changed files
with
53 additions
and
17 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
53 changes: 53 additions & 0 deletions
53
Documentation/devicetree/bindings/iio/adc/motorola,cpcap-adc.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/iio/adc/motorola,cpcap-adc.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Motorola CPCAP PMIC ADC binding | ||
|
||
maintainers: | ||
- Tony Lindgren <tony@atomide.com> | ||
|
||
description: | ||
On Motorola phones like droid 4 there is a custom CPCAP PMIC. This PMIC | ||
has ADCs that are used for battery charging and USB PHY VBUS and ID pin | ||
detection. | ||
|
||
properties: | ||
compatible: | ||
enum: | ||
- motorola,cpcap-adc | ||
- motorola,mapphone-cpcap-adc | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
interrupt-names: | ||
const: adcdone | ||
|
||
"#io-channel-cells": | ||
const: 1 | ||
|
||
required: | ||
- compatible | ||
- interrupts | ||
- "#io-channel-cells" | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
pmic { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
adc { | ||
compatible = "motorola,mapphone-cpcap-adc"; | ||
interrupt-parent = <&cpcap>; | ||
interrupts = <8 IRQ_TYPE_NONE>; | ||
interrupt-names = "adcdone"; | ||
#io-channel-cells = <1>; | ||
}; | ||
}; | ||
... |