apply.c 13.4 KB
Newer Older
T
Tomi Valkeinen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/*
 * Copyright (C) 2011 Texas Instruments
 * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#define DSS_SUBSYS_NAME "APPLY"

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/jiffies.h>

#include <video/omapdss.h>

#include "dss.h"
#include "dss_features.h"

/*
 * We have 4 levels of cache for the dispc settings. First two are in SW and
 * the latter two in HW.
 *
 * +--------------------+
 * |overlay/manager_info|
 * +--------------------+
 *          v
 *        apply()
 *          v
 * +--------------------+
 * |     dss_cache      |
 * +--------------------+
 *          v
44
 *      write_regs()
T
Tomi Valkeinen 已提交
45 46 47 48 49 50 51 52 53 54 55 56
 *          v
 * +--------------------+
 * |  shadow registers  |
 * +--------------------+
 *          v
 * VFP or lcd/digit_enable
 *          v
 * +--------------------+
 * |      registers     |
 * +--------------------+
 */

57
struct ovl_priv_data {
T
Tomi Valkeinen 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	/* If true, cache changed, but not written to shadow registers. Set
	 * in apply(), cleared when registers written. */
	bool dirty;
	/* If true, shadow registers contain changed values not yet in real
	 * registers. Set when writing to shadow registers, cleared at
	 * VSYNC/EVSYNC */
	bool shadow_dirty;

	bool enabled;

	struct omap_overlay_info info;

	enum omap_channel channel;

	u32 fifo_low;
	u32 fifo_high;
};

struct manager_cache_data {
	/* If true, cache changed, but not written to shadow registers. Set
	 * in apply(), cleared when registers written. */
	bool dirty;
	/* If true, shadow registers contain changed values not yet in real
	 * registers. Set when writing to shadow registers, cleared at
	 * VSYNC/EVSYNC */
	bool shadow_dirty;

	struct omap_overlay_manager_info info;

	bool manual_update;
	bool do_manual_update;
};

static struct {
	spinlock_t lock;
93
	struct ovl_priv_data ovl_priv_data_array[MAX_DSS_OVERLAYS];
T
Tomi Valkeinen 已提交
94 95 96 97 98
	struct manager_cache_data manager_cache[MAX_DSS_MANAGERS];

	bool irq_enabled;
} dss_cache;

99 100 101 102 103
static struct ovl_priv_data *get_ovl_priv(struct omap_overlay *ovl)
{
	return &dss_cache.ovl_priv_data_array[ovl->id];
}

T
Tomi Valkeinen 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
void dss_apply_init(void)
{
	spin_lock_init(&dss_cache.lock);
}

static bool ovl_manual_update(struct omap_overlay *ovl)
{
	return ovl->manager->device->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE;
}

static bool mgr_manual_update(struct omap_overlay_manager *mgr)
{
	return mgr->device->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE;
}

static int overlay_enabled(struct omap_overlay *ovl)
{
	return ovl->info.enabled && ovl->manager && ovl->manager->device;
}

int dss_mgr_wait_for_go(struct omap_overlay_manager *mgr)
{
	unsigned long timeout = msecs_to_jiffies(500);
	struct manager_cache_data *mc;
	u32 irq;
	int r;
	int i;
	struct omap_dss_device *dssdev = mgr->device;

	if (!dssdev || dssdev->state != OMAP_DSS_DISPLAY_ACTIVE)
		return 0;

	if (mgr_manual_update(mgr))
		return 0;

139
	irq = dispc_mgr_get_vsync_irq(mgr->id);
T
Tomi Valkeinen 已提交
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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

	mc = &dss_cache.manager_cache[mgr->id];
	i = 0;
	while (1) {
		unsigned long flags;
		bool shadow_dirty, dirty;

		spin_lock_irqsave(&dss_cache.lock, flags);
		dirty = mc->dirty;
		shadow_dirty = mc->shadow_dirty;
		spin_unlock_irqrestore(&dss_cache.lock, flags);

		if (!dirty && !shadow_dirty) {
			r = 0;
			break;
		}

		/* 4 iterations is the worst case:
		 * 1 - initial iteration, dirty = true (between VFP and VSYNC)
		 * 2 - first VSYNC, dirty = true
		 * 3 - dirty = false, shadow_dirty = true
		 * 4 - shadow_dirty = false */
		if (i++ == 3) {
			DSSERR("mgr(%d)->wait_for_go() not finishing\n",
					mgr->id);
			r = 0;
			break;
		}

		r = omap_dispc_wait_for_irq_interruptible_timeout(irq, timeout);
		if (r == -ERESTARTSYS)
			break;

		if (r) {
			DSSERR("mgr(%d)->wait_for_go() timeout\n", mgr->id);
			break;
		}
	}

	return r;
}

