brintos

brintos / linux-shallow public Read only

0
0
Text · 928 B · 2c5032b Raw
51 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/adc/nxp,lpc3220-adc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NXP LPC3220 SoC ADC controller8 9maintainers:10  - Gregory Clement <gregory.clement@bootlin.com>11 12description:13  This hardware block has been used on several LPC32XX SoCs.14 15properties:16  compatible:17    const: nxp,lpc3220-adc18 19  reg:20    maxItems: 121 22  interrupts:23    maxItems: 124 25  vref-supply: true26 27  "#io-channel-cells":28    const: 129 30required:31  - compatible32  - reg33  - interrupts34 35additionalProperties: false36 37examples:38  - |39    soc {40        #address-cells = <1>;41        #size-cells = <1>;42        adc@40048000 {43            compatible = "nxp,lpc3220-adc";44            reg = <0x40048000 0x1000>;45            interrupt-parent = <&mic>;46            interrupts = <39 0>;47            vref-supply = <&vcc>;48        };49    };50...51