Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: embedded-controller: add Traverse Ten64 board controller

Add device tree binding for the board (micro)controller on Ten64 family
boards[1].

The schema is simple and is (presently) only consumed by U-Boot, but it
is possible nvmem, watchdog and other features could be described in
the future, as well as extension to future Traverse boards.

[1] https://ten64doc.traverse.com.au/hardware/microcontroller/

Signed-off-by: Mathew McBride <matt@traverse.com.au>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>

authored by

Mathew McBride and committed by
Shawn Guo
e260e811 f679e54e

+40
+40
Documentation/devicetree/bindings/embedded-controller/traverse,ten64-controller.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/embedded-controller/traverse,ten64-controller.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Traverse Ten64 board microcontroller 8 + 9 + maintainers: 10 + - Mathew McBride <matt@traverse.com.au> 11 + 12 + description: | 13 + The board microcontroller on the Ten64 board family is responsible for 14 + management of power sources on the board, as well as signalling the SoC 15 + to power on and reset. 16 + 17 + properties: 18 + compatible: 19 + const: traverse,ten64-controller 20 + 21 + reg: 22 + const: 0x7e 23 + 24 + required: 25 + - compatible 26 + - reg 27 + 28 + additionalProperties: false 29 + 30 + examples: 31 + - | 32 + i2c { 33 + #address-cells = <1>; 34 + #size-cells = <0>; 35 + 36 + board-controller@7e { 37 + compatible = "traverse,ten64-controller"; 38 + reg = <0x7e>; 39 + }; 40 + };