2 * Copyright (C) STMicroelectronics SA 2014
3 * Authors: Benjamin Gaignard <benjamin.gaignard@st.com>
4 * Fabien Dessenne <fabien.dessenne@st.com>
5 * for STMicroelectronics.
6 * License terms: GNU General Public License (GPL), version 2
8 #include <linux/seq_file.h>
10 #include <drm/drm_atomic.h>
11 #include <drm/drm_fb_cma_helper.h>
12 #include <drm/drm_gem_cma_helper.h>
14 #include "sti_compositor.h"
16 #include "sti_plane.h"
19 #define ALPHASWITCH BIT(6)
20 #define ENA_COLOR_FILL BIT(8)
21 #define BIGNOTLITTLE BIT(23)
22 #define WAIT_NEXT_VSYNC BIT(31)
24 /* GDP color formats */
25 #define GDP_RGB565 0x00
26 #define GDP_RGB888 0x01
27 #define GDP_RGB888_32 0x02
28 #define GDP_XBGR8888 (GDP_RGB888_32 | BIGNOTLITTLE | ALPHASWITCH)
29 #define GDP_ARGB8565 0x04
30 #define GDP_ARGB8888 0x05
31 #define GDP_ABGR8888 (GDP_ARGB8888 | BIGNOTLITTLE | ALPHASWITCH)
32 #define GDP_ARGB1555 0x06
33 #define GDP_ARGB4444 0x07
35 #define GDP2STR(fmt) { GDP_ ## fmt, #fmt }
37 static struct gdp_format_to_str
{
40 } gdp_format_to_str
[] = {
52 #define GAM_GDP_CTL_OFFSET 0x00
53 #define GAM_GDP_AGC_OFFSET 0x04
54 #define GAM_GDP_VPO_OFFSET 0x0C
55 #define GAM_GDP_VPS_OFFSET 0x10
56 #define GAM_GDP_PML_OFFSET 0x14
57 #define GAM_GDP_PMP_OFFSET 0x18
58 #define GAM_GDP_SIZE_OFFSET 0x1C
59 #define GAM_GDP_NVN_OFFSET 0x24
60 #define GAM_GDP_KEY1_OFFSET 0x28
61 #define GAM_GDP_KEY2_OFFSET 0x2C
62 #define GAM_GDP_PPT_OFFSET 0x34
63 #define GAM_GDP_CML_OFFSET 0x3C
64 #define GAM_GDP_MST_OFFSET 0x68
66 #define GAM_GDP_ALPHARANGE_255 BIT(5)
67 #define GAM_GDP_AGC_FULL_RANGE 0x00808080
68 #define GAM_GDP_PPT_IGNORE (BIT(1) | BIT(0))
70 #define GAM_GDP_SIZE_MAX_WIDTH 3840
71 #define GAM_GDP_SIZE_MAX_HEIGHT 2160
73 #define GDP_NODE_NB_BANK 2
74 #define GDP_NODE_PER_FIELD 2
95 struct sti_gdp_node_list
{
96 struct sti_gdp_node
*top_field
;
97 dma_addr_t top_field_paddr
;
98 struct sti_gdp_node
*btm_field
;
99 dma_addr_t btm_field_paddr
;
105 * @sti_plane: sti_plane structure
106 * @dev: driver device
107 * @regs: gdp registers
108 * @clk_pix: pixel clock for the current gdp
109 * @clk_main_parent: gdp parent clock if main path used
110 * @clk_aux_parent: gdp parent clock if aux path used
111 * @vtg_field_nb: callback for VTG FIELD (top or bottom) notification
112 * @is_curr_top: true if the current node processed is the top field
113 * @node_list: array of node list
114 * @vtg: registered vtg
117 struct sti_plane plane
;
121 struct clk
*clk_main_parent
;
122 struct clk
*clk_aux_parent
;
123 struct notifier_block vtg_field_nb
;
125 struct sti_gdp_node_list node_list
[GDP_NODE_NB_BANK
];
129 #define to_sti_gdp(x) container_of(x, struct sti_gdp, plane)
131 static const uint32_t gdp_supported_formats
[] = {
142 #define DBGFS_DUMP(reg) seq_printf(s, "\n %-25s 0x%08X", #reg, \
143 readl(gdp->regs + reg ## _OFFSET))
145 static void gdp_dbg_ctl(struct seq_file
*s
, int val
)
149 seq_puts(s
, "\tColor:");
150 for (i
= 0; i
< ARRAY_SIZE(gdp_format_to_str
); i
++) {
151 if (gdp_format_to_str
[i
].format
== (val
& 0x1F)) {
152 seq_printf(s
, gdp_format_to_str
[i
].name
);
156 if (i
== ARRAY_SIZE(gdp_format_to_str
))
157 seq_puts(s
, "<UNKNOWN>");
159 seq_printf(s
, "\tWaitNextVsync:%d", val
& WAIT_NEXT_VSYNC
? 1 : 0);
162 static void gdp_dbg_vpo(struct seq_file
*s
, int val
)
164 seq_printf(s
, "\txdo:%4d\tydo:%4d", val
& 0xFFFF, (val
>> 16) & 0xFFFF);
167 static void gdp_dbg_vps(struct seq_file
*s
, int val
)
169 seq_printf(s
, "\txds:%4d\tyds:%4d", val
& 0xFFFF, (val
>> 16) & 0xFFFF);
172 static void gdp_dbg_size(struct seq_file
*s
, int val
)
174 seq_printf(s
, "\t%d x %d", val
& 0xFFFF, (val
>> 16) & 0xFFFF);
177 static void gdp_dbg_nvn(struct seq_file
*s
, struct sti_gdp
*gdp
, int val
)
182 for (i
= 0; i
< GDP_NODE_NB_BANK
; i
++) {
183 if (gdp
->node_list
[i
].top_field_paddr
== val
) {
184 base
= gdp
->node_list
[i
].top_field
;
187 if (gdp
->node_list
[i
].btm_field_paddr
== val
) {
188 base
= gdp
->node_list
[i
].btm_field
;
194 seq_printf(s
, "\tVirt @: %p", base
);
197 static void gdp_dbg_ppt(struct seq_file
*s
, int val
)
199 if (val
& GAM_GDP_PPT_IGNORE
)
200 seq_puts(s
, "\tNot displayed on mixer!");
203 static void gdp_dbg_mst(struct seq_file
*s
, int val
)
206 seq_puts(s
, "\tBUFFER UNDERFLOW!");
209 static int gdp_dbg_show(struct seq_file
*s
, void *data
)
211 struct drm_info_node
*node
= s
->private;
212 struct sti_gdp
*gdp
= (struct sti_gdp
*)node
->info_ent
->data
;
213 struct drm_plane
*drm_plane
= &gdp
->plane
.drm_plane
;
214 struct drm_crtc
*crtc
= drm_plane
->crtc
;
216 seq_printf(s
, "%s: (vaddr = 0x%p)",
217 sti_plane_to_str(&gdp
->plane
), gdp
->regs
);
219 DBGFS_DUMP(GAM_GDP_CTL
);
220 gdp_dbg_ctl(s
, readl(gdp
->regs
+ GAM_GDP_CTL_OFFSET
));
221 DBGFS_DUMP(GAM_GDP_AGC
);
222 DBGFS_DUMP(GAM_GDP_VPO
);
223 gdp_dbg_vpo(s
, readl(gdp
->regs
+ GAM_GDP_VPO_OFFSET
));
224 DBGFS_DUMP(GAM_GDP_VPS
);
225 gdp_dbg_vps(s
, readl(gdp
->regs
+ GAM_GDP_VPS_OFFSET
));
226 DBGFS_DUMP(GAM_GDP_PML
);
227 DBGFS_DUMP(GAM_GDP_PMP
);
228 DBGFS_DUMP(GAM_GDP_SIZE
);
229 gdp_dbg_size(s
, readl(gdp
->regs
+ GAM_GDP_SIZE_OFFSET
));
230 DBGFS_DUMP(GAM_GDP_NVN
);
231 gdp_dbg_nvn(s
, gdp
, readl(gdp
->regs
+ GAM_GDP_NVN_OFFSET
));
232 DBGFS_DUMP(GAM_GDP_KEY1
);
233 DBGFS_DUMP(GAM_GDP_KEY2
);
234 DBGFS_DUMP(GAM_GDP_PPT
);
235 gdp_dbg_ppt(s
, readl(gdp
->regs
+ GAM_GDP_PPT_OFFSET
));
236 DBGFS_DUMP(GAM_GDP_CML
);
237 DBGFS_DUMP(GAM_GDP_MST
);
238 gdp_dbg_mst(s
, readl(gdp
->regs
+ GAM_GDP_MST_OFFSET
));
242 seq_puts(s
, " Not connected to any DRM CRTC\n");
244 seq_printf(s
, " Connected to DRM CRTC #%d (%s)\n",
245 crtc
->base
.id
, sti_mixer_to_str(to_sti_mixer(crtc
)));
250 static void gdp_node_dump_node(struct seq_file
*s
, struct sti_gdp_node
*node
)
252 seq_printf(s
, "\t@:0x%p", node
);
253 seq_printf(s
, "\n\tCTL 0x%08X", node
->gam_gdp_ctl
);
254 gdp_dbg_ctl(s
, node
->gam_gdp_ctl
);
255 seq_printf(s
, "\n\tAGC 0x%08X", node
->gam_gdp_agc
);
256 seq_printf(s
, "\n\tVPO 0x%08X", node
->gam_gdp_vpo
);
257 gdp_dbg_vpo(s
, node
->gam_gdp_vpo
);
258 seq_printf(s
, "\n\tVPS 0x%08X", node
->gam_gdp_vps
);
259 gdp_dbg_vps(s
, node
->gam_gdp_vps
);
260 seq_printf(s
, "\n\tPML 0x%08X", node
->gam_gdp_pml
);
261 seq_printf(s
, "\n\tPMP 0x%08X", node
->gam_gdp_pmp
);
262 seq_printf(s
, "\n\tSIZE 0x%08X", node
->gam_gdp_size
);
263 gdp_dbg_size(s
, node
->gam_gdp_size
);
264 seq_printf(s
, "\n\tNVN 0x%08X", node
->gam_gdp_nvn
);
265 seq_printf(s
, "\n\tKEY1 0x%08X", node
->gam_gdp_key1
);
266 seq_printf(s
, "\n\tKEY2 0x%08X", node
->gam_gdp_key2
);
267 seq_printf(s
, "\n\tPPT 0x%08X", node
->gam_gdp_ppt
);
268 gdp_dbg_ppt(s
, node
->gam_gdp_ppt
);
269 seq_printf(s
, "\n\tCML 0x%08X", node
->gam_gdp_cml
);
273 static int gdp_node_dbg_show(struct seq_file
*s
, void *arg
)
275 struct drm_info_node
*node
= s
->private;
276 struct sti_gdp
*gdp
= (struct sti_gdp
*)node
->info_ent
->data
;
279 for (b
= 0; b
< GDP_NODE_NB_BANK
; b
++) {
280 seq_printf(s
, "\n%s[%d].top", sti_plane_to_str(&gdp
->plane
), b
);
281 gdp_node_dump_node(s
, gdp
->node_list
[b
].top_field
);
282 seq_printf(s
, "\n%s[%d].btm", sti_plane_to_str(&gdp
->plane
), b
);
283 gdp_node_dump_node(s
, gdp
->node_list
[b
].btm_field
);
289 static struct drm_info_list gdp0_debugfs_files
[] = {
290 { "gdp0", gdp_dbg_show
, 0, NULL
},
291 { "gdp0_node", gdp_node_dbg_show
, 0, NULL
},
294 static struct drm_info_list gdp1_debugfs_files
[] = {
295 { "gdp1", gdp_dbg_show
, 0, NULL
},
296 { "gdp1_node", gdp_node_dbg_show
, 0, NULL
},
299 static struct drm_info_list gdp2_debugfs_files
[] = {
300 { "gdp2", gdp_dbg_show
, 0, NULL
},
301 { "gdp2_node", gdp_node_dbg_show
, 0, NULL
},
304 static struct drm_info_list gdp3_debugfs_files
[] = {
305 { "gdp3", gdp_dbg_show
, 0, NULL
},
306 { "gdp3_node", gdp_node_dbg_show
, 0, NULL
},
309 static int gdp_debugfs_init(struct sti_gdp
*gdp
, struct drm_minor
*minor
)
312 struct drm_info_list
*gdp_debugfs_files
;
315 switch (gdp
->plane
.desc
) {
317 gdp_debugfs_files
= gdp0_debugfs_files
;
318 nb_files
= ARRAY_SIZE(gdp0_debugfs_files
);
321 gdp_debugfs_files
= gdp1_debugfs_files
;
322 nb_files
= ARRAY_SIZE(gdp1_debugfs_files
);
325 gdp_debugfs_files
= gdp2_debugfs_files
;
326 nb_files
= ARRAY_SIZE(gdp2_debugfs_files
);
329 gdp_debugfs_files
= gdp3_debugfs_files
;
330 nb_files
= ARRAY_SIZE(gdp3_debugfs_files
);
336 for (i
= 0; i
< nb_files
; i
++)
337 gdp_debugfs_files
[i
].data
= gdp
;
339 return drm_debugfs_create_files(gdp_debugfs_files
,
341 minor
->debugfs_root
, minor
);
344 static int sti_gdp_fourcc2format(int fourcc
)
347 case DRM_FORMAT_XRGB8888
:
348 return GDP_RGB888_32
;
349 case DRM_FORMAT_XBGR8888
:
351 case DRM_FORMAT_ARGB8888
:
353 case DRM_FORMAT_ABGR8888
:
355 case DRM_FORMAT_ARGB4444
:
357 case DRM_FORMAT_ARGB1555
:
359 case DRM_FORMAT_RGB565
:
361 case DRM_FORMAT_RGB888
:
367 static int sti_gdp_get_alpharange(int format
)
373 return GAM_GDP_ALPHARANGE_255
;
379 * sti_gdp_get_free_nodes
382 * Look for a GDP node list that is not currently read by the HW.
385 * Pointer to the free GDP node list
387 static struct sti_gdp_node_list
*sti_gdp_get_free_nodes(struct sti_gdp
*gdp
)
392 hw_nvn
= readl(gdp
->regs
+ GAM_GDP_NVN_OFFSET
);
396 for (i
= 0; i
< GDP_NODE_NB_BANK
; i
++)
397 if ((hw_nvn
!= gdp
->node_list
[i
].btm_field_paddr
) &&
398 (hw_nvn
!= gdp
->node_list
[i
].top_field_paddr
))
399 return &gdp
->node_list
[i
];
401 /* in hazardious cases restart with the first node */
402 DRM_ERROR("inconsistent NVN for %s: 0x%08X\n",
403 sti_plane_to_str(&gdp
->plane
), hw_nvn
);
406 return &gdp
->node_list
[0];
410 * sti_gdp_get_current_nodes
413 * Look for GDP nodes that are currently read by the HW.
416 * Pointer to the current GDP node list
419 struct sti_gdp_node_list
*sti_gdp_get_current_nodes(struct sti_gdp
*gdp
)
424 hw_nvn
= readl(gdp
->regs
+ GAM_GDP_NVN_OFFSET
);
428 for (i
= 0; i
< GDP_NODE_NB_BANK
; i
++)
429 if ((hw_nvn
== gdp
->node_list
[i
].btm_field_paddr
) ||
430 (hw_nvn
== gdp
->node_list
[i
].top_field_paddr
))
431 return &gdp
->node_list
[i
];
434 DRM_DEBUG_DRIVER("Warning, NVN 0x%08X for %s does not match any node\n",
435 hw_nvn
, sti_plane_to_str(&gdp
->plane
));
446 static void sti_gdp_disable(struct sti_gdp
*gdp
)
450 DRM_DEBUG_DRIVER("%s\n", sti_plane_to_str(&gdp
->plane
));
452 /* Set the nodes as 'to be ignored on mixer' */
453 for (i
= 0; i
< GDP_NODE_NB_BANK
; i
++) {
454 gdp
->node_list
[i
].top_field
->gam_gdp_ppt
|= GAM_GDP_PPT_IGNORE
;
455 gdp
->node_list
[i
].btm_field
->gam_gdp_ppt
|= GAM_GDP_PPT_IGNORE
;
458 if (sti_vtg_unregister_client(gdp
->vtg
, &gdp
->vtg_field_nb
))
459 DRM_DEBUG_DRIVER("Warning: cannot unregister VTG notifier\n");
462 clk_disable_unprepare(gdp
->clk_pix
);
464 gdp
->plane
.status
= STI_PLANE_DISABLED
;
470 * @nb: notifier block
471 * @event: event message
472 * @data: private data
474 * Handle VTG top field and bottom field event.
479 static int sti_gdp_field_cb(struct notifier_block
*nb
,
480 unsigned long event
, void *data
)
482 struct sti_gdp
*gdp
= container_of(nb
, struct sti_gdp
, vtg_field_nb
);
484 if (gdp
->plane
.status
== STI_PLANE_FLUSHING
) {
485 /* disable need to be synchronize on vsync event */
486 DRM_DEBUG_DRIVER("Vsync event received => disable %s\n",
487 sti_plane_to_str(&gdp
->plane
));
489 sti_gdp_disable(gdp
);
493 case VTG_TOP_FIELD_EVENT
:
494 gdp
->is_curr_top
= true;
496 case VTG_BOTTOM_FIELD_EVENT
:
497 gdp
->is_curr_top
= false;
500 DRM_ERROR("unsupported event: %lu\n", event
);
507 static void sti_gdp_init(struct sti_gdp
*gdp
)
509 struct device_node
*np
= gdp
->dev
->of_node
;
512 unsigned int i
, size
;
514 /* Allocate all the nodes within a single memory page */
515 size
= sizeof(struct sti_gdp_node
) *
516 GDP_NODE_PER_FIELD
* GDP_NODE_NB_BANK
;
517 base
= dma_alloc_wc(gdp
->dev
, size
, &dma_addr
, GFP_KERNEL
| GFP_DMA
);
520 DRM_ERROR("Failed to allocate memory for GDP node\n");
523 memset(base
, 0, size
);
525 for (i
= 0; i
< GDP_NODE_NB_BANK
; i
++) {
526 if (dma_addr
& 0xF) {
527 DRM_ERROR("Mem alignment failed\n");
530 gdp
->node_list
[i
].top_field
= base
;
531 gdp
->node_list
[i
].top_field_paddr
= dma_addr
;
533 DRM_DEBUG_DRIVER("node[%d].top_field=%p\n", i
, base
);
534 base
+= sizeof(struct sti_gdp_node
);
535 dma_addr
+= sizeof(struct sti_gdp_node
);
537 if (dma_addr
& 0xF) {
538 DRM_ERROR("Mem alignment failed\n");
541 gdp
->node_list
[i
].btm_field
= base
;
542 gdp
->node_list
[i
].btm_field_paddr
= dma_addr
;
543 DRM_DEBUG_DRIVER("node[%d].btm_field=%p\n", i
, base
);
544 base
+= sizeof(struct sti_gdp_node
);
545 dma_addr
+= sizeof(struct sti_gdp_node
);
548 if (of_device_is_compatible(np
, "st,stih407-compositor")) {
549 /* GDP of STiH407 chip have its own pixel clock */
552 switch (gdp
->plane
.desc
) {
554 clk_name
= "pix_gdp1";
557 clk_name
= "pix_gdp2";
560 clk_name
= "pix_gdp3";
563 clk_name
= "pix_gdp4";
566 DRM_ERROR("GDP id not recognized\n");
570 gdp
->clk_pix
= devm_clk_get(gdp
->dev
, clk_name
);
571 if (IS_ERR(gdp
->clk_pix
))
572 DRM_ERROR("Cannot get %s clock\n", clk_name
);
574 gdp
->clk_main_parent
= devm_clk_get(gdp
->dev
, "main_parent");
575 if (IS_ERR(gdp
->clk_main_parent
))
576 DRM_ERROR("Cannot get main_parent clock\n");
578 gdp
->clk_aux_parent
= devm_clk_get(gdp
->dev
, "aux_parent");
579 if (IS_ERR(gdp
->clk_aux_parent
))
580 DRM_ERROR("Cannot get aux_parent clock\n");
587 * @dst: requested destination size
590 * Return the cropped / clamped destination size
593 * cropped / clamped destination size
595 static int sti_gdp_get_dst(struct device
*dev
, int dst
, int src
)
601 dev_dbg(dev
, "WARNING: GDP scale not supported, will crop\n");
605 dev_dbg(dev
, "WARNING: GDP scale not supported, will clamp\n");
609 static int sti_gdp_atomic_check(struct drm_plane
*drm_plane
,
610 struct drm_plane_state
*state
)
612 struct sti_plane
*plane
= to_sti_plane(drm_plane
);
613 struct sti_gdp
*gdp
= to_sti_gdp(plane
);
614 struct drm_crtc
*crtc
= state
->crtc
;
615 struct sti_compositor
*compo
= dev_get_drvdata(gdp
->dev
);
616 struct drm_framebuffer
*fb
= state
->fb
;
617 struct drm_crtc_state
*crtc_state
;
618 struct sti_mixer
*mixer
;
619 struct drm_display_mode
*mode
;
620 int dst_x
, dst_y
, dst_w
, dst_h
;
621 int src_x
, src_y
, src_w
, src_h
;
624 /* no need for further checks if the plane is being disabled */
628 mixer
= to_sti_mixer(crtc
);
629 crtc_state
= drm_atomic_get_crtc_state(state
->state
, crtc
);
630 mode
= &crtc_state
->mode
;
631 dst_x
= state
->crtc_x
;
632 dst_y
= state
->crtc_y
;
633 dst_w
= clamp_val(state
->crtc_w
, 0, mode
->hdisplay
- dst_x
);
634 dst_h
= clamp_val(state
->crtc_h
, 0, mode
->vdisplay
- dst_y
);
635 /* src_x are in 16.16 format */
636 src_x
= state
->src_x
>> 16;
637 src_y
= state
->src_y
>> 16;
638 src_w
= clamp_val(state
->src_w
>> 16, 0, GAM_GDP_SIZE_MAX_WIDTH
);
639 src_h
= clamp_val(state
->src_h
>> 16, 0, GAM_GDP_SIZE_MAX_HEIGHT
);
641 format
= sti_gdp_fourcc2format(fb
->pixel_format
);
643 DRM_ERROR("Format not supported by GDP %.4s\n",
644 (char *)&fb
->pixel_format
);
648 if (!drm_fb_cma_get_gem_obj(fb
, 0)) {
649 DRM_ERROR("Can't get CMA GEM object for fb\n");
654 /* Register gdp callback */
655 gdp
->vtg
= compo
->vtg
[mixer
->id
];
656 if (sti_vtg_register_client(gdp
->vtg
,
657 &gdp
->vtg_field_nb
, crtc
)) {
658 DRM_ERROR("Cannot register VTG notifier\n");
662 /* Set and enable gdp clock */
665 int rate
= mode
->clock
* 1000;
669 * According to the mixer used, the gdp pixel clock
670 * should have a different parent clock.
672 if (mixer
->id
== STI_MIXER_MAIN
)
673 clkp
= gdp
->clk_main_parent
;
675 clkp
= gdp
->clk_aux_parent
;
678 clk_set_parent(gdp
->clk_pix
, clkp
);
680 res
= clk_set_rate(gdp
->clk_pix
, rate
);
682 DRM_ERROR("Cannot set rate (%dHz) for gdp\n",
687 if (clk_prepare_enable(gdp
->clk_pix
)) {
688 DRM_ERROR("Failed to prepare/enable gdp\n");
694 DRM_DEBUG_KMS("CRTC:%d (%s) drm plane:%d (%s)\n",
695 crtc
->base
.id
, sti_mixer_to_str(mixer
),
696 drm_plane
->base
.id
, sti_plane_to_str(plane
));
697 DRM_DEBUG_KMS("%s dst=(%dx%d)@(%d,%d) - src=(%dx%d)@(%d,%d)\n",
698 sti_plane_to_str(plane
),
699 dst_w
, dst_h
, dst_x
, dst_y
,
700 src_w
, src_h
, src_x
, src_y
);
705 static void sti_gdp_atomic_update(struct drm_plane
*drm_plane
,
706 struct drm_plane_state
*oldstate
)
708 struct drm_plane_state
*state
= drm_plane
->state
;
709 struct sti_plane
*plane
= to_sti_plane(drm_plane
);
710 struct sti_gdp
*gdp
= to_sti_gdp(plane
);
711 struct drm_crtc
*crtc
= state
->crtc
;
712 struct drm_framebuffer
*fb
= state
->fb
;
713 struct drm_display_mode
*mode
;
714 int dst_x
, dst_y
, dst_w
, dst_h
;
715 int src_x
, src_y
, src_w
, src_h
;
716 struct drm_gem_cma_object
*cma_obj
;
717 struct sti_gdp_node_list
*list
;
718 struct sti_gdp_node_list
*curr_list
;
719 struct sti_gdp_node
*top_field
, *btm_field
;
724 u32 ydo
, xdo
, yds
, xds
;
730 dst_x
= state
->crtc_x
;
731 dst_y
= state
->crtc_y
;
732 dst_w
= clamp_val(state
->crtc_w
, 0, mode
->hdisplay
- dst_x
);
733 dst_h
= clamp_val(state
->crtc_h
, 0, mode
->vdisplay
- dst_y
);
734 /* src_x are in 16.16 format */
735 src_x
= state
->src_x
>> 16;
736 src_y
= state
->src_y
>> 16;
737 src_w
= clamp_val(state
->src_w
>> 16, 0, GAM_GDP_SIZE_MAX_WIDTH
);
738 src_h
= clamp_val(state
->src_h
>> 16, 0, GAM_GDP_SIZE_MAX_HEIGHT
);
740 list
= sti_gdp_get_free_nodes(gdp
);
741 top_field
= list
->top_field
;
742 btm_field
= list
->btm_field
;
744 dev_dbg(gdp
->dev
, "%s %s top_node:0x%p btm_node:0x%p\n", __func__
,
745 sti_plane_to_str(plane
), top_field
, btm_field
);
747 /* build the top field */
748 top_field
->gam_gdp_agc
= GAM_GDP_AGC_FULL_RANGE
;
749 top_field
->gam_gdp_ctl
= WAIT_NEXT_VSYNC
;
750 format
= sti_gdp_fourcc2format(fb
->pixel_format
);
751 top_field
->gam_gdp_ctl
|= format
;
752 top_field
->gam_gdp_ctl
|= sti_gdp_get_alpharange(format
);
753 top_field
->gam_gdp_ppt
&= ~GAM_GDP_PPT_IGNORE
;
755 cma_obj
= drm_fb_cma_get_gem_obj(fb
, 0);
757 DRM_DEBUG_DRIVER("drm FB:%d format:%.4s phys@:0x%lx\n", fb
->base
.id
,
758 (char *)&fb
->pixel_format
,
759 (unsigned long)cma_obj
->paddr
);
761 /* pixel memory location */
762 bpp
= drm_format_plane_cpp(fb
->pixel_format
, 0);
763 top_field
->gam_gdp_pml
= (u32
)cma_obj
->paddr
+ fb
->offsets
[0];
764 top_field
->gam_gdp_pml
+= src_x
* bpp
;
765 top_field
->gam_gdp_pml
+= src_y
* fb
->pitches
[0];
767 /* output parameters (clamped / cropped) */
768 dst_w
= sti_gdp_get_dst(gdp
->dev
, dst_w
, src_w
);
769 dst_h
= sti_gdp_get_dst(gdp
->dev
, dst_h
, src_h
);
770 ydo
= sti_vtg_get_line_number(*mode
, dst_y
);
771 yds
= sti_vtg_get_line_number(*mode
, dst_y
+ dst_h
- 1);
772 xdo
= sti_vtg_get_pixel_number(*mode
, dst_x
);
773 xds
= sti_vtg_get_pixel_number(*mode
, dst_x
+ dst_w
- 1);
774 top_field
->gam_gdp_vpo
= (ydo
<< 16) | xdo
;
775 top_field
->gam_gdp_vps
= (yds
<< 16) | xds
;
777 /* input parameters */
779 top_field
->gam_gdp_pmp
= fb
->pitches
[0];
780 top_field
->gam_gdp_size
= src_h
<< 16 | src_w
;
782 /* Same content and chained together */
783 memcpy(btm_field
, top_field
, sizeof(*btm_field
));
784 top_field
->gam_gdp_nvn
= list
->btm_field_paddr
;
785 btm_field
->gam_gdp_nvn
= list
->top_field_paddr
;
787 /* Interlaced mode */
788 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
789 btm_field
->gam_gdp_pml
= top_field
->gam_gdp_pml
+
792 /* Update the NVN field of the 'right' field of the current GDP node
793 * (being used by the HW) with the address of the updated ('free') top
795 * - In interlaced mode the 'right' field is the bottom field as we
796 * update frames starting from their top field
797 * - In progressive mode, we update both bottom and top fields which
799 * At the next VSYNC, the updated node list will be used by the HW.
801 curr_list
= sti_gdp_get_current_nodes(gdp
);
802 dma_updated_top
= list
->top_field_paddr
;
803 dma_updated_btm
= list
->btm_field_paddr
;
805 dev_dbg(gdp
->dev
, "Current NVN:0x%X\n",
806 readl(gdp
->regs
+ GAM_GDP_NVN_OFFSET
));
807 dev_dbg(gdp
->dev
, "Posted buff: %lx current buff: %x\n",
808 (unsigned long)cma_obj
->paddr
,
809 readl(gdp
->regs
+ GAM_GDP_PML_OFFSET
));
812 /* First update or invalid node should directly write in the
814 DRM_DEBUG_DRIVER("%s first update (or invalid node)\n",
815 sti_plane_to_str(plane
));
817 writel(gdp
->is_curr_top
?
818 dma_updated_btm
: dma_updated_top
,
819 gdp
->regs
+ GAM_GDP_NVN_OFFSET
);
823 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
) {
824 if (gdp
->is_curr_top
) {
825 /* Do not update in the middle of the frame, but
826 * postpone the update after the bottom field has
828 curr_list
->btm_field
->gam_gdp_nvn
= dma_updated_top
;
830 /* Direct update to avoid one frame delay */
831 writel(dma_updated_top
,
832 gdp
->regs
+ GAM_GDP_NVN_OFFSET
);
835 /* Direct update for progressive to avoid one frame delay */
836 writel(dma_updated_top
, gdp
->regs
+ GAM_GDP_NVN_OFFSET
);
840 sti_plane_update_fps(plane
, true, false);
842 plane
->status
= STI_PLANE_UPDATED
;
845 static void sti_gdp_atomic_disable(struct drm_plane
*drm_plane
,
846 struct drm_plane_state
*oldstate
)
848 struct sti_plane
*plane
= to_sti_plane(drm_plane
);
850 if (!oldstate
->crtc
) {
851 DRM_DEBUG_DRIVER("drm plane:%d not enabled\n",
856 DRM_DEBUG_DRIVER("CRTC:%d (%s) drm plane:%d (%s)\n",
857 oldstate
->crtc
->base
.id
,
858 sti_mixer_to_str(to_sti_mixer(oldstate
->crtc
)),
859 drm_plane
->base
.id
, sti_plane_to_str(plane
));
861 plane
->status
= STI_PLANE_DISABLING
;
864 static const struct drm_plane_helper_funcs sti_gdp_helpers_funcs
= {
865 .atomic_check
= sti_gdp_atomic_check
,
866 .atomic_update
= sti_gdp_atomic_update
,
867 .atomic_disable
= sti_gdp_atomic_disable
,
870 static void sti_gdp_destroy(struct drm_plane
*drm_plane
)
872 DRM_DEBUG_DRIVER("\n");
874 drm_plane_helper_disable(drm_plane
);
875 drm_plane_cleanup(drm_plane
);
878 static int sti_gdp_late_register(struct drm_plane
*drm_plane
)
880 struct sti_plane
*plane
= to_sti_plane(drm_plane
);
881 struct sti_gdp
*gdp
= to_sti_gdp(plane
);
883 return gdp_debugfs_init(gdp
, drm_plane
->dev
->primary
);
886 static const struct drm_plane_funcs sti_gdp_plane_helpers_funcs
= {
887 .update_plane
= drm_atomic_helper_update_plane
,
888 .disable_plane
= drm_atomic_helper_disable_plane
,
889 .destroy
= sti_gdp_destroy
,
890 .set_property
= drm_atomic_helper_plane_set_property
,
891 .reset
= sti_plane_reset
,
892 .atomic_duplicate_state
= drm_atomic_helper_plane_duplicate_state
,
893 .atomic_destroy_state
= drm_atomic_helper_plane_destroy_state
,
894 .late_register
= sti_gdp_late_register
,
897 struct drm_plane
*sti_gdp_create(struct drm_device
*drm_dev
,
898 struct device
*dev
, int desc
,
899 void __iomem
*baseaddr
,
900 unsigned int possible_crtcs
,
901 enum drm_plane_type type
)
906 gdp
= devm_kzalloc(dev
, sizeof(*gdp
), GFP_KERNEL
);
908 DRM_ERROR("Failed to allocate memory for GDP\n");
913 gdp
->regs
= baseaddr
;
914 gdp
->plane
.desc
= desc
;
915 gdp
->plane
.status
= STI_PLANE_DISABLED
;
917 gdp
->vtg_field_nb
.notifier_call
= sti_gdp_field_cb
;
921 res
= drm_universal_plane_init(drm_dev
, &gdp
->plane
.drm_plane
,
923 &sti_gdp_plane_helpers_funcs
,
924 gdp_supported_formats
,
925 ARRAY_SIZE(gdp_supported_formats
),
928 DRM_ERROR("Failed to initialize universal plane\n");
932 drm_plane_helper_add(&gdp
->plane
.drm_plane
, &sti_gdp_helpers_funcs
);
934 sti_plane_init_property(&gdp
->plane
, type
);
936 return &gdp
->plane
.drm_plane
;
939 devm_kfree(dev
, gdp
);