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

bindings: ipmi: Add binding for SSIF BMC driver

Add device tree binding document for the SSIF BMC driver.

Signed-off-by: Quan Nguyen <quan@os.amperecomputing.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Message-Id: <20221004093106.1653317-3-quan@os.amperecomputing.com>
Signed-off-by: Corey Minyard <cminyard@mvista.com>

authored by

Quan Nguyen and committed by
Corey Minyard
c25c782d dd2bc5cc

+38
+38
Documentation/devicetree/bindings/ipmi/ssif-bmc.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/ipmi/ssif-bmc.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: SSIF IPMI BMC interface 8 + 9 + description: SSIF IPMI BMC device bindings 10 + 11 + maintainers: 12 + - Quan Nguyen <quan@os.amperecomputing.com> 13 + 14 + properties: 15 + compatible: 16 + enum: 17 + - ssif-bmc 18 + 19 + reg: 20 + maxItems: 1 21 + 22 + required: 23 + - compatible 24 + - reg 25 + 26 + additionalProperties: false 27 + 28 + examples: 29 + - | 30 + i2c { 31 + #address-cells = <1>; 32 + #size-cells = <0>; 33 + 34 + ssif-bmc@10 { 35 + compatible = "ssif-bmc"; 36 + reg = <0x10>; 37 + }; 38 + };