apply.c 20.0 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
/*
 * 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
 * +--------------------+
41
 * |       info         |
T
Tomi Valkeinen 已提交
42 43
 * +--------------------+
 *          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
	/* 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_info info;

	enum omap_channel channel;

	u32 fifo_low;
	u32 fifo_high;
72 73 74 75 76 77

	bool extra_info_dirty;
	bool shadow_extra_info_dirty;

	bool enabled;

T
Tomi Valkeinen 已提交
78 79
};

80
struct mgr_priv_data {
81 82 83 84

	bool user_info_dirty;
	struct omap_overlay_manager_info user_info;

T
Tomi Valkeinen 已提交
85 86 87 88 89 90 91 92 93 94
	/* 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;

95 96 97 98
	/* If true, GO bit is up and shadow registers cannot be written.
	 * Never true for manual update displays */
	bool busy;

T
Tomi Valkeinen 已提交
99 100 101
	/* If true, dispc output is enabled */
	bool updating;

102 103
	/* If true, a display is enabled using this manager */
	bool enabled;
T
Tomi Valkeinen 已提交
104 105 106
};

static struct {
107
	struct ovl_priv_data ovl_priv_data_array[MAX_DSS_OVERLAYS];
108
	struct mgr_priv_data mgr_priv_data_array[MAX_DSS_MANAGERS];
T
Tomi Valkeinen 已提交
109 110

	bool irq_enabled;
111
} dss_data;
T
Tomi Valkeinen 已提交
112

113
/* protects dss_data */
114
static spinlock_t data_lock;
T
Tomi Valkeinen 已提交
115 116
/* lock for blocking functions */
static DEFINE_MUTEX(apply_lock);
117

118 119
static void dss_register_vsync_isr(void);

120 121
static struct ovl_priv_data *get_ovl_priv(struct omap_overlay *ovl)
{
122
	return &dss_data.ovl_priv_data_array[ovl->id];
123 124
}

125 126
static struct mgr_priv_data *get_mgr_priv(struct omap_overlay_manager *mgr)
{
127
	return &dss_data.mgr_priv_data_array[mgr->id];
128 129
}

T
Tomi Valkeinen 已提交
130 131
void dss_apply_init(void)
{
132
	spin_lock_init(&data_lock);
T
Tomi Valkeinen 已提交
133 134 135 136 137 138 139 140 141 142 143 144
}

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

145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
static bool need_isr(void)
{
	const int num_mgrs = dss_feat_get_num_mgrs();
	int i;

	for (i = 0; i < num_mgrs; ++i) {
		struct omap_overlay_manager *mgr;
		struct mgr_priv_data *mp;
		struct omap_overlay *ovl;

		mgr = omap_dss_get_overlay_manager(i);
		mp = get_mgr_priv(mgr);

		if (!mp->enabled)
			continue;

T
Tomi Valkeinen 已提交
161 162 163 164 165 166 167 168
		if (mgr_manual_update(mgr)) {
			/* to catch FRAMEDONE */
			if (mp->updating)
				return true;
		} else {
			/* to catch GO bit going down */
			if (mp->busy)
				return true;
169

T
Tomi Valkeinen 已提交
170 171 172
			/* to write new values to registers */
			if (mp->dirty)
				return true;
173

T
Tomi Valkeinen 已提交
174 175
			list_for_each_entry(ovl, &mgr->overlays, list) {
				struct ovl_priv_data *op;
176

T
Tomi Valkeinen 已提交
177
				op = get_ovl_priv(ovl);
178

T
Tomi Valkeinen 已提交
179 180
				if (!op->enabled)
					continue;
181

T
Tomi Valkeinen 已提交
182 183 184 185
				/* to write new values to registers */
				if (op->dirty || op->extra_info_dirty)
					return true;
			}
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
		}
	}

	return false;
}

static bool need_go(struct omap_overlay_manager *mgr)
{
	struct omap_overlay *ovl;
	struct mgr_priv_data *mp;
	struct ovl_priv_data *op;

	mp = get_mgr_priv(mgr);

	if (mp->shadow_dirty)
		return true;

	list_for_each_entry(ovl, &mgr->overlays, list) {
		op = get_ovl_priv(ovl);
		if (op->shadow_dirty || op->shadow_extra_info_dirty)
			return true;
	}

	return false;
}

