ti,sci-reset.yaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/reset/ti,sci-reset.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: TI-SCI reset controller
  7. maintainers:
  8. - Nishanth Menon <nm@ti.com>
  9. description: |
  10. Some TI SoCs contain a system controller (like the Power Management Micro
  11. Controller (PMMC) on Keystone 66AK2G SoC) that are responsible for controlling
  12. the state of the various hardware modules present on the SoC. Communication
  13. between the host processor running an OS and the system controller happens
  14. through a protocol called TI System Control Interface (TI-SCI protocol).
  15. This reset controller node uses the TI SCI protocol to perform the reset
  16. management of various hardware modules present on the SoC. Must be a child
  17. node of the associated TI-SCI system controller node.
  18. properties:
  19. $nodename:
  20. pattern: "^reset-controller$"
  21. compatible:
  22. const: ti,sci-reset
  23. "#reset-cells":
  24. const: 2
  25. description:
  26. The two cells represent values that the TI-SCI controller defines.
  27. The first cell should contain the device ID.
  28. The second cell should contain the reset mask corresponding to the device
  29. used by system controller.
  30. Please see https://software-dl.ti.com/tisci/esd/latest/index.html for
  31. protocol documentation for the values to be used for different devices.
  32. additionalProperties: false
  33. examples:
  34. - |
  35. k3_reset: reset-controller {
  36. compatible = "ti,sci-reset";
  37. #reset-cells = <2>;
  38. };