u-boot/doc/device-tree-bindings/remoteproc/k3-system-controller.txt
Nishanth Menon 473bd5aee1 remoteproc: k3_system_controller: Support optional boot_notification channel
If there is an optional boot notification channel that an SoC uses
separate from the rx path, use the same.

Signed-off-by: Nishanth Menon <nm@ti.com>
2022-02-08 09:41:26 -05:00

27 lines
855 B
Text

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.
Optional properties:
--------------------
- mbox-names: "boot_notify" for Optional alternate boot notification channel.
Example:
--------
system-controller: system-controller {
compatible = "ti,am654-system-controller";
mboxes= <&secproxy 4>, <&secproxy 5>;
mbox-names = "tx", "rx";
};