rockchip_drm_vop.c 42.5 KB
Newer Older
M
Mark Yao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
 * Author:Mark Yao <mark.yao@rock-chips.com>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <drm/drm.h>
#include <drm/drmP.h>
17
#include <drm/drm_atomic.h>
M
Mark Yao 已提交
18 19
#include <drm/drm_crtc.h>
#include <drm/drm_crtc_helper.h>
20
#include <drm/drm_flip_work.h>
M
Mark Yao 已提交
21
#include <drm/drm_plane_helper.h>
22
#ifdef CONFIG_DRM_ANALOGIX_DP
23
#include <drm/bridge/analogix_dp.h>
24
#endif
M
Mark Yao 已提交
25 26

#include <linux/kernel.h>
27
#include <linux/module.h>
M
Mark Yao 已提交
28 29
#include <linux/platform_device.h>
#include <linux/clk.h>
30
#include <linux/iopoll.h>
M
Mark Yao 已提交
31 32 33 34 35 36 37 38 39 40 41
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/pm_runtime.h>
#include <linux/component.h>

#include <linux/reset.h>
#include <linux/delay.h>

#include "rockchip_drm_drv.h"
#include "rockchip_drm_gem.h"
#include "rockchip_drm_fb.h"
42
#include "rockchip_drm_psr.h"
M
Mark Yao 已提交
43 44
#include "rockchip_drm_vop.h"

45 46 47 48 49
#define __REG_SET_RELAXED(x, off, mask, shift, v, write_mask) \
		vop_mask_write(x, off, mask, shift, v, write_mask, true)

#define __REG_SET_NORMAL(x, off, mask, shift, v, write_mask) \
		vop_mask_write(x, off, mask, shift, v, write_mask, false)
M
Mark Yao 已提交
50 51

#define REG_SET(x, base, reg, v, mode) \
52 53
		__REG_SET_##mode(x, base + reg.offset, \
				 reg.mask, reg.shift, v, reg.write_mask)
54
#define REG_SET_MASK(x, base, reg, mask, v, mode) \
55 56
		__REG_SET_##mode(x, base + reg.offset, \
				 mask, reg.shift, v, reg.write_mask)
M
Mark Yao 已提交
57 58 59

#define VOP_WIN_SET(x, win, name, v) \
		REG_SET(x, win->base, win->phy->name, v, RELAXED)
60 61
#define VOP_SCL_SET(x, win, name, v) \
		REG_SET(x, win->base, win->phy->scl->name, v, RELAXED)
M
Mark Yao 已提交
62 63
#define VOP_SCL_SET_EXT(x, win, name, v) \
		REG_SET(x, win->base, win->phy->scl->ext->name, v, RELAXED)
M
Mark Yao 已提交
64 65 66
#define VOP_CTRL_SET(x, name, v) \
		REG_SET(x, 0, (x)->data->ctrl->name, v, NORMAL)

67 68 69
#define VOP_INTR_GET(vop, name) \
		vop_read_reg(vop, 0, &vop->data->ctrl->name)

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

M
Mark Yao 已提交
86 87 88 89 90 91 92 93 94
#define VOP_WIN_GET(x, win, name) \
		vop_read_reg(x, win->base, &win->phy->name)

#define VOP_WIN_GET_YRGBADDR(vop, win) \
		vop_readl(vop, win->base + win->phy->yrgb_mst.offset)

#define to_vop(x) container_of(x, struct vop, crtc)
#define to_vop_win(x) container_of(x, struct vop_win, base)

95 96 97 98
enum vop_pending {
	VOP_PENDING_FB_UNREF,
};

M
Mark Yao 已提交
99 100 101 102 103 104 105 106 107 108
struct vop_win {
	struct drm_plane base;
	const struct vop_win_data *data;
	struct vop *vop;
};

struct vop {
	struct drm_crtc crtc;
	struct device *dev;
	struct drm_device *drm_dev;
109
	bool is_enabled;
M
Mark Yao 已提交
110 111 112 113

	/* mutex vsync_ work */
	struct mutex vsync_mutex;
	bool vsync_work_pending;
114
	struct completion dsp_hold_completion;
115 116

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

119 120 121
	struct drm_flip_work fb_unref_work;
	unsigned long pending;

122 123
	struct completion line_flag_completion;

M
Mark Yao 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
	const struct vop_data *data;

	uint32_t *regsbak;
	void __iomem *regs;

