Hi,
I am trying to run playback using the SOF sound card on the IMX8M Plus EVK, but I am not able to hear any audio from the headphone jack.
Here are the steps I am using to run the playback:
- Boot the device and interrupt to enter uboot
- Use "editenv fdtfile" and change the device tree name to "imx8mp-evk-sof-wm8960.dtb"
- Continue the boot
- Run "aplay -l" to obtain SOF sound card ID
- Run the following commands to initiate playback:
- amixer -c [sof_card_id] cset name="Left Output Mixer PCM Playback Switch" on
- amixer -c [sof_card_id] cset name="Right Output Mixer PCM Playback Switch" on
- aplay -Dhw:[sof_card_id],0 [path_to_wav_file]
The wav file used in this case is 32 bit, 48Khz stereo. I see no error when running the playback command.
I have also tried playing the same wav file using the default device tree and the wm8960 sound card, and I am able to hear the output.
Please let me know what I can do to solve this issue.