Hi all, just to consolidate the question, i saw that pin KEY_COL6 and KEY_ROW6 corresponds to uart4.RXD_MUX and uart4.TXD_MUX in the ALT1 mux mode. In its original mux mode, they are used as the push buttons if i am not wrong.
Now i want to use these 2 pins KEY_COL6 and KEY_ROW6 to act as UART4 instead of push buttons. I read and think i will need to change the u-boot to support this?
In u-boot, i saw this inside the file mx6slevk.c
static void setup_iomux_uart(void)
{
imx_iomux_v3_setup_multiple_pads(uart1_pads, ARRAY_SIZE(uart1_pads));
}
Do i just add one line -> imx_iomux_v3_setup_multiple_pads(uart4_pads, ARRAY_SIZE(uart4_pads)); ??
thanks for helping out this newbie here