|
1 | 1 | // SPDX-License-Identifier: GPL-2.0-only
|
| 2 | +// SPDX-FileCopyrightText: Copyright (c) 2020-2025 NVIDIA CORPORATION. All rights reserved. |
2 | 3 | //
|
3 | 4 | // tegra_audio_graph_card.c - Audio Graph based Tegra Machine Driver
|
4 |
| -// |
5 |
| -// Copyright (c) 2020-2021 NVIDIA CORPORATION. All rights reserved. |
6 | 5 |
|
7 | 6 | #include <linux/math64.h>
|
8 | 7 | #include <linux/module.h>
|
@@ -232,11 +231,22 @@ static const struct tegra_audio_cdata tegra186_data = {
|
232 | 231 | .plla_out0_rates[x11_RATE] = 45158400,
|
233 | 232 | };
|
234 | 233 |
|
| 234 | +static const struct tegra_audio_cdata tegra264_data = { |
| 235 | + /* PLLA1 */ |
| 236 | + .plla_rates[x8_RATE] = 983040000, |
| 237 | + .plla_rates[x11_RATE] = 993484800, |
| 238 | + /* PLLA1_OUT1 */ |
| 239 | + .plla_out0_rates[x8_RATE] = 49152000, |
| 240 | + .plla_out0_rates[x11_RATE] = 45158400, |
| 241 | +}; |
| 242 | + |
235 | 243 | static const struct of_device_id graph_of_tegra_match[] = {
|
236 | 244 | { .compatible = "nvidia,tegra210-audio-graph-card",
|
237 | 245 | .data = &tegra210_data },
|
238 | 246 | { .compatible = "nvidia,tegra186-audio-graph-card",
|
239 | 247 | .data = &tegra186_data },
|
| 248 | + { .compatible = "nvidia,tegra264-audio-graph-card", |
| 249 | + .data = &tegra264_data }, |
240 | 250 | {},
|
241 | 251 | };
|
242 | 252 | MODULE_DEVICE_TABLE(of, graph_of_tegra_match);
|
|
0 commit comments