T
Tomi Valkeinen 已提交
212 213 214
int dss_mgr_wait_for_go(struct omap_overlay_manager *mgr)
{
	unsigned long timeout = msecs_to_jiffies(500);
215
	struct mgr_priv_data *mp;
T
Tomi Valkeinen 已提交
216 217 218 219 220 221 222 223 224 225 226
	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;

227
	irq = dispc_mgr_get_vsync_irq(mgr->id);
T
Tomi Valkeinen 已提交
228

229
	mp = get_mgr_priv(mgr);
T
Tomi Valkeinen 已提交
230 231 232 233 234
	i = 0;
	while (1) {
		unsigned long flags;
		bool shadow_dirty, dirty;

235
		spin_lock_irqsave(&data_lock, flags);
236 237
		dirty = mp->dirty;
		shadow_dirty = mp->shadow_dirty;
238
		spin_unlock_irqrestore(&data_lock, flags);
T
Tomi Valkeinen 已提交
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272

		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);
273
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
	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;

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

292
	op = get_ovl_priv(ovl);
T
Tomi Valkeinen 已提交
293 294 295 296 297
	i = 0;
	while (1) {
		unsigned long flags;
		bool shadow_dirty, dirty;

298
		spin_lock_irqsave(&data_lock, flags);
299 300
		dirty = op->dirty;
		shadow_dirty = op->shadow_dirty;
301
		spin_unlock_irqrestore(&data_lock, flags);
T
Tomi Valkeinen 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332

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

333
static void dss_ovl_write_regs(struct omap_overlay *ovl)
T
Tomi Valkeinen 已提交
334
{
335
	struct ovl_priv_data *op = get_ovl_priv(ovl);
T
Tomi Valkeinen 已提交
336 337
	struct omap_overlay_info *oi;
	bool ilace, replication;
T
Tomi Valkeinen 已提交
338
	struct mgr_priv_data *mp;
T
Tomi Valkeinen 已提交
339 340
	int r;

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

343 344
	if (!op->enabled || !op->dirty)
		return;
T
Tomi Valkeinen 已提交
345

346
	oi = &op->info;
T
Tomi Valkeinen 已提交
347 348 349 350 351

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

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

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

354
	r = dispc_ovl_setup(ovl->id, oi, ilace, replication);
T
Tomi Valkeinen 已提交
355
	if (r) {
356 357 358 359
		/*
		 * We can't do much here, as this function can be called from
		 * vsync interrupt.
		 */
360
		DSSERR("dispc_ovl_setup failed for ovl %d\n", ovl->id);
361 362 363 364 365

		/* This will leave fifo configurations in a nonoptimal state */
		op->enabled = false;
		dispc_ovl_enable(ovl->id, false);
		return;
T
Tomi Valkeinen 已提交
366 367
	}

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

T
Tomi Valkeinen 已提交
370 371
	mp = get_mgr_priv(ovl->manager);

372
	op->dirty = false;
T
Tomi Valkeinen 已提交
373 374
	if (mp->updating)
		op->shadow_dirty = true;
T
Tomi Valkeinen 已提交
375 376
}

377 378 379
static void dss_ovl_write_regs_extra(struct omap_overlay *ovl)
{
	struct ovl_priv_data *op = get_ovl_priv(ovl);
T
Tomi Valkeinen 已提交
380
	struct mgr_priv_data *mp;
381 382 383

	DSSDBGF("%d", ovl->id);

384 385 386
	if (!op->extra_info_dirty)
		return;

387 388 389 390
	/* note: write also when op->enabled == false, so that the ovl gets
	 * disabled */

	dispc_ovl_enable(ovl->id, op->enabled);
391

T
Tomi Valkeinen 已提交
392 393
	mp = get_mgr_priv(ovl->manager);

394
	op->extra_info_dirty = false;
T
Tomi Valkeinen 已提交
395 396
	if (mp->updating)
		op->shadow_extra_info_dirty = true;
397 398
}

399
static void dss_mgr_write_regs(struct omap_overlay_manager *mgr)
T
Tomi Valkeinen 已提交
400
{
401 402
	struct mgr_priv_data *mp = get_mgr_priv(mgr);
	struct omap_overlay *ovl;
T
Tomi Valkeinen 已提交
403

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

406 407
	if (!mp->enabled)
		return;
T
Tomi Valkeinen 已提交
408

409
	WARN_ON(mp->busy);
T
Tomi Valkeinen 已提交
410 411

	/* Commit overlay settings */
412 413
	list_for_each_entry(ovl, &mgr->overlays, list) {
		dss_ovl_write_regs(ovl);
414 415 416
		dss_ovl_write_regs_extra(ovl);
	}

417 418
	if (mp->dirty) {
		dispc_mgr_setup(mgr->id, &mp->info);
T
Tomi Valkeinen 已提交
419

420
		mp->dirty = false;
T
Tomi Valkeinen 已提交
421 422
		if (mp->updating)
			mp->shadow_dirty = true;
T
Tomi Valkeinen 已提交
423
	}
424 425 426 427 428 429
}

static void dss_write_regs(void)
{
	const int num_mgrs = omap_dss_get_num_overlay_managers();
	int i;
T
Tomi Valkeinen 已提交
430 431

	for (i = 0; i < num_mgrs; ++i) {
432 433 434
		struct omap_overlay_manager *mgr;
		struct mgr_priv_data *mp;

435 436
		mgr = omap_dss_get_overlay_manager(i);
		mp = get_mgr_priv(mgr);
T
Tomi Valkeinen 已提交
437

438
		if (!mp->enabled || mgr_manual_update(mgr) || mp->busy)
T
Tomi Valkeinen 已提交
439 440
			continue;

441 442 443
		dss_mgr_write_regs(mgr);

		if (need_go(mgr)) {
444
			mp->busy = true;
T
Tomi Valkeinen 已提交
445

446 447
			if (!dss_data.irq_enabled && need_isr())
				dss_register_vsync_isr();
T
Tomi Valkeinen 已提交
448

449 450 451
			dispc_mgr_go(mgr->id);
		}
	}
T
Tomi Valkeinen 已提交
452 453 454 455
}

void dss_mgr_start_update(struct omap_overlay_manager *mgr)
{
456
	struct mgr_priv_data *mp = get_mgr_priv(mgr);
457 458 459
	unsigned long flags;

	spin_lock_irqsave(&data_lock, flags);
T
Tomi Valkeinen 已提交
460

T
Tomi Valkeinen 已提交
461 462
	WARN_ON(mp->updating);

463
	dss_mgr_write_regs(mgr);
T
Tomi Valkeinen 已提交
464

T
Tomi Valkeinen 已提交
465
	mp->updating = true;
T
Tomi Valkeinen 已提交
466

T
Tomi Valkeinen 已提交
467 468
	if (!dss_data.irq_enabled && need_isr())
		dss_register_vsync_isr();
T
Tomi Valkeinen 已提交
469

470
	dispc_mgr_enable(mgr->id, true);
471 472

	spin_unlock_irqrestore(&data_lock, flags);
T
Tomi Valkeinen 已提交
473 474
}

475 476 477 478
static void dss_apply_irq_handler(void *data, u32 mask);

static void dss_register_vsync_isr(void)
{
479
	const int num_mgrs = dss_feat_get_num_mgrs();
480
	u32 mask;
481
	int r, i;
482

483 484 485
	mask = 0;
	for (i = 0; i < num_mgrs; ++i)
		mask |= dispc_mgr_get_vsync_irq(i);
486

T
Tomi Valkeinen 已提交
487 488 489
	for (i = 0; i < num_mgrs; ++i)
		mask |= dispc_mgr_get_framedone_irq(i);

490 491 492
	r = omap_dispc_register_isr(dss_apply_irq_handler, NULL, mask);
	WARN_ON(r);

493
	dss_data.irq_enabled = true;
494 495 496 497
}

static void dss_unregister_vsync_isr(void)
{
498
	const int num_mgrs = dss_feat_get_num_mgrs();
499
	u32 mask;
500
	int r, i;
501

502 503 504
	mask = 0;
	for (i = 0; i < num_mgrs; ++i)
		mask |= dispc_mgr_get_vsync_irq(i);
505

T
Tomi Valkeinen 已提交
506 507 508
	for (i = 0; i < num_mgrs; ++i)
		mask |= dispc_mgr_get_framedone_irq(i);

509 510 511
	r = omap_dispc_unregister_isr(dss_apply_irq_handler, NULL, mask);
	WARN_ON(r);

512
	dss_data.irq_enabled = false;
513 514
}

515
static void mgr_clear_shadow_dirty(struct omap_overlay_manager *mgr)
T
Tomi Valkeinen 已提交
516
{
517
	struct omap_overlay *ovl;
518
	struct mgr_priv_data *mp;
519
	struct ovl_priv_data *op;
520 521 522 523 524 525 526 527 528 529 530 531 532

	mp = get_mgr_priv(mgr);
	mp->shadow_dirty = false;

	list_for_each_entry(ovl, &mgr->overlays, list) {
		op = get_ovl_priv(ovl);
		op->shadow_dirty = false;
		op->shadow_extra_info_dirty = false;
	}
}

static void dss_apply_irq_handler(void *data, u32 mask)
{
T
Tomi Valkeinen 已提交
533
	const int num_mgrs = dss_feat_get_num_mgrs();
534
	int i;
T
Tomi Valkeinen 已提交
535

536
	spin_lock(&data_lock);
T
Tomi Valkeinen 已提交
537

538
	/* clear busy, updating flags, shadow_dirty flags */
539
	for (i = 0; i < num_mgrs; i++) {
540 541 542
		struct omap_overlay_manager *mgr;
		struct mgr_priv_data *mp;

543 544 545
		mgr = omap_dss_get_overlay_manager(i);
		mp = get_mgr_priv(mgr);

546
		if (!mp->enabled)
547 548
			continue;

549
		mp->updating = dispc_mgr_is_enabled(i);
T
Tomi Valkeinen 已提交
550

551 552
		if (!mgr_manual_update(mgr)) {
			mp->busy = dispc_mgr_go_busy(i);
553

554 555 556 557 558 559
			if (!mp->busy)
				mgr_clear_shadow_dirty(mgr);
		} else {
			if (!mp->updating)
				mgr_clear_shadow_dirty(mgr);
		}
T
Tomi Valkeinen 已提交
560 561
	}

562
	dss_write_regs();
T
Tomi Valkeinen 已提交
563

564 565
	if (!need_isr())
		dss_unregister_vsync_isr();
T
Tomi Valkeinen 已提交
566

567
	spin_unlock(&data_lock);
T
Tomi Valkeinen 已提交
568 569
}

570
static void omap_dss_mgr_apply_ovl(struct omap_overlay *ovl)
T
Tomi Valkeinen 已提交
571
{
572
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
573

574
	op = get_ovl_priv(ovl);
T
Tomi Valkeinen 已提交
575 576 577 578 579 580 581

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

	if (!ovl->info_dirty)
582
		return;
T
Tomi Valkeinen 已提交
583 584

	ovl->info_dirty = false;
585 586
	op->dirty = true;
	op->info = ovl->info;
T
Tomi Valkeinen 已提交
587

588
	op->channel = ovl->manager->id;
T
Tomi Valkeinen 已提交
589 590 591 592
}

static void omap_dss_mgr_apply_mgr(struct omap_overlay_manager *mgr)
{
593
	struct mgr_priv_data *mp;
T
Tomi Valkeinen 已提交
594

595
	mp = get_mgr_priv(mgr);
T
Tomi Valkeinen 已提交
596 597 598

	if (mgr->device_changed) {
		mgr->device_changed = false;
599
		mp->user_info_dirty  = true;
T
Tomi Valkeinen 已提交
600 601
	}

602
	if (!mp->user_info_dirty)
T
Tomi Valkeinen 已提交
603 604
		return;

605
	mp->user_info_dirty = false;
606
	mp->dirty = true;
607
	mp->info = mp->user_info;
T
Tomi Valkeinen 已提交
608 609 610 611
}

static void omap_dss_mgr_apply_ovl_fifos(struct omap_overlay *ovl)
{
612
	struct ovl_priv_data *op;
T
Tomi Valkeinen 已提交
613 614 615
	struct omap_dss_device *dssdev;
	u32 size, burst_size;

616
	op = get_ovl_priv(ovl);
T
Tomi Valkeinen 已提交
617 618 619 620 621 622 623 624 625 626 627 628 629 630

	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,
631 632
				burst_size, &op->fifo_low,
				&op->fifo_high);
T
Tomi Valkeinen 已提交
633 634 635 636
		break;
#ifdef CONFIG_OMAP2_DSS_DSI
	case OMAP_DISPLAY_TYPE_DSI:
		dsi_get_overlay_fifo_thresholds(ovl->id, size,
637 638
				burst_size, &op->fifo_low,
				&op->fifo_high);
T
Tomi Valkeinen 已提交
639 640 641 642 643 644 645 646 647
		break;
#endif
	default:
		BUG();
	}
}

