|
@@ -38,6 +38,8 @@
|
|
|
|
|
|
#define SOUND_FS 256
|
|
|
|
|
|
+unsigned int rt5514_dmic_delay;
|
|
|
+
|
|
|
static struct snd_soc_jack rockchip_sound_jack;
|
|
|
|
|
|
static const struct snd_soc_dapm_widget rockchip_dapm_widgets[] = {
|
|
@@ -123,6 +125,9 @@ static int rockchip_sound_rt5514_hw_params(struct snd_pcm_substream *substream,
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+ /* Wait for DMIC stable */
|
|
|
+ msleep(rt5514_dmic_delay);
|
|
|
+
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -343,6 +348,15 @@ static int rockchip_sound_probe(struct platform_device *pdev)
|
|
|
return -ENODEV;
|
|
|
}
|
|
|
|
|
|
+ /* Set DMIC delay */
|
|
|
+ ret = device_property_read_u32(&pdev->dev, "dmic-delay",
|
|
|
+ &rt5514_dmic_delay);
|
|
|
+ if (ret) {
|
|
|
+ rt5514_dmic_delay = 0;
|
|
|
+ dev_dbg(&pdev->dev,
|
|
|
+ "no optional property 'dmic-delay' found, default: no delay\n");
|
|
|
+ }
|
|
|
+
|
|
|
rockchip_dailinks[DAILINK_RT5514_DSP].cpu_name = kstrdup_const(dev_name(dev), GFP_KERNEL);
|
|
|
rockchip_dailinks[DAILINK_RT5514_DSP].cpu_dai_name = kstrdup_const(dev_name(dev), GFP_KERNEL);
|
|
|
rockchip_dailinks[DAILINK_RT5514_DSP].platform_name = kstrdup_const(dev_name(dev), GFP_KERNEL);
|