	/* 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;

	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;

	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;
}

static inline void vop_mask_write(struct vop *vop, uint32_t offset,
170 171
				  uint32_t mask, uint32_t shift, uint32_t v,
				  bool write_mask, bool relaxed)
M
Mark Yao 已提交
172
{
173 174
	if (!mask)
		return;
M
Mark Yao 已提交
175

176 177 178
	if (write_mask) {
		v = ((v << shift) & 0xffff) | (mask << (shift + 16));
	} else {
M
Mark Yao 已提交
179 180
		uint32_t cached_val = vop->regsbak[offset >> 2];

181 182
		v = (cached_val & ~(mask << shift)) | ((v & mask) << shift);
		vop->regsbak[offset >> 2] = v;
M
Mark Yao 已提交
183
	}
184 185 186 187 188

	if (relaxed)
		writel_relaxed(v, vop->regs + offset);
	else
		writel(v, vop->regs + offset);
M
Mark Yao 已提交
189 190
}

191 192 193 194 195 196 197 198 199 200 201 202 203 204
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;
}

205 206 207 208 209
static inline void vop_cfg_done(struct vop *vop)
{
	VOP_CTRL_SET(vop, cfg_done, 1);
}

210 211 212 213 214 215 216 217 218 219 220 221 222
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 已提交
223 224 225 226 227
static enum vop_data_format vop_convert_format(uint32_t format)
{
	switch (format) {
	case DRM_FORMAT_XRGB8888:
	case DRM_FORMAT_ARGB8888:
228 229
	case DRM_FORMAT_XBGR8888:
	case DRM_FORMAT_ABGR8888:
M
Mark Yao 已提交
230 231
		return VOP_FMT_ARGB8888;
	case DRM_FORMAT_RGB888:
232
	case DRM_FORMAT_BGR888:
M
Mark Yao 已提交
233 234
		return VOP_FMT_RGB888;
	case DRM_FORMAT_RGB565:
235
	case DRM_FORMAT_BGR565:
M
Mark Yao 已提交
236 237 238 239 240 241 242 243
		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:
244
		DRM_ERROR("unsupported format[%08x]\n", format);
M
Mark Yao 已提交
245 246 247 248
		return -EINVAL;
	}
}

249 250 251 252 253 254 255 256 257 258 259 260
static bool is_yuv_support(uint32_t format)
{
	switch (format) {
	case DRM_FORMAT_NV12:
	case DRM_FORMAT_NV16:
	case DRM_FORMAT_NV24:
		return true;
	default:
		return false;
	}
}

M
Mark Yao 已提交
261 262 263 264
static bool is_alpha_support(uint32_t format)
{
	switch (format) {
	case DRM_FORMAT_ARGB8888:
265
	case DRM_FORMAT_ABGR8888:
M
Mark Yao 已提交
266 267 268 269 270 271
		return true;
	default:
		return false;
	}
}

272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
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;

	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,
			     uint32_t dst_h, uint32_t pixel_format)
{
	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;
	int hsub = drm_format_horz_chroma_subsampling(pixel_format);
	int vsub = drm_format_vert_chroma_subsampling(pixel_format);
	bool is_yuv = is_yuv_support(pixel_format);
	uint16_t cbcr_src_w = src_w / hsub;
	uint16_t cbcr_src_h = src_h / vsub;
	uint16_t vsu_mode;
	uint16_t lb_mode;
	uint32_t val;
318
	int vskiplines = 0;
319 320

	if (dst_w > 3840) {
321
		DRM_DEV_ERROR(vop->dev, "Maximum dst width (3840) exceeded\n");
322 323 324
		return;
	}

M
Mark Yao 已提交
325 326 327 328 329 330 331
	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,
332
				    scl_cal_scale2(cbcr_src_w, dst_w));
M
Mark Yao 已提交
333
			VOP_SCL_SET(vop, win, scale_cbcr_y,
334
				    scl_cal_scale2(cbcr_src_h, dst_h));
M
Mark Yao 已提交
335 336 337 338
		}
		return;
	}

339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
	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 已提交
356
	VOP_SCL_SET_EXT(vop, win, lb_mode, lb_mode);
357 358
	if (lb_mode == LB_RGB_3840X2) {
		if (yrgb_ver_scl_mode != SCALE_NONE) {
359
			DRM_DEV_ERROR(vop->dev, "not allow yrgb ver scale\n");
360 361 362
			return;
		}
		if (cbcr_ver_scl_mode != SCALE_NONE) {
363
			DRM_DEV_ERROR(vop->dev, "not allow cbcr ver scale\n");
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
			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 已提交
380 381
	VOP_SCL_SET_EXT(vop, win, vsd_yrgb_gt4, vskiplines == 4);
	VOP_SCL_SET_EXT(vop, win, vsd_yrgb_gt2, vskiplines == 2);
382

M
Mark Yao 已提交
383 384 385 386 387
	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);
388 389 390 391 392 393 394 395
	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 已提交
396 397 398 399 400 401 402
		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);
403 404 405
	}
}

406 407 408 409 410 411 412 413 414
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);

415
	VOP_INTR_SET_TYPE(vop, clear, DSP_HOLD_VALID_INTR, 1);
416
	VOP_INTR_SET_TYPE(vop, enable, DSP_HOLD_VALID_INTR, 1);
417 418 419 420 421 422 423 424 425 426 427 428 429

	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);

430
	VOP_INTR_SET_TYPE(vop, enable, DSP_HOLD_VALID_INTR, 0);
431 432 433 434

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

435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
/*
 * (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;
}

static void vop_line_flag_irq_enable(struct vop *vop, int line_num)
{
	unsigned long flags;

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

	spin_lock_irqsave(&vop->irq_lock, flags);

	VOP_CTRL_SET(vop, line_flag_num[0], line_num);
481
	VOP_INTR_SET_TYPE(vop, clear, LINE_FLAG_INTR, 1);
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
	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);
}

501
static int vop_enable(struct drm_crtc *crtc)
M
Mark Yao 已提交
502 503 504 505
{
	struct vop *vop = to_vop(crtc);
	int ret;

506 507 508
	ret = pm_runtime_get_sync(vop->dev);
	if (ret < 0) {
		dev_err(vop->dev, "failed to get pm runtime: %d\n", ret);
509
		return ret;
510 511
	}

M
Mark Yao 已提交
512
	ret = clk_enable(vop->hclk);
513 514
	if (WARN_ON(ret < 0))
		goto err_put_pm_runtime;
M
Mark Yao 已提交
515 516

	ret = clk_enable(vop->dclk);
517
	if (WARN_ON(ret < 0))
M
Mark Yao 已提交
518 519 520
		goto err_disable_hclk;

	ret = clk_enable(vop->aclk);
521
	if (WARN_ON(ret < 0))
M
Mark Yao 已提交
522 523 524 525 526 527 528 529 530 531 532 533 534 535
		goto err_disable_dclk;

	/*
	 * 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) {
		dev_err(vop->dev, "failed to attach dma mapping, %d\n", ret);
		goto err_disable_aclk;
	}

536
	memcpy(vop->regs, vop->regsbak, vop->len);
537 538
	vop_cfg_done(vop);

539 540 541 542 543
	/*
	 * At here, vop clock & iommu is enable, R/W vop regs would be safe.
	 */
	vop->is_enabled = true;

M
Mark Yao 已提交
544 545 546 547 548 549 550 551
	spin_lock(&vop->reg_lock);

