exynos_drm_crtc.c 11.9 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

static void exynos_drm_crtc_dpms(struct drm_crtc *crtc, int mode)
{
25
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
26
	struct exynos_drm_manager *manager = exynos_crtc->manager;
27

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

30 31 32 33 34
	if (exynos_crtc->dpms == mode) {
		DRM_DEBUG_KMS("desired dpms mode is same as previous one.\n");
		return;
	}

35 36
	if (mode > DRM_MODE_DPMS_ON) {
		/* wait for the completion of page flip. */
37 38 39 40
		if (!wait_event_timeout(exynos_crtc->pending_flip_queue,
				!atomic_read(&exynos_crtc->pending_flip),
				HZ/20))
			atomic_set(&exynos_crtc->pending_flip, 0);
41
		drm_crtc_vblank_off(crtc);
42 43
	}

44 45 46
	if (manager->ops->dpms)
		manager->ops->dpms(manager, mode);

47
	exynos_crtc->dpms = mode;
48 49 50

	if (mode == DRM_MODE_DPMS_ON)
		drm_crtc_vblank_on(crtc);
51 52 53 54 55 56 57 58 59
}

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)
{
60
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
61
	struct exynos_drm_manager *manager = exynos_crtc->manager;
62

63
	exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
64

65
	exynos_plane_commit(crtc->primary);
66 67 68 69

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

70
	exynos_plane_dpms(crtc->primary, DRM_MODE_DPMS_ON);
71 72 73 74
}

static bool
exynos_drm_crtc_mode_fixup(struct drm_crtc *crtc,
75
			    const struct drm_display_mode *mode,
76 77
			    struct drm_display_mode *adjusted_mode)
{
78 79 80 81 82 83
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
	struct exynos_drm_manager *manager = exynos_crtc->manager;

