brcm,bcm63xx-power.yaml 1010 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/power/brcm,bcm63xx-power.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: BCM63xx power domain driver
  7. maintainers:
  8. - Álvaro Fernández Rojas <noltari@gmail.com>
  9. description: |
  10. BCM6318, BCM6328, BCM6362 and BCM63268 SoCs have a power domain controller
  11. to enable/disable certain components in order to save power.
  12. properties:
  13. compatible:
  14. items:
  15. - enum:
  16. - brcm,bcm6318-power-controller
  17. - brcm,bcm6328-power-controller
  18. - brcm,bcm6362-power-controller
  19. - brcm,bcm63268-power-controller
  20. reg:
  21. maxItems: 1
  22. "#power-domain-cells":
  23. const: 1
  24. required:
  25. - compatible
  26. - reg
  27. - "#power-domain-cells"
  28. additionalProperties: false
  29. examples:
  30. - |
  31. periph_pwr: power-controller@10001848 {
  32. compatible = "brcm,bcm6328-power-controller";
  33. reg = <0x10001848 0x4>;
  34. #power-domain-cells = <1>;
  35. };