int dss_mgr_wait_for_go_ovl(struct omap_overlay *ovl)
{
	unsigned long timeout = msecs_to_jiffies(500);
185
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	struct omap_dss_device *dssdev;
	u32 irq;
	int r;
	int i;

	if (!ovl->manager)
		return 0;

	dssdev = ovl->manager->device;

	if (!dssdev || dssdev->state != OMAP_DSS_DISPLAY_ACTIVE)
		return 0;

	if (ovl_manual_update(ovl))
		return 0;

202
	irq = dispc_mgr_get_vsync_irq(ovl->manager->id);
T
Tomi Valkeinen 已提交
203

204
	op = get_ovl_priv(ovl);
T
Tomi Valkeinen 已提交
205 206 207 208 209 210
	i = 0;
	while (1) {
		unsigned long flags;
		bool shadow_dirty, dirty;

		spin_lock_irqsave(&dss_cache.lock, flags);
211 212
		dirty = op->dirty;
		shadow_dirty = op->shadow_dirty;
T
Tomi Valkeinen 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
		spin_unlock_irqrestore(&dss_cache.lock, flags);

		if (!dirty && !shadow_dirty) {
			r = 0;
			break;
		}

		/* 4 iterations is the worst case:
		 * 1 - initial iteration, dirty = true (between VFP and VSYNC)
		 * 2 - first VSYNC, dirty = true
		 * 3 - dirty = false, shadow_dirty = true
		 * 4 - shadow_dirty = false */
		if (i++ == 3) {
			DSSERR("ovl(%d)->wait_for_go() not finishing\n",
					ovl->id);
			r = 0;
			break;
		}

		r = omap_dispc_wait_for_irq_interruptible_timeout(irq, timeout);
		if (r == -ERESTARTSYS)
			break;

		if (r) {
			DSSERR("ovl(%d)->wait_for_go() timeout\n", ovl->id);
			break;
		}
	}

	return r;
}

245
static int dss_ovl_write_regs(struct omap_overlay *ovl)
T
Tomi Valkeinen 已提交
246
{
247
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
248 249 250 251
	struct omap_overlay_info *oi;
	bool ilace, replication;
	int r;

252
	DSSDBGF("%d", ovl->id);
T
Tomi Valkeinen 已提交
253

254 255
	op = get_ovl_priv(ovl);
	oi = &op->info;
T
Tomi Valkeinen 已提交
256

257
	if (!op->enabled) {
258
		dispc_ovl_enable(ovl->id, 0);
T
Tomi Valkeinen 已提交
259 260 261 262 263 264 265
		return 0;
	}

	replication = dss_use_replication(ovl->manager->device, oi->color_mode);

	ilace = ovl->manager->device->type == OMAP_DISPLAY_TYPE_VENC;

266
	dispc_ovl_set_channel_out(ovl->id, op->channel);
T
Tomi Valkeinen 已提交
267

268
	r = dispc_ovl_setup(ovl->id, oi, ilace, replication);
T
Tomi Valkeinen 已提交
269 270
	if (r) {
		/* this shouldn't happen */
271 272
		DSSERR("dispc_ovl_setup failed for ovl %d\n", ovl->id);
		dispc_ovl_enable(ovl->id, 0);
T
Tomi Valkeinen 已提交
273 274 275
		return r;
	}

276
	dispc_ovl_set_fifo_threshold(ovl->id, op->fifo_low, op->fifo_high);
T
Tomi Valkeinen 已提交
277

278
	dispc_ovl_enable(ovl->id, 1);
T
Tomi Valkeinen 已提交
279 280 281 282

	return 0;
}