	VOP_CTRL_SET(vop, standby, 0);

	spin_unlock(&vop->reg_lock);

	enable_irq(vop->irq);

552
	drm_crtc_vblank_on(crtc);
M
Mark Yao 已提交
553

554
	return 0;
M
Mark Yao 已提交
555 556 557 558 559 560 561

err_disable_aclk:
	clk_disable(vop->aclk);
err_disable_dclk:
	clk_disable(vop->dclk);
err_disable_hclk:
	clk_disable(vop->hclk);
562 563 564
err_put_pm_runtime:
	pm_runtime_put_sync(vop->dev);
	return ret;
M
Mark Yao 已提交
565 566
}

567
static void vop_crtc_disable(struct drm_crtc *crtc)
M
Mark Yao 已提交
568 569
{
	struct vop *vop = to_vop(crtc);
570
	int i;
M
Mark Yao 已提交
571

572 573
	WARN_ON(vop->event);

574 575
	rockchip_drm_psr_deactivate(&vop->crtc);

576 577 578 579 580 581 582 583 584 585 586 587 588 589
	/*
	 * We need to make sure that all windows are disabled before we
	 * disable that crtc. Otherwise we might try to scan from a destroyed
	 * buffer later.
	 */
	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;

		spin_lock(&vop->reg_lock);
		VOP_WIN_SET(vop, win, enable, 0);
		spin_unlock(&vop->reg_lock);
	}

590 591
	vop_cfg_done(vop);

592
	drm_crtc_vblank_off(crtc);
M
Mark Yao 已提交
593 594

	/*
595 596 597 598 599
	 * 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 已提交
600
	 */
601 602 603
	reinit_completion(&vop->dsp_hold_completion);
	vop_dsp_hold_valid_irq_enable(vop);

M
Mark Yao 已提交
604 605 606 607 608
	spin_lock(&vop->reg_lock);

	VOP_CTRL_SET(vop, standby, 1);

	spin_unlock(&vop->reg_lock);
609

610 611 612 613 614 615
	wait_for_completion(&vop->dsp_hold_completion);

	vop_dsp_hold_valid_irq_disable(vop);

	disable_irq(vop->irq);

616
	vop->is_enabled = false;
617

M
Mark Yao 已提交
618
	/*
619
	 * vop standby complete, so iommu detach is safe.
M
Mark Yao 已提交
620 621 622
	 */
	rockchip_drm_dma_detach_device(vop->drm_dev, vop->dev);

623
	clk_disable(vop->dclk);
M
Mark Yao 已提交
624 625
	clk_disable(vop->aclk);
	clk_disable(vop->hclk);
626
	pm_runtime_put(vop->dev);
627 628 629 630 631 632 633 634

	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 已提交
635 636
}

637
static void vop_plane_destroy(struct drm_plane *plane)
M
Mark Yao 已提交
638
{
639
	drm_plane_cleanup(plane);
M
Mark Yao 已提交
640 641
}

642 643
static int vop_plane_atomic_check(struct drm_plane *plane,
			   struct drm_plane_state *state)
M
Mark Yao 已提交
644
{
645
	struct drm_crtc *crtc = state->crtc;
646
	struct drm_crtc_state *crtc_state;
647
	struct drm_framebuffer *fb = state->fb;
M
Mark Yao 已提交
648 649 650
	struct vop_win *vop_win = to_vop_win(plane);
	const struct vop_win_data *win = vop_win->data;
	int ret;
651
	struct drm_rect clip;
652 653 654 655
	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 已提交
656

657
	if (!crtc || !fb)
T
Tomasz Figa 已提交
658
		return 0;
659 660 661 662 663

	crtc_state = drm_atomic_get_existing_crtc_state(state->state, crtc);
	if (WARN_ON(!crtc_state))
		return -EINVAL;

664 665
	clip.x1 = 0;
	clip.y1 = 0;
666 667
	clip.x2 = crtc_state->adjusted_mode.hdisplay;
	clip.y2 = crtc_state->adjusted_mode.vdisplay;
668

669 670 671
	ret = drm_plane_helper_check_state(state, &clip,
					   min_scale, max_scale,
					   true, true);
M
Mark Yao 已提交
672 673 674
	if (ret)
		return ret;

675
	if (!state->visible)
T
Tomasz Figa 已提交
676
		return 0;
M
Mark Yao 已提交
677

V
Ville Syrjälä 已提交
678
	ret = vop_convert_format(fb->format->format);
T
Tomasz Figa 已提交
679 680
	if (ret < 0)
		return ret;
681

682 683 684 685
	/*
	 * Src.x1 can be odd when do clip, but yuv plane start point
	 * need align with 2 pixel.
	 */
V
Ville Syrjälä 已提交
686
	if (is_yuv_support(fb->format->format) && ((state->src.x1 >> 16) % 2))
M
Mark Yao 已提交
687 688
		return -EINVAL;

689 690
	return 0;
}
M
Mark Yao 已提交
691

692 693 694 695 696 697
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);
	const struct vop_win_data *win = vop_win->data;
	struct vop *vop = to_vop(old_state->crtc);
M
Mark Yao 已提交
698

699 700
	if (!old_state->crtc)
		return;
M
Mark Yao 已提交
701

702
	spin_lock(&vop->reg_lock);
M
Mark Yao 已提交
703

704
	VOP_WIN_SET(vop, win, enable, 0);
705

706 707
	spin_unlock(&vop->reg_lock);
}
708

