···11+System Power Management Interface (SPMI) Controller22+33+This document defines a generic set of bindings for use by SPMI controllers. A44+controller is modelled in device tree as a node with zero or more child nodes,55+each representing a unique slave on the bus.66+77+Required properties:88+- #address-cells : must be set to 299+- #size-cells : must be set to 01010+1111+Child nodes:1212+1313+An SPMI controller node can contain zero or more child nodes representing slave1414+devices on the bus. Child 'reg' properties are specified as an address, type1515+pair. The address must be in the range 0-15 (4 bits). The type must be one of1616+SPMI_USID (0) or SPMI_GSID (1) for Unique Slave ID or Group Slave ID respectively.1717+These are the identifiers "statically assigned by the system integrator", as1818+per the SPMI spec.1919+2020+Each child node must have one and only one 'reg' entry of type SPMI_USID.2121+2222+#include <dt-bindings/spmi/spmi.h>2323+2424+ spmi@.. {2525+ compatible = "...";2626+ reg = <...>;2727+2828+ #address-cells = <2>;2929+ #size-cells <0>;3030+3131+ child@0 {3232+ compatible = "...";3333+ reg = <0 SPMI_USID>;3434+ };3535+3636+ child@7 {3737+ compatible = "...";3838+ reg = <7 SPMI_USID3939+ 3 SPMI_GSID>;4040+ };4141+ };