cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

dlg,da9150-gpadc.yaml (695B)


      1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
      2%YAML 1.2
      3---
      4$id: http://devicetree.org/schemas/iio/adc/dlg,da9150-gpadc.yaml#
      5$schema: http://devicetree.org/meta-schemas/core.yaml#
      6
      7title: Dialog Semiconductor DA9150 IIO GPADC
      8
      9maintainers:
     10  - Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
     11
     12description:
     13  This patch adds support for general purpose ADC within the
     14  DA9150 Charger & Fuel-Gauge IC.
     15
     16properties:
     17  compatible:
     18    const: dlg,da9150-gpadc
     19
     20  "#io-channel-cells":
     21    const: 1
     22
     23required:
     24  - compatible
     25  - "#io-channel-cells"
     26
     27additionalProperties: false
     28
     29examples:
     30  - |
     31    adc {
     32        compatible = "dlg,da9150-gpadc";
     33        #io-channel-cells = <1>;
     34    };
     35...