NVIDIA: SAUCE: ASoC: Update PLL rate for T264
The PLLs should be set with a VCO frequency in the 900MHz – 1GHz range to minimize jitter and ppm error. Update the PLLA rate accordingly. Here, 983040000 frequency is for multiple of 8K frequencies and 993484800 frequency is for multiple of 11.025K frequencies. https://jirasw.nvidia.com/browse/TAS-2399 Signed-off-by: Sheetal <sheetal@nvidia.com> Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Acked-by: Noah Wager <noah.wager@canonical.com> Acked-by: Jacob Martin <jacob.martin@canonical.com> Signed-off-by: Noah Wager <noah.wager@canonical.com>
This commit is contained in:
@@ -342,11 +342,22 @@ static const struct tegra_audio_cdata tegra186_data = {
|
||||
.plla_out0_rates[x11_RATE] = 45158400,
|
||||
};
|
||||
|
||||
static const struct tegra_audio_cdata tegra264_data = {
|
||||
/* PLLA1 */
|
||||
.plla_rates[x8_RATE] = 983040000,
|
||||
.plla_rates[x11_RATE] = 993484800,
|
||||
/* PLLA1_OUT1 */
|
||||
.plla_out0_rates[x8_RATE] = 49152000,
|
||||
.plla_out0_rates[x11_RATE] = 45158400,
|
||||
};
|
||||
|
||||
static const struct of_device_id graph_of_tegra_match[] = {
|
||||
{ .compatible = "nvidia,tegra210-audio-graph-card",
|
||||
.data = &tegra210_data },
|
||||
{ .compatible = "nvidia,tegra186-audio-graph-card",
|
||||
.data = &tegra186_data },
|
||||
{ .compatible = "nvidia,tegra264-audio-graph-card",
|
||||
.data = &tegra264_data },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, graph_of_tegra_match);
|
||||
|
||||
Reference in New Issue
Block a user