rockchip_drm_vop.c 58.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
M
Mark Yao 已提交
2 3 4 5 6
/*
 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
 * Author:Mark Yao <mark.yao@rock-chips.com>
 */

S
Sam Ravnborg 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19
#include <linux/clk.h>
#include <linux/component.h>
#include <linux/delay.h>
#include <linux/iopoll.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/overflow.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
#include <linux/reset.h>

M
Mark Yao 已提交
20
#include <drm/drm.h>
21
#include <drm/drm_atomic.h>
22
#include <drm/drm_atomic_uapi.h>
M
Mark Yao 已提交
23
#include <drm/drm_crtc.h>
24
#include <drm/drm_flip_work.h>
S
Sam Ravnborg 已提交
25
#include <drm/drm_fourcc.h>
26
#include <drm/drm_gem_atomic_helper.h>
27
#include <drm/drm_gem_framebuffer_helper.h>
M
Mark Yao 已提交
28
#include <drm/drm_plane_helper.h>
29
#include <drm/drm_probe_helper.h>
30
#include <drm/drm_self_refresh_helper.h>
S
Sam Ravnborg 已提交
31 32
#include <drm/drm_vblank.h>

33
#ifdef CONFIG_DRM_ANALOGIX_DP
34
#include <drm/bridge/analogix_dp.h>
35
#endif
M
Mark Yao 已提交
36 37 38 39 40

#include "rockchip_drm_drv.h"
#include "rockchip_drm_gem.h"
#include "rockchip_drm_fb.h"
#include "rockchip_drm_vop.h"
41
#include "rockchip_rgb.h"
M
Mark Yao 已提交
42

