1Texas 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
16
17Example:
18--------
19
20system-controller: system-controller {
21	compatible = "ti,am654-system-controller";
22	mboxes= <&secproxy 4>, <&secproxy 5>;
23	mbox-names = "tx", "rx";
24};
25