if you're playing music from your computer, and it's coming out of amplified speakers, the signal chain probably looks like this:
the music is stored digitally in your computer. it gets converted to analog audio by the digital-to-analog converter (DAC) which is in your soundcard (or external). the analog audio is embiggened by the amplifier, which then pushes your speakers.
When you stick a DSP in the middle, the picture looks a bit more stupid.
while journeying through the intertubes, i found a potential solution - the CP2114 by Silicon Labs. it is a 'USB-to-I2S Digital Audio Bridge', i.e. a chip which connects to your computer's USB port, and speaks a digital audio protocol (I2S) which the DSP understands. how does this solve the 'different clocks' problem?
the CP2114 is an 'asynchronous' USB audio device. this means a few things:
- it uses its internal clock (clock2) which is shared with the DSP.
- it tells the source (e.g. computer) to prepare data for a fixed sample rate (48kHz).
- due to clock mismatch, the source will send data too rarely or too often. the CP2114 can tell the source to 'send more/less data' as necessary.
in this scheme, it doesn't matter that the source and DSP don't share the same clock. the source is forced to resample and transmit the data at 48kHz, and if its clock doesn't match up exactly with the CP2114's clock, the CP2114 can tell it to slow down or speed up.
as for bit-depth, the CP2114 only supports 16-bit audio, which is rather low. however, it also supports sending 'volume control' information as a separate 8-bit signal. since the main advantage of 24-bit audio vs. 16-bit audio is having more bits to throw away for dynamic range, that separate 8-bit volume control makes the low bit-depth more palatable.
so - let's make a board to plug the DSP 01 into a CP2114.
does it work? nope.
the DSP 01 wants a 24.576MHz clock signal. in order to produce that clock, i put a 49.152MHz clock on the CP2114 board (pictured above) and tried to use the CP2114's internal clock dividers to halve that clock to 24.576MHz for the DSP 01. the problem is, the CP2114's clock dividers only work when the CP2114 is connected to a computer's USB port. the DSP 01 wouldn't be able to run at all if no USB source was present.
so i redesigned the board, this time with an external clock divider (using a D-flipflop):
does it work now? still nope.
but why?
as i've mentioned, the CP2114 is supposed to be a 'USB-to-I2S Digital Audio Bridge'. the DSP 01 accepts digital audio input through an I2S bus, so I assumed they'd be able to talk to each other. the thing is.. the CP2114 does I2S wrong.
here is a screenshot from the I2S spec:
let's pay attention to these two points:
- the serial clock (SCK) must be continuous.
- the 'transmitter always sends the MSB of the next word (on the SCK) one clock period after the WS (Word Select) changes'.
now, let's compare this to actual SCK and WS signals from the CP2114.
the CP2114 fails on both listed criteria:
- the SCK is obviously not continuous - instead it appears in bursts, with an inconsistent time-delay after each WS clock edge.
- the MSB of the next word (on the serial data line, not shown) appears when the SCK appears. but the SCK doesn't start one clock period after the WS changes. so the MSB of the next word doesn't appear at the right time either!
rest assured that i have used the CP2114 correctly, and tried every conceivable setting which might get it to work.
i contacted Silicon Labs about this obvious deviation from the I2S spec, and got this reply:
this is after they'd linked me to the same I2S specification which i used to debug the problem!
so, i presume they are aware of the problem, but are unable or unwilling to fess up to it, or do anything about it for the time being.
either way, it doesn't really matter. unless big changes are made, the CP2114 is dead to me.
moving on..
UPDATE: Silicon Labs got back to me! this is what they said:
either way, i still can't use the CP2114. it seems like an easy fix in hardware - add a bit of logic to buffer the serial data, and output it synchronously during the next sample clock. you'd get a one-sample delay but who cares. of course, you can't do that in firmware..
next update: i use resampled SPDIF to get a working digital input!
Tshen2 2015