709 710 711 712 713 714 715 716 717 718 719 720
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;
	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;
721 722
	struct drm_rect *src = &state->src;
	struct drm_rect *dest = &state->dst;
723 724 725 726 727 728
	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;
T
Tomasz Figa 已提交
729
	int format;
730

M
Mark Yao 已提交
731
	/*
732
	 * can't update plane when vop is disabled.
M
Mark Yao 已提交
733
	 */
734
	if (WARN_ON(!crtc))
735
		return;
M
Mark Yao 已提交
736

737 738
	if (WARN_ON(!vop->is_enabled))
		return;
M
Mark Yao 已提交
739

T
Tomasz Figa 已提交
740
	if (!state->visible) {
741 742
		vop_plane_atomic_disable(plane, old_state);
		return;
M
Mark Yao 已提交
743
	}
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758

	obj = rockchip_fb_get_gem_obj(fb, 0);
	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);

759
	offset = (src->x1 >> 16) * fb->format->cpp[0];
760
	offset += (src->y1 >> 16) * fb->pitches[0];
T
Tomasz Figa 已提交
761 762
	dma_addr = rk_obj->dma_addr + offset + fb->offsets[0];

V
Ville Syrjälä 已提交
763
	format = vop_convert_format(fb->format->format);
M
Mark Yao 已提交
764 765 766

	spin_lock(&vop->reg_lock);

T
Tomasz Figa 已提交
767
	VOP_WIN_SET(vop, win, format, format);
768
	VOP_WIN_SET(vop, win, yrgb_vir, fb->pitches[0] >> 2);
T
Tomasz Figa 已提交
769
	VOP_WIN_SET(vop, win, yrgb_mst, dma_addr);
V
Ville Syrjälä 已提交
770 771 772
	if (is_yuv_support(fb->format->format)) {
		int hsub = drm_format_horz_chroma_subsampling(fb->format->format);
		int vsub = drm_format_vert_chroma_subsampling(fb->format->format);
773
		int bpp = fb->format->cpp[1];
774 775 776 777 778 779 780 781 782 783

		uv_obj = rockchip_fb_get_gem_obj(fb, 1);
		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];
		VOP_WIN_SET(vop, win, uv_vir, fb->pitches[1] >> 2);
		VOP_WIN_SET(vop, win, uv_mst, dma_addr);
784
	}
785 786 787

	if (win->phy->scl)
		scl_vop_cal_scl_fac(vop, win, actual_w, actual_h,
788
				    drm_rect_width(dest), drm_rect_height(dest),
V
Ville Syrjälä 已提交
789
				    fb->format->format);
790

791 792 793
	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);
794

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

V
Ville Syrjälä 已提交
798
	if (is_alpha_support(fb->format->format)) {
M
Mark Yao 已提交
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
		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);
	} else {
		VOP_WIN_SET(vop, win, src_alpha_ctl, SRC_ALPHA_EN(0));
	}

	VOP_WIN_SET(vop, win, enable, 1);
	spin_unlock(&vop->reg_lock);
}

815 816 817 818 819
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,
};
M
Mark Yao 已提交
820 821

static const struct drm_plane_funcs vop_plane_funcs = {
822 823
	.update_plane	= drm_atomic_helper_update_plane,
	.disable_plane	= drm_atomic_helper_disable_plane,
M
Mark Yao 已提交
824
	.destroy = vop_plane_destroy,
T
Tomasz Figa 已提交
825 826 827
	.reset = drm_atomic_helper_plane_reset,
	.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
	.atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
M
Mark Yao 已提交
828 829 830 831 832 833 834
};

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

835
	if (WARN_ON(!vop->is_enabled))
M
Mark Yao 已提交
836 837 838 839
		return -EPERM;

	spin_lock_irqsave(&vop->irq_lock, flags);

840
	VOP_INTR_SET_TYPE(vop, clear, FS_INTR, 1);
841
	VOP_INTR_SET_TYPE(vop, enable, FS_INTR, 1);
M
Mark Yao 已提交
842 843 844 845 846 847 848 849 850 851 852

	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;

853
	if (WARN_ON(!vop->is_enabled))
M
Mark Yao 已提交
854
		return;
855

M
Mark Yao 已提交
856
	spin_lock_irqsave(&vop->irq_lock, flags);
857 858 859

	VOP_INTR_SET_TYPE(vop, enable, FS_INTR, 0);

M
Mark Yao 已提交
860 861 862 863 864 865 866
	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)
{
867 868 869 870 871
	struct vop *vop = to_vop(crtc);

	adjusted_mode->clock =
		clk_round_rate(vop->dclk, mode->clock * 1000) / 1000;

M
Mark Yao 已提交
872 873 874
	return true;
}

875
static void vop_crtc_enable(struct drm_crtc *crtc)
M
Mark Yao 已提交
876 877
{
	struct vop *vop = to_vop(crtc);
878
	const struct vop_data *vop_data = vop->data;
879
	struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc->state);
880
	struct drm_display_mode *adjusted_mode = &crtc->state->adjusted_mode;
M
Mark Yao 已提交
881 882 883 884 885 886 887 888 889 890
	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;
891
	uint32_t pin_pol, val;
892
	int ret;
M
Mark Yao 已提交
893

894 895
	WARN_ON(vop->event);

896 897 898 899 900 901
	ret = vop_enable(crtc);
	if (ret) {
		DRM_DEV_ERROR(vop->dev, "Failed to enable vop (%d)\n", ret);
		return;
	}

M
Mark Yao 已提交
902
	/*
M
Mark Yao 已提交
903 904
	 * If dclk rate is zero, mean that scanout is stop,
	 * we don't need wait any more.
M
Mark Yao 已提交
905
	 */