43
#define VOP_WIN_SET(vop, win, name, v) \
44
		vop_reg_set(vop, &win->phy->name, win->base, ~0, v, #name)
45
#define VOP_SCL_SET(vop, win, name, v) \
46
		vop_reg_set(vop, &win->phy->scl->name, win->base, ~0, v, #name)
47
#define VOP_SCL_SET_EXT(vop, win, name, v) \
48 49
		vop_reg_set(vop, &win->phy->scl->ext->name, \
			    win->base, ~0, v, #name)
50

51
#define VOP_WIN_YUV2YUV_SET(vop, win_yuv2yuv, name, v) \
52 53 54 55 56
	do { \
		if (win_yuv2yuv && win_yuv2yuv->name.mask) \
			vop_reg_set(vop, &win_yuv2yuv->name, 0, ~0, v, #name); \
	} while (0)

57
#define VOP_WIN_YUV2YUV_COEFFICIENT_SET(vop, win_yuv2yuv, name, v) \
58 59 60 61 62
	do { \
		if (win_yuv2yuv && win_yuv2yuv->phy->name.mask) \
			vop_reg_set(vop, &win_yuv2yuv->phy->name, win_yuv2yuv->base, ~0, v, #name); \
	} while (0)

63
#define VOP_INTR_SET_MASK(vop, name, mask, v) \
64 65 66 67
		vop_reg_set(vop, &vop->data->intr->name, 0, mask, v, #name)

#define VOP_REG_SET(vop, group, name, v) \
		    vop_reg_set(vop, &vop->data->group->name, 0, ~0, v, #name)
68

69 70
#define VOP_INTR_SET_TYPE(vop, name, type, v) \
	do { \
71
		int i, reg = 0, mask = 0; \
72
		for (i = 0; i < vop->data->intr->nintrs; i++) { \
73
			if (vop->data->intr->intrs[i] & type) { \
74
				reg |= (v) << i; \
75 76
				mask |= 1 << i; \
			} \
77
		} \
78
		VOP_INTR_SET_MASK(vop, name, mask, reg); \
79 80 81 82
	} while (0)
#define VOP_INTR_GET_TYPE(vop, name, type) \
		vop_get_intr_type(vop, &vop->data->intr->name, type)

83
#define VOP_WIN_GET(vop, win, name) \
84
		vop_read_reg(vop, win->base, &win->phy->name)
M
Mark Yao 已提交
85

86 87 88
#define VOP_WIN_HAS_REG(win, name) \
	(!!(win->phy->name.mask))

M
Mark Yao 已提交
89 90 91
#define VOP_WIN_GET_YRGBADDR(vop, win) \
		vop_readl(vop, win->base + win->phy->yrgb_mst.offset)

92 93 94
#define VOP_WIN_TO_INDEX(vop_win) \
	((vop_win) - (vop_win)->vop->win)

95 96 97 98 99 100 101
#define VOP_AFBC_SET(vop, name, v) \
	do { \
		if ((vop)->data->afbc) \
			vop_reg_set((vop), &(vop)->data->afbc->name, \
				    0, ~0, v, #name); \
	} while (0)

M
Mark Yao 已提交
102 103 104
#define to_vop(x) container_of(x, struct vop, crtc)
#define to_vop_win(x) container_of(x, struct vop_win, base)

105 106 107 108 109 110
#define AFBC_FMT_RGB565		0x0
#define AFBC_FMT_U8U8U8U8	0x5
#define AFBC_FMT_U8U8U8		0x4

#define AFBC_TILE_16x16		BIT(4)

111 112 113 114 115 116 117 118 119 120 121 122
/*
 * The coefficients of the following matrix are all fixed points.
 * The format is S2.10 for the 3x3 part of the matrix, and S9.12 for the offsets.
 * They are all represented in two's complement.
 */
static const uint32_t bt601_yuv2rgb[] = {
	0x4A8, 0x0,    0x662,
	0x4A8, 0x1E6F, 0x1CBF,
	0x4A8, 0x812,  0x0,
	0x321168, 0x0877CF, 0x2EB127
};

123 124 125 126
enum vop_pending {
	VOP_PENDING_FB_UNREF,
};

M
Mark Yao 已提交
127 128 129
struct vop_win {
	struct drm_plane base;
	const struct vop_win_data *data;
130
	const struct vop_win_yuv2yuv_data *yuv2yuv_data;
M
Mark Yao 已提交
131 132 133
	struct vop *vop;
};

134
struct rockchip_rgb;
M
Mark Yao 已提交
135 136 137 138
struct vop {
	struct drm_crtc crtc;
	struct device *dev;
	struct drm_device *drm_dev;
139
	bool is_enabled;
M
Mark Yao 已提交
140

141
	struct completion dsp_hold_completion;
142
	unsigned int win_enabled;
143 144

	/* protected by dev->event_lock */
145
	struct drm_pending_vblank_event *event;
M
Mark Yao 已提交
146

147 148 149
	struct drm_flip_work fb_unref_work;
	unsigned long pending;

150 151
	struct completion line_flag_completion;

M
Mark Yao 已提交
152 153 154 155
	const struct vop_data *data;

	uint32_t *regsbak;
	void __iomem *regs;
156
	void __iomem *lut_regs;
M
Mark Yao 已提交
157 158 159 160 161 162 163 164

	/* physical map length of vop register */
	uint32_t len;

	/* one time only one process allowed to config the register */
	spinlock_t reg_lock;
	/* lock vop irq reg */
	spinlock_t irq_lock;
Z
zain wang 已提交
165 166
	/* protects crtc enable/disable */
	struct mutex vop_lock;
M
Mark Yao 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179

	unsigned int irq;

	/* vop AHP clk */
	struct clk *hclk;
	/* vop dclk */
	struct clk *dclk;
	/* vop share memory frequency */
	struct clk *aclk;

	/* vop dclk reset */
	struct reset_control *dclk_rst;

180 181 182
	/* optional internal rgb encoder */
	struct rockchip_rgb *rgb;

M
Mark Yao 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
	struct vop_win win[];
};

static inline void vop_writel(struct vop *vop, uint32_t offset, uint32_t v)
{
	writel(v, vop->regs + offset);
	vop->regsbak[offset >> 2] = v;
}

static inline uint32_t vop_readl(struct vop *vop, uint32_t offset)
{
	return readl(vop->regs + offset);
}

static inline uint32_t vop_read_reg(struct vop *vop, uint32_t base,
				    const struct vop_reg *reg)
{
	return (vop_readl(vop, base + reg->offset) >> reg->shift) & reg->mask;
}

203 204 205
static void vop_reg_set(struct vop *vop, const struct vop_reg *reg,
			uint32_t _offset, uint32_t _mask, uint32_t v,
			const char *reg_name)
M
Mark Yao 已提交
206
{
207 208 209
	int offset, mask, shift;

	if (!reg || !reg->mask) {
210
		DRM_DEV_DEBUG(vop->dev, "Warning: not support %s\n", reg_name);
211
		return;
212 213 214 215 216
	}

	offset = reg->offset + _offset;
	mask = reg->mask & _mask;
	shift = reg->shift;
M
Mark Yao 已提交
217

218
	if (reg->write_mask) {
219 220
		v = ((v << shift) & 0xffff) | (mask << (shift + 16));
	} else {
M
Mark Yao 已提交
221 222
		uint32_t cached_val = vop->regsbak[offset >> 2];

223 224
		v = (cached_val & ~(mask << shift)) | ((v & mask) << shift);
		vop->regsbak[offset >> 2] = v;
M
Mark Yao 已提交
225
	}
226

227
	if (reg->relaxed)
228 229 230
		writel_relaxed(v, vop->regs + offset);
	else
		writel(v, vop->regs + offset);
M
Mark Yao 已提交
231 232
}

233 234 235 236 237 238 239 240 241 242 243 244 245 246
static inline uint32_t vop_get_intr_type(struct vop *vop,
					 const struct vop_reg *reg, int type)
{
	uint32_t i, ret = 0;
	uint32_t regs = vop_read_reg(vop, 0, reg);

	for (i = 0; i < vop->data->intr->nintrs; i++) {
		if ((type & vop->data->intr->intrs[i]) && (regs & 1 << i))
			ret |= vop->data->intr->intrs[i];
	}

	return ret;
}

247 248
static inline void vop_cfg_done(struct vop *vop)
{
249
	VOP_REG_SET(vop, common, cfg_done, 1);
250 251
}

252 253 254 255 256 257 258 259 260 261 262 263 264
static bool has_rb_swapped(uint32_t format)
{
	switch (format) {
	case DRM_FORMAT_XBGR8888:
	case DRM_FORMAT_ABGR8888:
	case DRM_FORMAT_BGR888:
	case DRM_FORMAT_BGR565:
		return true;
	default:
		return false;
	}
}

M
Mark Yao 已提交
265 266 267 268 269
static enum vop_data_format vop_convert_format(uint32_t format)
{
	switch (format) {
	case DRM_FORMAT_XRGB8888:
	case DRM_FORMAT_ARGB8888:
270 271
	case DRM_FORMAT_XBGR8888:
	case DRM_FORMAT_ABGR8888:
M
Mark Yao 已提交
272 273
		return VOP_FMT_ARGB8888;
	case DRM_FORMAT_RGB888:
274
	case DRM_FORMAT_BGR888:
M
Mark Yao 已提交
275 276
		return VOP_FMT_RGB888;
	case DRM_FORMAT_RGB565:
277
	case DRM_FORMAT_BGR565:
M
Mark Yao 已提交
278 279 280 281 282 283 284 285
		return VOP_FMT_RGB565;
	case DRM_FORMAT_NV12:
		return VOP_FMT_YUV420SP;
	case DRM_FORMAT_NV16:
		return VOP_FMT_YUV422SP;
	case DRM_FORMAT_NV24:
		return VOP_FMT_YUV444SP;
	default:
286
		DRM_ERROR("unsupported format[%08x]\n", format);
M
Mark Yao 已提交
287 288 289 290
		return -EINVAL;
	}
}

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
static int vop_convert_afbc_format(uint32_t format)
{
	switch (format) {
	case DRM_FORMAT_XRGB8888:
	case DRM_FORMAT_ARGB8888:
	case DRM_FORMAT_XBGR8888:
	case DRM_FORMAT_ABGR8888:
		return AFBC_FMT_U8U8U8U8;
	case DRM_FORMAT_RGB888:
	case DRM_FORMAT_BGR888:
		return AFBC_FMT_U8U8U8;
	case DRM_FORMAT_RGB565:
	case DRM_FORMAT_BGR565:
		return AFBC_FMT_RGB565;
	/* either of the below should not be reachable */
	default:
		DRM_WARN_ONCE("unsupported AFBC format[%08x]\n", format);
		return -EINVAL;
	}

	return -EINVAL;
}

314 315 316 317 318 319
static uint16_t scl_vop_cal_scale(enum scale_mode mode, uint32_t src,
				  uint32_t dst, bool is_horizontal,
				  int vsu_mode, int *vskiplines)
{
	uint16_t val = 1 << SCL_FT_DEFAULT_FIXPOINT_SHIFT;

320 321 322
	if (vskiplines)
		*vskiplines = 0;

323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
	if (is_horizontal) {
		if (mode == SCALE_UP)
			val = GET_SCL_FT_BIC(src, dst);
		else if (mode == SCALE_DOWN)
			val = GET_SCL_FT_BILI_DN(src, dst);
	} else {
		if (mode == SCALE_UP) {
			if (vsu_mode == SCALE_UP_BIL)
				val = GET_SCL_FT_BILI_UP(src, dst);
			else
				val = GET_SCL_FT_BIC(src, dst);
		} else if (mode == SCALE_DOWN) {
			if (vskiplines) {
				*vskiplines = scl_get_vskiplines(src, dst);
				val = scl_get_bili_dn_vskip(src, dst,
							    *vskiplines);
			} else {
				val = GET_SCL_FT_BILI_DN(src, dst);
			}
		}
	}

	return val;
}

static void scl_vop_cal_scl_fac(struct vop *vop, const struct vop_win_data *win,
			     uint32_t src_w, uint32_t src_h, uint32_t dst_w,
350
			     uint32_t dst_h, const struct drm_format_info *info)
351 352 353 354
{
	uint16_t yrgb_hor_scl_mode, yrgb_ver_scl_mode;
	uint16_t cbcr_hor_scl_mode = SCALE_NONE;
	uint16_t cbcr_ver_scl_mode = SCALE_NONE;
355
	bool is_yuv = false;
356 357
	uint16_t cbcr_src_w = src_w / info->hsub;
	uint16_t cbcr_src_h = src_h / info->vsub;
358 359 360
	uint16_t vsu_mode;
	uint16_t lb_mode;
	uint32_t val;
361
	int vskiplines;
362

363 364 365
	if (info->is_yuv)
		is_yuv = true;

366
	if (dst_w > 3840) {
367
		DRM_DEV_ERROR(vop->dev, "Maximum dst width (3840) exceeded\n");
368 369 370
		return;
	}

M
Mark Yao 已提交
371 372 373 374 375 376 377
	if (!win->phy->scl->ext) {
		VOP_SCL_SET(vop, win, scale_yrgb_x,
			    scl_cal_scale2(src_w, dst_w));
		VOP_SCL_SET(vop, win, scale_yrgb_y,
			    scl_cal_scale2(src_h, dst_h));
		if (is_yuv) {
			VOP_SCL_SET(vop, win, scale_cbcr_x,
378
				    scl_cal_scale2(cbcr_src_w, dst_w));
M
Mark Yao 已提交
379
			VOP_SCL_SET(vop, win, scale_cbcr_y,
380
				    scl_cal_scale2(cbcr_src_h, dst_h));
M
Mark Yao 已提交
381 382 383 384
		}
		return;
	}

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
	yrgb_hor_scl_mode = scl_get_scl_mode(src_w, dst_w);
	yrgb_ver_scl_mode = scl_get_scl_mode(src_h, dst_h);

	if (is_yuv) {
		cbcr_hor_scl_mode = scl_get_scl_mode(cbcr_src_w, dst_w);
		cbcr_ver_scl_mode = scl_get_scl_mode(cbcr_src_h, dst_h);
		if (cbcr_hor_scl_mode == SCALE_DOWN)
			lb_mode = scl_vop_cal_lb_mode(dst_w, true);
		else
			lb_mode = scl_vop_cal_lb_mode(cbcr_src_w, true);
	} else {
		if (yrgb_hor_scl_mode == SCALE_DOWN)
			lb_mode = scl_vop_cal_lb_mode(dst_w, false);
		else
			lb_mode = scl_vop_cal_lb_mode(src_w, false);
	}

M
Mark Yao 已提交
402
	VOP_SCL_SET_EXT(vop, win, lb_mode, lb_mode);
403 404
	if (lb_mode == LB_RGB_3840X2) {
		if (yrgb_ver_scl_mode != SCALE_NONE) {
405
			DRM_DEV_ERROR(vop->dev, "not allow yrgb ver scale\n");
406 407 408
			return;
		}
		if (cbcr_ver_scl_mode != SCALE_NONE) {
409
			DRM_DEV_ERROR(vop->dev, "not allow cbcr ver scale\n");
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
			return;
		}
		vsu_mode = SCALE_UP_BIL;
	} else if (lb_mode == LB_RGB_2560X4) {
		vsu_mode = SCALE_UP_BIL;
	} else {
		vsu_mode = SCALE_UP_BIC;
	}

	val = scl_vop_cal_scale(yrgb_hor_scl_mode, src_w, dst_w,
				true, 0, NULL);
	VOP_SCL_SET(vop, win, scale_yrgb_x, val);
	val = scl_vop_cal_scale(yrgb_ver_scl_mode, src_h, dst_h,
				false, vsu_mode, &vskiplines);
	VOP_SCL_SET(vop, win, scale_yrgb_y, val);

M
Mark Yao 已提交
426 427
	VOP_SCL_SET_EXT(vop, win, vsd_yrgb_gt4, vskiplines == 4);
	VOP_SCL_SET_EXT(vop, win, vsd_yrgb_gt2, vskiplines == 2);
428

M
Mark Yao 已提交
429 430 431 432 433
	VOP_SCL_SET_EXT(vop, win, yrgb_hor_scl_mode, yrgb_hor_scl_mode);
	VOP_SCL_SET_EXT(vop, win, yrgb_ver_scl_mode, yrgb_ver_scl_mode);
	VOP_SCL_SET_EXT(vop, win, yrgb_hsd_mode, SCALE_DOWN_BIL);
	VOP_SCL_SET_EXT(vop, win, yrgb_vsd_mode, SCALE_DOWN_BIL);
	VOP_SCL_SET_EXT(vop, win, yrgb_vsu_mode, vsu_mode);
434 435 436 437 438 439 440 441
	if (is_yuv) {
		val = scl_vop_cal_scale(cbcr_hor_scl_mode, cbcr_src_w,
					dst_w, true, 0, NULL);
		VOP_SCL_SET(vop, win, scale_cbcr_x, val);
		val = scl_vop_cal_scale(cbcr_ver_scl_mode, cbcr_src_h,
					dst_h, false, vsu_mode, &vskiplines);
		VOP_SCL_SET(vop, win, scale_cbcr_y, val);

M
Mark Yao 已提交
442 443 444 445 446 447 448
		VOP_SCL_SET_EXT(vop, win, vsd_cbcr_gt4, vskiplines == 4);
		VOP_SCL_SET_EXT(vop, win, vsd_cbcr_gt2, vskiplines == 2);
		VOP_SCL_SET_EXT(vop, win, cbcr_hor_scl_mode, cbcr_hor_scl_mode);
		VOP_SCL_SET_EXT(vop, win, cbcr_ver_scl_mode, cbcr_ver_scl_mode);
		VOP_SCL_SET_EXT(vop, win, cbcr_hsd_mode, SCALE_DOWN_BIL);
		VOP_SCL_SET_EXT(vop, win, cbcr_vsd_mode, SCALE_DOWN_BIL);
		VOP_SCL_SET_EXT(vop, win, cbcr_vsu_mode, vsu_mode);
449 450 451
	}
}

452 453 454 455 456 457 458 459 460
static void vop_dsp_hold_valid_irq_enable(struct vop *vop)
{
	unsigned long flags;

	if (WARN_ON(!vop->is_enabled))
		return;

	spin_lock_irqsave(&vop->irq_lock, flags);

461
	VOP_INTR_SET_TYPE(vop, clear, DSP_HOLD_VALID_INTR, 1);
462
	VOP_INTR_SET_TYPE(vop, enable, DSP_HOLD_VALID_INTR, 1);
463 464 465 466 467 468 469 470 471 472 473 474 475

	spin_unlock_irqrestore(&vop->irq_lock, flags);
}

static void vop_dsp_hold_valid_irq_disable(struct vop *vop)
{
	unsigned long flags;

	if (WARN_ON(!vop->is_enabled))
		return;

	spin_lock_irqsave(&vop->irq_lock, flags);

476
	VOP_INTR_SET_TYPE(vop, enable, DSP_HOLD_VALID_INTR, 0);
477 478 479 480

	spin_unlock_irqrestore(&vop->irq_lock, flags);
}

481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
/*
 * (1) each frame starts at the start of the Vsync pulse which is signaled by
 *     the "FRAME_SYNC" interrupt.
 * (2) the active data region of each frame ends at dsp_vact_end
 * (3) we should program this same number (dsp_vact_end) into dsp_line_frag_num,
 *      to get "LINE_FLAG" interrupt at the end of the active on screen data.
 *
 * VOP_INTR_CTRL0.dsp_line_frag_num = VOP_DSP_VACT_ST_END.dsp_vact_end
 * Interrupts
 * LINE_FLAG -------------------------------+
 * FRAME_SYNC ----+                         |
 *                |                         |
 *                v                         v
 *                | Vsync | Vbp |  Vactive  | Vfp |
 *                        ^     ^           ^     ^
 *                        |     |           |     |
 *                        |     |           |     |
 * dsp_vs_end ------------+     |           |     |   VOP_DSP_VTOTAL_VS_END
 * dsp_vact_start --------------+           |     |   VOP_DSP_VACT_ST_END
 * dsp_vact_end ----------------------------+     |   VOP_DSP_VACT_ST_END
 * dsp_total -------------------------------------+   VOP_DSP_VTOTAL_VS_END
 */
static bool vop_line_flag_irq_is_enabled(struct vop *vop)
{
	uint32_t line_flag_irq;
	unsigned long flags;

	spin_lock_irqsave(&vop->irq_lock, flags);

	line_flag_irq = VOP_INTR_GET_TYPE(vop, enable, LINE_FLAG_INTR);

	spin_unlock_irqrestore(&vop->irq_lock, flags);

	return !!line_flag_irq;
}

517
static void vop_line_flag_irq_enable(struct vop *vop)
518 519 520 521 522 523 524 525
{
	unsigned long flags;

	if (WARN_ON(!vop->is_enabled))
		return;

	spin_lock_irqsave(&vop->irq_lock, flags);

526
	VOP_INTR_SET_TYPE(vop, clear, LINE_FLAG_INTR, 1);
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	VOP_INTR_SET_TYPE(vop, enable, LINE_FLAG_INTR, 1);

	spin_unlock_irqrestore(&vop->irq_lock, flags);
}

static void vop_line_flag_irq_disable(struct vop *vop)
{
	unsigned long flags;

	if (WARN_ON(!vop->is_enabled))
		return;

	spin_lock_irqsave(&vop->irq_lock, flags);

	VOP_INTR_SET_TYPE(vop, enable, LINE_FLAG_INTR, 0);

	spin_unlock_irqrestore(&vop->irq_lock, flags);
}

546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
static int vop_core_clks_enable(struct vop *vop)
{
	int ret;

	ret = clk_enable(vop->hclk);
	if (ret < 0)
		return ret;

	ret = clk_enable(vop->aclk);
	if (ret < 0)
		goto err_disable_hclk;

	return 0;

err_disable_hclk:
	clk_disable(vop->hclk);
	return ret;
}

static void vop_core_clks_disable(struct vop *vop)
{
	clk_disable(vop->aclk);
	clk_disable(vop->hclk);
}

571
static void vop_win_disable(struct vop *vop, const struct vop_win *vop_win)
572
{
573 574
	const struct vop_win_data *win = vop_win->data;

575 576 577 578 579 580 581 582
	if (win->phy->scl && win->phy->scl->ext) {
		VOP_SCL_SET_EXT(vop, win, yrgb_hor_scl_mode, SCALE_NONE);
		VOP_SCL_SET_EXT(vop, win, yrgb_ver_scl_mode, SCALE_NONE);
		VOP_SCL_SET_EXT(vop, win, cbcr_hor_scl_mode, SCALE_NONE);
		VOP_SCL_SET_EXT(vop, win, cbcr_ver_scl_mode, SCALE_NONE);
	}

	VOP_WIN_SET(vop, win, enable, 0);
583
	vop->win_enabled &= ~BIT(VOP_WIN_TO_INDEX(vop_win));
584 585
}

586
static int vop_enable(struct drm_crtc *crtc, struct drm_crtc_state *old_state)
M
Mark Yao 已提交
587 588
{
	struct vop *vop = to_vop(crtc);
589
	int ret, i;
M
Mark Yao 已提交
590

591 592
	ret = pm_runtime_get_sync(vop->dev);
	if (ret < 0) {
593
		DRM_DEV_ERROR(vop->dev, "failed to get pm runtime: %d\n", ret);
594
		return ret;
595 596
	}

597
	ret = vop_core_clks_enable(vop);
598 599
	if (WARN_ON(ret < 0))
		goto err_put_pm_runtime;
M
Mark Yao 已提交
600 601

	ret = clk_enable(vop->dclk);
602
	if (WARN_ON(ret < 0))
603
		goto err_disable_core;
M
Mark Yao 已提交
604 605 606 607 608 609 610 611 612

	/*
	 * Slave iommu shares power, irq and clock with vop.  It was associated
	 * automatically with this master device via common driver code.
	 * Now that we have enabled the clock we attach it to the shared drm
	 * mapping.
	 */
	ret = rockchip_drm_dma_attach_device(vop->drm_dev, vop->dev);
	if (ret) {
613 614
		DRM_DEV_ERROR(vop->dev,
			      "failed to attach dma mapping, %d\n", ret);
615
		goto err_disable_dclk;
M
Mark Yao 已提交
616 617
	}

618 619 620 621
	spin_lock(&vop->reg_lock);
	for (i = 0; i < vop->len; i += 4)
		writel_relaxed(vop->regsbak[i / 4], vop->regs + i);

622 623 624 625
	/*
	 * We need to make sure that all windows are disabled before we
	 * enable the crtc. Otherwise we might try to scan from a destroyed
	 * buffer later.
626 627 628 629
	 *
	 * In the case of enable-after-PSR, we don't need to worry about this
	 * case since the buffer is guaranteed to be valid and disabling the
	 * window will result in screen glitches on PSR exit.
630
	 */
631 632 633
	if (!old_state || !old_state->self_refresh_active) {
		for (i = 0; i < vop->data->win_size; i++) {
			struct vop_win *vop_win = &vop->win[i];
634

635
			vop_win_disable(vop, vop_win);
636
		}
637
	}
638 639 640 641 642 643 644 645 646 647 648

	if (vop->data->afbc) {
		struct rockchip_crtc_state *s;
		/*
		 * Disable AFBC and forget there was a vop window with AFBC
		 */
		VOP_AFBC_SET(vop, enable, 0);
		s = to_rockchip_crtc_state(crtc->state);
		s->enable_afbc = false;
	}

649 650
	vop_cfg_done(vop);

651 652
	spin_unlock(&vop->reg_lock);

653 654 655 656 657
	/*
	 * At here, vop clock & iommu is enable, R/W vop regs would be safe.
	 */
	vop->is_enabled = true;

M
Mark Yao 已提交
658 659
	spin_lock(&vop->reg_lock);

660
	VOP_REG_SET(vop, common, standby, 1);
M
Mark Yao 已提交
661 662 663

	spin_unlock(&vop->reg_lock);

664
	drm_crtc_vblank_on(crtc);
M
Mark Yao 已提交
665

666
	return 0;
M
Mark Yao 已提交
667 668 669

err_disable_dclk:
	clk_disable(vop->dclk);
670 671
err_disable_core:
	vop_core_clks_disable(vop);
672 673 674
err_put_pm_runtime:
	pm_runtime_put_sync(vop->dev);
	return ret;
M
Mark Yao 已提交
675 676
}

677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
static void rockchip_drm_set_win_enabled(struct drm_crtc *crtc, bool enabled)
{
        struct vop *vop = to_vop(crtc);
        int i;

        spin_lock(&vop->reg_lock);

        for (i = 0; i < vop->data->win_size; i++) {
                struct vop_win *vop_win = &vop->win[i];
                const struct vop_win_data *win = vop_win->data;

                VOP_WIN_SET(vop, win, enable,
                            enabled && (vop->win_enabled & BIT(i)));
        }
        vop_cfg_done(vop);

        spin_unlock(&vop->reg_lock);
}

696
static void vop_crtc_atomic_disable(struct drm_crtc *crtc,
697
				    struct drm_atomic_state *state)
M
Mark Yao 已提交
698 699 700
{
	struct vop *vop = to_vop(crtc);

701 702
	WARN_ON(vop->event);

703 704
	if (crtc->state->self_refresh_active)
		rockchip_drm_set_win_enabled(crtc, false);
705

706
	mutex_lock(&vop->vop_lock);
707

708
	drm_crtc_vblank_off(crtc);
M
Mark Yao 已提交
709

710 711 712
	if (crtc->state->self_refresh_active)
		goto out;

M
Mark Yao 已提交
713
	/*
714 715 716 717 718
	 * Vop standby will take effect at end of current frame,
	 * if dsp hold valid irq happen, it means standby complete.
	 *
	 * we must wait standby complete when we want to disable aclk,
	 * if not, memory bus maybe dead.
M
Mark Yao 已提交
719
	 */
720 721 722
	reinit_completion(&vop->dsp_hold_completion);
	vop_dsp_hold_valid_irq_enable(vop);

M
Mark Yao 已提交
723 724
	spin_lock(&vop->reg_lock);

725
	VOP_REG_SET(vop, common, standby, 1);
M
Mark Yao 已提交
726 727

	spin_unlock(&vop->reg_lock);
728

729 730 731 732
	wait_for_completion(&vop->dsp_hold_completion);

	vop_dsp_hold_valid_irq_disable(vop);

733
	vop->is_enabled = false;
734

M
Mark Yao 已提交
735
	/*
736
	 * vop standby complete, so iommu detach is safe.
M
Mark Yao 已提交
737 738 739
	 */
	rockchip_drm_dma_detach_device(vop->drm_dev, vop->dev);

740
	clk_disable(vop->dclk);
741
	vop_core_clks_disable(vop);
742
	pm_runtime_put(vop->dev);
743 744

out:
Z
zain wang 已提交
745
	mutex_unlock(&vop->vop_lock);
746 747 748 749 750 751 752 753

	if (crtc->state->event && !crtc->state->active) {
		spin_lock_irq(&crtc->dev->event_lock);
		drm_crtc_send_vblank_event(crtc, crtc->state->event);
		spin_unlock_irq(&crtc->dev->event_lock);

		crtc->state->event = NULL;
	}
M
Mark Yao 已提交
754 755
}

756
static void vop_plane_destroy(struct drm_plane *plane)
M
Mark Yao 已提交
757
{
758
	drm_plane_cleanup(plane);
M
Mark Yao 已提交
759 760
}

761 762 763 764 765 766 767 768 769 770 771 772
static inline bool rockchip_afbc(u64 modifier)
{
	return modifier == ROCKCHIP_AFBC_MOD;
}

static bool rockchip_mod_supported(struct drm_plane *plane,
				   u32 format, u64 modifier)
{
	if (modifier == DRM_FORMAT_MOD_LINEAR)
		return true;

	if (!rockchip_afbc(modifier)) {
773
		DRM_DEBUG_KMS("Unsupported format modifier 0x%llx\n", modifier);
774 775 776 777 778 779 780

		return false;
	}

	return vop_convert_afbc_format(format) >= 0;
}

781
static int vop_plane_atomic_check(struct drm_plane *plane,
782
			   struct drm_atomic_state *state)
M
Mark Yao 已提交
783
{
784 785
	struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state,
										 plane);
786
	struct drm_crtc *crtc = new_plane_state->crtc;
787
	struct drm_crtc_state *crtc_state;
788
	struct drm_framebuffer *fb = new_plane_state->fb;
M
Mark Yao 已提交
789 790 791
	struct vop_win *vop_win = to_vop_win(plane);
	const struct vop_win_data *win = vop_win->data;
	int ret;
792 793 794 795
	int min_scale = win->phy->scl ? FRAC_16_16(1, 8) :
					DRM_PLANE_HELPER_NO_SCALING;
	int max_scale = win->phy->scl ? FRAC_16_16(8, 1) :
					DRM_PLANE_HELPER_NO_SCALING;
M
Mark Yao 已提交
796

797
	if (!crtc || WARN_ON(!fb))
T
Tomasz Figa 已提交
798
		return 0;
799

800
	crtc_state = drm_atomic_get_existing_crtc_state(state,
801
							crtc);
802 803 804
	if (WARN_ON(!crtc_state))
		return -EINVAL;

805
	ret = drm_atomic_helper_check_plane_state(new_plane_state, crtc_state,
806 807
						  min_scale, max_scale,
						  true, true);
M
Mark Yao 已提交
808 809 810
	if (ret)
		return ret;

811
	if (!new_plane_state->visible)
T
Tomasz Figa 已提交
812
		return 0;
M
Mark Yao 已提交
813

V
Ville Syrjälä 已提交
814
	ret = vop_convert_format(fb->format->format);
T
Tomasz Figa 已提交
815 816
	if (ret < 0)
		return ret;
817

818 819 820 821
	/*
	 * Src.x1 can be odd when do clip, but yuv plane start point
	 * need align with 2 pixel.
	 */
822
	if (fb->format->is_yuv && ((new_plane_state->src.x1 >> 16) % 2)) {
823
		DRM_ERROR("Invalid Source: Yuv format not support odd xpos\n");
M
Mark Yao 已提交
824
		return -EINVAL;
825
	}
M
Mark Yao 已提交
826

827
	if (fb->format->is_yuv && new_plane_state->rotation & DRM_MODE_REFLECT_Y) {
828 829 830 831
		DRM_ERROR("Invalid Source: Yuv format does not support this rotation\n");
		return -EINVAL;
	}

832 833 834 835 836 837 838 839 840 841 842 843
	if (rockchip_afbc(fb->modifier)) {
		struct vop *vop = to_vop(crtc);

		if (!vop->data->afbc) {
			DRM_ERROR("vop does not support AFBC\n");
			return -EINVAL;
		}

		ret = vop_convert_afbc_format(fb->format->format);
		if (ret < 0)
			return ret;

844 845 846 847
		if (new_plane_state->src.x1 || new_plane_state->src.y1) {
			DRM_ERROR("AFBC does not support offset display, xpos=%d, ypos=%d, offset=%d\n",
				  new_plane_state->src.x1,
				  new_plane_state->src.y1, fb->offsets[0]);
848 849 850
			return -EINVAL;
		}

851
		if (new_plane_state->rotation && new_plane_state->rotation != DRM_MODE_ROTATE_0) {
852
			DRM_ERROR("No rotation support in AFBC, rotation=%d\n",
853
				  new_plane_state->rotation);
854 855 856 857
			return -EINVAL;
		}
	}

858 859
	return 0;
}
M
Mark Yao 已提交
860

861 862 863 864 865
static void vop_plane_atomic_disable(struct drm_plane *plane,
				     struct drm_plane_state *old_state)
{
	struct vop_win *vop_win = to_vop_win(plane);
	struct vop *vop = to_vop(old_state->crtc);
M
Mark Yao 已提交
866

867 868
	if (!old_state->crtc)
		return;
M
Mark Yao 已提交
869

870
	spin_lock(&vop->reg_lock);
M
Mark Yao 已提交
871

872
	vop_win_disable(vop, vop_win);
873

874 875
	spin_unlock(&vop->reg_lock);
}
876

877 878 879 880 881 882 883
static void vop_plane_atomic_update(struct drm_plane *plane,
		struct drm_plane_state *old_state)
{
	struct drm_plane_state *state = plane->state;
	struct drm_crtc *crtc = state->crtc;
	struct vop_win *vop_win = to_vop_win(plane);
	const struct vop_win_data *win = vop_win->data;
884
	const struct vop_win_yuv2yuv_data *win_yuv2yuv = vop_win->yuv2yuv_data;
885 886 887 888 889
	struct vop *vop = to_vop(state->crtc);
	struct drm_framebuffer *fb = state->fb;
	unsigned int actual_w, actual_h;
	unsigned int dsp_stx, dsp_sty;
	uint32_t act_info, dsp_info, dsp_st;
890 891
	struct drm_rect *src = &state->src;
	struct drm_rect *dest = &state->dst;
892 893 894 895 896 897
	struct drm_gem_object *obj, *uv_obj;
	struct rockchip_gem_object *rk_obj, *rk_uv_obj;
	unsigned long offset;
	dma_addr_t dma_addr;
	uint32_t val;
	bool rb_swap;
898
	int win_index = VOP_WIN_TO_INDEX(vop_win);
T
Tomasz Figa 已提交
899
	int format;
900 901
	int is_yuv = fb->format->is_yuv;
	int i;
902

M
Mark Yao 已提交
903
	/*
904
	 * can't update plane when vop is disabled.
M
Mark Yao 已提交
905
	 */
906
	if (WARN_ON(!crtc))
907
		return;
M
Mark Yao 已提交
908

909 910
	if (WARN_ON(!vop->is_enabled))
		return;
M
Mark Yao 已提交
911

T
Tomasz Figa 已提交
912
	if (!state->visible) {
913 914
		vop_plane_atomic_disable(plane, old_state);
		return;
M
Mark Yao 已提交
915
	}
916

917
	obj = fb->obj[0];
918 919 920 921 922 923 924 925 926 927 928 929 930
	rk_obj = to_rockchip_obj(obj);

	actual_w = drm_rect_width(src) >> 16;
	actual_h = drm_rect_height(src) >> 16;
	act_info = (actual_h - 1) << 16 | ((actual_w - 1) & 0xffff);

	dsp_info = (drm_rect_height(dest) - 1) << 16;
	dsp_info |= (drm_rect_width(dest) - 1) & 0xffff;

	dsp_stx = dest->x1 + crtc->mode.htotal - crtc->mode.hsync_start;
	dsp_sty = dest->y1 + crtc->mode.vtotal - crtc->mode.vsync_start;
	dsp_st = dsp_sty << 16 | (dsp_stx & 0xffff);

931
	offset = (src->x1 >> 16) * fb->format->cpp[0];
932
	offset += (src->y1 >> 16) * fb->pitches[0];
T
Tomasz Figa 已提交
933 934
	dma_addr = rk_obj->dma_addr + offset + fb->offsets[0];

935 936 937 938 939 940 941
	/*
	 * For y-mirroring we need to move address
	 * to the beginning of the last line.
	 */
	if (state->rotation & DRM_MODE_REFLECT_Y)
		dma_addr += (actual_h - 1) * fb->pitches[0];

V
Ville Syrjälä 已提交
942
	format = vop_convert_format(fb->format->format);
M
Mark Yao 已提交
943 944 945

	spin_lock(&vop->reg_lock);

946 947 948 949 950 951 952 953 954 955
	if (rockchip_afbc(fb->modifier)) {
		int afbc_format = vop_convert_afbc_format(fb->format->format);

		VOP_AFBC_SET(vop, format, afbc_format | AFBC_TILE_16x16);
		VOP_AFBC_SET(vop, hreg_block_split, 0);
		VOP_AFBC_SET(vop, win_sel, VOP_WIN_TO_INDEX(vop_win));
		VOP_AFBC_SET(vop, hdr_ptr, dma_addr);
		VOP_AFBC_SET(vop, pic_size, act_info);
	}

T
Tomasz Figa 已提交
956
	VOP_WIN_SET(vop, win, format, format);
957
	VOP_WIN_SET(vop, win, yrgb_vir, DIV_ROUND_UP(fb->pitches[0], 4));
T
Tomasz Figa 已提交
958
	VOP_WIN_SET(vop, win, yrgb_mst, dma_addr);
959
	VOP_WIN_YUV2YUV_SET(vop, win_yuv2yuv, y2r_en, is_yuv);
960 961 962 963
	VOP_WIN_SET(vop, win, y_mir_en,
		    (state->rotation & DRM_MODE_REFLECT_Y) ? 1 : 0);
	VOP_WIN_SET(vop, win, x_mir_en,
		    (state->rotation & DRM_MODE_REFLECT_X) ? 1 : 0);
964 965

	if (is_yuv) {
966 967
		int hsub = fb->format->hsub;
		int vsub = fb->format->vsub;
968
		int bpp = fb->format->cpp[1];
969

970
		uv_obj = fb->obj[1];
971 972 973 974 975 976
		rk_uv_obj = to_rockchip_obj(uv_obj);

		offset = (src->x1 >> 16) * bpp / hsub;
		offset += (src->y1 >> 16) * fb->pitches[1] / vsub;

		dma_addr = rk_uv_obj->dma_addr + offset + fb->offsets[1];
977
		VOP_WIN_SET(vop, win, uv_vir, DIV_ROUND_UP(fb->pitches[1], 4));
978
		VOP_WIN_SET(vop, win, uv_mst, dma_addr);
979 980 981 982 983 984 985

		for (i = 0; i < NUM_YUV2YUV_COEFFICIENTS; i++) {
			VOP_WIN_YUV2YUV_COEFFICIENT_SET(vop,
							win_yuv2yuv,
							y2r_coefficients[i],
							bt601_yuv2rgb[i]);
		}
986
	}
987 988 989

	if (win->phy->scl)
		scl_vop_cal_scl_fac(vop, win, actual_w, actual_h,
990
				    drm_rect_width(dest), drm_rect_height(dest),
991
				    fb->format);
992

993 994 995
	VOP_WIN_SET(vop, win, act_info, act_info);
	VOP_WIN_SET(vop, win, dsp_info, dsp_info);
	VOP_WIN_SET(vop, win, dsp_st, dsp_st);
996

V
Ville Syrjälä 已提交
997
	rb_swap = has_rb_swapped(fb->format->format);
998
	VOP_WIN_SET(vop, win, rb_swap, rb_swap);
M
Mark Yao 已提交
999

1000 1001 1002 1003 1004 1005 1006 1007
	/*
	 * Blending win0 with the background color doesn't seem to work
	 * correctly. We only get the background color, no matter the contents
	 * of the win0 framebuffer.  However, blending pre-multiplied color
	 * with the default opaque black default background color is a no-op,
	 * so we can just disable blending to get the correct result.
	 */
	if (fb->format->has_alpha && win_index > 0) {
M
Mark Yao 已提交
1008 1009 1010 1011 1012 1013 1014 1015
		VOP_WIN_SET(vop, win, dst_alpha_ctl,
			    DST_FACTOR_M0(ALPHA_SRC_INVERSE));
		val = SRC_ALPHA_EN(1) | SRC_COLOR_M0(ALPHA_SRC_PRE_MUL) |
			SRC_ALPHA_M0(ALPHA_STRAIGHT) |
			SRC_BLEND_M0(ALPHA_PER_PIX) |
			SRC_ALPHA_CAL_M0(ALPHA_NO_SATURATION) |
			SRC_FACTOR_M0(ALPHA_ONE);
		VOP_WIN_SET(vop, win, src_alpha_ctl, val);
1016 1017 1018 1019

		VOP_WIN_SET(vop, win, alpha_pre_mul, ALPHA_SRC_PRE_MUL);
		VOP_WIN_SET(vop, win, alpha_mode, ALPHA_PER_PIX);
		VOP_WIN_SET(vop, win, alpha_en, 1);
M
Mark Yao 已提交
1020 1021 1022 1023 1024
	} else {
		VOP_WIN_SET(vop, win, src_alpha_ctl, SRC_ALPHA_EN(0));
	}

	VOP_WIN_SET(vop, win, enable, 1);
1025
	vop->win_enabled |= BIT(win_index);
M
Mark Yao 已提交
1026 1027 1028
	spin_unlock(&vop->reg_lock);
}

1029
static int vop_plane_atomic_async_check(struct drm_plane *plane,
1030
					struct drm_atomic_state *state)
1031
{
1032 1033
	struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state,
										 plane);
1034 1035 1036 1037 1038 1039 1040 1041
	struct vop_win *vop_win = to_vop_win(plane);
	const struct vop_win_data *win = vop_win->data;
	int min_scale = win->phy->scl ? FRAC_16_16(1, 8) :
					DRM_PLANE_HELPER_NO_SCALING;
	int max_scale = win->phy->scl ? FRAC_16_16(8, 1) :
					DRM_PLANE_HELPER_NO_SCALING;
	struct drm_crtc_state *crtc_state;

1042
	if (plane != new_plane_state->crtc->cursor)
1043 1044 1045 1046 1047 1048 1049 1050
		return -EINVAL;

	if (!plane->state)
		return -EINVAL;

	if (!plane->state->fb)
		return -EINVAL;

1051 1052 1053
	if (state)
		crtc_state = drm_atomic_get_existing_crtc_state(state,
								new_plane_state->crtc);
1054 1055 1056 1057 1058 1059 1060 1061 1062
	else /* Special case for asynchronous cursor updates. */
		crtc_state = plane->crtc->state;

	return drm_atomic_helper_check_plane_state(plane->state, crtc_state,
						   min_scale, max_scale,
						   true, true);
}

static void vop_plane_atomic_async_update(struct drm_plane *plane,
1063
					  struct drm_atomic_state *state)
1064
{
1065 1066
	struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state,
									   plane);
1067
	struct vop *vop = to_vop(plane->state->crtc);
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
	struct drm_framebuffer *old_fb = plane->state->fb;

	plane->state->crtc_x = new_state->crtc_x;
	plane->state->crtc_y = new_state->crtc_y;
	plane->state->crtc_h = new_state->crtc_h;
	plane->state->crtc_w = new_state->crtc_w;
	plane->state->src_x = new_state->src_x;
	plane->state->src_y = new_state->src_y;
	plane->state->src_h = new_state->src_h;
	plane->state->src_w = new_state->src_w;
	swap(plane->state->fb, new_state->fb);
1079 1080 1081 1082 1083 1084 1085

	if (vop->is_enabled) {
		vop_plane_atomic_update(plane, plane->state);
		spin_lock(&vop->reg_lock);
		vop_cfg_done(vop);
		spin_unlock(&vop->reg_lock);

1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
		/*
		 * A scanout can still be occurring, so we can't drop the
		 * reference to the old framebuffer. To solve this we get a
		 * reference to old_fb and set a worker to release it later.
		 * FIXME: if we perform 500 async_update calls before the
		 * vblank, then we can have 500 different framebuffers waiting
		 * to be released.
		 */
		if (old_fb && plane->state->fb != old_fb) {
			drm_framebuffer_get(old_fb);
			WARN_ON(drm_crtc_vblank_get(plane->state->crtc) != 0);
			drm_flip_work_queue(&vop->fb_unref_work, old_fb);
			set_bit(VOP_PENDING_FB_UNREF, &vop->pending);
		}
	}
1101 1102
}

1103 1104 1105 1106
static const struct drm_plane_helper_funcs plane_helper_funcs = {
	.atomic_check = vop_plane_atomic_check,
	.atomic_update = vop_plane_atomic_update,
	.atomic_disable = vop_plane_atomic_disable,
1107 1108
	.atomic_async_check = vop_plane_atomic_async_check,
	.atomic_async_update = vop_plane_atomic_async_update,
1109
	.prepare_fb = drm_gem_plane_helper_prepare_fb,
1110
};
M
Mark Yao 已提交
1111 1112

static const struct drm_plane_funcs vop_plane_funcs = {
1113 1114
	.update_plane	= drm_atomic_helper_update_plane,
	.disable_plane	= drm_atomic_helper_disable_plane,
M
Mark Yao 已提交
1115
	.destroy = vop_plane_destroy,
T
Tomasz Figa 已提交
1116 1117 1118
	.reset = drm_atomic_helper_plane_reset,
	.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
	.atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
1119
	.format_mod_supported = rockchip_mod_supported,
M
Mark Yao 已提交
1120 1121 1122 1123 1124 1125 1126
};

static int vop_crtc_enable_vblank(struct drm_crtc *crtc)
{
	struct vop *vop = to_vop(crtc);
	unsigned long flags;

1127
	if (WARN_ON(!vop->is_enabled))
M
Mark Yao 已提交
1128 1129 1130 1131
		return -EPERM;

	spin_lock_irqsave(&vop->irq_lock, flags);

1132
	VOP_INTR_SET_TYPE(vop, clear, FS_INTR, 1);
1133
	VOP_INTR_SET_TYPE(vop, enable, FS_INTR, 1);
M
Mark Yao 已提交
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144

	spin_unlock_irqrestore(&vop->irq_lock, flags);

	return 0;
}

static void vop_crtc_disable_vblank(struct drm_crtc *crtc)
{
	struct vop *vop = to_vop(crtc);
	unsigned long flags;

1145
	if (WARN_ON(!vop->is_enabled))
M
Mark Yao 已提交
1146
		return;
1147

M
Mark Yao 已提交
1148
	spin_lock_irqsave(&vop->irq_lock, flags);
1149 1150 1151

	VOP_INTR_SET_TYPE(vop, enable, FS_INTR, 0);

M
Mark Yao 已提交
1152 1153 1154 1155 1156 1157 1158
	spin_unlock_irqrestore(&vop->irq_lock, flags);
}

static bool vop_crtc_mode_fixup(struct drm_crtc *crtc,
				const struct drm_display_mode *mode,
				struct drm_display_mode *adjusted_mode)
{
1159
	struct vop *vop = to_vop(crtc);
1160
	unsigned long rate;
1161

1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194
	/*
	 * Clock craziness.
	 *
	 * Key points:
	 *
	 * - DRM works in in kHz.
	 * - Clock framework works in Hz.
	 * - Rockchip's clock driver picks the clock rate that is the
	 *   same _OR LOWER_ than the one requested.
	 *
	 * Action plan:
	 *
	 * 1. When DRM gives us a mode, we should add 999 Hz to it.  That way
	 *    if the clock we need is 60000001 Hz (~60 MHz) and DRM tells us to
	 *    make 60000 kHz then the clock framework will actually give us
	 *    the right clock.
	 *
	 *    NOTE: if the PLL (maybe through a divider) could actually make
	 *    a clock rate 999 Hz higher instead of the one we want then this
	 *    could be a problem.  Unfortunately there's not much we can do
	 *    since it's baked into DRM to use kHz.  It shouldn't matter in
	 *    practice since Rockchip PLLs are controlled by tables and
	 *    even if there is a divider in the middle I wouldn't expect PLL
	 *    rates in the table that are just a few kHz different.
	 *
	 * 2. Get the clock framework to round the rate for us to tell us
	 *    what it will actually make.
	 *
	 * 3. Store the rounded up rate so that we don't need to worry about
	 *    this in the actual clk_set_rate().
	 */
	rate = clk_round_rate(vop->dclk, adjusted_mode->clock * 1000 + 999);
	adjusted_mode->clock = DIV_ROUND_UP(rate, 1000);
1195

M
Mark Yao 已提交
1196 1197 1198
	return true;
}

1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
static bool vop_dsp_lut_is_enabled(struct vop *vop)
{
	return vop_read_reg(vop, 0, &vop->data->common->dsp_lut_en);
}

static void vop_crtc_write_gamma_lut(struct vop *vop, struct drm_crtc *crtc)
{
	struct drm_color_lut *lut = crtc->state->gamma_lut->data;
	unsigned int i;

	for (i = 0; i < crtc->gamma_size; i++) {
		u32 word;

		word = (drm_color_lut_extract(lut[i].red, 10) << 20) |
		       (drm_color_lut_extract(lut[i].green, 10) << 10) |
			drm_color_lut_extract(lut[i].blue, 10);
		writel(word, vop->lut_regs + i * 4);
	}
}

static void vop_crtc_gamma_set(struct vop *vop, struct drm_crtc *crtc,
			       struct drm_crtc_state *old_state)
{
	struct drm_crtc_state *state = crtc->state;
	unsigned int idle;
	int ret;

	if (!vop->lut_regs)
		return;
	/*
	 * To disable gamma (gamma_lut is null) or to write
	 * an update to the LUT, clear dsp_lut_en.
	 */
	spin_lock(&vop->reg_lock);
	VOP_REG_SET(vop, common, dsp_lut_en, 0);
	vop_cfg_done(vop);
	spin_unlock(&vop->reg_lock);

	/*
	 * In order to write the LUT to the internal memory,
	 * we need to first make sure the dsp_lut_en bit is cleared.
	 */
	ret = readx_poll_timeout(vop_dsp_lut_is_enabled, vop,
				 idle, !idle, 5, 30 * 1000);
	if (ret) {
		DRM_DEV_ERROR(vop->dev, "display LUT RAM enable timeout!\n");
		return;
	}

	if (!state->gamma_lut)
		return;

	spin_lock(&vop->reg_lock);
	vop_crtc_write_gamma_lut(vop, crtc);
	VOP_REG_SET(vop, common, dsp_lut_en, 1);
	vop_cfg_done(vop);
	spin_unlock(&vop->reg_lock);
}

static void vop_crtc_atomic_begin(struct drm_crtc *crtc,
1259
				  struct drm_atomic_state *state)
1260
{
1261 1262
	struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
									  crtc);
1263 1264
	struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state,
									      crtc);
1265 1266 1267 1268 1269 1270
	struct vop *vop = to_vop(crtc);

	/*
	 * Only update GAMMA if the 'active' flag is not changed,
	 * otherwise it's updated by .atomic_enable.
	 */
1271 1272
	if (crtc_state->color_mgmt_changed &&
	    !crtc_state->active_changed)
1273 1274 1275
		vop_crtc_gamma_set(vop, crtc, old_crtc_state);
}

1276
static void vop_crtc_atomic_enable(struct drm_crtc *crtc,
1277
				   struct drm_atomic_state *state)
M
Mark Yao 已提交
1278
{
1279 1280
	struct drm_crtc_state *old_state = drm_atomic_get_old_crtc_state(state,
									 crtc);
M
Mark Yao 已提交
1281
	struct vop *vop = to_vop(crtc);
1282
	const struct vop_data *vop_data = vop->data;
1283
	struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc->state);
1284
	struct drm_display_mode *adjusted_mode = &crtc->state->adjusted_mode;
M
Mark Yao 已提交
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
	u16 hsync_len = adjusted_mode->hsync_end - adjusted_mode->hsync_start;
	u16 hdisplay = adjusted_mode->hdisplay;
	u16 htotal = adjusted_mode->htotal;
	u16 hact_st = adjusted_mode->htotal - adjusted_mode->hsync_start;
	u16 hact_end = hact_st + hdisplay;
	u16 vdisplay = adjusted_mode->vdisplay;
	u16 vtotal = adjusted_mode->vtotal;
	u16 vsync_len = adjusted_mode->vsync_end - adjusted_mode->vsync_start;
	u16 vact_st = adjusted_mode->vtotal - adjusted_mode->vsync_start;
	u16 vact_end = vact_st + vdisplay;
1295
	uint32_t pin_pol, val;
1296
	int dither_bpc = s->output_bpc ? s->output_bpc : 10;
1297
	int ret;
M
Mark Yao 已提交
1298

1299 1300 1301 1302 1303 1304
	if (old_state && old_state->self_refresh_active) {
		drm_crtc_vblank_on(crtc);
		rockchip_drm_set_win_enabled(crtc, true);
		return;
	}

1305 1306 1307 1308 1309 1310 1311 1312
	/*
	 * If we have a GAMMA LUT in the state, then let's make sure
	 * it's updated. We might be coming out of suspend,
	 * which means the LUT internal memory needs to be re-written.
	 */
	if (crtc->state->gamma_lut)
		vop_crtc_gamma_set(vop, crtc, old_state);

Z
zain wang 已提交
1313 1314
	mutex_lock(&vop->vop_lock);

1315 1316
	WARN_ON(vop->event);

1317
	ret = vop_enable(crtc, old_state);
1318
	if (ret) {
Z
zain wang 已提交
1319
		mutex_unlock(&vop->vop_lock);
1320 1321 1322
		DRM_DEV_ERROR(vop->dev, "Failed to enable vop (%d)\n", ret);
		return;
	}
1323
	pin_pol = (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC) ?
1324 1325 1326
		   BIT(HSYNC_POSITIVE) : 0;
	pin_pol |= (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC) ?
		   BIT(VSYNC_POSITIVE) : 0;
1327
	VOP_REG_SET(vop, output, pin_pol, pin_pol);
1328
	VOP_REG_SET(vop, output, mipi_dual_channel_en, 0);
1329

1330 1331
	switch (s->output_type) {
	case DRM_MODE_CONNECTOR_LVDS:
1332
		VOP_REG_SET(vop, output, rgb_dclk_pol, 1);
1333
		VOP_REG_SET(vop, output, rgb_pin_pol, pin_pol);
1334
		VOP_REG_SET(vop, output, rgb_en, 1);
1335 1336
		break;
	case DRM_MODE_CONNECTOR_eDP:
1337
		VOP_REG_SET(vop, output, edp_dclk_pol, 1);
1338 1339
		VOP_REG_SET(vop, output, edp_pin_pol, pin_pol);
		VOP_REG_SET(vop, output, edp_en, 1);
1340 1341
		break;
	case DRM_MODE_CONNECTOR_HDMIA:
1342
		VOP_REG_SET(vop, output, hdmi_dclk_pol, 1);
1343 1344
		VOP_REG_SET(vop, output, hdmi_pin_pol, pin_pol);
		VOP_REG_SET(vop, output, hdmi_en, 1);
1345 1346
		break;
	case DRM_MODE_CONNECTOR_DSI:
1347
		VOP_REG_SET(vop, output, mipi_dclk_pol, 1);
1348 1349
		VOP_REG_SET(vop, output, mipi_pin_pol, pin_pol);
		VOP_REG_SET(vop, output, mipi_en, 1);
1350 1351
		VOP_REG_SET(vop, output, mipi_dual_channel_en,
			    !!(s->output_flags & ROCKCHIP_OUTPUT_DSI_DUAL));
1352
		break;
1353
	case DRM_MODE_CONNECTOR_DisplayPort:
1354
		VOP_REG_SET(vop, output, dp_dclk_pol, 0);
1355 1356
		VOP_REG_SET(vop, output, dp_pin_pol, pin_pol);
		VOP_REG_SET(vop, output, dp_en, 1);
1357
		break;
1358
	default:
1359 1360
		DRM_DEV_ERROR(vop->dev, "unsupported connector_type [%d]\n",
			      s->output_type);
1361
	}
1362 1363 1364 1365 1366 1367 1368

	/*
	 * if vop is not support RGB10 output, need force RGB10 to RGB888.
	 */
	if (s->output_mode == ROCKCHIP_OUT_MODE_AAAA &&
	    !(vop_data->feature & VOP_FEATURE_OUTPUT_RGB10))
		s->output_mode = ROCKCHIP_OUT_MODE_P888;
1369

1370
	if (s->output_mode == ROCKCHIP_OUT_MODE_AAAA && dither_bpc <= 8)
1371 1372 1373 1374
		VOP_REG_SET(vop, common, pre_dither_down, 1);
	else
		VOP_REG_SET(vop, common, pre_dither_down, 0);

1375 1376 1377 1378 1379 1380 1381 1382
	if (dither_bpc == 6) {
		VOP_REG_SET(vop, common, dither_down_sel, DITHER_DOWN_ALLEGRO);
		VOP_REG_SET(vop, common, dither_down_mode, RGB888_TO_RGB666);
		VOP_REG_SET(vop, common, dither_down_en, 1);
	} else {
		VOP_REG_SET(vop, common, dither_down_en, 0);
	}

1383
	VOP_REG_SET(vop, common, out_mode, s->output_mode);
M
Mark Yao 已提交
1384

1385
	VOP_REG_SET(vop, modeset, htotal_pw, (htotal << 16) | hsync_len);
M
Mark Yao 已提交
1386 1387
	val = hact_st << 16;
	val |= hact_end;
1388 1389
	VOP_REG_SET(vop, modeset, hact_st_end, val);
	VOP_REG_SET(vop, modeset, hpost_st_end, val);
M
Mark Yao 已提交
1390

1391
	VOP_REG_SET(vop, modeset, vtotal_pw, (vtotal << 16) | vsync_len);
M
Mark Yao 已提交
1392 1393
	val = vact_st << 16;
	val |= vact_end;
1394 1395
	VOP_REG_SET(vop, modeset, vact_st_end, val);
	VOP_REG_SET(vop, modeset, vpost_st_end, val);
M
Mark Yao 已提交
1396

1397
	VOP_REG_SET(vop, intr, line_flag_num[0], vact_end);
1398

M
Mark Yao 已提交
1399
	clk_set_rate(vop->dclk, adjusted_mode->clock * 1000);
M
Mark Yao 已提交
1400

1401
	VOP_REG_SET(vop, common, standby, 0);
Z
zain wang 已提交
1402
	mutex_unlock(&vop->vop_lock);
M
Mark Yao 已提交
1403 1404
}

1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
static bool vop_fs_irq_is_pending(struct vop *vop)
{
	return VOP_INTR_GET_TYPE(vop, status, FS_INTR);
}

static void vop_wait_for_irq_handler(struct vop *vop)
{
	bool pending;
	int ret;

	/*
	 * Spin until frame start interrupt status bit goes low, which means
	 * that interrupt handler was invoked and cleared it. The timeout of
	 * 10 msecs is really too long, but it is just a safety measure if
	 * something goes really wrong. The wait will only happen in the very
	 * unlikely case of a vblank happening exactly at the same time and
	 * shouldn't exceed microseconds range.
	 */
	ret = readx_poll_timeout_atomic(vop_fs_irq_is_pending, vop, pending,
					!pending, 0, 10 * 1000);
	if (ret)
		DRM_DEV_ERROR(vop->dev, "VOP vblank IRQ stuck for 10 ms\n");

	synchronize_irq(vop->irq);
}

1431
static int vop_crtc_atomic_check(struct drm_crtc *crtc,
1432
				 struct drm_atomic_state *state)
1433
{
1434 1435
	struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
									  crtc);
1436
	struct vop *vop = to_vop(crtc);
1437 1438 1439 1440
	struct drm_plane *plane;
	struct drm_plane_state *plane_state;
	struct rockchip_crtc_state *s;
	int afbc_planes = 0;
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453

	if (vop->lut_regs && crtc_state->color_mgmt_changed &&
	    crtc_state->gamma_lut) {
		unsigned int len;

		len = drm_color_lut_size(crtc_state->gamma_lut);
		if (len != crtc->gamma_size) {
			DRM_DEBUG_KMS("Invalid LUT size; got %d, expected %d\n",
				      len, crtc->gamma_size);
			return -EINVAL;
		}
	}

1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474
	drm_atomic_crtc_state_for_each_plane(plane, crtc_state) {
		plane_state =
			drm_atomic_get_plane_state(crtc_state->state, plane);
		if (IS_ERR(plane_state)) {
			DRM_DEBUG_KMS("Cannot get plane state for plane %s\n",
				      plane->name);
			return PTR_ERR(plane_state);
		}

		if (drm_is_afbc(plane_state->fb->modifier))
			++afbc_planes;
	}

	if (afbc_planes > 1) {
		DRM_DEBUG_KMS("Invalid number of AFBC planes; got %d, expected at most 1\n", afbc_planes);
		return -EINVAL;
	}

	s = to_rockchip_crtc_state(crtc_state);
	s->enable_afbc = afbc_planes > 0;

1475 1476 1477
	return 0;
}

1478
static void vop_crtc_atomic_flush(struct drm_crtc *crtc,
1479
				  struct drm_atomic_state *state)
M
Mark Yao 已提交
1480
{
1481 1482
	struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state,
									      crtc);
1483
	struct drm_atomic_state *old_state = old_crtc_state->state;
1484
	struct drm_plane_state *old_plane_state, *new_plane_state;
M
Mark Yao 已提交
1485
	struct vop *vop = to_vop(crtc);
1486
	struct drm_plane *plane;
1487
	struct rockchip_crtc_state *s;
1488
	int i;
M
Mark Yao 已提交
1489

1490 1491
	if (WARN_ON(!vop->is_enabled))
		return;
M
Mark Yao 已提交
1492

1493
	spin_lock(&vop->reg_lock);
M
Mark Yao 已提交
1494

1495 1496 1497
	/* Enable AFBC if there is some AFBC window, disable otherwise. */
	s = to_rockchip_crtc_state(crtc->state);
	VOP_AFBC_SET(vop, enable, s->enable_afbc);
1498
	vop_cfg_done(vop);
M
Mark Yao 已提交
1499

1500
	spin_unlock(&vop->reg_lock);
1501 1502 1503 1504 1505 1506 1507

	/*
	 * There is a (rather unlikely) possiblity that a vblank interrupt
	 * fired before we set the cfg_done bit. To avoid spuriously
	 * signalling flip completion we need to wait for it to finish.
	 */
	vop_wait_for_irq_handler(vop);
1508

1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
	spin_lock_irq(&crtc->dev->event_lock);
	if (crtc->state->event) {
		WARN_ON(drm_crtc_vblank_get(crtc) != 0);
		WARN_ON(vop->event);

		vop->event = crtc->state->event;
		crtc->state->event = NULL;
	}
	spin_unlock_irq(&crtc->dev->event_lock);

1519 1520
	for_each_oldnew_plane_in_state(old_state, plane, old_plane_state,
				       new_plane_state, i) {
1521 1522 1523
		if (!old_plane_state->fb)
			continue;

1524
		if (old_plane_state->fb == new_plane_state->fb)
1525 1526
			continue;

1527
		drm_framebuffer_get(old_plane_state->fb);
J
John Keeping 已提交
1528
		WARN_ON(drm_crtc_vblank_get(crtc) != 0);
1529 1530 1531
		drm_flip_work_queue(&vop->fb_unref_work, old_plane_state->fb);
		set_bit(VOP_PENDING_FB_UNREF, &vop->pending);
	}
M
Mark Yao 已提交
1532 1533
}