int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
{
648
	int r;
T
Tomi Valkeinen 已提交
649
	unsigned long flags;
650
	struct omap_overlay *ovl;
T
Tomi Valkeinen 已提交
651 652 653 654 655 656 657

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

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

658
	spin_lock_irqsave(&data_lock, flags);
T
Tomi Valkeinen 已提交
659 660

	/* Configure overlays */
661
	list_for_each_entry(ovl, &mgr->overlays, list)
T
Tomi Valkeinen 已提交
662 663 664 665 666 667
		omap_dss_mgr_apply_ovl(ovl);

	/* Configure manager */
	omap_dss_mgr_apply_mgr(mgr);

	/* Configure overlay fifos */
668
	list_for_each_entry(ovl, &mgr->overlays, list)
T
Tomi Valkeinen 已提交
669 670
		omap_dss_mgr_apply_ovl_fifos(ovl);

671
	dss_write_regs();
T
Tomi Valkeinen 已提交
672

673
	spin_unlock_irqrestore(&data_lock, flags);
T
Tomi Valkeinen 已提交
674 675 676 677 678 679

	dispc_runtime_put();

	return r;
}

680 681
void dss_mgr_enable(struct omap_overlay_manager *mgr)
{
682 683 684
	struct mgr_priv_data *mp = get_mgr_priv(mgr);
	unsigned long flags;

T
Tomi Valkeinen 已提交
685 686
	mutex_lock(&apply_lock);

687 688 689 690
	spin_lock_irqsave(&data_lock, flags);

	mp->enabled = true;

691 692
	dss_write_regs();

T
Tomi Valkeinen 已提交
693 694 695
	if (!mgr_manual_update(mgr))
		mp->updating = true;

696
	spin_unlock_irqrestore(&data_lock, flags);
T
Tomi Valkeinen 已提交
697

698 699 700
	if (!mgr_manual_update(mgr))
		dispc_mgr_enable(mgr->id, true);

T
Tomi Valkeinen 已提交
701
	mutex_unlock(&apply_lock);
702 703 704 705
}