283
static void dss_mgr_write_regs(struct omap_overlay_manager *mgr)
T
Tomi Valkeinen 已提交
284 285 286
{
	struct omap_overlay_manager_info *mi;

287
	DSSDBGF("%d", mgr->id);
T
Tomi Valkeinen 已提交
288

289
	mi = &dss_cache.manager_cache[mgr->id].info;
T
Tomi Valkeinen 已提交
290

291
	dispc_mgr_setup(mgr->id, mi);
T
Tomi Valkeinen 已提交
292 293
}

294
/* dss_write_regs() tries to write values from cache to shadow registers.
T
Tomi Valkeinen 已提交
295 296 297
 * It writes only to those managers/overlays that are not busy.
 * returns 0 if everything could be written to shadow registers.
 * returns 1 if not everything could be written to shadow registers. */
298
static int dss_write_regs(void)
T
Tomi Valkeinen 已提交
299
{
300 301
	struct omap_overlay *ovl;
	struct omap_overlay_manager *mgr;
302
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
	struct manager_cache_data *mc;
	const int num_ovls = dss_feat_get_num_ovls();
	const int num_mgrs = dss_feat_get_num_mgrs();
	int i;
	int r;
	bool mgr_busy[MAX_DSS_MANAGERS];
	bool mgr_go[MAX_DSS_MANAGERS];
	bool busy;

	r = 0;
	busy = false;

	for (i = 0; i < num_mgrs; i++) {
		mgr_busy[i] = dispc_mgr_go_busy(i);
		mgr_go[i] = false;
	}

	/* Commit overlay settings */
	for (i = 0; i < num_ovls; ++i) {
322
		ovl = omap_dss_get_overlay(i);
323 324
		op = get_ovl_priv(ovl);
		mc = &dss_cache.manager_cache[op->channel];
T
Tomi Valkeinen 已提交
325

326
		if (!op->dirty)
T
Tomi Valkeinen 已提交
327 328 329 330 331
			continue;

		if (mc->manual_update && !mc->do_manual_update)
			continue;

332
		if (mgr_busy[op->channel]) {
T
Tomi Valkeinen 已提交
333 334 335 336
			busy = true;
			continue;
		}

337
		r = dss_ovl_write_regs(ovl);
T
Tomi Valkeinen 已提交
338
		if (r)
339
			DSSERR("dss_ovl_write_regs %d failed\n", i);
T
Tomi Valkeinen 已提交
340

341 342 343
		op->dirty = false;
		op->shadow_dirty = true;
		mgr_go[op->channel] = true;
T
Tomi Valkeinen 已提交
344 345 346 347
	}

	/* Commit manager settings */
	for (i = 0; i < num_mgrs; ++i) {
348
		mgr = omap_dss_get_overlay_manager(i);
T
Tomi Valkeinen 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361
		mc = &dss_cache.manager_cache[i];

		if (!mc->dirty)
			continue;

		if (mc->manual_update && !mc->do_manual_update)
			continue;

		if (mgr_busy[i]) {
			busy = true;
			continue;
		}

362
		dss_mgr_write_regs(mgr);
T
Tomi Valkeinen 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
		mc->dirty = false;
		mc->shadow_dirty = true;
		mgr_go[i] = true;
	}

	/* set GO */
	for (i = 0; i < num_mgrs; ++i) {
		mc = &dss_cache.manager_cache[i];

		if (!mgr_go[i])
			continue;

		/* We don't need GO with manual update display. LCD iface will
		 * always be turned off after frame, and new settings will be
		 * taken in to use at next update */
		if (!mc->manual_update)
			dispc_mgr_go(i);
	}

	if (busy)
		r = 1;
	else
		r = 0;

	return r;
}

void dss_mgr_start_update(struct omap_overlay_manager *mgr)
{
	struct manager_cache_data *mc;
393
	struct ovl_priv_data *op;
394
	struct omap_overlay *ovl;
T
Tomi Valkeinen 已提交
395 396 397 398

	mc = &dss_cache.manager_cache[mgr->id];

	mc->do_manual_update = true;
399
	dss_write_regs();
T
Tomi Valkeinen 已提交
400 401
	mc->do_manual_update = false;

402
	list_for_each_entry(ovl, &mgr->overlays, list) {
403 404
		op = get_ovl_priv(ovl);
		op->shadow_dirty = false;
T
Tomi Valkeinen 已提交
405 406
	}

407 408
	mc = &dss_cache.manager_cache[mgr->id];
	mc->shadow_dirty = false;
T
Tomi Valkeinen 已提交
409

410
	dispc_mgr_enable(mgr->id, true);
T
Tomi Valkeinen 已提交
411 412
}

