MAX98357A for Verdin imx8mp

I was checking the post for the following link:

Doing a similar exercise, however cannot understand what the following steps mean:

  1. Flash the multimedia reference image. - ok.
  2. Checkout toradex_5.4-2.3.x-imx- how is this done??, add the MAX98357a driver, change the device tree to the one supplied above and compile.
  3. Swap out the Image.gz and device tree blob - how is this done??

Greetings @SJ_BHD,

Some questions starting off:

  • Are you on TorizonCore or are you using our reference BSP? The process for enabling drivers differs a bit between the two. The community thread you’re referencing depicts someone using our reference BSP.
  • If you are using TorizonCore what version of our software are you using?
  • Do you want to also use the MAX98357A or are you just doing this as an excercise for a different driver?

Best Regards,
Jeremias

I am using TorizonCore on Verdin + custom board. The custom board has the MAX98357A on I2S.

TorizonCore version as follows:
Linux verdin-imx8mp-07331094 5.4.193-5.7.0+git.f78299297185 #1-TorizonCore SMP P REEMPT Mon Jul 11 14:42:03 UTC 2022 aarch64 aarch64 aarch64 GNU/Linux

I see, well normally we are happy to enable drivers for our customers on TorizonCore. But, you are on TorizonCore 5.7.0, which is an LTS release that we no longer add new features to, like new drivers.

So your options are the following then:

Best Regards,
Jeremias

Also, what updates do I need to make to the device tree? Or we dont need to make any of device tree updates if the kernel module has been added?

@jeremias.tx - Thanks for your response. Is there a link to exercise the first option of building TorizonCore using Yocto?

Also if I went to the non-LTS release TorizonCore 6.x.x - can this driver be added, if not already?

Also, what updates do I need to make to the device tree? Or we dont need to make any of device tree updates if the kernel module has been added?

I imagine you would still need to update the device tree. Though the exact details are dependent on the peripheral itself. I’ve never personally integrated this specific peripheral myself so I don’t know the exact details for the device tree here. You may be able to find documentation on the device tree for this peripheral in the Linux kernel somewhere.

Thanks for your response. Is there a link to exercise the first option of building TorizonCore using Yocto?

We have a page here on how to setup the environment for a TorizonCore Yocto build: Build Torizon OS from Source With Yocto Project/OpenEmbedded | Toradex Developer Center

Then here is a page with some common Yocto customization examples: Custom meta layers, recipes and images in Yocto Project (hello-world examples) | Toradex Developer Center

Also if I went to the non-LTS release TorizonCore 6.x.x - can this driver be added, if not already?

TorizonCore 6.X is still in active development by us. So yes we currently take requests to add drivers to this version of the software. This would enable the driver by default for use, but you would still need to make the necessary device tree changes on your side for whatever hardware configuration you have.

Best Regards,
Jeremias

I followed the instructions for building external kernel modules. Got the image built but when was trying to deploy using SSH got the following error when trying to unpack.

Unpacking Toradex Easy Installer image.
An unexpected Exception occured. Please provide the following stack trace to
the Toradex TorizonCore support team.

Traceback (most recent call last):
File “/builder/torizoncore-builder”, line 221, in
mainargs.func(mainargs)
File “/builder/tcbuilder/cli/images.py”, line 145, in do_images_unpack
images_unpack(args.image_directory,
File “/builder/tcbuilder/cli/images.py”, line 139, in images_unpack
images.import_local_image(image_dir, dir_list[0], dir_list[1], dir_list[2])
File “/builder/tcbuilder/backend/images.py”, line 282, in import_local_image
subprocess.check_output(tarcmd, shell=True, stderr=subprocess.STDOUT)
File “/usr/lib/python3.9/subprocess.py”, line 424, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File “/usr/lib/python3.9/subprocess.py”, line 528, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command ‘cat /workdir/torizon-core-docker-verdin-imx8mp-Tezi_5.7.0+build.17-max98357a-t1.tar | cat | tar -xf - -C /storage/tezi.tmp’ returned non-zero exit status 2.

The error you got is related to issues with extracting the target tar file. Common issues can be with the tool not being able to find/see the tar file.

Where is the tar file relative to where you are executing torizoncore-builder images unpack? The file path needs to be in the same directory or a sub-directory from where you are executing the command.

Best Regards,
Jeremias

I was able to build the image as follows using the production method for the .yaml file as in your link above.


the max98357a driver seems to be there from lsmod . However, when I check on bash using

torizon@verdin-imx8mp6~$ cat /proc/asound/cards
0 [audiohdmi ]: audio-hdmi - audio-hdmi

I dont see any max98357a. Why?

As per your lsmod output it looks like you have the driver enabled now.

I would assume the issue is with your device tree changes now. When you copied the device tree changes from that other thread did you copy them from just the first post in the thread or did you include the answer as well?

Also is your hardware hooked up the same as the other customers? Because that customer’s overlay works for their setup, but it’s not clear whether your setup is the same as theirs.

Is the driver outputting any errors/logs in dmesg?

There is an option for CONFIG_SND_SOC_MAX98357A=m.
How is that option set?

I’m confused, why are you asking about this option? You already have the driver enabled in your image.

Best Regards,
Jeremias

1 Like

I can see the driver in lsmod, however alsa does not recognise it as a sound card. In dmesg, alsa says that no sound cards were detected.

The normal way alsa recognises sound cards is with i2c, however the max98357a does not have an i2c port.

Hence, to get it recognised as a sound card, I need to get the option as above enabled in the kernel configuration so that it shows enabled in the config.gz file.

I’m not sure I follow. All setting that config option does is enable the same driver you’re already loading now. The difference being it would be built-in as part of the kernel rather than as a out-of-tree module. But the end result should be the same, it’s the same code and driver being loaded.

All this does is load the driver. Loading the driver does not necessarily mean your hardware peripheral gets noticed by the driver. For that you need a correct device tree configuration for your setup. Are you confident that your device tree is not an issue?

If you believe that enabling the config would make a difference then you can go and reference the method with Yocto that I talked about earlier. Then you can do a TorizonCore build with this config enabled yourself for testing.

Best Regards,
Jeremias

Max98357A is on I2S1 using sai1 pins. This compiles with TCB but still ALSA does not recognize it as sound-card.

Don’t see what else could be done with TCB.

Hi,

I had a similar issue with my Verdin a couple months ago.
Took me a while of head-scratching until I found out that changes on the root were not applying when I used syntax similar to yours.

This is what worked for me eventually MAX98357A overlay on Verdin IMX8MP - #9 by berganas

Hope that helps.

BR,
Anas

Thanks @berganas . Adding the &{/} before the codec allowed the card to be detected, although alsa says that the controls are absent.

Glad to hear you were able to amend your device tree changes. Though I’m not sure why you’re not seeing any controls. I assume this audio codec has built-in controls in the first place. Unfortunately I don’t have this specific codec lying around to test and validate it myself.

Perhaps berganas can comment with their experience using this codec.

Best Regards,
Jeremias

Hi @SJ_BHD,

Glad that helped! I didn’t see the controls in my project either. However, I didn’t need them for my use case and I could play the audio from the application using aplay, so I never looked more into it.

BR,
Anas

Hi @SJ_BHD !

I am not 100% sure, but I think you might be missing the widget property.

E.g.: imx8mm-verdin-dev.dtsi « freescale « dts « boot « arm64 « arch - linux-toradex.git - Linux kernel for Apalis, Colibri and Verdin modules

Best regards,

Hello @SJ_BHD ,

Were you able to try the solution proposed by @henrique.tx ? If so, what was the outcome?

Best regards,
Josep