3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-19 05:35:53 +00:00
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05: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";
};