Hello community
Hope you all are doing well
I’m using Colibri i.mx6ULL som (512MB NAND version)
I’m using provided Yocto Kikrstone packages to generate the custom image
In my case, i have generate the custom image, and everything working as exacted
Now, my aim is to populate the UART_D i.e UART 6, for which i have created the 2 patches
one patch is with the “imx6ull-colibri.dtsi” file to de-reference the node for the UART 6, and one patch for the “imx6ull-colibri-eval-v3.dtsi” file to activate it!
For the instance, i need to use only TX pin to send the UART data for which, I’m utilizing SODIMM 75
To do so, i have also remove the shared functionality of this GPIO from the camera’s CSI port…
here is the UART_D node configuration
// with imx6ull-colibri.dtsi
/* Colibri UART_D */
&uart6 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_uart6>;
fsl,dte-mode;
};
&iomuxc {
pinctrl_uart6: uart6grp {
fsl,pins = <
MX6UL_PAD_CSI_MCLK__UART6_DCE_TX 0x10b0 /* SODIMM 75 for the custom AEBOX image (UART_D)*/
>;
};
};
.
.
.
.
//with imx6ull-colibri-eval-v3.dtsi file
&uart6 {
status = "okay";
};
The image has been successfully generate. i have also verified that the patch is also successfully applied with the DTSI file with the kernel-source
Now my problem is, after booting with the new image, UART 6 is unable to populate in to the /dev directory
Can anyone help me here ?
Appreciate all comments and suggestions
I have attached both of the patch here [link]
Thanks
Mahendra