Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 5025

Interfacing (DSI, CSI, I2C, etc.) • Re: Raspberry Pi 4 model B external I2S interface not working on pins GPIO18 - 21

$
0
0
Hello!!!

I have completed the device tree overlay of the max98090 audio codec. I also got the widgets in the taskbar and audio card created. I'm posting the code here.

Thank you @aBUGSworstnightmare for helping me through the debugging process!

max98090.dts

Code:

/dts-v1/;/plugin/;/ {    compatible = "brcm,bcm2711", "brcm,bcm2835";    fragment@0 {        target = <&i2s>;        __overlay__ {            status = "okay";            bitclock-slave = <1>;             frame-slave = <1>;            clock-frequency = <25000000>;        };    };    fragment@1 {        target = <&i2c1>;        __overlay__ {            #address-cells = <1>;            #size-cells = <0>;            status = "okay";            max98090_codec: max98090@10 {                #sound-dai-cells = <0>;                compatible = "maxim,max98090", "maxim,max98091";                reg = <0x10>;                interrupt-parent = <&gpio>;                interrupts = <27 2>;                maxim,micbias = <3>;                status = "okay";            };        };    };    fragment@2 {        target = <&sound>;        sound_overlay: __overlay__ {            compatible = "simple-audio-card";            simple-audio-card,format = "i2s";            simple-audio-card,name = "MAX98090-Audio-Codec";            simple-audio-card,bitclock-master = <&max98090_codec>;             simple-audio-card,frame-master = <&max98090_codec>;             simple-audio-card,widgets =                "Microphone", "MIC1",                "Microphone", "MIC2",                "Line In", "LINEA",                "Line Out", "LINEB",                "Headphone", "HP Left Out",                "Headphone", "HP Right Out",                "Speaker", "SPK Left Out",                "Speaker", "SPK Right Out";            simple-audio-card,routing =                "MIC1", "MIC1 Input",                "MIC2", "MIC2 Input",                "MIC1 Input", "ADCL",                "MIC2 Input", "ADCR",                "ADCL", "AIFOUTL",                "ADCR", "AIFOUTR",                "DACL", "HP Left Out",                "DACR", "HP Right Out",                "DACL", "SPK Left Out",                "DACR", "SPK Right Out";            status = "okay";            simple-audio-card,cpu {                sound-dai = <&i2s>;                dai-name = "HiFiCapture";            };            daillink_master: simple-audio-card,codec {                sound-dai = <&max98090_codec>;                dai-name = "HiFiCapture";                maxim,dmic-freq = <2500000>;            };        };    };    __overrides__ {        card-name = <&sound_overlay>, "simple-audio-card,name";    };};
Sound card

Code:

pi@raspberrypi:~ $ aplay -l**** List of PLAYBACK Hardware Devices ****card 0: Headphones [bcm2835 Headphones], device 0: bcm2835 Headphones [bcm2835 Headphones]  Subdevices: 8/8  Subdevice #0: subdevice #0  Subdevice #1: subdevice #1  Subdevice #2: subdevice #2  Subdevice #3: subdevice #3  Subdevice #4: subdevice #4  Subdevice #5: subdevice #5  Subdevice #6: subdevice #6  Subdevice #7: subdevice #7card 1: MAX98090AudioCo [MAX98090-Audio-Codec], device 0: fe203000.i2s-HiFi HiFi-0 [fe203000.i2s-HiFi HiFi-0]  Subdevices: 1/1  Subdevice #0: subdevice #0card 2: vc4hdmi0 [vc4-hdmi-0], device 0: MAI PCM i2s-hifi-0 [MAI PCM i2s-hifi-0]  Subdevices: 1/1  Subdevice #0: subdevice #0card 3: vc4hdmi1 [vc4-hdmi-1], device 0: MAI PCM i2s-hifi-0 [MAI PCM i2s-hifi-0]  Subdevices: 1/1  Subdevice #0: subdevice #0pi@raspberrypi:~ $ arecord -l**** List of CAPTURE Hardware Devices ****card 1: MAX98090AudioCo [MAX98090-Audio-Codec], device 0: fe203000.i2s-HiFi HiFi-0 [fe203000.i2s-HiFi HiFi-0]  Subdevices: 1/1  Subdevice #0: subdevice #0

Code:

pi@raspberrypi:~ $ alsamixer
To test if the audio is getting captured and played

Code:

pi@raspberrypi:~ $ arecord -D hw:1,0 -f cd test_capture.wavRecording WAVE 'test_capture.wav' : Signed 16 bit Little Endian, Rate 44100 Hz, Stereo^CAborted by signal Interrupt...pi@raspberrypi:~ $ aplay test_capture.wavPlaying WAVE 'test_capture.wav' : Signed 16 bit Little Endian, Rate 44100 Hz, Stereo
I2C bus is being used by the overlay.

Code:

pi@raspberrypi:~ $ i2cdetect -y 1     0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f00:                         -- -- -- -- -- -- -- -- 10: UU -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 70: -- -- -- -- -- -- -- --                         pi@raspberrypi:~ $ 
Driver and overlay verification.

Code:

pi@raspberrypi:~ $ sudo vclog -m | grep max98090009256.186: brfs: File read: /mfs/sd/overlays/max98090.dtbo009289.688: Loaded overlay 'max98090'

Code:

pi@raspberrypi:~ $ dmesg | grep max98090[    9.541400] max98090 1-0010: MAX98090 REVID=0x43[    9.550575] max98090 1-0010: ASoC: source widget MIC1 overwrittenpi@raspberrypi:~ $ dmesg | grep i2s
Compiling steps,

Code:

pi@raspberrypi:~ $ dtc -@ -I dts -O dtb -o max98090.dtbo max98090.dts

Code:

pi@raspberrypi:~ $ sudo cp max98090.dtbo /boot/firmware/overlays/
Thanks!

Statistics: Posted by electronics_enthu — Sat Nov 23, 2024 1:11 pm



Viewing all articles
Browse latest Browse all 5025

Trending Articles