Files
Linux_Drivers/u-boot-2021.10/doc/device-tree-bindings/remoteproc/k3-system-controller.txt
sam.xiang f8fc109960 [uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot
	commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91

Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
2023-03-10 20:30:57 +08:00

25 lines
734 B
Plaintext

Texas Instruments' K3 System Controller
=========================================
K3 specific SoCs have a dedicated microcontroller for doing
resource management. Any HLOS/firmware on compute clusters should
load a firmware to this microcontroller before accessing any resource.
This driver communicates with ROM for loading this firmware.
Required properties:
--------------------
- compatible: Shall be: "ti,am654-system-controller"
- mbox-names: "tx" for Transfer channel
"rx" for Receive channel
- mboxes: Corresponding phandles to mailbox channels.
Example:
--------
system-controller: system-controller {
compatible = "ti,am654-system-controller";
mboxes= <&secproxy 4>, <&secproxy 5>;
mbox-names = "tx", "rx";
};