I am trying to figure out how to use I2S on my custom board with some differences that I am not sure how to resolve.
I have used on the raspberry pi compute module the “simple-audio-card” driver which allowed me to use any I2S device that was configured independently from the driver and then I could use ALSA library knowing the settings to capture the results (ADC is TLV320ADC5140). In other words, the driver didn’t manage the ADC settings since it was generic and I was expected to do that myself. Very simple to setup.
The driver I see for the TLV320ADCX140 uses I2C for configuration. For this board, I needed to use SPI. I am able to connect to the ADC and configure all the settings to set it into the mode I want with SPI. It felt like rewriting the whole TLV320ADCX140 to use SPI is a lot to take on.
What I cannot figure out is how to setup the Jetson Nano to receive this data with any sort of generic driver. I have the I2S port and SPI enabled using the HDR40 settings in the DTB (since that was the easiest way to set them up)
spidev0.1 → SPI of ADC
I2S4 connect to I2S of ADC
Is there a generic sound card interface I can enable to set I2S settings on the Jetson Nano side and capture without having to use a dedicated driver?