Hi Igor,
Thank you for your reply.
As you mentioned, the issue I faced only because wrong image, now the board is getting booted successfully.
The actual issue is, I am trying to add new sound card to PICO-IMX7 through sai3 port. For this I have added codec driver file
and configuring dtsi file with following configuration:
sound {
compatible = "fsl,imx-ics52000",
"fsl,imx-audio-ics52000";
model = "audio-ics52000";
audio-cpu = <&sai3>;
audio-codec = <&card_codec>;
};
card_codec: ics52000 {
compatible = "invensense,ics52000";
status = "okay";
};
&sai3 {
#sound-dai-cells = <0>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_sai3>;
assigned-clocks = <&clks IMX7D_SAI3_ROOT_SRC>,
<&clks IMX7D_SAI3_ROOT_CLK>;
assigned-clock-parents = <&clks IMX7D_PLL_AUDIO_POST_DIV>;
assigned-clock-rates = <3072000>;
status = "okay";
};
pinctrl_sai3: sai3grp {
fsl,pins = <
MX7D_PAD_UART3_TX_DATA__SAI3_TX_BCLK 0x14
MX7D_PAD_UART3_CTS_B__SAI3_TX_SYNC 0x14
MX7D_PAD_UART3_RTS_B__SAI3_TX_DATA0 0x14
>;
};
So with this configuration I am getting the following errors in boot log:
[ 3.067596] imx-ics52000 sound: failed to find SSI platform device in imx-ics52000
[ 3.073896] imx-ics52000: probe of sound failed with error -22
Kindly provide your support regarding this.
Thanks & Regards
Ganapathirao.P