dpi.c 16.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
/*
 * linux/drivers/video/omap2/dss/dpi.c
 *
 * Copyright (C) 2009 Nokia Corporation
 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
 *
 * Some code and ideas taken from drivers/video/omap/ driver
 * by Imre Deak.
 *
 * 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 "DPI"

#include <linux/kernel.h>
#include <linux/delay.h>
27
#include <linux/export.h>
28
#include <linux/err.h>
T
Tomi Valkeinen 已提交
29
#include <linux/errno.h>
30 31
#include <linux/platform_device.h>
#include <linux/regulator/consumer.h>
32
#include <linux/string.h>
T
Tomi Valkeinen 已提交
33
#include <linux/of.h>
T
Tomi Valkeinen 已提交
34

35
#include <video/omapdss.h>
T
Tomi Valkeinen 已提交
36 37

#include "dss.h"
38
#include "dss_features.h"
T
Tomi Valkeinen 已提交
39

A
Archit Taneja 已提交
40
struct dpi_data {
41 42
	struct platform_device *pdev;

43
	struct regulator *vdds_dsi_reg;
44
	struct platform_device *dsidev;
45

46 47
	struct mutex lock;

48
	struct omap_video_timings timings;
49
	struct dss_lcd_mgr_config mgr_config;
50
	int data_lines;
51

52
	struct omap_dss_device output;
T
Tomi Valkeinen 已提交
53 54

	bool port_initialized;
A
Archit Taneja 已提交
55 56 57
};

static struct dpi_data dpi_data;
T
Tomi Valkeinen 已提交
58

59
static struct platform_device *dpi_get_dsidev(enum omap_channel channel)
60
{
61 62 63 64 65 66 67 68 69 70 71
	/*
	 * XXX we can't currently use DSI PLL for DPI with OMAP3, as the DSI PLL
	 * would also be used for DISPC fclk. Meaning, when the DPI output is
	 * disabled, DISPC clock will be disabled, and TV out will stop.
	 */
	switch (omapdss_get_version()) {
	case OMAPDSS_VER_OMAP24xx:
	case OMAPDSS_VER_OMAP34xx_ES1:
	case OMAPDSS_VER_OMAP34xx_ES3:
	case OMAPDSS_VER_OMAP3630:
	case OMAPDSS_VER_AM35xx:
72
	case OMAPDSS_VER_AM43xx:
73 74
		return NULL;

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	case OMAPDSS_VER_OMAP4430_ES1:
	case OMAPDSS_VER_OMAP4430_ES2:
	case OMAPDSS_VER_OMAP4:
		switch (channel) {
		case OMAP_DSS_CHANNEL_LCD:
			return dsi_get_dsidev_from_id(0);
		case OMAP_DSS_CHANNEL_LCD2:
			return dsi_get_dsidev_from_id(1);
		default:
			return NULL;
		}

	case OMAPDSS_VER_OMAP5:
		switch (channel) {
		case OMAP_DSS_CHANNEL_LCD:
			return dsi_get_dsidev_from_id(0);
		case OMAP_DSS_CHANNEL_LCD3:
			return dsi_get_dsidev_from_id(1);
		default:
			return NULL;
		}

97 98 99
	default:
		return NULL;
	}
100 101
}

102
static enum omap_dss_clk_source dpi_get_alt_clk_src(enum omap_channel channel)
103
{
104 105 106 107 108
	switch (channel) {
	case OMAP_DSS_CHANNEL_LCD:
		return OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC;
	case OMAP_DSS_CHANNEL_LCD2:
		return OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC;
109 110
	case OMAP_DSS_CHANNEL_LCD3:
		return OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC;
111 112 113 114 115
	default:
		/* this shouldn't happen */
		WARN_ON(1);
		return OMAP_DSS_CLK_SRC_FCK;
	}
116 117
}

118 119 120 121 122 123 124 125 126 127
struct dpi_clk_calc_ctx {
	struct platform_device *dsidev;