1534 1535
static const struct drm_crtc_helper_funcs vop_crtc_helper_funcs = {
	.mode_fixup = vop_crtc_mode_fixup,
1536 1537
	.atomic_check = vop_crtc_atomic_check,
	.atomic_begin = vop_crtc_atomic_begin,
1538
	.atomic_flush = vop_crtc_atomic_flush,
1539
	.atomic_enable = vop_crtc_atomic_enable,
1540
	.atomic_disable = vop_crtc_atomic_disable,
1541 1542
};

M
Mark Yao 已提交
1543 1544 1545 1546 1547
static void vop_crtc_destroy(struct drm_crtc *crtc)
{
	drm_crtc_cleanup(crtc);
}

1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564
static struct drm_crtc_state *vop_crtc_duplicate_state(struct drm_crtc *crtc)
{
	struct rockchip_crtc_state *rockchip_state;

	rockchip_state = kzalloc(sizeof(*rockchip_state), GFP_KERNEL);
	if (!rockchip_state)
		return NULL;

	__drm_atomic_helper_crtc_duplicate_state(crtc, &rockchip_state->base);
	return &rockchip_state->base;
}

static void vop_crtc_destroy_state(struct drm_crtc *crtc,
				   struct drm_crtc_state *state)
{
	struct rockchip_crtc_state *s = to_rockchip_crtc_state(state);

1565
	__drm_atomic_helper_crtc_destroy_state(&s->base);
1566 1567 1568
	kfree(s);
}

