GNU Linux-libre 6.8.9-gnu
[releases.git] / 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     };