Hello,
thanks we are trying to understand if the configuration of the pins is correct for our MAX98090 that is different from the wm8960 . We have set the fsl,pins in this way:
pinctrl_sai2: sai2grp {
fsl,pins = <
MX6UL_PAD_JTAG_TDI__SAI2_TX_BCLK 0x170A1
MX6UL_PAD_JTAG_TDO__SAI2_TX_SYNC 0x170A1
MX6UL_PAD_JTAG_TRST_B__SAI2_TX_DATA 0x110A0
MX6UL_PAD_JTAG_TCK__SAI2_RX_DATA 0x110A0
MX6UL_PAD_JTAG_TMS__SAI2_MCLK 0x170A1
>;
};
reducing the DSE resistence and enabling the fast slew rate

we have seen that the PAD define are:
/*
* The pin function ID is a tuple of
* <mux_reg conf_reg input_reg mux_mode input_val>
*/
#define MX6UL_PAD_SD1_CLK__SAI2_MCLK 0x01C0 0x044C 0x05F0 0x2 0x1
#define MX6UL_PAD_SD1_DATA0__SAI2_TX_SYNC 0x01C4 0x0450 0x05FC 0x2 0x1
#define MX6UL_PAD_SD1_DATA1__SAI2_TX_BCLK 0x01C8 0x0454 0x05F8 0x2 0x1
#define MX6UL_PAD_SD1_DATA2__SAI2_RX_DATA 0x01CC 0x0458 0x05F4 0x2 0x1
#define MX6UL_PAD_SD1_DATA3__SAI2_TX_DATA 0x01D0 0x045C 0x0000 0x2 0x0
with the value written in the fsl,pins (for example the 0x170A1) we are going to over-write a value of the #define here upper or what?
Thanks