1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
static void vop_crtc_reset(struct drm_crtc *crtc)
{
	struct rockchip_crtc_state *crtc_state =
		kzalloc(sizeof(*crtc_state), GFP_KERNEL);

	if (crtc->state)
		vop_crtc_destroy_state(crtc, crtc->state);

	__drm_atomic_helper_crtc_reset(crtc, &crtc_state->base);
}

1580
#ifdef CONFIG_DRM_ANALOGIX_DP
1581 1582 1583
static struct drm_connector *vop_get_edp_connector(struct vop *vop)
{
	struct drm_connector *connector;
1584
	struct drm_connector_list_iter conn_iter;
1585

1586 1587
	drm_connector_list_iter_begin(vop->drm_dev, &conn_iter);
	drm_for_each_connector_iter(connector, &conn_iter) {
1588
		if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) {
1589
			drm_connector_list_iter_end(&conn_iter);
1590 1591
			return connector;
		}
1592 1593
	}
	drm_connector_list_iter_end(&conn_iter);
1594 1595 1596 1597 1598

	return NULL;
}

static int vop_crtc_set_crc_source(struct drm_crtc *crtc,
1599
				   const char *source_name)
1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617
{
	struct vop *vop = to_vop(crtc);
	struct drm_connector *connector;
	int ret;

	connector = vop_get_edp_connector(vop);
	if (!connector)
		return -EINVAL;

	if (source_name && strcmp(source_name, "auto") == 0)
		ret = analogix_dp_start_crc(connector);
	else if (!source_name)
		ret = analogix_dp_stop_crc(connector);
	else
		ret = -EINVAL;

	return ret;
}
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629