void dss_mgr_disable(struct omap_overlay_manager *mgr)
{
706 707 708
	struct mgr_priv_data *mp = get_mgr_priv(mgr);
	unsigned long flags;

T
Tomi Valkeinen 已提交
709 710
	mutex_lock(&apply_lock);

711 712
	if (!mgr_manual_update(mgr))
		dispc_mgr_enable(mgr->id, false);
713 714 715

	spin_lock_irqsave(&data_lock, flags);

T
Tomi Valkeinen 已提交
716
	mp->updating = false;
717 718 719
	mp->enabled = false;

	spin_unlock_irqrestore(&data_lock, flags);
T
Tomi Valkeinen 已提交
720 721

	mutex_unlock(&apply_lock);
722 723
}

724 725 726
int dss_mgr_set_info(struct omap_overlay_manager *mgr,
		struct omap_overlay_manager_info *info)
{
727
	struct mgr_priv_data *mp = get_mgr_priv(mgr);
728 729 730 731
	unsigned long flags;

	spin_lock_irqsave(&data_lock, flags);

732 733
	mp->user_info = *info;
	mp->user_info_dirty = true;
734

735 736
	spin_unlock_irqrestore(&data_lock, flags);

737 738 739 740 741 742
	return 0;
}

void dss_mgr_get_info(struct omap_overlay_manager *mgr,
		struct omap_overlay_manager_info *info)
{
743
	struct mgr_priv_data *mp = get_mgr_priv(mgr);
744 745 746 747
	unsigned long flags;