M
Mark Yao 已提交
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
	if (clk_get_rate(vop->dclk)) {
		/*
		 * Rk3288 vop timing register is immediately, when configure
		 * display timing on display time, may cause tearing.
		 *
		 * Vop standby will take effect at end of current frame,
		 * if dsp hold valid irq happen, it means standby complete.
		 *
		 * mode set:
		 *    standby and wait complete --> |----
		 *                                  | display time
		 *                                  |----
		 *                                  |---> dsp hold irq
		 *     configure display timing --> |
		 *         standby exit             |
		 *                                  | new frame start.
		 */

		reinit_completion(&vop->dsp_hold_completion);
		vop_dsp_hold_valid_irq_enable(vop);

		spin_lock(&vop->reg_lock);

		VOP_CTRL_SET(vop, standby, 1);

		spin_unlock(&vop->reg_lock);

		wait_for_completion(&vop->dsp_hold_completion);

		vop_dsp_hold_valid_irq_disable(vop);
	}
M
Mark Yao 已提交
937

938
	pin_pol = BIT(DCLK_INVERT);
939 940 941 942
	pin_pol |= (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC) ?
		   BIT(HSYNC_POSITIVE) : 0;
	pin_pol |= (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC) ?
		   BIT(VSYNC_POSITIVE) : 0;
943 944
	VOP_CTRL_SET(vop, pin_pol, pin_pol);

945 946 947
	switch (s->output_type) {
	case DRM_MODE_CONNECTOR_LVDS:
		VOP_CTRL_SET(vop, rgb_en, 1);
948
		VOP_CTRL_SET(vop, rgb_pin_pol, pin_pol);
949 950
		break;
	case DRM_MODE_CONNECTOR_eDP:
951
		VOP_CTRL_SET(vop, edp_pin_pol, pin_pol);
952 953 954
		VOP_CTRL_SET(vop, edp_en, 1);
		break;
	case DRM_MODE_CONNECTOR_HDMIA:
955
		VOP_CTRL_SET(vop, hdmi_pin_pol, pin_pol);
956 957 958
		VOP_CTRL_SET(vop, hdmi_en, 1);
		break;
	case DRM_MODE_CONNECTOR_DSI:
959
		VOP_CTRL_SET(vop, mipi_pin_pol, pin_pol);
960 961
		VOP_CTRL_SET(vop, mipi_en, 1);
		break;
962 963 964 965 966
	case DRM_MODE_CONNECTOR_DisplayPort:
		pin_pol &= ~BIT(DCLK_INVERT);
		VOP_CTRL_SET(vop, dp_pin_pol, pin_pol);
		VOP_CTRL_SET(vop, dp_en, 1);
		break;
967
	default:
968 969
		DRM_DEV_ERROR(vop->dev, "unsupported connector_type [%d]\n",
			      s->output_type);
970
	}
