exynos_drm_crtc.c 12.6 KB
Newer Older
1 2 3 4 5 6 7 8
/* exynos_drm_crtc.c
 *
 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
 * Authors:
 *	Inki Dae <inki.dae@samsung.com>
 *	Joonyoung Shim <jy0922.shim@samsung.com>
 *	Seung-Woo Kim <sw0312.kim@samsung.com>
 *
9 10 11 12
 * This program is free software; you can redistribute  it and/or modify it
 * under  the terms of  the GNU General  Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
13 14
 */

15 16
#include <drm/drmP.h>
#include <drm/drm_crtc_helper.h>
17

M
Mark Brown 已提交
18
#include "exynos_drm_crtc.h"
19 20
#include "exynos_drm_drv.h"
#include "exynos_drm_encoder.h"
21
#include "exynos_drm_plane.h"
22 23 24 25

#define to_exynos_crtc(x)	container_of(x, struct exynos_drm_crtc,\
				drm_crtc)

26 27 28 29 30
enum exynos_crtc_mode {
	CRTC_MODE_NORMAL,	/* normal mode */
	CRTC_MODE_BLANK,	/* The private plane of crtc is blank */
};

31 32 33 34
/*
 * Exynos specific crtc structure.
 *
 * @drm_crtc: crtc object.
35
 * @drm_plane: pointer of private plane object for this crtc
36
 * @manager: the manager associated with this crtc
37 38 39
 * @pipe: a crtc index created at load() with a new crtc object creation
 *	and the crtc object would be set to private->crtc array
 *	to get a crtc object corresponding to this pipe from private->crtc
40
 *	array when irq interrupt occurred. the reason of using this pipe is that
41
 *	drm framework doesn't support multiple irq yet.
42
 *	we can refer to the crtc to current hardware interrupt occurred through
43
 *	this pipe value.
44
 * @dpms: store the crtc dpms value
45
 * @mode: store the crtc mode value
46 47 48
 */
struct exynos_drm_crtc {
	struct drm_crtc			drm_crtc;
49
	struct drm_plane		*plane;
50
	struct exynos_drm_manager	*manager;
51
	unsigned int			pipe;
52
	unsigned int			dpms;
53
	enum exynos_crtc_mode		mode;
54 55
	wait_queue_head_t		pending_flip_queue;
	atomic_t			pending_flip;
56 57 58 59
};

static void exynos_drm_crtc_dpms(struct drm_crtc *crtc, int mode)
{
60
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
61
	struct exynos_drm_manager *manager = exynos_crtc->manager;
62

63 64
	DRM_DEBUG_KMS("crtc[%d] mode[%d]\n", crtc->base.id, mode);

65 66 67 68 69
	if (exynos_crtc->dpms == mode) {
		DRM_DEBUG_KMS("desired dpms mode is same as previous one.\n");
		return;
	}

70 71 72 73 74 75 76
	if (mode > DRM_MODE_DPMS_ON) {
		/* wait for the completion of page flip. */
		wait_event(exynos_crtc->pending_flip_queue,
				atomic_read(&exynos_crtc->pending_flip) == 0);
		drm_vblank_off(crtc->dev, exynos_crtc->pipe);
	}

77 78 79
	if (manager->ops->dpms)
		manager->ops->dpms(manager, mode);

80
	exynos_crtc->dpms = mode;
81 82 83 84 85 86 87 88 89
}

static void exynos_drm_crtc_prepare(struct drm_crtc *crtc)
{
	/* drm framework doesn't check NULL. */
}

static void exynos_drm_crtc_commit(struct drm_crtc *crtc)
{
90
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
91
	struct exynos_drm_manager *manager = exynos_crtc->manager;
92

93
	exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
94

95
	exynos_plane_commit(exynos_crtc->plane);
96 97 98 99

	if (manager->ops->commit)
		manager->ops->commit(manager);

100
	exynos_plane_dpms(exynos_crtc->plane, DRM_MODE_DPMS_ON);
101 102 103 104
}

static bool
exynos_drm_crtc_mode_fixup(struct drm_crtc *crtc,
105
			    const struct drm_display_mode *mode,
106 107 108 109 110 111 112 113 114 115 116
			    struct drm_display_mode *adjusted_mode)
{
	/* drm framework doesn't check NULL */
	return true;
}

