blob: a1c161f77804424e0014c93478f92847559ea484 [file] [log] [blame]
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001/*
2 * Copyright (C) STMicroelectronics SA 2014
3 * Authors: Fabien Dessenne <fabien.dessenne@st.com> for STMicroelectronics.
4 * License terms: GNU General Public License (GPL), version 2
5 */
6
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01007#include <linux/component.h>
8#include <linux/firmware.h>
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01009#include <linux/reset.h>
Arnd Bergmann0f3e1562016-05-09 23:51:28 +020010#include <linux/seq_file.h>
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +010011
Vincent Abrioudd86dc22016-02-10 10:48:20 +010012#include <drm/drm_atomic.h>
Vincent Abriou29d1dc62015-08-03 14:22:16 +020013#include <drm/drm_fb_cma_helper.h>
14#include <drm/drm_gem_cma_helper.h>
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +010015
Vincent Abriou29d1dc62015-08-03 14:22:16 +020016#include "sti_compositor.h"
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +010017#include "sti_hqvdp_lut.h"
Vincent Abriou9e1f05b2015-07-31 11:32:34 +020018#include "sti_plane.h"
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +010019#include "sti_vtg.h"
Ville Syrjäläbdfd36e2016-09-19 16:33:53 +030020#include "sti_drv.h"
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +010021
22/* Firmware name */
23#define HQVDP_FMW_NAME "hqvdp-stih407.bin"
24
25/* Regs address */
26#define HQVDP_DMEM 0x00000000 /* 0x00000000 */
27#define HQVDP_PMEM 0x00040000 /* 0x00040000 */
28#define HQVDP_RD_PLUG 0x000E0000 /* 0x000E0000 */
29#define HQVDP_RD_PLUG_CONTROL (HQVDP_RD_PLUG + 0x1000) /* 0x000E1000 */
30#define HQVDP_RD_PLUG_PAGE_SIZE (HQVDP_RD_PLUG + 0x1004) /* 0x000E1004 */
31#define HQVDP_RD_PLUG_MIN_OPC (HQVDP_RD_PLUG + 0x1008) /* 0x000E1008 */
32#define HQVDP_RD_PLUG_MAX_OPC (HQVDP_RD_PLUG + 0x100C) /* 0x000E100C */
33#define HQVDP_RD_PLUG_MAX_CHK (HQVDP_RD_PLUG + 0x1010) /* 0x000E1010 */
34#define HQVDP_RD_PLUG_MAX_MSG (HQVDP_RD_PLUG + 0x1014) /* 0x000E1014 */
35#define HQVDP_RD_PLUG_MIN_SPACE (HQVDP_RD_PLUG + 0x1018) /* 0x000E1018 */
36#define HQVDP_WR_PLUG 0x000E2000 /* 0x000E2000 */
37#define HQVDP_WR_PLUG_CONTROL (HQVDP_WR_PLUG + 0x1000) /* 0x000E3000 */
38#define HQVDP_WR_PLUG_PAGE_SIZE (HQVDP_WR_PLUG + 0x1004) /* 0x000E3004 */
39#define HQVDP_WR_PLUG_MIN_OPC (HQVDP_WR_PLUG + 0x1008) /* 0x000E3008 */
40#define HQVDP_WR_PLUG_MAX_OPC (HQVDP_WR_PLUG + 0x100C) /* 0x000E300C */
41#define HQVDP_WR_PLUG_MAX_CHK (HQVDP_WR_PLUG + 0x1010) /* 0x000E3010 */
42#define HQVDP_WR_PLUG_MAX_MSG (HQVDP_WR_PLUG + 0x1014) /* 0x000E3014 */
43#define HQVDP_WR_PLUG_MIN_SPACE (HQVDP_WR_PLUG + 0x1018) /* 0x000E3018 */
44#define HQVDP_MBX 0x000E4000 /* 0x000E4000 */
45#define HQVDP_MBX_IRQ_TO_XP70 (HQVDP_MBX + 0x0000) /* 0x000E4000 */
46#define HQVDP_MBX_INFO_HOST (HQVDP_MBX + 0x0004) /* 0x000E4004 */
47#define HQVDP_MBX_IRQ_TO_HOST (HQVDP_MBX + 0x0008) /* 0x000E4008 */
48#define HQVDP_MBX_INFO_XP70 (HQVDP_MBX + 0x000C) /* 0x000E400C */
49#define HQVDP_MBX_SW_RESET_CTRL (HQVDP_MBX + 0x0010) /* 0x000E4010 */
50#define HQVDP_MBX_STARTUP_CTRL1 (HQVDP_MBX + 0x0014) /* 0x000E4014 */
51#define HQVDP_MBX_STARTUP_CTRL2 (HQVDP_MBX + 0x0018) /* 0x000E4018 */
52#define HQVDP_MBX_GP_STATUS (HQVDP_MBX + 0x001C) /* 0x000E401C */
53#define HQVDP_MBX_NEXT_CMD (HQVDP_MBX + 0x0020) /* 0x000E4020 */
54#define HQVDP_MBX_CURRENT_CMD (HQVDP_MBX + 0x0024) /* 0x000E4024 */
55#define HQVDP_MBX_SOFT_VSYNC (HQVDP_MBX + 0x0028) /* 0x000E4028 */
56
57/* Plugs config */
58#define PLUG_CONTROL_ENABLE 0x00000001
59#define PLUG_PAGE_SIZE_256 0x00000002
60#define PLUG_MIN_OPC_8 0x00000003
61#define PLUG_MAX_OPC_64 0x00000006
62#define PLUG_MAX_CHK_2X 0x00000001
63#define PLUG_MAX_MSG_1X 0x00000000
64#define PLUG_MIN_SPACE_1 0x00000000
65
66/* SW reset CTRL */
67#define SW_RESET_CTRL_FULL BIT(0)
68#define SW_RESET_CTRL_CORE BIT(1)
69
70/* Startup ctrl 1 */
71#define STARTUP_CTRL1_RST_DONE BIT(0)
72#define STARTUP_CTRL1_AUTH_IDLE BIT(2)
73
74/* Startup ctrl 2 */
75#define STARTUP_CTRL2_FETCH_EN BIT(1)
76
77/* Info xP70 */
78#define INFO_XP70_FW_READY BIT(15)
79#define INFO_XP70_FW_PROCESSING BIT(14)
80#define INFO_XP70_FW_INITQUEUES BIT(13)
81
82/* SOFT_VSYNC */
83#define SOFT_VSYNC_HW 0x00000000
84#define SOFT_VSYNC_SW_CMD 0x00000001
85#define SOFT_VSYNC_SW_CTRL_IRQ 0x00000003
86
87/* Reset & boot poll config */
88#define POLL_MAX_ATTEMPT 50
89#define POLL_DELAY_MS 20
90
91#define SCALE_FACTOR 8192
92#define SCALE_MAX_FOR_LEG_LUT_F 4096
93#define SCALE_MAX_FOR_LEG_LUT_E 4915
94#define SCALE_MAX_FOR_LEG_LUT_D 6654
95#define SCALE_MAX_FOR_LEG_LUT_C 8192
96
97enum sti_hvsrc_orient {
98 HVSRC_HORI,
99 HVSRC_VERT
100};
101
102/* Command structures */
103struct sti_hqvdp_top {
104 u32 config;
105 u32 mem_format;
106 u32 current_luma;
107 u32 current_enh_luma;
108 u32 current_right_luma;
109 u32 current_enh_right_luma;
110 u32 current_chroma;
111 u32 current_enh_chroma;
112 u32 current_right_chroma;
113 u32 current_enh_right_chroma;
114 u32 output_luma;
115 u32 output_chroma;
116 u32 luma_src_pitch;
117 u32 luma_enh_src_pitch;
118 u32 luma_right_src_pitch;
119 u32 luma_enh_right_src_pitch;
120 u32 chroma_src_pitch;
121 u32 chroma_enh_src_pitch;
122 u32 chroma_right_src_pitch;
123 u32 chroma_enh_right_src_pitch;
124 u32 luma_processed_pitch;
125 u32 chroma_processed_pitch;
126 u32 input_frame_size;
127 u32 input_viewport_ori;
128 u32 input_viewport_ori_right;
129 u32 input_viewport_size;
130 u32 left_view_border_width;
131 u32 right_view_border_width;
132 u32 left_view_3d_offset_width;
133 u32 right_view_3d_offset_width;
134 u32 side_stripe_color;
135 u32 crc_reset_ctrl;
136};
137
138/* Configs for interlaced : no IT, no pass thru, 3 fields */
139#define TOP_CONFIG_INTER_BTM 0x00000000
140#define TOP_CONFIG_INTER_TOP 0x00000002
141
142/* Config for progressive : no IT, no pass thru, 3 fields */
143#define TOP_CONFIG_PROGRESSIVE 0x00000001
144
145/* Default MemFormat: in=420_raster_dual out=444_raster;opaque Mem2Tv mode */
146#define TOP_MEM_FORMAT_DFLT 0x00018060
147
148/* Min/Max size */
149#define MAX_WIDTH 0x1FFF
150#define MAX_HEIGHT 0x0FFF
151#define MIN_WIDTH 0x0030
152#define MIN_HEIGHT 0x0010
153
154struct sti_hqvdp_vc1re {
155 u32 ctrl_prv_csdi;
156 u32 ctrl_cur_csdi;
157 u32 ctrl_nxt_csdi;
158 u32 ctrl_cur_fmd;
159 u32 ctrl_nxt_fmd;
160};
161
162struct sti_hqvdp_fmd {
163 u32 config;
164 u32 viewport_ori;
165 u32 viewport_size;
166 u32 next_next_luma;
167 u32 next_next_right_luma;
168 u32 next_next_next_luma;
169 u32 next_next_next_right_luma;
170 u32 threshold_scd;
171 u32 threshold_rfd;
172 u32 threshold_move;
173 u32 threshold_cfd;
174};
175
176struct sti_hqvdp_csdi {
177 u32 config;
178 u32 config2;
179 u32 dcdi_config;
180 u32 prev_luma;
181 u32 prev_enh_luma;
182 u32 prev_right_luma;
183 u32 prev_enh_right_luma;
184 u32 next_luma;
185 u32 next_enh_luma;
186 u32 next_right_luma;
187 u32 next_enh_right_luma;
188 u32 prev_chroma;
189 u32 prev_enh_chroma;
190 u32 prev_right_chroma;
191 u32 prev_enh_right_chroma;
192 u32 next_chroma;
193 u32 next_enh_chroma;
194 u32 next_right_chroma;
195 u32 next_enh_right_chroma;
196 u32 prev_motion;
197 u32 prev_right_motion;
198 u32 cur_motion;
199 u32 cur_right_motion;
200 u32 next_motion;
201 u32 next_right_motion;
202};
203
204/* Config for progressive: by pass */
205#define CSDI_CONFIG_PROG 0x00000000
206/* Config for directional deinterlacing without motion */
207#define CSDI_CONFIG_INTER_DIR 0x00000016
208/* Additional configs for fader, blender, motion,... deinterlace algorithms */
209#define CSDI_CONFIG2_DFLT 0x000001B3
210#define CSDI_DCDI_CONFIG_DFLT 0x00203803
211
212struct sti_hqvdp_hvsrc {
213 u32 hor_panoramic_ctrl;
214 u32 output_picture_size;
215 u32 init_horizontal;
216 u32 init_vertical;
217 u32 param_ctrl;
218 u32 yh_coef[NB_COEF];
219 u32 ch_coef[NB_COEF];
220 u32 yv_coef[NB_COEF];
221 u32 cv_coef[NB_COEF];
222 u32 hori_shift;
223 u32 vert_shift;
224};
225
226/* Default ParamCtrl: all controls enabled */
227#define HVSRC_PARAM_CTRL_DFLT 0xFFFFFFFF
228
229struct sti_hqvdp_iqi {
230 u32 config;
231 u32 demo_wind_size;
232 u32 pk_config;
233 u32 coeff0_coeff1;
234 u32 coeff2_coeff3;
235 u32 coeff4;
236 u32 pk_lut;
237 u32 pk_gain;
238 u32 pk_coring_level;
239 u32 cti_config;
240 u32 le_config;
241 u32 le_lut[64];
242 u32 con_bri;
243 u32 sat_gain;
244 u32 pxf_conf;
245 u32 default_color;
246};
247
248/* Default Config : IQI bypassed */
249#define IQI_CONFIG_DFLT 0x00000001
250/* Default Contrast & Brightness gain = 256 */
251#define IQI_CON_BRI_DFLT 0x00000100
252/* Default Saturation gain = 256 */
253#define IQI_SAT_GAIN_DFLT 0x00000100
254/* Default PxfConf : P2I bypassed */
255#define IQI_PXF_CONF_DFLT 0x00000001
256
257struct sti_hqvdp_top_status {
258 u32 processing_time;
259 u32 input_y_crc;
260 u32 input_uv_crc;
261};
262
263struct sti_hqvdp_fmd_status {
264 u32 fmd_repeat_move_status;
265 u32 fmd_scene_count_status;
266 u32 cfd_sum;
267 u32 field_sum;
268 u32 next_y_fmd_crc;
269 u32 next_next_y_fmd_crc;
270 u32 next_next_next_y_fmd_crc;
271};
272
273struct sti_hqvdp_csdi_status {
274 u32 prev_y_csdi_crc;
275 u32 cur_y_csdi_crc;
276 u32 next_y_csdi_crc;
277 u32 prev_uv_csdi_crc;
278 u32 cur_uv_csdi_crc;
279 u32 next_uv_csdi_crc;
280 u32 y_csdi_crc;
281 u32 uv_csdi_crc;
282 u32 uv_cup_crc;
283 u32 mot_csdi_crc;
284 u32 mot_cur_csdi_crc;
285 u32 mot_prev_csdi_crc;
286};
287
288struct sti_hqvdp_hvsrc_status {
289 u32 y_hvsrc_crc;
290 u32 u_hvsrc_crc;
291 u32 v_hvsrc_crc;
292};
293
294struct sti_hqvdp_iqi_status {
295 u32 pxf_it_status;
296 u32 y_iqi_crc;
297 u32 u_iqi_crc;
298 u32 v_iqi_crc;
299};
300
301/* Main commands. We use 2 commands one being processed by the firmware, one
302 * ready to be fetched upon next Vsync*/
303#define NB_VDP_CMD 2
304
305struct sti_hqvdp_cmd {
306 struct sti_hqvdp_top top;
307 struct sti_hqvdp_vc1re vc1re;
308 struct sti_hqvdp_fmd fmd;
309 struct sti_hqvdp_csdi csdi;
310 struct sti_hqvdp_hvsrc hvsrc;
311 struct sti_hqvdp_iqi iqi;
312 struct sti_hqvdp_top_status top_status;
313 struct sti_hqvdp_fmd_status fmd_status;
314 struct sti_hqvdp_csdi_status csdi_status;
315 struct sti_hqvdp_hvsrc_status hvsrc_status;
316 struct sti_hqvdp_iqi_status iqi_status;
317};
318
319/*
320 * STI HQVDP structure
321 *
322 * @dev: driver device
323 * @drm_dev: the drm device
324 * @regs: registers
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200325 * @plane: plane structure for hqvdp it self
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100326 * @clk: IP clock
327 * @clk_pix_main: pix main clock
328 * @reset: reset control
329 * @vtg_nb: notifier to handle VTG Vsync
330 * @btm_field_pending: is there any bottom field (interlaced frame) to display
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100331 * @hqvdp_cmd: buffer of commands
332 * @hqvdp_cmd_paddr: physical address of hqvdp_cmd
333 * @vtg: vtg for main data path
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200334 * @xp70_initialized: true if xp70 is already initialized
Fabien DESSENNE49fb5602016-12-05 16:09:32 +0100335 * @vtg_registered: true if registered to VTG
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100336 */
337struct sti_hqvdp {
338 struct device *dev;
339 struct drm_device *drm_dev;
340 void __iomem *regs;
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200341 struct sti_plane plane;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100342 struct clk *clk;
343 struct clk *clk_pix_main;
344 struct reset_control *reset;
345 struct notifier_block vtg_nb;
346 bool btm_field_pending;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100347 void *hqvdp_cmd;
Arnd Bergmann52807ae2015-12-08 16:47:21 +0100348 u32 hqvdp_cmd_paddr;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100349 struct sti_vtg *vtg;
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200350 bool xp70_initialized;
Fabien DESSENNE49fb5602016-12-05 16:09:32 +0100351 bool vtg_registered;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100352};
353
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200354#define to_sti_hqvdp(x) container_of(x, struct sti_hqvdp, plane)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100355
356static const uint32_t hqvdp_supported_formats[] = {
357 DRM_FORMAT_NV12,
358};
359
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100360/**
361 * sti_hqvdp_get_free_cmd
362 * @hqvdp: hqvdp structure
363 *
364 * Look for a hqvdp_cmd that is not being used (or about to be used) by the FW.
365 *
366 * RETURNS:
367 * the offset of the command to be used.
368 * -1 in error cases
369 */
370static int sti_hqvdp_get_free_cmd(struct sti_hqvdp *hqvdp)
371{
Arnd Bergmann52807ae2015-12-08 16:47:21 +0100372 u32 curr_cmd, next_cmd;
373 u32 cmd = hqvdp->hqvdp_cmd_paddr;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100374 int i;
375
376 curr_cmd = readl(hqvdp->regs + HQVDP_MBX_CURRENT_CMD);
377 next_cmd = readl(hqvdp->regs + HQVDP_MBX_NEXT_CMD);
378
379 for (i = 0; i < NB_VDP_CMD; i++) {
380 if ((cmd != curr_cmd) && (cmd != next_cmd))
381 return i * sizeof(struct sti_hqvdp_cmd);
382 cmd += sizeof(struct sti_hqvdp_cmd);
383 }
384
385 return -1;
386}
387
388/**
389 * sti_hqvdp_get_curr_cmd
390 * @hqvdp: hqvdp structure
391 *
392 * Look for the hqvdp_cmd that is being used by the FW.
393 *
394 * RETURNS:
395 * the offset of the command to be used.
396 * -1 in error cases
397 */
398static int sti_hqvdp_get_curr_cmd(struct sti_hqvdp *hqvdp)
399{
Arnd Bergmann52807ae2015-12-08 16:47:21 +0100400 u32 curr_cmd;
401 u32 cmd = hqvdp->hqvdp_cmd_paddr;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100402 unsigned int i;
403
404 curr_cmd = readl(hqvdp->regs + HQVDP_MBX_CURRENT_CMD);
405
406 for (i = 0; i < NB_VDP_CMD; i++) {
407 if (cmd == curr_cmd)
408 return i * sizeof(struct sti_hqvdp_cmd);
409
410 cmd += sizeof(struct sti_hqvdp_cmd);
411 }
412
413 return -1;
414}
415
416/**
Vincent Abriou670454b2016-02-04 16:57:46 +0100417 * sti_hqvdp_get_next_cmd
418 * @hqvdp: hqvdp structure
419 *
420 * Look for the next hqvdp_cmd that will be used by the FW.
421 *
422 * RETURNS:
423 * the offset of the next command that will be used.
424 * -1 in error cases
425 */
426static int sti_hqvdp_get_next_cmd(struct sti_hqvdp *hqvdp)
427{
428 int next_cmd;
429 dma_addr_t cmd = hqvdp->hqvdp_cmd_paddr;
430 unsigned int i;
431
432 next_cmd = readl(hqvdp->regs + HQVDP_MBX_NEXT_CMD);
433
434 for (i = 0; i < NB_VDP_CMD; i++) {
435 if (cmd == next_cmd)
436 return i * sizeof(struct sti_hqvdp_cmd);
437
438 cmd += sizeof(struct sti_hqvdp_cmd);
439 }
440
441 return -1;
442}
443
444#define DBGFS_DUMP(reg) seq_printf(s, "\n %-25s 0x%08X", #reg, \
445 readl(hqvdp->regs + reg))
446
447static const char *hqvdp_dbg_get_lut(u32 *coef)
448{
449 if (!memcmp(coef, coef_lut_a_legacy, 16))
450 return "LUT A";
451 if (!memcmp(coef, coef_lut_b, 16))
452 return "LUT B";
453 if (!memcmp(coef, coef_lut_c_y_legacy, 16))
454 return "LUT C Y";
455 if (!memcmp(coef, coef_lut_c_c_legacy, 16))
456 return "LUT C C";
457 if (!memcmp(coef, coef_lut_d_y_legacy, 16))
458 return "LUT D Y";
459 if (!memcmp(coef, coef_lut_d_c_legacy, 16))
460 return "LUT D C";
461 if (!memcmp(coef, coef_lut_e_y_legacy, 16))
462 return "LUT E Y";
463 if (!memcmp(coef, coef_lut_e_c_legacy, 16))
464 return "LUT E C";
465 if (!memcmp(coef, coef_lut_f_y_legacy, 16))
466 return "LUT F Y";
467 if (!memcmp(coef, coef_lut_f_c_legacy, 16))
468 return "LUT F C";
469 return "<UNKNOWN>";
470}
471
472static void hqvdp_dbg_dump_cmd(struct seq_file *s, struct sti_hqvdp_cmd *c)
473{
474 int src_w, src_h, dst_w, dst_h;
475
476 seq_puts(s, "\n\tTOP:");
477 seq_printf(s, "\n\t %-20s 0x%08X", "Config", c->top.config);
478 switch (c->top.config) {
479 case TOP_CONFIG_PROGRESSIVE:
480 seq_puts(s, "\tProgressive");
481 break;
482 case TOP_CONFIG_INTER_TOP:
483 seq_puts(s, "\tInterlaced, top field");
484 break;
485 case TOP_CONFIG_INTER_BTM:
486 seq_puts(s, "\tInterlaced, bottom field");
487 break;
488 default:
489 seq_puts(s, "\t<UNKNOWN>");
490 break;
491 }
492
493 seq_printf(s, "\n\t %-20s 0x%08X", "MemFormat", c->top.mem_format);
494 seq_printf(s, "\n\t %-20s 0x%08X", "CurrentY", c->top.current_luma);
495 seq_printf(s, "\n\t %-20s 0x%08X", "CurrentC", c->top.current_chroma);
496 seq_printf(s, "\n\t %-20s 0x%08X", "YSrcPitch", c->top.luma_src_pitch);
497 seq_printf(s, "\n\t %-20s 0x%08X", "CSrcPitch",
498 c->top.chroma_src_pitch);
499 seq_printf(s, "\n\t %-20s 0x%08X", "InputFrameSize",
500 c->top.input_frame_size);
501 seq_printf(s, "\t%dx%d",
502 c->top.input_frame_size & 0x0000FFFF,
503 c->top.input_frame_size >> 16);
504 seq_printf(s, "\n\t %-20s 0x%08X", "InputViewportSize",
505 c->top.input_viewport_size);
506 src_w = c->top.input_viewport_size & 0x0000FFFF;
507 src_h = c->top.input_viewport_size >> 16;
508 seq_printf(s, "\t%dx%d", src_w, src_h);
509
510 seq_puts(s, "\n\tHVSRC:");
511 seq_printf(s, "\n\t %-20s 0x%08X", "OutputPictureSize",
512 c->hvsrc.output_picture_size);
513 dst_w = c->hvsrc.output_picture_size & 0x0000FFFF;
514 dst_h = c->hvsrc.output_picture_size >> 16;
515 seq_printf(s, "\t%dx%d", dst_w, dst_h);
516 seq_printf(s, "\n\t %-20s 0x%08X", "ParamCtrl", c->hvsrc.param_ctrl);
517
518 seq_printf(s, "\n\t %-20s %s", "yh_coef",
519 hqvdp_dbg_get_lut(c->hvsrc.yh_coef));
520 seq_printf(s, "\n\t %-20s %s", "ch_coef",
521 hqvdp_dbg_get_lut(c->hvsrc.ch_coef));
522 seq_printf(s, "\n\t %-20s %s", "yv_coef",
523 hqvdp_dbg_get_lut(c->hvsrc.yv_coef));
524 seq_printf(s, "\n\t %-20s %s", "cv_coef",
525 hqvdp_dbg_get_lut(c->hvsrc.cv_coef));
526
527 seq_printf(s, "\n\t %-20s", "ScaleH");
528 if (dst_w > src_w)
529 seq_printf(s, " %d/1", dst_w / src_w);
530 else
531 seq_printf(s, " 1/%d", src_w / dst_w);
532
533 seq_printf(s, "\n\t %-20s", "tScaleV");
534 if (dst_h > src_h)
535 seq_printf(s, " %d/1", dst_h / src_h);
536 else
537 seq_printf(s, " 1/%d", src_h / dst_h);
538
539 seq_puts(s, "\n\tCSDI:");
540 seq_printf(s, "\n\t %-20s 0x%08X\t", "Config", c->csdi.config);
541 switch (c->csdi.config) {
542 case CSDI_CONFIG_PROG:
543 seq_puts(s, "Bypass");
544 break;
545 case CSDI_CONFIG_INTER_DIR:
546 seq_puts(s, "Deinterlace, directional");
547 break;
548 default:
549 seq_puts(s, "<UNKNOWN>");
550 break;
551 }
552
553 seq_printf(s, "\n\t %-20s 0x%08X", "Config2", c->csdi.config2);
554 seq_printf(s, "\n\t %-20s 0x%08X", "DcdiConfig", c->csdi.dcdi_config);
555}
556
557static int hqvdp_dbg_show(struct seq_file *s, void *data)
558{
559 struct drm_info_node *node = s->private;
560 struct sti_hqvdp *hqvdp = (struct sti_hqvdp *)node->info_ent->data;
Vincent Abriou670454b2016-02-04 16:57:46 +0100561 int cmd, cmd_offset, infoxp70;
562 void *virt;
Vincent Abriou670454b2016-02-04 16:57:46 +0100563
564 seq_printf(s, "%s: (vaddr = 0x%p)",
565 sti_plane_to_str(&hqvdp->plane), hqvdp->regs);
566
567 DBGFS_DUMP(HQVDP_MBX_IRQ_TO_XP70);
568 DBGFS_DUMP(HQVDP_MBX_INFO_HOST);
569 DBGFS_DUMP(HQVDP_MBX_IRQ_TO_HOST);
570 DBGFS_DUMP(HQVDP_MBX_INFO_XP70);
571 infoxp70 = readl(hqvdp->regs + HQVDP_MBX_INFO_XP70);
572 seq_puts(s, "\tFirmware state: ");
573 if (infoxp70 & INFO_XP70_FW_READY)
574 seq_puts(s, "idle and ready");
575 else if (infoxp70 & INFO_XP70_FW_PROCESSING)
576 seq_puts(s, "processing a picture");
577 else if (infoxp70 & INFO_XP70_FW_INITQUEUES)
578 seq_puts(s, "programming queues");
579 else
580 seq_puts(s, "NOT READY");
581
582 DBGFS_DUMP(HQVDP_MBX_SW_RESET_CTRL);
583 DBGFS_DUMP(HQVDP_MBX_STARTUP_CTRL1);
584 if (readl(hqvdp->regs + HQVDP_MBX_STARTUP_CTRL1)
585 & STARTUP_CTRL1_RST_DONE)
586 seq_puts(s, "\tReset is done");
587 else
588 seq_puts(s, "\tReset is NOT done");
589 DBGFS_DUMP(HQVDP_MBX_STARTUP_CTRL2);
590 if (readl(hqvdp->regs + HQVDP_MBX_STARTUP_CTRL2)
591 & STARTUP_CTRL2_FETCH_EN)
592 seq_puts(s, "\tFetch is enabled");
593 else
594 seq_puts(s, "\tFetch is NOT enabled");
595 DBGFS_DUMP(HQVDP_MBX_GP_STATUS);
596 DBGFS_DUMP(HQVDP_MBX_NEXT_CMD);
597 DBGFS_DUMP(HQVDP_MBX_CURRENT_CMD);
598 DBGFS_DUMP(HQVDP_MBX_SOFT_VSYNC);
599 if (!(readl(hqvdp->regs + HQVDP_MBX_SOFT_VSYNC) & 3))
600 seq_puts(s, "\tHW Vsync");
601 else
602 seq_puts(s, "\tSW Vsync ?!?!");
603
604 /* Last command */
605 cmd = readl(hqvdp->regs + HQVDP_MBX_CURRENT_CMD);
606 cmd_offset = sti_hqvdp_get_curr_cmd(hqvdp);
607 if (cmd_offset == -1) {
608 seq_puts(s, "\n\n Last command: unknown");
609 } else {
610 virt = hqvdp->hqvdp_cmd + cmd_offset;
611 seq_printf(s, "\n\n Last command: address @ 0x%x (0x%p)",
612 cmd, virt);
613 hqvdp_dbg_dump_cmd(s, (struct sti_hqvdp_cmd *)virt);
614 }
615
616 /* Next command */
617 cmd = readl(hqvdp->regs + HQVDP_MBX_NEXT_CMD);
618 cmd_offset = sti_hqvdp_get_next_cmd(hqvdp);
619 if (cmd_offset == -1) {
620 seq_puts(s, "\n\n Next command: unknown");
621 } else {
622 virt = hqvdp->hqvdp_cmd + cmd_offset;
623 seq_printf(s, "\n\n Next command address: @ 0x%x (0x%p)",
624 cmd, virt);
625 hqvdp_dbg_dump_cmd(s, (struct sti_hqvdp_cmd *)virt);
626 }
627
Markus Elfringe9635132017-05-05 15:00:46 +0200628 seq_putc(s, '\n');
Vincent Abriou670454b2016-02-04 16:57:46 +0100629 return 0;
630}
631
632static struct drm_info_list hqvdp_debugfs_files[] = {
633 { "hqvdp", hqvdp_dbg_show, 0, NULL },
634};
635
636static int hqvdp_debugfs_init(struct sti_hqvdp *hqvdp, struct drm_minor *minor)
637{
638 unsigned int i;
639
640 for (i = 0; i < ARRAY_SIZE(hqvdp_debugfs_files); i++)
641 hqvdp_debugfs_files[i].data = hqvdp;
642
643 return drm_debugfs_create_files(hqvdp_debugfs_files,
644 ARRAY_SIZE(hqvdp_debugfs_files),
645 minor->debugfs_root, minor);
646}
647
648/**
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100649 * sti_hqvdp_update_hvsrc
650 * @orient: horizontal or vertical
651 * @scale: scaling/zoom factor
652 * @hvsrc: the structure containing the LUT coef
653 *
654 * Update the Y and C Lut coef, as well as the shift param
655 *
656 * RETURNS:
657 * None.
658 */
659static void sti_hqvdp_update_hvsrc(enum sti_hvsrc_orient orient, int scale,
660 struct sti_hqvdp_hvsrc *hvsrc)
661{
662 const int *coef_c, *coef_y;
663 int shift_c, shift_y;
664
665 /* Get the appropriate coef tables */
666 if (scale < SCALE_MAX_FOR_LEG_LUT_F) {
667 coef_y = coef_lut_f_y_legacy;
668 coef_c = coef_lut_f_c_legacy;
669 shift_y = SHIFT_LUT_F_Y_LEGACY;
670 shift_c = SHIFT_LUT_F_C_LEGACY;
671 } else if (scale < SCALE_MAX_FOR_LEG_LUT_E) {
672 coef_y = coef_lut_e_y_legacy;
673 coef_c = coef_lut_e_c_legacy;
674 shift_y = SHIFT_LUT_E_Y_LEGACY;
675 shift_c = SHIFT_LUT_E_C_LEGACY;
676 } else if (scale < SCALE_MAX_FOR_LEG_LUT_D) {
677 coef_y = coef_lut_d_y_legacy;
678 coef_c = coef_lut_d_c_legacy;
679 shift_y = SHIFT_LUT_D_Y_LEGACY;
680 shift_c = SHIFT_LUT_D_C_LEGACY;
681 } else if (scale < SCALE_MAX_FOR_LEG_LUT_C) {
682 coef_y = coef_lut_c_y_legacy;
683 coef_c = coef_lut_c_c_legacy;
684 shift_y = SHIFT_LUT_C_Y_LEGACY;
685 shift_c = SHIFT_LUT_C_C_LEGACY;
686 } else if (scale == SCALE_MAX_FOR_LEG_LUT_C) {
687 coef_y = coef_c = coef_lut_b;
688 shift_y = shift_c = SHIFT_LUT_B;
689 } else {
690 coef_y = coef_c = coef_lut_a_legacy;
691 shift_y = shift_c = SHIFT_LUT_A_LEGACY;
692 }
693
694 if (orient == HVSRC_HORI) {
695 hvsrc->hori_shift = (shift_c << 16) | shift_y;
696 memcpy(hvsrc->yh_coef, coef_y, sizeof(hvsrc->yh_coef));
697 memcpy(hvsrc->ch_coef, coef_c, sizeof(hvsrc->ch_coef));
698 } else {
699 hvsrc->vert_shift = (shift_c << 16) | shift_y;
700 memcpy(hvsrc->yv_coef, coef_y, sizeof(hvsrc->yv_coef));
701 memcpy(hvsrc->cv_coef, coef_c, sizeof(hvsrc->cv_coef));
702 }
703}
704
705/**
706 * sti_hqvdp_check_hw_scaling
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200707 * @hqvdp: hqvdp pointer
708 * @mode: display mode with timing constraints
709 * @src_w: source width
710 * @src_h: source height
711 * @dst_w: destination width
712 * @dst_h: destination height
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100713 *
714 * Check if the HW is able to perform the scaling request
715 * The firmware scaling limitation is "CEIL(1/Zy) <= FLOOR(LFW)" where:
716 * Zy = OutputHeight / InputHeight
717 * LFW = (Tx * IPClock) / (MaxNbCycles * Cp)
718 * Tx : Total video mode horizontal resolution
719 * IPClock : HQVDP IP clock (Mhz)
720 * MaxNbCycles: max(InputWidth, OutputWidth)
721 * Cp: Video mode pixel clock (Mhz)
722 *
723 * RETURNS:
724 * True if the HW can scale.
725 */
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200726static bool sti_hqvdp_check_hw_scaling(struct sti_hqvdp *hqvdp,
727 struct drm_display_mode *mode,
728 int src_w, int src_h,
729 int dst_w, int dst_h)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100730{
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100731 unsigned long lfw;
732 unsigned int inv_zy;
733
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200734 lfw = mode->htotal * (clk_get_rate(hqvdp->clk) / 1000000);
735 lfw /= max(src_w, dst_w) * mode->clock / 1000;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100736
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200737 inv_zy = DIV_ROUND_UP(src_h, dst_h);
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100738
739 return (inv_zy <= lfw) ? true : false;
740}
741
742/**
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200743 * sti_hqvdp_disable
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200744 * @hqvdp: hqvdp pointer
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200745 *
746 * Disables the HQVDP plane
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200747 */
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200748static void sti_hqvdp_disable(struct sti_hqvdp *hqvdp)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100749{
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100750 int i;
751
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200752 DRM_DEBUG_DRIVER("%s\n", sti_plane_to_str(&hqvdp->plane));
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100753
754 /* Unregister VTG Vsync callback */
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200755 if (sti_vtg_unregister_client(hqvdp->vtg, &hqvdp->vtg_nb))
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100756 DRM_DEBUG_DRIVER("Warning: cannot unregister VTG notifier\n");
757
758 /* Set next cmd to NULL */
759 writel(0, hqvdp->regs + HQVDP_MBX_NEXT_CMD);
760
761 for (i = 0; i < POLL_MAX_ATTEMPT; i++) {
762 if (readl(hqvdp->regs + HQVDP_MBX_INFO_XP70)
763 & INFO_XP70_FW_READY)
764 break;
765 msleep(POLL_DELAY_MS);
766 }
767
768 /* VTG can stop now */
769 clk_disable_unprepare(hqvdp->clk_pix_main);
770
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200771 if (i == POLL_MAX_ATTEMPT)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100772 DRM_ERROR("XP70 could not revert to idle\n");
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100773
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200774 hqvdp->plane.status = STI_PLANE_DISABLED;
Fabien DESSENNE49fb5602016-12-05 16:09:32 +0100775 hqvdp->vtg_registered = false;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100776}
777
778/**
779 * sti_vdp_vtg_cb
780 * @nb: notifier block
781 * @evt: event message
782 * @data: private data
783 *
784 * Handle VTG Vsync event, display pending bottom field
785 *
786 * RETURNS:
787 * 0 on success.
788 */
Ville Syrjäläbdfd36e2016-09-19 16:33:53 +0300789static int sti_hqvdp_vtg_cb(struct notifier_block *nb, unsigned long evt, void *data)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100790{
791 struct sti_hqvdp *hqvdp = container_of(nb, struct sti_hqvdp, vtg_nb);
792 int btm_cmd_offset, top_cmd_offest;
793 struct sti_hqvdp_cmd *btm_cmd, *top_cmd;
794
795 if ((evt != VTG_TOP_FIELD_EVENT) && (evt != VTG_BOTTOM_FIELD_EVENT)) {
796 DRM_DEBUG_DRIVER("Unknown event\n");
797 return 0;
798 }
799
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200800 if (hqvdp->plane.status == STI_PLANE_FLUSHING) {
801 /* disable need to be synchronize on vsync event */
802 DRM_DEBUG_DRIVER("Vsync event received => disable %s\n",
803 sti_plane_to_str(&hqvdp->plane));
804
805 sti_hqvdp_disable(hqvdp);
806 }
807
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100808 if (hqvdp->btm_field_pending) {
809 /* Create the btm field command from the current one */
810 btm_cmd_offset = sti_hqvdp_get_free_cmd(hqvdp);
811 top_cmd_offest = sti_hqvdp_get_curr_cmd(hqvdp);
812 if ((btm_cmd_offset == -1) || (top_cmd_offest == -1)) {
Fabien Dessennee4250b32015-12-09 09:31:48 +0100813 DRM_DEBUG_DRIVER("Warning: no cmd, will skip field\n");
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100814 return -EBUSY;
815 }
816
817 btm_cmd = hqvdp->hqvdp_cmd + btm_cmd_offset;
818 top_cmd = hqvdp->hqvdp_cmd + top_cmd_offest;
819
820 memcpy(btm_cmd, top_cmd, sizeof(*btm_cmd));
821
822 btm_cmd->top.config = TOP_CONFIG_INTER_BTM;
823 btm_cmd->top.current_luma +=
824 btm_cmd->top.luma_src_pitch / 2;
825 btm_cmd->top.current_chroma +=
826 btm_cmd->top.chroma_src_pitch / 2;
827
828 /* Post the command to mailbox */
829 writel(hqvdp->hqvdp_cmd_paddr + btm_cmd_offset,
830 hqvdp->regs + HQVDP_MBX_NEXT_CMD);
831
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100832 hqvdp->btm_field_pending = false;
833
834 dev_dbg(hqvdp->dev, "%s Posted command:0x%x\n",
835 __func__, hqvdp->hqvdp_cmd_paddr);
Vincent Abrioubf8f9e42016-02-08 11:34:31 +0100836
837 sti_plane_update_fps(&hqvdp->plane, false, true);
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100838 }
839
840 return 0;
841}
842
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200843static void sti_hqvdp_init(struct sti_hqvdp *hqvdp)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100844{
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100845 int size;
Arnd Bergmann52807ae2015-12-08 16:47:21 +0100846 dma_addr_t dma_addr;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100847
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100848 hqvdp->vtg_nb.notifier_call = sti_hqvdp_vtg_cb;
849
850 /* Allocate memory for the VDP commands */
851 size = NB_VDP_CMD * sizeof(struct sti_hqvdp_cmd);
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800852 hqvdp->hqvdp_cmd = dma_alloc_wc(hqvdp->dev, size,
Linus Torvalds266c73b2016-03-21 13:48:00 -0700853 &dma_addr,
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800854 GFP_KERNEL | GFP_DMA);
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100855 if (!hqvdp->hqvdp_cmd) {
856 DRM_ERROR("Failed to allocate memory for VDP cmd\n");
857 return;
858 }
859
Arnd Bergmann52807ae2015-12-08 16:47:21 +0100860 hqvdp->hqvdp_cmd_paddr = (u32)dma_addr;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +0100861 memset(hqvdp->hqvdp_cmd, 0, size);
862}
863
Vincent Abrioue00fe642015-11-02 10:38:15 +0100864static void sti_hqvdp_init_plugs(struct sti_hqvdp *hqvdp)
865{
866 /* Configure Plugs (same for RD & WR) */
867 writel(PLUG_PAGE_SIZE_256, hqvdp->regs + HQVDP_RD_PLUG_PAGE_SIZE);
868 writel(PLUG_MIN_OPC_8, hqvdp->regs + HQVDP_RD_PLUG_MIN_OPC);
869 writel(PLUG_MAX_OPC_64, hqvdp->regs + HQVDP_RD_PLUG_MAX_OPC);
870 writel(PLUG_MAX_CHK_2X, hqvdp->regs + HQVDP_RD_PLUG_MAX_CHK);
871 writel(PLUG_MAX_MSG_1X, hqvdp->regs + HQVDP_RD_PLUG_MAX_MSG);
872 writel(PLUG_MIN_SPACE_1, hqvdp->regs + HQVDP_RD_PLUG_MIN_SPACE);
873 writel(PLUG_CONTROL_ENABLE, hqvdp->regs + HQVDP_RD_PLUG_CONTROL);
874
875 writel(PLUG_PAGE_SIZE_256, hqvdp->regs + HQVDP_WR_PLUG_PAGE_SIZE);
876 writel(PLUG_MIN_OPC_8, hqvdp->regs + HQVDP_WR_PLUG_MIN_OPC);
877 writel(PLUG_MAX_OPC_64, hqvdp->regs + HQVDP_WR_PLUG_MAX_OPC);
878 writel(PLUG_MAX_CHK_2X, hqvdp->regs + HQVDP_WR_PLUG_MAX_CHK);
879 writel(PLUG_MAX_MSG_1X, hqvdp->regs + HQVDP_WR_PLUG_MAX_MSG);
880 writel(PLUG_MIN_SPACE_1, hqvdp->regs + HQVDP_WR_PLUG_MIN_SPACE);
881 writel(PLUG_CONTROL_ENABLE, hqvdp->regs + HQVDP_WR_PLUG_CONTROL);
882}
883
884/**
885 * sti_hqvdp_start_xp70
886 * @hqvdp: hqvdp pointer
887 *
888 * Run the xP70 initialization sequence
889 */
890static void sti_hqvdp_start_xp70(struct sti_hqvdp *hqvdp)
891{
892 const struct firmware *firmware;
893 u32 *fw_rd_plug, *fw_wr_plug, *fw_pmem, *fw_dmem;
894 u8 *data;
895 int i;
896 struct fw_header {
897 int rd_size;
898 int wr_size;
899 int pmem_size;
900 int dmem_size;
901 } *header;
902
903 DRM_DEBUG_DRIVER("\n");
904
905 if (hqvdp->xp70_initialized) {
Vincent Abrioudd86dc22016-02-10 10:48:20 +0100906 DRM_DEBUG_DRIVER("HQVDP XP70 already initialized\n");
Vincent Abrioue00fe642015-11-02 10:38:15 +0100907 return;
908 }
909
910 /* Request firmware */
911 if (request_firmware(&firmware, HQVDP_FMW_NAME, hqvdp->dev)) {
912 DRM_ERROR("Can't get HQVDP firmware\n");
913 return;
914 }
915
916 /* Check firmware parts */
917 if (!firmware) {
918 DRM_ERROR("Firmware not available\n");
919 return;
920 }
921
922 header = (struct fw_header *)firmware->data;
923 if (firmware->size < sizeof(*header)) {
924 DRM_ERROR("Invalid firmware size (%d)\n", firmware->size);
925 goto out;
926 }
927 if ((sizeof(*header) + header->rd_size + header->wr_size +
928 header->pmem_size + header->dmem_size) != firmware->size) {
929 DRM_ERROR("Invalid fmw structure (%d+%d+%d+%d+%d != %d)\n",
930 sizeof(*header), header->rd_size, header->wr_size,
931 header->pmem_size, header->dmem_size,
932 firmware->size);
933 goto out;
934 }
935
936 data = (u8 *)firmware->data;
937 data += sizeof(*header);
938 fw_rd_plug = (void *)data;
939 data += header->rd_size;
940 fw_wr_plug = (void *)data;
941 data += header->wr_size;
942 fw_pmem = (void *)data;
943 data += header->pmem_size;
944 fw_dmem = (void *)data;
945
946 /* Enable clock */
947 if (clk_prepare_enable(hqvdp->clk))
948 DRM_ERROR("Failed to prepare/enable HQVDP clk\n");
949
950 /* Reset */
951 writel(SW_RESET_CTRL_FULL, hqvdp->regs + HQVDP_MBX_SW_RESET_CTRL);
952
953 for (i = 0; i < POLL_MAX_ATTEMPT; i++) {
954 if (readl(hqvdp->regs + HQVDP_MBX_STARTUP_CTRL1)
955 & STARTUP_CTRL1_RST_DONE)
956 break;
957 msleep(POLL_DELAY_MS);
958 }
959 if (i == POLL_MAX_ATTEMPT) {
960 DRM_ERROR("Could not reset\n");
961 goto out;
962 }
963
964 /* Init Read & Write plugs */
965 for (i = 0; i < header->rd_size / 4; i++)
966 writel(fw_rd_plug[i], hqvdp->regs + HQVDP_RD_PLUG + i * 4);
967 for (i = 0; i < header->wr_size / 4; i++)
968 writel(fw_wr_plug[i], hqvdp->regs + HQVDP_WR_PLUG + i * 4);
969
970 sti_hqvdp_init_plugs(hqvdp);
971
972 /* Authorize Idle Mode */
973 writel(STARTUP_CTRL1_AUTH_IDLE, hqvdp->regs + HQVDP_MBX_STARTUP_CTRL1);
974
975 /* Prevent VTG interruption during the boot */
976 writel(SOFT_VSYNC_SW_CTRL_IRQ, hqvdp->regs + HQVDP_MBX_SOFT_VSYNC);
977 writel(0, hqvdp->regs + HQVDP_MBX_NEXT_CMD);
978
979 /* Download PMEM & DMEM */
980 for (i = 0; i < header->pmem_size / 4; i++)
981 writel(fw_pmem[i], hqvdp->regs + HQVDP_PMEM + i * 4);
982 for (i = 0; i < header->dmem_size / 4; i++)
983 writel(fw_dmem[i], hqvdp->regs + HQVDP_DMEM + i * 4);
984
985 /* Enable fetch */
986 writel(STARTUP_CTRL2_FETCH_EN, hqvdp->regs + HQVDP_MBX_STARTUP_CTRL2);
987
988 /* Wait end of boot */
989 for (i = 0; i < POLL_MAX_ATTEMPT; i++) {
990 if (readl(hqvdp->regs + HQVDP_MBX_INFO_XP70)
991 & INFO_XP70_FW_READY)
992 break;
993 msleep(POLL_DELAY_MS);
994 }
995 if (i == POLL_MAX_ATTEMPT) {
996 DRM_ERROR("Could not boot\n");
997 goto out;
998 }
999
1000 /* Launch Vsync */
1001 writel(SOFT_VSYNC_HW, hqvdp->regs + HQVDP_MBX_SOFT_VSYNC);
1002
1003 DRM_INFO("HQVDP XP70 initialized\n");
1004
1005 hqvdp->xp70_initialized = true;
1006
1007out:
1008 release_firmware(firmware);
1009}
1010
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001011static int sti_hqvdp_atomic_check(struct drm_plane *drm_plane,
1012 struct drm_plane_state *state)
1013{
1014 struct sti_plane *plane = to_sti_plane(drm_plane);
1015 struct sti_hqvdp *hqvdp = to_sti_hqvdp(plane);
1016 struct drm_crtc *crtc = state->crtc;
1017 struct drm_framebuffer *fb = state->fb;
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001018 struct drm_crtc_state *crtc_state;
1019 struct drm_display_mode *mode;
1020 int dst_x, dst_y, dst_w, dst_h;
1021 int src_x, src_y, src_w, src_h;
1022
1023 /* no need for further checks if the plane is being disabled */
1024 if (!crtc || !fb)
1025 return 0;
1026
1027 crtc_state = drm_atomic_get_crtc_state(state->state, crtc);
1028 mode = &crtc_state->mode;
1029 dst_x = state->crtc_x;
1030 dst_y = state->crtc_y;
Fabien Dessennef766c6c2016-09-06 09:42:53 +02001031 dst_w = clamp_val(state->crtc_w, 0, mode->hdisplay - dst_x);
1032 dst_h = clamp_val(state->crtc_h, 0, mode->vdisplay - dst_y);
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001033 /* src_x are in 16.16 format */
1034 src_x = state->src_x >> 16;
1035 src_y = state->src_y >> 16;
1036 src_w = state->src_w >> 16;
1037 src_h = state->src_h >> 16;
1038
Fabien DESSENNE6801723b2017-01-12 17:27:37 +01001039 if (mode->clock && !sti_hqvdp_check_hw_scaling(hqvdp, mode,
1040 src_w, src_h,
1041 dst_w, dst_h)) {
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001042 DRM_ERROR("Scaling beyond HW capabilities\n");
1043 return -EINVAL;
1044 }
1045
1046 if (!drm_fb_cma_get_gem_obj(fb, 0)) {
1047 DRM_ERROR("Can't get CMA GEM object for fb\n");
1048 return -EINVAL;
1049 }
1050
1051 /*
1052 * Input / output size
1053 * Align to upper even value
1054 */
1055 dst_w = ALIGN(dst_w, 2);
1056 dst_h = ALIGN(dst_h, 2);
1057
1058 if ((src_w > MAX_WIDTH) || (src_w < MIN_WIDTH) ||
1059 (src_h > MAX_HEIGHT) || (src_h < MIN_HEIGHT) ||
1060 (dst_w > MAX_WIDTH) || (dst_w < MIN_WIDTH) ||
1061 (dst_h > MAX_HEIGHT) || (dst_h < MIN_HEIGHT)) {
1062 DRM_ERROR("Invalid in/out size %dx%d -> %dx%d\n",
1063 src_w, src_h,
1064 dst_w, dst_h);
1065 return -EINVAL;
1066 }
1067
Fabien DESSENNE49fb5602016-12-05 16:09:32 +01001068 if (!hqvdp->xp70_initialized)
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001069 /* Start HQVDP XP70 coprocessor */
1070 sti_hqvdp_start_xp70(hqvdp);
1071
Fabien DESSENNE49fb5602016-12-05 16:09:32 +01001072 if (!hqvdp->vtg_registered) {
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001073 /* Prevent VTG shutdown */
1074 if (clk_prepare_enable(hqvdp->clk_pix_main)) {
1075 DRM_ERROR("Failed to prepare/enable pix main clk\n");
1076 return -EINVAL;
1077 }
1078
1079 /* Register VTG Vsync callback to handle bottom fields */
1080 if (sti_vtg_register_client(hqvdp->vtg,
1081 &hqvdp->vtg_nb,
1082 crtc)) {
1083 DRM_ERROR("Cannot register VTG notifier\n");
1084 return -EINVAL;
1085 }
Fabien DESSENNE49fb5602016-12-05 16:09:32 +01001086 hqvdp->vtg_registered = true;
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001087 }
1088
1089 DRM_DEBUG_KMS("CRTC:%d (%s) drm plane:%d (%s)\n",
1090 crtc->base.id, sti_mixer_to_str(to_sti_mixer(crtc)),
1091 drm_plane->base.id, sti_plane_to_str(plane));
1092 DRM_DEBUG_KMS("%s dst=(%dx%d)@(%d,%d) - src=(%dx%d)@(%d,%d)\n",
1093 sti_plane_to_str(plane),
1094 dst_w, dst_h, dst_x, dst_y,
1095 src_w, src_h, src_x, src_y);
1096
1097 return 0;
1098}
1099
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001100static void sti_hqvdp_atomic_update(struct drm_plane *drm_plane,
1101 struct drm_plane_state *oldstate)
1102{
1103 struct drm_plane_state *state = drm_plane->state;
1104 struct sti_plane *plane = to_sti_plane(drm_plane);
1105 struct sti_hqvdp *hqvdp = to_sti_hqvdp(plane);
1106 struct drm_crtc *crtc = state->crtc;
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001107 struct drm_framebuffer *fb = state->fb;
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001108 struct drm_display_mode *mode;
1109 int dst_x, dst_y, dst_w, dst_h;
1110 int src_x, src_y, src_w, src_h;
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001111 struct drm_gem_cma_object *cma_obj;
1112 struct sti_hqvdp_cmd *cmd;
1113 int scale_h, scale_v;
1114 int cmd_offset;
1115
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001116 if (!crtc || !fb)
1117 return;
1118
Fabien DESSENNE97120772016-12-05 16:09:33 +01001119 if ((oldstate->fb == state->fb) &&
1120 (oldstate->crtc_x == state->crtc_x) &&
1121 (oldstate->crtc_y == state->crtc_y) &&
1122 (oldstate->crtc_w == state->crtc_w) &&
1123 (oldstate->crtc_h == state->crtc_h) &&
1124 (oldstate->src_x == state->src_x) &&
1125 (oldstate->src_y == state->src_y) &&
1126 (oldstate->src_w == state->src_w) &&
1127 (oldstate->src_h == state->src_h)) {
1128 /* No change since last update, do not post cmd */
1129 DRM_DEBUG_DRIVER("No change, not posting cmd\n");
1130 plane->status = STI_PLANE_UPDATED;
1131 return;
1132 }
1133
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001134 mode = &crtc->mode;
1135 dst_x = state->crtc_x;
1136 dst_y = state->crtc_y;
Fabien Dessennef766c6c2016-09-06 09:42:53 +02001137 dst_w = clamp_val(state->crtc_w, 0, mode->hdisplay - dst_x);
1138 dst_h = clamp_val(state->crtc_h, 0, mode->vdisplay - dst_y);
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001139 /* src_x are in 16.16 format */
1140 src_x = state->src_x >> 16;
1141 src_y = state->src_y >> 16;
1142 src_w = state->src_w >> 16;
1143 src_h = state->src_h >> 16;
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001144
1145 cmd_offset = sti_hqvdp_get_free_cmd(hqvdp);
1146 if (cmd_offset == -1) {
Fabien Dessennee4250b32015-12-09 09:31:48 +01001147 DRM_DEBUG_DRIVER("Warning: no cmd, will skip frame\n");
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001148 return;
1149 }
1150 cmd = hqvdp->hqvdp_cmd + cmd_offset;
1151
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001152 /* Static parameters, defaulting to progressive mode */
1153 cmd->top.config = TOP_CONFIG_PROGRESSIVE;
1154 cmd->top.mem_format = TOP_MEM_FORMAT_DFLT;
1155 cmd->hvsrc.param_ctrl = HVSRC_PARAM_CTRL_DFLT;
1156 cmd->csdi.config = CSDI_CONFIG_PROG;
1157
1158 /* VC1RE, FMD bypassed : keep everything set to 0
1159 * IQI/P2I bypassed */
1160 cmd->iqi.config = IQI_CONFIG_DFLT;
1161 cmd->iqi.con_bri = IQI_CON_BRI_DFLT;
1162 cmd->iqi.sat_gain = IQI_SAT_GAIN_DFLT;
1163 cmd->iqi.pxf_conf = IQI_PXF_CONF_DFLT;
1164
1165 cma_obj = drm_fb_cma_get_gem_obj(fb, 0);
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001166
1167 DRM_DEBUG_DRIVER("drm FB:%d format:%.4s phys@:0x%lx\n", fb->base.id,
Ville Syrjälä438b74a2016-12-14 23:32:55 +02001168 (char *)&fb->format->format,
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001169 (unsigned long)cma_obj->paddr);
1170
1171 /* Buffer planes address */
1172 cmd->top.current_luma = (u32)cma_obj->paddr + fb->offsets[0];
1173 cmd->top.current_chroma = (u32)cma_obj->paddr + fb->offsets[1];
1174
1175 /* Pitches */
1176 cmd->top.luma_processed_pitch = fb->pitches[0];
1177 cmd->top.luma_src_pitch = fb->pitches[0];
1178 cmd->top.chroma_processed_pitch = fb->pitches[1];
1179 cmd->top.chroma_src_pitch = fb->pitches[1];
1180
1181 /* Input / output size
1182 * Align to upper even value */
1183 dst_w = ALIGN(dst_w, 2);
1184 dst_h = ALIGN(dst_h, 2);
1185
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001186 cmd->top.input_viewport_size = src_h << 16 | src_w;
1187 cmd->top.input_frame_size = src_h << 16 | src_w;
1188 cmd->hvsrc.output_picture_size = dst_h << 16 | dst_w;
1189 cmd->top.input_viewport_ori = src_y << 16 | src_x;
1190
1191 /* Handle interlaced */
1192 if (fb->flags & DRM_MODE_FB_INTERLACED) {
1193 /* Top field to display */
1194 cmd->top.config = TOP_CONFIG_INTER_TOP;
1195
1196 /* Update pitches and vert size */
1197 cmd->top.input_frame_size = (src_h / 2) << 16 | src_w;
1198 cmd->top.luma_processed_pitch *= 2;
1199 cmd->top.luma_src_pitch *= 2;
1200 cmd->top.chroma_processed_pitch *= 2;
1201 cmd->top.chroma_src_pitch *= 2;
1202
1203 /* Enable directional deinterlacing processing */
1204 cmd->csdi.config = CSDI_CONFIG_INTER_DIR;
1205 cmd->csdi.config2 = CSDI_CONFIG2_DFLT;
1206 cmd->csdi.dcdi_config = CSDI_DCDI_CONFIG_DFLT;
1207 }
1208
1209 /* Update hvsrc lut coef */
1210 scale_h = SCALE_FACTOR * dst_w / src_w;
1211 sti_hqvdp_update_hvsrc(HVSRC_HORI, scale_h, &cmd->hvsrc);
1212
1213 scale_v = SCALE_FACTOR * dst_h / src_h;
1214 sti_hqvdp_update_hvsrc(HVSRC_VERT, scale_v, &cmd->hvsrc);
1215
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001216 writel(hqvdp->hqvdp_cmd_paddr + cmd_offset,
1217 hqvdp->regs + HQVDP_MBX_NEXT_CMD);
1218
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001219 /* Interlaced : get ready to display the bottom field at next Vsync */
1220 if (fb->flags & DRM_MODE_FB_INTERLACED)
1221 hqvdp->btm_field_pending = true;
1222
1223 dev_dbg(hqvdp->dev, "%s Posted command:0x%x\n",
1224 __func__, hqvdp->hqvdp_cmd_paddr + cmd_offset);
1225
Vincent Abrioubf8f9e42016-02-08 11:34:31 +01001226 sti_plane_update_fps(plane, true, true);
1227
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001228 plane->status = STI_PLANE_UPDATED;
1229}
1230
1231static void sti_hqvdp_atomic_disable(struct drm_plane *drm_plane,
1232 struct drm_plane_state *oldstate)
1233{
1234 struct sti_plane *plane = to_sti_plane(drm_plane);
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001235
Fabien Dessenne5552aad2016-09-06 09:41:48 +02001236 if (!oldstate->crtc) {
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001237 DRM_DEBUG_DRIVER("drm plane:%d not enabled\n",
1238 drm_plane->base.id);
1239 return;
1240 }
1241
1242 DRM_DEBUG_DRIVER("CRTC:%d (%s) drm plane:%d (%s)\n",
Fabien Dessenne5552aad2016-09-06 09:41:48 +02001243 oldstate->crtc->base.id,
1244 sti_mixer_to_str(to_sti_mixer(oldstate->crtc)),
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001245 drm_plane->base.id, sti_plane_to_str(plane));
1246
1247 plane->status = STI_PLANE_DISABLING;
1248}
1249
1250static const struct drm_plane_helper_funcs sti_hqvdp_helpers_funcs = {
Vincent Abrioudd86dc22016-02-10 10:48:20 +01001251 .atomic_check = sti_hqvdp_atomic_check,
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001252 .atomic_update = sti_hqvdp_atomic_update,
1253 .atomic_disable = sti_hqvdp_atomic_disable,
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001254};
1255
Benjamin Gaignard83af0a42016-06-21 15:09:39 +02001256static void sti_hqvdp_destroy(struct drm_plane *drm_plane)
1257{
1258 DRM_DEBUG_DRIVER("\n");
1259
1260 drm_plane_helper_disable(drm_plane);
1261 drm_plane_cleanup(drm_plane);
1262}
1263
1264static int sti_hqvdp_late_register(struct drm_plane *drm_plane)
1265{
1266 struct sti_plane *plane = to_sti_plane(drm_plane);
1267 struct sti_hqvdp *hqvdp = to_sti_hqvdp(plane);
1268
1269 return hqvdp_debugfs_init(hqvdp, drm_plane->dev->primary);
1270}
1271
Ville Syrjäläbdfd36e2016-09-19 16:33:53 +03001272static const struct drm_plane_funcs sti_hqvdp_plane_helpers_funcs = {
Benjamin Gaignard83af0a42016-06-21 15:09:39 +02001273 .update_plane = drm_atomic_helper_update_plane,
1274 .disable_plane = drm_atomic_helper_disable_plane,
1275 .destroy = sti_hqvdp_destroy,
Benjamin Gaignardbbd1e3a2016-03-24 17:18:20 +01001276 .set_property = drm_atomic_helper_plane_set_property,
1277 .reset = sti_plane_reset,
Benjamin Gaignard83af0a42016-06-21 15:09:39 +02001278 .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
1279 .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
1280 .late_register = sti_hqvdp_late_register,
1281};
1282
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001283static struct drm_plane *sti_hqvdp_create(struct drm_device *drm_dev,
1284 struct device *dev, int desc)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001285{
1286 struct sti_hqvdp *hqvdp = dev_get_drvdata(dev);
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001287 int res;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001288
Vincent Abriou871bcdf2015-07-31 11:32:13 +02001289 hqvdp->plane.desc = desc;
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001290 hqvdp->plane.status = STI_PLANE_DISABLED;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001291
Vincent Abriou871bcdf2015-07-31 11:32:13 +02001292 sti_hqvdp_init(hqvdp);
1293
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001294 res = drm_universal_plane_init(drm_dev, &hqvdp->plane.drm_plane, 1,
Benjamin Gaignard83af0a42016-06-21 15:09:39 +02001295 &sti_hqvdp_plane_helpers_funcs,
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001296 hqvdp_supported_formats,
1297 ARRAY_SIZE(hqvdp_supported_formats),
Ville Syrjäläb0b3b792015-12-09 16:19:55 +02001298 DRM_PLANE_TYPE_OVERLAY, NULL);
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001299 if (res) {
1300 DRM_ERROR("Failed to initialize universal plane\n");
1301 return NULL;
1302 }
1303
1304 drm_plane_helper_add(&hqvdp->plane.drm_plane, &sti_hqvdp_helpers_funcs);
1305
1306 sti_plane_init_property(&hqvdp->plane, DRM_PLANE_TYPE_OVERLAY);
1307
1308 return &hqvdp->plane.drm_plane;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001309}
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001310
Ville Syrjäläbdfd36e2016-09-19 16:33:53 +03001311static int sti_hqvdp_bind(struct device *dev, struct device *master, void *data)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001312{
1313 struct sti_hqvdp *hqvdp = dev_get_drvdata(dev);
1314 struct drm_device *drm_dev = data;
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001315 struct drm_plane *plane;
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001316
1317 DRM_DEBUG_DRIVER("\n");
1318
1319 hqvdp->drm_dev = drm_dev;
1320
Vincent Abriou871bcdf2015-07-31 11:32:13 +02001321 /* Create HQVDP plane once xp70 is initialized */
Vincent Abriou29d1dc62015-08-03 14:22:16 +02001322 plane = sti_hqvdp_create(drm_dev, hqvdp->dev, STI_HQVDP_0);
1323 if (!plane)
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001324 DRM_ERROR("Can't create HQVDP plane\n");
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001325
1326 return 0;
1327}
1328
1329static void sti_hqvdp_unbind(struct device *dev,
1330 struct device *master, void *data)
1331{
1332 /* do nothing */
1333}
1334
1335static const struct component_ops sti_hqvdp_ops = {
1336 .bind = sti_hqvdp_bind,
1337 .unbind = sti_hqvdp_unbind,
1338};
1339
1340static int sti_hqvdp_probe(struct platform_device *pdev)
1341{
1342 struct device *dev = &pdev->dev;
1343 struct device_node *vtg_np;
1344 struct sti_hqvdp *hqvdp;
1345 struct resource *res;
1346
1347 DRM_DEBUG_DRIVER("\n");
1348
1349 hqvdp = devm_kzalloc(dev, sizeof(*hqvdp), GFP_KERNEL);
1350 if (!hqvdp) {
1351 DRM_ERROR("Failed to allocate HQVDP context\n");
1352 return -ENOMEM;
1353 }
1354
1355 hqvdp->dev = dev;
1356
1357 /* Get Memory resources */
1358 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Markus Elfringda98d2e2017-05-05 15:33:19 +02001359 if (!res) {
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001360 DRM_ERROR("Get memory resource failed\n");
1361 return -ENXIO;
1362 }
1363 hqvdp->regs = devm_ioremap(dev, res->start, resource_size(res));
Markus Elfringda98d2e2017-05-05 15:33:19 +02001364 if (!hqvdp->regs) {
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001365 DRM_ERROR("Register mapping failed\n");
1366 return -ENXIO;
1367 }
1368
1369 /* Get clock resources */
1370 hqvdp->clk = devm_clk_get(dev, "hqvdp");
1371 hqvdp->clk_pix_main = devm_clk_get(dev, "pix_main");
Jassi Brar6dfca6b2015-02-04 17:37:00 +01001372 if (IS_ERR(hqvdp->clk) || IS_ERR(hqvdp->clk_pix_main)) {
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001373 DRM_ERROR("Cannot get clocks\n");
1374 return -ENXIO;
1375 }
1376
1377 /* Get reset resources */
1378 hqvdp->reset = devm_reset_control_get(dev, "hqvdp");
1379 if (!IS_ERR(hqvdp->reset))
1380 reset_control_deassert(hqvdp->reset);
1381
1382 vtg_np = of_parse_phandle(pdev->dev.of_node, "st,vtg", 0);
1383 if (vtg_np)
1384 hqvdp->vtg = of_vtg_find(vtg_np);
Peter Chen5d950ef2016-07-05 10:04:51 +08001385 of_node_put(vtg_np);
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001386
1387 platform_set_drvdata(pdev, hqvdp);
1388
1389 return component_add(&pdev->dev, &sti_hqvdp_ops);
1390}
1391
1392static int sti_hqvdp_remove(struct platform_device *pdev)
1393{
1394 component_del(&pdev->dev, &sti_hqvdp_ops);
1395 return 0;
1396}
1397
1398static struct of_device_id hqvdp_of_match[] = {
1399 { .compatible = "st,stih407-hqvdp", },
1400 { /* end node */ }
1401};
1402MODULE_DEVICE_TABLE(of, hqvdp_of_match);
1403
1404struct platform_driver sti_hqvdp_driver = {
1405 .driver = {
1406 .name = "sti-hqvdp",
1407 .owner = THIS_MODULE,
1408 .of_match_table = hqvdp_of_match,
1409 },
1410 .probe = sti_hqvdp_probe,
1411 .remove = sti_hqvdp_remove,
1412};
1413
Benjamin Gaignard4fdbc6782014-12-11 11:38:59 +01001414MODULE_AUTHOR("Benjamin Gaignard <benjamin.gaignard@st.com>");
1415MODULE_DESCRIPTION("STMicroelectronics SoC DRM driver");
1416MODULE_LICENSE("GPL");