	spin_lock_irqsave(&data_lock, flags);

748
	*info = mp->user_info;
749 750

	spin_unlock_irqrestore(&data_lock, flags);
751 752 753 754 755 756 757
}

int dss_mgr_set_device(struct omap_overlay_manager *mgr,
		struct omap_dss_device *dssdev)
{
	int r;

T
Tomi Valkeinen 已提交
758 759
	mutex_lock(&apply_lock);

760 761 762
	if (dssdev->manager) {
		DSSERR("display '%s' already has a manager '%s'\n",
			       dssdev->name, dssdev->manager->name);
T
Tomi Valkeinen 已提交
763 764
		r = -EINVAL;
		goto err;
765 766 767 768 769
	}

	if ((mgr->supported_displays & dssdev->type) == 0) {
		DSSERR("display '%s' does not support manager '%s'\n",
			       dssdev->name, mgr->name);
T
Tomi Valkeinen 已提交
770 771
		r = -EINVAL;
		goto err;
772 773 774 775 776 777
	}

	dssdev->manager = mgr;
	mgr->device = dssdev;
	mgr->device_changed = true;

T
Tomi Valkeinen 已提交
778 779
	mutex_unlock(&apply_lock);

780
	return 0;
T
Tomi Valkeinen 已提交
781 782 783
err:
	mutex_unlock(&apply_lock);
	return r;
784 785 786 787
}

