hdmi4.c 16.8 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 172 173 174 175

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

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

180
	p = &hdmi.cfg.timings;
181

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

184
	hdmi_pll_compute(&hdmi.pll, p->pixelclock, &hdmi_cinfo);
185

186
	r = dss_pll_enable(&hdmi.pll.pll);
187
	if (r) {
188
		DSSERR("Failed to enable PLL\n");
189
		goto err_pll_enable;
190 191
	}

192
	r = dss_pll_set_config(&hdmi.pll.pll, &hdmi_cinfo);
193 194 195 196 197
	if (r) {
		DSSERR("Failed to configure PLL\n");
		goto err_pll_cfg;
	}

198 199
	r = hdmi_phy_configure(&hdmi.phy, hdmi_cinfo.clkdco,
		hdmi_cinfo.clkout[0]);
200
	if (r) {
201 202
		DSSDBG("Failed to configure PHY\n");
		goto err_phy_cfg;
203 204
	}

205 206 207 208
	r = hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
	if (r)
		goto err_phy_pwr;

209
	hdmi4_configure(&hdmi.core, &hdmi.wp, &hdmi.cfg);
210 211 212 213 214

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

	/* tv size */
215
	dss_mgr_set_timings(mgr, p);
216

217
	r = dss_mgr_enable(mgr);
218 219
	if (r)
		goto err_mgr_enable;
220

221 222 223 224
	r = hdmi_wp_video_start(&hdmi.wp);
	if (r)
		goto err_vid_enable;

225 226 227
	hdmi_wp_set_irqenable(wp,
		HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);

228
	return 0;
229

230
err_vid_enable:
231 232
	dss_mgr_disable(mgr);
err_mgr_enable:
233 234
	hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
err_phy_pwr:
235
err_phy_cfg:
236
err_pll_cfg:
237
	dss_pll_disable(&hdmi.pll.pll);
238
err_pll_enable:
239
	hdmi_power_off_core(dssdev);
240 241 242
	return -EIO;
}

243
static void hdmi_power_off_full(struct omap_dss_device *dssdev)
244
{
245
	struct omap_overlay_manager *mgr = hdmi.output.manager;
246

247 248
	hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);

249
	hdmi_wp_video_stop(&hdmi.wp);
250

251 252
	dss_mgr_disable(mgr);

253 254
	hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);

255
	dss_pll_disable(&hdmi.pll.pll);
256

257
	hdmi_power_off_core(dssdev);
258 259
}

260
static int hdmi_display_check_timing(struct omap_dss_device *dssdev,
261 262
					struct omap_video_timings *timings)
{
263
	struct omap_dss_device *out = &hdmi.output;
264

265
	if (!dispc_mgr_timings_ok(out->dispc_channel, timings))
266 267 268 269 270
		return -EINVAL;

	return 0;
}

271
static void hdmi_display_set_timing(struct omap_dss_device *dssdev,
272
		struct omap_video_timings *timings)
273
{
274 275
	mutex_lock(&hdmi.lock);

276
	hdmi.cfg.timings = *timings;
277

278
	dispc_set_tv_pclk(timings->pixelclock);
279

280
	mutex_unlock(&hdmi.lock);
281 282
}

283
static void hdmi_display_get_timings(struct omap_dss_device *dssdev,
T
Tomi Valkeinen 已提交
284 285
		struct omap_video_timings *timings)
{
286
	*timings = hdmi.cfg.timings;
T
Tomi Valkeinen 已提交
287 288
}

289
static void hdmi_dump_regs(struct seq_file *s)
290 291 292
{
	mutex_lock(&hdmi.lock);

293 294
	if (hdmi_runtime_get()) {
		mutex_unlock(&hdmi.lock);
295
		return;
296
	}
297

298 299 300 301
	hdmi_wp_dump(&hdmi.wp, s);
	hdmi_pll_dump(&hdmi.pll, s);
	hdmi_phy_dump(&hdmi.phy, s);
	hdmi4_core_dump(&hdmi.core, s);
302 303 304 305 306

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

307
static int read_edid(u8 *buf, int len)
308 309 310 311 312 313 314 315
{
	int r;

	mutex_lock(&hdmi.lock);

	r = hdmi_runtime_get();
	BUG_ON(r);

316
	r = hdmi4_read_edid(&hdmi.core,  buf, len);
317 318 319 320 321 322 323

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

	return r;
}

324 325 326 327 328 329 330 331 332 333 334 335
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);
}

336
static int hdmi_display_enable(struct omap_dss_device *dssdev)
337
{
338
	struct omap_dss_device *out = &hdmi.output;
339
	unsigned long flags;
340 341 342 343 344 345
	int r = 0;

	DSSDBG("ENTER hdmi_display_enable\n");

	mutex_lock(&hdmi.lock);

346
	if (out->manager == NULL) {
347
		DSSERR("failed to enable display: no output/manager\n");
348 349 350 351
		r = -ENODEV;
		goto err0;
	}

352
	r = hdmi_power_on_full(dssdev);
353 354
	if (r) {
		DSSERR("failed to power on device\n");
355
		goto err0;
356 357
	}

358 359 360 361 362 363 364 365 366 367 368 369 370
	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);
371
	hdmi.display_enabled = true;
372
	spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
373

374 375 376 377 378 379 380 381
	mutex_unlock(&hdmi.lock);
	return 0;

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

382
static void hdmi_display_disable(struct omap_dss_device *dssdev)
383
{
384 385
	unsigned long flags;

386 387 388 389
	DSSDBG("Enter hdmi_display_disable\n");

	mutex_lock(&hdmi.lock);

390 391 392 393
	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);
394

395
	hdmi_power_off_full(dssdev);
396 397 398 399

	mutex_unlock(&hdmi.lock);
}

400
static int hdmi_core_enable(struct omap_dss_device *dssdev)
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
{
	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;
}

422
static void hdmi_core_disable(struct omap_dss_device *dssdev)
423 424 425 426 427 428 429 430 431 432
{
	DSSDBG("Enter omapdss_hdmi_core_disable\n");

	mutex_lock(&hdmi.lock);

	hdmi_power_off_core(dssdev);

	mutex_unlock(&hdmi.lock);
}

T
Tomi Valkeinen 已提交
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
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;

	r = dss_mgr_connect(mgr, dssdev);
	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);
		dss_mgr_disconnect(mgr, dssdev);
		return r;
	}

	return 0;
}

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

467
	if (dst != dssdev->dst)
T
Tomi Valkeinen 已提交
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
		return;

	omapdss_output_unset_device(dssdev);

	if (dssdev->manager)
		dss_mgr_disconnect(dssdev->manager, dssdev);
}

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) {
485
		r = hdmi_core_enable(dssdev);
T
Tomi Valkeinen 已提交
486 487 488 489
		if (r)
			return r;
	}

490
	r = read_edid(edid, len);
T
Tomi Valkeinen 已提交
491 492

	if (need_enable)
493
		hdmi_core_disable(dssdev);
T
Tomi Valkeinen 已提交
494 495 496 497

	return r;
}

498 499 500 501 502 503 504 505 506 507 508 509 510 511
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 已提交
512 513 514 515
static const struct omapdss_hdmi_ops hdmi_ops = {
	.connect		= hdmi_connect,
	.disconnect		= hdmi_disconnect,

516 517
	.enable			= hdmi_display_enable,
	.disable		= hdmi_display_disable,
T
Tomi Valkeinen 已提交
518

519 520 521
	.check_timings		= hdmi_display_check_timing,
	.set_timings		= hdmi_display_set_timing,
	.get_timings		= hdmi_display_get_timings,
T
Tomi Valkeinen 已提交
522 523

	.read_edid		= hdmi_read_edid,
524 525
	.set_infoframe		= hdmi_set_infoframe,
	.set_hdmi_mode		= hdmi_set_hdmi_mode,
T
Tomi Valkeinen 已提交
526 527
};

528
static void hdmi_init_output(struct platform_device *pdev)
529
{
530
	struct omap_dss_device *out = &hdmi.output;
531

532
	out->dev = &pdev->dev;
533
	out->id = OMAP_DSS_OUTPUT_HDMI;
534
	out->output_type = OMAP_DISPLAY_TYPE_HDMI;
T
Tomi Valkeinen 已提交
535
	out->name = "hdmi.0";
536
	out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
T
Tomi Valkeinen 已提交
537
	out->ops.hdmi = &hdmi_ops;
538
	out->owner = THIS_MODULE;
539

540
	omapdss_register_output(out);
541 542
}

543
static void hdmi_uninit_output(struct platform_device *pdev)
544
{
545
	struct omap_dss_device *out = &hdmi.output;
546

547
	omapdss_unregister_output(out);
548 549
}

550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
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;
}

572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
/* 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;
600 601
	hd->audio_configured = false;
	hd->audio_playing = false;
602 603 604 605 606 607 608 609
	mutex_unlock(&hd->lock);

	return 0;
}

static int hdmi_audio_start(struct device *dev)
{
	struct omap_hdmi *hd = dev_get_drvdata(dev);
610
	unsigned long flags;
611 612 613

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

614 615 616 617 618
	spin_lock_irqsave(&hd->audio_playing_lock, flags);

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

620
	spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
621 622 623 624 625 626
	return 0;
}

static void hdmi_audio_stop(struct device *dev)
{
	struct omap_hdmi *hd = dev_get_drvdata(dev);
627
	unsigned long flags;
628 629 630

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

631 632 633 634 635 636 637
	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);
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
}

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);
655 656 657 658
	if (!ret) {
		hd->audio_configured = true;
		hd->audio_config = *dss_audio;
	}
659 660 661 662 663 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
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;
}

692
/* HDMI HW IP initialisation */
T
Tomi Valkeinen 已提交
693
static int hdmi4_bind(struct device *dev, struct device *master, void *data)
694
{
T
Tomi Valkeinen 已提交
695
	struct platform_device *pdev = to_platform_device(dev);
696
	int r;
697
	int irq;
698 699

	hdmi.pdev = pdev;
700
	dev_set_drvdata(&pdev->dev, &hdmi);
701 702

	mutex_init(&hdmi.lock);
703
	spin_lock_init(&hdmi.audio_playing_lock);
704

705 706 707 708 709 710
	if (pdev->dev.of_node) {
		r = hdmi_probe_of(pdev);
		if (r)
			return r;
	}

711
	r = hdmi_wp_init(pdev, &hdmi.wp);
712 713
	if (r)
		return r;
714

715
	r = hdmi_pll_init(pdev, &hdmi.pll, &hdmi.wp);
716 717 718
	if (r)
		return r;

719
	r = hdmi_phy_init(pdev, &hdmi.phy);
720
	if (r)
721
		goto err;
722

723
	r = hdmi4_core_init(pdev, &hdmi.core);
724
	if (r)
725
		goto err;
726

727 728 729
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
		DSSERR("platform_get_irq failed\n");
730 731
		r = -ENODEV;
		goto err;
732 733 734 735 736 737 738
	}

	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");
739
		goto err;
740 741
	}

742 743
	pm_runtime_enable(&pdev->dev);

744 745
	hdmi_init_output(pdev);

746 747 748 749 750 751 752 753
	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;
	}

754 755
	dss_debugfs_create_file("hdmi", hdmi_dump_regs);

756
	return 0;
757 758 759
err:
	hdmi_pll_uninit(&hdmi.pll);
	return r;
760 761
}

T
Tomi Valkeinen 已提交
762
static void hdmi4_unbind(struct device *dev, struct device *master, void *data)
763
{
T
Tomi Valkeinen 已提交
764 765
	struct platform_device *pdev = to_platform_device(dev);

766 767 768
	if (hdmi.audio_pdev)
		platform_device_unregister(hdmi.audio_pdev);

769 770
	hdmi_uninit_output(pdev);

771 772
	hdmi_pll_uninit(&hdmi.pll);

773
	pm_runtime_disable(&pdev->dev);
T
Tomi Valkeinen 已提交
774 775 776 777 778 779
}

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

T
Tomi Valkeinen 已提交
781 782 783 784 785 786 787 788
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);
789 790 791
	return 0;
}

792 793 794 795 796 797 798 799 800 801 802 803 804
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)
805
		return r;
806 807 808 809 810 811 812 813 814

	return 0;
}

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

T
Tomi Valkeinen 已提交
815 816 817 818 819
static const struct of_device_id hdmi_of_match[] = {
	{ .compatible = "ti,omap4-hdmi", },
	{},
};

820
static struct platform_driver omapdss_hdmihw_driver = {
T
Tomi Valkeinen 已提交
821 822
	.probe		= hdmi4_probe,
	.remove		= hdmi4_remove,
823 824
	.driver         = {
		.name   = "omapdss_hdmi",
825
		.pm	= &hdmi_pm_ops,
T
Tomi Valkeinen 已提交
826
		.of_match_table = hdmi_of_match,
T
Tomi Valkeinen 已提交
827
		.suppress_bind_attrs = true,
828 829 830
	},
};

831
int __init hdmi4_init_platform_driver(void)
832
{
833
	return platform_driver_register(&omapdss_hdmihw_driver);
834 835
}

836
void hdmi4_uninit_platform_driver(void)
837
{
838
	platform_driver_unregister(&omapdss_hdmihw_driver);
839
}