Thanks Igor,
I think I have found the relevant file;
/arch/arm/boot/dts/imx6qdl-cm-fx6.dtsi
This file has an entry in it for the command console;
/* pins for console */
pinctrl_uart4: uart4grp {
fsl,pins = <
MX6QDL_PAD_KEY_COL0__UART4_TX_DATA 0x1b0b1
MX6QDL_PAD_KEY_ROW0__UART4_RX_DATA 0x1b0b1
>;
};
...
/* console */
&uart4 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_uart4>;
status = "okay";
};
Can I simply add to this file to define uart5? something like;
/* pins for uart5 */
pinctrl_uart5: uart5grp {
fsl,pins = <
MX6QDL_PAD_KEY_COL0__UART5_TX_DATA 0x1b0b1
MX6QDL_PAD_KEY_ROW0__UART5_RX_DATA 0x1b0b1
>;
};
...
/* my uart5 serial */
&uart5 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_uart5>;
status = "okay";
};