blob: 33dc46812ed4e292076d694d812014a2d5b987fe [file] [log] [blame]
Lokesh Vutla7eb13572018-08-27 15:57:51 +05301Texas Instruments' K3 System Controller
2=========================================
3
4K3 specific SoCs have a dedicated microcontroller for doing
5resource management. Any HLOS/firmware on compute clusters should
6load a firmware to this microcontroller before accessing any resource.
7This driver communicates with ROM for loading this firmware.
8
9Required 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
Nishanth Menondd050c42022-01-25 20:56:27 +053016Optional properties:
17--------------------
18- mbox-names: "boot_notify" for Optional alternate boot notification channel.
Lokesh Vutla7eb13572018-08-27 15:57:51 +053019
20Example:
21--------
22
23system-controller: system-controller {
24 compatible = "ti,am654-system-controller";
25 mboxes= <&secproxy 4>, <&secproxy 5>;
26 mbox-names = "tx", "rx";
27};