static int
vop_crtc_verify_crc_source(struct drm_crtc *crtc, const char *source_name,
			   size_t *values_cnt)
{
	if (source_name && strcmp(source_name, "auto") != 0)
		return -EINVAL;

	*values_cnt = 3;
	return 0;
}

1630 1631
#else
static int vop_crtc_set_crc_source(struct drm_crtc *crtc,
1632
				   const char *source_name)
1633 1634 1635
{
	return -ENODEV;
}
1636 1637 1638 1639 1640 1641 1642

static int
vop_crtc_verify_crc_source(struct drm_crtc *crtc, const char *source_name,
			   size_t *values_cnt)
{
	return -ENODEV;
}
1643
#endif
1644

M
Mark Yao 已提交
1645
static const struct drm_crtc_funcs vop_crtc_funcs = {
1646 1647
	.set_config = drm_atomic_helper_set_config,
	.page_flip = drm_atomic_helper_page_flip,
M
Mark Yao 已提交
1648
	.destroy = vop_crtc_destroy,
1649
	.reset = vop_crtc_reset,
1650 1651
	.atomic_duplicate_state = vop_crtc_duplicate_state,
	.atomic_destroy_state = vop_crtc_destroy_state,
1652 1653
	.enable_vblank = vop_crtc_enable_vblank,
	.disable_vblank = vop_crtc_disable_vblank,
1654
	.set_crc_source = vop_crtc_set_crc_source,
1655
	.verify_crc_source = vop_crtc_verify_crc_source,
M
Mark Yao 已提交
1656 1657
};