	/* inputs */

	unsigned long pck_min, pck_max;

	/* outputs */

	struct dsi_clock_info dsi_cinfo;
T
Tomi Valkeinen 已提交
128
	unsigned long fck;
129 130 131 132 133 134 135 136 137 138 139 140 141
	struct dispc_clock_info dispc_cinfo;
};

static bool dpi_calc_dispc_cb(int lckd, int pckd, unsigned long lck,
		unsigned long pck, void *data)
{
	struct dpi_clk_calc_ctx *ctx = data;

	/*
	 * Odd dividers give us uneven duty cycle, causing problem when level
	 * shifted. So skip all odd dividers when the pixel clock is on the
	 * higher side.
	 */
142
	if (ctx->pck_min >= 100000000) {
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
		if (lckd > 1 && lckd % 2 != 0)
			return false;

		if (pckd > 1 && pckd % 2 != 0)
			return false;
	}

	ctx->dispc_cinfo.lck_div = lckd;
	ctx->dispc_cinfo.pck_div = pckd;
	ctx->dispc_cinfo.lck = lck;
	ctx->dispc_cinfo.pck = pck;

	return true;
}


static bool dpi_calc_hsdiv_cb(int regm_dispc, unsigned long dispc,
		void *data)
{
	struct dpi_clk_calc_ctx *ctx = data;

	/*
	 * Odd dividers give us uneven duty cycle, causing problem when level
	 * shifted. So skip all odd dividers when the pixel clock is on the
	 * higher side.
	 */
169
	if (regm_dispc > 1 && regm_dispc % 2 != 0 && ctx->pck_min >= 100000000)
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
		return false;

	ctx->dsi_cinfo.regm_dispc = regm_dispc;
	ctx->dsi_cinfo.dsi_pll_hsdiv_dispc_clk = dispc;

	return dispc_div_calc(dispc, ctx->pck_min, ctx->pck_max,
			dpi_calc_dispc_cb, ctx);
}


static bool dpi_calc_pll_cb(int regn, int regm, unsigned long fint,
		unsigned long pll,
		void *data)
{
	struct dpi_clk_calc_ctx *ctx = data;

	ctx->dsi_cinfo.regn = regn;
	ctx->dsi_cinfo.regm = regm;
	ctx->dsi_cinfo.fint = fint;
	ctx->dsi_cinfo.clkin4ddr = pll;

	return dsi_hsdiv_calc(ctx->dsidev, pll, ctx->pck_min,
			dpi_calc_hsdiv_cb, ctx);
}

195
static bool dpi_calc_dss_cb(unsigned long fck, void *data)
196 197 198
{
	struct dpi_clk_calc_ctx *ctx = data;

199
	ctx->fck = fck;
200 201 202 203 204

	return dispc_div_calc(fck, ctx->pck_min, ctx->pck_max,
			dpi_calc_dispc_cb, ctx);
}

A
Archit Taneja 已提交
205 206
static bool dpi_dsi_clk_calc(struct dpi_data *dpi, unsigned long pck,
		struct dpi_clk_calc_ctx *ctx)
207 208 209 210
{
	unsigned long clkin;
	unsigned long pll_min, pll_max;

A
Archit Taneja 已提交
211
	clkin = dsi_get_pll_clkin(dpi->dsidev);
212 213

	memset(ctx, 0, sizeof(*ctx));
A
Archit Taneja 已提交
214
	ctx->dsidev = dpi->dsidev;
215 216 217 218 219 220 221
	ctx->pck_min = pck - 1000;
	ctx->pck_max = pck + 1000;
	ctx->dsi_cinfo.clkin = clkin;

	pll_min = 0;
	pll_max = 0;

A
Archit Taneja 已提交
222
	return dsi_pll_calc(dpi->dsidev, clkin,
223 224 225 226 227 228 229 230 231 232 233 234
			pll_min, pll_max,
			dpi_calc_pll_cb, ctx);
}

static bool dpi_dss_clk_calc(unsigned long pck, struct dpi_clk_calc_ctx *ctx)
{
	int i;

	/*
	 * DSS fck gives us very few possibilities, so finding a good pixel
	 * clock may not be possible. We try multiple times to find the clock,
	 * each time widening the pixel clock range we look for, up to
235
	 * +/- ~15MHz.
236 237
	 */

238
	for (i = 0; i < 25; ++i) {
239 240 241 242 243 244 245 246 247
		bool ok;

		memset(ctx, 0, sizeof(*ctx));
		if (pck > 1000 * i * i * i)
			ctx->pck_min = max(pck - 1000 * i * i * i, 0lu);
		else
			ctx->pck_min = 0;
		ctx->pck_max = pck + 1000 * i * i * i;

248
		ok = dss_div_calc(pck, ctx->pck_min, dpi_calc_dss_cb, ctx);
249 250 251 252 253 254 255 256 257
		if (ok)
			return ok;
	}

	return false;
}



A
Archit Taneja 已提交
258
static int dpi_set_dsi_clk(struct dpi_data *dpi, enum omap_channel channel,
259 260
		unsigned long pck_req, unsigned long *fck, int *lck_div,
		int *pck_div)
T
Tomi Valkeinen 已提交
261
{
262
	struct dpi_clk_calc_ctx ctx;
T
Tomi Valkeinen 已提交
263
	int r;
264
	bool ok;
T
Tomi Valkeinen 已提交
265

A
Archit Taneja 已提交
266
	ok = dpi_dsi_clk_calc(dpi, pck_req, &ctx);
267 268
	if (!ok)
		return -EINVAL;
T
Tomi Valkeinen 已提交
269

A
Archit Taneja 已提交
270
	r = dsi_pll_set_clock_div(dpi->dsidev, &ctx.dsi_cinfo);
T
Tomi Valkeinen 已提交
271 272 273
	if (r)
		return r;

274 275
	dss_select_lcd_clk_source(channel,
			dpi_get_alt_clk_src(channel));
T
Tomi Valkeinen 已提交
276

A
Archit Taneja 已提交
277
	dpi->mgr_config.clock_info = ctx.dispc_cinfo;
T
Tomi Valkeinen 已提交
278

279 280 281
	*fck = ctx.dsi_cinfo.dsi_pll_hsdiv_dispc_clk;
	*lck_div = ctx.dispc_cinfo.lck_div;
	*pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
282 283 284

	return 0;
}
285

A
Archit Taneja 已提交
286 287
static int dpi_set_dispc_clk(struct dpi_data *dpi, unsigned long pck_req,
		unsigned long *fck, int *lck_div, int *pck_div)
T
Tomi Valkeinen 已提交
288
{
289
	struct dpi_clk_calc_ctx ctx;
T
Tomi Valkeinen 已提交
290
	int r;
291
	bool ok;
T
Tomi Valkeinen 已提交
292

293 294 295
	ok = dpi_dss_clk_calc(pck_req, &ctx);
	if (!ok)
		return -EINVAL;
T
Tomi Valkeinen 已提交
296

297
	r = dss_set_fck_rate(ctx.fck);
T
Tomi Valkeinen 已提交
298 299 300
	if (r)
		return r;

A
Archit Taneja 已提交
301
	dpi->mgr_config.clock_info = ctx.dispc_cinfo;
T
Tomi Valkeinen 已提交
302

303
	*fck = ctx.fck;
304 305
	*lck_div = ctx.dispc_cinfo.lck_div;
	*pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
306 307 308 309

	return 0;
}

A
Archit Taneja 已提交
310
static int dpi_set_mode(struct dpi_data *dpi)
T
Tomi Valkeinen 已提交
311
{
A
Archit Taneja 已提交
312 313 314
	struct omap_dss_device *out = &dpi->output;
	struct omap_overlay_manager *mgr = out->manager;
	struct omap_video_timings *t = &dpi->timings;
315 316
	int lck_div = 0, pck_div = 0;
	unsigned long fck = 0;
T
Tomi Valkeinen 已提交
317 318 319
	unsigned long pck;
	int r = 0;

A
Archit Taneja 已提交
320 321
	if (dpi->dsidev)
		r = dpi_set_dsi_clk(dpi, mgr->id, t->pixelclock, &fck,
322
				&lck_div, &pck_div);
323
	else
A
Archit Taneja 已提交
324
		r = dpi_set_dispc_clk(dpi, t->pixelclock, &fck,
325
				&lck_div, &pck_div);
T
Tomi Valkeinen 已提交
326
	if (r)
327
		return r;
T
Tomi Valkeinen 已提交
328

329
	pck = fck / lck_div / pck_div;
T
Tomi Valkeinen 已提交
330

331 332 333
	if (pck != t->pixelclock) {
		DSSWARN("Could not find exact pixel clock. Requested %d Hz, got %lu Hz\n",
			t->pixelclock, pck);
T
Tomi Valkeinen 已提交
334

335
		t->pixelclock = pck;
T
Tomi Valkeinen 已提交
336 337
	}

338
	dss_mgr_set_timings(mgr, t);
T
Tomi Valkeinen 已提交
339

340
	return 0;
T
Tomi Valkeinen 已提交
341 342
}

A
Archit Taneja 已提交
343
static void dpi_config_lcd_manager(struct dpi_data *dpi)
T
Tomi Valkeinen 已提交
344
{
A
Archit Taneja 已提交
345 346 347 348
	struct omap_dss_device *out = &dpi->output;
	struct omap_overlay_manager *mgr = out->manager;

	dpi->mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
349

A
Archit Taneja 已提交
350 351
	dpi->mgr_config.stallmode = false;
	dpi->mgr_config.fifohandcheck = false;
352

A
Archit Taneja 已提交
353
	dpi->mgr_config.video_port_width = dpi->data_lines;
354

A
Archit Taneja 已提交
355
	dpi->mgr_config.lcden_sig_polarity = 0;
356

A
Archit Taneja 已提交
357
	dss_mgr_set_lcd_config(mgr, &dpi->mgr_config);
T
Tomi Valkeinen 已提交
358 359
}

360
static int dpi_display_enable(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
361
{
A
Archit Taneja 已提交
362 363
	struct dpi_data *dpi = &dpi_data;
	struct omap_dss_device *out = &dpi->output;
T
Tomi Valkeinen 已提交
364 365
	int r;

A
Archit Taneja 已提交
366
	mutex_lock(&dpi->lock);
367

A
Archit Taneja 已提交
368
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI) && !dpi->vdds_dsi_reg) {
369
		DSSERR("no VDSS_DSI regulator\n");
370 371
		r = -ENODEV;
		goto err_no_reg;
372 373
	}

374 375
	if (out == NULL || out->manager == NULL) {
		DSSERR("failed to enable display: no output/manager\n");
376
		r = -ENODEV;
377
		goto err_no_out_mgr;
378 379
	}

380
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI)) {
A
Archit Taneja 已提交
381
		r = regulator_enable(dpi->vdds_dsi_reg);
382
		if (r)
383
			goto err_reg_enable;
384 385
	}

386
	r = dispc_runtime_get();
T
Tomi Valkeinen 已提交
387
	if (r)
388 389
		goto err_get_dispc;

390
	r = dss_dpi_select_source(out->manager->id);
391 392 393
	if (r)
		goto err_src_sel;

A
Archit Taneja 已提交
394 395
	if (dpi->dsidev) {
		r = dsi_runtime_get(dpi->dsidev);
396 397 398
		if (r)
			goto err_get_dsi;

A
Archit Taneja 已提交
399
		r = dsi_pll_init(dpi->dsidev, 0, 1);
400
		if (r)
401
			goto err_dsi_pll_init;
402 403
	}

A
Archit Taneja 已提交
404
	r = dpi_set_mode(dpi);
T
Tomi Valkeinen 已提交
405
	if (r)
406
		goto err_set_mode;
T
Tomi Valkeinen 已提交
407

A
Archit Taneja 已提交
408
	dpi_config_lcd_manager(dpi);
409

T
Tomi Valkeinen 已提交
410 411
	mdelay(2);

412
	r = dss_mgr_enable(out->manager);
413 414
	if (r)
		goto err_mgr_enable;
T
Tomi Valkeinen 已提交
415

A
Archit Taneja 已提交
416
	mutex_unlock(&dpi->lock);
417

T
Tomi Valkeinen 已提交
418 419
	return 0;

420
err_mgr_enable:
421
err_set_mode:
A
Archit Taneja 已提交
422 423
	if (dpi->dsidev)
		dsi_pll_uninit(dpi->dsidev, true);
424
err_dsi_pll_init:
A
Archit Taneja 已提交
425 426
	if (dpi->dsidev)
		dsi_runtime_put(dpi->dsidev);
427
err_get_dsi:
428
err_src_sel:
429 430
	dispc_runtime_put();
err_get_dispc:
431
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
A
Archit Taneja 已提交
432
		regulator_disable(dpi->vdds_dsi_reg);
433
err_reg_enable:
434
err_no_out_mgr:
435
err_no_reg:
A
Archit Taneja 已提交
436
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
437 438 439
	return r;
}

