we designed a custom hostboard with an SSD connected via mSATA. When we got everything working correctly, we started to clean up the devicetree file to get rid off error messages during boot.
We also wanted to disable the framebuffer, since there is no display interface on the board:
&ldb {
status = "disabled";
};
&mxcfb1 {
status = "disabled";
};
As soon as we did that, the SSD was no longer showing up after boot. The sata controller is showing up correctly. Is there some shared clock or anything, that we have to enable, when the framebuffer is disabled?
Hi @andrecurvello.tx,
it is BSP 2.8b6 (git tag ‘Apalis-iMX6_LXDE-Image_2.8b6.184-20190401’) on a custom carrier board. If we enable &ldb and &mxcfb1 the SSD shows up again.