upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
734 B
24 lines
734 B
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";
|
|
};
|
|
|