From ecf00ab44afe386f11d3b41c94fc27fa1349a468 Mon Sep 17 00:00:00 2001 From: liyuting Date: Tue, 14 May 2024 10:36:44 +0800 Subject: [PATCH] dt-bindings: ipmi: Add bindings for Phytium BT This patch documents the DT bindings for Phytium BT interface. Signed-off-by: Li Yuting Signed-off-by: Chen Baozi Signed-off-by: Wang Yinfeng --- .../bindings/ipmi/phytium,bt-bmc.yaml | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Documentation/devicetree/bindings/ipmi/phytium,bt-bmc.yaml diff --git a/Documentation/devicetree/bindings/ipmi/phytium,bt-bmc.yaml b/Documentation/devicetree/bindings/ipmi/phytium,bt-bmc.yaml new file mode 100644 index 0000000000000..8b62bb0eddfad --- /dev/null +++ b/Documentation/devicetree/bindings/ipmi/phytium,bt-bmc.yaml @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/ipmi/phytium,bt-bmc.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Phytium BT (Block Transfer) IPMI interface + +maintainers: + - Chen Baozi + +description: | + The Phytium E-series SOCs can be used in BMC which may have a BT + interface used to perform in-band IPMI communication with their host. + +properties: + compatible: + const: phytium,bt-bmc + + interrupts: + maxItems: 1 + + reg: + maxItems: 1 + +required: + - compatible + - interrupts + - reg + +additionalProperties: false + +examples: + - | + bt: bt@250 { + compatible = "phytium,bt-bmc"; + reg = <0x250 0x1c>; + interrupts = ; + };