1658 1659 1660 1661 1662 1663
static void vop_fb_unref_worker(struct drm_flip_work *work, void *val)
{
	struct vop *vop = container_of(work, struct vop, fb_unref_work);
	struct drm_framebuffer *fb = val;

	drm_crtc_vblank_put(&vop->crtc);
1664
	drm_framebuffer_put(fb);
1665 1666
}

1667
static void vop_handle_vblank(struct vop *vop)
M
Mark Yao 已提交
1668
{
1669 1670
	struct drm_device *drm = vop->drm_dev;
	struct drm_crtc *crtc = &vop->crtc;
M
Mark Yao 已提交
1671

1672
	spin_lock(&drm->event_lock);
1673 1674
	if (vop->event) {
		drm_crtc_send_vblank_event(crtc, vop->event);
1675
		drm_crtc_vblank_put(crtc);
1676
		vop->event = NULL;
1677
	}
1678
	spin_unlock(&drm->event_lock);
1679

1680 1681
	if (test_and_clear_bit(VOP_PENDING_FB_UNREF, &vop->pending))
		drm_flip_work_commit(&vop->fb_unref_work, system_unbound_wq);
M
Mark Yao 已提交
1682 1683 1684 1685 1686
}

static irqreturn_t vop_isr(int irq, void *data)
{
	struct vop *vop = data;
1687
	struct drm_crtc *crtc = &vop->crtc;
1688
	uint32_t active_irqs;
1689
	int ret = IRQ_NONE;
M
Mark Yao 已提交
1690

1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
	/*
	 * The irq is shared with the iommu. If the runtime-pm state of the
	 * vop-device is disabled the irq has to be targeted at the iommu.
	 */
	if (!pm_runtime_get_if_in_use(vop->dev))
		return IRQ_NONE;

	if (vop_core_clks_enable(vop)) {
		DRM_DEV_ERROR_RATELIMITED(vop->dev, "couldn't enable clocks\n");
		goto out;
	}

M
Mark Yao 已提交
1703
	/*
1704
	 * interrupt register has interrupt status, enable and clear bits, we
M
Mark Yao 已提交
1705 1706
	 * must hold irq_lock to avoid a race with enable/disable_vblank().
	*/
1707
	spin_lock(&vop->irq_lock);
1708 1709

	active_irqs = VOP_INTR_GET_TYPE(vop, status, INTR_MASK);
M
Mark Yao 已提交
1710 1711
	/* Clear all active interrupt sources */
	if (active_irqs)
1712 1713
		VOP_INTR_SET_TYPE(vop, clear, active_irqs, 1);

1714
	spin_unlock(&vop->irq_lock);
M
Mark Yao 已提交
1715 1716 1717

	/* This is expected for vop iommu irqs, since the irq is shared */
	if (!active_irqs)
1718
		goto out_disable;
M
Mark Yao 已提交
1719

1720 1721 1722 1723
	if (active_irqs & DSP_HOLD_VALID_INTR) {
		complete(&vop->dsp_hold_completion);
		active_irqs &= ~DSP_HOLD_VALID_INTR;
		ret = IRQ_HANDLED;
M
Mark Yao 已提交
1724 1725
	}

1726 1727 1728 1729 1730 1731
	if (active_irqs & LINE_FLAG_INTR) {
		complete(&vop->line_flag_completion);
		active_irqs &= ~LINE_FLAG_INTR;
		ret = IRQ_HANDLED;
	}

1732
	if (active_irqs & FS_INTR) {
1733
		drm_crtc_handle_vblank(crtc);
1734
		vop_handle_vblank(vop);
1735
		active_irqs &= ~FS_INTR;
1736
		ret = IRQ_HANDLED;
1737
	}
M
Mark Yao 已提交
1738

1739 1740
	/* Unhandled irqs are spurious. */
	if (active_irqs)
1741 1742
		DRM_DEV_ERROR(vop->dev, "Unknown VOP IRQs: %#02x\n",
			      active_irqs);
1743

1744 1745 1746 1747
out_disable:
	vop_core_clks_disable(vop);
out:
	pm_runtime_put(vop->dev);
1748
	return ret;
M
Mark Yao 已提交
1749 1750
}

