I tried that in my board.c and it didn’t seem to work - I still needed to run the userspace prog to set the pinmux correctly. Any chance you could provide a full patch set for the kernel you’re using now, including all the other config and code additions? I’ve been tweaking on my SDK source for so long now that I probably have a lot of stuff in my build that doesn’t match what you’re doing.
Unfortunately the I2S2 MCLK signal doesn’t appear as an option on any of the GPIO pins of the Milk-V Duo. I2S1 MCLK is available but I2S1 LRCK is not so AFAICT there’s no pinmux setting that gets you all the I2S signals you’d need including MCLK. There are a lot of I2S DACs available that don’t require an MCLK signal though so you’re limited to those.
Thanks! I’m currently working on using the CV1800B baremetal, as I talk about in another thread. I was trying to use the ETH pins for SPI1 and found your post.
I had seen this sequence in the spreadsheet file (CV180xb-Pinout-v1.xlsx) but wasn’t too sure it was what was required, or what exactly they meant. But that was it. I implemented that and yep, I can use SPI1 on those pins.
Now a small question. Turns out those pins are 1.8V logic rather than 3.3V. Did you guys use a level shifter, or was your I2S interface 1.8V?
Or (hopeful here), is there a way of switching those pins to 3.3V level?
Replying to myself here - I don’t think there’s any way we can switch to 3.3V logic on those ETH pins, it’s 1.8V. (But if anyone knows otherwise…)
And the reason it worked in this thread is that the max98357a, which was what they wanted to drive, has a minimum logic high level of 1.3V on its digital inputs, so 1.8V logic is fine.
AFAICT those pins are 1.8V only but from my experience the MAX98357a seems to accept those logic levels w/o problems. I’m currently working on hooking up a TLV320AIC3101 codec which can operate at 1.8V I/O levels and hope to get stereo audio input from that but it will require some new driver work on the receive side.
Yes most DACs of this kind should be fine with 1.8V logic.
For other purposes requiring 3.3V, level shifters will be fine. That’s no big deal.
But OTOH, conversely, I was kinda planning to use the SDIO1 controller @1.8V, and on the Duo board it’s in a 3.3V domain as far as I can tell, so yeah. Not a huge deal either. This chip is pretty great!
I’ve been fiddling with the latest buildroot SDK and the patches / changes shown above no longer work. The driver code compiles fine and attempts to load at boot time but fails. I need to do some digging to figure out what the error code means (if it’s helpful at all).
On the upside, the built-in codec seems to work out-of-the box.
I’m still pursuing this and appear to be having some success with the SDK V2. Did some patching and building on it this evening and the the external I2S device is now showing up in ‘aplay -l’ so I’m hopeful that it’s going to work. I’ve decided to be serious about tracking my changes so I forked SDK V2 and created a branch for this effort: GitHub - emeb/duo-buildroot-sdk-v2 at ext_i2s
[edit] - Tried it out on the bench and although ‘aplay -D hw:0 <file.wav>’ runs w/o errors and has the proper run duration, I’m not seeing any activity on the hardware pins. I have run the ‘ethpoke’ program to switch the pinmuxes but it’s possible that there’s something different about the setup in the new SDK. Not giving up yet, but it’ll take some more effort.
[edit again] - Got I2S output working. Had to update ‘ethpoke’ to include setting the GPIO pinmux regs for I2S (prior it was just changing from ethernet to GPIO). Now next step is to see if I can get I2S input working too. Updated version is available in my git fork of duo-examples: duo-examples/ethpoke at main · emeb/duo-examples · GitHub