blob: 02b662d780bbbd1d806e34fb635fb6284b7bade5 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# 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
7title: SSIF IPMI BMC interface
8
9description: SSIF IPMI BMC device bindings
10
11maintainers:
12 - Quan Nguyen <quan@os.amperecomputing.com>
13
14properties:
15 compatible:
16 enum:
17 - ssif-bmc
18
19 reg:
20 maxItems: 1
21
22required:
23 - compatible
24 - reg
25
26additionalProperties: false
27
28examples:
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 };