blob: 6434b3d3d1ba4da8bf2b1838df90a89267838098 [file] [log] [blame]
Thierry Redingedec4af2012-11-15 21:28:23 +00001/*
2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/clk.h>
Thierry Reding9eb9b222013-09-24 16:32:47 +020011#include <linux/debugfs.h>
Thierry Reding59682712014-11-28 16:50:59 +010012#include <linux/gpio.h>
Thierry Reding9eb9b222013-09-24 16:32:47 +020013#include <linux/hdmi.h>
Thierry Reding5e4acd32017-08-21 18:05:10 +020014#include <linux/of_device.h>
Thierry Reding52345492015-08-07 16:00:43 +020015#include <linux/pm_runtime.h>
Thierry Reding9eb9b222013-09-24 16:32:47 +020016#include <linux/regulator/consumer.h>
Stephen Warrenca480802013-11-06 16:20:54 -070017#include <linux/reset.h>
Thierry Redingac24c222012-11-23 15:14:00 +010018
Thierry Reding4aa3df72014-11-24 16:27:13 +010019#include <drm/drm_atomic_helper.h>
Thierry Reding59682712014-11-28 16:50:59 +010020#include <drm/drm_crtc.h>
21#include <drm/drm_crtc_helper.h>
22
Thierry Reding2ccb3962015-01-15 13:43:18 +010023#include <sound/hda_verbs.h>
24
Hans Verkuilfb83be82017-09-11 14:29:52 +020025#include <media/cec-notifier.h>
26
Thierry Redingedec4af2012-11-15 21:28:23 +000027#include "hdmi.h"
28#include "drm.h"
29#include "dc.h"
Thierry Reding07a8aab2017-08-15 15:41:11 +020030#include "trace.h"
Thierry Redingedec4af2012-11-15 21:28:23 +000031
Thierry Reding2ccb3962015-01-15 13:43:18 +010032#define HDMI_ELD_BUFFER_SIZE 96
33
Thierry Reding59af0592013-10-14 09:43:05 +020034struct tmds_config {
35 unsigned int pclk;
36 u32 pll0;
37 u32 pll1;
38 u32 pe_current;
39 u32 drive_current;
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +020040 u32 peak_current;
Thierry Reding59af0592013-10-14 09:43:05 +020041};
42
43struct tegra_hdmi_config {
44 const struct tmds_config *tmds;
45 unsigned int num_tmds;
46
47 unsigned long fuse_override_offset;
Thierry Reding4ee8cee2014-12-08 16:25:14 +010048 u32 fuse_override_value;
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +020049
50 bool has_sor_io_peak_current;
Thierry Reding2ccb3962015-01-15 13:43:18 +010051 bool has_hda;
52 bool has_hbr;
Thierry Reding59af0592013-10-14 09:43:05 +020053};
54
Thierry Redingedec4af2012-11-15 21:28:23 +000055struct tegra_hdmi {
Thierry Reding776dc382013-10-14 14:43:22 +020056 struct host1x_client client;
Thierry Redingedec4af2012-11-15 21:28:23 +000057 struct tegra_output output;
58 struct device *dev;
59
Thierry Redingfb50a112014-02-28 16:57:34 +010060 struct regulator *hdmi;
Thierry Redingedec4af2012-11-15 21:28:23 +000061 struct regulator *pll;
Thierry Reding88685682014-04-16 10:24:12 +020062 struct regulator *vdd;
Thierry Redingedec4af2012-11-15 21:28:23 +000063
64 void __iomem *regs;
65 unsigned int irq;
66
67 struct clk *clk_parent;
68 struct clk *clk;
Stephen Warrenca480802013-11-06 16:20:54 -070069 struct reset_control *rst;
Thierry Redingedec4af2012-11-15 21:28:23 +000070
Thierry Reding59af0592013-10-14 09:43:05 +020071 const struct tegra_hdmi_config *config;
72
Thierry Redingedec4af2012-11-15 21:28:23 +000073 unsigned int audio_source;
Thierry Reding2ccb3962015-01-15 13:43:18 +010074 unsigned int audio_sample_rate;
75 unsigned int audio_channels;
76
77 unsigned int pixel_clock;
Thierry Redingedec4af2012-11-15 21:28:23 +000078 bool stereo;
79 bool dvi;
80
81 struct drm_info_list *debugfs_files;
82 struct drm_minor *minor;
83 struct dentry *debugfs;
84};
85
86static inline struct tegra_hdmi *
Thierry Reding776dc382013-10-14 14:43:22 +020087host1x_client_to_hdmi(struct host1x_client *client)
Thierry Redingedec4af2012-11-15 21:28:23 +000088{
89 return container_of(client, struct tegra_hdmi, client);
90}
91
92static inline struct tegra_hdmi *to_hdmi(struct tegra_output *output)
93{
94 return container_of(output, struct tegra_hdmi, output);
95}
96
97#define HDMI_AUDIOCLK_FREQ 216000000
98#define HDMI_REKEY_DEFAULT 56
99
100enum {
101 AUTO = 0,
102 SPDIF,
103 HDA,
104};
105
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100106static inline u32 tegra_hdmi_readl(struct tegra_hdmi *hdmi,
Thierry Reding7efe20c2017-08-15 15:41:08 +0200107 unsigned int offset)
Thierry Redingedec4af2012-11-15 21:28:23 +0000108{
Thierry Reding07a8aab2017-08-15 15:41:11 +0200109 u32 value = readl(hdmi->regs + (offset << 2));
110
111 trace_hdmi_readl(hdmi->dev, offset, value);
112
113 return value;
Thierry Redingedec4af2012-11-15 21:28:23 +0000114}
115
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100116static inline void tegra_hdmi_writel(struct tegra_hdmi *hdmi, u32 value,
Thierry Reding7efe20c2017-08-15 15:41:08 +0200117 unsigned int offset)
Thierry Redingedec4af2012-11-15 21:28:23 +0000118{
Thierry Reding07a8aab2017-08-15 15:41:11 +0200119 trace_hdmi_writel(hdmi->dev, offset, value);
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100120 writel(value, hdmi->regs + (offset << 2));
Thierry Redingedec4af2012-11-15 21:28:23 +0000121}
122
123struct tegra_hdmi_audio_config {
124 unsigned int pclk;
125 unsigned int n;
126 unsigned int cts;
127 unsigned int aval;
128};
129
130static const struct tegra_hdmi_audio_config tegra_hdmi_audio_32k[] = {
131 { 25200000, 4096, 25200, 24000 },
132 { 27000000, 4096, 27000, 24000 },
133 { 74250000, 4096, 74250, 24000 },
134 { 148500000, 4096, 148500, 24000 },
135 { 0, 0, 0, 0 },
136};
137
138static const struct tegra_hdmi_audio_config tegra_hdmi_audio_44_1k[] = {
139 { 25200000, 5880, 26250, 25000 },
140 { 27000000, 5880, 28125, 25000 },
141 { 74250000, 4704, 61875, 20000 },
142 { 148500000, 4704, 123750, 20000 },
143 { 0, 0, 0, 0 },
144};
145
146static const struct tegra_hdmi_audio_config tegra_hdmi_audio_48k[] = {
147 { 25200000, 6144, 25200, 24000 },
148 { 27000000, 6144, 27000, 24000 },
149 { 74250000, 6144, 74250, 24000 },
150 { 148500000, 6144, 148500, 24000 },
151 { 0, 0, 0, 0 },
152};
153
154static const struct tegra_hdmi_audio_config tegra_hdmi_audio_88_2k[] = {
155 { 25200000, 11760, 26250, 25000 },
156 { 27000000, 11760, 28125, 25000 },
157 { 74250000, 9408, 61875, 20000 },
158 { 148500000, 9408, 123750, 20000 },
159 { 0, 0, 0, 0 },
160};
161
162static const struct tegra_hdmi_audio_config tegra_hdmi_audio_96k[] = {
163 { 25200000, 12288, 25200, 24000 },
164 { 27000000, 12288, 27000, 24000 },
165 { 74250000, 12288, 74250, 24000 },
166 { 148500000, 12288, 148500, 24000 },
167 { 0, 0, 0, 0 },
168};
169
170static const struct tegra_hdmi_audio_config tegra_hdmi_audio_176_4k[] = {
171 { 25200000, 23520, 26250, 25000 },
172 { 27000000, 23520, 28125, 25000 },
173 { 74250000, 18816, 61875, 20000 },
174 { 148500000, 18816, 123750, 20000 },
175 { 0, 0, 0, 0 },
176};
177
178static const struct tegra_hdmi_audio_config tegra_hdmi_audio_192k[] = {
179 { 25200000, 24576, 25200, 24000 },
180 { 27000000, 24576, 27000, 24000 },
181 { 74250000, 24576, 74250, 24000 },
182 { 148500000, 24576, 148500, 24000 },
183 { 0, 0, 0, 0 },
184};
185
Thierry Redingf27db962013-09-30 15:14:41 +0200186static const struct tmds_config tegra20_tmds_config[] = {
Lucas Stachfa416dd2012-12-19 21:38:55 +0000187 { /* slow pixel clock modes */
Thierry Redingedec4af2012-11-15 21:28:23 +0000188 .pclk = 27000000,
189 .pll0 = SOR_PLL_BG_V17_S(3) | SOR_PLL_ICHPMP(1) |
190 SOR_PLL_RESISTORSEL | SOR_PLL_VCOCAP(0) |
191 SOR_PLL_TX_REG_LOAD(3),
192 .pll1 = SOR_PLL_TMDS_TERM_ENABLE,
193 .pe_current = PE_CURRENT0(PE_CURRENT_0_0_mA) |
194 PE_CURRENT1(PE_CURRENT_0_0_mA) |
195 PE_CURRENT2(PE_CURRENT_0_0_mA) |
196 PE_CURRENT3(PE_CURRENT_0_0_mA),
197 .drive_current = DRIVE_CURRENT_LANE0(DRIVE_CURRENT_7_125_mA) |
198 DRIVE_CURRENT_LANE1(DRIVE_CURRENT_7_125_mA) |
199 DRIVE_CURRENT_LANE2(DRIVE_CURRENT_7_125_mA) |
200 DRIVE_CURRENT_LANE3(DRIVE_CURRENT_7_125_mA),
Lucas Stachfa416dd2012-12-19 21:38:55 +0000201 },
202 { /* high pixel clock modes */
Thierry Redingedec4af2012-11-15 21:28:23 +0000203 .pclk = UINT_MAX,
204 .pll0 = SOR_PLL_BG_V17_S(3) | SOR_PLL_ICHPMP(1) |
205 SOR_PLL_RESISTORSEL | SOR_PLL_VCOCAP(1) |
206 SOR_PLL_TX_REG_LOAD(3),
207 .pll1 = SOR_PLL_TMDS_TERM_ENABLE | SOR_PLL_PE_EN,
208 .pe_current = PE_CURRENT0(PE_CURRENT_6_0_mA) |
209 PE_CURRENT1(PE_CURRENT_6_0_mA) |
210 PE_CURRENT2(PE_CURRENT_6_0_mA) |
211 PE_CURRENT3(PE_CURRENT_6_0_mA),
212 .drive_current = DRIVE_CURRENT_LANE0(DRIVE_CURRENT_7_125_mA) |
213 DRIVE_CURRENT_LANE1(DRIVE_CURRENT_7_125_mA) |
214 DRIVE_CURRENT_LANE2(DRIVE_CURRENT_7_125_mA) |
215 DRIVE_CURRENT_LANE3(DRIVE_CURRENT_7_125_mA),
216 },
217};
218
Thierry Redingf27db962013-09-30 15:14:41 +0200219static const struct tmds_config tegra30_tmds_config[] = {
Thierry Redingedec4af2012-11-15 21:28:23 +0000220 { /* 480p modes */
221 .pclk = 27000000,
222 .pll0 = SOR_PLL_BG_V17_S(3) | SOR_PLL_ICHPMP(1) |
223 SOR_PLL_RESISTORSEL | SOR_PLL_VCOCAP(0) |
224 SOR_PLL_TX_REG_LOAD(0),
225 .pll1 = SOR_PLL_TMDS_TERM_ENABLE,
226 .pe_current = PE_CURRENT0(PE_CURRENT_0_0_mA) |
227 PE_CURRENT1(PE_CURRENT_0_0_mA) |
228 PE_CURRENT2(PE_CURRENT_0_0_mA) |
229 PE_CURRENT3(PE_CURRENT_0_0_mA),
230 .drive_current = DRIVE_CURRENT_LANE0(DRIVE_CURRENT_5_250_mA) |
231 DRIVE_CURRENT_LANE1(DRIVE_CURRENT_5_250_mA) |
232 DRIVE_CURRENT_LANE2(DRIVE_CURRENT_5_250_mA) |
233 DRIVE_CURRENT_LANE3(DRIVE_CURRENT_5_250_mA),
234 }, { /* 720p modes */
235 .pclk = 74250000,
236 .pll0 = SOR_PLL_BG_V17_S(3) | SOR_PLL_ICHPMP(1) |
237 SOR_PLL_RESISTORSEL | SOR_PLL_VCOCAP(1) |
238 SOR_PLL_TX_REG_LOAD(0),
239 .pll1 = SOR_PLL_TMDS_TERM_ENABLE | SOR_PLL_PE_EN,
240 .pe_current = PE_CURRENT0(PE_CURRENT_5_0_mA) |
241 PE_CURRENT1(PE_CURRENT_5_0_mA) |
242 PE_CURRENT2(PE_CURRENT_5_0_mA) |
243 PE_CURRENT3(PE_CURRENT_5_0_mA),
244 .drive_current = DRIVE_CURRENT_LANE0(DRIVE_CURRENT_5_250_mA) |
245 DRIVE_CURRENT_LANE1(DRIVE_CURRENT_5_250_mA) |
246 DRIVE_CURRENT_LANE2(DRIVE_CURRENT_5_250_mA) |
247 DRIVE_CURRENT_LANE3(DRIVE_CURRENT_5_250_mA),
248 }, { /* 1080p modes */
249 .pclk = UINT_MAX,
250 .pll0 = SOR_PLL_BG_V17_S(3) | SOR_PLL_ICHPMP(1) |
251 SOR_PLL_RESISTORSEL | SOR_PLL_VCOCAP(3) |
252 SOR_PLL_TX_REG_LOAD(0),
253 .pll1 = SOR_PLL_TMDS_TERM_ENABLE | SOR_PLL_PE_EN,
254 .pe_current = PE_CURRENT0(PE_CURRENT_5_0_mA) |
255 PE_CURRENT1(PE_CURRENT_5_0_mA) |
256 PE_CURRENT2(PE_CURRENT_5_0_mA) |
257 PE_CURRENT3(PE_CURRENT_5_0_mA),
258 .drive_current = DRIVE_CURRENT_LANE0(DRIVE_CURRENT_5_250_mA) |
259 DRIVE_CURRENT_LANE1(DRIVE_CURRENT_5_250_mA) |
260 DRIVE_CURRENT_LANE2(DRIVE_CURRENT_5_250_mA) |
261 DRIVE_CURRENT_LANE3(DRIVE_CURRENT_5_250_mA),
262 },
263};
264
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +0200265static const struct tmds_config tegra114_tmds_config[] = {
266 { /* 480p/576p / 25.2MHz/27MHz modes */
267 .pclk = 27000000,
268 .pll0 = SOR_PLL_ICHPMP(1) | SOR_PLL_BG_V17_S(3) |
269 SOR_PLL_VCOCAP(0) | SOR_PLL_RESISTORSEL,
270 .pll1 = SOR_PLL_LOADADJ(3) | SOR_PLL_TMDS_TERMADJ(0),
271 .pe_current = PE_CURRENT0(PE_CURRENT_0_mA_T114) |
272 PE_CURRENT1(PE_CURRENT_0_mA_T114) |
273 PE_CURRENT2(PE_CURRENT_0_mA_T114) |
274 PE_CURRENT3(PE_CURRENT_0_mA_T114),
275 .drive_current =
276 DRIVE_CURRENT_LANE0_T114(DRIVE_CURRENT_10_400_mA_T114) |
277 DRIVE_CURRENT_LANE1_T114(DRIVE_CURRENT_10_400_mA_T114) |
278 DRIVE_CURRENT_LANE2_T114(DRIVE_CURRENT_10_400_mA_T114) |
279 DRIVE_CURRENT_LANE3_T114(DRIVE_CURRENT_10_400_mA_T114),
280 .peak_current = PEAK_CURRENT_LANE0(PEAK_CURRENT_0_000_mA) |
281 PEAK_CURRENT_LANE1(PEAK_CURRENT_0_000_mA) |
282 PEAK_CURRENT_LANE2(PEAK_CURRENT_0_000_mA) |
283 PEAK_CURRENT_LANE3(PEAK_CURRENT_0_000_mA),
284 }, { /* 720p / 74.25MHz modes */
285 .pclk = 74250000,
286 .pll0 = SOR_PLL_ICHPMP(1) | SOR_PLL_BG_V17_S(3) |
287 SOR_PLL_VCOCAP(1) | SOR_PLL_RESISTORSEL,
288 .pll1 = SOR_PLL_PE_EN | SOR_PLL_LOADADJ(3) |
289 SOR_PLL_TMDS_TERMADJ(0),
290 .pe_current = PE_CURRENT0(PE_CURRENT_15_mA_T114) |
291 PE_CURRENT1(PE_CURRENT_15_mA_T114) |
292 PE_CURRENT2(PE_CURRENT_15_mA_T114) |
293 PE_CURRENT3(PE_CURRENT_15_mA_T114),
294 .drive_current =
295 DRIVE_CURRENT_LANE0_T114(DRIVE_CURRENT_10_400_mA_T114) |
296 DRIVE_CURRENT_LANE1_T114(DRIVE_CURRENT_10_400_mA_T114) |
297 DRIVE_CURRENT_LANE2_T114(DRIVE_CURRENT_10_400_mA_T114) |
298 DRIVE_CURRENT_LANE3_T114(DRIVE_CURRENT_10_400_mA_T114),
299 .peak_current = PEAK_CURRENT_LANE0(PEAK_CURRENT_0_000_mA) |
300 PEAK_CURRENT_LANE1(PEAK_CURRENT_0_000_mA) |
301 PEAK_CURRENT_LANE2(PEAK_CURRENT_0_000_mA) |
302 PEAK_CURRENT_LANE3(PEAK_CURRENT_0_000_mA),
303 }, { /* 1080p / 148.5MHz modes */
304 .pclk = 148500000,
305 .pll0 = SOR_PLL_ICHPMP(1) | SOR_PLL_BG_V17_S(3) |
306 SOR_PLL_VCOCAP(3) | SOR_PLL_RESISTORSEL,
307 .pll1 = SOR_PLL_PE_EN | SOR_PLL_LOADADJ(3) |
308 SOR_PLL_TMDS_TERMADJ(0),
309 .pe_current = PE_CURRENT0(PE_CURRENT_10_mA_T114) |
310 PE_CURRENT1(PE_CURRENT_10_mA_T114) |
311 PE_CURRENT2(PE_CURRENT_10_mA_T114) |
312 PE_CURRENT3(PE_CURRENT_10_mA_T114),
313 .drive_current =
314 DRIVE_CURRENT_LANE0_T114(DRIVE_CURRENT_12_400_mA_T114) |
315 DRIVE_CURRENT_LANE1_T114(DRIVE_CURRENT_12_400_mA_T114) |
316 DRIVE_CURRENT_LANE2_T114(DRIVE_CURRENT_12_400_mA_T114) |
317 DRIVE_CURRENT_LANE3_T114(DRIVE_CURRENT_12_400_mA_T114),
318 .peak_current = PEAK_CURRENT_LANE0(PEAK_CURRENT_0_000_mA) |
319 PEAK_CURRENT_LANE1(PEAK_CURRENT_0_000_mA) |
320 PEAK_CURRENT_LANE2(PEAK_CURRENT_0_000_mA) |
321 PEAK_CURRENT_LANE3(PEAK_CURRENT_0_000_mA),
322 }, { /* 225/297MHz modes */
323 .pclk = UINT_MAX,
324 .pll0 = SOR_PLL_ICHPMP(1) | SOR_PLL_BG_V17_S(3) |
325 SOR_PLL_VCOCAP(0xf) | SOR_PLL_RESISTORSEL,
326 .pll1 = SOR_PLL_LOADADJ(3) | SOR_PLL_TMDS_TERMADJ(7)
327 | SOR_PLL_TMDS_TERM_ENABLE,
328 .pe_current = PE_CURRENT0(PE_CURRENT_0_mA_T114) |
329 PE_CURRENT1(PE_CURRENT_0_mA_T114) |
330 PE_CURRENT2(PE_CURRENT_0_mA_T114) |
331 PE_CURRENT3(PE_CURRENT_0_mA_T114),
332 .drive_current =
333 DRIVE_CURRENT_LANE0_T114(DRIVE_CURRENT_25_200_mA_T114) |
334 DRIVE_CURRENT_LANE1_T114(DRIVE_CURRENT_25_200_mA_T114) |
335 DRIVE_CURRENT_LANE2_T114(DRIVE_CURRENT_25_200_mA_T114) |
336 DRIVE_CURRENT_LANE3_T114(DRIVE_CURRENT_19_200_mA_T114),
337 .peak_current = PEAK_CURRENT_LANE0(PEAK_CURRENT_3_000_mA) |
338 PEAK_CURRENT_LANE1(PEAK_CURRENT_3_000_mA) |
339 PEAK_CURRENT_LANE2(PEAK_CURRENT_3_000_mA) |
340 PEAK_CURRENT_LANE3(PEAK_CURRENT_0_800_mA),
341 },
342};
343
Thierry Redingfb7be702013-11-15 16:07:32 +0100344static const struct tmds_config tegra124_tmds_config[] = {
345 { /* 480p/576p / 25.2MHz/27MHz modes */
346 .pclk = 27000000,
347 .pll0 = SOR_PLL_ICHPMP(1) | SOR_PLL_BG_V17_S(3) |
348 SOR_PLL_VCOCAP(0) | SOR_PLL_RESISTORSEL,
349 .pll1 = SOR_PLL_LOADADJ(3) | SOR_PLL_TMDS_TERMADJ(0),
350 .pe_current = PE_CURRENT0(PE_CURRENT_0_mA_T114) |
351 PE_CURRENT1(PE_CURRENT_0_mA_T114) |
352 PE_CURRENT2(PE_CURRENT_0_mA_T114) |
353 PE_CURRENT3(PE_CURRENT_0_mA_T114),
354 .drive_current =
355 DRIVE_CURRENT_LANE0_T114(DRIVE_CURRENT_10_400_mA_T114) |
356 DRIVE_CURRENT_LANE1_T114(DRIVE_CURRENT_10_400_mA_T114) |
357 DRIVE_CURRENT_LANE2_T114(DRIVE_CURRENT_10_400_mA_T114) |
358 DRIVE_CURRENT_LANE3_T114(DRIVE_CURRENT_10_400_mA_T114),
359 .peak_current = PEAK_CURRENT_LANE0(PEAK_CURRENT_0_000_mA) |
360 PEAK_CURRENT_LANE1(PEAK_CURRENT_0_000_mA) |
361 PEAK_CURRENT_LANE2(PEAK_CURRENT_0_000_mA) |
362 PEAK_CURRENT_LANE3(PEAK_CURRENT_0_000_mA),
363 }, { /* 720p / 74.25MHz modes */
364 .pclk = 74250000,
365 .pll0 = SOR_PLL_ICHPMP(1) | SOR_PLL_BG_V17_S(3) |
366 SOR_PLL_VCOCAP(1) | SOR_PLL_RESISTORSEL,
367 .pll1 = SOR_PLL_PE_EN | SOR_PLL_LOADADJ(3) |
368 SOR_PLL_TMDS_TERMADJ(0),
369 .pe_current = PE_CURRENT0(PE_CURRENT_15_mA_T114) |
370 PE_CURRENT1(PE_CURRENT_15_mA_T114) |
371 PE_CURRENT2(PE_CURRENT_15_mA_T114) |
372 PE_CURRENT3(PE_CURRENT_15_mA_T114),
373 .drive_current =
374 DRIVE_CURRENT_LANE0_T114(DRIVE_CURRENT_10_400_mA_T114) |
375 DRIVE_CURRENT_LANE1_T114(DRIVE_CURRENT_10_400_mA_T114) |
376 DRIVE_CURRENT_LANE2_T114(DRIVE_CURRENT_10_400_mA_T114) |
377 DRIVE_CURRENT_LANE3_T114(DRIVE_CURRENT_10_400_mA_T114),
378 .peak_current = PEAK_CURRENT_LANE0(PEAK_CURRENT_0_000_mA) |
379 PEAK_CURRENT_LANE1(PEAK_CURRENT_0_000_mA) |
380 PEAK_CURRENT_LANE2(PEAK_CURRENT_0_000_mA) |
381 PEAK_CURRENT_LANE3(PEAK_CURRENT_0_000_mA),
382 }, { /* 1080p / 148.5MHz modes */
383 .pclk = 148500000,
384 .pll0 = SOR_PLL_ICHPMP(1) | SOR_PLL_BG_V17_S(3) |
385 SOR_PLL_VCOCAP(3) | SOR_PLL_RESISTORSEL,
386 .pll1 = SOR_PLL_PE_EN | SOR_PLL_LOADADJ(3) |
387 SOR_PLL_TMDS_TERMADJ(0),
388 .pe_current = PE_CURRENT0(PE_CURRENT_10_mA_T114) |
389 PE_CURRENT1(PE_CURRENT_10_mA_T114) |
390 PE_CURRENT2(PE_CURRENT_10_mA_T114) |
391 PE_CURRENT3(PE_CURRENT_10_mA_T114),
392 .drive_current =
393 DRIVE_CURRENT_LANE0_T114(DRIVE_CURRENT_12_400_mA_T114) |
394 DRIVE_CURRENT_LANE1_T114(DRIVE_CURRENT_12_400_mA_T114) |
395 DRIVE_CURRENT_LANE2_T114(DRIVE_CURRENT_12_400_mA_T114) |
396 DRIVE_CURRENT_LANE3_T114(DRIVE_CURRENT_12_400_mA_T114),
397 .peak_current = PEAK_CURRENT_LANE0(PEAK_CURRENT_0_000_mA) |
398 PEAK_CURRENT_LANE1(PEAK_CURRENT_0_000_mA) |
399 PEAK_CURRENT_LANE2(PEAK_CURRENT_0_000_mA) |
400 PEAK_CURRENT_LANE3(PEAK_CURRENT_0_000_mA),
401 }, { /* 225/297MHz modes */
402 .pclk = UINT_MAX,
403 .pll0 = SOR_PLL_ICHPMP(1) | SOR_PLL_BG_V17_S(3) |
404 SOR_PLL_VCOCAP(0xf) | SOR_PLL_RESISTORSEL,
405 .pll1 = SOR_PLL_LOADADJ(3) | SOR_PLL_TMDS_TERMADJ(7)
406 | SOR_PLL_TMDS_TERM_ENABLE,
407 .pe_current = PE_CURRENT0(PE_CURRENT_0_mA_T114) |
408 PE_CURRENT1(PE_CURRENT_0_mA_T114) |
409 PE_CURRENT2(PE_CURRENT_0_mA_T114) |
410 PE_CURRENT3(PE_CURRENT_0_mA_T114),
411 .drive_current =
412 DRIVE_CURRENT_LANE0_T114(DRIVE_CURRENT_25_200_mA_T114) |
413 DRIVE_CURRENT_LANE1_T114(DRIVE_CURRENT_25_200_mA_T114) |
414 DRIVE_CURRENT_LANE2_T114(DRIVE_CURRENT_25_200_mA_T114) |
415 DRIVE_CURRENT_LANE3_T114(DRIVE_CURRENT_19_200_mA_T114),
416 .peak_current = PEAK_CURRENT_LANE0(PEAK_CURRENT_3_000_mA) |
417 PEAK_CURRENT_LANE1(PEAK_CURRENT_3_000_mA) |
418 PEAK_CURRENT_LANE2(PEAK_CURRENT_3_000_mA) |
419 PEAK_CURRENT_LANE3(PEAK_CURRENT_0_800_mA),
420 },
421};
422
Thierry Redingedec4af2012-11-15 21:28:23 +0000423static const struct tegra_hdmi_audio_config *
Thierry Reding2ccb3962015-01-15 13:43:18 +0100424tegra_hdmi_get_audio_config(unsigned int sample_rate, unsigned int pclk)
Thierry Redingedec4af2012-11-15 21:28:23 +0000425{
426 const struct tegra_hdmi_audio_config *table;
427
Thierry Reding2ccb3962015-01-15 13:43:18 +0100428 switch (sample_rate) {
Thierry Redingedec4af2012-11-15 21:28:23 +0000429 case 32000:
430 table = tegra_hdmi_audio_32k;
431 break;
432
433 case 44100:
434 table = tegra_hdmi_audio_44_1k;
435 break;
436
437 case 48000:
438 table = tegra_hdmi_audio_48k;
439 break;
440
441 case 88200:
442 table = tegra_hdmi_audio_88_2k;
443 break;
444
445 case 96000:
446 table = tegra_hdmi_audio_96k;
447 break;
448
449 case 176400:
450 table = tegra_hdmi_audio_176_4k;
451 break;
452
453 case 192000:
454 table = tegra_hdmi_audio_192k;
455 break;
456
457 default:
458 return NULL;
459 }
460
461 while (table->pclk) {
462 if (table->pclk == pclk)
463 return table;
464
465 table++;
466 }
467
468 return NULL;
469}
470
471static void tegra_hdmi_setup_audio_fs_tables(struct tegra_hdmi *hdmi)
472{
473 const unsigned int freqs[] = {
474 32000, 44100, 48000, 88200, 96000, 176400, 192000
475 };
476 unsigned int i;
477
478 for (i = 0; i < ARRAY_SIZE(freqs); i++) {
479 unsigned int f = freqs[i];
480 unsigned int eight_half;
Thierry Redingedec4af2012-11-15 21:28:23 +0000481 unsigned int delta;
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100482 u32 value;
Thierry Redingedec4af2012-11-15 21:28:23 +0000483
484 if (f > 96000)
485 delta = 2;
Thierry Reding17a8b6b2013-12-16 10:01:24 +0100486 else if (f > 48000)
Thierry Redingedec4af2012-11-15 21:28:23 +0000487 delta = 6;
488 else
489 delta = 9;
490
491 eight_half = (8 * HDMI_AUDIOCLK_FREQ) / (f * 128);
492 value = AUDIO_FS_LOW(eight_half - delta) |
493 AUDIO_FS_HIGH(eight_half + delta);
494 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_AUDIO_FS(i));
495 }
496}
497
Thierry Reding2ccb3962015-01-15 13:43:18 +0100498static void tegra_hdmi_write_aval(struct tegra_hdmi *hdmi, u32 value)
Thierry Redingedec4af2012-11-15 21:28:23 +0000499{
Thierry Reding2ccb3962015-01-15 13:43:18 +0100500 static const struct {
501 unsigned int sample_rate;
502 unsigned int offset;
503 } regs[] = {
504 { 32000, HDMI_NV_PDISP_SOR_AUDIO_AVAL_0320 },
505 { 44100, HDMI_NV_PDISP_SOR_AUDIO_AVAL_0441 },
506 { 48000, HDMI_NV_PDISP_SOR_AUDIO_AVAL_0480 },
507 { 88200, HDMI_NV_PDISP_SOR_AUDIO_AVAL_0882 },
508 { 96000, HDMI_NV_PDISP_SOR_AUDIO_AVAL_0960 },
509 { 176400, HDMI_NV_PDISP_SOR_AUDIO_AVAL_1764 },
510 { 192000, HDMI_NV_PDISP_SOR_AUDIO_AVAL_1920 },
511 };
512 unsigned int i;
513
514 for (i = 0; i < ARRAY_SIZE(regs); i++) {
515 if (regs[i].sample_rate == hdmi->audio_sample_rate) {
516 tegra_hdmi_writel(hdmi, value, regs[i].offset);
517 break;
518 }
519 }
520}
521
522static int tegra_hdmi_setup_audio(struct tegra_hdmi *hdmi)
523{
Thierry Redingedec4af2012-11-15 21:28:23 +0000524 const struct tegra_hdmi_audio_config *config;
Thierry Reding2ccb3962015-01-15 13:43:18 +0100525 u32 source, value;
Thierry Redingedec4af2012-11-15 21:28:23 +0000526
527 switch (hdmi->audio_source) {
528 case HDA:
Thierry Reding2ccb3962015-01-15 13:43:18 +0100529 if (hdmi->config->has_hda)
530 source = SOR_AUDIO_CNTRL0_SOURCE_SELECT_HDAL;
531 else
532 return -EINVAL;
533
Thierry Redingedec4af2012-11-15 21:28:23 +0000534 break;
535
536 case SPDIF:
Thierry Reding2ccb3962015-01-15 13:43:18 +0100537 if (hdmi->config->has_hda)
538 source = SOR_AUDIO_CNTRL0_SOURCE_SELECT_SPDIF;
539 else
540 source = AUDIO_CNTRL0_SOURCE_SELECT_SPDIF;
Thierry Redingedec4af2012-11-15 21:28:23 +0000541 break;
542
543 default:
Thierry Reding2ccb3962015-01-15 13:43:18 +0100544 if (hdmi->config->has_hda)
545 source = SOR_AUDIO_CNTRL0_SOURCE_SELECT_AUTO;
546 else
547 source = AUDIO_CNTRL0_SOURCE_SELECT_AUTO;
Thierry Redingedec4af2012-11-15 21:28:23 +0000548 break;
549 }
550
Thierry Reding2ccb3962015-01-15 13:43:18 +0100551 /*
552 * Tegra30 and later use a slightly modified version of the register
553 * layout to accomodate for changes related to supporting HDA as the
554 * audio input source for HDMI. The source select field has moved to
555 * the SOR_AUDIO_CNTRL0 register, but the error tolerance and frames
556 * per block fields remain in the AUDIO_CNTRL0 register.
557 */
558 if (hdmi->config->has_hda) {
559 /*
560 * Inject null samples into the audio FIFO for every frame in
561 * which the codec did not receive any samples. This applies
562 * to stereo LPCM only.
563 *
564 * XXX: This seems to be a remnant of MCP days when this was
565 * used to work around issues with monitors not being able to
566 * play back system startup sounds early. It is possibly not
567 * needed on Linux at all.
568 */
569 if (hdmi->audio_channels == 2)
570 value = SOR_AUDIO_CNTRL0_INJECT_NULLSMPL;
571 else
572 value = 0;
Thierry Redingedec4af2012-11-15 21:28:23 +0000573
Thierry Reding2ccb3962015-01-15 13:43:18 +0100574 value |= source;
575
576 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_AUDIO_CNTRL0);
Thierry Redingedec4af2012-11-15 21:28:23 +0000577 }
578
Thierry Reding2ccb3962015-01-15 13:43:18 +0100579 /*
580 * On Tegra20, HDA is not a supported audio source and the source
581 * select field is part of the AUDIO_CNTRL0 register.
582 */
583 value = AUDIO_CNTRL0_FRAMES_PER_BLOCK(0xc0) |
584 AUDIO_CNTRL0_ERROR_TOLERANCE(6);
585
586 if (!hdmi->config->has_hda)
587 value |= source;
588
589 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_AUDIO_CNTRL0);
590
591 /*
592 * Advertise support for High Bit-Rate on Tegra114 and later.
593 */
594 if (hdmi->config->has_hbr) {
595 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_SOR_AUDIO_SPARE0);
596 value |= SOR_AUDIO_SPARE0_HBR_ENABLE;
597 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_AUDIO_SPARE0);
598 }
599
600 config = tegra_hdmi_get_audio_config(hdmi->audio_sample_rate,
601 hdmi->pixel_clock);
Thierry Redingedec4af2012-11-15 21:28:23 +0000602 if (!config) {
Thierry Reding2ccb3962015-01-15 13:43:18 +0100603 dev_err(hdmi->dev,
604 "cannot set audio to %u Hz at %u Hz pixel clock\n",
605 hdmi->audio_sample_rate, hdmi->pixel_clock);
Thierry Redingedec4af2012-11-15 21:28:23 +0000606 return -EINVAL;
607 }
608
609 tegra_hdmi_writel(hdmi, 0, HDMI_NV_PDISP_HDMI_ACR_CTRL);
610
611 value = AUDIO_N_RESETF | AUDIO_N_GENERATE_ALTERNATE |
612 AUDIO_N_VALUE(config->n - 1);
613 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_AUDIO_N);
614
615 tegra_hdmi_writel(hdmi, ACR_SUBPACK_N(config->n) | ACR_ENABLE,
616 HDMI_NV_PDISP_HDMI_ACR_0441_SUBPACK_HIGH);
617
Thierry Reding2ccb3962015-01-15 13:43:18 +0100618 tegra_hdmi_writel(hdmi, ACR_SUBPACK_CTS(config->cts),
619 HDMI_NV_PDISP_HDMI_ACR_0441_SUBPACK_LOW);
Thierry Redingedec4af2012-11-15 21:28:23 +0000620
621 value = SPARE_HW_CTS | SPARE_FORCE_SW_CTS | SPARE_CTS_RESET_VAL(1);
622 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_SPARE);
623
624 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_AUDIO_N);
625 value &= ~AUDIO_N_RESETF;
626 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_AUDIO_N);
627
Thierry Reding2ccb3962015-01-15 13:43:18 +0100628 if (hdmi->config->has_hda)
629 tegra_hdmi_write_aval(hdmi, config->aval);
Thierry Redingedec4af2012-11-15 21:28:23 +0000630
631 tegra_hdmi_setup_audio_fs_tables(hdmi);
632
633 return 0;
634}
635
Thierry Reding2ccb3962015-01-15 13:43:18 +0100636static void tegra_hdmi_disable_audio(struct tegra_hdmi *hdmi)
637{
638 u32 value;
639
640 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
641 value &= ~GENERIC_CTRL_AUDIO;
642 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
643}
644
645static void tegra_hdmi_enable_audio(struct tegra_hdmi *hdmi)
646{
647 u32 value;
648
649 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
650 value |= GENERIC_CTRL_AUDIO;
651 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
652}
653
Thierry Reding52345492015-08-07 16:00:43 +0200654static void tegra_hdmi_write_eld(struct tegra_hdmi *hdmi)
655{
656 size_t length = drm_eld_size(hdmi->output.connector.eld), i;
657 u32 value;
658
659 for (i = 0; i < length; i++)
660 tegra_hdmi_writel(hdmi, i << 8 | hdmi->output.connector.eld[i],
661 HDMI_NV_PDISP_SOR_AUDIO_HDA_ELD_BUFWR);
662
663 /*
664 * The HDA codec will always report an ELD buffer size of 96 bytes and
665 * the HDA codec driver will check that each byte read from the buffer
666 * is valid. Therefore every byte must be written, even if no 96 bytes
667 * were parsed from EDID.
668 */
669 for (i = length; i < HDMI_ELD_BUFFER_SIZE; i++)
670 tegra_hdmi_writel(hdmi, i << 8 | 0,
671 HDMI_NV_PDISP_SOR_AUDIO_HDA_ELD_BUFWR);
672
673 value = SOR_AUDIO_HDA_PRESENSE_VALID | SOR_AUDIO_HDA_PRESENSE_PRESENT;
674 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_AUDIO_HDA_PRESENSE);
675}
676
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100677static inline u32 tegra_hdmi_subpack(const u8 *ptr, size_t size)
Thierry Redingedec4af2012-11-15 21:28:23 +0000678{
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100679 u32 value = 0;
Thierry Redingedec4af2012-11-15 21:28:23 +0000680 size_t i;
Thierry Redingedec4af2012-11-15 21:28:23 +0000681
Thierry Redingac24c222012-11-23 15:14:00 +0100682 for (i = size; i > 0; i--)
683 value = (value << 8) | ptr[i - 1];
Thierry Redingedec4af2012-11-15 21:28:23 +0000684
Thierry Redingac24c222012-11-23 15:14:00 +0100685 return value;
686}
Thierry Redingedec4af2012-11-15 21:28:23 +0000687
Thierry Redingac24c222012-11-23 15:14:00 +0100688static void tegra_hdmi_write_infopack(struct tegra_hdmi *hdmi, const void *data,
689 size_t size)
690{
691 const u8 *ptr = data;
692 unsigned long offset;
Thierry Redingac24c222012-11-23 15:14:00 +0100693 size_t i, j;
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100694 u32 value;
Thierry Redingedec4af2012-11-15 21:28:23 +0000695
Thierry Redingac24c222012-11-23 15:14:00 +0100696 switch (ptr[0]) {
697 case HDMI_INFOFRAME_TYPE_AVI:
698 offset = HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_HEADER;
699 break;
700
701 case HDMI_INFOFRAME_TYPE_AUDIO:
702 offset = HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_HEADER;
703 break;
704
705 case HDMI_INFOFRAME_TYPE_VENDOR:
706 offset = HDMI_NV_PDISP_HDMI_GENERIC_HEADER;
707 break;
708
709 default:
710 dev_err(hdmi->dev, "unsupported infoframe type: %02x\n",
711 ptr[0]);
712 return;
713 }
714
715 value = INFOFRAME_HEADER_TYPE(ptr[0]) |
716 INFOFRAME_HEADER_VERSION(ptr[1]) |
717 INFOFRAME_HEADER_LEN(ptr[2]);
Thierry Redingedec4af2012-11-15 21:28:23 +0000718 tegra_hdmi_writel(hdmi, value, offset);
Thierry Redingac24c222012-11-23 15:14:00 +0100719 offset++;
Thierry Redingedec4af2012-11-15 21:28:23 +0000720
Thierry Redingac24c222012-11-23 15:14:00 +0100721 /*
722 * Each subpack contains 7 bytes, divided into:
723 * - subpack_low: bytes 0 - 3
724 * - subpack_high: bytes 4 - 6 (with byte 7 padded to 0x00)
Thierry Redingedec4af2012-11-15 21:28:23 +0000725 */
Thierry Redingac24c222012-11-23 15:14:00 +0100726 for (i = 3, j = 0; i < size; i += 7, j += 8) {
727 size_t rem = size - i, num = min_t(size_t, rem, 4);
Thierry Redingedec4af2012-11-15 21:28:23 +0000728
Thierry Redingac24c222012-11-23 15:14:00 +0100729 value = tegra_hdmi_subpack(&ptr[i], num);
730 tegra_hdmi_writel(hdmi, value, offset++);
Thierry Redingedec4af2012-11-15 21:28:23 +0000731
Thierry Redingac24c222012-11-23 15:14:00 +0100732 num = min_t(size_t, rem - num, 3);
Thierry Redingedec4af2012-11-15 21:28:23 +0000733
Thierry Redingac24c222012-11-23 15:14:00 +0100734 value = tegra_hdmi_subpack(&ptr[i + 4], num);
735 tegra_hdmi_writel(hdmi, value, offset++);
Thierry Redingedec4af2012-11-15 21:28:23 +0000736 }
737}
738
739static void tegra_hdmi_setup_avi_infoframe(struct tegra_hdmi *hdmi,
740 struct drm_display_mode *mode)
741{
742 struct hdmi_avi_infoframe frame;
Thierry Redingac24c222012-11-23 15:14:00 +0100743 u8 buffer[17];
744 ssize_t err;
Thierry Redingedec4af2012-11-15 21:28:23 +0000745
Shashank Sharma0c1f5282017-07-13 21:03:07 +0530746 err = drm_hdmi_avi_infoframe_from_display_mode(&frame, mode, false);
Thierry Redingac24c222012-11-23 15:14:00 +0100747 if (err < 0) {
748 dev_err(hdmi->dev, "failed to setup AVI infoframe: %zd\n", err);
749 return;
Thierry Redingedec4af2012-11-15 21:28:23 +0000750 }
751
Thierry Redingac24c222012-11-23 15:14:00 +0100752 err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
753 if (err < 0) {
754 dev_err(hdmi->dev, "failed to pack AVI infoframe: %zd\n", err);
755 return;
756 }
757
758 tegra_hdmi_write_infopack(hdmi, buffer, err);
Thierry Reding2ccb3962015-01-15 13:43:18 +0100759}
Thierry Redingedec4af2012-11-15 21:28:23 +0000760
Thierry Reding2ccb3962015-01-15 13:43:18 +0100761static void tegra_hdmi_disable_avi_infoframe(struct tegra_hdmi *hdmi)
762{
763 u32 value;
764
765 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_CTRL);
766 value &= ~INFOFRAME_CTRL_ENABLE;
767 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_CTRL);
768}
769
770static void tegra_hdmi_enable_avi_infoframe(struct tegra_hdmi *hdmi)
771{
772 u32 value;
773
774 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_CTRL);
775 value |= INFOFRAME_CTRL_ENABLE;
776 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_CTRL);
Thierry Redingedec4af2012-11-15 21:28:23 +0000777}
778
779static void tegra_hdmi_setup_audio_infoframe(struct tegra_hdmi *hdmi)
780{
781 struct hdmi_audio_infoframe frame;
Thierry Redingac24c222012-11-23 15:14:00 +0100782 u8 buffer[14];
783 ssize_t err;
Thierry Redingedec4af2012-11-15 21:28:23 +0000784
Thierry Redingac24c222012-11-23 15:14:00 +0100785 err = hdmi_audio_infoframe_init(&frame);
786 if (err < 0) {
Thierry Redingef284c72013-10-16 19:51:22 +0200787 dev_err(hdmi->dev, "failed to setup audio infoframe: %zd\n",
Thierry Redingac24c222012-11-23 15:14:00 +0100788 err);
789 return;
790 }
Thierry Redingedec4af2012-11-15 21:28:23 +0000791
Thierry Reding2ccb3962015-01-15 13:43:18 +0100792 frame.channels = hdmi->audio_channels;
Thierry Redingac24c222012-11-23 15:14:00 +0100793
794 err = hdmi_audio_infoframe_pack(&frame, buffer, sizeof(buffer));
795 if (err < 0) {
796 dev_err(hdmi->dev, "failed to pack audio infoframe: %zd\n",
797 err);
798 return;
799 }
800
801 /*
802 * The audio infoframe has only one set of subpack registers, so the
803 * infoframe needs to be truncated. One set of subpack registers can
804 * contain 7 bytes. Including the 3 byte header only the first 10
805 * bytes can be programmed.
806 */
Thierry Redingef284c72013-10-16 19:51:22 +0200807 tegra_hdmi_write_infopack(hdmi, buffer, min_t(size_t, 10, err));
Thierry Reding2ccb3962015-01-15 13:43:18 +0100808}
Thierry Redingedec4af2012-11-15 21:28:23 +0000809
Thierry Reding2ccb3962015-01-15 13:43:18 +0100810static void tegra_hdmi_disable_audio_infoframe(struct tegra_hdmi *hdmi)
811{
812 u32 value;
813
814 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_CTRL);
815 value &= ~INFOFRAME_CTRL_ENABLE;
816 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_CTRL);
817}
818
819static void tegra_hdmi_enable_audio_infoframe(struct tegra_hdmi *hdmi)
820{
821 u32 value;
822
823 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_CTRL);
824 value |= INFOFRAME_CTRL_ENABLE;
825 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_CTRL);
Thierry Redingedec4af2012-11-15 21:28:23 +0000826}
827
828static void tegra_hdmi_setup_stereo_infoframe(struct tegra_hdmi *hdmi)
829{
Lespiau, Damienae84b902013-08-19 16:59:02 +0100830 struct hdmi_vendor_infoframe frame;
Thierry Redingac24c222012-11-23 15:14:00 +0100831 u8 buffer[10];
832 ssize_t err;
Thierry Redingedec4af2012-11-15 21:28:23 +0000833
Lespiau, Damienae84b902013-08-19 16:59:02 +0100834 hdmi_vendor_infoframe_init(&frame);
Lespiau, Damiena26a58e82013-08-19 16:58:59 +0100835 frame.s3d_struct = HDMI_3D_STRUCTURE_FRAME_PACKING;
Thierry Redingac24c222012-11-23 15:14:00 +0100836
Lespiau, Damienae84b902013-08-19 16:59:02 +0100837 err = hdmi_vendor_infoframe_pack(&frame, buffer, sizeof(buffer));
Thierry Redingac24c222012-11-23 15:14:00 +0100838 if (err < 0) {
839 dev_err(hdmi->dev, "failed to pack vendor infoframe: %zd\n",
840 err);
841 return;
842 }
843
844 tegra_hdmi_write_infopack(hdmi, buffer, err);
Thierry Reding2ccb3962015-01-15 13:43:18 +0100845}
846
847static void tegra_hdmi_disable_stereo_infoframe(struct tegra_hdmi *hdmi)
848{
849 u32 value;
850
851 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
852 value &= ~GENERIC_CTRL_ENABLE;
853 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
854}
855
856static void tegra_hdmi_enable_stereo_infoframe(struct tegra_hdmi *hdmi)
857{
858 u32 value;
Thierry Redingedec4af2012-11-15 21:28:23 +0000859
860 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
861 value |= GENERIC_CTRL_ENABLE;
862 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
863}
864
865static void tegra_hdmi_setup_tmds(struct tegra_hdmi *hdmi,
866 const struct tmds_config *tmds)
867{
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100868 u32 value;
Thierry Redingedec4af2012-11-15 21:28:23 +0000869
870 tegra_hdmi_writel(hdmi, tmds->pll0, HDMI_NV_PDISP_SOR_PLL0);
871 tegra_hdmi_writel(hdmi, tmds->pll1, HDMI_NV_PDISP_SOR_PLL1);
872 tegra_hdmi_writel(hdmi, tmds->pe_current, HDMI_NV_PDISP_PE_CURRENT);
873
Thierry Reding59af0592013-10-14 09:43:05 +0200874 tegra_hdmi_writel(hdmi, tmds->drive_current,
875 HDMI_NV_PDISP_SOR_LANE_DRIVE_CURRENT);
876
877 value = tegra_hdmi_readl(hdmi, hdmi->config->fuse_override_offset);
878 value |= hdmi->config->fuse_override_value;
879 tegra_hdmi_writel(hdmi, value, hdmi->config->fuse_override_offset);
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +0200880
881 if (hdmi->config->has_sor_io_peak_current)
882 tegra_hdmi_writel(hdmi, tmds->peak_current,
883 HDMI_NV_PDISP_SOR_IO_PEAK_CURRENT);
Thierry Redingedec4af2012-11-15 21:28:23 +0000884}
885
Mikko Perttunen9f159122013-08-28 18:48:38 +0300886static bool tegra_output_is_hdmi(struct tegra_output *output)
887{
888 struct edid *edid;
889
890 if (!output->connector.edid_blob_ptr)
891 return false;
892
893 edid = (struct edid *)output->connector.edid_blob_ptr->data;
894
895 return drm_detect_hdmi_monitor(edid);
896}
897
Thierry Reding2ccb3962015-01-15 13:43:18 +0100898static enum drm_connector_status
899tegra_hdmi_connector_detect(struct drm_connector *connector, bool force)
900{
901 struct tegra_output *output = connector_to_output(connector);
902 struct tegra_hdmi *hdmi = to_hdmi(output);
903 enum drm_connector_status status;
904
905 status = tegra_output_connector_detect(connector, force);
906 if (status == connector_status_connected)
907 return status;
908
909 tegra_hdmi_writel(hdmi, 0, HDMI_NV_PDISP_SOR_AUDIO_HDA_PRESENSE);
910 return status;
911}
912
Thierry Reding59682712014-11-28 16:50:59 +0100913static const struct drm_connector_funcs tegra_hdmi_connector_funcs = {
Thierry Reding9d441892014-11-24 17:02:53 +0100914 .reset = drm_atomic_helper_connector_reset,
Thierry Reding2ccb3962015-01-15 13:43:18 +0100915 .detect = tegra_hdmi_connector_detect,
Thierry Reding59682712014-11-28 16:50:59 +0100916 .fill_modes = drm_helper_probe_single_connector_modes,
917 .destroy = tegra_output_connector_destroy,
Thierry Reding9d441892014-11-24 17:02:53 +0100918 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Thierry Reding4aa3df72014-11-24 16:27:13 +0100919 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Thierry Reding59682712014-11-28 16:50:59 +0100920};
921
922static enum drm_mode_status
923tegra_hdmi_connector_mode_valid(struct drm_connector *connector,
924 struct drm_display_mode *mode)
925{
926 struct tegra_output *output = connector_to_output(connector);
927 struct tegra_hdmi *hdmi = to_hdmi(output);
928 unsigned long pclk = mode->clock * 1000;
929 enum drm_mode_status status = MODE_OK;
930 struct clk *parent;
931 long err;
932
933 parent = clk_get_parent(hdmi->clk_parent);
934
935 err = clk_round_rate(parent, pclk * 4);
936 if (err <= 0)
937 status = MODE_NOCLOCK;
938
939 return status;
940}
941
942static const struct drm_connector_helper_funcs
943tegra_hdmi_connector_helper_funcs = {
944 .get_modes = tegra_output_connector_get_modes,
945 .mode_valid = tegra_hdmi_connector_mode_valid,
Thierry Reding59682712014-11-28 16:50:59 +0100946};
947
948static const struct drm_encoder_funcs tegra_hdmi_encoder_funcs = {
949 .destroy = tegra_output_encoder_destroy,
950};
951
Thierry Reding29871b22015-07-29 09:46:40 +0200952static void tegra_hdmi_encoder_disable(struct drm_encoder *encoder)
Thierry Reding59682712014-11-28 16:50:59 +0100953{
Thierry Reding2ccb3962015-01-15 13:43:18 +0100954 struct tegra_output *output = encoder_to_output(encoder);
Thierry Reding29871b22015-07-29 09:46:40 +0200955 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
Thierry Reding2ccb3962015-01-15 13:43:18 +0100956 struct tegra_hdmi *hdmi = to_hdmi(output);
Thierry Reding29871b22015-07-29 09:46:40 +0200957 u32 value;
958
959 /*
960 * The following accesses registers of the display controller, so make
961 * sure it's only executed when the output is attached to one.
962 */
963 if (dc) {
964 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
965 value &= ~HDMI_ENABLE;
966 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
967
968 tegra_dc_commit(dc);
969 }
Thierry Reding2ccb3962015-01-15 13:43:18 +0100970
971 if (!hdmi->dvi) {
972 if (hdmi->stereo)
973 tegra_hdmi_disable_stereo_infoframe(hdmi);
974
975 tegra_hdmi_disable_audio_infoframe(hdmi);
976 tegra_hdmi_disable_avi_infoframe(hdmi);
977 tegra_hdmi_disable_audio(hdmi);
978 }
Thierry Reding2ccb3962015-01-15 13:43:18 +0100979
Thierry Reding52345492015-08-07 16:00:43 +0200980 tegra_hdmi_writel(hdmi, 0, HDMI_NV_PDISP_INT_ENABLE);
981 tegra_hdmi_writel(hdmi, 0, HDMI_NV_PDISP_INT_MASK);
Thierry Reding2ccb3962015-01-15 13:43:18 +0100982
Thierry Reding52345492015-08-07 16:00:43 +0200983 pm_runtime_put(hdmi->dev);
Thierry Reding59682712014-11-28 16:50:59 +0100984}
985
Thierry Reding29871b22015-07-29 09:46:40 +0200986static void tegra_hdmi_encoder_enable(struct drm_encoder *encoder)
Thierry Reding59682712014-11-28 16:50:59 +0100987{
Thierry Reding29871b22015-07-29 09:46:40 +0200988 struct drm_display_mode *mode = &encoder->crtc->state->adjusted_mode;
Thierry Redingedec4af2012-11-15 21:28:23 +0000989 unsigned int h_sync_width, h_front_porch, h_back_porch, i, rekey;
Thierry Reding59682712014-11-28 16:50:59 +0100990 struct tegra_output *output = encoder_to_output(encoder);
991 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
Thierry Redingedec4af2012-11-15 21:28:23 +0000992 struct tegra_hdmi *hdmi = to_hdmi(output);
Thierry Reding2ccb3962015-01-15 13:43:18 +0100993 unsigned int pulse_start, div82;
Thierry Redingedec4af2012-11-15 21:28:23 +0000994 int retries = 1000;
Thierry Reding4ee8cee2014-12-08 16:25:14 +0100995 u32 value;
Thierry Redingedec4af2012-11-15 21:28:23 +0000996 int err;
997
Thierry Reding52345492015-08-07 16:00:43 +0200998 pm_runtime_get_sync(hdmi->dev);
Mikko Perttunen9f159122013-08-28 18:48:38 +0300999
Thierry Reding52345492015-08-07 16:00:43 +02001000 /*
1001 * Enable and unmask the HDA codec SCRATCH0 register interrupt. This
1002 * is used for interoperability between the HDA codec driver and the
1003 * HDMI driver.
1004 */
1005 tegra_hdmi_writel(hdmi, INT_CODEC_SCRATCH0, HDMI_NV_PDISP_INT_ENABLE);
1006 tegra_hdmi_writel(hdmi, INT_CODEC_SCRATCH0, HDMI_NV_PDISP_INT_MASK);
1007
Thierry Reding2ccb3962015-01-15 13:43:18 +01001008 hdmi->pixel_clock = mode->clock * 1000;
Thierry Redingedec4af2012-11-15 21:28:23 +00001009 h_sync_width = mode->hsync_end - mode->hsync_start;
Lucas Stach40495082012-12-19 21:38:52 +00001010 h_back_porch = mode->htotal - mode->hsync_end;
1011 h_front_porch = mode->hsync_start - mode->hdisplay;
Thierry Redingedec4af2012-11-15 21:28:23 +00001012
Thierry Reding2ccb3962015-01-15 13:43:18 +01001013 err = clk_set_rate(hdmi->clk, hdmi->pixel_clock);
Thierry Redingc03bf1b2015-02-18 10:34:08 +01001014 if (err < 0) {
1015 dev_err(hdmi->dev, "failed to set HDMI clock frequency: %d\n",
1016 err);
1017 }
1018
1019 DRM_DEBUG_KMS("HDMI clock rate: %lu Hz\n", clk_get_rate(hdmi->clk));
1020
Thierry Reding8c8282c2014-04-16 10:46:24 +02001021 /* power up sequence */
1022 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_SOR_PLL0);
1023 value &= ~SOR_PLL_PDBG;
1024 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_PLL0);
1025
1026 usleep_range(10, 20);
1027
1028 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_SOR_PLL0);
1029 value &= ~SOR_PLL_PWR;
1030 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_PLL0);
1031
Thierry Redingedec4af2012-11-15 21:28:23 +00001032 tegra_dc_writel(dc, VSYNC_H_POSITION(1),
1033 DC_DISP_DISP_TIMING_OPTIONS);
Thierry Reding472a6d12015-08-05 16:39:55 +02001034 tegra_dc_writel(dc, DITHER_CONTROL_DISABLE | BASE_COLOR_SIZE_888,
Thierry Redingedec4af2012-11-15 21:28:23 +00001035 DC_DISP_DISP_COLOR_CONTROL);
1036
1037 /* video_preamble uses h_pulse2 */
1038 pulse_start = 1 + h_sync_width + h_back_porch - 10;
1039
Thierry Reding8fd3ffa2015-04-27 14:48:35 +02001040 tegra_dc_writel(dc, H_PULSE2_ENABLE, DC_DISP_DISP_SIGNAL_OPTIONS0);
Thierry Redingedec4af2012-11-15 21:28:23 +00001041
1042 value = PULSE_MODE_NORMAL | PULSE_POLARITY_HIGH | PULSE_QUAL_VACTIVE |
1043 PULSE_LAST_END_A;
1044 tegra_dc_writel(dc, value, DC_DISP_H_PULSE2_CONTROL);
1045
1046 value = PULSE_START(pulse_start) | PULSE_END(pulse_start + 8);
1047 tegra_dc_writel(dc, value, DC_DISP_H_PULSE2_POSITION_A);
1048
1049 value = VSYNC_WINDOW_END(0x210) | VSYNC_WINDOW_START(0x200) |
1050 VSYNC_WINDOW_ENABLE;
1051 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_VSYNC_WINDOW);
1052
1053 if (dc->pipe)
1054 value = HDMI_SRC_DISPLAYB;
1055 else
1056 value = HDMI_SRC_DISPLAYA;
1057
1058 if ((mode->hdisplay == 720) && ((mode->vdisplay == 480) ||
1059 (mode->vdisplay == 576)))
1060 tegra_hdmi_writel(hdmi,
1061 value | ARM_VIDEO_RANGE_FULL,
1062 HDMI_NV_PDISP_INPUT_CONTROL);
1063 else
1064 tegra_hdmi_writel(hdmi,
1065 value | ARM_VIDEO_RANGE_LIMITED,
1066 HDMI_NV_PDISP_INPUT_CONTROL);
1067
1068 div82 = clk_get_rate(hdmi->clk) / 1000000 * 4;
1069 value = SOR_REFCLK_DIV_INT(div82 >> 2) | SOR_REFCLK_DIV_FRAC(div82);
1070 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_REFCLK);
1071
Thierry Reding2ccb3962015-01-15 13:43:18 +01001072 hdmi->dvi = !tegra_output_is_hdmi(output);
Thierry Redingedec4af2012-11-15 21:28:23 +00001073 if (!hdmi->dvi) {
Thierry Reding2ccb3962015-01-15 13:43:18 +01001074 err = tegra_hdmi_setup_audio(hdmi);
Thierry Redingedec4af2012-11-15 21:28:23 +00001075 if (err < 0)
1076 hdmi->dvi = true;
1077 }
1078
Thierry Reding2ccb3962015-01-15 13:43:18 +01001079 if (hdmi->config->has_hda)
1080 tegra_hdmi_write_eld(hdmi);
Thierry Redingedec4af2012-11-15 21:28:23 +00001081
1082 rekey = HDMI_REKEY_DEFAULT;
1083 value = HDMI_CTRL_REKEY(rekey);
1084 value |= HDMI_CTRL_MAX_AC_PACKET((h_sync_width + h_back_porch +
1085 h_front_porch - rekey - 18) / 32);
1086
1087 if (!hdmi->dvi)
1088 value |= HDMI_CTRL_ENABLE;
1089
1090 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_HDMI_CTRL);
1091
Thierry Reding2ccb3962015-01-15 13:43:18 +01001092 if (!hdmi->dvi) {
1093 tegra_hdmi_setup_avi_infoframe(hdmi, mode);
1094 tegra_hdmi_setup_audio_infoframe(hdmi);
Thierry Redingedec4af2012-11-15 21:28:23 +00001095
Thierry Reding2ccb3962015-01-15 13:43:18 +01001096 if (hdmi->stereo)
1097 tegra_hdmi_setup_stereo_infoframe(hdmi);
1098 }
Thierry Redingedec4af2012-11-15 21:28:23 +00001099
1100 /* TMDS CONFIG */
Thierry Reding59af0592013-10-14 09:43:05 +02001101 for (i = 0; i < hdmi->config->num_tmds; i++) {
Thierry Reding2ccb3962015-01-15 13:43:18 +01001102 if (hdmi->pixel_clock <= hdmi->config->tmds[i].pclk) {
Thierry Reding59af0592013-10-14 09:43:05 +02001103 tegra_hdmi_setup_tmds(hdmi, &hdmi->config->tmds[i]);
Thierry Redingedec4af2012-11-15 21:28:23 +00001104 break;
1105 }
1106 }
1107
1108 tegra_hdmi_writel(hdmi,
Thierry Reding5c1c0712015-01-28 16:32:52 +01001109 SOR_SEQ_PU_PC(0) |
Thierry Redingedec4af2012-11-15 21:28:23 +00001110 SOR_SEQ_PU_PC_ALT(0) |
1111 SOR_SEQ_PD_PC(8) |
1112 SOR_SEQ_PD_PC_ALT(8),
1113 HDMI_NV_PDISP_SOR_SEQ_CTL);
1114
1115 value = SOR_SEQ_INST_WAIT_TIME(1) |
1116 SOR_SEQ_INST_WAIT_UNITS_VSYNC |
1117 SOR_SEQ_INST_HALT |
1118 SOR_SEQ_INST_PIN_A_LOW |
1119 SOR_SEQ_INST_PIN_B_LOW |
1120 SOR_SEQ_INST_DRIVE_PWM_OUT_LO;
1121
1122 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_SEQ_INST(0));
1123 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_SEQ_INST(8));
1124
Thierry Reding9cbfc732014-04-16 10:47:36 +02001125 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_SOR_CSTM);
Thierry Redingedec4af2012-11-15 21:28:23 +00001126 value &= ~SOR_CSTM_ROTCLK(~0);
1127 value |= SOR_CSTM_ROTCLK(2);
Thierry Reding9cbfc732014-04-16 10:47:36 +02001128 value |= SOR_CSTM_PLLDIV;
1129 value &= ~SOR_CSTM_LVDS_ENABLE;
1130 value &= ~SOR_CSTM_MODE_MASK;
1131 value |= SOR_CSTM_MODE_TMDS;
Thierry Redingedec4af2012-11-15 21:28:23 +00001132 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_CSTM);
1133
Thierry Redingedec4af2012-11-15 21:28:23 +00001134 /* start SOR */
1135 tegra_hdmi_writel(hdmi,
1136 SOR_PWR_NORMAL_STATE_PU |
1137 SOR_PWR_NORMAL_START_NORMAL |
1138 SOR_PWR_SAFE_STATE_PD |
1139 SOR_PWR_SETTING_NEW_TRIGGER,
1140 HDMI_NV_PDISP_SOR_PWR);
1141 tegra_hdmi_writel(hdmi,
1142 SOR_PWR_NORMAL_STATE_PU |
1143 SOR_PWR_NORMAL_START_NORMAL |
1144 SOR_PWR_SAFE_STATE_PD |
1145 SOR_PWR_SETTING_NEW_DONE,
1146 HDMI_NV_PDISP_SOR_PWR);
1147
1148 do {
1149 BUG_ON(--retries < 0);
1150 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_SOR_PWR);
1151 } while (value & SOR_PWR_SETTING_NEW_PENDING);
1152
1153 value = SOR_STATE_ASY_CRCMODE_COMPLETE |
1154 SOR_STATE_ASY_OWNER_HEAD0 |
1155 SOR_STATE_ASY_SUBOWNER_BOTH |
1156 SOR_STATE_ASY_PROTOCOL_SINGLE_TMDS_A |
1157 SOR_STATE_ASY_DEPOL_POS;
1158
1159 /* setup sync polarities */
1160 if (mode->flags & DRM_MODE_FLAG_PHSYNC)
1161 value |= SOR_STATE_ASY_HSYNCPOL_POS;
1162
1163 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1164 value |= SOR_STATE_ASY_HSYNCPOL_NEG;
1165
1166 if (mode->flags & DRM_MODE_FLAG_PVSYNC)
1167 value |= SOR_STATE_ASY_VSYNCPOL_POS;
1168
1169 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1170 value |= SOR_STATE_ASY_VSYNCPOL_NEG;
1171
1172 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_STATE2);
1173
1174 value = SOR_STATE_ASY_HEAD_OPMODE_AWAKE | SOR_STATE_ASY_ORMODE_NORMAL;
1175 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_SOR_STATE1);
1176
1177 tegra_hdmi_writel(hdmi, 0, HDMI_NV_PDISP_SOR_STATE0);
1178 tegra_hdmi_writel(hdmi, SOR_STATE_UPDATE, HDMI_NV_PDISP_SOR_STATE0);
1179 tegra_hdmi_writel(hdmi, value | SOR_STATE_ATTACHED,
1180 HDMI_NV_PDISP_SOR_STATE1);
1181 tegra_hdmi_writel(hdmi, 0, HDMI_NV_PDISP_SOR_STATE0);
1182
Thierry Reding72d30282013-12-12 11:06:55 +01001183 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
1184 value |= HDMI_ENABLE;
1185 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
Thierry Redingedec4af2012-11-15 21:28:23 +00001186
Thierry Reding62b9e062014-11-21 17:33:33 +01001187 tegra_dc_commit(dc);
Thierry Redingedec4af2012-11-15 21:28:23 +00001188
Thierry Reding2ccb3962015-01-15 13:43:18 +01001189 if (!hdmi->dvi) {
1190 tegra_hdmi_enable_avi_infoframe(hdmi);
1191 tegra_hdmi_enable_audio_infoframe(hdmi);
1192 tegra_hdmi_enable_audio(hdmi);
1193
1194 if (hdmi->stereo)
1195 tegra_hdmi_enable_stereo_infoframe(hdmi);
1196 }
1197
Thierry Redingedec4af2012-11-15 21:28:23 +00001198 /* TODO: add HDCP support */
Thierry Redingedec4af2012-11-15 21:28:23 +00001199}
1200
Thierry Redinga9825a62014-12-08 16:33:03 +01001201static int
1202tegra_hdmi_encoder_atomic_check(struct drm_encoder *encoder,
1203 struct drm_crtc_state *crtc_state,
1204 struct drm_connector_state *conn_state)
1205{
1206 struct tegra_output *output = encoder_to_output(encoder);
1207 struct tegra_dc *dc = to_tegra_dc(conn_state->crtc);
1208 unsigned long pclk = crtc_state->mode.clock * 1000;
1209 struct tegra_hdmi *hdmi = to_hdmi(output);
1210 int err;
1211
1212 err = tegra_dc_state_setup_clock(dc, crtc_state, hdmi->clk_parent,
1213 pclk, 0);
1214 if (err < 0) {
1215 dev_err(output->dev, "failed to setup CRTC state: %d\n", err);
1216 return err;
1217 }
1218
1219 return err;
1220}
1221
Thierry Reding59682712014-11-28 16:50:59 +01001222static const struct drm_encoder_helper_funcs tegra_hdmi_encoder_helper_funcs = {
Thierry Reding59682712014-11-28 16:50:59 +01001223 .disable = tegra_hdmi_encoder_disable,
Thierry Reding29871b22015-07-29 09:46:40 +02001224 .enable = tegra_hdmi_encoder_enable,
Thierry Redinga9825a62014-12-08 16:33:03 +01001225 .atomic_check = tegra_hdmi_encoder_atomic_check,
Thierry Redingedec4af2012-11-15 21:28:23 +00001226};
1227
1228static int tegra_hdmi_show_regs(struct seq_file *s, void *data)
1229{
1230 struct drm_info_node *node = s->private;
1231 struct tegra_hdmi *hdmi = node->info_ent->data;
Thierry Reding29871b22015-07-29 09:46:40 +02001232 struct drm_crtc *crtc = hdmi->output.encoder.crtc;
1233 struct drm_device *drm = node->minor->dev;
1234 int err = 0;
Mikko Perttunenccaddfe2013-07-30 11:35:03 +03001235
Thierry Reding29871b22015-07-29 09:46:40 +02001236 drm_modeset_lock_all(drm);
1237
1238 if (!crtc || !crtc->state->active) {
1239 err = -EBUSY;
1240 goto unlock;
1241 }
Thierry Redingedec4af2012-11-15 21:28:23 +00001242
1243#define DUMP_REG(name) \
Thierry Reding4ee8cee2014-12-08 16:25:14 +01001244 seq_printf(s, "%-56s %#05x %08x\n", #name, name, \
1245 tegra_hdmi_readl(hdmi, name))
Thierry Redingedec4af2012-11-15 21:28:23 +00001246
1247 DUMP_REG(HDMI_CTXSW);
1248 DUMP_REG(HDMI_NV_PDISP_SOR_STATE0);
1249 DUMP_REG(HDMI_NV_PDISP_SOR_STATE1);
1250 DUMP_REG(HDMI_NV_PDISP_SOR_STATE2);
1251 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_AN_MSB);
1252 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_AN_LSB);
1253 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_CN_MSB);
1254 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_CN_LSB);
1255 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_AKSV_MSB);
1256 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_AKSV_LSB);
1257 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_BKSV_MSB);
1258 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_BKSV_LSB);
1259 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_CKSV_MSB);
1260 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_CKSV_LSB);
1261 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_DKSV_MSB);
1262 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_DKSV_LSB);
1263 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_CTRL);
1264 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_CMODE);
1265 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_MPRIME_MSB);
1266 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_MPRIME_LSB);
1267 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_SPRIME_MSB);
1268 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_SPRIME_LSB2);
1269 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_SPRIME_LSB1);
1270 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_RI);
1271 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_CS_MSB);
1272 DUMP_REG(HDMI_NV_PDISP_RG_HDCP_CS_LSB);
1273 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_EMU0);
1274 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_EMU_RDATA0);
1275 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_EMU1);
1276 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_EMU2);
1277 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_CTRL);
1278 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_STATUS);
1279 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_HEADER);
1280 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_SUBPACK0_LOW);
1281 DUMP_REG(HDMI_NV_PDISP_HDMI_AUDIO_INFOFRAME_SUBPACK0_HIGH);
1282 DUMP_REG(HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_CTRL);
1283 DUMP_REG(HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_STATUS);
1284 DUMP_REG(HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_HEADER);
1285 DUMP_REG(HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_SUBPACK0_LOW);
1286 DUMP_REG(HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_SUBPACK0_HIGH);
1287 DUMP_REG(HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_SUBPACK1_LOW);
1288 DUMP_REG(HDMI_NV_PDISP_HDMI_AVI_INFOFRAME_SUBPACK1_HIGH);
1289 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_CTRL);
1290 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_STATUS);
1291 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_HEADER);
1292 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_SUBPACK0_LOW);
1293 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_SUBPACK0_HIGH);
1294 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_SUBPACK1_LOW);
1295 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_SUBPACK1_HIGH);
1296 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_SUBPACK2_LOW);
1297 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_SUBPACK2_HIGH);
1298 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_SUBPACK3_LOW);
1299 DUMP_REG(HDMI_NV_PDISP_HDMI_GENERIC_SUBPACK3_HIGH);
1300 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_CTRL);
1301 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0320_SUBPACK_LOW);
1302 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0320_SUBPACK_HIGH);
1303 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0441_SUBPACK_LOW);
1304 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0441_SUBPACK_HIGH);
1305 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0882_SUBPACK_LOW);
1306 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0882_SUBPACK_HIGH);
1307 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_1764_SUBPACK_LOW);
1308 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_1764_SUBPACK_HIGH);
1309 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0480_SUBPACK_LOW);
1310 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0480_SUBPACK_HIGH);
1311 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0960_SUBPACK_LOW);
1312 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_0960_SUBPACK_HIGH);
1313 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_1920_SUBPACK_LOW);
1314 DUMP_REG(HDMI_NV_PDISP_HDMI_ACR_1920_SUBPACK_HIGH);
1315 DUMP_REG(HDMI_NV_PDISP_HDMI_CTRL);
1316 DUMP_REG(HDMI_NV_PDISP_HDMI_VSYNC_KEEPOUT);
1317 DUMP_REG(HDMI_NV_PDISP_HDMI_VSYNC_WINDOW);
1318 DUMP_REG(HDMI_NV_PDISP_HDMI_GCP_CTRL);
1319 DUMP_REG(HDMI_NV_PDISP_HDMI_GCP_STATUS);
1320 DUMP_REG(HDMI_NV_PDISP_HDMI_GCP_SUBPACK);
1321 DUMP_REG(HDMI_NV_PDISP_HDMI_CHANNEL_STATUS1);
1322 DUMP_REG(HDMI_NV_PDISP_HDMI_CHANNEL_STATUS2);
1323 DUMP_REG(HDMI_NV_PDISP_HDMI_EMU0);
1324 DUMP_REG(HDMI_NV_PDISP_HDMI_EMU1);
1325 DUMP_REG(HDMI_NV_PDISP_HDMI_EMU1_RDATA);
1326 DUMP_REG(HDMI_NV_PDISP_HDMI_SPARE);
1327 DUMP_REG(HDMI_NV_PDISP_HDMI_SPDIF_CHN_STATUS1);
1328 DUMP_REG(HDMI_NV_PDISP_HDMI_SPDIF_CHN_STATUS2);
1329 DUMP_REG(HDMI_NV_PDISP_HDMI_HDCPRIF_ROM_CTRL);
1330 DUMP_REG(HDMI_NV_PDISP_SOR_CAP);
1331 DUMP_REG(HDMI_NV_PDISP_SOR_PWR);
1332 DUMP_REG(HDMI_NV_PDISP_SOR_TEST);
1333 DUMP_REG(HDMI_NV_PDISP_SOR_PLL0);
1334 DUMP_REG(HDMI_NV_PDISP_SOR_PLL1);
1335 DUMP_REG(HDMI_NV_PDISP_SOR_PLL2);
1336 DUMP_REG(HDMI_NV_PDISP_SOR_CSTM);
1337 DUMP_REG(HDMI_NV_PDISP_SOR_LVDS);
1338 DUMP_REG(HDMI_NV_PDISP_SOR_CRCA);
1339 DUMP_REG(HDMI_NV_PDISP_SOR_CRCB);
1340 DUMP_REG(HDMI_NV_PDISP_SOR_BLANK);
1341 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_CTL);
1342 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(0));
1343 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(1));
1344 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(2));
1345 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(3));
1346 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(4));
1347 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(5));
1348 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(6));
1349 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(7));
1350 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(8));
1351 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(9));
1352 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(10));
1353 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(11));
1354 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(12));
1355 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(13));
1356 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(14));
1357 DUMP_REG(HDMI_NV_PDISP_SOR_SEQ_INST(15));
1358 DUMP_REG(HDMI_NV_PDISP_SOR_VCRCA0);
1359 DUMP_REG(HDMI_NV_PDISP_SOR_VCRCA1);
1360 DUMP_REG(HDMI_NV_PDISP_SOR_CCRCA0);
1361 DUMP_REG(HDMI_NV_PDISP_SOR_CCRCA1);
1362 DUMP_REG(HDMI_NV_PDISP_SOR_EDATAA0);
1363 DUMP_REG(HDMI_NV_PDISP_SOR_EDATAA1);
1364 DUMP_REG(HDMI_NV_PDISP_SOR_COUNTA0);
1365 DUMP_REG(HDMI_NV_PDISP_SOR_COUNTA1);
1366 DUMP_REG(HDMI_NV_PDISP_SOR_DEBUGA0);
1367 DUMP_REG(HDMI_NV_PDISP_SOR_DEBUGA1);
1368 DUMP_REG(HDMI_NV_PDISP_SOR_TRIG);
1369 DUMP_REG(HDMI_NV_PDISP_SOR_MSCHECK);
1370 DUMP_REG(HDMI_NV_PDISP_SOR_LANE_DRIVE_CURRENT);
1371 DUMP_REG(HDMI_NV_PDISP_AUDIO_DEBUG0);
1372 DUMP_REG(HDMI_NV_PDISP_AUDIO_DEBUG1);
1373 DUMP_REG(HDMI_NV_PDISP_AUDIO_DEBUG2);
1374 DUMP_REG(HDMI_NV_PDISP_AUDIO_FS(0));
1375 DUMP_REG(HDMI_NV_PDISP_AUDIO_FS(1));
1376 DUMP_REG(HDMI_NV_PDISP_AUDIO_FS(2));
1377 DUMP_REG(HDMI_NV_PDISP_AUDIO_FS(3));
1378 DUMP_REG(HDMI_NV_PDISP_AUDIO_FS(4));
1379 DUMP_REG(HDMI_NV_PDISP_AUDIO_FS(5));
1380 DUMP_REG(HDMI_NV_PDISP_AUDIO_FS(6));
1381 DUMP_REG(HDMI_NV_PDISP_AUDIO_PULSE_WIDTH);
1382 DUMP_REG(HDMI_NV_PDISP_AUDIO_THRESHOLD);
1383 DUMP_REG(HDMI_NV_PDISP_AUDIO_CNTRL0);
1384 DUMP_REG(HDMI_NV_PDISP_AUDIO_N);
1385 DUMP_REG(HDMI_NV_PDISP_HDCPRIF_ROM_TIMING);
1386 DUMP_REG(HDMI_NV_PDISP_SOR_REFCLK);
1387 DUMP_REG(HDMI_NV_PDISP_CRC_CONTROL);
1388 DUMP_REG(HDMI_NV_PDISP_INPUT_CONTROL);
1389 DUMP_REG(HDMI_NV_PDISP_SCRATCH);
1390 DUMP_REG(HDMI_NV_PDISP_PE_CURRENT);
1391 DUMP_REG(HDMI_NV_PDISP_KEY_CTRL);
1392 DUMP_REG(HDMI_NV_PDISP_KEY_DEBUG0);
1393 DUMP_REG(HDMI_NV_PDISP_KEY_DEBUG1);
1394 DUMP_REG(HDMI_NV_PDISP_KEY_DEBUG2);
1395 DUMP_REG(HDMI_NV_PDISP_KEY_HDCP_KEY_0);
1396 DUMP_REG(HDMI_NV_PDISP_KEY_HDCP_KEY_1);
1397 DUMP_REG(HDMI_NV_PDISP_KEY_HDCP_KEY_2);
1398 DUMP_REG(HDMI_NV_PDISP_KEY_HDCP_KEY_3);
1399 DUMP_REG(HDMI_NV_PDISP_KEY_HDCP_KEY_TRIG);
1400 DUMP_REG(HDMI_NV_PDISP_KEY_SKEY_INDEX);
1401 DUMP_REG(HDMI_NV_PDISP_SOR_AUDIO_CNTRL0);
Thierry Reding2ccb3962015-01-15 13:43:18 +01001402 DUMP_REG(HDMI_NV_PDISP_SOR_AUDIO_SPARE0);
1403 DUMP_REG(HDMI_NV_PDISP_SOR_AUDIO_HDA_CODEC_SCRATCH0);
1404 DUMP_REG(HDMI_NV_PDISP_SOR_AUDIO_HDA_CODEC_SCRATCH1);
Thierry Redingedec4af2012-11-15 21:28:23 +00001405 DUMP_REG(HDMI_NV_PDISP_SOR_AUDIO_HDA_ELD_BUFWR);
1406 DUMP_REG(HDMI_NV_PDISP_SOR_AUDIO_HDA_PRESENSE);
Thierry Reding2ccb3962015-01-15 13:43:18 +01001407 DUMP_REG(HDMI_NV_PDISP_INT_STATUS);
1408 DUMP_REG(HDMI_NV_PDISP_INT_MASK);
1409 DUMP_REG(HDMI_NV_PDISP_INT_ENABLE);
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +02001410 DUMP_REG(HDMI_NV_PDISP_SOR_IO_PEAK_CURRENT);
Thierry Redingedec4af2012-11-15 21:28:23 +00001411
1412#undef DUMP_REG
1413
Thierry Reding29871b22015-07-29 09:46:40 +02001414unlock:
1415 drm_modeset_unlock_all(drm);
1416 return err;
Thierry Redingedec4af2012-11-15 21:28:23 +00001417}
1418
1419static struct drm_info_list debugfs_files[] = {
1420 { "regs", tegra_hdmi_show_regs, 0, NULL },
1421};
1422
1423static int tegra_hdmi_debugfs_init(struct tegra_hdmi *hdmi,
1424 struct drm_minor *minor)
1425{
1426 unsigned int i;
1427 int err;
1428
1429 hdmi->debugfs = debugfs_create_dir("hdmi", minor->debugfs_root);
1430 if (!hdmi->debugfs)
1431 return -ENOMEM;
1432
1433 hdmi->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files),
1434 GFP_KERNEL);
1435 if (!hdmi->debugfs_files) {
1436 err = -ENOMEM;
1437 goto remove;
1438 }
1439
1440 for (i = 0; i < ARRAY_SIZE(debugfs_files); i++)
1441 hdmi->debugfs_files[i].data = hdmi;
1442
1443 err = drm_debugfs_create_files(hdmi->debugfs_files,
1444 ARRAY_SIZE(debugfs_files),
1445 hdmi->debugfs, minor);
1446 if (err < 0)
1447 goto free;
1448
1449 hdmi->minor = minor;
1450
1451 return 0;
1452
1453free:
1454 kfree(hdmi->debugfs_files);
1455 hdmi->debugfs_files = NULL;
1456remove:
1457 debugfs_remove(hdmi->debugfs);
1458 hdmi->debugfs = NULL;
1459
1460 return err;
1461}
1462
Thierry Reding4009c222014-12-19 15:47:30 +01001463static void tegra_hdmi_debugfs_exit(struct tegra_hdmi *hdmi)
Thierry Redingedec4af2012-11-15 21:28:23 +00001464{
1465 drm_debugfs_remove_files(hdmi->debugfs_files, ARRAY_SIZE(debugfs_files),
1466 hdmi->minor);
1467 hdmi->minor = NULL;
1468
1469 kfree(hdmi->debugfs_files);
1470 hdmi->debugfs_files = NULL;
1471
1472 debugfs_remove(hdmi->debugfs);
1473 hdmi->debugfs = NULL;
Thierry Redingedec4af2012-11-15 21:28:23 +00001474}
1475
Thierry Reding53fa7f72013-09-24 15:35:40 +02001476static int tegra_hdmi_init(struct host1x_client *client)
Thierry Redingedec4af2012-11-15 21:28:23 +00001477{
Thierry Reding9910f5c2014-05-22 09:57:15 +02001478 struct drm_device *drm = dev_get_drvdata(client->parent);
Thierry Reding776dc382013-10-14 14:43:22 +02001479 struct tegra_hdmi *hdmi = host1x_client_to_hdmi(client);
Thierry Redingedec4af2012-11-15 21:28:23 +00001480 int err;
1481
Thierry Redingedec4af2012-11-15 21:28:23 +00001482 hdmi->output.dev = client->dev;
Thierry Redingedec4af2012-11-15 21:28:23 +00001483
Thierry Reding59682712014-11-28 16:50:59 +01001484 drm_connector_init(drm, &hdmi->output.connector,
1485 &tegra_hdmi_connector_funcs,
1486 DRM_MODE_CONNECTOR_HDMIA);
1487 drm_connector_helper_add(&hdmi->output.connector,
1488 &tegra_hdmi_connector_helper_funcs);
1489 hdmi->output.connector.dpms = DRM_MODE_DPMS_OFF;
1490
1491 drm_encoder_init(drm, &hdmi->output.encoder, &tegra_hdmi_encoder_funcs,
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001492 DRM_MODE_ENCODER_TMDS, NULL);
Thierry Reding59682712014-11-28 16:50:59 +01001493 drm_encoder_helper_add(&hdmi->output.encoder,
1494 &tegra_hdmi_encoder_helper_funcs);
1495
1496 drm_mode_connector_attach_encoder(&hdmi->output.connector,
1497 &hdmi->output.encoder);
1498 drm_connector_register(&hdmi->output.connector);
1499
Thierry Redingea130b22014-12-19 15:51:35 +01001500 err = tegra_output_init(drm, &hdmi->output);
1501 if (err < 0) {
1502 dev_err(client->dev, "failed to initialize output: %d\n", err);
1503 return err;
1504 }
Thierry Reding59682712014-11-28 16:50:59 +01001505
Thierry Redingea130b22014-12-19 15:51:35 +01001506 hdmi->output.encoder.possible_crtcs = 0x3;
Thierry Redingedec4af2012-11-15 21:28:23 +00001507
1508 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
Thierry Reding9910f5c2014-05-22 09:57:15 +02001509 err = tegra_hdmi_debugfs_init(hdmi, drm->primary);
Thierry Redingedec4af2012-11-15 21:28:23 +00001510 if (err < 0)
1511 dev_err(client->dev, "debugfs setup failed: %d\n", err);
1512 }
1513
Thierry Redingfb50a112014-02-28 16:57:34 +01001514 err = regulator_enable(hdmi->hdmi);
1515 if (err < 0) {
1516 dev_err(client->dev, "failed to enable HDMI regulator: %d\n",
1517 err);
1518 return err;
1519 }
1520
Thierry Reding59682712014-11-28 16:50:59 +01001521 err = regulator_enable(hdmi->pll);
1522 if (err < 0) {
1523 dev_err(hdmi->dev, "failed to enable PLL regulator: %d\n", err);
1524 return err;
1525 }
1526
1527 err = regulator_enable(hdmi->vdd);
1528 if (err < 0) {
1529 dev_err(hdmi->dev, "failed to enable VDD regulator: %d\n", err);
1530 return err;
1531 }
1532
Thierry Redingedec4af2012-11-15 21:28:23 +00001533 return 0;
1534}
1535
Thierry Reding53fa7f72013-09-24 15:35:40 +02001536static int tegra_hdmi_exit(struct host1x_client *client)
Thierry Redingedec4af2012-11-15 21:28:23 +00001537{
Thierry Reding776dc382013-10-14 14:43:22 +02001538 struct tegra_hdmi *hdmi = host1x_client_to_hdmi(client);
Thierry Redingedec4af2012-11-15 21:28:23 +00001539
Thierry Reding59682712014-11-28 16:50:59 +01001540 tegra_output_exit(&hdmi->output);
1541
Thierry Reding59682712014-11-28 16:50:59 +01001542 regulator_disable(hdmi->vdd);
1543 regulator_disable(hdmi->pll);
Thierry Redingfb50a112014-02-28 16:57:34 +01001544 regulator_disable(hdmi->hdmi);
1545
Thierry Reding4009c222014-12-19 15:47:30 +01001546 if (IS_ENABLED(CONFIG_DEBUG_FS))
1547 tegra_hdmi_debugfs_exit(hdmi);
Thierry Redingedec4af2012-11-15 21:28:23 +00001548
Thierry Redingedec4af2012-11-15 21:28:23 +00001549 return 0;
1550}
1551
1552static const struct host1x_client_ops hdmi_client_ops = {
Thierry Reding53fa7f72013-09-24 15:35:40 +02001553 .init = tegra_hdmi_init,
1554 .exit = tegra_hdmi_exit,
Thierry Redingedec4af2012-11-15 21:28:23 +00001555};
1556
Thierry Reding59af0592013-10-14 09:43:05 +02001557static const struct tegra_hdmi_config tegra20_hdmi_config = {
1558 .tmds = tegra20_tmds_config,
1559 .num_tmds = ARRAY_SIZE(tegra20_tmds_config),
1560 .fuse_override_offset = HDMI_NV_PDISP_SOR_LANE_DRIVE_CURRENT,
1561 .fuse_override_value = 1 << 31,
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +02001562 .has_sor_io_peak_current = false,
Thierry Reding2ccb3962015-01-15 13:43:18 +01001563 .has_hda = false,
1564 .has_hbr = false,
Thierry Reding59af0592013-10-14 09:43:05 +02001565};
1566
1567static const struct tegra_hdmi_config tegra30_hdmi_config = {
1568 .tmds = tegra30_tmds_config,
1569 .num_tmds = ARRAY_SIZE(tegra30_tmds_config),
1570 .fuse_override_offset = HDMI_NV_PDISP_SOR_LANE_DRIVE_CURRENT,
1571 .fuse_override_value = 1 << 31,
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +02001572 .has_sor_io_peak_current = false,
Thierry Reding2ccb3962015-01-15 13:43:18 +01001573 .has_hda = true,
1574 .has_hbr = false,
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +02001575};
1576
1577static const struct tegra_hdmi_config tegra114_hdmi_config = {
1578 .tmds = tegra114_tmds_config,
1579 .num_tmds = ARRAY_SIZE(tegra114_tmds_config),
1580 .fuse_override_offset = HDMI_NV_PDISP_SOR_PAD_CTLS0,
1581 .fuse_override_value = 1 << 31,
1582 .has_sor_io_peak_current = true,
Thierry Reding2ccb3962015-01-15 13:43:18 +01001583 .has_hda = true,
1584 .has_hbr = true,
Thierry Reding59af0592013-10-14 09:43:05 +02001585};
1586
Thierry Redingfb7be702013-11-15 16:07:32 +01001587static const struct tegra_hdmi_config tegra124_hdmi_config = {
1588 .tmds = tegra124_tmds_config,
1589 .num_tmds = ARRAY_SIZE(tegra124_tmds_config),
1590 .fuse_override_offset = HDMI_NV_PDISP_SOR_PAD_CTLS0,
1591 .fuse_override_value = 1 << 31,
1592 .has_sor_io_peak_current = true,
Thierry Reding2ccb3962015-01-15 13:43:18 +01001593 .has_hda = true,
1594 .has_hbr = true,
Thierry Redingfb7be702013-11-15 16:07:32 +01001595};
1596
Thierry Reding59af0592013-10-14 09:43:05 +02001597static const struct of_device_id tegra_hdmi_of_match[] = {
Thierry Redingfb7be702013-11-15 16:07:32 +01001598 { .compatible = "nvidia,tegra124-hdmi", .data = &tegra124_hdmi_config },
Mikko Perttunen7d1d28a2013-09-30 16:54:47 +02001599 { .compatible = "nvidia,tegra114-hdmi", .data = &tegra114_hdmi_config },
Thierry Reding59af0592013-10-14 09:43:05 +02001600 { .compatible = "nvidia,tegra30-hdmi", .data = &tegra30_hdmi_config },
1601 { .compatible = "nvidia,tegra20-hdmi", .data = &tegra20_hdmi_config },
1602 { },
1603};
Stephen Warrenef707282014-06-18 16:21:55 -06001604MODULE_DEVICE_TABLE(of, tegra_hdmi_of_match);
Thierry Reding59af0592013-10-14 09:43:05 +02001605
Thierry Reding2ccb3962015-01-15 13:43:18 +01001606static void hda_format_parse(unsigned int format, unsigned int *rate,
1607 unsigned int *channels)
1608{
1609 unsigned int mul, div;
1610
1611 if (format & AC_FMT_BASE_44K)
1612 *rate = 44100;
1613 else
1614 *rate = 48000;
1615
1616 mul = (format & AC_FMT_MULT_MASK) >> AC_FMT_MULT_SHIFT;
1617 div = (format & AC_FMT_DIV_MASK) >> AC_FMT_DIV_SHIFT;
1618
1619 *rate = *rate * (mul + 1) / (div + 1);
1620
1621 *channels = (format & AC_FMT_CHAN_MASK) >> AC_FMT_CHAN_SHIFT;
1622}
1623
1624static irqreturn_t tegra_hdmi_irq(int irq, void *data)
1625{
1626 struct tegra_hdmi *hdmi = data;
1627 u32 value;
1628 int err;
1629
1630 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_INT_STATUS);
1631 tegra_hdmi_writel(hdmi, value, HDMI_NV_PDISP_INT_STATUS);
1632
1633 if (value & INT_CODEC_SCRATCH0) {
1634 unsigned int format;
1635 u32 value;
1636
1637 value = tegra_hdmi_readl(hdmi, HDMI_NV_PDISP_SOR_AUDIO_HDA_CODEC_SCRATCH0);
1638
1639 if (value & SOR_AUDIO_HDA_CODEC_SCRATCH0_VALID) {
1640 unsigned int sample_rate, channels;
1641
1642 format = value & SOR_AUDIO_HDA_CODEC_SCRATCH0_FMT_MASK;
1643
1644 hda_format_parse(format, &sample_rate, &channels);
1645
1646 hdmi->audio_sample_rate = sample_rate;
1647 hdmi->audio_channels = channels;
1648
1649 err = tegra_hdmi_setup_audio(hdmi);
1650 if (err < 0) {
1651 tegra_hdmi_disable_audio_infoframe(hdmi);
1652 tegra_hdmi_disable_audio(hdmi);
1653 } else {
1654 tegra_hdmi_setup_audio_infoframe(hdmi);
1655 tegra_hdmi_enable_audio_infoframe(hdmi);
1656 tegra_hdmi_enable_audio(hdmi);
1657 }
1658 } else {
1659 tegra_hdmi_disable_audio_infoframe(hdmi);
1660 tegra_hdmi_disable_audio(hdmi);
1661 }
1662 }
1663
1664 return IRQ_HANDLED;
1665}
1666
Thierry Redingedec4af2012-11-15 21:28:23 +00001667static int tegra_hdmi_probe(struct platform_device *pdev)
1668{
Thierry Redingedec4af2012-11-15 21:28:23 +00001669 struct tegra_hdmi *hdmi;
1670 struct resource *regs;
1671 int err;
1672
1673 hdmi = devm_kzalloc(&pdev->dev, sizeof(*hdmi), GFP_KERNEL);
1674 if (!hdmi)
1675 return -ENOMEM;
1676
Thierry Reding5e4acd32017-08-21 18:05:10 +02001677 hdmi->config = of_device_get_match_data(&pdev->dev);
Thierry Redingedec4af2012-11-15 21:28:23 +00001678 hdmi->dev = &pdev->dev;
Thierry Reding2ccb3962015-01-15 13:43:18 +01001679
Thierry Redingedec4af2012-11-15 21:28:23 +00001680 hdmi->audio_source = AUTO;
Thierry Reding2ccb3962015-01-15 13:43:18 +01001681 hdmi->audio_sample_rate = 48000;
1682 hdmi->audio_channels = 2;
Thierry Redingedec4af2012-11-15 21:28:23 +00001683 hdmi->stereo = false;
1684 hdmi->dvi = false;
1685
1686 hdmi->clk = devm_clk_get(&pdev->dev, NULL);
1687 if (IS_ERR(hdmi->clk)) {
1688 dev_err(&pdev->dev, "failed to get clock\n");
1689 return PTR_ERR(hdmi->clk);
1690 }
1691
Stephen Warrenca480802013-11-06 16:20:54 -07001692 hdmi->rst = devm_reset_control_get(&pdev->dev, "hdmi");
1693 if (IS_ERR(hdmi->rst)) {
1694 dev_err(&pdev->dev, "failed to get reset\n");
1695 return PTR_ERR(hdmi->rst);
1696 }
1697
Thierry Redingedec4af2012-11-15 21:28:23 +00001698 hdmi->clk_parent = devm_clk_get(&pdev->dev, "parent");
1699 if (IS_ERR(hdmi->clk_parent))
1700 return PTR_ERR(hdmi->clk_parent);
1701
Thierry Redingedec4af2012-11-15 21:28:23 +00001702 err = clk_set_parent(hdmi->clk, hdmi->clk_parent);
1703 if (err < 0) {
1704 dev_err(&pdev->dev, "failed to setup clocks: %d\n", err);
1705 return err;
1706 }
1707
Thierry Redingfb50a112014-02-28 16:57:34 +01001708 hdmi->hdmi = devm_regulator_get(&pdev->dev, "hdmi");
1709 if (IS_ERR(hdmi->hdmi)) {
1710 dev_err(&pdev->dev, "failed to get HDMI regulator\n");
1711 return PTR_ERR(hdmi->hdmi);
1712 }
1713
Thierry Redingedec4af2012-11-15 21:28:23 +00001714 hdmi->pll = devm_regulator_get(&pdev->dev, "pll");
1715 if (IS_ERR(hdmi->pll)) {
1716 dev_err(&pdev->dev, "failed to get PLL regulator\n");
1717 return PTR_ERR(hdmi->pll);
1718 }
1719
Thierry Reding88685682014-04-16 10:24:12 +02001720 hdmi->vdd = devm_regulator_get(&pdev->dev, "vdd");
1721 if (IS_ERR(hdmi->vdd)) {
1722 dev_err(&pdev->dev, "failed to get VDD regulator\n");
1723 return PTR_ERR(hdmi->vdd);
1724 }
1725
Hans Verkuilfb83be82017-09-11 14:29:52 +02001726 hdmi->output.notifier = cec_notifier_get(&pdev->dev);
1727 if (hdmi->output.notifier == NULL)
1728 return -ENOMEM;
1729
Thierry Redingedec4af2012-11-15 21:28:23 +00001730 hdmi->output.dev = &pdev->dev;
1731
Thierry Reding59d29c02013-10-14 14:26:42 +02001732 err = tegra_output_probe(&hdmi->output);
Thierry Redingedec4af2012-11-15 21:28:23 +00001733 if (err < 0)
1734 return err;
1735
1736 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Redingd4ed6022013-01-21 11:09:02 +01001737 hdmi->regs = devm_ioremap_resource(&pdev->dev, regs);
1738 if (IS_ERR(hdmi->regs))
1739 return PTR_ERR(hdmi->regs);
Thierry Redingedec4af2012-11-15 21:28:23 +00001740
1741 err = platform_get_irq(pdev, 0);
1742 if (err < 0)
1743 return err;
1744
1745 hdmi->irq = err;
1746
Thierry Reding2ccb3962015-01-15 13:43:18 +01001747 err = devm_request_irq(hdmi->dev, hdmi->irq, tegra_hdmi_irq, 0,
1748 dev_name(hdmi->dev), hdmi);
1749 if (err < 0) {
1750 dev_err(&pdev->dev, "failed to request IRQ#%u: %d\n",
1751 hdmi->irq, err);
1752 return err;
1753 }
1754
Thierry Reding52345492015-08-07 16:00:43 +02001755 platform_set_drvdata(pdev, hdmi);
1756 pm_runtime_enable(&pdev->dev);
1757
Thierry Reding776dc382013-10-14 14:43:22 +02001758 INIT_LIST_HEAD(&hdmi->client.list);
1759 hdmi->client.ops = &hdmi_client_ops;
1760 hdmi->client.dev = &pdev->dev;
Thierry Redingedec4af2012-11-15 21:28:23 +00001761
Thierry Reding776dc382013-10-14 14:43:22 +02001762 err = host1x_client_register(&hdmi->client);
Thierry Redingedec4af2012-11-15 21:28:23 +00001763 if (err < 0) {
1764 dev_err(&pdev->dev, "failed to register host1x client: %d\n",
1765 err);
1766 return err;
1767 }
1768
Thierry Redingedec4af2012-11-15 21:28:23 +00001769 return 0;
1770}
1771
1772static int tegra_hdmi_remove(struct platform_device *pdev)
1773{
Thierry Redingedec4af2012-11-15 21:28:23 +00001774 struct tegra_hdmi *hdmi = platform_get_drvdata(pdev);
1775 int err;
1776
Thierry Reding52345492015-08-07 16:00:43 +02001777 pm_runtime_disable(&pdev->dev);
1778
Thierry Reding776dc382013-10-14 14:43:22 +02001779 err = host1x_client_unregister(&hdmi->client);
Thierry Redingedec4af2012-11-15 21:28:23 +00001780 if (err < 0) {
1781 dev_err(&pdev->dev, "failed to unregister host1x client: %d\n",
1782 err);
1783 return err;
1784 }
1785
Thierry Reding328ec692014-12-19 15:55:08 +01001786 tegra_output_remove(&hdmi->output);
Thierry Reding59d29c02013-10-14 14:26:42 +02001787
Hans Verkuilfb83be82017-09-11 14:29:52 +02001788 if (hdmi->output.notifier)
1789 cec_notifier_put(hdmi->output.notifier);
1790
Thierry Reding52345492015-08-07 16:00:43 +02001791 return 0;
1792}
1793
1794#ifdef CONFIG_PM
1795static int tegra_hdmi_suspend(struct device *dev)
1796{
1797 struct tegra_hdmi *hdmi = dev_get_drvdata(dev);
1798 int err;
1799
1800 err = reset_control_assert(hdmi->rst);
1801 if (err < 0) {
1802 dev_err(dev, "failed to assert reset: %d\n", err);
1803 return err;
1804 }
1805
1806 usleep_range(1000, 2000);
1807
Thierry Redingd06e7f82014-04-16 10:43:41 +02001808 clk_disable_unprepare(hdmi->clk);
Thierry Redingedec4af2012-11-15 21:28:23 +00001809
1810 return 0;
1811}
1812
Thierry Reding52345492015-08-07 16:00:43 +02001813static int tegra_hdmi_resume(struct device *dev)
1814{
1815 struct tegra_hdmi *hdmi = dev_get_drvdata(dev);
1816 int err;
1817
1818 err = clk_prepare_enable(hdmi->clk);
1819 if (err < 0) {
1820 dev_err(dev, "failed to enable clock: %d\n", err);
1821 return err;
1822 }
1823
1824 usleep_range(1000, 2000);
1825
1826 err = reset_control_deassert(hdmi->rst);
1827 if (err < 0) {
1828 dev_err(dev, "failed to deassert reset: %d\n", err);
1829 clk_disable_unprepare(hdmi->clk);
1830 return err;
1831 }
1832
1833 return 0;
1834}
1835#endif
1836
1837static const struct dev_pm_ops tegra_hdmi_pm_ops = {
1838 SET_RUNTIME_PM_OPS(tegra_hdmi_suspend, tegra_hdmi_resume, NULL)
1839};
1840
Thierry Redingedec4af2012-11-15 21:28:23 +00001841struct platform_driver tegra_hdmi_driver = {
1842 .driver = {
1843 .name = "tegra-hdmi",
Thierry Redingedec4af2012-11-15 21:28:23 +00001844 .of_match_table = tegra_hdmi_of_match,
Thierry Reding52345492015-08-07 16:00:43 +02001845 .pm = &tegra_hdmi_pm_ops,
Thierry Redingedec4af2012-11-15 21:28:23 +00001846 },
1847 .probe = tegra_hdmi_probe,
1848 .remove = tegra_hdmi_remove,
1849};