blob: e2f399363f09388eb9ee6b9a977a58ef97898f7c [file] [log] [blame]
Thierry Reding6b6b6042013-11-15 16:06:05 +01001/*
2 * Copyright (C) 2013 NVIDIA Corporation
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/clk.h>
Thierry Redinga82752e2014-01-31 10:02:15 +010010#include <linux/debugfs.h>
Thierry Reding6fad8f62014-11-28 15:41:34 +010011#include <linux/gpio.h>
Thierry Reding6b6b6042013-11-15 16:06:05 +010012#include <linux/io.h>
13#include <linux/platform_device.h>
14#include <linux/reset.h>
Thierry Reding306a7f92014-07-17 13:17:24 +020015
Thierry Reding72323982014-07-11 13:19:06 +020016#include <soc/tegra/pmc.h>
Thierry Reding6b6b6042013-11-15 16:06:05 +010017
Thierry Reding4aa3df72014-11-24 16:27:13 +010018#include <drm/drm_atomic_helper.h>
Thierry Reding6b6b6042013-11-15 16:06:05 +010019#include <drm/drm_dp_helper.h>
Thierry Reding6fad8f62014-11-28 15:41:34 +010020#include <drm/drm_panel.h>
Thierry Reding6b6b6042013-11-15 16:06:05 +010021
22#include "dc.h"
23#include "drm.h"
24#include "sor.h"
25
26struct tegra_sor {
27 struct host1x_client client;
28 struct tegra_output output;
29 struct device *dev;
30
31 void __iomem *regs;
32
33 struct reset_control *rst;
34 struct clk *clk_parent;
35 struct clk *clk_safe;
36 struct clk *clk_dp;
37 struct clk *clk;
38
39 struct tegra_dpaux *dpaux;
40
Thierry Reding86f5c522014-03-26 11:13:16 +010041 struct mutex lock;
Thierry Reding6b6b6042013-11-15 16:06:05 +010042 bool enabled;
Thierry Redinga82752e2014-01-31 10:02:15 +010043
44 struct dentry *debugfs;
Thierry Reding6b6b6042013-11-15 16:06:05 +010045};
46
Thierry Reding34fa1832014-06-05 16:31:10 +020047struct tegra_sor_config {
48 u32 bits_per_pixel;
49
50 u32 active_polarity;
51 u32 active_count;
52 u32 tu_size;
53 u32 active_frac;
54 u32 watermark;
Thierry Reding7890b572014-06-05 16:12:46 +020055
56 u32 hblank_symbols;
57 u32 vblank_symbols;
Thierry Reding34fa1832014-06-05 16:31:10 +020058};
59
Thierry Reding6b6b6042013-11-15 16:06:05 +010060static inline struct tegra_sor *
61host1x_client_to_sor(struct host1x_client *client)
62{
63 return container_of(client, struct tegra_sor, client);
64}
65
66static inline struct tegra_sor *to_sor(struct tegra_output *output)
67{
68 return container_of(output, struct tegra_sor, output);
69}
70
71static inline unsigned long tegra_sor_readl(struct tegra_sor *sor,
72 unsigned long offset)
73{
74 return readl(sor->regs + (offset << 2));
75}
76
77static inline void tegra_sor_writel(struct tegra_sor *sor, unsigned long value,
78 unsigned long offset)
79{
80 writel(value, sor->regs + (offset << 2));
81}
82
83static int tegra_sor_dp_train_fast(struct tegra_sor *sor,
84 struct drm_dp_link *link)
85{
86 unsigned long value;
87 unsigned int i;
88 u8 pattern;
89 int err;
90
91 /* setup lane parameters */
92 value = SOR_LANE_DRIVE_CURRENT_LANE3(0x40) |
93 SOR_LANE_DRIVE_CURRENT_LANE2(0x40) |
94 SOR_LANE_DRIVE_CURRENT_LANE1(0x40) |
95 SOR_LANE_DRIVE_CURRENT_LANE0(0x40);
96 tegra_sor_writel(sor, value, SOR_LANE_DRIVE_CURRENT_0);
97
98 value = SOR_LANE_PREEMPHASIS_LANE3(0x0f) |
99 SOR_LANE_PREEMPHASIS_LANE2(0x0f) |
100 SOR_LANE_PREEMPHASIS_LANE1(0x0f) |
101 SOR_LANE_PREEMPHASIS_LANE0(0x0f);
102 tegra_sor_writel(sor, value, SOR_LANE_PREEMPHASIS_0);
103
104 value = SOR_LANE_POST_CURSOR_LANE3(0x00) |
105 SOR_LANE_POST_CURSOR_LANE2(0x00) |
106 SOR_LANE_POST_CURSOR_LANE1(0x00) |
107 SOR_LANE_POST_CURSOR_LANE0(0x00);
108 tegra_sor_writel(sor, value, SOR_LANE_POST_CURSOR_0);
109
110 /* disable LVDS mode */
111 tegra_sor_writel(sor, 0, SOR_LVDS);
112
113 value = tegra_sor_readl(sor, SOR_DP_PADCTL_0);
114 value |= SOR_DP_PADCTL_TX_PU_ENABLE;
115 value &= ~SOR_DP_PADCTL_TX_PU_MASK;
116 value |= SOR_DP_PADCTL_TX_PU(2); /* XXX: don't hardcode? */
117 tegra_sor_writel(sor, value, SOR_DP_PADCTL_0);
118
119 value = tegra_sor_readl(sor, SOR_DP_PADCTL_0);
120 value |= SOR_DP_PADCTL_CM_TXD_3 | SOR_DP_PADCTL_CM_TXD_2 |
121 SOR_DP_PADCTL_CM_TXD_1 | SOR_DP_PADCTL_CM_TXD_0;
122 tegra_sor_writel(sor, value, SOR_DP_PADCTL_0);
123
124 usleep_range(10, 100);
125
126 value = tegra_sor_readl(sor, SOR_DP_PADCTL_0);
127 value &= ~(SOR_DP_PADCTL_CM_TXD_3 | SOR_DP_PADCTL_CM_TXD_2 |
128 SOR_DP_PADCTL_CM_TXD_1 | SOR_DP_PADCTL_CM_TXD_0);
129 tegra_sor_writel(sor, value, SOR_DP_PADCTL_0);
130
131 err = tegra_dpaux_prepare(sor->dpaux, DP_SET_ANSI_8B10B);
132 if (err < 0)
133 return err;
134
135 for (i = 0, value = 0; i < link->num_lanes; i++) {
136 unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
137 SOR_DP_TPG_SCRAMBLER_NONE |
138 SOR_DP_TPG_PATTERN_TRAIN1;
139 value = (value << 8) | lane;
140 }
141
142 tegra_sor_writel(sor, value, SOR_DP_TPG);
143
144 pattern = DP_TRAINING_PATTERN_1;
145
146 err = tegra_dpaux_train(sor->dpaux, link, pattern);
147 if (err < 0)
148 return err;
149
150 value = tegra_sor_readl(sor, SOR_DP_SPARE_0);
151 value |= SOR_DP_SPARE_SEQ_ENABLE;
152 value &= ~SOR_DP_SPARE_PANEL_INTERNAL;
153 value |= SOR_DP_SPARE_MACRO_SOR_CLK;
154 tegra_sor_writel(sor, value, SOR_DP_SPARE_0);
155
156 for (i = 0, value = 0; i < link->num_lanes; i++) {
157 unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
158 SOR_DP_TPG_SCRAMBLER_NONE |
159 SOR_DP_TPG_PATTERN_TRAIN2;
160 value = (value << 8) | lane;
161 }
162
163 tegra_sor_writel(sor, value, SOR_DP_TPG);
164
165 pattern = DP_LINK_SCRAMBLING_DISABLE | DP_TRAINING_PATTERN_2;
166
167 err = tegra_dpaux_train(sor->dpaux, link, pattern);
168 if (err < 0)
169 return err;
170
171 for (i = 0, value = 0; i < link->num_lanes; i++) {
172 unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
173 SOR_DP_TPG_SCRAMBLER_GALIOS |
174 SOR_DP_TPG_PATTERN_NONE;
175 value = (value << 8) | lane;
176 }
177
178 tegra_sor_writel(sor, value, SOR_DP_TPG);
179
180 pattern = DP_TRAINING_PATTERN_DISABLE;
181
182 err = tegra_dpaux_train(sor->dpaux, link, pattern);
183 if (err < 0)
184 return err;
185
186 return 0;
187}
188
189static void tegra_sor_super_update(struct tegra_sor *sor)
190{
191 tegra_sor_writel(sor, 0, SOR_SUPER_STATE_0);
192 tegra_sor_writel(sor, 1, SOR_SUPER_STATE_0);
193 tegra_sor_writel(sor, 0, SOR_SUPER_STATE_0);
194}
195
196static void tegra_sor_update(struct tegra_sor *sor)
197{
198 tegra_sor_writel(sor, 0, SOR_STATE_0);
199 tegra_sor_writel(sor, 1, SOR_STATE_0);
200 tegra_sor_writel(sor, 0, SOR_STATE_0);
201}
202
203static int tegra_sor_setup_pwm(struct tegra_sor *sor, unsigned long timeout)
204{
205 unsigned long value;
206
207 value = tegra_sor_readl(sor, SOR_PWM_DIV);
208 value &= ~SOR_PWM_DIV_MASK;
209 value |= 0x400; /* period */
210 tegra_sor_writel(sor, value, SOR_PWM_DIV);
211
212 value = tegra_sor_readl(sor, SOR_PWM_CTL);
213 value &= ~SOR_PWM_CTL_DUTY_CYCLE_MASK;
214 value |= 0x400; /* duty cycle */
215 value &= ~SOR_PWM_CTL_CLK_SEL; /* clock source: PCLK */
216 value |= SOR_PWM_CTL_TRIGGER;
217 tegra_sor_writel(sor, value, SOR_PWM_CTL);
218
219 timeout = jiffies + msecs_to_jiffies(timeout);
220
221 while (time_before(jiffies, timeout)) {
222 value = tegra_sor_readl(sor, SOR_PWM_CTL);
223 if ((value & SOR_PWM_CTL_TRIGGER) == 0)
224 return 0;
225
226 usleep_range(25, 100);
227 }
228
229 return -ETIMEDOUT;
230}
231
232static int tegra_sor_attach(struct tegra_sor *sor)
233{
234 unsigned long value, timeout;
235
236 /* wake up in normal mode */
237 value = tegra_sor_readl(sor, SOR_SUPER_STATE_1);
238 value |= SOR_SUPER_STATE_HEAD_MODE_AWAKE;
239 value |= SOR_SUPER_STATE_MODE_NORMAL;
240 tegra_sor_writel(sor, value, SOR_SUPER_STATE_1);
241 tegra_sor_super_update(sor);
242
243 /* attach */
244 value = tegra_sor_readl(sor, SOR_SUPER_STATE_1);
245 value |= SOR_SUPER_STATE_ATTACHED;
246 tegra_sor_writel(sor, value, SOR_SUPER_STATE_1);
247 tegra_sor_super_update(sor);
248
249 timeout = jiffies + msecs_to_jiffies(250);
250
251 while (time_before(jiffies, timeout)) {
252 value = tegra_sor_readl(sor, SOR_TEST);
253 if ((value & SOR_TEST_ATTACHED) != 0)
254 return 0;
255
256 usleep_range(25, 100);
257 }
258
259 return -ETIMEDOUT;
260}
261
262static int tegra_sor_wakeup(struct tegra_sor *sor)
263{
264 struct tegra_dc *dc = to_tegra_dc(sor->output.encoder.crtc);
265 unsigned long value, timeout;
266
267 /* enable display controller outputs */
268 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_POWER_CONTROL);
269 value |= PW0_ENABLE | PW1_ENABLE | PW2_ENABLE | PW3_ENABLE |
270 PW4_ENABLE | PM0_ENABLE | PM1_ENABLE;
271 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_POWER_CONTROL);
272
Thierry Reding62b9e062014-11-21 17:33:33 +0100273 tegra_dc_commit(dc);
Thierry Reding6b6b6042013-11-15 16:06:05 +0100274
275 timeout = jiffies + msecs_to_jiffies(250);
276
277 /* wait for head to wake up */
278 while (time_before(jiffies, timeout)) {
279 value = tegra_sor_readl(sor, SOR_TEST);
280 value &= SOR_TEST_HEAD_MODE_MASK;
281
282 if (value == SOR_TEST_HEAD_MODE_AWAKE)
283 return 0;
284
285 usleep_range(25, 100);
286 }
287
288 return -ETIMEDOUT;
289}
290
291static int tegra_sor_power_up(struct tegra_sor *sor, unsigned long timeout)
292{
293 unsigned long value;
294
295 value = tegra_sor_readl(sor, SOR_PWR);
296 value |= SOR_PWR_TRIGGER | SOR_PWR_NORMAL_STATE_PU;
297 tegra_sor_writel(sor, value, SOR_PWR);
298
299 timeout = jiffies + msecs_to_jiffies(timeout);
300
301 while (time_before(jiffies, timeout)) {
302 value = tegra_sor_readl(sor, SOR_PWR);
303 if ((value & SOR_PWR_TRIGGER) == 0)
304 return 0;
305
306 usleep_range(25, 100);
307 }
308
309 return -ETIMEDOUT;
310}
311
Thierry Reding34fa1832014-06-05 16:31:10 +0200312struct tegra_sor_params {
313 /* number of link clocks per line */
314 unsigned int num_clocks;
315 /* ratio between input and output */
316 u64 ratio;
317 /* precision factor */
318 u64 precision;
319
320 unsigned int active_polarity;
321 unsigned int active_count;
322 unsigned int active_frac;
323 unsigned int tu_size;
324 unsigned int error;
325};
326
327static int tegra_sor_compute_params(struct tegra_sor *sor,
328 struct tegra_sor_params *params,
329 unsigned int tu_size)
330{
331 u64 active_sym, active_count, frac, approx;
332 u32 active_polarity, active_frac = 0;
333 const u64 f = params->precision;
334 s64 error;
335
336 active_sym = params->ratio * tu_size;
337 active_count = div_u64(active_sym, f) * f;
338 frac = active_sym - active_count;
339
340 /* fraction < 0.5 */
341 if (frac >= (f / 2)) {
342 active_polarity = 1;
343 frac = f - frac;
344 } else {
345 active_polarity = 0;
346 }
347
348 if (frac != 0) {
349 frac = div_u64(f * f, frac); /* 1/fraction */
350 if (frac <= (15 * f)) {
351 active_frac = div_u64(frac, f);
352
353 /* round up */
354 if (active_polarity)
355 active_frac++;
356 } else {
357 active_frac = active_polarity ? 1 : 15;
358 }
359 }
360
361 if (active_frac == 1)
362 active_polarity = 0;
363
364 if (active_polarity == 1) {
365 if (active_frac) {
366 approx = active_count + (active_frac * (f - 1)) * f;
367 approx = div_u64(approx, active_frac * f);
368 } else {
369 approx = active_count + f;
370 }
371 } else {
372 if (active_frac)
373 approx = active_count + div_u64(f, active_frac);
374 else
375 approx = active_count;
376 }
377
378 error = div_s64(active_sym - approx, tu_size);
379 error *= params->num_clocks;
380
381 if (error <= 0 && abs64(error) < params->error) {
382 params->active_count = div_u64(active_count, f);
383 params->active_polarity = active_polarity;
384 params->active_frac = active_frac;
385 params->error = abs64(error);
386 params->tu_size = tu_size;
387
388 if (error == 0)
389 return true;
390 }
391
392 return false;
393}
394
395static int tegra_sor_calc_config(struct tegra_sor *sor,
396 struct drm_display_mode *mode,
397 struct tegra_sor_config *config,
398 struct drm_dp_link *link)
399{
400 const u64 f = 100000, link_rate = link->rate * 1000;
401 const u64 pclk = mode->clock * 1000;
Thierry Reding7890b572014-06-05 16:12:46 +0200402 u64 input, output, watermark, num;
Thierry Reding34fa1832014-06-05 16:31:10 +0200403 struct tegra_sor_params params;
Thierry Reding34fa1832014-06-05 16:31:10 +0200404 u32 num_syms_per_line;
405 unsigned int i;
406
407 if (!link_rate || !link->num_lanes || !pclk || !config->bits_per_pixel)
408 return -EINVAL;
409
410 output = link_rate * 8 * link->num_lanes;
411 input = pclk * config->bits_per_pixel;
412
413 if (input >= output)
414 return -ERANGE;
415
416 memset(&params, 0, sizeof(params));
417 params.ratio = div64_u64(input * f, output);
418 params.num_clocks = div_u64(link_rate * mode->hdisplay, pclk);
419 params.precision = f;
420 params.error = 64 * f;
421 params.tu_size = 64;
422
423 for (i = params.tu_size; i >= 32; i--)
424 if (tegra_sor_compute_params(sor, &params, i))
425 break;
426
427 if (params.active_frac == 0) {
428 config->active_polarity = 0;
429 config->active_count = params.active_count;
430
431 if (!params.active_polarity)
432 config->active_count--;
433
434 config->tu_size = params.tu_size;
435 config->active_frac = 1;
436 } else {
437 config->active_polarity = params.active_polarity;
438 config->active_count = params.active_count;
439 config->active_frac = params.active_frac;
440 config->tu_size = params.tu_size;
441 }
442
443 dev_dbg(sor->dev,
444 "polarity: %d active count: %d tu size: %d active frac: %d\n",
445 config->active_polarity, config->active_count,
446 config->tu_size, config->active_frac);
447
448 watermark = params.ratio * config->tu_size * (f - params.ratio);
449 watermark = div_u64(watermark, f);
450
451 watermark = div_u64(watermark + params.error, f);
452 config->watermark = watermark + (config->bits_per_pixel / 8) + 2;
453 num_syms_per_line = (mode->hdisplay * config->bits_per_pixel) *
454 (link->num_lanes * 8);
455
456 if (config->watermark > 30) {
457 config->watermark = 30;
458 dev_err(sor->dev,
459 "unable to compute TU size, forcing watermark to %u\n",
460 config->watermark);
461 } else if (config->watermark > num_syms_per_line) {
462 config->watermark = num_syms_per_line;
463 dev_err(sor->dev, "watermark too high, forcing to %u\n",
464 config->watermark);
465 }
466
Thierry Reding7890b572014-06-05 16:12:46 +0200467 /* compute the number of symbols per horizontal blanking interval */
468 num = ((mode->htotal - mode->hdisplay) - 7) * link_rate;
469 config->hblank_symbols = div_u64(num, pclk);
470
471 if (link->capabilities & DP_LINK_CAP_ENHANCED_FRAMING)
472 config->hblank_symbols -= 3;
473
474 config->hblank_symbols -= 12 / link->num_lanes;
475
476 /* compute the number of symbols per vertical blanking interval */
477 num = (mode->hdisplay - 25) * link_rate;
478 config->vblank_symbols = div_u64(num, pclk);
479 config->vblank_symbols -= 36 / link->num_lanes + 4;
480
481 dev_dbg(sor->dev, "blank symbols: H:%u V:%u\n", config->hblank_symbols,
482 config->vblank_symbols);
483
Thierry Reding34fa1832014-06-05 16:31:10 +0200484 return 0;
485}
486
Thierry Reding6fad8f62014-11-28 15:41:34 +0100487static int tegra_sor_detach(struct tegra_sor *sor)
Thierry Reding6b6b6042013-11-15 16:06:05 +0100488{
Thierry Reding6fad8f62014-11-28 15:41:34 +0100489 unsigned long value, timeout;
490
491 /* switch to safe mode */
492 value = tegra_sor_readl(sor, SOR_SUPER_STATE_1);
493 value &= ~SOR_SUPER_STATE_MODE_NORMAL;
494 tegra_sor_writel(sor, value, SOR_SUPER_STATE_1);
495 tegra_sor_super_update(sor);
496
497 timeout = jiffies + msecs_to_jiffies(250);
498
499 while (time_before(jiffies, timeout)) {
500 value = tegra_sor_readl(sor, SOR_PWR);
501 if (value & SOR_PWR_MODE_SAFE)
502 break;
503 }
504
505 if ((value & SOR_PWR_MODE_SAFE) == 0)
506 return -ETIMEDOUT;
507
508 /* go to sleep */
509 value = tegra_sor_readl(sor, SOR_SUPER_STATE_1);
510 value &= ~SOR_SUPER_STATE_HEAD_MODE_MASK;
511 tegra_sor_writel(sor, value, SOR_SUPER_STATE_1);
512 tegra_sor_super_update(sor);
513
514 /* detach */
515 value = tegra_sor_readl(sor, SOR_SUPER_STATE_1);
516 value &= ~SOR_SUPER_STATE_ATTACHED;
517 tegra_sor_writel(sor, value, SOR_SUPER_STATE_1);
518 tegra_sor_super_update(sor);
519
520 timeout = jiffies + msecs_to_jiffies(250);
521
522 while (time_before(jiffies, timeout)) {
523 value = tegra_sor_readl(sor, SOR_TEST);
524 if ((value & SOR_TEST_ATTACHED) == 0)
525 break;
526
527 usleep_range(25, 100);
528 }
529
530 if ((value & SOR_TEST_ATTACHED) != 0)
531 return -ETIMEDOUT;
532
533 return 0;
534}
535
536static int tegra_sor_power_down(struct tegra_sor *sor)
537{
538 unsigned long value, timeout;
539 int err;
540
541 value = tegra_sor_readl(sor, SOR_PWR);
542 value &= ~SOR_PWR_NORMAL_STATE_PU;
543 value |= SOR_PWR_TRIGGER;
544 tegra_sor_writel(sor, value, SOR_PWR);
545
546 timeout = jiffies + msecs_to_jiffies(250);
547
548 while (time_before(jiffies, timeout)) {
549 value = tegra_sor_readl(sor, SOR_PWR);
550 if ((value & SOR_PWR_TRIGGER) == 0)
551 return 0;
552
553 usleep_range(25, 100);
554 }
555
556 if ((value & SOR_PWR_TRIGGER) != 0)
557 return -ETIMEDOUT;
558
559 err = clk_set_parent(sor->clk, sor->clk_safe);
560 if (err < 0)
561 dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
562
563 value = tegra_sor_readl(sor, SOR_DP_PADCTL_0);
564 value &= ~(SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_0 |
565 SOR_DP_PADCTL_PD_TXD_1 | SOR_DP_PADCTL_PD_TXD_2);
566 tegra_sor_writel(sor, value, SOR_DP_PADCTL_0);
567
568 /* stop lane sequencer */
569 value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_UP |
570 SOR_LANE_SEQ_CTL_POWER_STATE_DOWN;
571 tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL);
572
573 timeout = jiffies + msecs_to_jiffies(250);
574
575 while (time_before(jiffies, timeout)) {
576 value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
577 if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0)
578 break;
579
580 usleep_range(25, 100);
581 }
582
583 if ((value & SOR_LANE_SEQ_CTL_TRIGGER) != 0)
584 return -ETIMEDOUT;
585
586 value = tegra_sor_readl(sor, SOR_PLL_2);
587 value |= SOR_PLL_2_PORT_POWERDOWN;
588 tegra_sor_writel(sor, value, SOR_PLL_2);
589
590 usleep_range(20, 100);
591
592 value = tegra_sor_readl(sor, SOR_PLL_0);
593 value |= SOR_PLL_0_POWER_OFF;
594 value |= SOR_PLL_0_VCOPD;
595 tegra_sor_writel(sor, value, SOR_PLL_0);
596
597 value = tegra_sor_readl(sor, SOR_PLL_2);
598 value |= SOR_PLL_2_SEQ_PLLCAPPD;
599 value |= SOR_PLL_2_SEQ_PLLCAPPD_ENFORCE;
600 tegra_sor_writel(sor, value, SOR_PLL_2);
601
602 usleep_range(20, 100);
603
604 return 0;
605}
606
607static int tegra_sor_crc_open(struct inode *inode, struct file *file)
608{
609 file->private_data = inode->i_private;
610
611 return 0;
612}
613
614static int tegra_sor_crc_release(struct inode *inode, struct file *file)
615{
616 return 0;
617}
618
619static int tegra_sor_crc_wait(struct tegra_sor *sor, unsigned long timeout)
620{
621 u32 value;
622
623 timeout = jiffies + msecs_to_jiffies(timeout);
624
625 while (time_before(jiffies, timeout)) {
626 value = tegra_sor_readl(sor, SOR_CRC_A);
627 if (value & SOR_CRC_A_VALID)
628 return 0;
629
630 usleep_range(100, 200);
631 }
632
633 return -ETIMEDOUT;
634}
635
636static ssize_t tegra_sor_crc_read(struct file *file, char __user *buffer,
637 size_t size, loff_t *ppos)
638{
639 struct tegra_sor *sor = file->private_data;
640 ssize_t num, err;
641 char buf[10];
642 u32 value;
643
644 mutex_lock(&sor->lock);
645
646 if (!sor->enabled) {
647 err = -EAGAIN;
648 goto unlock;
649 }
650
651 value = tegra_sor_readl(sor, SOR_STATE_1);
652 value &= ~SOR_STATE_ASY_CRC_MODE_MASK;
653 tegra_sor_writel(sor, value, SOR_STATE_1);
654
655 value = tegra_sor_readl(sor, SOR_CRC_CNTRL);
656 value |= SOR_CRC_CNTRL_ENABLE;
657 tegra_sor_writel(sor, value, SOR_CRC_CNTRL);
658
659 value = tegra_sor_readl(sor, SOR_TEST);
660 value &= ~SOR_TEST_CRC_POST_SERIALIZE;
661 tegra_sor_writel(sor, value, SOR_TEST);
662
663 err = tegra_sor_crc_wait(sor, 100);
664 if (err < 0)
665 goto unlock;
666
667 tegra_sor_writel(sor, SOR_CRC_A_RESET, SOR_CRC_A);
668 value = tegra_sor_readl(sor, SOR_CRC_B);
669
670 num = scnprintf(buf, sizeof(buf), "%08x\n", value);
671
672 err = simple_read_from_buffer(buffer, size, ppos, buf, num);
673
674unlock:
675 mutex_unlock(&sor->lock);
676 return err;
677}
678
679static const struct file_operations tegra_sor_crc_fops = {
680 .owner = THIS_MODULE,
681 .open = tegra_sor_crc_open,
682 .read = tegra_sor_crc_read,
683 .release = tegra_sor_crc_release,
684};
685
686static int tegra_sor_debugfs_init(struct tegra_sor *sor,
687 struct drm_minor *minor)
688{
689 struct dentry *entry;
690 int err = 0;
691
692 sor->debugfs = debugfs_create_dir("sor", minor->debugfs_root);
693 if (!sor->debugfs)
694 return -ENOMEM;
695
696 entry = debugfs_create_file("crc", 0644, sor->debugfs, sor,
697 &tegra_sor_crc_fops);
698 if (!entry) {
699 dev_err(sor->dev,
700 "cannot create /sys/kernel/debug/dri/%s/sor/crc\n",
701 minor->debugfs_root->d_name.name);
702 err = -ENOMEM;
703 goto remove;
704 }
705
706 return err;
707
708remove:
709 debugfs_remove(sor->debugfs);
710 sor->debugfs = NULL;
711 return err;
712}
713
Thierry Reding4009c222014-12-19 15:47:30 +0100714static void tegra_sor_debugfs_exit(struct tegra_sor *sor)
Thierry Reding6fad8f62014-11-28 15:41:34 +0100715{
716 debugfs_remove_recursive(sor->debugfs);
717 sor->debugfs = NULL;
Thierry Reding6fad8f62014-11-28 15:41:34 +0100718}
719
720static void tegra_sor_connector_dpms(struct drm_connector *connector, int mode)
721{
722}
723
724static enum drm_connector_status
725tegra_sor_connector_detect(struct drm_connector *connector, bool force)
726{
727 struct tegra_output *output = connector_to_output(connector);
728 struct tegra_sor *sor = to_sor(output);
729
730 if (sor->dpaux)
731 return tegra_dpaux_detect(sor->dpaux);
732
733 return connector_status_unknown;
734}
735
736static const struct drm_connector_funcs tegra_sor_connector_funcs = {
737 .dpms = tegra_sor_connector_dpms,
738 .detect = tegra_sor_connector_detect,
739 .fill_modes = drm_helper_probe_single_connector_modes,
740 .destroy = tegra_output_connector_destroy,
Thierry Reding4aa3df72014-11-24 16:27:13 +0100741 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Thierry Reding6fad8f62014-11-28 15:41:34 +0100742};
743
744static int tegra_sor_connector_get_modes(struct drm_connector *connector)
745{
746 struct tegra_output *output = connector_to_output(connector);
747 struct tegra_sor *sor = to_sor(output);
748 int err;
749
750 if (sor->dpaux)
751 tegra_dpaux_enable(sor->dpaux);
752
753 err = tegra_output_connector_get_modes(connector);
754
755 if (sor->dpaux)
756 tegra_dpaux_disable(sor->dpaux);
757
758 return err;
759}
760
761static enum drm_mode_status
762tegra_sor_connector_mode_valid(struct drm_connector *connector,
763 struct drm_display_mode *mode)
764{
765 return MODE_OK;
766}
767
768static const struct drm_connector_helper_funcs tegra_sor_connector_helper_funcs = {
769 .get_modes = tegra_sor_connector_get_modes,
770 .mode_valid = tegra_sor_connector_mode_valid,
771 .best_encoder = tegra_output_connector_best_encoder,
772};
773
774static const struct drm_encoder_funcs tegra_sor_encoder_funcs = {
775 .destroy = tegra_output_encoder_destroy,
776};
777
778static void tegra_sor_encoder_dpms(struct drm_encoder *encoder, int mode)
779{
780}
781
782static bool tegra_sor_encoder_mode_fixup(struct drm_encoder *encoder,
783 const struct drm_display_mode *mode,
784 struct drm_display_mode *adjusted)
785{
786 struct tegra_output *output = encoder_to_output(encoder);
787 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
788 unsigned long pclk = mode->clock * 1000;
789 struct tegra_sor *sor = to_sor(output);
790 int err;
791
792 err = tegra_dc_setup_clock(dc, sor->clk_parent, pclk, 0);
793 if (err < 0) {
794 dev_err(output->dev, "failed to setup DC clock: %d\n", err);
795 return false;
796 }
797
798 err = clk_set_rate(sor->clk_parent, pclk);
799 if (err < 0) {
800 dev_err(output->dev, "failed to set clock rate to %lu Hz\n",
801 pclk);
802 return false;
803 }
804
805 return true;
806}
807
808static void tegra_sor_encoder_prepare(struct drm_encoder *encoder)
809{
810}
811
812static void tegra_sor_encoder_commit(struct drm_encoder *encoder)
813{
814}
815
816static void tegra_sor_encoder_mode_set(struct drm_encoder *encoder,
817 struct drm_display_mode *mode,
818 struct drm_display_mode *adjusted)
819{
820 struct tegra_output *output = encoder_to_output(encoder);
821 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
Thierry Reding6b6b6042013-11-15 16:06:05 +0100822 unsigned int vbe, vse, hbe, hse, vbs, hbs, i;
823 struct tegra_sor *sor = to_sor(output);
Thierry Reding34fa1832014-06-05 16:31:10 +0200824 struct tegra_sor_config config;
825 struct drm_dp_link link;
826 struct drm_dp_aux *aux;
Thierry Reding6b6b6042013-11-15 16:06:05 +0100827 unsigned long value;
Thierry Reding86f5c522014-03-26 11:13:16 +0100828 int err = 0;
829
830 mutex_lock(&sor->lock);
Thierry Reding6b6b6042013-11-15 16:06:05 +0100831
832 if (sor->enabled)
Thierry Reding86f5c522014-03-26 11:13:16 +0100833 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +0100834
835 err = clk_prepare_enable(sor->clk);
836 if (err < 0)
Thierry Reding86f5c522014-03-26 11:13:16 +0100837 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +0100838
839 reset_control_deassert(sor->rst);
840
Thierry Reding6fad8f62014-11-28 15:41:34 +0100841 if (output->panel)
842 drm_panel_prepare(output->panel);
843
Thierry Reding34fa1832014-06-05 16:31:10 +0200844 /* FIXME: properly convert to struct drm_dp_aux */
845 aux = (struct drm_dp_aux *)sor->dpaux;
846
Thierry Reding6b6b6042013-11-15 16:06:05 +0100847 if (sor->dpaux) {
848 err = tegra_dpaux_enable(sor->dpaux);
849 if (err < 0)
850 dev_err(sor->dev, "failed to enable DP: %d\n", err);
Thierry Reding34fa1832014-06-05 16:31:10 +0200851
852 err = drm_dp_link_probe(aux, &link);
853 if (err < 0) {
854 dev_err(sor->dev, "failed to probe eDP link: %d\n",
855 err);
Dan Carpenter2263c462014-06-11 10:06:09 +0300856 goto unlock;
Thierry Reding34fa1832014-06-05 16:31:10 +0200857 }
Thierry Reding6b6b6042013-11-15 16:06:05 +0100858 }
859
860 err = clk_set_parent(sor->clk, sor->clk_safe);
861 if (err < 0)
862 dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
863
Thierry Reding34fa1832014-06-05 16:31:10 +0200864 memset(&config, 0, sizeof(config));
Stéphane Marchesin054b1bd2014-06-19 18:18:29 -0700865 config.bits_per_pixel = output->connector.display_info.bpc * 3;
Thierry Reding34fa1832014-06-05 16:31:10 +0200866
867 err = tegra_sor_calc_config(sor, mode, &config, &link);
868 if (err < 0)
869 dev_err(sor->dev, "failed to compute link configuration: %d\n",
870 err);
871
Thierry Reding6b6b6042013-11-15 16:06:05 +0100872 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
873 value &= ~SOR_CLK_CNTRL_DP_CLK_SEL_MASK;
874 value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_DPCLK;
875 tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
876
877 value = tegra_sor_readl(sor, SOR_PLL_2);
878 value &= ~SOR_PLL_2_BANDGAP_POWERDOWN;
879 tegra_sor_writel(sor, value, SOR_PLL_2);
880 usleep_range(20, 100);
881
882 value = tegra_sor_readl(sor, SOR_PLL_3);
883 value |= SOR_PLL_3_PLL_VDD_MODE_V3_3;
884 tegra_sor_writel(sor, value, SOR_PLL_3);
885
886 value = SOR_PLL_0_ICHPMP(0xf) | SOR_PLL_0_VCOCAP_RST |
887 SOR_PLL_0_PLLREG_LEVEL_V45 | SOR_PLL_0_RESISTOR_EXT;
888 tegra_sor_writel(sor, value, SOR_PLL_0);
889
890 value = tegra_sor_readl(sor, SOR_PLL_2);
891 value |= SOR_PLL_2_SEQ_PLLCAPPD;
892 value &= ~SOR_PLL_2_SEQ_PLLCAPPD_ENFORCE;
893 value |= SOR_PLL_2_LVDS_ENABLE;
894 tegra_sor_writel(sor, value, SOR_PLL_2);
895
896 value = SOR_PLL_1_TERM_COMPOUT | SOR_PLL_1_TMDS_TERM;
897 tegra_sor_writel(sor, value, SOR_PLL_1);
898
899 while (true) {
900 value = tegra_sor_readl(sor, SOR_PLL_2);
901 if ((value & SOR_PLL_2_SEQ_PLLCAPPD_ENFORCE) == 0)
902 break;
903
904 usleep_range(250, 1000);
905 }
906
907 value = tegra_sor_readl(sor, SOR_PLL_2);
908 value &= ~SOR_PLL_2_POWERDOWN_OVERRIDE;
909 value &= ~SOR_PLL_2_PORT_POWERDOWN;
910 tegra_sor_writel(sor, value, SOR_PLL_2);
911
912 /*
913 * power up
914 */
915
916 /* set safe link bandwidth (1.62 Gbps) */
917 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
918 value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
919 value |= SOR_CLK_CNTRL_DP_LINK_SPEED_G1_62;
920 tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
921
922 /* step 1 */
923 value = tegra_sor_readl(sor, SOR_PLL_2);
924 value |= SOR_PLL_2_SEQ_PLLCAPPD_ENFORCE | SOR_PLL_2_PORT_POWERDOWN |
925 SOR_PLL_2_BANDGAP_POWERDOWN;
926 tegra_sor_writel(sor, value, SOR_PLL_2);
927
928 value = tegra_sor_readl(sor, SOR_PLL_0);
929 value |= SOR_PLL_0_VCOPD | SOR_PLL_0_POWER_OFF;
930 tegra_sor_writel(sor, value, SOR_PLL_0);
931
932 value = tegra_sor_readl(sor, SOR_DP_PADCTL_0);
933 value &= ~SOR_DP_PADCTL_PAD_CAL_PD;
934 tegra_sor_writel(sor, value, SOR_DP_PADCTL_0);
935
936 /* step 2 */
937 err = tegra_io_rail_power_on(TEGRA_IO_RAIL_LVDS);
938 if (err < 0) {
939 dev_err(sor->dev, "failed to power on I/O rail: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +0100940 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +0100941 }
942
943 usleep_range(5, 100);
944
945 /* step 3 */
946 value = tegra_sor_readl(sor, SOR_PLL_2);
947 value &= ~SOR_PLL_2_BANDGAP_POWERDOWN;
948 tegra_sor_writel(sor, value, SOR_PLL_2);
949
950 usleep_range(20, 100);
951
952 /* step 4 */
953 value = tegra_sor_readl(sor, SOR_PLL_0);
954 value &= ~SOR_PLL_0_POWER_OFF;
955 value &= ~SOR_PLL_0_VCOPD;
956 tegra_sor_writel(sor, value, SOR_PLL_0);
957
958 value = tegra_sor_readl(sor, SOR_PLL_2);
959 value &= ~SOR_PLL_2_SEQ_PLLCAPPD_ENFORCE;
960 tegra_sor_writel(sor, value, SOR_PLL_2);
961
962 usleep_range(200, 1000);
963
964 /* step 5 */
965 value = tegra_sor_readl(sor, SOR_PLL_2);
966 value &= ~SOR_PLL_2_PORT_POWERDOWN;
967 tegra_sor_writel(sor, value, SOR_PLL_2);
968
969 /* switch to DP clock */
970 err = clk_set_parent(sor->clk, sor->clk_dp);
971 if (err < 0)
972 dev_err(sor->dev, "failed to set DP parent clock: %d\n", err);
973
Thierry Reding899451b2014-06-05 16:19:48 +0200974 /* power DP lanes */
Thierry Reding6b6b6042013-11-15 16:06:05 +0100975 value = tegra_sor_readl(sor, SOR_DP_PADCTL_0);
Thierry Reding899451b2014-06-05 16:19:48 +0200976
977 if (link.num_lanes <= 2)
978 value &= ~(SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_2);
979 else
980 value |= SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_2;
981
982 if (link.num_lanes <= 1)
983 value &= ~SOR_DP_PADCTL_PD_TXD_1;
984 else
985 value |= SOR_DP_PADCTL_PD_TXD_1;
986
987 if (link.num_lanes == 0)
988 value &= ~SOR_DP_PADCTL_PD_TXD_0;
989 else
990 value |= SOR_DP_PADCTL_PD_TXD_0;
991
Thierry Reding6b6b6042013-11-15 16:06:05 +0100992 tegra_sor_writel(sor, value, SOR_DP_PADCTL_0);
993
994 value = tegra_sor_readl(sor, SOR_DP_LINKCTL_0);
995 value &= ~SOR_DP_LINKCTL_LANE_COUNT_MASK;
Thierry Reding0c90a182014-06-05 16:29:46 +0200996 value |= SOR_DP_LINKCTL_LANE_COUNT(link.num_lanes);
Thierry Reding6b6b6042013-11-15 16:06:05 +0100997 tegra_sor_writel(sor, value, SOR_DP_LINKCTL_0);
998
999 /* start lane sequencer */
1000 value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_DOWN |
1001 SOR_LANE_SEQ_CTL_POWER_STATE_UP;
1002 tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL);
1003
1004 while (true) {
1005 value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
1006 if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0)
1007 break;
1008
1009 usleep_range(250, 1000);
1010 }
1011
Thierry Redinga4263fe2014-06-05 16:16:23 +02001012 /* set link bandwidth */
Thierry Reding6b6b6042013-11-15 16:06:05 +01001013 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
1014 value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
Thierry Redinga4263fe2014-06-05 16:16:23 +02001015 value |= drm_dp_link_rate_to_bw_code(link.rate) << 2;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001016 tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
1017
1018 /* set linkctl */
1019 value = tegra_sor_readl(sor, SOR_DP_LINKCTL_0);
1020 value |= SOR_DP_LINKCTL_ENABLE;
1021
1022 value &= ~SOR_DP_LINKCTL_TU_SIZE_MASK;
Thierry Reding34fa1832014-06-05 16:31:10 +02001023 value |= SOR_DP_LINKCTL_TU_SIZE(config.tu_size);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001024
1025 value |= SOR_DP_LINKCTL_ENHANCED_FRAME;
1026 tegra_sor_writel(sor, value, SOR_DP_LINKCTL_0);
1027
1028 for (i = 0, value = 0; i < 4; i++) {
1029 unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
1030 SOR_DP_TPG_SCRAMBLER_GALIOS |
1031 SOR_DP_TPG_PATTERN_NONE;
1032 value = (value << 8) | lane;
1033 }
1034
1035 tegra_sor_writel(sor, value, SOR_DP_TPG);
1036
1037 value = tegra_sor_readl(sor, SOR_DP_CONFIG_0);
1038 value &= ~SOR_DP_CONFIG_WATERMARK_MASK;
Thierry Reding34fa1832014-06-05 16:31:10 +02001039 value |= SOR_DP_CONFIG_WATERMARK(config.watermark);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001040
1041 value &= ~SOR_DP_CONFIG_ACTIVE_SYM_COUNT_MASK;
Thierry Reding34fa1832014-06-05 16:31:10 +02001042 value |= SOR_DP_CONFIG_ACTIVE_SYM_COUNT(config.active_count);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001043
1044 value &= ~SOR_DP_CONFIG_ACTIVE_SYM_FRAC_MASK;
Thierry Reding34fa1832014-06-05 16:31:10 +02001045 value |= SOR_DP_CONFIG_ACTIVE_SYM_FRAC(config.active_frac);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001046
Thierry Reding34fa1832014-06-05 16:31:10 +02001047 if (config.active_polarity)
1048 value |= SOR_DP_CONFIG_ACTIVE_SYM_POLARITY;
1049 else
1050 value &= ~SOR_DP_CONFIG_ACTIVE_SYM_POLARITY;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001051
1052 value |= SOR_DP_CONFIG_ACTIVE_SYM_ENABLE;
Thierry Reding1f64ae72014-06-05 16:20:27 +02001053 value |= SOR_DP_CONFIG_DISPARITY_NEGATIVE;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001054 tegra_sor_writel(sor, value, SOR_DP_CONFIG_0);
1055
1056 value = tegra_sor_readl(sor, SOR_DP_AUDIO_HBLANK_SYMBOLS);
1057 value &= ~SOR_DP_AUDIO_HBLANK_SYMBOLS_MASK;
Thierry Reding7890b572014-06-05 16:12:46 +02001058 value |= config.hblank_symbols & 0xffff;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001059 tegra_sor_writel(sor, value, SOR_DP_AUDIO_HBLANK_SYMBOLS);
1060
1061 value = tegra_sor_readl(sor, SOR_DP_AUDIO_VBLANK_SYMBOLS);
1062 value &= ~SOR_DP_AUDIO_VBLANK_SYMBOLS_MASK;
Thierry Reding7890b572014-06-05 16:12:46 +02001063 value |= config.vblank_symbols & 0xffff;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001064 tegra_sor_writel(sor, value, SOR_DP_AUDIO_VBLANK_SYMBOLS);
1065
1066 /* enable pad calibration logic */
1067 value = tegra_sor_readl(sor, SOR_DP_PADCTL_0);
1068 value |= SOR_DP_PADCTL_PAD_CAL_PD;
1069 tegra_sor_writel(sor, value, SOR_DP_PADCTL_0);
1070
1071 if (sor->dpaux) {
Thierry Reding6b6b6042013-11-15 16:06:05 +01001072 u8 rate, lanes;
1073
1074 err = drm_dp_link_probe(aux, &link);
1075 if (err < 0) {
1076 dev_err(sor->dev, "failed to probe eDP link: %d\n",
1077 err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001078 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001079 }
1080
1081 err = drm_dp_link_power_up(aux, &link);
1082 if (err < 0) {
1083 dev_err(sor->dev, "failed to power up eDP link: %d\n",
1084 err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001085 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001086 }
1087
1088 err = drm_dp_link_configure(aux, &link);
1089 if (err < 0) {
1090 dev_err(sor->dev, "failed to configure eDP link: %d\n",
1091 err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001092 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001093 }
1094
1095 rate = drm_dp_link_rate_to_bw_code(link.rate);
1096 lanes = link.num_lanes;
1097
1098 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
1099 value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
1100 value |= SOR_CLK_CNTRL_DP_LINK_SPEED(rate);
1101 tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
1102
1103 value = tegra_sor_readl(sor, SOR_DP_LINKCTL_0);
1104 value &= ~SOR_DP_LINKCTL_LANE_COUNT_MASK;
1105 value |= SOR_DP_LINKCTL_LANE_COUNT(lanes);
1106
1107 if (link.capabilities & DP_LINK_CAP_ENHANCED_FRAMING)
1108 value |= SOR_DP_LINKCTL_ENHANCED_FRAME;
1109
1110 tegra_sor_writel(sor, value, SOR_DP_LINKCTL_0);
1111
1112 /* disable training pattern generator */
1113
1114 for (i = 0; i < link.num_lanes; i++) {
1115 unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
1116 SOR_DP_TPG_SCRAMBLER_GALIOS |
1117 SOR_DP_TPG_PATTERN_NONE;
1118 value = (value << 8) | lane;
1119 }
1120
1121 tegra_sor_writel(sor, value, SOR_DP_TPG);
1122
1123 err = tegra_sor_dp_train_fast(sor, &link);
1124 if (err < 0) {
1125 dev_err(sor->dev, "DP fast link training failed: %d\n",
1126 err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001127 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001128 }
1129
1130 dev_dbg(sor->dev, "fast link training succeeded\n");
1131 }
1132
1133 err = tegra_sor_power_up(sor, 250);
1134 if (err < 0) {
1135 dev_err(sor->dev, "failed to power up SOR: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001136 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001137 }
1138
1139 /* start display controller in continuous mode */
1140 value = tegra_dc_readl(dc, DC_CMD_STATE_ACCESS);
1141 value |= WRITE_MUX;
1142 tegra_dc_writel(dc, value, DC_CMD_STATE_ACCESS);
1143
1144 tegra_dc_writel(dc, VSYNC_H_POSITION(1), DC_DISP_DISP_TIMING_OPTIONS);
1145 tegra_dc_writel(dc, DISP_CTRL_MODE_C_DISPLAY, DC_CMD_DISPLAY_COMMAND);
1146
1147 value = tegra_dc_readl(dc, DC_CMD_STATE_ACCESS);
1148 value &= ~WRITE_MUX;
1149 tegra_dc_writel(dc, value, DC_CMD_STATE_ACCESS);
1150
1151 /*
1152 * configure panel (24bpp, vsync-, hsync-, DP-A protocol, complete
1153 * raster, associate with display controller)
1154 */
Thierry Reding3f4f3b52014-07-07 15:35:06 +02001155 value = SOR_STATE_ASY_PROTOCOL_DP_A |
Thierry Reding6b6b6042013-11-15 16:06:05 +01001156 SOR_STATE_ASY_CRC_MODE_COMPLETE |
1157 SOR_STATE_ASY_OWNER(dc->pipe + 1);
Thierry Reding34fa1832014-06-05 16:31:10 +02001158
Thierry Reding3f4f3b52014-07-07 15:35:06 +02001159 if (mode->flags & DRM_MODE_FLAG_PHSYNC)
1160 value &= ~SOR_STATE_ASY_HSYNCPOL;
1161
1162 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1163 value |= SOR_STATE_ASY_HSYNCPOL;
1164
1165 if (mode->flags & DRM_MODE_FLAG_PVSYNC)
1166 value &= ~SOR_STATE_ASY_VSYNCPOL;
1167
1168 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1169 value |= SOR_STATE_ASY_VSYNCPOL;
1170
Thierry Reding34fa1832014-06-05 16:31:10 +02001171 switch (config.bits_per_pixel) {
1172 case 24:
1173 value |= SOR_STATE_ASY_PIXELDEPTH_BPP_24_444;
1174 break;
1175
1176 case 18:
1177 value |= SOR_STATE_ASY_PIXELDEPTH_BPP_18_444;
1178 break;
1179
1180 default:
1181 BUG();
1182 break;
1183 }
1184
Thierry Reding6b6b6042013-11-15 16:06:05 +01001185 tegra_sor_writel(sor, value, SOR_STATE_1);
1186
1187 /*
1188 * TODO: The video timing programming below doesn't seem to match the
1189 * register definitions.
1190 */
1191
1192 value = ((mode->vtotal & 0x7fff) << 16) | (mode->htotal & 0x7fff);
1193 tegra_sor_writel(sor, value, SOR_HEAD_STATE_1(0));
1194
1195 vse = mode->vsync_end - mode->vsync_start - 1;
1196 hse = mode->hsync_end - mode->hsync_start - 1;
1197
1198 value = ((vse & 0x7fff) << 16) | (hse & 0x7fff);
1199 tegra_sor_writel(sor, value, SOR_HEAD_STATE_2(0));
1200
1201 vbe = vse + (mode->vsync_start - mode->vdisplay);
1202 hbe = hse + (mode->hsync_start - mode->hdisplay);
1203
1204 value = ((vbe & 0x7fff) << 16) | (hbe & 0x7fff);
1205 tegra_sor_writel(sor, value, SOR_HEAD_STATE_3(0));
1206
1207 vbs = vbe + mode->vdisplay;
1208 hbs = hbe + mode->hdisplay;
1209
1210 value = ((vbs & 0x7fff) << 16) | (hbs & 0x7fff);
1211 tegra_sor_writel(sor, value, SOR_HEAD_STATE_4(0));
1212
Thierry Reding6b6b6042013-11-15 16:06:05 +01001213 /* CSTM (LVDS, link A/B, upper) */
Stéphane Marchesin143b1df2014-05-22 20:32:47 -07001214 value = SOR_CSTM_LVDS | SOR_CSTM_LINK_ACT_A | SOR_CSTM_LINK_ACT_B |
Thierry Reding6b6b6042013-11-15 16:06:05 +01001215 SOR_CSTM_UPPER;
1216 tegra_sor_writel(sor, value, SOR_CSTM);
1217
1218 /* PWM setup */
1219 err = tegra_sor_setup_pwm(sor, 250);
1220 if (err < 0) {
1221 dev_err(sor->dev, "failed to setup PWM: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001222 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001223 }
1224
1225 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
1226 value |= SOR_ENABLE;
1227 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
1228
1229 tegra_sor_update(sor);
1230
1231 err = tegra_sor_attach(sor);
1232 if (err < 0) {
1233 dev_err(sor->dev, "failed to attach SOR: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001234 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001235 }
1236
1237 err = tegra_sor_wakeup(sor);
1238 if (err < 0) {
1239 dev_err(sor->dev, "failed to enable DC: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001240 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001241 }
1242
Thierry Reding6fad8f62014-11-28 15:41:34 +01001243 if (output->panel)
1244 drm_panel_enable(output->panel);
1245
Thierry Reding6b6b6042013-11-15 16:06:05 +01001246 sor->enabled = true;
1247
Thierry Reding86f5c522014-03-26 11:13:16 +01001248unlock:
1249 mutex_unlock(&sor->lock);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001250}
1251
Thierry Reding6fad8f62014-11-28 15:41:34 +01001252static void tegra_sor_encoder_disable(struct drm_encoder *encoder)
Thierry Reding6b6b6042013-11-15 16:06:05 +01001253{
Thierry Reding6fad8f62014-11-28 15:41:34 +01001254 struct tegra_output *output = encoder_to_output(encoder);
1255 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001256 struct tegra_sor *sor = to_sor(output);
Thierry Reding6fad8f62014-11-28 15:41:34 +01001257 u32 value;
1258 int err;
Thierry Reding86f5c522014-03-26 11:13:16 +01001259
1260 mutex_lock(&sor->lock);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001261
1262 if (!sor->enabled)
Thierry Reding86f5c522014-03-26 11:13:16 +01001263 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001264
Thierry Reding6fad8f62014-11-28 15:41:34 +01001265 if (output->panel)
1266 drm_panel_disable(output->panel);
1267
Thierry Reding6b6b6042013-11-15 16:06:05 +01001268 err = tegra_sor_detach(sor);
1269 if (err < 0) {
1270 dev_err(sor->dev, "failed to detach SOR: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001271 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001272 }
1273
1274 tegra_sor_writel(sor, 0, SOR_STATE_1);
1275 tegra_sor_update(sor);
1276
1277 /*
1278 * The following accesses registers of the display controller, so make
1279 * sure it's only executed when the output is attached to one.
1280 */
1281 if (dc) {
Thierry Reding6b6b6042013-11-15 16:06:05 +01001282 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
1283 value &= ~SOR_ENABLE;
1284 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
1285
Thierry Reding62b9e062014-11-21 17:33:33 +01001286 tegra_dc_commit(dc);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001287 }
1288
1289 err = tegra_sor_power_down(sor);
1290 if (err < 0) {
1291 dev_err(sor->dev, "failed to power down SOR: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001292 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001293 }
1294
1295 if (sor->dpaux) {
1296 err = tegra_dpaux_disable(sor->dpaux);
1297 if (err < 0) {
1298 dev_err(sor->dev, "failed to disable DP: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001299 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001300 }
1301 }
1302
1303 err = tegra_io_rail_power_off(TEGRA_IO_RAIL_LVDS);
1304 if (err < 0) {
1305 dev_err(sor->dev, "failed to power off I/O rail: %d\n", err);
Thierry Reding86f5c522014-03-26 11:13:16 +01001306 goto unlock;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001307 }
1308
Thierry Reding6fad8f62014-11-28 15:41:34 +01001309 if (output->panel)
1310 drm_panel_unprepare(output->panel);
1311
Thierry Reding6b6b6042013-11-15 16:06:05 +01001312 clk_disable_unprepare(sor->clk);
Thierry Reding6fad8f62014-11-28 15:41:34 +01001313 reset_control_assert(sor->rst);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001314
1315 sor->enabled = false;
1316
Thierry Reding86f5c522014-03-26 11:13:16 +01001317unlock:
1318 mutex_unlock(&sor->lock);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001319}
1320
Thierry Reding6fad8f62014-11-28 15:41:34 +01001321static const struct drm_encoder_helper_funcs tegra_sor_encoder_helper_funcs = {
1322 .dpms = tegra_sor_encoder_dpms,
1323 .mode_fixup = tegra_sor_encoder_mode_fixup,
1324 .prepare = tegra_sor_encoder_prepare,
1325 .commit = tegra_sor_encoder_commit,
1326 .mode_set = tegra_sor_encoder_mode_set,
1327 .disable = tegra_sor_encoder_disable,
Thierry Reding6b6b6042013-11-15 16:06:05 +01001328};
1329
1330static int tegra_sor_init(struct host1x_client *client)
1331{
Thierry Reding9910f5c2014-05-22 09:57:15 +02001332 struct drm_device *drm = dev_get_drvdata(client->parent);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001333 struct tegra_sor *sor = host1x_client_to_sor(client);
1334 int err;
1335
1336 if (!sor->dpaux)
1337 return -ENODEV;
1338
Thierry Reding6b6b6042013-11-15 16:06:05 +01001339 sor->output.dev = sor->dev;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001340
Thierry Reding6fad8f62014-11-28 15:41:34 +01001341 drm_connector_init(drm, &sor->output.connector,
1342 &tegra_sor_connector_funcs,
1343 DRM_MODE_CONNECTOR_eDP);
1344 drm_connector_helper_add(&sor->output.connector,
1345 &tegra_sor_connector_helper_funcs);
1346 sor->output.connector.dpms = DRM_MODE_DPMS_OFF;
1347
Thierry Reding6fad8f62014-11-28 15:41:34 +01001348 drm_encoder_init(drm, &sor->output.encoder, &tegra_sor_encoder_funcs,
1349 DRM_MODE_ENCODER_TMDS);
1350 drm_encoder_helper_add(&sor->output.encoder,
1351 &tegra_sor_encoder_helper_funcs);
1352
1353 drm_mode_connector_attach_encoder(&sor->output.connector,
1354 &sor->output.encoder);
1355 drm_connector_register(&sor->output.connector);
1356
Thierry Redingea130b22014-12-19 15:51:35 +01001357 err = tegra_output_init(drm, &sor->output);
1358 if (err < 0) {
1359 dev_err(client->dev, "failed to initialize output: %d\n", err);
1360 return err;
1361 }
Thierry Reding6fad8f62014-11-28 15:41:34 +01001362
Thierry Redingea130b22014-12-19 15:51:35 +01001363 sor->output.encoder.possible_crtcs = 0x3;
Thierry Reding6b6b6042013-11-15 16:06:05 +01001364
Thierry Redinga82752e2014-01-31 10:02:15 +01001365 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
Thierry Reding1b0c7b42014-05-28 13:46:12 +02001366 err = tegra_sor_debugfs_init(sor, drm->primary);
Thierry Redinga82752e2014-01-31 10:02:15 +01001367 if (err < 0)
1368 dev_err(sor->dev, "debugfs setup failed: %d\n", err);
1369 }
1370
Thierry Reding6b6b6042013-11-15 16:06:05 +01001371 if (sor->dpaux) {
1372 err = tegra_dpaux_attach(sor->dpaux, &sor->output);
1373 if (err < 0) {
1374 dev_err(sor->dev, "failed to attach DP: %d\n", err);
1375 return err;
1376 }
1377 }
1378
Thierry Reding6fad8f62014-11-28 15:41:34 +01001379 err = clk_prepare_enable(sor->clk);
1380 if (err < 0) {
1381 dev_err(sor->dev, "failed to enable clock: %d\n", err);
1382 return err;
1383 }
1384
1385 err = clk_prepare_enable(sor->clk_safe);
1386 if (err < 0)
1387 return err;
1388
1389 err = clk_prepare_enable(sor->clk_dp);
1390 if (err < 0)
1391 return err;
1392
Thierry Reding6b6b6042013-11-15 16:06:05 +01001393 return 0;
1394}
1395
1396static int tegra_sor_exit(struct host1x_client *client)
1397{
1398 struct tegra_sor *sor = host1x_client_to_sor(client);
1399 int err;
1400
Thierry Reding328ec692014-12-19 15:55:08 +01001401 tegra_output_exit(&sor->output);
1402
Thierry Reding6b6b6042013-11-15 16:06:05 +01001403 if (sor->dpaux) {
1404 err = tegra_dpaux_detach(sor->dpaux);
1405 if (err < 0) {
1406 dev_err(sor->dev, "failed to detach DP: %d\n", err);
1407 return err;
1408 }
1409 }
1410
Thierry Reding6fad8f62014-11-28 15:41:34 +01001411 clk_disable_unprepare(sor->clk_safe);
1412 clk_disable_unprepare(sor->clk_dp);
1413 clk_disable_unprepare(sor->clk);
1414
Thierry Reding4009c222014-12-19 15:47:30 +01001415 if (IS_ENABLED(CONFIG_DEBUG_FS))
1416 tegra_sor_debugfs_exit(sor);
Thierry Redinga82752e2014-01-31 10:02:15 +01001417
Thierry Reding6b6b6042013-11-15 16:06:05 +01001418 return 0;
1419}
1420
1421static const struct host1x_client_ops sor_client_ops = {
1422 .init = tegra_sor_init,
1423 .exit = tegra_sor_exit,
1424};
1425
1426static int tegra_sor_probe(struct platform_device *pdev)
1427{
1428 struct device_node *np;
1429 struct tegra_sor *sor;
1430 struct resource *regs;
1431 int err;
1432
1433 sor = devm_kzalloc(&pdev->dev, sizeof(*sor), GFP_KERNEL);
1434 if (!sor)
1435 return -ENOMEM;
1436
1437 sor->output.dev = sor->dev = &pdev->dev;
1438
1439 np = of_parse_phandle(pdev->dev.of_node, "nvidia,dpaux", 0);
1440 if (np) {
1441 sor->dpaux = tegra_dpaux_find_by_of_node(np);
1442 of_node_put(np);
1443
1444 if (!sor->dpaux)
1445 return -EPROBE_DEFER;
1446 }
1447
1448 err = tegra_output_probe(&sor->output);
1449 if (err < 0)
1450 return err;
1451
1452 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1453 sor->regs = devm_ioremap_resource(&pdev->dev, regs);
1454 if (IS_ERR(sor->regs))
1455 return PTR_ERR(sor->regs);
1456
1457 sor->rst = devm_reset_control_get(&pdev->dev, "sor");
1458 if (IS_ERR(sor->rst))
1459 return PTR_ERR(sor->rst);
1460
1461 sor->clk = devm_clk_get(&pdev->dev, NULL);
1462 if (IS_ERR(sor->clk))
1463 return PTR_ERR(sor->clk);
1464
1465 sor->clk_parent = devm_clk_get(&pdev->dev, "parent");
1466 if (IS_ERR(sor->clk_parent))
1467 return PTR_ERR(sor->clk_parent);
1468
Thierry Reding6b6b6042013-11-15 16:06:05 +01001469 sor->clk_safe = devm_clk_get(&pdev->dev, "safe");
1470 if (IS_ERR(sor->clk_safe))
1471 return PTR_ERR(sor->clk_safe);
1472
Thierry Reding6b6b6042013-11-15 16:06:05 +01001473 sor->clk_dp = devm_clk_get(&pdev->dev, "dp");
1474 if (IS_ERR(sor->clk_dp))
1475 return PTR_ERR(sor->clk_dp);
1476
Thierry Reding6b6b6042013-11-15 16:06:05 +01001477 INIT_LIST_HEAD(&sor->client.list);
1478 sor->client.ops = &sor_client_ops;
1479 sor->client.dev = &pdev->dev;
1480
Thierry Reding86f5c522014-03-26 11:13:16 +01001481 mutex_init(&sor->lock);
1482
Thierry Reding6b6b6042013-11-15 16:06:05 +01001483 err = host1x_client_register(&sor->client);
1484 if (err < 0) {
1485 dev_err(&pdev->dev, "failed to register host1x client: %d\n",
1486 err);
1487 return err;
1488 }
1489
1490 platform_set_drvdata(pdev, sor);
1491
1492 return 0;
1493}
1494
1495static int tegra_sor_remove(struct platform_device *pdev)
1496{
1497 struct tegra_sor *sor = platform_get_drvdata(pdev);
1498 int err;
1499
1500 err = host1x_client_unregister(&sor->client);
1501 if (err < 0) {
1502 dev_err(&pdev->dev, "failed to unregister host1x client: %d\n",
1503 err);
1504 return err;
1505 }
1506
Thierry Reding328ec692014-12-19 15:55:08 +01001507 tegra_output_remove(&sor->output);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001508
1509 return 0;
1510}
1511
1512static const struct of_device_id tegra_sor_of_match[] = {
1513 { .compatible = "nvidia,tegra124-sor", },
1514 { },
1515};
Stephen Warrenef707282014-06-18 16:21:55 -06001516MODULE_DEVICE_TABLE(of, tegra_sor_of_match);
Thierry Reding6b6b6042013-11-15 16:06:05 +01001517
1518struct platform_driver tegra_sor_driver = {
1519 .driver = {
1520 .name = "tegra-sor",
1521 .of_match_table = tegra_sor_of_match,
1522 },
1523 .probe = tegra_sor_probe,
1524 .remove = tegra_sor_remove,
1525};