]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm64: zynqmp: Enable DP driver for SOMs
authorMichal Simek <michal.simek@xilinx.com>
Wed, 23 Feb 2022 15:17:41 +0000 (16:17 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Mon, 7 Mar 2022 15:33:47 +0000 (16:33 +0100)
The main reason is to send pmufw cfg overlay from U-Boot to PMUFW to enable
access to DP. Overlay is sent when cls command is called and for that IP
has to be enabled in carrier cards.
And IP needs to be also enabled in SOM dt because with DTB reselection new
DT is not parsed in pre reloc U-Boot instance. It is called from board_f
via embedded_dtb_select(). That's why bind function is not able to allocate
memory and it ends up with error:
"Video device 'display@fd4a0000' cannot allocate frame buffer memory
-ensure the device is set up before relocation"

To avoid this situation DP is placed also to SOM where bind function is
called and frame buffer memory is allocated and just reused after DTB
reselection. Result is the same. There could be a problem in Linux with
different DP configurations but that's need to be solved there because
console should be on from u-boot already.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/c4f31641f917fddb09d976f56875057c658f264c.1645629459.git.michal.simek@xilinx.com
arch/arm/dts/zynqmp-sck-kv-g-revB.dts
arch/arm/dts/zynqmp-sm-k26-revA.dts

index 6ea950a13f4568dcc8edc265b362557230f956d8..28a3f3c219926988e58374e649871ca4c67929d0 100644 (file)
@@ -92,7 +92,7 @@
 };
 
 &zynqmp_dpsub {
-       status = "disabled";
+       status = "okay";
        phy-names = "dp-phy0", "dp-phy1";
        phys = <&psgtr 1 PHY_TYPE_DP 0 0>, <&psgtr 0 PHY_TYPE_DP 1 0>;
        assigned-clock-rates = <27000000>, <25000000>, <300000000>;
index e9baf4cb4148ef4e29cd2fcc69b9b9dbf46d40c9..d242f8712b84e5f3e3175e8464018f146ea85a36 100644 (file)
 &ams_pl {
        status = "okay";
 };
+
+&zynqmp_dpsub {
+       status = "okay";
+};