static int
exynos_drm_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode,
			  struct drm_display_mode *adjusted_mode, int x, int y,
			  struct drm_framebuffer *old_fb)
{
117
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
118
	struct exynos_drm_manager *manager = exynos_crtc->manager;
119 120 121
	struct drm_plane *plane = exynos_crtc->plane;
	unsigned int crtc_w;
	unsigned int crtc_h;
122 123
	int ret;

124 125 126 127 128
	/*
	 * copy the mode data adjusted by mode_fixup() into crtc->mode
	 * so that hardware can be seet to proper mode.
	 */
	memcpy(&crtc->mode, adjusted_mode, sizeof(*adjusted_mode));
129

130 131 132
	crtc_w = crtc->fb->width - x;
	crtc_h = crtc->fb->height - y;

133 134 135
	if (manager->ops->mode_set)
		manager->ops->mode_set(manager, &crtc->mode);

136 137
	ret = exynos_plane_mode_set(plane, crtc, crtc->fb, 0, 0, crtc_w, crtc_h,
				    x, y, crtc_w, crtc_h);
138 139 140
	if (ret)
		return ret;

141 142 143
	plane->crtc = crtc;
	plane->fb = crtc->fb;

144
	return 0;
145 146
}

147
static int exynos_drm_crtc_mode_set_commit(struct drm_crtc *crtc, int x, int y,
148 149
					  struct drm_framebuffer *old_fb)
{
150 151 152 153
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
	struct drm_plane *plane = exynos_crtc->plane;
	unsigned int crtc_w;
	unsigned int crtc_h;
154 155
	int ret;

156 157 158 159 160 161
	/* when framebuffer changing is requested, crtc's dpms should be on */
	if (exynos_crtc->dpms > DRM_MODE_DPMS_ON) {
		DRM_ERROR("failed framebuffer changing request.\n");
		return -EPERM;
	}

162 163 164 165 166
	crtc_w = crtc->fb->width - x;
	crtc_h = crtc->fb->height - y;

	ret = exynos_plane_mode_set(plane, crtc, crtc->fb, 0, 0, crtc_w, crtc_h,
				    x, y, crtc_w, crtc_h);
167 168 169
	if (ret)
		return ret;

170
	exynos_drm_crtc_commit(crtc);
171

172
	return 0;
173 174
}

175 176 177 178 179 180
static int exynos_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
					  struct drm_framebuffer *old_fb)
{
	return exynos_drm_crtc_mode_set_commit(crtc, x, y, old_fb);
}

181 182
static void exynos_drm_crtc_disable(struct drm_crtc *crtc)
{
183 184
	struct drm_plane *plane;
	int ret;
185 186

	exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
187 188 189 190 191 192 193 194 195

	list_for_each_entry(plane, &crtc->dev->mode_config.plane_list, head) {
		if (plane->crtc != crtc)
			continue;

		ret = plane->funcs->disable_plane(plane);
		if (ret)
			DRM_ERROR("Failed to disable plane %d\n", ret);
	}
196 197
}

198 199 200 201 202 203 204
static struct drm_crtc_helper_funcs exynos_crtc_helper_funcs = {
	.dpms		= exynos_drm_crtc_dpms,
	.prepare	= exynos_drm_crtc_prepare,
	.commit		= exynos_drm_crtc_commit,
	.mode_fixup	= exynos_drm_crtc_mode_fixup,
	.mode_set	= exynos_drm_crtc_mode_set,
	.mode_set_base	= exynos_drm_crtc_mode_set_base,
205
	.disable	= exynos_drm_crtc_disable,
206 207 208
};

static int exynos_drm_crtc_page_flip(struct drm_crtc *crtc,
209 210 211
				     struct drm_framebuffer *fb,
				     struct drm_pending_vblank_event *event,
				     uint32_t page_flip_flags)
