1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
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 controller
8
9maintainers:
10  - Stefan Wahren <[email protected]>
11
12description: |
13  I2C to 1-wire bridges
14
15  https://www.analog.com/media/en/technical-documentation/data-sheets/ds2482-100.pdf
16  https://www.analog.com/media/en/technical-documentation/data-sheets/DS2482-800.pdf
17  https://www.analog.com/media/en/technical-documentation/data-sheets/DS2484.pdf
18
19properties:
20  compatible:
21    enum:
22      - maxim,ds2482
23      - maxim,ds2484
24
25  reg:
26    maxItems: 1
27
28  vcc-supply: true
29
30required:
31  - compatible
32  - reg
33
34additionalProperties:
35  type: object
36
37examples:
38  - |
39    i2c {
40      #address-cells = <1>;
41      #size-cells = <0>;
42      onewire@18 {
43        compatible = "maxim,ds2484";
44        reg = <0x18>;
45      };
46    };
47