Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / ipmi / ssif-bmc.yaml
blob02b662d780bbbd1d806e34fb635fb6284b7bade5
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#
7 title: SSIF IPMI BMC interface
9 description: SSIF IPMI BMC device bindings
11 maintainers:
12   - Quan Nguyen <quan@os.amperecomputing.com>
14 properties:
15   compatible:
16     enum:
17       - ssif-bmc
19   reg:
20     maxItems: 1
22 required:
23   - compatible
24   - reg
26 additionalProperties: false
28 examples:
29   - |
30     i2c {
31         #address-cells = <1>;
32         #size-cells = <0>;
34         ssif-bmc@10 {
35             compatible = "ssif-bmc";
36             reg = <0x10>;
37         };
38     };