Lokesh Vutla | 7eb1357 | 2018-08-27 15:57:51 +0530 | [diff] [blame^] | 1 | Texas Instruments' K3 System Controller |
| 2 | ========================================= |
| 3 | |
| 4 | K3 specific SoCs have a dedicated microcontroller for doing |
| 5 | resource management. Any HLOS/firmware on compute clusters should |
| 6 | load a firmware to this microcontroller before accessing any resource. |
| 7 | This driver communicates with ROM for loading this firmware. |
| 8 | |
| 9 | Required properties: |
| 10 | -------------------- |
| 11 | - compatible: Shall be: "ti,am654-system-controller" |
| 12 | - mbox-names: "tx" for Transfer channel |
| 13 | "rx" for Receive channel |
| 14 | - mboxes: Corresponding phandles to mailbox channels. |
| 15 | |
| 16 | |
| 17 | Example: |
| 18 | -------- |
| 19 | |
| 20 | system-controller: system-controller { |
| 21 | compatible = "ti,am654-system-controller"; |
| 22 | mboxes= <&secproxy 4>, <&secproxy 5>; |
| 23 | mbox-names = "tx", "rx"; |
| 24 | }; |