413 414 415 416
static void dss_apply_irq_handler(void *data, u32 mask);

static void dss_register_vsync_isr(void)
{
417
	const int num_mgrs = dss_feat_get_num_mgrs();
418
	u32 mask;
419
	int r, i;
420

421 422 423
	mask = 0;
	for (i = 0; i < num_mgrs; ++i)
		mask |= dispc_mgr_get_vsync_irq(i);
424 425 426 427 428 429 430 431 432

	r = omap_dispc_register_isr(dss_apply_irq_handler, NULL, mask);
	WARN_ON(r);

	dss_cache.irq_enabled = true;
}

static void dss_unregister_vsync_isr(void)
{
433
	const int num_mgrs = dss_feat_get_num_mgrs();
434
	u32 mask;
435
	int r, i;
436

437 438 439
	mask = 0;
	for (i = 0; i < num_mgrs; ++i)
		mask |= dispc_mgr_get_vsync_irq(i);
440 441 442 443 444 445 446

	r = omap_dispc_unregister_isr(dss_apply_irq_handler, NULL, mask);
	WARN_ON(r);

	dss_cache.irq_enabled = false;
}

T
Tomi Valkeinen 已提交
447 448
static void dss_apply_irq_handler(void *data, u32 mask)
{
449
	struct omap_overlay *ovl;
T
Tomi Valkeinen 已提交
450
	struct manager_cache_data *mc;
451
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
452 453 454 455 456 457 458 459 460 461 462
	const int num_ovls = dss_feat_get_num_ovls();
	const int num_mgrs = dss_feat_get_num_mgrs();
	int i, r;
	bool mgr_busy[MAX_DSS_MANAGERS];

	for (i = 0; i < num_mgrs; i++)
		mgr_busy[i] = dispc_mgr_go_busy(i);

	spin_lock(&dss_cache.lock);

	for (i = 0; i < num_ovls; ++i) {
463 464 465 466
		ovl = omap_dss_get_overlay(i);
		op = get_ovl_priv(ovl);
		if (!mgr_busy[op->channel])
			op->shadow_dirty = false;
T
Tomi Valkeinen 已提交
467 468 469 470 471 472 473 474
	}

	for (i = 0; i < num_mgrs; ++i) {
		mc = &dss_cache.manager_cache[i];
		if (!mgr_busy[i])
			mc->shadow_dirty = false;
	}

475
	r = dss_write_regs();
T
Tomi Valkeinen 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488 489
	if (r == 1)
		goto end;

	/* re-read busy flags */
	for (i = 0; i < num_mgrs; i++)
		mgr_busy[i] = dispc_mgr_go_busy(i);

	/* keep running as long as there are busy managers, so that
	 * we can collect overlay-applied information */
	for (i = 0; i < num_mgrs; ++i) {
		if (mgr_busy[i])
			goto end;
	}

490
	dss_unregister_vsync_isr();
T
Tomi Valkeinen 已提交
491 492 493 494 495 496 497

end:
	spin_unlock(&dss_cache.lock);
}

static int omap_dss_mgr_apply_ovl(struct omap_overlay *ovl)
{
498
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
499 500
	struct omap_dss_device *dssdev;

501
	op = get_ovl_priv(ovl);
T
Tomi Valkeinen 已提交
502 503 504 505 506 507 508

	if (ovl->manager_changed) {
		ovl->manager_changed = false;
		ovl->info_dirty  = true;
	}

	if (!overlay_enabled(ovl)) {
509 510 511
		if (op->enabled) {
			op->enabled = false;
			op->dirty = true;
T
Tomi Valkeinen 已提交
512 513 514 515 516 517 518 519 520 521
		}
		return 0;
	}

	if (!ovl->info_dirty)
		return 0;

	dssdev = ovl->manager->device;

	if (dss_check_overlay(ovl, dssdev)) {
522 523 524
		if (op->enabled) {
			op->enabled = false;
			op->dirty = true;
T
Tomi Valkeinen 已提交
525 526 527 528 529
		}
		return -EINVAL;
	}

	ovl->info_dirty = false;
530 531
	op->dirty = true;
	op->info = ovl->info;
T
Tomi Valkeinen 已提交
532

533
	op->channel = ovl->manager->id;
T
Tomi Valkeinen 已提交
534

535
	op->enabled = true;
T
Tomi Valkeinen 已提交
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565

	return 0;
}