	if (manager->ops->mode_fixup)
		return manager->ops->mode_fixup(manager, mode, adjusted_mode);

84 85 86 87 88 89 90 91
	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)
{
92
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
93
	struct exynos_drm_manager *manager = exynos_crtc->manager;
94
	struct drm_framebuffer *fb = crtc->primary->fb;
95 96
	unsigned int crtc_w;
	unsigned int crtc_h;
97

98 99 100 101 102
	/*
	 * 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));
103

104 105
	crtc_w = fb->width - x;
	crtc_h = fb->height - y;
106

107 108 109
	if (manager->ops->mode_set)
		manager->ops->mode_set(manager, &crtc->mode);

110 111
	return exynos_plane_mode_set(crtc->primary, crtc, fb, 0, 0,
				     crtc_w, crtc_h, x, y, crtc_w, crtc_h);
112 113
}

114
static int exynos_drm_crtc_mode_set_commit(struct drm_crtc *crtc, int x, int y,
115 116
					  struct drm_framebuffer *old_fb)
{
117
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
118 119
	struct exynos_drm_manager *manager = exynos_crtc->manager;
	struct exynos_drm_plane *exynos_plane = to_exynos_plane(crtc->primary);
120
	struct drm_framebuffer *fb = crtc->primary->fb;
121 122
	unsigned int crtc_w;
	unsigned int crtc_h;
123 124
	int ret;

125 126 127 128 129 130
	/* 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;
	}

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

134 135
	ret = exynos_plane_mode_set(crtc->primary, crtc, fb, 0, 0,
				    crtc_w, crtc_h, x, y, crtc_w, crtc_h);
136 137 138
	if (ret)
		return ret;

139 140 141 142 143
	if (manager->ops->win_commit)
		manager->ops->win_commit(manager, exynos_plane->zpos);

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

145
	return 0;
146 147
}

148 149 150 151 152 153
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);
}

154 155
static void exynos_drm_crtc_disable(struct drm_crtc *crtc)
{
156 157
	struct drm_plane *plane;
	int ret;
158 159

	exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
160

161
	drm_for_each_legacy_plane(plane, &crtc->dev->mode_config.plane_list) {
162 163 164 165 166 167 168
		if (plane->crtc != crtc)
			continue;

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

171 172 173 174 175 176 177
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,
178
	.disable	= exynos_drm_crtc_disable,
179 180 181
};

static int exynos_drm_crtc_page_flip(struct drm_crtc *crtc,
182 183 184
				     struct drm_framebuffer *fb,
				     struct drm_pending_vblank_event *event,
				     uint32_t page_flip_flags)
185 186 187 188
{
	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);
189
	struct drm_framebuffer *old_fb = crtc->primary->fb;
190 191
	int ret = -EINVAL;

192 193 194 195 196 197
	/* 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;
	}

198 199
	mutex_lock(&dev->struct_mutex);

I
Inki Dae 已提交
200 201 202 203 204 205 206
	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;

207 208 209
		ret = drm_vblank_get(dev, exynos_crtc->pipe);
		if (ret) {
			DRM_DEBUG("failed to acquire vblank counter\n");
I
Inki Dae 已提交
210

211 212 213
			goto out;
		}

214
		spin_lock_irq(&dev->event_lock);
I
Inki Dae 已提交
215 216
		list_add_tail(&event->base.link,
				&dev_priv->pageflip_event_list);
217
		atomic_set(&exynos_crtc->pending_flip, 1);
218
		spin_unlock_irq(&dev->event_lock);
I
Inki Dae 已提交
219

220
		crtc->primary->fb = fb;
221
		ret = exynos_drm_crtc_mode_set_commit(crtc, crtc->x, crtc->y,
222
						    NULL);
223
		if (ret) {
224
			crtc->primary->fb = old_fb;
225 226

			spin_lock_irq(&dev->event_lock);
227
			drm_vblank_put(dev, exynos_crtc->pipe);
I
Inki Dae 已提交
228
			list_del(&event->base.link);
229
			atomic_set(&exynos_crtc->pending_flip, 0);
230
			spin_unlock_irq(&dev->event_lock);
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250

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

251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
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:
272
			exynos_plane_dpms(crtc->primary, DRM_MODE_DPMS_OFF);
273 274 275 276 277 278 279 280 281 282 283
			break;
		default:
			break;
		}

		return 0;
	}

	return -EINVAL;
}

284 285 286 287
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,
288 289 290 291 292 293
	.set_property	= exynos_drm_crtc_set_property,
};

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

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
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);
}

315
int exynos_drm_crtc_create(struct exynos_drm_manager *manager)
316 317
{
	struct exynos_drm_crtc *exynos_crtc;
318
	struct drm_plane *plane;
319
	struct exynos_drm_private *private = manager->drm_dev->dev_private;
320
	struct drm_crtc *crtc;
321
	int ret;
322 323

	exynos_crtc = kzalloc(sizeof(*exynos_crtc), GFP_KERNEL);
324
	if (!exynos_crtc)
325 326
		return -ENOMEM;

327 328
	init_waitqueue_head(&exynos_crtc->pending_flip_queue);
	atomic_set(&exynos_crtc->pending_flip, 0);
329 330 331 332

	exynos_crtc->dpms = DRM_MODE_DPMS_OFF;
	exynos_crtc->manager = manager;
	exynos_crtc->pipe = manager->pipe;
333 334 335 336 337
	plane = exynos_plane_init(manager->drm_dev, 1 << manager->pipe,
				  DRM_PLANE_TYPE_PRIMARY);
	if (IS_ERR(plane)) {
		ret = PTR_ERR(plane);
		goto err_plane;
338 339
	}

340
	manager->crtc = &exynos_crtc->drm_crtc;
341 342
	crtc = &exynos_crtc->drm_crtc;

343
	private->crtc[manager->pipe] = crtc;
344

345 346 347 348 349
	ret = drm_crtc_init_with_planes(manager->drm_dev, crtc, plane, NULL,
					&exynos_crtc_funcs);
	if (ret < 0)
		goto err_crtc;

350 351
	drm_crtc_helper_add(crtc, &exynos_crtc_helper_funcs);

352 353
	exynos_drm_crtc_attach_mode_property(crtc);

354
	return 0;
355 356 357 358 359 360

err_crtc:
	plane->funcs->destroy(plane);
err_plane:
	kfree(exynos_crtc);
	return ret;
361 362
}

363
int exynos_drm_crtc_enable_vblank(struct drm_device *dev, int pipe)
364 365
{
	struct exynos_drm_private *private = dev->dev_private;
366
	struct exynos_drm_crtc *exynos_crtc =
367 368
		to_exynos_crtc(private->crtc[pipe]);
	struct exynos_drm_manager *manager = exynos_crtc->manager;
369

370 371 372
	if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
		return -EPERM;

373 374
	if (manager->ops->enable_vblank)
		manager->ops->enable_vblank(manager);
375 376 377 378

	return 0;
}

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

386 387 388
	if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
		return;

389 390
	if (manager->ops->disable_vblank)
		manager->ops->disable_vblank(manager);
391
}
392

393
void exynos_drm_crtc_finish_pageflip(struct drm_device *dev, int pipe)
394 395 396
{
	struct exynos_drm_private *dev_priv = dev->dev_private;
	struct drm_pending_vblank_event *e, *t;
397
	struct drm_crtc *drm_crtc = dev_priv->crtc[pipe];
398
	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(drm_crtc);
399 400 401 402 403 404 405
	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. */
406
		if (pipe != e->pipe)
407 408
			continue;

409 410
		list_del(&e->base.link);
		drm_send_vblank_event(dev, -1, e);
411
		drm_vblank_put(dev, pipe);
412 413
		atomic_set(&exynos_crtc->pending_flip, 0);
		wake_up(&exynos_crtc->pending_flip_queue);
414 415 416 417
	}

	spin_unlock_irqrestore(&dev->event_lock, flags);
}
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440

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);
	}
}
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

int exynos_drm_crtc_get_pipe_from_type(struct drm_device *drm_dev,
					unsigned int out_type)
{
	struct drm_crtc *crtc;

	list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head) {
		struct exynos_drm_crtc *exynos_crtc;

		exynos_crtc = to_exynos_crtc(crtc);
		if (exynos_crtc->manager->type == out_type)
			return exynos_crtc->manager->pipe;
	}

	return -EPERM;
}
457 458 459 460 461 462 463 464

void exynos_drm_crtc_te_handler(struct drm_crtc *crtc)
{
	struct exynos_drm_manager *manager = to_exynos_crtc(crtc)->manager;

	if (manager->ops->te_handler)
		manager->ops->te_handler(manager);
}