xref: /freebsd/sys/contrib/device-tree/Bindings/mfd/ampere,smpro.yaml (revision 8bab661a3316d8bd9b9fbd11a3b4371b91507bd2)
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/mfd/ampere,smpro.yaml#
5*8bab661aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*8bab661aSEmmanuel Vadot
7*8bab661aSEmmanuel Vadottitle: Ampere Altra SMPro firmware driver
8*8bab661aSEmmanuel Vadot
9*8bab661aSEmmanuel Vadotmaintainers:
10*8bab661aSEmmanuel Vadot  - Quan Nguyen <quan@os.amperecomputing.com>
11*8bab661aSEmmanuel Vadot
12*8bab661aSEmmanuel Vadotdescription: |
13*8bab661aSEmmanuel Vadot  Ampere Altra SMPro firmware may contain different blocks like hardware
14*8bab661aSEmmanuel Vadot  monitoring, error monitoring and other miscellaneous features.
15*8bab661aSEmmanuel Vadot
16*8bab661aSEmmanuel Vadotproperties:
17*8bab661aSEmmanuel Vadot  compatible:
18*8bab661aSEmmanuel Vadot    enum:
19*8bab661aSEmmanuel Vadot      - ampere,smpro
20*8bab661aSEmmanuel Vadot
21*8bab661aSEmmanuel Vadot  reg:
22*8bab661aSEmmanuel Vadot    description:
23*8bab661aSEmmanuel Vadot      I2C device address.
24*8bab661aSEmmanuel Vadot    maxItems: 1
25*8bab661aSEmmanuel Vadot
26*8bab661aSEmmanuel Vadotrequired:
27*8bab661aSEmmanuel Vadot  - compatible
28*8bab661aSEmmanuel Vadot  - reg
29*8bab661aSEmmanuel Vadot
30*8bab661aSEmmanuel VadotadditionalProperties: false
31*8bab661aSEmmanuel Vadot
32*8bab661aSEmmanuel Vadotexamples:
33*8bab661aSEmmanuel Vadot  - |
34*8bab661aSEmmanuel Vadot    i2c {
35*8bab661aSEmmanuel Vadot        #address-cells = <1>;
36*8bab661aSEmmanuel Vadot        #size-cells = <0>;
37*8bab661aSEmmanuel Vadot
38*8bab661aSEmmanuel Vadot        smpro@4f {
39*8bab661aSEmmanuel Vadot            compatible = "ampere,smpro";
40*8bab661aSEmmanuel Vadot            reg = <0x4f>;
41*8bab661aSEmmanuel Vadot        };
42*8bab661aSEmmanuel Vadot    };
43