From patchwork Sun Jul 5 09:27:16 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Tessarolo X-Patchwork-Id: 240729 List-Id: U-Boot discussion From: antoniotex90 at gmail.com (Antonio Tessarolo) Date: Sun, 5 Jul 2020 11:27:16 +0200 Subject: [PATCH 1/1] arm-freescale-mx6sx: Fix imx6sx UART5 wrong iomux register configuration In-Reply-To: References: Message-ID: Hi Fabio, I agree about adding both definitions: this is what I've done now, but the TX label should be changed like you 've pointed out. Thanks Antonio Signed-off-by: Antonio Tessarolo --- arch/arm/include/asm/arch-mx6/mx6sx_pins.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) + MX6_PAD_SD4_DATA5__UART5_TX = IOMUX_PAD(0x05DC, 0x0294, 2, 0x0000, 0, 0), MX6_PAD_SD4_DATA5__ECSPI3_MOSI = IOMUX_PAD(0x05DC, 0x0294, 3, 0x0738, 0, 0), MX6_PAD_SD4_DATA5__LCDIF2_DATA_7 = IOMUX_PAD(0x05DC, 0x0294, 4, 0x0000, 0, 0), MX6_PAD_SD4_DATA5__GPIO6_IO_19 = IOMUX_PAD(0x05DC, 0x0294, 5, 0x0000, 0, 0), diff --git a/arch/arm/include/asm/arch-mx6/mx6sx_pins.h b/arch/arm/include/asm/arch-mx6/mx6sx_pins.h index a18e08f6..3354f2cc 100644 --- a/arch/arm/include/asm/arch-mx6/mx6sx_pins.h +++ b/arch/arm/include/asm/arch-mx6/mx6sx_pins.h @@ -1615,7 +1615,8 @@ enum { MX6_PAD_SD4_DATA5__USDHC4_DATA5 = IOMUX_PAD(0x05DC, 0x0294, 0, 0x0000, 0, 0), MX6_PAD_SD4_DATA5__RAWNAND_CE2_B = IOMUX_PAD(0x05DC, 0x0294, 1, 0x0000, 0, 0), - MX6_PAD_SD4_DATA5__UART5_TX = IOMUX_PAD(0x05DC, 0x0294, 2, 0x0850, 1, 0), + MX6_PAD_SD4_DATA5__UART5_RX = IOMUX_PAD(0x05DC, 0x0294, 2, 0x0850, 1, 0),