This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
For my application, I am digitizing an audio signal and handing it to my company's custom software application, which handles audio leveling.
Is it possible to set a static amount of PGA gain without having the AGC engine adjust the PGA gain automatically? Like a constant +3dB or +20dB of gain? I do not want the AGC to constantly change the gain to reach some target output level. How can I control the PGA level directly?
I have experimented with having the AGC register disabled (Registers 26/29), and adjusting the PGA level from 0dB to +59dB (Register 15/16). But this did not have any impact on the volume of my recorded .WAV file. However, if I enable AGC, then I observe a significant increase in .WAV volume, and I can see the AGC gain increase as expected when I view the .WAV file in Audacity. Note that I am using the tlvaudioCODEC driver from the Linux tree.
How can I manually apply a fixed PGA gain, without using AGC?
Thanks,
-Chris
Hi Chris,
Yes the PGA is fully controllable in a discrete manner. It should be as simple as changing Register 15/16. Can you share your set up script so I can see if something might be conflicting?
Best regards,
Jeff McPherson
Hi Jeff,
Sorry for the late reply. I'm not using a discrete setup script, I am using the snd-soc-tlv320aic3x driver in the Linux kernel.
This driver sets up an Alsamixer control to change PGA gain by writing to Registers 15/16. However, it writes the same value to BOTH registers - there doesn't appear to be an option for individual control over the left and right PGA gain.
Additionally, this driver sets bit 7 High when writing to Registers 15 and 16, which enables Mute. So no audio is recorded in the resulting .WAV file - the samples are all zeroes.
Is there another way to implement the kernel driver to allow individual control over these registers?
-Chris
Hi Chris,
Understood. Let me loop in our driver support team to address your findings.
Best,
Jeff McPherson
Hi Chris,
Sorry for the late response, In the kcontrols, the volumes of the two channels are indeed configured together as below, but volume and switch controls are individual, you can set switch control to record audio.
Original code:
We can do some small changes in above code to configure two registers separately, just like below:
Modified code: