hdmi4.c 16.9 KB
Newer Older
1
/*
2
 * HDMI interface DSS driver for TI's OMAP4 family of SoCs.
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
 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/
 * Authors: Yong Zhi
 *	Mythri pk <mythripk@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 "HDMI"

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/interrupt.h>
#include <linux/mutex.h>
#include <linux/delay.h>
#include <linux/string.h>
30
#include <linux/platform_device.h>
31 32
#include <linux/pm_runtime.h>
#include <linux/clk.h>
33
#include <linux/gpio.h>
34
#include <linux/regulator/consumer.h>
T
Tomi Valkeinen 已提交
35
#include <linux/component.h>
36
#include <video/omapdss.h>
37
#include <sound/omap-hdmi-audio.h>
38

39
#include "hdmi4_core.h"
40
#include "dss.h"
41
#include "dss_features.h"
42
#include "hdmi.h"
43

44
static struct omap_hdmi hdmi;
45

46 47 48 49 50 51 52 53
static int hdmi_runtime_get(void)
{
	int r;

	DSSDBG("hdmi_runtime_get\n");

	r = pm_runtime_get_sync(&hdmi.pdev->dev);
	WARN_ON(r < 0);
54
	if (r < 0)
55
		return r;
56 57

	return 0;
58 59 60 61 62 63 64 65
}

static void hdmi_runtime_put(void)
{
	int r;

	DSSDBG("hdmi_runtime_put\n");

66
	r = pm_runtime_put_sync(&hdmi.pdev->dev);
67
	WARN_ON(r < 0 && r != -ENOSYS);
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 93 94 95 96 97 98 99 100
static irqreturn_t hdmi_irq_handler(int irq, void *data)
{
	struct hdmi_wp_data *wp = data;
	u32 irqstatus;

	irqstatus = hdmi_wp_get_irqstatus(wp);
	hdmi_wp_set_irqstatus(wp, irqstatus);

	if ((irqstatus & HDMI_IRQ_LINK_CONNECT) &&
			irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
		/*
		 * If we get both connect and disconnect interrupts at the same
		 * time, turn off the PHY, clear interrupts, and restart, which
		 * raises connect interrupt if a cable is connected, or nothing
		 * if cable is not connected.
		 */
		hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_OFF);

		hdmi_wp_set_irqstatus(wp, HDMI_IRQ_LINK_CONNECT |
				HDMI_IRQ_LINK_DISCONNECT);

		hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
	} else if (irqstatus & HDMI_IRQ_LINK_CONNECT) {
		hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_TXON);
	} else if (irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
		hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
	}

	return IRQ_HANDLED;
}

101 102
static int hdmi_init_regulator(void)
{
103
	int r;
104 105
	struct regulator *reg;

106
	if (hdmi.vdda_reg != NULL)
107 108
		return 0;

109
	reg = devm_regulator_get(&hdmi.pdev->dev, "vdda");
110 111

	if (IS_ERR(reg)) {
112
		if (PTR_ERR(reg) != -EPROBE_DEFER)
113
			DSSERR("can't get VDDA regulator\n");
114 115 116
		return PTR_ERR(reg);
	}

117 118 119 120 121 122 123 124 125
	if (regulator_can_change_voltage(reg)) {
		r = regulator_set_voltage(reg, 1800000, 1800000);
		if (r) {
			devm_regulator_put(reg);
			DSSWARN("can't set the regulator voltage\n");
			return r;
		}
	}

126
	hdmi.vdda_reg = reg;
127 128 129 130

	return 0;
}

131
static int hdmi_power_on_core(struct omap_dss_device *dssdev)
132
{
133
	int r;
134

135
	r = regulator_enable(hdmi.vdda_reg);
136
	if (r)
137
		return r;
138

139 140
	r = hdmi_runtime_get();
	if (r)
141
		goto err_runtime_get;
142

143 144 145
	/* Make selection of HDMI in DSS */
	dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK);

T
Tomi Valkeinen 已提交
146 147
	hdmi.core_enabled = true;

148 149 150
	return 0;

err_runtime_get:
151
	regulator_disable(hdmi.vdda_reg);
152

153 154 155 156 157
	return r;
}

static void hdmi_power_off_core(struct omap_dss_device *dssdev)
{
T
Tomi Valkeinen 已提交
158 159
	hdmi.core_enabled = false;

160
	hdmi_runtime_put();
161
	regulator_disable(hdmi.vdda_reg);
162 163 164 165 166 167
}

static int hdmi_power_on_full(struct omap_dss_device *dssdev)
{
	int r;
	struct omap_video_timings *p;
168
	struct omap_overlay_manager *mgr = hdmi.output.manager;
169
	struct hdmi_wp_data *wp = &hdmi.wp;
170
	struct dss_pll_clock_info hdmi_cinfo = { 0 };
171
	unsigned pc;
172 173 174 175 176

	r = hdmi_power_on_core(dssdev);
	if (r)
		return r;

177 178 179 180
	/* disable and clear irqs */
	hdmi_wp_clear_irqenable(wp, 0xffffffff);
	hdmi_wp_set_irqstatus(wp, 0xffffffff);

181
	p = &hdmi.cfg.timings;
182

183
	DSSDBG("hdmi_power_on x_res= %d y_res = %d\n", p->x_res, p->y_res);
184

185 186 187 188 189
	pc = p->pixelclock;
	if (p->double_pixel)
		pc *= 2;

	hdmi_pll_compute(&hdmi.pll, pc, &hdmi_cinfo);
190

191
	r = dss_pll_enable(&hdmi.pll.pll);
192
	if (r) {
193
		DSSERR("Failed to enable PLL\n");
194
		goto err_pll_enable;
195 196
	}

197
	r = dss_pll_set_config(&hdmi.pll.pll, &hdmi_cinfo);
198 199 200 201 202
	if (r) {
		DSSERR("Failed to configure PLL\n");
		goto err_pll_cfg;
	}

203 204
	r = hdmi_phy_configure(&hdmi.phy, hdmi_cinfo.clkdco,
		hdmi_cinfo.clkout[0]);
205
	if (r) {
206 207
		DSSDBG("Failed to configure PHY\n");
		goto err_phy_cfg;
208 209
	}

210 211 212 213
	r = hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
	if (r)
		goto err_phy_pwr;

214
	hdmi4_configure(&hdmi.core, &hdmi.wp, &hdmi.cfg);
215 216 217 218 219

	/* bypass TV gamma table */
	dispc_enable_gamma_table(0);

	/* tv size */
220
	dss_mgr_set_timings(mgr->id, p);
221

222
	r = dss_mgr_enable(mgr->id);
223 224
	if (r)
		goto err_mgr_enable;
225

226 227 228 229
	r = hdmi_wp_video_start(&hdmi.wp);
	if (r)
		goto err_vid_enable;

230 231 232
	hdmi_wp_set_irqenable(wp,
		HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);

233
	return 0;
234

235
err_vid_enable:
236 237
	dss_mgr_disable(mgr);
err_mgr_enable:
238 239
	hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
err_phy_pwr:
240
err_phy_cfg:
241
err_pll_cfg:
242
	dss_pll_disable(&hdmi.pll.pll);
243
err_pll_enable:
244
	hdmi_power_off_core(dssdev);
245 246 247
	return -EIO;
}

248
static void hdmi_power_off_full(struct omap_dss_device *dssdev)
249
{
250
	struct omap_overlay_manager *mgr = hdmi.output.manager;
251

252 253
	hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);

254
	hdmi_wp_video_stop(&hdmi.wp);
255

256 257
	dss_mgr_disable(mgr);

258 259
	hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);

260
	dss_pll_disable(&hdmi.pll.pll);
261

262
	hdmi_power_off_core(dssdev);
263 264
}

265
static int hdmi_display_check_timing(struct omap_dss_device *dssdev,
266 267
					struct omap_video_timings *timings)
{
268
	struct omap_dss_device *out = &hdmi.output;
269

270
	if (!dispc_mgr_timings_ok(out->dispc_channel, timings))
271 272 273 274 275
		return -EINVAL;

	return 0;
}

276
static void hdmi_display_set_timing(struct omap_dss_device *dssdev,
277
		struct omap_video_timings *timings)
278
{
279 280
	mutex_lock(&hdmi.lock);

281
	hdmi.cfg.timings = *timings;
282

283
	dispc_set_tv_pclk(timings->pixelclock);
284

285
	mutex_unlock(&hdmi.lock);
286 287
}

288
static void hdmi_display_get_timings(struct omap_dss_device *dssdev,
T
Tomi Valkeinen 已提交
289 290
		struct omap_video_timings *timings)
{
291
	*timings = hdmi.cfg.timings;
T
Tomi Valkeinen 已提交
292 293
}

294
static void hdmi_dump_regs(struct seq_file *s)
295 296 297
{
	mutex_lock(&hdmi.lock);

298 299
	if (hdmi_runtime_get()) {
		mutex_unlock(&hdmi.lock);
300
		return;
301
	}
302

303 304 305 306
	hdmi_wp_dump(&hdmi.wp, s);
	hdmi_pll_dump(&hdmi.pll, s);
	hdmi_phy_dump(&hdmi.phy, s);
	hdmi4_core_dump(&hdmi.core, s);
307 308 309 310 311

	hdmi_runtime_put();
	mutex_unlock(&hdmi.lock);
}

312
static int read_edid(u8 *buf, int len)
313 314 315 316 317 318 319 320
{
	int r;

	mutex_lock(&hdmi.lock);

	r = hdmi_runtime_get();
	BUG_ON(r);

321
	r = hdmi4_read_edid(&hdmi.core,  buf, len);
322 323 324 325 326 327 328

	hdmi_runtime_put();
	mutex_unlock(&hdmi.lock);

	return r;
}

329 330 331 332 333 334 335 336 337 338 339 340
static void hdmi_start_audio_stream(struct omap_hdmi *hd)
{
	hdmi_wp_audio_enable(&hd->wp, true);
	hdmi4_audio_start(&hd->core, &hd->wp);
}

static void hdmi_stop_audio_stream(struct omap_hdmi *hd)
{
	hdmi4_audio_stop(&hd->core, &hd->wp);
	hdmi_wp_audio_enable(&hd->wp, false);
}

341
static int hdmi_display_enable(struct omap_dss_device *dssdev)
342
{
343
	struct omap_dss_device *out = &hdmi.output;
344
	unsigned long flags;
345 346 347 348 349 350
	int r = 0;

	DSSDBG("ENTER hdmi_display_enable\n");

	mutex_lock(&hdmi.lock);

351
	if (!out->dispc_channel_connected) {
352
		DSSERR("failed to enable display: no output/manager\n");
353 354 355 356
		r = -ENODEV;
		goto err0;
	}

357
	r = hdmi_power_on_full(dssdev);
358 359
	if (r) {
		DSSERR("failed to power on device\n");
360
		goto err0;
361 362
	}

363 364 365 366 367 368 369 370 371 372 373 374 375
	if (hdmi.audio_configured) {
		r = hdmi4_audio_config(&hdmi.core, &hdmi.wp, &hdmi.audio_config,
				       hdmi.cfg.timings.pixelclock);
		if (r) {
			DSSERR("Error restoring audio configuration: %d", r);
			hdmi.audio_abort_cb(&hdmi.pdev->dev);
			hdmi.audio_configured = false;
		}
	}

	spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
	if (hdmi.audio_configured && hdmi.audio_playing)
		hdmi_start_audio_stream(&hdmi);
376
	hdmi.display_enabled = true;
377
	spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
378

379 380 381 382 383 384 385 386
	mutex_unlock(&hdmi.lock);
	return 0;

err0:
	mutex_unlock(&hdmi.lock);
	return r;
}

387
static void hdmi_display_disable(struct omap_dss_device *dssdev)
388
{
389 390
	unsigned long flags;

391 392 393 394
	DSSDBG("Enter hdmi_display_disable\n");

	mutex_lock(&hdmi.lock);

395 396 397 398
	spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
	hdmi_stop_audio_stream(&hdmi);
	hdmi.display_enabled = false;
	spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
399

400
	hdmi_power_off_full(dssdev);
401 402 403 404

	mutex_unlock(&hdmi.lock);
}

405
static int hdmi_core_enable(struct omap_dss_device *dssdev)
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
{
	int r = 0;

	DSSDBG("ENTER omapdss_hdmi_core_enable\n");

	mutex_lock(&hdmi.lock);

	r = hdmi_power_on_core(dssdev);
	if (r) {
		DSSERR("failed to power on device\n");
		goto err0;
	}

	mutex_unlock(&hdmi.lock);
	return 0;

err0:
	mutex_unlock(&hdmi.lock);
	return r;
}

427
static void hdmi_core_disable(struct omap_dss_device *dssdev)
428 429 430 431 432 433 434 435 436 437
{
	DSSDBG("Enter omapdss_hdmi_core_disable\n");

	mutex_lock(&hdmi.lock);

	hdmi_power_off_core(dssdev);

	mutex_unlock(&hdmi.lock);
}

T
Tomi Valkeinen 已提交
438 439 440 441 442 443 444 445 446 447 448 449 450 451
static int hdmi_connect(struct omap_dss_device *dssdev,
		struct omap_dss_device *dst)
{
	struct omap_overlay_manager *mgr;
	int r;

	r = hdmi_init_regulator();
	if (r)
		return r;

	mgr = omap_dss_get_overlay_manager(dssdev->dispc_channel);
	if (!mgr)
		return -ENODEV;

452
	r = dss_mgr_connect(mgr->id, dssdev);
T
Tomi Valkeinen 已提交
453 454 455 456 457 458 459
	if (r)
		return r;

	r = omapdss_output_set_device(dssdev, dst);
	if (r) {
		DSSERR("failed to connect output to new device: %s\n",
				dst->name);
460
		dss_mgr_disconnect(mgr->id, dssdev);
T
Tomi Valkeinen 已提交
461 462 463 464 465 466 467 468 469
		return r;
	}

	return 0;
}

static void hdmi_disconnect(struct omap_dss_device *dssdev,
		struct omap_dss_device *dst)
{
470
	WARN_ON(dst != dssdev->dst);
T
Tomi Valkeinen 已提交
471

472
	if (dst != dssdev->dst)
T
Tomi Valkeinen 已提交
473 474 475 476 477
		return;

	omapdss_output_unset_device(dssdev);

	if (dssdev->manager)
478
		dss_mgr_disconnect(dssdev->manager->id, dssdev);
T
Tomi Valkeinen 已提交
479 480 481 482 483 484 485 486 487 488 489
}

static int hdmi_read_edid(struct omap_dss_device *dssdev,
		u8 *edid, int len)
{
	bool need_enable;
	int r;

	need_enable = hdmi.core_enabled == false;

	if (need_enable) {
490
		r = hdmi_core_enable(dssdev);
T
Tomi Valkeinen 已提交
491 492 493 494
		if (r)
			return r;
	}

495
	r = read_edid(edid, len);
T
Tomi Valkeinen 已提交
496 497

	if (need_enable)
498
		hdmi_core_disable(dssdev);
T
Tomi Valkeinen 已提交
499 500 501 502

	return r;
}

503 504 505 506 507 508 509 510 511 512 513 514 515 516
static int hdmi_set_infoframe(struct omap_dss_device *dssdev,
		const struct hdmi_avi_infoframe *avi)
{
	hdmi.cfg.infoframe = *avi;
	return 0;
}

static int hdmi_set_hdmi_mode(struct omap_dss_device *dssdev,
		bool hdmi_mode)
{
	hdmi.cfg.hdmi_dvi_mode = hdmi_mode ? HDMI_HDMI : HDMI_DVI;
	return 0;
}

T
Tomi Valkeinen 已提交
517 518 519 520
static const struct omapdss_hdmi_ops hdmi_ops = {
	.connect		= hdmi_connect,
	.disconnect		= hdmi_disconnect,

521 522
	.enable			= hdmi_display_enable,
	.disable		= hdmi_display_disable,
T
Tomi Valkeinen 已提交
523

524 525 526
	.check_timings		= hdmi_display_check_timing,
	.set_timings		= hdmi_display_set_timing,
	.get_timings		= hdmi_display_get_timings,
T
Tomi Valkeinen 已提交
527 528

	.read_edid		= hdmi_read_edid,
529 530
	.set_infoframe		= hdmi_set_infoframe,
	.set_hdmi_mode		= hdmi_set_hdmi_mode,
T
Tomi Valkeinen 已提交
531 532
};

533
static void hdmi_init_output(struct platform_device *pdev)
534
{
535
	struct omap_dss_device *out = &hdmi.output;
536

537
	out->dev = &pdev->dev;
538
	out->id = OMAP_DSS_OUTPUT_HDMI;
539
	out->output_type = OMAP_DISPLAY_TYPE_HDMI;
T
Tomi Valkeinen 已提交
540
	out->name = "hdmi.0";
541
	out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
T
Tomi Valkeinen 已提交
542
	out->ops.hdmi = &hdmi_ops;
543
	out->owner = THIS_MODULE;
544

545
	omapdss_register_output(out);
546 547
}

548
static void hdmi_uninit_output(struct platform_device *pdev)
549
{
550
	struct omap_dss_device *out = &hdmi.output;
551

552
	omapdss_unregister_output(out);
553 554
}

555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
static int hdmi_probe_of(struct platform_device *pdev)
{
	struct device_node *node = pdev->dev.of_node;
	struct device_node *ep;
	int r;

	ep = omapdss_of_get_first_endpoint(node);
	if (!ep)
		return 0;

	r = hdmi_parse_lanes_of(pdev, ep, &hdmi.phy);
	if (r)
		goto err;

	of_node_put(ep);
	return 0;

err:
	of_node_put(ep);
	return r;
}

577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
/* Audio callbacks */
static int hdmi_audio_startup(struct device *dev,
			      void (*abort_cb)(struct device *dev))
{
	struct omap_hdmi *hd = dev_get_drvdata(dev);
	int ret = 0;

	mutex_lock(&hd->lock);

	if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
		ret = -EPERM;
		goto out;
	}

	hd->audio_abort_cb = abort_cb;

out:
	mutex_unlock(&hd->lock);

	return ret;
}

static int hdmi_audio_shutdown(struct device *dev)
{
	struct omap_hdmi *hd = dev_get_drvdata(dev);

	mutex_lock(&hd->lock);
	hd->audio_abort_cb = NULL;
605 606
	hd->audio_configured = false;
	hd->audio_playing = false;
607 608 609 610 611 612 613 614
	mutex_unlock(&hd->lock);

	return 0;
}

static int hdmi_audio_start(struct device *dev)
{
	struct omap_hdmi *hd = dev_get_drvdata(dev);
615
	unsigned long flags;
616 617 618

	WARN_ON(!hdmi_mode_has_audio(&hd->cfg));

619 620 621 622 623
	spin_lock_irqsave(&hd->audio_playing_lock, flags);

	if (hd->display_enabled)
		hdmi_start_audio_stream(hd);
	hd->audio_playing = true;
624

625
	spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
626 627 628 629 630 631
	return 0;
}

static void hdmi_audio_stop(struct device *dev)
{
	struct omap_hdmi *hd = dev_get_drvdata(dev);
632
	unsigned long flags;
633 634 635

	WARN_ON(!hdmi_mode_has_audio(&hd->cfg));

636 637 638 639 640 641 642
	spin_lock_irqsave(&hd->audio_playing_lock, flags);

	if (hd->display_enabled)
		hdmi_stop_audio_stream(hd);
	hd->audio_playing = false;

	spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
}

static int hdmi_audio_config(struct device *dev,
			     struct omap_dss_audio *dss_audio)
{
	struct omap_hdmi *hd = dev_get_drvdata(dev);
	int ret;

	mutex_lock(&hd->lock);

	if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
		ret = -EPERM;
		goto out;
	}

	ret = hdmi4_audio_config(&hd->core, &hd->wp, dss_audio,
				 hd->cfg.timings.pixelclock);
660 661 662 663
	if (!ret) {
		hd->audio_configured = true;
		hd->audio_config = *dss_audio;
	}
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
out:
	mutex_unlock(&hd->lock);

	return ret;
}

static const struct omap_hdmi_audio_ops hdmi_audio_ops = {
	.audio_startup = hdmi_audio_startup,
	.audio_shutdown = hdmi_audio_shutdown,
	.audio_start = hdmi_audio_start,
	.audio_stop = hdmi_audio_stop,
	.audio_config = hdmi_audio_config,
};

static int hdmi_audio_register(struct device *dev)
{
	struct omap_hdmi_audio_pdata pdata = {
		.dev = dev,
		.dss_version = omapdss_get_version(),
		.audio_dma_addr = hdmi_wp_get_audio_dma_addr(&hdmi.wp),
		.ops = &hdmi_audio_ops,
	};

	hdmi.audio_pdev = platform_device_register_data(
		dev, "omap-hdmi-audio", PLATFORM_DEVID_AUTO,
		&pdata, sizeof(pdata));

	if (IS_ERR(hdmi.audio_pdev))
		return PTR_ERR(hdmi.audio_pdev);

	return 0;
}

697
/* HDMI HW IP initialisation */
T
Tomi Valkeinen 已提交
698
static int hdmi4_bind(struct device *dev, struct device *master, void *data)
699
{
T
Tomi Valkeinen 已提交
700
	struct platform_device *pdev = to_platform_device(dev);
701
	int r;
702
	int irq;
703 704

	hdmi.pdev = pdev;
705
	dev_set_drvdata(&pdev->dev, &hdmi);
706 707

	mutex_init(&hdmi.lock);
708
	spin_lock_init(&hdmi.audio_playing_lock);
709

710 711 712 713 714 715
	if (pdev->dev.of_node) {
		r = hdmi_probe_of(pdev);
		if (r)
			return r;
	}

716
	r = hdmi_wp_init(pdev, &hdmi.wp);
717 718
	if (r)
		return r;
719

720
	r = hdmi_pll_init(pdev, &hdmi.pll, &hdmi.wp);
721 722 723
	if (r)
		return r;

724
	r = hdmi_phy_init(pdev, &hdmi.phy);
725
	if (r)
726
		goto err;
727

728
	r = hdmi4_core_init(pdev, &hdmi.core);
729
	if (r)
730
		goto err;
731

732 733 734
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
		DSSERR("platform_get_irq failed\n");
735 736
		r = -ENODEV;
		goto err;
737 738 739 740 741 742 743
	}

	r = devm_request_threaded_irq(&pdev->dev, irq,
			NULL, hdmi_irq_handler,
			IRQF_ONESHOT, "OMAP HDMI", &hdmi.wp);
	if (r) {
		DSSERR("HDMI IRQ request failed\n");
744
		goto err;
745 746
	}

747 748
	pm_runtime_enable(&pdev->dev);

749 750
	hdmi_init_output(pdev);

751 752 753 754 755 756 757 758
	r = hdmi_audio_register(&pdev->dev);
	if (r) {
		DSSERR("Registering HDMI audio failed\n");
		hdmi_uninit_output(pdev);
		pm_runtime_disable(&pdev->dev);
		return r;
	}

759 760
	dss_debugfs_create_file("hdmi", hdmi_dump_regs);

761
	return 0;
762 763 764
err:
	hdmi_pll_uninit(&hdmi.pll);
	return r;
765 766
}

T
Tomi Valkeinen 已提交
767
static void hdmi4_unbind(struct device *dev, struct device *master, void *data)
768
{
T
Tomi Valkeinen 已提交
769 770
	struct platform_device *pdev = to_platform_device(dev);

771 772 773
	if (hdmi.audio_pdev)
		platform_device_unregister(hdmi.audio_pdev);

774 775
	hdmi_uninit_output(pdev);

776 777
	hdmi_pll_uninit(&hdmi.pll);

778
	pm_runtime_disable(&pdev->dev);
T
Tomi Valkeinen 已提交
779 780 781 782 783 784
}

static const struct component_ops hdmi4_component_ops = {
	.bind	= hdmi4_bind,
	.unbind	= hdmi4_unbind,
};
785

T
Tomi Valkeinen 已提交
786 787 788 789 790 791 792 793
static int hdmi4_probe(struct platform_device *pdev)
{
	return component_add(&pdev->dev, &hdmi4_component_ops);
}

static int hdmi4_remove(struct platform_device *pdev)
{
	component_del(&pdev->dev, &hdmi4_component_ops);
794 795 796
	return 0;
}

797 798 799 800 801 802 803 804 805 806 807 808 809
static int hdmi_runtime_suspend(struct device *dev)
{
	dispc_runtime_put();

	return 0;
}

static int hdmi_runtime_resume(struct device *dev)
{
	int r;

	r = dispc_runtime_get();
	if (r < 0)
810
		return r;
811 812 813 814 815 816 817 818 819

	return 0;
}

static const struct dev_pm_ops hdmi_pm_ops = {
	.runtime_suspend = hdmi_runtime_suspend,
	.runtime_resume = hdmi_runtime_resume,
};

T
Tomi Valkeinen 已提交
820 821 822 823 824
static const struct of_device_id hdmi_of_match[] = {
	{ .compatible = "ti,omap4-hdmi", },
	{},
};

825
static struct platform_driver omapdss_hdmihw_driver = {
T
Tomi Valkeinen 已提交
826 827
	.probe		= hdmi4_probe,
	.remove		= hdmi4_remove,
828 829
	.driver         = {
		.name   = "omapdss_hdmi",
830
		.pm	= &hdmi_pm_ops,
T
Tomi Valkeinen 已提交
831
		.of_match_table = hdmi_of_match,
T
Tomi Valkeinen 已提交
832
		.suppress_bind_attrs = true,
833 834 835
	},
};

836
int __init hdmi4_init_platform_driver(void)
837
{
838
	return platform_driver_register(&omapdss_hdmihw_driver);
839 840
}

841
void hdmi4_uninit_platform_driver(void)
842
{
843
	platform_driver_unregister(&omapdss_hdmihw_driver);
844
}