212 213 214 215 216 217 218
{
	struct drm_device *dev = crtc->dev;
	struct exynos_drm_private *dev_priv = dev->dev_private;
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
	struct drm_framebuffer *old_fb = crtc->fb;
	int ret = -EINVAL;

219 220 221 222 223 224
	/* when the page flip is requested, crtc's dpms should be on */
	if (exynos_crtc->dpms > DRM_MODE_DPMS_ON) {
		DRM_ERROR("failed page flip request.\n");
		return -EINVAL;
	}

225 226
	mutex_lock(&dev->struct_mutex);

I
Inki Dae 已提交
227 228 229 230 231 232 233
	if (event) {
		/*
		 * the pipe from user always is 0 so we can set pipe number
		 * of current owner to event.
		 */
		event->pipe = exynos_crtc->pipe;

234 235 236
		ret = drm_vblank_get(dev, exynos_crtc->pipe);
		if (ret) {
			DRM_DEBUG("failed to acquire vblank counter\n");
I
Inki Dae 已提交
237

238 239 240
			goto out;
		}

241
		spin_lock_irq(&dev->event_lock);
I
Inki Dae 已提交
242 243
		list_add_tail(&event->base.link,
				&dev_priv->pageflip_event_list);
244
		atomic_set(&exynos_crtc->pending_flip, 1);
245
		spin_unlock_irq(&dev->event_lock);
I
Inki Dae 已提交
246

247
		crtc->fb = fb;
248
		ret = exynos_drm_crtc_mode_set_commit(crtc, crtc->x, crtc->y,
249
						    NULL);
250 251
		if (ret) {
			crtc->fb = old_fb;
252 253

			spin_lock_irq(&dev->event_lock);
254
			drm_vblank_put(dev, exynos_crtc->pipe);
I
Inki Dae 已提交
255
			list_del(&event->base.link);
256
			spin_unlock_irq(&dev->event_lock);
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276

			goto out;
		}
	}
out:
	mutex_unlock(&dev->struct_mutex);
	return ret;
}

static void exynos_drm_crtc_destroy(struct drm_crtc *crtc)
{
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
	struct exynos_drm_private *private = crtc->dev->dev_private;

	private->crtc[exynos_crtc->pipe] = NULL;

	drm_crtc_cleanup(crtc);
	kfree(exynos_crtc);
}

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
static int exynos_drm_crtc_set_property(struct drm_crtc *crtc,
					struct drm_property *property,
					uint64_t val)
{
	struct drm_device *dev = crtc->dev;
	struct exynos_drm_private *dev_priv = dev->dev_private;
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);

	if (property == dev_priv->crtc_mode_property) {
		enum exynos_crtc_mode mode = val;

		if (mode == exynos_crtc->mode)
			return 0;

		exynos_crtc->mode = mode;

		switch (mode) {
		case CRTC_MODE_NORMAL:
			exynos_drm_crtc_commit(crtc);
			break;
		case CRTC_MODE_BLANK:
			exynos_plane_dpms(exynos_crtc->plane,
					  DRM_MODE_DPMS_OFF);
			break;
		default:
			break;
		}

		return 0;
	}

	return -EINVAL;
}

311 312 313 314
static struct drm_crtc_funcs exynos_crtc_funcs = {
	.set_config	= drm_crtc_helper_set_config,
	.page_flip	= exynos_drm_crtc_page_flip,
	.destroy	= exynos_drm_crtc_destroy,
315 316 317 318 319 320
	.set_property	= exynos_drm_crtc_set_property,
};

static const struct drm_prop_enum_list mode_names[] = {
	{ CRTC_MODE_NORMAL, "normal" },
	{ CRTC_MODE_BLANK, "blank" },
321 322
};

323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
static void exynos_drm_crtc_attach_mode_property(struct drm_crtc *crtc)
{
	struct drm_device *dev = crtc->dev;
	struct exynos_drm_private *dev_priv = dev->dev_private;
	struct drm_property *prop;

	prop = dev_priv->crtc_mode_property;
	if (!prop) {
		prop = drm_property_create_enum(dev, 0, "mode", mode_names,
						ARRAY_SIZE(mode_names));
		if (!prop)
			return;

		dev_priv->crtc_mode_property = prop;
	}

	drm_object_attach_property(&crtc->base, prop, 0);
}

342
int exynos_drm_crtc_create(struct exynos_drm_manager *manager)
343 344
{
	struct exynos_drm_crtc *exynos_crtc;
345
	struct exynos_drm_private *private = manager->drm_dev->dev_private;
346 347 348
	struct drm_crtc *crtc;

	exynos_crtc = kzalloc(sizeof(*exynos_crtc), GFP_KERNEL);
349
	if (!exynos_crtc)
350 351
		return -ENOMEM;

352 353
	init_waitqueue_head(&exynos_crtc->pending_flip_queue);
	atomic_set(&exynos_crtc->pending_flip, 0);
354 355 356 357 358 359

	exynos_crtc->dpms = DRM_MODE_DPMS_OFF;
	exynos_crtc->manager = manager;
	exynos_crtc->pipe = manager->pipe;
	exynos_crtc->plane = exynos_plane_init(manager->drm_dev,
				1 << manager->pipe, true);
360 361 362 363 364
	if (!exynos_crtc->plane) {
		kfree(exynos_crtc);
		return -ENOMEM;
	}

365 366
	crtc = &exynos_crtc->drm_crtc;

367
	private->crtc[manager->pipe] = crtc;
368

369
	drm_crtc_init(manager->drm_dev, crtc, &exynos_crtc_funcs);
370 371
	drm_crtc_helper_add(crtc, &exynos_crtc_helper_funcs);

372 373
	exynos_drm_crtc_attach_mode_property(crtc);

374 375 376
	return 0;
}

