xref: /freebsd/sys/contrib/device-tree/Bindings/embedded-controller/traverse,ten64-controller.yaml (revision 96fb1ebd28756790597f73ad25306f58f558be97)
1*96fb1ebdSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*96fb1ebdSEmmanuel Vadot%YAML 1.2
3*96fb1ebdSEmmanuel Vadot---
4*96fb1ebdSEmmanuel Vadot$id: http://devicetree.org/schemas/embedded-controller/traverse,ten64-controller.yaml#
5*96fb1ebdSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*96fb1ebdSEmmanuel Vadot
7*96fb1ebdSEmmanuel Vadottitle: Traverse Ten64 board microcontroller
8*96fb1ebdSEmmanuel Vadot
9*96fb1ebdSEmmanuel Vadotmaintainers:
10*96fb1ebdSEmmanuel Vadot  - Mathew McBride <matt@traverse.com.au>
11*96fb1ebdSEmmanuel Vadot
12*96fb1ebdSEmmanuel Vadotdescription: |
13*96fb1ebdSEmmanuel Vadot  The board microcontroller on the Ten64 board family is responsible for
14*96fb1ebdSEmmanuel Vadot  management of power sources on the board, as well as signalling the SoC
15*96fb1ebdSEmmanuel Vadot  to power on and reset.
16*96fb1ebdSEmmanuel Vadot
17*96fb1ebdSEmmanuel Vadotproperties:
18*96fb1ebdSEmmanuel Vadot  compatible:
19*96fb1ebdSEmmanuel Vadot    const: traverse,ten64-controller
20*96fb1ebdSEmmanuel Vadot
21*96fb1ebdSEmmanuel Vadot  reg:
22*96fb1ebdSEmmanuel Vadot    const: 0x7e
23*96fb1ebdSEmmanuel Vadot
24*96fb1ebdSEmmanuel Vadotrequired:
25*96fb1ebdSEmmanuel Vadot  - compatible
26*96fb1ebdSEmmanuel Vadot  - reg
27*96fb1ebdSEmmanuel Vadot
28*96fb1ebdSEmmanuel VadotadditionalProperties: false
29*96fb1ebdSEmmanuel Vadot
30*96fb1ebdSEmmanuel Vadotexamples:
31*96fb1ebdSEmmanuel Vadot  - |
32*96fb1ebdSEmmanuel Vadot    i2c {
33*96fb1ebdSEmmanuel Vadot        #address-cells = <1>;
34*96fb1ebdSEmmanuel Vadot        #size-cells = <0>;
35*96fb1ebdSEmmanuel Vadot
36*96fb1ebdSEmmanuel Vadot        board-controller@7e {
37*96fb1ebdSEmmanuel Vadot            compatible = "traverse,ten64-controller";
38*96fb1ebdSEmmanuel Vadot            reg = <0x7e>;
39*96fb1ebdSEmmanuel Vadot        };
40*96fb1ebdSEmmanuel Vadot    };
41