imx6 remapping uart question

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

imx6 remapping uart question

跳至解决方案
1,137 次查看
aaronpadilla
Contributor II

I am remapping the uart1 and uart5 but there are a hex number after the pin name, I could not find what it is for:

&iomuxc {
imx6qdl-scm {
/* add MUXing entry for SD2 4-bit interface and configure control pins */
pinctrl_uart2_my: uart2grp {
fsl,pins = <
MX6QDL_PAD_EIM_D26__UART2_TX_DATA 0x1f0b1
MX6QDL_PAD_EIM_D27__UART2_RX_DATA 0x1f0b1
>;
};

/*remapping uart1 for GPS*/
pinctrl_uart1_my: uart1grp {
fsl,pins = <
MX6QDL_PAD_CSI0_DAT10__UART1_TX_DATA 0x1b0b1
MX6QDL_PAD_CSI0_DAT11__UART1_RX_DATA 0x1b0b1
>;
};

};
};

what is it? 0x1f0b1  0x1b0b1

Colud you advice?

0 项奖励
回复
1 解答
975 次查看
Carlos_Musich
NXP Employee
NXP Employee

Hi Aaron,

In the IOMUX chapter of reference Manual you can find followng registers:

IOMUXC_SW_PAD_CTL_PAD_EIM_DATA26

IOMUXC_SW_MUX_CTL_PAD_EIM_DATA26

The number you are asking for is the value of register IOMUXC_SW_PAD_CTL_PAD_EIM_DATA26 while the name of the mcro is related to MUX function which is associated to IOMUXC_SW_MUX_CTL_PAD_EIM_DATA26.


Regards,
Carlos

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

在原帖中查看解决方案

0 项奖励
回复
1 回复
976 次查看
Carlos_Musich
NXP Employee
NXP Employee

Hi Aaron,

In the IOMUX chapter of reference Manual you can find followng registers:

IOMUXC_SW_PAD_CTL_PAD_EIM_DATA26

IOMUXC_SW_MUX_CTL_PAD_EIM_DATA26

The number you are asking for is the value of register IOMUXC_SW_PAD_CTL_PAD_EIM_DATA26 while the name of the mcro is related to MUX function which is associated to IOMUXC_SW_MUX_CTL_PAD_EIM_DATA26.


Regards,
Carlos

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 项奖励
回复