971 972 973 974 975 976 977

	/*
	 * 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;
978
	VOP_CTRL_SET(vop, out_mode, s->output_mode);
M
Mark Yao 已提交
979 980 981 982 983 984 985 986 987 988 989 990 991 992

	VOP_CTRL_SET(vop, htotal_pw, (htotal << 16) | hsync_len);
	val = hact_st << 16;
	val |= hact_end;
	VOP_CTRL_SET(vop, hact_st_end, val);
	VOP_CTRL_SET(vop, hpost_st_end, val);

	VOP_CTRL_SET(vop, vtotal_pw, (vtotal << 16) | vsync_len);
	val = vact_st << 16;
	val |= vact_end;
	VOP_CTRL_SET(vop, vact_st_end, val);
	VOP_CTRL_SET(vop, vpost_st_end, val);

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

	VOP_CTRL_SET(vop, standby, 0);
995 996

	rockchip_drm_psr_activate(&vop->crtc);
M
Mark Yao 已提交
997 998
}

999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
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);
}

1025 1026
static void vop_crtc_atomic_flush(struct drm_crtc *crtc,
				  struct drm_crtc_state *old_crtc_state)
M
Mark Yao 已提交
1027
{
1028 1029
	struct drm_atomic_state *old_state = old_crtc_state->state;
	struct drm_plane_state *old_plane_state;
M
Mark Yao 已提交
1030
	struct vop *vop = to_vop(crtc);
1031 1032
	struct drm_plane *plane;
	int i;
M
Mark Yao 已提交
1033

1034 1035
	if (WARN_ON(!vop->is_enabled))
		return;
M
Mark Yao 已提交
1036

1037
	spin_lock(&vop->reg_lock);
M
Mark Yao 已提交
1038

1039
	vop_cfg_done(vop);
M
Mark Yao 已提交
1040

1041
	spin_unlock(&vop->reg_lock);
1042 1043 1044 1045 1046 1047 1048

	/*
	 * 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);
1049

1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
	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);

1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
	for_each_plane_in_state(old_state, plane, old_plane_state, i) {
		if (!old_plane_state->fb)
			continue;

		if (old_plane_state->fb == plane->state->fb)
			continue;

		drm_framebuffer_reference(old_plane_state->fb);
		drm_flip_work_queue(&vop->fb_unref_work, old_plane_state->fb);
		set_bit(VOP_PENDING_FB_UNREF, &vop->pending);
		WARN_ON(drm_crtc_vblank_get(crtc) != 0);
	}
M
Mark Yao 已提交
1072 1073
}

1074 1075
static void vop_crtc_atomic_begin(struct drm_crtc *crtc,
				  struct drm_crtc_state *old_crtc_state)
M
Mark Yao 已提交
1076
{
1077
	rockchip_drm_psr_flush(crtc);
M
Mark Yao 已提交
1078 1079
}

1080 1081 1082 1083 1084 1085 1086 1087
static const struct drm_crtc_helper_funcs vop_crtc_helper_funcs = {
	.enable = vop_crtc_enable,
	.disable = vop_crtc_disable,
	.mode_fixup = vop_crtc_mode_fixup,
	.atomic_flush = vop_crtc_atomic_flush,
	.atomic_begin = vop_crtc_atomic_begin,
};

M
Mark Yao 已提交
1088 1089 1090 1091 1092
static void vop_crtc_destroy(struct drm_crtc *crtc)
{
	drm_crtc_cleanup(crtc);
}

1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
static void vop_crtc_reset(struct drm_crtc *crtc)
{
	if (crtc->state)
		__drm_atomic_helper_crtc_destroy_state(crtc->state);
	kfree(crtc->state);

	crtc->state = kzalloc(sizeof(struct rockchip_crtc_state), GFP_KERNEL);
	if (crtc->state)
		crtc->state->crtc = crtc;
}

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
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);

1121
	__drm_atomic_helper_crtc_destroy_state(&s->base);
1122 1123 1124
	kfree(s);
}

1125
#ifdef CONFIG_DRM_ANALOGIX_DP
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
static struct drm_connector *vop_get_edp_connector(struct vop *vop)
{
	struct drm_crtc *crtc = &vop->crtc;
	struct drm_connector *connector;

	mutex_lock(&crtc->dev->mode_config.mutex);
	drm_for_each_connector(connector, crtc->dev)
		if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) {
			mutex_unlock(&crtc->dev->mode_config.mutex);
			return connector;
		}
	mutex_unlock(&crtc->dev->mode_config.mutex);

	return NULL;
}

static int vop_crtc_set_crc_source(struct drm_crtc *crtc,
				   const char *source_name, size_t *values_cnt)
{
	struct vop *vop = to_vop(crtc);
	struct drm_connector *connector;
	int ret;

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

	*values_cnt = 3;

	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;
}
1164 1165 1166 1167 1168 1169 1170
#else
static int vop_crtc_set_crc_source(struct drm_crtc *crtc,
				   const char *source_name, size_t *values_cnt)
{
	return -ENODEV;
}
#endif
1171

M
Mark Yao 已提交
1172
static const struct drm_crtc_funcs vop_crtc_funcs = {
1173 1174
	.set_config = drm_atomic_helper_set_config,
	.page_flip = drm_atomic_helper_page_flip,
M
Mark Yao 已提交
1175
	.destroy = vop_crtc_destroy,
1176
	.reset = vop_crtc_reset,
1177 1178
	.atomic_duplicate_state = vop_crtc_duplicate_state,
	.atomic_destroy_state = vop_crtc_destroy_state,
1179 1180
	.enable_vblank = vop_crtc_enable_vblank,
	.disable_vblank = vop_crtc_disable_vblank,
1181
	.set_crc_source = vop_crtc_set_crc_source,
M
Mark Yao 已提交
1182 1183
};

1184 1185 1186 1187 1188 1189 1190 1191 1192
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);
	drm_framebuffer_unreference(fb);
}

1193
static void vop_handle_vblank(struct vop *vop)
M
Mark Yao 已提交
1194
{
1195 1196 1197
	struct drm_device *drm = vop->drm_dev;
	struct drm_crtc *crtc = &vop->crtc;
	unsigned long flags;
M
Mark Yao 已提交
1198

1199
	spin_lock_irqsave(&drm->event_lock, flags);
1200 1201
	if (vop->event) {
		drm_crtc_send_vblank_event(crtc, vop->event);
1202
		drm_crtc_vblank_put(crtc);
1203
		vop->event = NULL;
1204
	}
1205 1206
	spin_unlock_irqrestore(&drm->event_lock, flags);

1207 1208
	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 已提交
1209 1210 1211 1212 1213
}

static irqreturn_t vop_isr(int irq, void *data)
{
	struct vop *vop = data;
1214
	struct drm_crtc *crtc = &vop->crtc;
1215
	uint32_t active_irqs;
M
Mark Yao 已提交
1216
	unsigned long flags;
1217
	int ret = IRQ_NONE;
M
Mark Yao 已提交
1218 1219

	/*
1220
	 * interrupt register has interrupt status, enable and clear bits, we
M
Mark Yao 已提交
1221 1222 1223
	 * must hold irq_lock to avoid a race with enable/disable_vblank().
	*/
	spin_lock_irqsave(&vop->irq_lock, flags);
1224 1225

	active_irqs = VOP_INTR_GET_TYPE(vop, status, INTR_MASK);
M
Mark Yao 已提交
1226 1227
	/* Clear all active interrupt sources */
	if (active_irqs)
1228 1229
		VOP_INTR_SET_TYPE(vop, clear, active_irqs, 1);

M
Mark Yao 已提交
1230 1231 1232 1233 1234 1235
	spin_unlock_irqrestore(&vop->irq_lock, flags);

	/* This is expected for vop iommu irqs, since the irq is shared */
	if (!active_irqs)
		return IRQ_NONE;

1236 1237 1238 1239
	if (active_irqs & DSP_HOLD_VALID_INTR) {
		complete(&vop->dsp_hold_completion);
		active_irqs &= ~DSP_HOLD_VALID_INTR;
		ret = IRQ_HANDLED;
M
Mark Yao 已提交
1240 1241
	}

1242 1243 1244 1245 1246 1247
	if (active_irqs & LINE_FLAG_INTR) {
		complete(&vop->line_flag_completion);
		active_irqs &= ~LINE_FLAG_INTR;
		ret = IRQ_HANDLED;
	}

1248
	if (active_irqs & FS_INTR) {
1249
		drm_crtc_handle_vblank(crtc);
1250
		vop_handle_vblank(vop);
1251
		active_irqs &= ~FS_INTR;
1252
		ret = IRQ_HANDLED;
1253
	}
