mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 11:26:02 +09:00
ASoC: es8328: Enabling support for 12Mhz sysclk
Change-Id: If9dea6039ab562023c81c2394c9286b7adc4a8c5 Signed-off-by: Chris Zhong <zyw@rock-chips.com>
This commit is contained in:
@@ -36,6 +36,16 @@ static const struct snd_pcm_hw_constraint_list constraints_12288 = {
|
||||
.list = rates_12288,
|
||||
};
|
||||
|
||||
static unsigned int ratios_12000[] = {
|
||||
8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000,
|
||||
48000, 88235, 96000,
|
||||
};
|
||||
|
||||
static struct snd_pcm_hw_constraint_list constraints_12000 = {
|
||||
.count = ARRAY_SIZE(ratios_12000),
|
||||
.list = ratios_12000,
|
||||
};
|
||||
|
||||
static const unsigned int rates_11289[] = {
|
||||
8018, 11025, 22050, 44100, 88200,
|
||||
};
|
||||
@@ -574,6 +584,14 @@ static int es8328_set_sysclk(struct snd_soc_dai *codec_dai,
|
||||
es8328->sysclk_constraints = &constraints_12288;
|
||||
es8328->mclk_ratios = ratios_12288;
|
||||
break;
|
||||
|
||||
case 24000000:
|
||||
mclkdiv2 = 1;
|
||||
fallthrough;
|
||||
case 12000000:
|
||||
es8328->sysclk_constraints = &constraints_12000;
|
||||
es8328->mclk_ratios = ratios_12000;
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user