Hello. I'm designing a board with NRF52832 connected to SGTL5000 via I2S. I'm planning to use the driver found in the Nordic Playground here...
https://github.com/NordicPlayground/nRF52-teensy-sgtl5000-audio
The documentation mentions the following about the MCLK clock...
The nRF52832 is set up to run I2S at 4MHz during normal I2S operation (the maximum of nRF52832), while the datasheet for the SGTL5000 specifies 8MHz as the minimum frequency (at least as far as I could tell). When configuring the SGTL5000, the I2S MCLK speed on the nRF52832 is raised to above the nRF52832 defined maximum. This has been tested and works for this demo purpose, but for an actual product you might want to stay within the specified limits of the audio device that you are going to use.
I have used the I2S module on NRF52832 before and have run it at much higher speeds. The supported NRF5 sdk driver provides up to 16Mhz (see NRF_I2S_MCK_32MDIV2 ). I just want to confirm that I will be able to drive SGTL5000 at higher than 4Mhz MCLK speeds. Thanks!