377
int exynos_drm_crtc_enable_vblank(struct drm_device *dev, int pipe)
378 379
{
	struct exynos_drm_private *private = dev->dev_private;
380
	struct exynos_drm_crtc *exynos_crtc =
381 382
		to_exynos_crtc(private->crtc[pipe]);
	struct exynos_drm_manager *manager = exynos_crtc->manager;
383

384 385 386
	if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
		return -EPERM;

387 388
	if (manager->ops->enable_vblank)
		manager->ops->enable_vblank(manager);
389 390 391 392

	return 0;
}

393
void exynos_drm_crtc_disable_vblank(struct drm_device *dev, int pipe)
394 395
{
	struct exynos_drm_private *private = dev->dev_private;
396
	struct exynos_drm_crtc *exynos_crtc =
397 398
		to_exynos_crtc(private->crtc[pipe]);
	struct exynos_drm_manager *manager = exynos_crtc->manager;
399

400 401 402
	if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
		return;

403 404
	if (manager->ops->disable_vblank)
		manager->ops->disable_vblank(manager);
405
}
406

407
void exynos_drm_crtc_finish_pageflip(struct drm_device *dev, int pipe)
408 409 410
{
	struct exynos_drm_private *dev_priv = dev->dev_private;
	struct drm_pending_vblank_event *e, *t;
411
	struct drm_crtc *drm_crtc = dev_priv->crtc[pipe];
412
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(drm_crtc);
413 414 415 416 417 418 419
	unsigned long flags;

	spin_lock_irqsave(&dev->event_lock, flags);

	list_for_each_entry_safe(e, t, &dev_priv->pageflip_event_list,
			base.link) {
		/* if event's pipe isn't same as crtc then ignore it. */
420
		if (pipe != e->pipe)
421 422
			continue;

423 424
		list_del(&e->base.link);
		drm_send_vblank_event(dev, -1, e);
425
		drm_vblank_put(dev, pipe);
426 427
		atomic_set(&exynos_crtc->pending_flip, 0);
		wake_up(&exynos_crtc->pending_flip_queue);
428 429 430 431
	}

	spin_unlock_irqrestore(&dev->event_lock, flags);
}
432 433 434 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 481 482 483 484 485 486 487

void exynos_drm_crtc_plane_mode_set(struct drm_crtc *crtc,
			struct exynos_drm_overlay *overlay)
{
	struct exynos_drm_manager *manager = to_exynos_crtc(crtc)->manager;

	if (manager->ops->win_mode_set)
		manager->ops->win_mode_set(manager, overlay);
}

void exynos_drm_crtc_plane_commit(struct drm_crtc *crtc, int zpos)
{
	struct exynos_drm_manager *manager = to_exynos_crtc(crtc)->manager;

	if (manager->ops->win_commit)
		manager->ops->win_commit(manager, zpos);
}

void exynos_drm_crtc_plane_enable(struct drm_crtc *crtc, int zpos)
{
	struct exynos_drm_manager *manager = to_exynos_crtc(crtc)->manager;

	if (manager->ops->win_enable)
		manager->ops->win_enable(manager, zpos);
}

void exynos_drm_crtc_plane_disable(struct drm_crtc *crtc, int zpos)
{
	struct exynos_drm_manager *manager = to_exynos_crtc(crtc)->manager;

	if (manager->ops->win_disable)
		manager->ops->win_disable(manager, zpos);
}

void exynos_drm_crtc_complete_scanout(struct drm_framebuffer *fb)
{
	struct exynos_drm_manager *manager;
	struct drm_device *dev = fb->dev;
	struct drm_crtc *crtc;

	/*
	 * make sure that overlay data are updated to real hardware
	 * for all encoders.
	 */
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
		manager = to_exynos_crtc(crtc)->manager;

		/*
		 * wait for vblank interrupt
		 * - this makes sure that overlay data are updated to
		 *	real hardware.
		 */
		if (manager->ops->wait_for_vblank)
			manager->ops->wait_for_vblank(manager);
	}
}