mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 02:38:56 +00:00
473bd5aee1
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>
27 lines
855 B
Text
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";
|
|
};
|