brintos

brintos / linux-shallow public Read only

0
0
Text · 933 B · 422becc Raw
45 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/w1/maxim,ds2482.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Maxim One wire bus master controller8 9maintainers:10  - Stefan Wahren <stefan.wahren@chargebyte.com>11 12description: |13  I2C to 1-wire bridges14 15  https://www.analog.com/media/en/technical-documentation/data-sheets/ds2482-100.pdf16  https://www.analog.com/media/en/technical-documentation/data-sheets/DS2482-800.pdf17  https://www.analog.com/media/en/technical-documentation/data-sheets/DS2484.pdf18 19properties:20  compatible:21    enum:22      - maxim,ds248223      - maxim,ds248424 25  reg:26    maxItems: 127 28required:29  - compatible30  - reg31 32additionalProperties:33  type: object34 35examples:36  - |37    i2c {38      #address-cells = <1>;39      #size-cells = <0>;40      onewire@18 {41        compatible = "maxim,ds2484";42        reg = <0x18>;43      };44    };45