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