M
Mark Yao 已提交
1254

1255 1256
	/* Unhandled irqs are spurious. */
	if (active_irqs)
1257 1258
		DRM_DEV_ERROR(vop->dev, "Unknown VOP IRQs: %#02x\n",
			      active_irqs);
1259 1260

	return ret;
M
Mark Yao 已提交
1261 1262 1263 1264 1265 1266 1267
}

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;
1268
	struct drm_plane *primary = NULL, *cursor = NULL, *plane, *tmp;
M
Mark Yao 已提交
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
	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,
1291
					       win_data->type, NULL);
M
Mark Yao 已提交
1292
		if (ret) {
1293 1294
			DRM_DEV_ERROR(vop->dev, "failed to init plane %d\n",
				      ret);
M
Mark Yao 已提交
1295 1296 1297 1298
			goto err_cleanup_planes;
		}

		plane = &vop_win->base;
1299
		drm_plane_helper_add(plane, &plane_helper_funcs);
M
Mark Yao 已提交
1300 1301 1302 1303 1304 1305 1306
		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,
1307
					&vop_crtc_funcs, NULL);
M
Mark Yao 已提交
1308
	if (ret)
1309
		goto err_cleanup_planes;
M
Mark Yao 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329

	drm_crtc_helper_add(crtc, &vop_crtc_helper_funcs);

	/*
	 * 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;
		unsigned long possible_crtcs = 1 << drm_crtc_index(crtc);

		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,
1330
					       win_data->type, NULL);
M
Mark Yao 已提交
1331
		if (ret) {
1332 1333
			DRM_DEV_ERROR(vop->dev, "failed to init overlay %d\n",
				      ret);
M
Mark Yao 已提交
1334 1335
			goto err_cleanup_crtc;
		}
1336
		drm_plane_helper_add(&vop_win->base, &plane_helper_funcs);
M
Mark Yao 已提交
1337 1338 1339 1340
	}

	port = of_get_child_by_name(dev->of_node, "port");
	if (!port) {
1341 1342
		DRM_DEV_ERROR(vop->dev, "no port node found in %s\n",
			      dev->of_node->full_name);
1343
		ret = -ENOENT;
M
Mark Yao 已提交
1344 1345 1346
		goto err_cleanup_crtc;
	}

1347 1348 1349
	drm_flip_work_init(&vop->fb_unref_work, "fb_unref",
			   vop_fb_unref_worker);

1350
	init_completion(&vop->dsp_hold_completion);
1351
	init_completion(&vop->line_flag_completion);
M
Mark Yao 已提交
1352 1353 1354 1355 1356 1357 1358
	crtc->port = port;

	return 0;

err_cleanup_crtc:
	drm_crtc_cleanup(crtc);
err_cleanup_planes:
1359 1360
	list_for_each_entry_safe(plane, tmp, &drm_dev->mode_config.plane_list,
				 head)
M
Mark Yao 已提交
1361 1362 1363 1364 1365 1366 1367
		drm_plane_cleanup(plane);
	return ret;
}

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

	of_node_put(crtc->port);
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388

	/*
	 * 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 已提交
1389
	drm_crtc_cleanup(crtc);
1390
	drm_flip_work_cleanup(&vop->fb_unref_work);
M
Mark Yao 已提交
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
}

static int vop_initial(struct vop *vop)
{
	const struct vop_data *vop_data = vop->data;
	const struct vop_reg_data *init_table = vop_data->init_table;
	struct reset_control *ahb_rst;
	int i, ret;

	vop->hclk = devm_clk_get(vop->dev, "hclk_vop");
	if (IS_ERR(vop->hclk)) {
		dev_err(vop->dev, "failed to get hclk source\n");
		return PTR_ERR(vop->hclk);
	}
	vop->aclk = devm_clk_get(vop->dev, "aclk_vop");
	if (IS_ERR(vop->aclk)) {
		dev_err(vop->dev, "failed to get aclk source\n");
		return PTR_ERR(vop->aclk);
	}
	vop->dclk = devm_clk_get(vop->dev, "dclk_vop");
	if (IS_ERR(vop->dclk)) {
		dev_err(vop->dev, "failed to get dclk source\n");
		return PTR_ERR(vop->dclk);
	}

1416 1417 1418 1419 1420 1421
	ret = pm_runtime_get_sync(vop->dev);
	if (ret < 0) {
		dev_err(vop->dev, "failed to get pm runtime: %d\n", ret);
		return ret;
	}

M
Mark Yao 已提交
1422 1423 1424
	ret = clk_prepare(vop->dclk);
	if (ret < 0) {
		dev_err(vop->dev, "failed to prepare dclk\n");
1425
		goto err_put_pm_runtime;
M
Mark Yao 已提交
1426 1427
	}

1428 1429
	/* Enable both the hclk and aclk to setup the vop */
	ret = clk_prepare_enable(vop->hclk);
M
Mark Yao 已提交
1430
	if (ret < 0) {
1431
		dev_err(vop->dev, "failed to prepare/enable hclk\n");
M
Mark Yao 已提交
1432 1433 1434
		goto err_unprepare_dclk;
	}

1435
	ret = clk_prepare_enable(vop->aclk);
M
Mark Yao 已提交
1436
	if (ret < 0) {
1437 1438
		dev_err(vop->dev, "failed to prepare/enable aclk\n");
		goto err_disable_hclk;
M
Mark Yao 已提交
1439
	}
1440