int dss_mgr_unset_device(struct omap_overlay_manager *mgr)
{
T
Tomi Valkeinen 已提交
788 789 790 791
	int r;

	mutex_lock(&apply_lock);

792 793
	if (!mgr->device) {
		DSSERR("failed to unset display, display not set.\n");
T
Tomi Valkeinen 已提交
794 795
		r = -EINVAL;
		goto err;
796 797 798 799 800 801
	}

	/*
	 * Don't allow currently enabled displays to have the overlay manager
	 * pulled out from underneath them
	 */
T
Tomi Valkeinen 已提交
802 803 804 805
	if (mgr->device->state != OMAP_DSS_DISPLAY_DISABLED) {
		r = -EINVAL;
		goto err;
	}
806 807 808 809 810

	mgr->device->manager = NULL;
	mgr->device = NULL;
	mgr->device_changed = true;

T
Tomi Valkeinen 已提交
811 812
	mutex_unlock(&apply_lock);

813
	return 0;
T
Tomi Valkeinen 已提交
814 815 816
err:
	mutex_unlock(&apply_lock);
	return r;
817 818 819 820
}



821 822 823
int dss_ovl_set_info(struct omap_overlay *ovl,
		struct omap_overlay_info *info)
{
824 825 826 827
	unsigned long flags;

	spin_lock_irqsave(&data_lock, flags);

828 829 830
	ovl->info = *info;
	ovl->info_dirty = true;

831 832
	spin_unlock_irqrestore(&data_lock, flags);

833 834 835 836 837 838
	return 0;
}

void dss_ovl_get_info(struct omap_overlay *ovl,
		struct omap_overlay_info *info)
{
839 840 841 842
	unsigned long flags;

	spin_lock_irqsave(&data_lock, flags);

843
	*info = ovl->info;
844 845

	spin_unlock_irqrestore(&data_lock, flags);
846 847 848 849 850
}

int dss_ovl_set_manager(struct omap_overlay *ovl,
		struct omap_overlay_manager *mgr)
{
851 852
	struct ovl_priv_data *op = get_ovl_priv(ovl);
	unsigned long flags;
T
Tomi Valkeinen 已提交
853 854
	int r;

855 856 857
	if (!mgr)
		return -EINVAL;

T
Tomi Valkeinen 已提交
858 859
	mutex_lock(&apply_lock);

860 861 862
	if (ovl->manager) {
		DSSERR("overlay '%s' already has a manager '%s'\n",
				ovl->name, ovl->manager->name);
T
Tomi Valkeinen 已提交
863 864
		r = -EINVAL;
		goto err;
865 866
	}

867 868 869 870
	spin_lock_irqsave(&data_lock, flags);

	if (op->enabled) {
		spin_unlock_irqrestore(&data_lock, flags);
871
		DSSERR("overlay has to be disabled to change the manager\n");
T
Tomi Valkeinen 已提交
872 873
		r = -EINVAL;
		goto err;
874 875 876 877 878 879
	}