1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
static void vop_plane_add_properties(struct drm_plane *plane,
				     const struct vop_win_data *win_data)
{
	unsigned int flags = 0;

	flags |= VOP_WIN_HAS_REG(win_data, x_mir_en) ? DRM_MODE_REFLECT_X : 0;
	flags |= VOP_WIN_HAS_REG(win_data, y_mir_en) ? DRM_MODE_REFLECT_Y : 0;
	if (flags)
		drm_plane_create_rotation_property(plane, DRM_MODE_ROTATE_0,
						   DRM_MODE_ROTATE_0 | flags);
}

M
Mark Yao 已提交
1763 1764 1765 1766 1767
static int vop_create_crtc(struct vop *vop)
{
	const struct vop_data *vop_data = vop->data;
	struct device *dev = vop->dev;
	struct drm_device *drm_dev = vop->drm_dev;
1768
	struct drm_plane *primary = NULL, *cursor = NULL, *plane, *tmp;
M
Mark Yao 已提交
1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
	struct drm_crtc *crtc = &vop->crtc;
	struct device_node *port;
	int ret;
	int i;

	/*
	 * Create drm_plane for primary and cursor planes first, since we need
	 * to pass them to drm_crtc_init_with_planes, which sets the
	 * "possible_crtcs" to the newly initialized crtc.
	 */
	for (i = 0; i < vop_data->win_size; i++) {
		struct vop_win *vop_win = &vop->win[i];
		const struct vop_win_data *win_data = vop_win->data;

		if (win_data->type != DRM_PLANE_TYPE_PRIMARY &&
		    win_data->type != DRM_PLANE_TYPE_CURSOR)
			continue;

		ret = drm_universal_plane_init(vop->drm_dev, &vop_win->base,
					       0, &vop_plane_funcs,
					       win_data->phy->data_formats,
					       win_data->phy->nformats,
1791 1792
					       win_data->phy->format_modifiers,
					       win_data->type, NULL);
M
Mark Yao 已提交
1793
		if (ret) {
1794 1795
			DRM_DEV_ERROR(vop->dev, "failed to init plane %d\n",
				      ret);
M
Mark Yao 已提交
1796 1797 1798 1799
			goto err_cleanup_planes;
		}

		plane = &vop_win->base;
1800
		drm_plane_helper_add(plane, &plane_helper_funcs);
1801
		vop_plane_add_properties(plane, win_data);
M
Mark Yao 已提交
1802 1803 1804 1805 1806 1807 1808
		if (plane->type == DRM_PLANE_TYPE_PRIMARY)
			primary = plane;
		else if (plane->type == DRM_PLANE_TYPE_CURSOR)
			cursor = plane;
	}

	ret = drm_crtc_init_with_planes(drm_dev, crtc, primary, cursor,
1809
					&vop_crtc_funcs, NULL);
M
Mark Yao 已提交
1810
	if (ret)
1811
		goto err_cleanup_planes;
M
Mark Yao 已提交
1812 1813

	drm_crtc_helper_add(crtc, &vop_crtc_helper_funcs);
1814 1815 1816 1817
	if (vop->lut_regs) {
		drm_mode_crtc_set_gamma_size(crtc, vop_data->lut_size);
		drm_crtc_enable_color_mgmt(crtc, 0, false, vop_data->lut_size);
	}
M
Mark Yao 已提交
1818 1819 1820 1821 1822 1823 1824 1825

	/*
	 * Create drm_planes for overlay windows with possible_crtcs restricted
	 * to the newly created crtc.
	 */
	for (i = 0; i < vop_data->win_size; i++) {
		struct vop_win *vop_win = &vop->win[i];
		const struct vop_win_data *win_data = vop_win->data;
1826
		unsigned long possible_crtcs = drm_crtc_mask(crtc);
M
Mark Yao 已提交
1827 1828 1829 1830 1831 1832 1833 1834 1835

		if (win_data->type != DRM_PLANE_TYPE_OVERLAY)
			continue;

		ret = drm_universal_plane_init(vop->drm_dev, &vop_win->base,
					       possible_crtcs,
					       &vop_plane_funcs,
					       win_data->phy->data_formats,
					       win_data->phy->nformats,
1836 1837
					       win_data->phy->format_modifiers,
					       win_data->type, NULL);
M
Mark Yao 已提交
1838
		if (ret) {
1839 1840
			DRM_DEV_ERROR(vop->dev, "failed to init overlay %d\n",
				      ret);
M
Mark Yao 已提交
1841 1842
			goto err_cleanup_crtc;
		}
1843
		drm_plane_helper_add(&vop_win->base, &plane_helper_funcs);
1844
		vop_plane_add_properties(&vop_win->base, win_data);
M
Mark Yao 已提交
1845 1846 1847 1848
	}

	port = of_get_child_by_name(dev->of_node, "port");
	if (!port) {
1849 1850
		DRM_DEV_ERROR(vop->dev, "no port node found in %pOF\n",
			      dev->of_node);
1851
		ret = -ENOENT;
M
Mark Yao 已提交
1852 1853 1854
		goto err_cleanup_crtc;
	}

1855 1856 1857
	drm_flip_work_init(&vop->fb_unref_work, "fb_unref",
			   vop_fb_unref_worker);

1858
	init_completion(&vop->dsp_hold_completion);
1859
	init_completion(&vop->line_flag_completion);
M
Mark Yao 已提交
1860 1861
	crtc->port = port;

1862
	ret = drm_self_refresh_helper_init(crtc);
1863 1864 1865 1866 1867
	if (ret)
		DRM_DEV_DEBUG_KMS(vop->dev,
			"Failed to init %s with SR helpers %d, ignoring\n",
			crtc->name, ret);

M
Mark Yao 已提交
1868 1869 1870 1871 1872
	return 0;

err_cleanup_crtc:
	drm_crtc_cleanup(crtc);
err_cleanup_planes:
1873 1874
	list_for_each_entry_safe(plane, tmp, &drm_dev->mode_config.plane_list,
				 head)
M
Mark Yao 已提交
1875 1876 1877 1878 1879 1880 1881
		drm_plane_cleanup(plane);
	return ret;
}

static void vop_destroy_crtc(struct vop *vop)
{
	struct drm_crtc *crtc = &vop->crtc;
1882 1883
	struct drm_device *drm_dev = vop->drm_dev;
	struct drm_plane *plane, *tmp;
M
Mark Yao 已提交
1884

1885 1886
	drm_self_refresh_helper_cleanup(crtc);

M
Mark Yao 已提交
1887
	of_node_put(crtc->port);
1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904

	/*
	 * We need to cleanup the planes now.  Why?
	 *
	 * The planes are "&vop->win[i].base".  That means the memory is
	 * all part of the big "struct vop" chunk of memory.  That memory
	 * was devm allocated and associated with this component.  We need to
	 * free it ourselves before vop_unbind() finishes.
	 */
	list_for_each_entry_safe(plane, tmp, &drm_dev->mode_config.plane_list,
				 head)
		vop_plane_destroy(plane);

	/*
	 * Destroy CRTC after vop_plane_destroy() since vop_disable_plane()
	 * references the CRTC.
	 */
M
Mark Yao 已提交
1905
	drm_crtc_cleanup(crtc);
1906
	drm_flip_work_cleanup(&vop->fb_unref_work);
M
Mark Yao 已提交
1907 1908 1909 1910 1911 1912 1913 1914 1915
}

