mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
0eadaa9ce2
Multiple devices from the ADAU family share the same PLL structure and configuration register layout. Introduce a new helper module that can be used to calculated the PLL configuration registers based on a specified input frequency and the desired output frequency of the PLL. The ADAU1761/ADAU1781 and ADAU1373 drivers are updated to make use of this new helper module. But future drivers for additional devices from the ADAU family are also expected to make use of it. In anticipation of sharing more infrastructure code between different devices from the ADAU family the new module is called adau-utils. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@kernel.org>
8 lines
167 B
C
8 lines
167 B
C
#ifndef SOUND_SOC_CODECS_ADAU_PLL_H
|
|
#define SOUND_SOC_CODECS_ADAU_PLL_H
|
|
|
|
int adau_calc_pll_cfg(unsigned int freq_in, unsigned int freq_out,
|
|
uint8_t regs[5]);
|
|
|
|
#endif
|