2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
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.
10 #include <linux/clk.h>
11 #include <linux/debugfs.h>
12 #include <linux/iommu.h>
13 #include <linux/pm_runtime.h>
14 #include <linux/reset.h>
16 #include <soc/tegra/pmc.h>
22 #include <drm/drm_atomic.h>
23 #include <drm/drm_atomic_helper.h>
24 #include <drm/drm_plane_helper.h>
26 struct tegra_dc_soc_info
{
27 bool supports_border_color
;
28 bool supports_interlacing
;
30 bool supports_block_linear
;
31 unsigned int pitch_align
;
37 struct drm_plane base
;
41 static inline struct tegra_plane
*to_tegra_plane(struct drm_plane
*plane
)
43 return container_of(plane
, struct tegra_plane
, base
);
46 struct tegra_dc_state
{
47 struct drm_crtc_state base
;
56 static inline struct tegra_dc_state
*to_dc_state(struct drm_crtc_state
*state
)
59 return container_of(state
, struct tegra_dc_state
, base
);
64 struct tegra_plane_state
{
65 struct drm_plane_state base
;
67 struct tegra_bo_tiling tiling
;
72 static inline struct tegra_plane_state
*
73 to_tegra_plane_state(struct drm_plane_state
*state
)
76 return container_of(state
, struct tegra_plane_state
, base
);
81 static void tegra_dc_stats_reset(struct tegra_dc_stats
*stats
)
90 * Reads the active copy of a register. This takes the dc->lock spinlock to
91 * prevent races with the VBLANK processing which also needs access to the
92 * active copy of some registers.
94 static u32
tegra_dc_readl_active(struct tegra_dc
*dc
, unsigned long offset
)
99 spin_lock_irqsave(&dc
->lock
, flags
);
101 tegra_dc_writel(dc
, READ_MUX
, DC_CMD_STATE_ACCESS
);
102 value
= tegra_dc_readl(dc
, offset
);
103 tegra_dc_writel(dc
, 0, DC_CMD_STATE_ACCESS
);
105 spin_unlock_irqrestore(&dc
->lock
, flags
);
110 * Double-buffered registers have two copies: ASSEMBLY and ACTIVE. When the
111 * *_ACT_REQ bits are set the ASSEMBLY copy is latched into the ACTIVE copy.
112 * Latching happens mmediately if the display controller is in STOP mode or
113 * on the next frame boundary otherwise.
115 * Triple-buffered registers have three copies: ASSEMBLY, ARM and ACTIVE. The
116 * ASSEMBLY copy is latched into the ARM copy immediately after *_UPDATE bits
117 * are written. When the *_ACT_REQ bits are written, the ARM copy is latched
118 * into the ACTIVE copy, either immediately if the display controller is in
119 * STOP mode, or at the next frame boundary otherwise.
121 void tegra_dc_commit(struct tegra_dc
*dc
)
123 tegra_dc_writel(dc
, GENERAL_ACT_REQ
<< 8, DC_CMD_STATE_CONTROL
);
124 tegra_dc_writel(dc
, GENERAL_ACT_REQ
, DC_CMD_STATE_CONTROL
);
127 static int tegra_dc_format(u32 fourcc
, u32
*format
, u32
*swap
)
129 /* assume no swapping of fetched data */
131 *swap
= BYTE_SWAP_NOSWAP
;
134 case DRM_FORMAT_XBGR8888
:
135 *format
= WIN_COLOR_DEPTH_R8G8B8A8
;
138 case DRM_FORMAT_XRGB8888
:
139 *format
= WIN_COLOR_DEPTH_B8G8R8A8
;
142 case DRM_FORMAT_RGB565
:
143 *format
= WIN_COLOR_DEPTH_B5G6R5
;
146 case DRM_FORMAT_UYVY
:
147 *format
= WIN_COLOR_DEPTH_YCbCr422
;
150 case DRM_FORMAT_YUYV
:
152 *swap
= BYTE_SWAP_SWAP2
;
154 *format
= WIN_COLOR_DEPTH_YCbCr422
;
157 case DRM_FORMAT_YUV420
:
158 *format
= WIN_COLOR_DEPTH_YCbCr420P
;
161 case DRM_FORMAT_YUV422
:
162 *format
= WIN_COLOR_DEPTH_YCbCr422P
;
172 static bool tegra_dc_format_is_yuv(unsigned int format
, bool *planar
)
175 case WIN_COLOR_DEPTH_YCbCr422
:
176 case WIN_COLOR_DEPTH_YUV422
:
182 case WIN_COLOR_DEPTH_YCbCr420P
:
183 case WIN_COLOR_DEPTH_YUV420P
:
184 case WIN_COLOR_DEPTH_YCbCr422P
:
185 case WIN_COLOR_DEPTH_YUV422P
:
186 case WIN_COLOR_DEPTH_YCbCr422R
:
187 case WIN_COLOR_DEPTH_YUV422R
:
188 case WIN_COLOR_DEPTH_YCbCr422RA
:
189 case WIN_COLOR_DEPTH_YUV422RA
:
202 static inline u32
compute_dda_inc(unsigned int in
, unsigned int out
, bool v
,
205 fixed20_12 outf
= dfixed_init(out
);
206 fixed20_12 inf
= dfixed_init(in
);
227 outf
.full
= max_t(u32
, outf
.full
- dfixed_const(1), dfixed_const(1));
228 inf
.full
-= dfixed_const(1);
230 dda_inc
= dfixed_div(inf
, outf
);
231 dda_inc
= min_t(u32
, dda_inc
, dfixed_const(max
));
236 static inline u32
compute_initial_dda(unsigned int in
)
238 fixed20_12 inf
= dfixed_init(in
);
239 return dfixed_frac(inf
);
242 static void tegra_dc_setup_window(struct tegra_dc
*dc
, unsigned int index
,
243 const struct tegra_dc_window
*window
)
245 unsigned h_offset
, v_offset
, h_size
, v_size
, h_dda
, v_dda
, bpp
;
246 unsigned long value
, flags
;
250 * For YUV planar modes, the number of bytes per pixel takes into
251 * account only the luma component and therefore is 1.
253 yuv
= tegra_dc_format_is_yuv(window
->format
, &planar
);
255 bpp
= window
->bits_per_pixel
/ 8;
257 bpp
= planar
? 1 : 2;
259 spin_lock_irqsave(&dc
->lock
, flags
);
261 value
= WINDOW_A_SELECT
<< index
;
262 tegra_dc_writel(dc
, value
, DC_CMD_DISPLAY_WINDOW_HEADER
);
264 tegra_dc_writel(dc
, window
->format
, DC_WIN_COLOR_DEPTH
);
265 tegra_dc_writel(dc
, window
->swap
, DC_WIN_BYTE_SWAP
);
267 value
= V_POSITION(window
->dst
.y
) | H_POSITION(window
->dst
.x
);
268 tegra_dc_writel(dc
, value
, DC_WIN_POSITION
);
270 value
= V_SIZE(window
->dst
.h
) | H_SIZE(window
->dst
.w
);
271 tegra_dc_writel(dc
, value
, DC_WIN_SIZE
);
273 h_offset
= window
->src
.x
* bpp
;
274 v_offset
= window
->src
.y
;
275 h_size
= window
->src
.w
* bpp
;
276 v_size
= window
->src
.h
;
278 value
= V_PRESCALED_SIZE(v_size
) | H_PRESCALED_SIZE(h_size
);
279 tegra_dc_writel(dc
, value
, DC_WIN_PRESCALED_SIZE
);
282 * For DDA computations the number of bytes per pixel for YUV planar
283 * modes needs to take into account all Y, U and V components.
288 h_dda
= compute_dda_inc(window
->src
.w
, window
->dst
.w
, false, bpp
);
289 v_dda
= compute_dda_inc(window
->src
.h
, window
->dst
.h
, true, bpp
);
291 value
= V_DDA_INC(v_dda
) | H_DDA_INC(h_dda
);
292 tegra_dc_writel(dc
, value
, DC_WIN_DDA_INC
);
294 h_dda
= compute_initial_dda(window
->src
.x
);
295 v_dda
= compute_initial_dda(window
->src
.y
);
297 tegra_dc_writel(dc
, h_dda
, DC_WIN_H_INITIAL_DDA
);
298 tegra_dc_writel(dc
, v_dda
, DC_WIN_V_INITIAL_DDA
);
300 tegra_dc_writel(dc
, 0, DC_WIN_UV_BUF_STRIDE
);
301 tegra_dc_writel(dc
, 0, DC_WIN_BUF_STRIDE
);
303 tegra_dc_writel(dc
, window
->base
[0], DC_WINBUF_START_ADDR
);
306 tegra_dc_writel(dc
, window
->base
[1], DC_WINBUF_START_ADDR_U
);
307 tegra_dc_writel(dc
, window
->base
[2], DC_WINBUF_START_ADDR_V
);
308 value
= window
->stride
[1] << 16 | window
->stride
[0];
309 tegra_dc_writel(dc
, value
, DC_WIN_LINE_STRIDE
);
311 tegra_dc_writel(dc
, window
->stride
[0], DC_WIN_LINE_STRIDE
);
314 if (window
->bottom_up
)
315 v_offset
+= window
->src
.h
- 1;
317 tegra_dc_writel(dc
, h_offset
, DC_WINBUF_ADDR_H_OFFSET
);
318 tegra_dc_writel(dc
, v_offset
, DC_WINBUF_ADDR_V_OFFSET
);
320 if (dc
->soc
->supports_block_linear
) {
321 unsigned long height
= window
->tiling
.value
;
323 switch (window
->tiling
.mode
) {
324 case TEGRA_BO_TILING_MODE_PITCH
:
325 value
= DC_WINBUF_SURFACE_KIND_PITCH
;
328 case TEGRA_BO_TILING_MODE_TILED
:
329 value
= DC_WINBUF_SURFACE_KIND_TILED
;
332 case TEGRA_BO_TILING_MODE_BLOCK
:
333 value
= DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(height
) |
334 DC_WINBUF_SURFACE_KIND_BLOCK
;
338 tegra_dc_writel(dc
, value
, DC_WINBUF_SURFACE_KIND
);
340 switch (window
->tiling
.mode
) {
341 case TEGRA_BO_TILING_MODE_PITCH
:
342 value
= DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV
|
343 DC_WIN_BUFFER_ADDR_MODE_LINEAR
;
346 case TEGRA_BO_TILING_MODE_TILED
:
347 value
= DC_WIN_BUFFER_ADDR_MODE_TILE_UV
|
348 DC_WIN_BUFFER_ADDR_MODE_TILE
;
351 case TEGRA_BO_TILING_MODE_BLOCK
:
353 * No need to handle this here because ->atomic_check
354 * will already have filtered it out.
359 tegra_dc_writel(dc
, value
, DC_WIN_BUFFER_ADDR_MODE
);
365 /* setup default colorspace conversion coefficients */
366 tegra_dc_writel(dc
, 0x00f0, DC_WIN_CSC_YOF
);
367 tegra_dc_writel(dc
, 0x012a, DC_WIN_CSC_KYRGB
);
368 tegra_dc_writel(dc
, 0x0000, DC_WIN_CSC_KUR
);
369 tegra_dc_writel(dc
, 0x0198, DC_WIN_CSC_KVR
);
370 tegra_dc_writel(dc
, 0x039b, DC_WIN_CSC_KUG
);
371 tegra_dc_writel(dc
, 0x032f, DC_WIN_CSC_KVG
);
372 tegra_dc_writel(dc
, 0x0204, DC_WIN_CSC_KUB
);
373 tegra_dc_writel(dc
, 0x0000, DC_WIN_CSC_KVB
);
376 } else if (window
->bits_per_pixel
< 24) {
377 value
|= COLOR_EXPAND
;
380 if (window
->bottom_up
)
381 value
|= V_DIRECTION
;
383 tegra_dc_writel(dc
, value
, DC_WIN_WIN_OPTIONS
);
386 * Disable blending and assume Window A is the bottom-most window,
387 * Window C is the top-most window and Window B is in the middle.
389 tegra_dc_writel(dc
, 0xffff00, DC_WIN_BLEND_NOKEY
);
390 tegra_dc_writel(dc
, 0xffff00, DC_WIN_BLEND_1WIN
);
394 tegra_dc_writel(dc
, 0x000000, DC_WIN_BLEND_2WIN_X
);
395 tegra_dc_writel(dc
, 0x000000, DC_WIN_BLEND_2WIN_Y
);
396 tegra_dc_writel(dc
, 0x000000, DC_WIN_BLEND_3WIN_XY
);
400 tegra_dc_writel(dc
, 0xffff00, DC_WIN_BLEND_2WIN_X
);
401 tegra_dc_writel(dc
, 0x000000, DC_WIN_BLEND_2WIN_Y
);
402 tegra_dc_writel(dc
, 0x000000, DC_WIN_BLEND_3WIN_XY
);
406 tegra_dc_writel(dc
, 0xffff00, DC_WIN_BLEND_2WIN_X
);
407 tegra_dc_writel(dc
, 0xffff00, DC_WIN_BLEND_2WIN_Y
);
408 tegra_dc_writel(dc
, 0xffff00, DC_WIN_BLEND_3WIN_XY
);
412 spin_unlock_irqrestore(&dc
->lock
, flags
);
415 static void tegra_plane_destroy(struct drm_plane
*plane
)
417 struct tegra_plane
*p
= to_tegra_plane(plane
);
419 drm_plane_cleanup(plane
);
423 static const u32 tegra_primary_plane_formats
[] = {
429 static void tegra_primary_plane_destroy(struct drm_plane
*plane
)
431 tegra_plane_destroy(plane
);
434 static void tegra_plane_reset(struct drm_plane
*plane
)
436 struct tegra_plane_state
*state
;
439 __drm_atomic_helper_plane_destroy_state(plane
->state
);
444 state
= kzalloc(sizeof(*state
), GFP_KERNEL
);
446 plane
->state
= &state
->base
;
447 plane
->state
->plane
= plane
;
451 static struct drm_plane_state
*tegra_plane_atomic_duplicate_state(struct drm_plane
*plane
)
453 struct tegra_plane_state
*state
= to_tegra_plane_state(plane
->state
);
454 struct tegra_plane_state
*copy
;
456 copy
= kmalloc(sizeof(*copy
), GFP_KERNEL
);
460 __drm_atomic_helper_plane_duplicate_state(plane
, ©
->base
);
461 copy
->tiling
= state
->tiling
;
462 copy
->format
= state
->format
;
463 copy
->swap
= state
->swap
;
468 static void tegra_plane_atomic_destroy_state(struct drm_plane
*plane
,
469 struct drm_plane_state
*state
)
471 __drm_atomic_helper_plane_destroy_state(state
);
475 static const struct drm_plane_funcs tegra_primary_plane_funcs
= {
476 .update_plane
= drm_atomic_helper_update_plane
,
477 .disable_plane
= drm_atomic_helper_disable_plane
,
478 .destroy
= tegra_primary_plane_destroy
,
479 .reset
= tegra_plane_reset
,
480 .atomic_duplicate_state
= tegra_plane_atomic_duplicate_state
,
481 .atomic_destroy_state
= tegra_plane_atomic_destroy_state
,
484 static int tegra_plane_state_add(struct tegra_plane
*plane
,
485 struct drm_plane_state
*state
)
487 struct drm_crtc_state
*crtc_state
;
488 struct tegra_dc_state
*tegra
;
489 struct drm_rect clip
;
492 /* Propagate errors from allocation or locking failures. */
493 crtc_state
= drm_atomic_get_crtc_state(state
->state
, state
->crtc
);
494 if (IS_ERR(crtc_state
))
495 return PTR_ERR(crtc_state
);
499 clip
.x2
= crtc_state
->mode
.hdisplay
;
500 clip
.y2
= crtc_state
->mode
.vdisplay
;
502 /* Check plane state for visibility and calculate clipping bounds */
503 err
= drm_plane_helper_check_state(state
, &clip
, 0, INT_MAX
,
508 tegra
= to_dc_state(crtc_state
);
510 tegra
->planes
|= WIN_A_ACT_REQ
<< plane
->index
;
515 static int tegra_plane_atomic_check(struct drm_plane
*plane
,
516 struct drm_plane_state
*state
)
518 struct tegra_plane_state
*plane_state
= to_tegra_plane_state(state
);
519 struct tegra_bo_tiling
*tiling
= &plane_state
->tiling
;
520 struct tegra_plane
*tegra
= to_tegra_plane(plane
);
521 struct tegra_dc
*dc
= to_tegra_dc(state
->crtc
);
524 /* no need for further checks if the plane is being disabled */
528 err
= tegra_dc_format(state
->fb
->format
->format
, &plane_state
->format
,
533 err
= tegra_fb_get_tiling(state
->fb
, tiling
);
537 if (tiling
->mode
== TEGRA_BO_TILING_MODE_BLOCK
&&
538 !dc
->soc
->supports_block_linear
) {
539 DRM_ERROR("hardware doesn't support block linear mode\n");
544 * Tegra doesn't support different strides for U and V planes so we
545 * error out if the user tries to display a framebuffer with such a
548 if (state
->fb
->format
->num_planes
> 2) {
549 if (state
->fb
->pitches
[2] != state
->fb
->pitches
[1]) {
550 DRM_ERROR("unsupported UV-plane configuration\n");
555 err
= tegra_plane_state_add(tegra
, state
);
562 static void tegra_dc_disable_window(struct tegra_dc
*dc
, int index
)
567 spin_lock_irqsave(&dc
->lock
, flags
);
569 value
= WINDOW_A_SELECT
<< index
;
570 tegra_dc_writel(dc
, value
, DC_CMD_DISPLAY_WINDOW_HEADER
);
572 value
= tegra_dc_readl(dc
, DC_WIN_WIN_OPTIONS
);
573 value
&= ~WIN_ENABLE
;
574 tegra_dc_writel(dc
, value
, DC_WIN_WIN_OPTIONS
);
576 spin_unlock_irqrestore(&dc
->lock
, flags
);
579 static void tegra_plane_atomic_update(struct drm_plane
*plane
,
580 struct drm_plane_state
*old_state
)
582 struct tegra_plane_state
*state
= to_tegra_plane_state(plane
->state
);
583 struct tegra_dc
*dc
= to_tegra_dc(plane
->state
->crtc
);
584 struct drm_framebuffer
*fb
= plane
->state
->fb
;
585 struct tegra_plane
*p
= to_tegra_plane(plane
);
586 struct tegra_dc_window window
;
589 /* rien ne va plus */
590 if (!plane
->state
->crtc
|| !plane
->state
->fb
)
593 if (!plane
->state
->visible
)
594 return tegra_dc_disable_window(dc
, p
->index
);
596 memset(&window
, 0, sizeof(window
));
597 window
.src
.x
= plane
->state
->src
.x1
>> 16;
598 window
.src
.y
= plane
->state
->src
.y1
>> 16;
599 window
.src
.w
= drm_rect_width(&plane
->state
->src
) >> 16;
600 window
.src
.h
= drm_rect_height(&plane
->state
->src
) >> 16;
601 window
.dst
.x
= plane
->state
->dst
.x1
;
602 window
.dst
.y
= plane
->state
->dst
.y1
;
603 window
.dst
.w
= drm_rect_width(&plane
->state
->dst
);
604 window
.dst
.h
= drm_rect_height(&plane
->state
->dst
);
605 window
.bits_per_pixel
= fb
->format
->cpp
[0] * 8;
606 window
.bottom_up
= tegra_fb_is_bottom_up(fb
);
608 /* copy from state */
609 window
.tiling
= state
->tiling
;
610 window
.format
= state
->format
;
611 window
.swap
= state
->swap
;
613 for (i
= 0; i
< fb
->format
->num_planes
; i
++) {
614 struct tegra_bo
*bo
= tegra_fb_get_plane(fb
, i
);
616 window
.base
[i
] = bo
->paddr
+ fb
->offsets
[i
];
619 * Tegra uses a shared stride for UV planes. Framebuffers are
620 * already checked for this in the tegra_plane_atomic_check()
621 * function, so it's safe to ignore the V-plane pitch here.
624 window
.stride
[i
] = fb
->pitches
[i
];
627 tegra_dc_setup_window(dc
, p
->index
, &window
);
630 static void tegra_plane_atomic_disable(struct drm_plane
*plane
,
631 struct drm_plane_state
*old_state
)
633 struct tegra_plane
*p
= to_tegra_plane(plane
);
636 /* rien ne va plus */
637 if (!old_state
|| !old_state
->crtc
)
640 dc
= to_tegra_dc(old_state
->crtc
);
642 tegra_dc_disable_window(dc
, p
->index
);
645 static const struct drm_plane_helper_funcs tegra_primary_plane_helper_funcs
= {
646 .atomic_check
= tegra_plane_atomic_check
,
647 .atomic_update
= tegra_plane_atomic_update
,
648 .atomic_disable
= tegra_plane_atomic_disable
,
651 static struct drm_plane
*tegra_dc_primary_plane_create(struct drm_device
*drm
,
655 * Ideally this would use drm_crtc_mask(), but that would require the
656 * CRTC to already be in the mode_config's list of CRTCs. However, it
657 * will only be added to that list in the drm_crtc_init_with_planes()
658 * (in tegra_dc_init()), which in turn requires registration of these
659 * planes. So we have ourselves a nice little chicken and egg problem
662 * We work around this by manually creating the mask from the number
663 * of CRTCs that have been registered, and should therefore always be
664 * the same as drm_crtc_index() after registration.
666 unsigned long possible_crtcs
= 1 << drm
->mode_config
.num_crtc
;
667 struct tegra_plane
*plane
;
668 unsigned int num_formats
;
672 plane
= kzalloc(sizeof(*plane
), GFP_KERNEL
);
674 return ERR_PTR(-ENOMEM
);
676 num_formats
= ARRAY_SIZE(tegra_primary_plane_formats
);
677 formats
= tegra_primary_plane_formats
;
679 err
= drm_universal_plane_init(drm
, &plane
->base
, possible_crtcs
,
680 &tegra_primary_plane_funcs
, formats
,
681 num_formats
, DRM_PLANE_TYPE_PRIMARY
,
688 drm_plane_helper_add(&plane
->base
, &tegra_primary_plane_helper_funcs
);
693 static const u32 tegra_cursor_plane_formats
[] = {
697 static int tegra_cursor_atomic_check(struct drm_plane
*plane
,
698 struct drm_plane_state
*state
)
700 struct tegra_plane
*tegra
= to_tegra_plane(plane
);
703 /* no need for further checks if the plane is being disabled */
707 /* scaling not supported for cursor */
708 if ((state
->src_w
>> 16 != state
->crtc_w
) ||
709 (state
->src_h
>> 16 != state
->crtc_h
))
712 /* only square cursors supported */
713 if (state
->src_w
!= state
->src_h
)
716 if (state
->crtc_w
!= 32 && state
->crtc_w
!= 64 &&
717 state
->crtc_w
!= 128 && state
->crtc_w
!= 256)
720 err
= tegra_plane_state_add(tegra
, state
);
727 static void tegra_cursor_atomic_update(struct drm_plane
*plane
,
728 struct drm_plane_state
*old_state
)
730 struct tegra_bo
*bo
= tegra_fb_get_plane(plane
->state
->fb
, 0);
731 struct tegra_dc
*dc
= to_tegra_dc(plane
->state
->crtc
);
732 struct drm_plane_state
*state
= plane
->state
;
733 u32 value
= CURSOR_CLIP_DISPLAY
;
735 /* rien ne va plus */
736 if (!plane
->state
->crtc
|| !plane
->state
->fb
)
739 switch (state
->crtc_w
) {
741 value
|= CURSOR_SIZE_32x32
;
745 value
|= CURSOR_SIZE_64x64
;
749 value
|= CURSOR_SIZE_128x128
;
753 value
|= CURSOR_SIZE_256x256
;
757 WARN(1, "cursor size %ux%u not supported\n", state
->crtc_w
,
762 value
|= (bo
->paddr
>> 10) & 0x3fffff;
763 tegra_dc_writel(dc
, value
, DC_DISP_CURSOR_START_ADDR
);
765 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
766 value
= (bo
->paddr
>> 32) & 0x3;
767 tegra_dc_writel(dc
, value
, DC_DISP_CURSOR_START_ADDR_HI
);
770 /* enable cursor and set blend mode */
771 value
= tegra_dc_readl(dc
, DC_DISP_DISP_WIN_OPTIONS
);
772 value
|= CURSOR_ENABLE
;
773 tegra_dc_writel(dc
, value
, DC_DISP_DISP_WIN_OPTIONS
);
775 value
= tegra_dc_readl(dc
, DC_DISP_BLEND_CURSOR_CONTROL
);
776 value
&= ~CURSOR_DST_BLEND_MASK
;
777 value
&= ~CURSOR_SRC_BLEND_MASK
;
778 value
|= CURSOR_MODE_NORMAL
;
779 value
|= CURSOR_DST_BLEND_NEG_K1_TIMES_SRC
;
780 value
|= CURSOR_SRC_BLEND_K1_TIMES_SRC
;
781 value
|= CURSOR_ALPHA
;
782 tegra_dc_writel(dc
, value
, DC_DISP_BLEND_CURSOR_CONTROL
);
784 /* position the cursor */
785 value
= (state
->crtc_y
& 0x3fff) << 16 | (state
->crtc_x
& 0x3fff);
786 tegra_dc_writel(dc
, value
, DC_DISP_CURSOR_POSITION
);
789 static void tegra_cursor_atomic_disable(struct drm_plane
*plane
,
790 struct drm_plane_state
*old_state
)
795 /* rien ne va plus */
796 if (!old_state
|| !old_state
->crtc
)
799 dc
= to_tegra_dc(old_state
->crtc
);
801 value
= tegra_dc_readl(dc
, DC_DISP_DISP_WIN_OPTIONS
);
802 value
&= ~CURSOR_ENABLE
;
803 tegra_dc_writel(dc
, value
, DC_DISP_DISP_WIN_OPTIONS
);
806 static const struct drm_plane_funcs tegra_cursor_plane_funcs
= {
807 .update_plane
= drm_atomic_helper_update_plane
,
808 .disable_plane
= drm_atomic_helper_disable_plane
,
809 .destroy
= tegra_plane_destroy
,
810 .reset
= tegra_plane_reset
,
811 .atomic_duplicate_state
= tegra_plane_atomic_duplicate_state
,
812 .atomic_destroy_state
= tegra_plane_atomic_destroy_state
,
815 static const struct drm_plane_helper_funcs tegra_cursor_plane_helper_funcs
= {
816 .atomic_check
= tegra_cursor_atomic_check
,
817 .atomic_update
= tegra_cursor_atomic_update
,
818 .atomic_disable
= tegra_cursor_atomic_disable
,
821 static struct drm_plane
*tegra_dc_cursor_plane_create(struct drm_device
*drm
,
824 struct tegra_plane
*plane
;
825 unsigned int num_formats
;
829 plane
= kzalloc(sizeof(*plane
), GFP_KERNEL
);
831 return ERR_PTR(-ENOMEM
);
834 * This index is kind of fake. The cursor isn't a regular plane, but
835 * its update and activation request bits in DC_CMD_STATE_CONTROL do
836 * use the same programming. Setting this fake index here allows the
837 * code in tegra_add_plane_state() to do the right thing without the
838 * need to special-casing the cursor plane.
842 num_formats
= ARRAY_SIZE(tegra_cursor_plane_formats
);
843 formats
= tegra_cursor_plane_formats
;
845 err
= drm_universal_plane_init(drm
, &plane
->base
, 1 << dc
->pipe
,
846 &tegra_cursor_plane_funcs
, formats
,
847 num_formats
, DRM_PLANE_TYPE_CURSOR
,
854 drm_plane_helper_add(&plane
->base
, &tegra_cursor_plane_helper_funcs
);
859 static void tegra_overlay_plane_destroy(struct drm_plane
*plane
)
861 tegra_plane_destroy(plane
);
864 static const struct drm_plane_funcs tegra_overlay_plane_funcs
= {
865 .update_plane
= drm_atomic_helper_update_plane
,
866 .disable_plane
= drm_atomic_helper_disable_plane
,
867 .destroy
= tegra_overlay_plane_destroy
,
868 .reset
= tegra_plane_reset
,
869 .atomic_duplicate_state
= tegra_plane_atomic_duplicate_state
,
870 .atomic_destroy_state
= tegra_plane_atomic_destroy_state
,
873 static const uint32_t tegra_overlay_plane_formats
[] = {
883 static const struct drm_plane_helper_funcs tegra_overlay_plane_helper_funcs
= {
884 .atomic_check
= tegra_plane_atomic_check
,
885 .atomic_update
= tegra_plane_atomic_update
,
886 .atomic_disable
= tegra_plane_atomic_disable
,
889 static struct drm_plane
*tegra_dc_overlay_plane_create(struct drm_device
*drm
,
893 struct tegra_plane
*plane
;
894 unsigned int num_formats
;
898 plane
= kzalloc(sizeof(*plane
), GFP_KERNEL
);
900 return ERR_PTR(-ENOMEM
);
902 plane
->index
= index
;
904 num_formats
= ARRAY_SIZE(tegra_overlay_plane_formats
);
905 formats
= tegra_overlay_plane_formats
;
907 err
= drm_universal_plane_init(drm
, &plane
->base
, 1 << dc
->pipe
,
908 &tegra_overlay_plane_funcs
, formats
,
909 num_formats
, DRM_PLANE_TYPE_OVERLAY
,
916 drm_plane_helper_add(&plane
->base
, &tegra_overlay_plane_helper_funcs
);
921 static int tegra_dc_add_planes(struct drm_device
*drm
, struct tegra_dc
*dc
)
923 struct drm_plane
*plane
;
926 for (i
= 0; i
< 2; i
++) {
927 plane
= tegra_dc_overlay_plane_create(drm
, dc
, 1 + i
);
929 return PTR_ERR(plane
);
935 static u32
tegra_dc_get_vblank_counter(struct drm_crtc
*crtc
)
937 struct tegra_dc
*dc
= to_tegra_dc(crtc
);
940 return host1x_syncpt_read(dc
->syncpt
);
942 /* fallback to software emulated VBLANK counter */
943 return drm_crtc_vblank_count(&dc
->base
);
946 static int tegra_dc_enable_vblank(struct drm_crtc
*crtc
)
948 struct tegra_dc
*dc
= to_tegra_dc(crtc
);
949 unsigned long value
, flags
;
951 spin_lock_irqsave(&dc
->lock
, flags
);
953 value
= tegra_dc_readl(dc
, DC_CMD_INT_MASK
);
955 tegra_dc_writel(dc
, value
, DC_CMD_INT_MASK
);
957 spin_unlock_irqrestore(&dc
->lock
, flags
);
962 static void tegra_dc_disable_vblank(struct drm_crtc
*crtc
)
964 struct tegra_dc
*dc
= to_tegra_dc(crtc
);
965 unsigned long value
, flags
;
967 spin_lock_irqsave(&dc
->lock
, flags
);
969 value
= tegra_dc_readl(dc
, DC_CMD_INT_MASK
);
970 value
&= ~VBLANK_INT
;
971 tegra_dc_writel(dc
, value
, DC_CMD_INT_MASK
);
973 spin_unlock_irqrestore(&dc
->lock
, flags
);
976 static void tegra_dc_finish_page_flip(struct tegra_dc
*dc
)
978 struct drm_device
*drm
= dc
->base
.dev
;
979 struct drm_crtc
*crtc
= &dc
->base
;
980 unsigned long flags
, base
;
983 spin_lock_irqsave(&drm
->event_lock
, flags
);
986 spin_unlock_irqrestore(&drm
->event_lock
, flags
);
990 bo
= tegra_fb_get_plane(crtc
->primary
->fb
, 0);
992 spin_lock(&dc
->lock
);
994 /* check if new start address has been latched */
995 tegra_dc_writel(dc
, WINDOW_A_SELECT
, DC_CMD_DISPLAY_WINDOW_HEADER
);
996 tegra_dc_writel(dc
, READ_MUX
, DC_CMD_STATE_ACCESS
);
997 base
= tegra_dc_readl(dc
, DC_WINBUF_START_ADDR
);
998 tegra_dc_writel(dc
, 0, DC_CMD_STATE_ACCESS
);
1000 spin_unlock(&dc
->lock
);
1002 if (base
== bo
->paddr
+ crtc
->primary
->fb
->offsets
[0]) {
1003 drm_crtc_send_vblank_event(crtc
, dc
->event
);
1004 drm_crtc_vblank_put(crtc
);
1008 spin_unlock_irqrestore(&drm
->event_lock
, flags
);
1011 static void tegra_dc_destroy(struct drm_crtc
*crtc
)
1013 drm_crtc_cleanup(crtc
);
1016 static void tegra_crtc_reset(struct drm_crtc
*crtc
)
1018 struct tegra_dc_state
*state
;
1021 __drm_atomic_helper_crtc_destroy_state(crtc
->state
);
1026 state
= kzalloc(sizeof(*state
), GFP_KERNEL
);
1028 crtc
->state
= &state
->base
;
1029 crtc
->state
->crtc
= crtc
;
1032 drm_crtc_vblank_reset(crtc
);
1035 static struct drm_crtc_state
*
1036 tegra_crtc_atomic_duplicate_state(struct drm_crtc
*crtc
)
1038 struct tegra_dc_state
*state
= to_dc_state(crtc
->state
);
1039 struct tegra_dc_state
*copy
;
1041 copy
= kmalloc(sizeof(*copy
), GFP_KERNEL
);
1045 __drm_atomic_helper_crtc_duplicate_state(crtc
, ©
->base
);
1046 copy
->clk
= state
->clk
;
1047 copy
->pclk
= state
->pclk
;
1048 copy
->div
= state
->div
;
1049 copy
->planes
= state
->planes
;
1054 static void tegra_crtc_atomic_destroy_state(struct drm_crtc
*crtc
,
1055 struct drm_crtc_state
*state
)
1057 __drm_atomic_helper_crtc_destroy_state(state
);
1061 static const struct drm_crtc_funcs tegra_crtc_funcs
= {
1062 .page_flip
= drm_atomic_helper_page_flip
,
1063 .set_config
= drm_atomic_helper_set_config
,
1064 .destroy
= tegra_dc_destroy
,
1065 .reset
= tegra_crtc_reset
,
1066 .atomic_duplicate_state
= tegra_crtc_atomic_duplicate_state
,
1067 .atomic_destroy_state
= tegra_crtc_atomic_destroy_state
,
1068 .get_vblank_counter
= tegra_dc_get_vblank_counter
,
1069 .enable_vblank
= tegra_dc_enable_vblank
,
1070 .disable_vblank
= tegra_dc_disable_vblank
,
1073 static int tegra_dc_set_timings(struct tegra_dc
*dc
,
1074 struct drm_display_mode
*mode
)
1076 unsigned int h_ref_to_sync
= 1;
1077 unsigned int v_ref_to_sync
= 1;
1078 unsigned long value
;
1080 tegra_dc_writel(dc
, 0x0, DC_DISP_DISP_TIMING_OPTIONS
);
1082 value
= (v_ref_to_sync
<< 16) | h_ref_to_sync
;
1083 tegra_dc_writel(dc
, value
, DC_DISP_REF_TO_SYNC
);
1085 value
= ((mode
->vsync_end
- mode
->vsync_start
) << 16) |
1086 ((mode
->hsync_end
- mode
->hsync_start
) << 0);
1087 tegra_dc_writel(dc
, value
, DC_DISP_SYNC_WIDTH
);
1089 value
= ((mode
->vtotal
- mode
->vsync_end
) << 16) |
1090 ((mode
->htotal
- mode
->hsync_end
) << 0);
1091 tegra_dc_writel(dc
, value
, DC_DISP_BACK_PORCH
);
1093 value
= ((mode
->vsync_start
- mode
->vdisplay
) << 16) |
1094 ((mode
->hsync_start
- mode
->hdisplay
) << 0);
1095 tegra_dc_writel(dc
, value
, DC_DISP_FRONT_PORCH
);
1097 value
= (mode
->vdisplay
<< 16) | mode
->hdisplay
;
1098 tegra_dc_writel(dc
, value
, DC_DISP_ACTIVE
);
1104 * tegra_dc_state_setup_clock - check clock settings and store them in atomic
1106 * @dc: display controller
1107 * @crtc_state: CRTC atomic state
1108 * @clk: parent clock for display controller
1109 * @pclk: pixel clock
1110 * @div: shift clock divider
1113 * 0 on success or a negative error-code on failure.
1115 int tegra_dc_state_setup_clock(struct tegra_dc
*dc
,
1116 struct drm_crtc_state
*crtc_state
,
1117 struct clk
*clk
, unsigned long pclk
,
1120 struct tegra_dc_state
*state
= to_dc_state(crtc_state
);
1122 if (!clk_has_parent(dc
->clk
, clk
))
1132 static void tegra_dc_commit_state(struct tegra_dc
*dc
,
1133 struct tegra_dc_state
*state
)
1138 err
= clk_set_parent(dc
->clk
, state
->clk
);
1140 dev_err(dc
->dev
, "failed to set parent clock: %d\n", err
);
1143 * Outputs may not want to change the parent clock rate. This is only
1144 * relevant to Tegra20 where only a single display PLL is available.
1145 * Since that PLL would typically be used for HDMI, an internal LVDS
1146 * panel would need to be driven by some other clock such as PLL_P
1147 * which is shared with other peripherals. Changing the clock rate
1148 * should therefore be avoided.
1150 if (state
->pclk
> 0) {
1151 err
= clk_set_rate(state
->clk
, state
->pclk
);
1154 "failed to set clock rate to %lu Hz\n",
1158 DRM_DEBUG_KMS("rate: %lu, div: %u\n", clk_get_rate(dc
->clk
),
1160 DRM_DEBUG_KMS("pclk: %lu\n", state
->pclk
);
1162 value
= SHIFT_CLK_DIVIDER(state
->div
) | PIXEL_CLK_DIVIDER_PCD1
;
1163 tegra_dc_writel(dc
, value
, DC_DISP_DISP_CLOCK_CONTROL
);
1166 static void tegra_dc_stop(struct tegra_dc
*dc
)
1170 /* stop the display controller */
1171 value
= tegra_dc_readl(dc
, DC_CMD_DISPLAY_COMMAND
);
1172 value
&= ~DISP_CTRL_MODE_MASK
;
1173 tegra_dc_writel(dc
, value
, DC_CMD_DISPLAY_COMMAND
);
1175 tegra_dc_commit(dc
);
1178 static bool tegra_dc_idle(struct tegra_dc
*dc
)
1182 value
= tegra_dc_readl_active(dc
, DC_CMD_DISPLAY_COMMAND
);
1184 return (value
& DISP_CTRL_MODE_MASK
) == 0;
1187 static int tegra_dc_wait_idle(struct tegra_dc
*dc
, unsigned long timeout
)
1189 timeout
= jiffies
+ msecs_to_jiffies(timeout
);
1191 while (time_before(jiffies
, timeout
)) {
1192 if (tegra_dc_idle(dc
))
1195 usleep_range(1000, 2000);
1198 dev_dbg(dc
->dev
, "timeout waiting for DC to become idle\n");
1202 static void tegra_crtc_disable(struct drm_crtc
*crtc
)
1204 struct tegra_dc
*dc
= to_tegra_dc(crtc
);
1207 if (!tegra_dc_idle(dc
)) {
1211 * Ignore the return value, there isn't anything useful to do
1212 * in case this fails.
1214 tegra_dc_wait_idle(dc
, 100);
1218 * This should really be part of the RGB encoder driver, but clearing
1219 * these bits has the side-effect of stopping the display controller.
1220 * When that happens no VBLANK interrupts will be raised. At the same
1221 * time the encoder is disabled before the display controller, so the
1222 * above code is always going to timeout waiting for the controller
1225 * Given the close coupling between the RGB encoder and the display
1226 * controller doing it here is still kind of okay. None of the other
1227 * encoder drivers require these bits to be cleared.
1229 * XXX: Perhaps given that the display controller is switched off at
1230 * this point anyway maybe clearing these bits isn't even useful for
1234 value
= tegra_dc_readl(dc
, DC_CMD_DISPLAY_POWER_CONTROL
);
1235 value
&= ~(PW0_ENABLE
| PW1_ENABLE
| PW2_ENABLE
| PW3_ENABLE
|
1236 PW4_ENABLE
| PM0_ENABLE
| PM1_ENABLE
);
1237 tegra_dc_writel(dc
, value
, DC_CMD_DISPLAY_POWER_CONTROL
);
1240 tegra_dc_stats_reset(&dc
->stats
);
1241 drm_crtc_vblank_off(crtc
);
1243 pm_runtime_put_sync(dc
->dev
);
1246 static void tegra_crtc_enable(struct drm_crtc
*crtc
)
1248 struct drm_display_mode
*mode
= &crtc
->state
->adjusted_mode
;
1249 struct tegra_dc_state
*state
= to_dc_state(crtc
->state
);
1250 struct tegra_dc
*dc
= to_tegra_dc(crtc
);
1253 pm_runtime_get_sync(dc
->dev
);
1255 /* initialize display controller */
1257 u32 syncpt
= host1x_syncpt_id(dc
->syncpt
);
1259 value
= SYNCPT_CNTRL_NO_STALL
;
1260 tegra_dc_writel(dc
, value
, DC_CMD_GENERAL_INCR_SYNCPT_CNTRL
);
1262 value
= SYNCPT_VSYNC_ENABLE
| syncpt
;
1263 tegra_dc_writel(dc
, value
, DC_CMD_CONT_SYNCPT_VSYNC
);
1266 value
= WIN_A_UF_INT
| WIN_B_UF_INT
| WIN_C_UF_INT
|
1267 WIN_A_OF_INT
| WIN_B_OF_INT
| WIN_C_OF_INT
;
1268 tegra_dc_writel(dc
, value
, DC_CMD_INT_TYPE
);
1270 value
= WIN_A_UF_INT
| WIN_B_UF_INT
| WIN_C_UF_INT
|
1271 WIN_A_OF_INT
| WIN_B_OF_INT
| WIN_C_OF_INT
;
1272 tegra_dc_writel(dc
, value
, DC_CMD_INT_POLARITY
);
1274 /* initialize timer */
1275 value
= CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(0x20) |
1276 WINDOW_B_THRESHOLD(0x20) | WINDOW_C_THRESHOLD(0x20);
1277 tegra_dc_writel(dc
, value
, DC_DISP_DISP_MEM_HIGH_PRIORITY
);
1279 value
= CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(1) |
1280 WINDOW_B_THRESHOLD(1) | WINDOW_C_THRESHOLD(1);
1281 tegra_dc_writel(dc
, value
, DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER
);
1283 value
= VBLANK_INT
| WIN_A_UF_INT
| WIN_B_UF_INT
| WIN_C_UF_INT
|
1284 WIN_A_OF_INT
| WIN_B_OF_INT
| WIN_C_OF_INT
;
1285 tegra_dc_writel(dc
, value
, DC_CMD_INT_ENABLE
);
1287 value
= WIN_A_UF_INT
| WIN_B_UF_INT
| WIN_C_UF_INT
|
1288 WIN_A_OF_INT
| WIN_B_OF_INT
| WIN_C_OF_INT
;
1289 tegra_dc_writel(dc
, value
, DC_CMD_INT_MASK
);
1291 if (dc
->soc
->supports_border_color
)
1292 tegra_dc_writel(dc
, 0, DC_DISP_BORDER_COLOR
);
1294 /* apply PLL and pixel clock changes */
1295 tegra_dc_commit_state(dc
, state
);
1297 /* program display mode */
1298 tegra_dc_set_timings(dc
, mode
);
1300 /* interlacing isn't supported yet, so disable it */
1301 if (dc
->soc
->supports_interlacing
) {
1302 value
= tegra_dc_readl(dc
, DC_DISP_INTERLACE_CONTROL
);
1303 value
&= ~INTERLACE_ENABLE
;
1304 tegra_dc_writel(dc
, value
, DC_DISP_INTERLACE_CONTROL
);
1307 value
= tegra_dc_readl(dc
, DC_CMD_DISPLAY_COMMAND
);
1308 value
&= ~DISP_CTRL_MODE_MASK
;
1309 value
|= DISP_CTRL_MODE_C_DISPLAY
;
1310 tegra_dc_writel(dc
, value
, DC_CMD_DISPLAY_COMMAND
);
1312 value
= tegra_dc_readl(dc
, DC_CMD_DISPLAY_POWER_CONTROL
);
1313 value
|= PW0_ENABLE
| PW1_ENABLE
| PW2_ENABLE
| PW3_ENABLE
|
1314 PW4_ENABLE
| PM0_ENABLE
| PM1_ENABLE
;
1315 tegra_dc_writel(dc
, value
, DC_CMD_DISPLAY_POWER_CONTROL
);
1317 tegra_dc_commit(dc
);
1319 drm_crtc_vblank_on(crtc
);
1322 static int tegra_crtc_atomic_check(struct drm_crtc
*crtc
,
1323 struct drm_crtc_state
*state
)
1328 static void tegra_crtc_atomic_begin(struct drm_crtc
*crtc
,
1329 struct drm_crtc_state
*old_crtc_state
)
1331 struct tegra_dc
*dc
= to_tegra_dc(crtc
);
1333 if (crtc
->state
->event
) {
1334 crtc
->state
->event
->pipe
= drm_crtc_index(crtc
);
1336 WARN_ON(drm_crtc_vblank_get(crtc
) != 0);
1338 dc
->event
= crtc
->state
->event
;
1339 crtc
->state
->event
= NULL
;
1343 static void tegra_crtc_atomic_flush(struct drm_crtc
*crtc
,
1344 struct drm_crtc_state
*old_crtc_state
)
1346 struct tegra_dc_state
*state
= to_dc_state(crtc
->state
);
1347 struct tegra_dc
*dc
= to_tegra_dc(crtc
);
1349 tegra_dc_writel(dc
, state
->planes
<< 8, DC_CMD_STATE_CONTROL
);
1350 tegra_dc_writel(dc
, state
->planes
, DC_CMD_STATE_CONTROL
);
1353 static const struct drm_crtc_helper_funcs tegra_crtc_helper_funcs
= {
1354 .disable
= tegra_crtc_disable
,
1355 .enable
= tegra_crtc_enable
,
1356 .atomic_check
= tegra_crtc_atomic_check
,
1357 .atomic_begin
= tegra_crtc_atomic_begin
,
1358 .atomic_flush
= tegra_crtc_atomic_flush
,
1361 static irqreturn_t
tegra_dc_irq(int irq
, void *data
)
1363 struct tegra_dc
*dc
= data
;
1364 unsigned long status
;
1366 status
= tegra_dc_readl(dc
, DC_CMD_INT_STATUS
);
1367 tegra_dc_writel(dc
, status
, DC_CMD_INT_STATUS
);
1369 if (status
& FRAME_END_INT
) {
1371 dev_dbg(dc->dev, "%s(): frame end\n", __func__);
1376 if (status
& VBLANK_INT
) {
1378 dev_dbg(dc->dev, "%s(): vertical blank\n", __func__);
1380 drm_crtc_handle_vblank(&dc
->base
);
1381 tegra_dc_finish_page_flip(dc
);
1385 if (status
& (WIN_A_UF_INT
| WIN_B_UF_INT
| WIN_C_UF_INT
)) {
1387 dev_dbg(dc->dev, "%s(): underflow\n", __func__);
1389 dc
->stats
.underflow
++;
1392 if (status
& (WIN_A_OF_INT
| WIN_B_OF_INT
| WIN_C_OF_INT
)) {
1394 dev_dbg(dc->dev, "%s(): overflow\n", __func__);
1396 dc
->stats
.overflow
++;
1402 static int tegra_dc_show_regs(struct seq_file
*s
, void *data
)
1404 struct drm_info_node
*node
= s
->private;
1405 struct tegra_dc
*dc
= node
->info_ent
->data
;
1408 drm_modeset_lock(&dc
->base
.mutex
, NULL
);
1410 if (!dc
->base
.state
->active
) {
1415 #define DUMP_REG(name) \
1416 seq_printf(s, "%-40s %#05x %08x\n", #name, name, \
1417 tegra_dc_readl(dc, name))
1419 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT
);
1420 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT_CNTRL
);
1421 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT_ERROR
);
1422 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT
);
1423 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT_CNTRL
);
1424 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT_ERROR
);
1425 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT
);
1426 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT_CNTRL
);
1427 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT_ERROR
);
1428 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT
);
1429 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT_CNTRL
);
1430 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT_ERROR
);
1431 DUMP_REG(DC_CMD_CONT_SYNCPT_VSYNC
);
1432 DUMP_REG(DC_CMD_DISPLAY_COMMAND_OPTION0
);
1433 DUMP_REG(DC_CMD_DISPLAY_COMMAND
);
1434 DUMP_REG(DC_CMD_SIGNAL_RAISE
);
1435 DUMP_REG(DC_CMD_DISPLAY_POWER_CONTROL
);
1436 DUMP_REG(DC_CMD_INT_STATUS
);
1437 DUMP_REG(DC_CMD_INT_MASK
);
1438 DUMP_REG(DC_CMD_INT_ENABLE
);
1439 DUMP_REG(DC_CMD_INT_TYPE
);
1440 DUMP_REG(DC_CMD_INT_POLARITY
);
1441 DUMP_REG(DC_CMD_SIGNAL_RAISE1
);
1442 DUMP_REG(DC_CMD_SIGNAL_RAISE2
);
1443 DUMP_REG(DC_CMD_SIGNAL_RAISE3
);
1444 DUMP_REG(DC_CMD_STATE_ACCESS
);
1445 DUMP_REG(DC_CMD_STATE_CONTROL
);
1446 DUMP_REG(DC_CMD_DISPLAY_WINDOW_HEADER
);
1447 DUMP_REG(DC_CMD_REG_ACT_CONTROL
);
1448 DUMP_REG(DC_COM_CRC_CONTROL
);
1449 DUMP_REG(DC_COM_CRC_CHECKSUM
);
1450 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(0));
1451 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(1));
1452 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(2));
1453 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(3));
1454 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(0));
1455 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(1));
1456 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(2));
1457 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(3));
1458 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(0));
1459 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(1));
1460 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(2));
1461 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(3));
1462 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(0));
1463 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(1));
1464 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(2));
1465 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(3));
1466 DUMP_REG(DC_COM_PIN_INPUT_DATA(0));
1467 DUMP_REG(DC_COM_PIN_INPUT_DATA(1));
1468 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(0));
1469 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(1));
1470 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(2));
1471 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(3));
1472 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(4));
1473 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(5));
1474 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(6));
1475 DUMP_REG(DC_COM_PIN_MISC_CONTROL
);
1476 DUMP_REG(DC_COM_PIN_PM0_CONTROL
);
1477 DUMP_REG(DC_COM_PIN_PM0_DUTY_CYCLE
);
1478 DUMP_REG(DC_COM_PIN_PM1_CONTROL
);
1479 DUMP_REG(DC_COM_PIN_PM1_DUTY_CYCLE
);
1480 DUMP_REG(DC_COM_SPI_CONTROL
);
1481 DUMP_REG(DC_COM_SPI_START_BYTE
);
1482 DUMP_REG(DC_COM_HSPI_WRITE_DATA_AB
);
1483 DUMP_REG(DC_COM_HSPI_WRITE_DATA_CD
);
1484 DUMP_REG(DC_COM_HSPI_CS_DC
);
1485 DUMP_REG(DC_COM_SCRATCH_REGISTER_A
);
1486 DUMP_REG(DC_COM_SCRATCH_REGISTER_B
);
1487 DUMP_REG(DC_COM_GPIO_CTRL
);
1488 DUMP_REG(DC_COM_GPIO_DEBOUNCE_COUNTER
);
1489 DUMP_REG(DC_COM_CRC_CHECKSUM_LATCHED
);
1490 DUMP_REG(DC_DISP_DISP_SIGNAL_OPTIONS0
);
1491 DUMP_REG(DC_DISP_DISP_SIGNAL_OPTIONS1
);
1492 DUMP_REG(DC_DISP_DISP_WIN_OPTIONS
);
1493 DUMP_REG(DC_DISP_DISP_MEM_HIGH_PRIORITY
);
1494 DUMP_REG(DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER
);
1495 DUMP_REG(DC_DISP_DISP_TIMING_OPTIONS
);
1496 DUMP_REG(DC_DISP_REF_TO_SYNC
);
1497 DUMP_REG(DC_DISP_SYNC_WIDTH
);
1498 DUMP_REG(DC_DISP_BACK_PORCH
);
1499 DUMP_REG(DC_DISP_ACTIVE
);
1500 DUMP_REG(DC_DISP_FRONT_PORCH
);
1501 DUMP_REG(DC_DISP_H_PULSE0_CONTROL
);
1502 DUMP_REG(DC_DISP_H_PULSE0_POSITION_A
);
1503 DUMP_REG(DC_DISP_H_PULSE0_POSITION_B
);
1504 DUMP_REG(DC_DISP_H_PULSE0_POSITION_C
);
1505 DUMP_REG(DC_DISP_H_PULSE0_POSITION_D
);
1506 DUMP_REG(DC_DISP_H_PULSE1_CONTROL
);
1507 DUMP_REG(DC_DISP_H_PULSE1_POSITION_A
);
1508 DUMP_REG(DC_DISP_H_PULSE1_POSITION_B
);
1509 DUMP_REG(DC_DISP_H_PULSE1_POSITION_C
);
1510 DUMP_REG(DC_DISP_H_PULSE1_POSITION_D
);
1511 DUMP_REG(DC_DISP_H_PULSE2_CONTROL
);
1512 DUMP_REG(DC_DISP_H_PULSE2_POSITION_A
);
1513 DUMP_REG(DC_DISP_H_PULSE2_POSITION_B
);
1514 DUMP_REG(DC_DISP_H_PULSE2_POSITION_C
);
1515 DUMP_REG(DC_DISP_H_PULSE2_POSITION_D
);
1516 DUMP_REG(DC_DISP_V_PULSE0_CONTROL
);
1517 DUMP_REG(DC_DISP_V_PULSE0_POSITION_A
);
1518 DUMP_REG(DC_DISP_V_PULSE0_POSITION_B
);
1519 DUMP_REG(DC_DISP_V_PULSE0_POSITION_C
);
1520 DUMP_REG(DC_DISP_V_PULSE1_CONTROL
);
1521 DUMP_REG(DC_DISP_V_PULSE1_POSITION_A
);
1522 DUMP_REG(DC_DISP_V_PULSE1_POSITION_B
);
1523 DUMP_REG(DC_DISP_V_PULSE1_POSITION_C
);
1524 DUMP_REG(DC_DISP_V_PULSE2_CONTROL
);
1525 DUMP_REG(DC_DISP_V_PULSE2_POSITION_A
);
1526 DUMP_REG(DC_DISP_V_PULSE3_CONTROL
);
1527 DUMP_REG(DC_DISP_V_PULSE3_POSITION_A
);
1528 DUMP_REG(DC_DISP_M0_CONTROL
);
1529 DUMP_REG(DC_DISP_M1_CONTROL
);
1530 DUMP_REG(DC_DISP_DI_CONTROL
);
1531 DUMP_REG(DC_DISP_PP_CONTROL
);
1532 DUMP_REG(DC_DISP_PP_SELECT_A
);
1533 DUMP_REG(DC_DISP_PP_SELECT_B
);
1534 DUMP_REG(DC_DISP_PP_SELECT_C
);
1535 DUMP_REG(DC_DISP_PP_SELECT_D
);
1536 DUMP_REG(DC_DISP_DISP_CLOCK_CONTROL
);
1537 DUMP_REG(DC_DISP_DISP_INTERFACE_CONTROL
);
1538 DUMP_REG(DC_DISP_DISP_COLOR_CONTROL
);
1539 DUMP_REG(DC_DISP_SHIFT_CLOCK_OPTIONS
);
1540 DUMP_REG(DC_DISP_DATA_ENABLE_OPTIONS
);
1541 DUMP_REG(DC_DISP_SERIAL_INTERFACE_OPTIONS
);
1542 DUMP_REG(DC_DISP_LCD_SPI_OPTIONS
);
1543 DUMP_REG(DC_DISP_BORDER_COLOR
);
1544 DUMP_REG(DC_DISP_COLOR_KEY0_LOWER
);
1545 DUMP_REG(DC_DISP_COLOR_KEY0_UPPER
);
1546 DUMP_REG(DC_DISP_COLOR_KEY1_LOWER
);
1547 DUMP_REG(DC_DISP_COLOR_KEY1_UPPER
);
1548 DUMP_REG(DC_DISP_CURSOR_FOREGROUND
);
1549 DUMP_REG(DC_DISP_CURSOR_BACKGROUND
);
1550 DUMP_REG(DC_DISP_CURSOR_START_ADDR
);
1551 DUMP_REG(DC_DISP_CURSOR_START_ADDR_NS
);
1552 DUMP_REG(DC_DISP_CURSOR_POSITION
);
1553 DUMP_REG(DC_DISP_CURSOR_POSITION_NS
);
1554 DUMP_REG(DC_DISP_INIT_SEQ_CONTROL
);
1555 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_A
);
1556 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_B
);
1557 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_C
);
1558 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_D
);
1559 DUMP_REG(DC_DISP_DC_MCCIF_FIFOCTRL
);
1560 DUMP_REG(DC_DISP_MCCIF_DISPLAY0A_HYST
);
1561 DUMP_REG(DC_DISP_MCCIF_DISPLAY0B_HYST
);
1562 DUMP_REG(DC_DISP_MCCIF_DISPLAY1A_HYST
);
1563 DUMP_REG(DC_DISP_MCCIF_DISPLAY1B_HYST
);
1564 DUMP_REG(DC_DISP_DAC_CRT_CTRL
);
1565 DUMP_REG(DC_DISP_DISP_MISC_CONTROL
);
1566 DUMP_REG(DC_DISP_SD_CONTROL
);
1567 DUMP_REG(DC_DISP_SD_CSC_COEFF
);
1568 DUMP_REG(DC_DISP_SD_LUT(0));
1569 DUMP_REG(DC_DISP_SD_LUT(1));
1570 DUMP_REG(DC_DISP_SD_LUT(2));
1571 DUMP_REG(DC_DISP_SD_LUT(3));
1572 DUMP_REG(DC_DISP_SD_LUT(4));
1573 DUMP_REG(DC_DISP_SD_LUT(5));
1574 DUMP_REG(DC_DISP_SD_LUT(6));
1575 DUMP_REG(DC_DISP_SD_LUT(7));
1576 DUMP_REG(DC_DISP_SD_LUT(8));
1577 DUMP_REG(DC_DISP_SD_FLICKER_CONTROL
);
1578 DUMP_REG(DC_DISP_DC_PIXEL_COUNT
);
1579 DUMP_REG(DC_DISP_SD_HISTOGRAM(0));
1580 DUMP_REG(DC_DISP_SD_HISTOGRAM(1));
1581 DUMP_REG(DC_DISP_SD_HISTOGRAM(2));
1582 DUMP_REG(DC_DISP_SD_HISTOGRAM(3));
1583 DUMP_REG(DC_DISP_SD_HISTOGRAM(4));
1584 DUMP_REG(DC_DISP_SD_HISTOGRAM(5));
1585 DUMP_REG(DC_DISP_SD_HISTOGRAM(6));
1586 DUMP_REG(DC_DISP_SD_HISTOGRAM(7));
1587 DUMP_REG(DC_DISP_SD_BL_TF(0));
1588 DUMP_REG(DC_DISP_SD_BL_TF(1));
1589 DUMP_REG(DC_DISP_SD_BL_TF(2));
1590 DUMP_REG(DC_DISP_SD_BL_TF(3));
1591 DUMP_REG(DC_DISP_SD_BL_CONTROL
);
1592 DUMP_REG(DC_DISP_SD_HW_K_VALUES
);
1593 DUMP_REG(DC_DISP_SD_MAN_K_VALUES
);
1594 DUMP_REG(DC_DISP_CURSOR_START_ADDR_HI
);
1595 DUMP_REG(DC_DISP_BLEND_CURSOR_CONTROL
);
1596 DUMP_REG(DC_WIN_WIN_OPTIONS
);
1597 DUMP_REG(DC_WIN_BYTE_SWAP
);
1598 DUMP_REG(DC_WIN_BUFFER_CONTROL
);
1599 DUMP_REG(DC_WIN_COLOR_DEPTH
);
1600 DUMP_REG(DC_WIN_POSITION
);
1601 DUMP_REG(DC_WIN_SIZE
);
1602 DUMP_REG(DC_WIN_PRESCALED_SIZE
);
1603 DUMP_REG(DC_WIN_H_INITIAL_DDA
);
1604 DUMP_REG(DC_WIN_V_INITIAL_DDA
);
1605 DUMP_REG(DC_WIN_DDA_INC
);
1606 DUMP_REG(DC_WIN_LINE_STRIDE
);
1607 DUMP_REG(DC_WIN_BUF_STRIDE
);
1608 DUMP_REG(DC_WIN_UV_BUF_STRIDE
);
1609 DUMP_REG(DC_WIN_BUFFER_ADDR_MODE
);
1610 DUMP_REG(DC_WIN_DV_CONTROL
);
1611 DUMP_REG(DC_WIN_BLEND_NOKEY
);
1612 DUMP_REG(DC_WIN_BLEND_1WIN
);
1613 DUMP_REG(DC_WIN_BLEND_2WIN_X
);
1614 DUMP_REG(DC_WIN_BLEND_2WIN_Y
);
1615 DUMP_REG(DC_WIN_BLEND_3WIN_XY
);
1616 DUMP_REG(DC_WIN_HP_FETCH_CONTROL
);
1617 DUMP_REG(DC_WINBUF_START_ADDR
);
1618 DUMP_REG(DC_WINBUF_START_ADDR_NS
);
1619 DUMP_REG(DC_WINBUF_START_ADDR_U
);
1620 DUMP_REG(DC_WINBUF_START_ADDR_U_NS
);
1621 DUMP_REG(DC_WINBUF_START_ADDR_V
);
1622 DUMP_REG(DC_WINBUF_START_ADDR_V_NS
);
1623 DUMP_REG(DC_WINBUF_ADDR_H_OFFSET
);
1624 DUMP_REG(DC_WINBUF_ADDR_H_OFFSET_NS
);
1625 DUMP_REG(DC_WINBUF_ADDR_V_OFFSET
);
1626 DUMP_REG(DC_WINBUF_ADDR_V_OFFSET_NS
);
1627 DUMP_REG(DC_WINBUF_UFLOW_STATUS
);
1628 DUMP_REG(DC_WINBUF_AD_UFLOW_STATUS
);
1629 DUMP_REG(DC_WINBUF_BD_UFLOW_STATUS
);
1630 DUMP_REG(DC_WINBUF_CD_UFLOW_STATUS
);
1635 drm_modeset_unlock(&dc
->base
.mutex
);
1639 static int tegra_dc_show_crc(struct seq_file
*s
, void *data
)
1641 struct drm_info_node
*node
= s
->private;
1642 struct tegra_dc
*dc
= node
->info_ent
->data
;
1646 drm_modeset_lock(&dc
->base
.mutex
, NULL
);
1648 if (!dc
->base
.state
->active
) {
1653 value
= DC_COM_CRC_CONTROL_ACTIVE_DATA
| DC_COM_CRC_CONTROL_ENABLE
;
1654 tegra_dc_writel(dc
, value
, DC_COM_CRC_CONTROL
);
1655 tegra_dc_commit(dc
);
1657 drm_crtc_wait_one_vblank(&dc
->base
);
1658 drm_crtc_wait_one_vblank(&dc
->base
);
1660 value
= tegra_dc_readl(dc
, DC_COM_CRC_CHECKSUM
);
1661 seq_printf(s
, "%08x\n", value
);
1663 tegra_dc_writel(dc
, 0, DC_COM_CRC_CONTROL
);
1666 drm_modeset_unlock(&dc
->base
.mutex
);
1670 static int tegra_dc_show_stats(struct seq_file
*s
, void *data
)
1672 struct drm_info_node
*node
= s
->private;
1673 struct tegra_dc
*dc
= node
->info_ent
->data
;
1675 seq_printf(s
, "frames: %lu\n", dc
->stats
.frames
);
1676 seq_printf(s
, "vblank: %lu\n", dc
->stats
.vblank
);
1677 seq_printf(s
, "underflow: %lu\n", dc
->stats
.underflow
);
1678 seq_printf(s
, "overflow: %lu\n", dc
->stats
.overflow
);
1683 static struct drm_info_list debugfs_files
[] = {
1684 { "regs", tegra_dc_show_regs
, 0, NULL
},
1685 { "crc", tegra_dc_show_crc
, 0, NULL
},
1686 { "stats", tegra_dc_show_stats
, 0, NULL
},
1689 static int tegra_dc_debugfs_init(struct tegra_dc
*dc
, struct drm_minor
*minor
)
1695 name
= kasprintf(GFP_KERNEL
, "dc.%d", dc
->pipe
);
1696 dc
->debugfs
= debugfs_create_dir(name
, minor
->debugfs_root
);
1702 dc
->debugfs_files
= kmemdup(debugfs_files
, sizeof(debugfs_files
),
1704 if (!dc
->debugfs_files
) {
1709 for (i
= 0; i
< ARRAY_SIZE(debugfs_files
); i
++)
1710 dc
->debugfs_files
[i
].data
= dc
;
1712 err
= drm_debugfs_create_files(dc
->debugfs_files
,
1713 ARRAY_SIZE(debugfs_files
),
1714 dc
->debugfs
, minor
);
1723 kfree(dc
->debugfs_files
);
1724 dc
->debugfs_files
= NULL
;
1726 debugfs_remove(dc
->debugfs
);
1732 static int tegra_dc_debugfs_exit(struct tegra_dc
*dc
)
1734 drm_debugfs_remove_files(dc
->debugfs_files
, ARRAY_SIZE(debugfs_files
),
1738 kfree(dc
->debugfs_files
);
1739 dc
->debugfs_files
= NULL
;
1741 debugfs_remove(dc
->debugfs
);
1747 static int tegra_dc_init(struct host1x_client
*client
)
1749 struct drm_device
*drm
= dev_get_drvdata(client
->parent
);
1750 unsigned long flags
= HOST1X_SYNCPT_CLIENT_MANAGED
;
1751 struct tegra_dc
*dc
= host1x_client_to_dc(client
);
1752 struct tegra_drm
*tegra
= drm
->dev_private
;
1753 struct drm_plane
*primary
= NULL
;
1754 struct drm_plane
*cursor
= NULL
;
1757 dc
->syncpt
= host1x_syncpt_request(dc
->dev
, flags
);
1759 dev_warn(dc
->dev
, "failed to allocate syncpoint\n");
1761 if (tegra
->domain
) {
1762 err
= iommu_attach_device(tegra
->domain
, dc
->dev
);
1764 dev_err(dc
->dev
, "failed to attach to domain: %d\n",
1769 dc
->domain
= tegra
->domain
;
1772 primary
= tegra_dc_primary_plane_create(drm
, dc
);
1773 if (IS_ERR(primary
)) {
1774 err
= PTR_ERR(primary
);
1778 if (dc
->soc
->supports_cursor
) {
1779 cursor
= tegra_dc_cursor_plane_create(drm
, dc
);
1780 if (IS_ERR(cursor
)) {
1781 err
= PTR_ERR(cursor
);
1786 err
= drm_crtc_init_with_planes(drm
, &dc
->base
, primary
, cursor
,
1787 &tegra_crtc_funcs
, NULL
);
1791 drm_crtc_helper_add(&dc
->base
, &tegra_crtc_helper_funcs
);
1794 * Keep track of the minimum pitch alignment across all display
1797 if (dc
->soc
->pitch_align
> tegra
->pitch_align
)
1798 tegra
->pitch_align
= dc
->soc
->pitch_align
;
1800 err
= tegra_dc_rgb_init(drm
, dc
);
1801 if (err
< 0 && err
!= -ENODEV
) {
1802 dev_err(dc
->dev
, "failed to initialize RGB output: %d\n", err
);
1806 err
= tegra_dc_add_planes(drm
, dc
);
1810 if (IS_ENABLED(CONFIG_DEBUG_FS
)) {
1811 err
= tegra_dc_debugfs_init(dc
, drm
->primary
);
1813 dev_err(dc
->dev
, "debugfs setup failed: %d\n", err
);
1816 err
= devm_request_irq(dc
->dev
, dc
->irq
, tegra_dc_irq
, 0,
1817 dev_name(dc
->dev
), dc
);
1819 dev_err(dc
->dev
, "failed to request IRQ#%u: %d\n", dc
->irq
,
1828 drm_plane_cleanup(cursor
);
1831 drm_plane_cleanup(primary
);
1833 if (tegra
->domain
) {
1834 iommu_detach_device(tegra
->domain
, dc
->dev
);
1841 static int tegra_dc_exit(struct host1x_client
*client
)
1843 struct tegra_dc
*dc
= host1x_client_to_dc(client
);
1846 devm_free_irq(dc
->dev
, dc
->irq
, dc
);
1848 if (IS_ENABLED(CONFIG_DEBUG_FS
)) {
1849 err
= tegra_dc_debugfs_exit(dc
);
1851 dev_err(dc
->dev
, "debugfs cleanup failed: %d\n", err
);
1854 err
= tegra_dc_rgb_exit(dc
);
1856 dev_err(dc
->dev
, "failed to shutdown RGB output: %d\n", err
);
1861 iommu_detach_device(dc
->domain
, dc
->dev
);
1865 host1x_syncpt_free(dc
->syncpt
);
1870 static const struct host1x_client_ops dc_client_ops
= {
1871 .init
= tegra_dc_init
,
1872 .exit
= tegra_dc_exit
,
1875 static const struct tegra_dc_soc_info tegra20_dc_soc_info
= {
1876 .supports_border_color
= true,
1877 .supports_interlacing
= false,
1878 .supports_cursor
= false,
1879 .supports_block_linear
= false,
1881 .has_powergate
= false,
1882 .broken_reset
= true,
1885 static const struct tegra_dc_soc_info tegra30_dc_soc_info
= {
1886 .supports_border_color
= true,
1887 .supports_interlacing
= false,
1888 .supports_cursor
= false,
1889 .supports_block_linear
= false,
1891 .has_powergate
= false,
1892 .broken_reset
= false,
1895 static const struct tegra_dc_soc_info tegra114_dc_soc_info
= {
1896 .supports_border_color
= true,
1897 .supports_interlacing
= false,
1898 .supports_cursor
= false,
1899 .supports_block_linear
= false,
1901 .has_powergate
= true,
1902 .broken_reset
= false,
1905 static const struct tegra_dc_soc_info tegra124_dc_soc_info
= {
1906 .supports_border_color
= false,
1907 .supports_interlacing
= true,
1908 .supports_cursor
= true,
1909 .supports_block_linear
= true,
1911 .has_powergate
= true,
1912 .broken_reset
= false,
1915 static const struct tegra_dc_soc_info tegra210_dc_soc_info
= {
1916 .supports_border_color
= false,
1917 .supports_interlacing
= true,
1918 .supports_cursor
= true,
1919 .supports_block_linear
= true,
1921 .has_powergate
= true,
1922 .broken_reset
= false,
1925 static const struct of_device_id tegra_dc_of_match
[] = {
1927 .compatible
= "nvidia,tegra210-dc",
1928 .data
= &tegra210_dc_soc_info
,
1930 .compatible
= "nvidia,tegra124-dc",
1931 .data
= &tegra124_dc_soc_info
,
1933 .compatible
= "nvidia,tegra114-dc",
1934 .data
= &tegra114_dc_soc_info
,
1936 .compatible
= "nvidia,tegra30-dc",
1937 .data
= &tegra30_dc_soc_info
,
1939 .compatible
= "nvidia,tegra20-dc",
1940 .data
= &tegra20_dc_soc_info
,
1945 MODULE_DEVICE_TABLE(of
, tegra_dc_of_match
);
1947 static int tegra_dc_parse_dt(struct tegra_dc
*dc
)
1949 struct device_node
*np
;
1953 err
= of_property_read_u32(dc
->dev
->of_node
, "nvidia,head", &value
);
1955 dev_err(dc
->dev
, "missing \"nvidia,head\" property\n");
1958 * If the nvidia,head property isn't present, try to find the
1959 * correct head number by looking up the position of this
1960 * display controller's node within the device tree. Assuming
1961 * that the nodes are ordered properly in the DTS file and
1962 * that the translation into a flattened device tree blob
1963 * preserves that ordering this will actually yield the right
1966 * If those assumptions don't hold, this will still work for
1967 * cases where only a single display controller is used.
1969 for_each_matching_node(np
, tegra_dc_of_match
) {
1970 if (np
== dc
->dev
->of_node
) {
1984 static int tegra_dc_probe(struct platform_device
*pdev
)
1986 const struct of_device_id
*id
;
1987 struct resource
*regs
;
1988 struct tegra_dc
*dc
;
1991 dc
= devm_kzalloc(&pdev
->dev
, sizeof(*dc
), GFP_KERNEL
);
1995 id
= of_match_node(tegra_dc_of_match
, pdev
->dev
.of_node
);
1999 spin_lock_init(&dc
->lock
);
2000 INIT_LIST_HEAD(&dc
->list
);
2001 dc
->dev
= &pdev
->dev
;
2004 err
= tegra_dc_parse_dt(dc
);
2008 dc
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
2009 if (IS_ERR(dc
->clk
)) {
2010 dev_err(&pdev
->dev
, "failed to get clock\n");
2011 return PTR_ERR(dc
->clk
);
2014 dc
->rst
= devm_reset_control_get(&pdev
->dev
, "dc");
2015 if (IS_ERR(dc
->rst
)) {
2016 dev_err(&pdev
->dev
, "failed to get reset\n");
2017 return PTR_ERR(dc
->rst
);
2020 if (!dc
->soc
->broken_reset
)
2021 reset_control_assert(dc
->rst
);
2023 if (dc
->soc
->has_powergate
) {
2025 dc
->powergate
= TEGRA_POWERGATE_DIS
;
2027 dc
->powergate
= TEGRA_POWERGATE_DISB
;
2029 tegra_powergate_power_off(dc
->powergate
);
2032 regs
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2033 dc
->regs
= devm_ioremap_resource(&pdev
->dev
, regs
);
2034 if (IS_ERR(dc
->regs
))
2035 return PTR_ERR(dc
->regs
);
2037 dc
->irq
= platform_get_irq(pdev
, 0);
2039 dev_err(&pdev
->dev
, "failed to get IRQ\n");
2043 err
= tegra_dc_rgb_probe(dc
);
2044 if (err
< 0 && err
!= -ENODEV
) {
2045 dev_err(&pdev
->dev
, "failed to probe RGB output: %d\n", err
);
2049 platform_set_drvdata(pdev
, dc
);
2050 pm_runtime_enable(&pdev
->dev
);
2052 INIT_LIST_HEAD(&dc
->client
.list
);
2053 dc
->client
.ops
= &dc_client_ops
;
2054 dc
->client
.dev
= &pdev
->dev
;
2056 err
= host1x_client_register(&dc
->client
);
2058 dev_err(&pdev
->dev
, "failed to register host1x client: %d\n",
2066 static int tegra_dc_remove(struct platform_device
*pdev
)
2068 struct tegra_dc
*dc
= platform_get_drvdata(pdev
);
2071 err
= host1x_client_unregister(&dc
->client
);
2073 dev_err(&pdev
->dev
, "failed to unregister host1x client: %d\n",
2078 err
= tegra_dc_rgb_remove(dc
);
2080 dev_err(&pdev
->dev
, "failed to remove RGB output: %d\n", err
);
2084 pm_runtime_disable(&pdev
->dev
);
2090 static int tegra_dc_suspend(struct device
*dev
)
2092 struct tegra_dc
*dc
= dev_get_drvdata(dev
);
2095 if (!dc
->soc
->broken_reset
) {
2096 err
= reset_control_assert(dc
->rst
);
2098 dev_err(dev
, "failed to assert reset: %d\n", err
);
2103 if (dc
->soc
->has_powergate
)
2104 tegra_powergate_power_off(dc
->powergate
);
2106 clk_disable_unprepare(dc
->clk
);
2111 static int tegra_dc_resume(struct device
*dev
)
2113 struct tegra_dc
*dc
= dev_get_drvdata(dev
);
2116 if (dc
->soc
->has_powergate
) {
2117 err
= tegra_powergate_sequence_power_up(dc
->powergate
, dc
->clk
,
2120 dev_err(dev
, "failed to power partition: %d\n", err
);
2124 err
= clk_prepare_enable(dc
->clk
);
2126 dev_err(dev
, "failed to enable clock: %d\n", err
);
2130 if (!dc
->soc
->broken_reset
) {
2131 err
= reset_control_deassert(dc
->rst
);
2134 "failed to deassert reset: %d\n", err
);
2144 static const struct dev_pm_ops tegra_dc_pm_ops
= {
2145 SET_RUNTIME_PM_OPS(tegra_dc_suspend
, tegra_dc_resume
, NULL
)
2148 struct platform_driver tegra_dc_driver
= {
2151 .of_match_table
= tegra_dc_of_match
,
2152 .pm
= &tegra_dc_pm_ops
,
2154 .probe
= tegra_dc_probe
,
2155 .remove
= tegra_dc_remove
,