	ovl->manager = mgr;
	list_add_tail(&ovl->list, &mgr->overlays);
	ovl->manager_changed = true;

880 881
	spin_unlock_irqrestore(&data_lock, flags);

882 883 884 885 886 887 888 889 890 891 892 893 894
	/* XXX: When there is an overlay on a DSI manual update display, and
	 * the overlay is first disabled, then moved to tv, and enabled, we
	 * seem to get SYNC_LOST_DIGIT error.
	 *
	 * Waiting doesn't seem to help, but updating the manual update display
	 * after disabling the overlay seems to fix this. This hints that the
	 * overlay is perhaps somehow tied to the LCD output until the output
	 * is updated.
	 *
	 * Userspace workaround for this is to update the LCD after disabling
	 * the overlay, but before moving the overlay to TV.
	 */

T
Tomi Valkeinen 已提交
895 896
	mutex_unlock(&apply_lock);

897
	return 0;
T
Tomi Valkeinen 已提交
898 899 900
err:
	mutex_unlock(&apply_lock);
	return r;
901 902 903 904
}

int dss_ovl_unset_manager(struct omap_overlay *ovl)
{
905 906
	struct ovl_priv_data *op = get_ovl_priv(ovl);
	unsigned long flags;
T
Tomi Valkeinen 已提交
907 908 909 910
	int r;

	mutex_lock(&apply_lock);

911 912
	if (!ovl->manager) {
		DSSERR("failed to detach overlay: manager not set\n");
T
Tomi Valkeinen 已提交
913 914
		r = -EINVAL;
		goto err;
915 916
	}

917 918 919 920
	spin_lock_irqsave(&data_lock, flags);

	if (op->enabled) {
		spin_unlock_irqrestore(&data_lock, flags);
921
		DSSERR("overlay has to be disabled to unset the manager\n");
T
Tomi Valkeinen 已提交
922 923
		r = -EINVAL;
		goto err;
924 925 926 927 928 929
	}

	ovl->manager = NULL;
	list_del(&ovl->list);
	ovl->manager_changed = true;

930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972
	spin_unlock_irqrestore(&data_lock, flags);

	mutex_unlock(&apply_lock);

	return 0;
err:
	mutex_unlock(&apply_lock);
	return r;
}

bool dss_ovl_is_enabled(struct omap_overlay *ovl)
{
	struct ovl_priv_data *op = get_ovl_priv(ovl);
	unsigned long flags;
	bool e;

	spin_lock_irqsave(&data_lock, flags);

	e = op->enabled;

	spin_unlock_irqrestore(&data_lock, flags);

	return e;
}

int dss_ovl_enable(struct omap_overlay *ovl)
{
	struct ovl_priv_data *op = get_ovl_priv(ovl);
	unsigned long flags;
	int r;

	mutex_lock(&apply_lock);

	if (ovl->manager == NULL || ovl->manager->device == NULL) {
		r = -EINVAL;
		goto err;
	}

	spin_lock_irqsave(&data_lock, flags);

	op->enabled = true;
	op->extra_info_dirty = true;

973 974
	dss_write_regs();

975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
	spin_unlock_irqrestore(&data_lock, flags);

	mutex_unlock(&apply_lock);

	return 0;
err:
	mutex_unlock(&apply_lock);
	return r;
}

int dss_ovl_disable(struct omap_overlay *ovl)
{
	struct ovl_priv_data *op = get_ovl_priv(ovl);
	unsigned long flags;
	int r;

	mutex_lock(&apply_lock);

	if (ovl->manager == NULL || ovl->manager->device == NULL) {
		r = -EINVAL;
		goto err;
	}

	spin_lock_irqsave(&data_lock, flags);

	op->enabled = false;
	op->extra_info_dirty = true;

1003 1004
	dss_write_regs();

1005 1006
	spin_unlock_irqrestore(&data_lock, flags);

T
Tomi Valkeinen 已提交
1007 1008
	mutex_unlock(&apply_lock);

1009
	return 0;
1010

T
Tomi Valkeinen 已提交
1011 1012 1013
err:
	mutex_unlock(&apply_lock);
	return r;
1014 1015
}