Part Number: PROCESSOR-SDK-DRA8X-TDA4X
Hello
Could you guide how to use QT & wayland in VissionApp?
Thanks in advance,
Wilson.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: PROCESSOR-SDK-DRA8X-TDA4X
Hello
Could you guide how to use QT & wayland in VissionApp?
Thanks in advance,
Wilson.
There is some issue with the system - test reply to see if I can post a response.
Posting a response from my colleague Kedar:
To enable disaplay on A72 do the following:
&serdes_wiz4 { status = "disabled"; }; &mhdp { status = "disabled"; }; &dss { status = "disabled"; }; &main_i2c1 { status = "disabled"; };
Regards
Kedar
Hi Kedar,
Thanks for detail guide.
I can run wayland with DP direct connection, but DP to HDMI convert is not working.
In RTOS display mode, Board_setHDMIMux() & Board_setHDMIPdHigh() solved DP to HDMI issue. What is equivalent function in Linux?
Thanks and regards,
Wilson.
Hi Wilson,
In order to enable DP to HDMI adapter, we need to set pin0 to level high on io expander (i2c addr 0x20) available on i2c instance 1. I think even if we are able to set it from application, just once, it should be fine.
I am trying to see if "i2cset" utility can be used for it. I am checking it and will get back to you as soon as possible.
Regards,
Brijesh
Hi Wilson,
Since the same the i2c instance is also being used for the other clients, for example, it is also used for configuring board muxes for ethernet firmware, i would suggest to get it configured by the mcu r5f firmware itself..
Regards,
Brijesh
Brijesh,
Thanks for keep attention. My problem was on D3's RVP board and solved. Linux SYSFS provides simple GPIO control interface.
DP power can be enabled in RVP by "echo 460 > /sys/class/gpio/export; echo "out" > /sys/class/gpio/gpio460/direction; echo 1 > /sys/class/gpio/gpio460/value".
I guess EVM also can be controlled similarly.
You can close this post.
Thanks and regards,
Wilson.
On J721S2, addition to disabling SERDES, please also disable i2c4 in the k3-j721s2-rtos-memory-map.dtsi file, as shown below.
&main_i2c1 {
status = "disabled";
};
/*
&main_i2c4 {
status = "disabled";
};
*/
&main_i2c5 {
status = "disabled";
};
/*
&serdes_wiz0 {
status = "disabled";
};
*/
Regards,
Brijesh