440
static void dpi_display_disable(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
441
{
A
Archit Taneja 已提交
442 443
	struct dpi_data *dpi = &dpi_data;
	struct omap_overlay_manager *mgr = dpi->output.manager;
444

A
Archit Taneja 已提交
445
	mutex_lock(&dpi->lock);
446

447
	dss_mgr_disable(mgr);
T
Tomi Valkeinen 已提交
448

A
Archit Taneja 已提交
449
	if (dpi->dsidev) {
450
		dss_select_lcd_clk_source(mgr->id, OMAP_DSS_CLK_SRC_FCK);
A
Archit Taneja 已提交
451 452
		dsi_pll_uninit(dpi->dsidev, true);
		dsi_runtime_put(dpi->dsidev);
453
	}
T
Tomi Valkeinen 已提交
454

455
	dispc_runtime_put();
T
Tomi Valkeinen 已提交
456

457
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
A
Archit Taneja 已提交
458
		regulator_disable(dpi->vdds_dsi_reg);
459

A
Archit Taneja 已提交
460
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
461 462
}

463
static void dpi_set_timings(struct omap_dss_device *dssdev,
464
		struct omap_video_timings *timings)
T
Tomi Valkeinen 已提交
465
{
A
Archit Taneja 已提交
466 467
	struct dpi_data *dpi = &dpi_data;

T
Tomi Valkeinen 已提交
468
	DSSDBG("dpi_set_timings\n");
469

A
Archit Taneja 已提交
470
	mutex_lock(&dpi->lock);
471

A
Archit Taneja 已提交
472
	dpi->timings = *timings;
473

A
Archit Taneja 已提交
474
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
475 476
}

T
Tomi Valkeinen 已提交
477 478 479
static void dpi_get_timings(struct omap_dss_device *dssdev,
		struct omap_video_timings *timings)
{
A
Archit Taneja 已提交
480 481 482
	struct dpi_data *dpi = &dpi_data;

	mutex_lock(&dpi->lock);
T
Tomi Valkeinen 已提交
483

A
Archit Taneja 已提交
484
	*timings = dpi->timings;
T
Tomi Valkeinen 已提交
485

A
Archit Taneja 已提交
486
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
487 488
}

489
static int dpi_check_timings(struct omap_dss_device *dssdev,
T
Tomi Valkeinen 已提交
490 491
			struct omap_video_timings *timings)
{
A
Archit Taneja 已提交
492 493
	struct dpi_data *dpi = &dpi_data;
	struct omap_overlay_manager *mgr = dpi->output.manager;
T
Tomi Valkeinen 已提交
494 495 496
	int lck_div, pck_div;
	unsigned long fck;
	unsigned long pck;
497 498
	struct dpi_clk_calc_ctx ctx;
	bool ok;
T
Tomi Valkeinen 已提交
499

500
	if (mgr && !dispc_mgr_timings_ok(mgr->id, timings))
T
Tomi Valkeinen 已提交
501 502
		return -EINVAL;

503
	if (timings->pixelclock == 0)
T
Tomi Valkeinen 已提交
504 505
		return -EINVAL;

A
Archit Taneja 已提交
506 507
	if (dpi->dsidev) {
		ok = dpi_dsi_clk_calc(dpi, timings->pixelclock, &ctx);
508 509
		if (!ok)
			return -EINVAL;
T
Tomi Valkeinen 已提交
510

511
		fck = ctx.dsi_cinfo.dsi_pll_hsdiv_dispc_clk;
512
	} else {
513
		ok = dpi_dss_clk_calc(timings->pixelclock, &ctx);
514 515
		if (!ok)
			return -EINVAL;
T
Tomi Valkeinen 已提交
516

517
		fck = ctx.fck;
T
Tomi Valkeinen 已提交
518
	}
519

520 521
	lck_div = ctx.dispc_cinfo.lck_div;
	pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
522

523
	pck = fck / lck_div / pck_div;
T
Tomi Valkeinen 已提交
524

525
	timings->pixelclock = pck;
T
Tomi Valkeinen 已提交
526 527 528 529

	return 0;
}

530
static void dpi_set_data_lines(struct omap_dss_device *dssdev, int data_lines)
531
{
A
Archit Taneja 已提交
532
	struct dpi_data *dpi = &dpi_data;
533

A
Archit Taneja 已提交
534
	mutex_lock(&dpi->lock);
535

A
Archit Taneja 已提交
536 537 538
	dpi->data_lines = data_lines;

	mutex_unlock(&dpi->lock);
539 540
}

541
static int dpi_verify_dsi_pll(struct platform_device *dsidev)
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
{
	int r;

	/* do initial setup with the PLL to see if it is operational */

	r = dsi_runtime_get(dsidev);
	if (r)
		return r;

	r = dsi_pll_init(dsidev, 0, 1);
	if (r) {
		dsi_runtime_put(dsidev);
		return r;
	}

	dsi_pll_uninit(dsidev, true);
	dsi_runtime_put(dsidev);

	return 0;
}

A
Archit Taneja 已提交
563
static int dpi_init_regulator(struct dpi_data *dpi)
564 565 566 567 568 569
{
	struct regulator *vdds_dsi;

	if (!dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
		return 0;

A
Archit Taneja 已提交
570
	if (dpi->vdds_dsi_reg)
571 572
		return 0;

A
Archit Taneja 已提交
573
	vdds_dsi = devm_regulator_get(&dpi->pdev->dev, "vdds_dsi");
574
	if (IS_ERR(vdds_dsi)) {
575 576
		if (PTR_ERR(vdds_dsi) != -EPROBE_DEFER)
			DSSERR("can't get VDDS_DSI regulator\n");
577
		return PTR_ERR(vdds_dsi);
578 579
	}

A
Archit Taneja 已提交
580
	dpi->vdds_dsi_reg = vdds_dsi;
581 582 583 584

	return 0;
}

A
Archit Taneja 已提交
585
static void dpi_init_pll(struct dpi_data *dpi)
586 587 588
{
	struct platform_device *dsidev;

A
Archit Taneja 已提交
589
	if (dpi->dsidev)
590 591
		return;

A
Archit Taneja 已提交
592
	dsidev = dpi_get_dsidev(dpi->output.dispc_channel);
593 594 595 596 597 598 599 600
	if (!dsidev)
		return;

	if (dpi_verify_dsi_pll(dsidev)) {
		DSSWARN("DSI PLL not operational\n");
		return;
	}

A
Archit Taneja 已提交
601
	dpi->dsidev = dsidev;
602 603
}

604 605 606 607 608 609 610 611 612 613 614 615 616 617
/*
 * Return a hardcoded channel for the DPI output. This should work for
 * current use cases, but this can be later expanded to either resolve
 * the channel in some more dynamic manner, or get the channel as a user
 * parameter.
 */
static enum omap_channel dpi_get_channel(void)
{
	switch (omapdss_get_version()) {
	case OMAPDSS_VER_OMAP24xx:
	case OMAPDSS_VER_OMAP34xx_ES1:
	case OMAPDSS_VER_OMAP34xx_ES3:
	case OMAPDSS_VER_OMAP3630:
	case OMAPDSS_VER_AM35xx:
618
	case OMAPDSS_VER_AM43xx:
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
		return OMAP_DSS_CHANNEL_LCD;

	case OMAPDSS_VER_OMAP4430_ES1:
	case OMAPDSS_VER_OMAP4430_ES2:
	case OMAPDSS_VER_OMAP4:
		return OMAP_DSS_CHANNEL_LCD2;

	case OMAPDSS_VER_OMAP5:
		return OMAP_DSS_CHANNEL_LCD3;

	default:
		DSSWARN("unsupported DSS version\n");
		return OMAP_DSS_CHANNEL_LCD;
	}
}

T
Tomi Valkeinen 已提交
635 636 637
static int dpi_connect(struct omap_dss_device *dssdev,
		struct omap_dss_device *dst)
{
A
Archit Taneja 已提交
638
	struct dpi_data *dpi = &dpi_data;
T
Tomi Valkeinen 已提交
639 640 641
	struct omap_overlay_manager *mgr;
	int r;

A
Archit Taneja 已提交
642
	r = dpi_init_regulator(dpi);
T
Tomi Valkeinen 已提交
643 644 645
	if (r)
		return r;

A
Archit Taneja 已提交
646
	dpi_init_pll(dpi);
T
Tomi Valkeinen 已提交
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669

	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 dpi_disconnect(struct omap_dss_device *dssdev,
		struct omap_dss_device *dst)
{
670
	WARN_ON(dst != dssdev->dst);
T
Tomi Valkeinen 已提交
671

672
	if (dst != dssdev->dst)
T
Tomi Valkeinen 已提交
673 674 675 676 677 678 679 680 681 682 683 684
		return;

	omapdss_output_unset_device(dssdev);

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

static const struct omapdss_dpi_ops dpi_ops = {
	.connect = dpi_connect,
	.disconnect = dpi_disconnect,

685 686
	.enable = dpi_display_enable,
	.disable = dpi_display_disable,
T
Tomi Valkeinen 已提交
687 688

	.check_timings = dpi_check_timings,
689
	.set_timings = dpi_set_timings,
T
Tomi Valkeinen 已提交
690 691
	.get_timings = dpi_get_timings,

692
	.set_data_lines = dpi_set_data_lines,
T
Tomi Valkeinen 已提交
693 694
};

695
static void dpi_init_output(struct platform_device *pdev)
696
{
A
Archit Taneja 已提交
697 698
	struct dpi_data *dpi = &dpi_data;
	struct omap_dss_device *out = &dpi->output;
699

700
	out->dev = &pdev->dev;
701
	out->id = OMAP_DSS_OUTPUT_DPI;
702
	out->output_type = OMAP_DISPLAY_TYPE_DPI;
T
Tomi Valkeinen 已提交
703
	out->name = "dpi.0";
704
	out->dispc_channel = dpi_get_channel();
T
Tomi Valkeinen 已提交
705
	out->ops.dpi = &dpi_ops;
706
	out->owner = THIS_MODULE;
707

708
	omapdss_register_output(out);
709 710 711 712
}

static void __exit dpi_uninit_output(struct platform_device *pdev)
{
A
Archit Taneja 已提交
713 714
	struct dpi_data *dpi = &dpi_data;
	struct omap_dss_device *out = &dpi->output;
715

716
	omapdss_unregister_output(out);
717 718
}

719
static int omap_dpi_probe(struct platform_device *pdev)
720
{
A
Archit Taneja 已提交
721 722 723
	struct dpi_data *dpi = &dpi_data;

	dpi->pdev = pdev;
724

A
Archit Taneja 已提交
725 726 727
	dev_set_drvdata(&pdev->dev, dpi);

	mutex_init(&dpi->lock);
728

729 730
	dpi_init_output(pdev);

731 732 733
	return 0;
}

T
Tomi Valkeinen 已提交
734
static int __exit omap_dpi_remove(struct platform_device *pdev)
T
Tomi Valkeinen 已提交
735
{
736 737
	dpi_uninit_output(pdev);

738
	return 0;
T
Tomi Valkeinen 已提交
739 740
}

741
static struct platform_driver omap_dpi_driver = {
742
	.probe		= omap_dpi_probe,
T
Tomi Valkeinen 已提交
743
	.remove         = __exit_p(omap_dpi_remove),
744 745 746
	.driver         = {
		.name   = "omapdss_dpi",
		.owner  = THIS_MODULE,
T
Tomi Valkeinen 已提交
747
		.suppress_bind_attrs = true,
748 749 750
	},
};

T
Tomi Valkeinen 已提交
751
int __init dpi_init_platform_driver(void)
752
{
753
	return platform_driver_register(&omap_dpi_driver);
754 755
}

T
Tomi Valkeinen 已提交
756
void __exit dpi_uninit_platform_driver(void)
757 758 759
{
	platform_driver_unregister(&omap_dpi_driver);
}
T
Tomi Valkeinen 已提交
760 761 762

int __init dpi_init_port(struct platform_device *pdev, struct device_node *port)
{
A
Archit Taneja 已提交
763
	struct dpi_data *dpi = &dpi_data;
T
Tomi Valkeinen 已提交
764 765 766 767 768 769 770 771 772 773 774 775 776 777
	struct device_node *ep;
	u32 datalines;
	int r;

	ep = omapdss_of_get_next_endpoint(port, NULL);
	if (!ep)
		return 0;

	r = of_property_read_u32(ep, "data-lines", &datalines);
	if (r) {
		DSSERR("failed to parse datalines\n");
		goto err_datalines;
	}

A
Archit Taneja 已提交
778
	dpi->data_lines = datalines;
T
Tomi Valkeinen 已提交
779 780 781

	of_node_put(ep);

A
Archit Taneja 已提交
782
	dpi->pdev = pdev;
T
Tomi Valkeinen 已提交
783

A
Archit Taneja 已提交
784
	mutex_init(&dpi->lock);
T
Tomi Valkeinen 已提交
785 786 787

	dpi_init_output(pdev);

A
Archit Taneja 已提交
788
	dpi->port_initialized = true;
T
Tomi Valkeinen 已提交
789 790 791 792 793 794 795 796 797 798 799

	return 0;

err_datalines:
	of_node_put(ep);

	return r;
}

void __exit dpi_uninit_port(void)
{
A
Archit Taneja 已提交
800 801 802
	struct dpi_data *dpi = &dpi_data;

	if (!dpi->port_initialized)
T
Tomi Valkeinen 已提交
803 804
		return;

A
Archit Taneja 已提交
805
	dpi_uninit_output(dpi->pdev);
T
Tomi Valkeinen 已提交
806
}