static int vop_initial(struct vop *vop)
{
	struct reset_control *ahb_rst;
	int i, ret;

	vop->hclk = devm_clk_get(vop->dev, "hclk_vop");
	if (IS_ERR(vop->hclk)) {
1916
		DRM_DEV_ERROR(vop->dev, "failed to get hclk source\n");
M
Mark Yao 已提交
1917 1918 1919 1920
		return PTR_ERR(vop->hclk);
	}
	vop->aclk = devm_clk_get(vop->dev, "aclk_vop");
	if (IS_ERR(vop->aclk)) {
1921
		DRM_DEV_ERROR(vop->dev, "failed to get aclk source\n");
M
Mark Yao 已提交
1922 1923 1924 1925
		return PTR_ERR(vop->aclk);
	}
	vop->dclk = devm_clk_get(vop->dev, "dclk_vop");
	if (IS_ERR(vop->dclk)) {
1926
		DRM_DEV_ERROR(vop->dev, "failed to get dclk source\n");
M
Mark Yao 已提交
1927 1928 1929
		return PTR_ERR(vop->dclk);
	}

1930 1931
	ret = pm_runtime_get_sync(vop->dev);
	if (ret < 0) {
1932
		DRM_DEV_ERROR(vop->dev, "failed to get pm runtime: %d\n", ret);
1933 1934 1935
		return ret;
	}

M
Mark Yao 已提交
1936 1937
	ret = clk_prepare(vop->dclk);
	if (ret < 0) {
1938
		DRM_DEV_ERROR(vop->dev, "failed to prepare dclk\n");
1939
		goto err_put_pm_runtime;
M
Mark Yao 已提交
1940 1941
	}

1942 1943
	/* Enable both the hclk and aclk to setup the vop */
	ret = clk_prepare_enable(vop->hclk);
M
Mark Yao 已提交
1944
	if (ret < 0) {
1945
		DRM_DEV_ERROR(vop->dev, "failed to prepare/enable hclk\n");
M
Mark Yao 已提交
1946 1947 1948
		goto err_unprepare_dclk;
	}

1949
	ret = clk_prepare_enable(vop->aclk);
M
Mark Yao 已提交
1950
	if (ret < 0) {
1951
		DRM_DEV_ERROR(vop->dev, "failed to prepare/enable aclk\n");
1952
		goto err_disable_hclk;
M
Mark Yao 已提交
1953
	}
1954

M
Mark Yao 已提交
1955 1956 1957 1958 1959
	/*
	 * do hclk_reset, reset all vop registers.
	 */
	ahb_rst = devm_reset_control_get(vop->dev, "ahb");
	if (IS_ERR(ahb_rst)) {
1960
		DRM_DEV_ERROR(vop->dev, "failed to get ahb reset\n");
M
Mark Yao 已提交
1961
		ret = PTR_ERR(ahb_rst);
1962
		goto err_disable_aclk;
M
Mark Yao 已提交
1963 1964 1965 1966 1967
	}
	reset_control_assert(ahb_rst);
	usleep_range(10, 20);
	reset_control_deassert(ahb_rst);

1968 1969 1970
	VOP_INTR_SET_TYPE(vop, clear, INTR_MASK, 1);
	VOP_INTR_SET_TYPE(vop, enable, INTR_MASK, 0);

1971 1972
	for (i = 0; i < vop->len; i += sizeof(u32))
		vop->regsbak[i / 4] = readl_relaxed(vop->regs + i);
M
Mark Yao 已提交
1973

1974 1975
	VOP_REG_SET(vop, misc, global_regdone_en, 1);
	VOP_REG_SET(vop, common, dsp_blank, 0);
M
Mark Yao 已提交
1976

1977 1978 1979
	for (i = 0; i < vop->data->win_size; i++) {
		struct vop_win *vop_win = &vop->win[i];
		const struct vop_win_data *win = vop_win->data;
1980
		int channel = i * 2 + 1;
M
Mark Yao 已提交
1981

1982
		VOP_WIN_SET(vop, win, channel, (channel + 1) << 4 | channel);
1983
		vop_win_disable(vop, vop_win);
1984
		VOP_WIN_SET(vop, win, gate, 1);
M
Mark Yao 已提交
1985 1986 1987 1988 1989 1990 1991 1992 1993
	}

	vop_cfg_done(vop);

	/*
	 * do dclk_reset, let all config take affect.
	 */
	vop->dclk_rst = devm_reset_control_get(vop->dev, "dclk");
	if (IS_ERR(vop->dclk_rst)) {
1994
		DRM_DEV_ERROR(vop->dev, "failed to get dclk reset\n");
M
Mark Yao 已提交
1995
		ret = PTR_ERR(vop->dclk_rst);
1996
		goto err_disable_aclk;
M
Mark Yao 已提交
1997 1998 1999 2000 2001 2002
	}
	reset_control_assert(vop->dclk_rst);
	usleep_range(10, 20);
	reset_control_deassert(vop->dclk_rst);

	clk_disable(vop->hclk);
2003
	clk_disable(vop->aclk);
M
Mark Yao 已提交
2004

2005
	vop->is_enabled = false;
M
Mark Yao 已提交
2006

2007 2008
	pm_runtime_put_sync(vop->dev);

M
Mark Yao 已提交
2009 2010
	return 0;

2011 2012
err_disable_aclk:
	clk_disable_unprepare(vop->aclk);
M
Mark Yao 已提交
2013
err_disable_hclk:
2014
	clk_disable_unprepare(vop->hclk);
M
Mark Yao 已提交
2015 2016
err_unprepare_dclk:
	clk_unprepare(vop->dclk);
2017 2018
err_put_pm_runtime:
	pm_runtime_put_sync(vop->dev);
M
Mark Yao 已提交
2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035
	return ret;
}

/*
 * Initialize the vop->win array elements.
 */
static void vop_win_init(struct vop *vop)
{
	const struct vop_data *vop_data = vop->data;
	unsigned int i;

	for (i = 0; i < vop_data->win_size; i++) {
		struct vop_win *vop_win = &vop->win[i];
		const struct vop_win_data *win_data = &vop_data->win[i];

		vop_win->data = win_data;
		vop_win->vop = vop;
2036 2037 2038

		if (vop_data->win_yuv2yuv)
			vop_win->yuv2yuv_data = &vop_data->win_yuv2yuv[i];
M
Mark Yao 已提交
2039 2040 2041
	}
}

2042
/**
2043
 * rockchip_drm_wait_vact_end
2044 2045 2046
 * @crtc: CRTC to enable line flag
 * @mstimeout: millisecond for timeout
 *
2047
 * Wait for vact_end line flag irq or timeout.
2048 2049 2050 2051
 *
 * Returns:
 * Zero on success, negative errno on failure.
 */
2052
int rockchip_drm_wait_vact_end(struct drm_crtc *crtc, unsigned int mstimeout)
2053 2054 2055
{
	struct vop *vop = to_vop(crtc);
	unsigned long jiffies_left;
Z
zain wang 已提交
2056
	int ret = 0;
2057 2058 2059 2060

	if (!crtc || !vop->is_enabled)
		return -ENODEV;

Z
zain wang 已提交
2061 2062 2063 2064 2065
	mutex_lock(&vop->vop_lock);
	if (mstimeout <= 0) {
		ret = -EINVAL;
		goto out;
	}
2066

Z
zain wang 已提交
2067 2068 2069 2070
	if (vop_line_flag_irq_is_enabled(vop)) {
		ret = -EBUSY;
		goto out;
	}
2071 2072

	reinit_completion(&vop->line_flag_completion);
2073
	vop_line_flag_irq_enable(vop);
2074 2075 2076 2077 2078 2079

	jiffies_left = wait_for_completion_timeout(&vop->line_flag_completion,
						   msecs_to_jiffies(mstimeout));
	vop_line_flag_irq_disable(vop);

	if (jiffies_left == 0) {
2080
		DRM_DEV_ERROR(vop->dev, "Timeout waiting for IRQ\n");
Z
zain wang 已提交
2081 2082
		ret = -ETIMEDOUT;
		goto out;
2083 2084
	}

Z
zain wang 已提交
2085 2086 2087
out:
	mutex_unlock(&vop->vop_lock);
	return ret;
2088
}
2089
EXPORT_SYMBOL(rockchip_drm_wait_vact_end);
2090

M
Mark Yao 已提交
2091 2092 2093 2094 2095 2096 2097
static int vop_bind(struct device *dev, struct device *master, void *data)
{
	struct platform_device *pdev = to_platform_device(dev);
	const struct vop_data *vop_data;
	struct drm_device *drm_dev = data;
	struct vop *vop;
	struct resource *res;
2098
	int ret, irq;
M
Mark Yao 已提交
2099

2100
	vop_data = of_device_get_match_data(dev);
M
Mark Yao 已提交
2101 2102 2103 2104
	if (!vop_data)
		return -ENODEV;

	/* Allocate vop struct and its vop_win array */
2105 2106
	vop = devm_kzalloc(dev, struct_size(vop, win, vop_data->win_size),
			   GFP_KERNEL);
M
Mark Yao 已提交
2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122
	if (!vop)
		return -ENOMEM;

	vop->dev = dev;
	vop->data = vop_data;
	vop->drm_dev = drm_dev;
	dev_set_drvdata(dev, vop);

	vop_win_init(vop);

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	vop->len = resource_size(res);
	vop->regs = devm_ioremap_resource(dev, res);
	if (IS_ERR(vop->regs))
		return PTR_ERR(vop->regs);

2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133
	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	if (res) {
		if (!vop_data->lut_size) {
			DRM_DEV_ERROR(dev, "no gamma LUT size defined\n");
			return -EINVAL;
		}
		vop->lut_regs = devm_ioremap_resource(dev, res);
		if (IS_ERR(vop->lut_regs))
			return PTR_ERR(vop->lut_regs);
	}

M
Mark Yao 已提交
2134 2135 2136 2137
	vop->regsbak = devm_kzalloc(dev, vop->len, GFP_KERNEL);
	if (!vop->regsbak)
		return -ENOMEM;

2138 2139
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
2140
		DRM_DEV_ERROR(dev, "cannot find irq for vop\n");
2141
		return irq;
M
Mark Yao 已提交
2142
	}
2143
	vop->irq = (unsigned int)irq;
M
Mark Yao 已提交
2144 2145 2146

	spin_lock_init(&vop->reg_lock);
	spin_lock_init(&vop->irq_lock);
Z
zain wang 已提交
2147
	mutex_init(&vop->vop_lock);
M
Mark Yao 已提交
2148 2149 2150

	ret = vop_create_crtc(vop);
	if (ret)
2151
		return ret;
M
Mark Yao 已提交
2152 2153

	pm_runtime_enable(&pdev->dev);
2154

2155 2156
	ret = vop_initial(vop);
	if (ret < 0) {
2157 2158
		DRM_DEV_ERROR(&pdev->dev,
			      "cannot initial vop dev - err %d\n", ret);
2159 2160 2161
		goto err_disable_pm_runtime;
	}

2162 2163 2164 2165 2166
	ret = devm_request_irq(dev, vop->irq, vop_isr,
			       IRQF_SHARED, dev_name(dev), vop);
	if (ret)
		goto err_disable_pm_runtime;

2167 2168 2169 2170 2171 2172 2173 2174
	if (vop->data->feature & VOP_FEATURE_INTERNAL_RGB) {
		vop->rgb = rockchip_rgb_init(dev, &vop->crtc, vop->drm_dev);
		if (IS_ERR(vop->rgb)) {
			ret = PTR_ERR(vop->rgb);
			goto err_disable_pm_runtime;
		}
	}

M
Mark Yao 已提交
2175
	return 0;
2176

2177 2178 2179
err_disable_pm_runtime:
	pm_runtime_disable(&pdev->dev);
	vop_destroy_crtc(vop);
2180
	return ret;
M
Mark Yao 已提交
2181 2182 2183 2184 2185 2186
}

static void vop_unbind(struct device *dev, struct device *master, void *data)
{
	struct vop *vop = dev_get_drvdata(dev);

2187 2188 2189
	if (vop->rgb)
		rockchip_rgb_fini(vop->rgb);

M
Mark Yao 已提交
2190 2191
	pm_runtime_disable(dev);
	vop_destroy_crtc(vop);
2192 2193 2194 2195

	clk_unprepare(vop->aclk);
	clk_unprepare(vop->hclk);
	clk_unprepare(vop->dclk);
M
Mark Yao 已提交
2196 2197
}

2198
const struct component_ops vop_component_ops = {
M
Mark Yao 已提交
2199 2200 2201
	.bind = vop_bind,
	.unbind = vop_unbind,
};
2202
EXPORT_SYMBOL_GPL(vop_component_ops);