static void omap_dss_mgr_apply_mgr(struct omap_overlay_manager *mgr)
{
	struct manager_cache_data *mc;

	mc = &dss_cache.manager_cache[mgr->id];

	if (mgr->device_changed) {
		mgr->device_changed = false;
		mgr->info_dirty  = true;
	}

	if (!mgr->info_dirty)
		return;

	if (!mgr->device)
		return;

	mgr->info_dirty = false;
	mc->dirty = true;
	mc->info = mgr->info;

	mc->manual_update = mgr_manual_update(mgr);
}

static void omap_dss_mgr_apply_ovl_fifos(struct omap_overlay *ovl)
{
566
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
567 568 569
	struct omap_dss_device *dssdev;
	u32 size, burst_size;

570
	op = get_ovl_priv(ovl);
T
Tomi Valkeinen 已提交
571

572
	if (!op->enabled)
T
Tomi Valkeinen 已提交
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
		return;

	dssdev = ovl->manager->device;

	size = dispc_ovl_get_fifo_size(ovl->id);

	burst_size = dispc_ovl_get_burst_size(ovl->id);

	switch (dssdev->type) {
	case OMAP_DISPLAY_TYPE_DPI:
	case OMAP_DISPLAY_TYPE_DBI:
	case OMAP_DISPLAY_TYPE_SDI:
	case OMAP_DISPLAY_TYPE_VENC:
	case OMAP_DISPLAY_TYPE_HDMI:
		default_get_overlay_fifo_thresholds(ovl->id, size,
588 589
				burst_size, &op->fifo_low,
				&op->fifo_high);
T
Tomi Valkeinen 已提交
590 591 592 593
		break;
#ifdef CONFIG_OMAP2_DSS_DSI
	case OMAP_DISPLAY_TYPE_DSI:
		dsi_get_overlay_fifo_thresholds(ovl->id, size,
594 595
				burst_size, &op->fifo_low,
				&op->fifo_high);
T
Tomi Valkeinen 已提交
596 597 598 599 600 601 602 603 604
		break;
#endif
	default:
		BUG();
	}
}

int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
{
605
	int r;
T
Tomi Valkeinen 已提交
606
	unsigned long flags;
607
	struct omap_overlay *ovl;
T
Tomi Valkeinen 已提交
608 609 610 611 612 613 614 615 616 617

	DSSDBG("omap_dss_mgr_apply(%s)\n", mgr->name);

	r = dispc_runtime_get();
	if (r)
		return r;

	spin_lock_irqsave(&dss_cache.lock, flags);

	/* Configure overlays */
618
	list_for_each_entry(ovl, &mgr->overlays, list)
T
Tomi Valkeinen 已提交
619 620 621 622 623 624
		omap_dss_mgr_apply_ovl(ovl);

	/* Configure manager */
	omap_dss_mgr_apply_mgr(mgr);

	/* Configure overlay fifos */
625
	list_for_each_entry(ovl, &mgr->overlays, list)
T
Tomi Valkeinen 已提交
626 627 628
		omap_dss_mgr_apply_ovl_fifos(ovl);

	r = 0;
629
	if (mgr->enabled && !mgr_manual_update(mgr)) {
630 631
		if (!dss_cache.irq_enabled)
			dss_register_vsync_isr();
T
Tomi Valkeinen 已提交
632

633
		dss_write_regs();
634
	}
T
Tomi Valkeinen 已提交
635 636 637 638 639 640 641 642

	spin_unlock_irqrestore(&dss_cache.lock, flags);

	dispc_runtime_put();

	return r;
}

643 644 645
void dss_mgr_enable(struct omap_overlay_manager *mgr)
{
	dispc_mgr_enable(mgr->id, true);
646
	mgr->enabled = true;
647 648 649 650 651
}

void dss_mgr_disable(struct omap_overlay_manager *mgr)
{
	dispc_mgr_enable(mgr->id, false);
652
	mgr->enabled = false;
653 654
}