M
Mark Yao 已提交
1441 1442 1443 1444 1445 1446 1447
	/*
	 * do hclk_reset, reset all vop registers.
	 */
	ahb_rst = devm_reset_control_get(vop->dev, "ahb");
	if (IS_ERR(ahb_rst)) {
		dev_err(vop->dev, "failed to get ahb reset\n");
		ret = PTR_ERR(ahb_rst);
1448
		goto err_disable_aclk;
M
Mark Yao 已提交
1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
	}
	reset_control_assert(ahb_rst);
	usleep_range(10, 20);
	reset_control_deassert(ahb_rst);

	memcpy(vop->regsbak, vop->regs, vop->len);

	for (i = 0; i < vop_data->table_size; i++)
		vop_writel(vop, init_table[i].offset, init_table[i].value);

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

		VOP_WIN_SET(vop, win, enable, 0);
	}

	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)) {
		dev_err(vop->dev, "failed to get dclk reset\n");
		ret = PTR_ERR(vop->dclk_rst);
1474
		goto err_disable_aclk;
M
Mark Yao 已提交
1475 1476 1477 1478 1479 1480
	}
	reset_control_assert(vop->dclk_rst);
	usleep_range(10, 20);
	reset_control_deassert(vop->dclk_rst);

	clk_disable(vop->hclk);
1481
	clk_disable(vop->aclk);
M
Mark Yao 已提交
1482

1483
	vop->is_enabled = false;
M
Mark Yao 已提交
1484

1485 1486
	pm_runtime_put_sync(vop->dev);

M
Mark Yao 已提交
1487 1488
	return 0;

1489 1490
err_disable_aclk:
	clk_disable_unprepare(vop->aclk);
M
Mark Yao 已提交
1491
err_disable_hclk:
1492
	clk_disable_unprepare(vop->hclk);
M
Mark Yao 已提交
1493 1494
err_unprepare_dclk:
	clk_unprepare(vop->dclk);
1495 1496
err_put_pm_runtime:
	pm_runtime_put_sync(vop->dev);
M
Mark Yao 已提交
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
	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;
	}
}

1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
/**
 * rockchip_drm_wait_line_flag - acqiure the give line flag event
 * @crtc: CRTC to enable line flag
 * @line_num: interested line number
 * @mstimeout: millisecond for timeout
 *
 * Driver would hold here until the interested line flag interrupt have
 * happened or timeout to wait.
 *
 * Returns:
 * Zero on success, negative errno on failure.
 */
int rockchip_drm_wait_line_flag(struct drm_crtc *crtc, unsigned int line_num,
				unsigned int mstimeout)
{
	struct vop *vop = to_vop(crtc);
	unsigned long jiffies_left;

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

	if (line_num > crtc->mode.vtotal || mstimeout <= 0)
		return -EINVAL;

	if (vop_line_flag_irq_is_enabled(vop))
		return -EBUSY;

	reinit_completion(&vop->line_flag_completion);
	vop_line_flag_irq_enable(vop, line_num);

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

	if (jiffies_left == 0) {
		dev_err(vop->dev, "Timeout waiting for IRQ\n");
		return -ETIMEDOUT;
	}

	return 0;
}
EXPORT_SYMBOL(rockchip_drm_wait_line_flag);

M
Mark Yao 已提交
1560 1561 1562 1563 1564 1565 1566 1567
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;
	size_t alloc_size;
1568
	int ret, irq;
M
Mark Yao 已提交
1569

1570
	vop_data = of_device_get_match_data(dev);
M
Mark Yao 已提交
1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
	if (!vop_data)
		return -ENODEV;

	/* Allocate vop struct and its vop_win array */
	alloc_size = sizeof(*vop) + sizeof(*vop->win) * vop_data->win_size;
	vop = devm_kzalloc(dev, alloc_size, GFP_KERNEL);
	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);

	vop->regsbak = devm_kzalloc(dev, vop->len, GFP_KERNEL);
	if (!vop->regsbak)
		return -ENOMEM;

1597 1598
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
M
Mark Yao 已提交
1599
		dev_err(dev, "cannot find irq for vop\n");
1600
		return irq;
M
Mark Yao 已提交
1601
	}
1602
	vop->irq = (unsigned int)irq;
M
Mark Yao 已提交
1603 1604 1605 1606 1607 1608

	spin_lock_init(&vop->reg_lock);
	spin_lock_init(&vop->irq_lock);

	mutex_init(&vop->vsync_mutex);

1609 1610
	ret = devm_request_irq(dev, vop->irq, vop_isr,
			       IRQF_SHARED, dev_name(dev), vop);
M
Mark Yao 已提交
1611 1612 1613 1614 1615 1616 1617 1618
	if (ret)
		return ret;

	/* IRQ is initially disabled; it gets enabled in power_on */
	disable_irq(vop->irq);

	ret = vop_create_crtc(vop);
	if (ret)
1619
		goto err_enable_irq;
M
Mark Yao 已提交
1620 1621

	pm_runtime_enable(&pdev->dev);
1622

1623 1624 1625 1626 1627 1628
	ret = vop_initial(vop);
	if (ret < 0) {
		dev_err(&pdev->dev, "cannot initial vop dev - err %d\n", ret);
		goto err_disable_pm_runtime;
	}

M
Mark Yao 已提交
1629
	return 0;
1630

1631 1632 1633
err_disable_pm_runtime:
	pm_runtime_disable(&pdev->dev);
	vop_destroy_crtc(vop);
1634 1635 1636
err_enable_irq:
	enable_irq(vop->irq); /* To balance out the disable_irq above */
	return ret;
M
Mark Yao 已提交
1637 1638 1639 1640 1641 1642 1643 1644
}

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

	pm_runtime_disable(dev);
	vop_destroy_crtc(vop);
1645 1646 1647 1648

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

1651
const struct component_ops vop_component_ops = {
M
Mark Yao 已提交
1652 1653 1654
	.bind = vop_bind,
	.unbind = vop_unbind,
};
1655
EXPORT_SYMBOL_GPL(vop_component_ops);