dpi.c 18.6 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>
34
#include <linux/clk.h>
T
Tomi Valkeinen 已提交
35
#include <linux/component.h>
T
Tomi Valkeinen 已提交
36

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

#include "dss.h"
40
#include "dss_features.h"
T
Tomi Valkeinen 已提交
41

42 43
#define HSDIV_DISPC	0

A
Archit Taneja 已提交
44
struct dpi_data {
45 46
	struct platform_device *pdev;

47
	struct regulator *vdds_dsi_reg;
48
	struct dss_pll *pll;
49

50 51
	struct mutex lock;

52
	struct omap_video_timings timings;
53
	struct dss_lcd_mgr_config mgr_config;
54
	int data_lines;
55

56
	struct omap_dss_device output;
T
Tomi Valkeinen 已提交
57 58

	bool port_initialized;
A
Archit Taneja 已提交
59 60
};

A
Archit Taneja 已提交
61 62 63 64 65
static struct dpi_data *dpi_get_data_from_dssdev(struct omap_dss_device *dssdev)
{
	return container_of(dssdev, struct dpi_data, output);
}

66
/* only used in non-DT mode */
A
Archit Taneja 已提交
67 68 69 70
static struct dpi_data *dpi_get_data_from_pdev(struct platform_device *pdev)
{
	return dev_get_drvdata(&pdev->dev);
}
T
Tomi Valkeinen 已提交
71

72
static struct dss_pll *dpi_get_pll(enum omap_channel channel)
73
{
74 75 76 77 78 79 80 81 82 83 84
	/*
	 * 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:
85
	case OMAPDSS_VER_AM43xx:
86 87
		return NULL;

88 89 90 91 92
	case OMAPDSS_VER_OMAP4430_ES1:
	case OMAPDSS_VER_OMAP4430_ES2:
	case OMAPDSS_VER_OMAP4:
		switch (channel) {
		case OMAP_DSS_CHANNEL_LCD:
93
			return dss_pll_find("dsi0");
94
		case OMAP_DSS_CHANNEL_LCD2:
95
			return dss_pll_find("dsi1");
96 97 98 99 100 101 102
		default:
			return NULL;
		}

	case OMAPDSS_VER_OMAP5:
		switch (channel) {
		case OMAP_DSS_CHANNEL_LCD:
103
			return dss_pll_find("dsi0");
104
		case OMAP_DSS_CHANNEL_LCD3:
105
			return dss_pll_find("dsi1");
106 107 108 109
		default:
			return NULL;
		}

T
Tomi Valkeinen 已提交
110 111 112 113 114 115 116 117 118 119 120
	case OMAPDSS_VER_DRA7xx:
		switch (channel) {
		case OMAP_DSS_CHANNEL_LCD:
		case OMAP_DSS_CHANNEL_LCD2:
			return dss_pll_find("video0");
		case OMAP_DSS_CHANNEL_LCD3:
			return dss_pll_find("video1");
		default:
			return NULL;
		}

121 122 123
	default:
		return NULL;
	}
124 125
}

126
static enum dss_clk_source dpi_get_alt_clk_src(enum omap_channel channel)
127
{
128 129 130 131 132
	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;
133 134
	case OMAP_DSS_CHANNEL_LCD3:
		return OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC;
135 136 137 138 139
	default:
		/* this shouldn't happen */
		WARN_ON(1);
		return OMAP_DSS_CLK_SRC_FCK;
	}
140 141
}

142
struct dpi_clk_calc_ctx {
143
	struct dss_pll *pll;
144 145 146 147 148 149 150

	/* inputs */

	unsigned long pck_min, pck_max;

	/* outputs */

151
	struct dss_pll_clock_info dsi_cinfo;
T
Tomi Valkeinen 已提交
152
	unsigned long fck;
153 154 155 156 157 158 159 160 161 162 163 164 165
	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.
	 */
166
	if (ctx->pck_min >= 100000000) {
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
		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;
}


183
static bool dpi_calc_hsdiv_cb(int m_dispc, unsigned long dispc,
184 185 186 187 188 189 190 191 192
		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.
	 */
193
	if (m_dispc > 1 && m_dispc % 2 != 0 && ctx->pck_min >= 100000000)
194 195
		return false;

196
	ctx->dsi_cinfo.mX[HSDIV_DISPC] = m_dispc;
197
	ctx->dsi_cinfo.clkout[HSDIV_DISPC] = dispc;
198 199 200 201 202 203

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


204 205
static bool dpi_calc_pll_cb(int n, int m, unsigned long fint,
		unsigned long clkdco,
206 207 208 209
		void *data)
{
	struct dpi_clk_calc_ctx *ctx = data;

210 211
	ctx->dsi_cinfo.n = n;
	ctx->dsi_cinfo.m = m;
212
	ctx->dsi_cinfo.fint = fint;
213
	ctx->dsi_cinfo.clkdco = clkdco;
214

215 216 217
	return dss_pll_hsdiv_calc(ctx->pll, clkdco,
		ctx->pck_min, dss_feat_get_param_max(FEAT_PARAM_DSS_FCK),
		dpi_calc_hsdiv_cb, ctx);
218 219
}

220
static bool dpi_calc_dss_cb(unsigned long fck, void *data)
221 222 223
{
	struct dpi_clk_calc_ctx *ctx = data;

224
	ctx->fck = fck;
225 226 227 228 229

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

A
Archit Taneja 已提交
230 231
static bool dpi_dsi_clk_calc(struct dpi_data *dpi, unsigned long pck,
		struct dpi_clk_calc_ctx *ctx)
232 233 234 235 236
{
	unsigned long clkin;
	unsigned long pll_min, pll_max;

	memset(ctx, 0, sizeof(*ctx));
237
	ctx->pll = dpi->pll;
238 239 240 241 242 243
	ctx->pck_min = pck - 1000;
	ctx->pck_max = pck + 1000;

	pll_min = 0;
	pll_max = 0;

244 245 246
	clkin = clk_get_rate(ctx->pll->clkin);

	return dss_pll_calc(ctx->pll, clkin,
247 248 249 250 251 252 253 254 255 256 257 258
			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
259
	 * +/- ~15MHz.
260 261
	 */

262
	for (i = 0; i < 25; ++i) {
263 264 265 266 267 268 269 270 271
		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;

272
		ok = dss_div_calc(pck, ctx->pck_min, dpi_calc_dss_cb, ctx);
273 274 275 276 277 278 279 280 281
		if (ok)
			return ok;
	}

	return false;
}



A
Archit Taneja 已提交
282
static int dpi_set_dsi_clk(struct dpi_data *dpi, enum omap_channel channel,
283 284
		unsigned long pck_req, unsigned long *fck, int *lck_div,
		int *pck_div)
T
Tomi Valkeinen 已提交
285
{
286
	struct dpi_clk_calc_ctx ctx;
T
Tomi Valkeinen 已提交
287
	int r;
288
	bool ok;
T
Tomi Valkeinen 已提交
289

A
Archit Taneja 已提交
290
	ok = dpi_dsi_clk_calc(dpi, pck_req, &ctx);
291 292
	if (!ok)
		return -EINVAL;
T
Tomi Valkeinen 已提交
293

294
	r = dss_pll_set_config(dpi->pll, &ctx.dsi_cinfo);
T
Tomi Valkeinen 已提交
295 296 297
	if (r)
		return r;

298 299
	dss_select_lcd_clk_source(channel,
			dpi_get_alt_clk_src(channel));
T
Tomi Valkeinen 已提交
300

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

303
	*fck = ctx.dsi_cinfo.clkout[HSDIV_DISPC];
304 305
	*lck_div = ctx.dispc_cinfo.lck_div;
	*pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
306 307 308

	return 0;
}
309

A
Archit Taneja 已提交
310 311
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 已提交
312
{
313
	struct dpi_clk_calc_ctx ctx;
T
Tomi Valkeinen 已提交
314
	int r;
315
	bool ok;
T
Tomi Valkeinen 已提交
316

317 318 319
	ok = dpi_dss_clk_calc(pck_req, &ctx);
	if (!ok)
		return -EINVAL;
T
Tomi Valkeinen 已提交
320

321
	r = dss_set_fck_rate(ctx.fck);
T
Tomi Valkeinen 已提交
322 323 324
	if (r)
		return r;

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

327
	*fck = ctx.fck;
328 329
	*lck_div = ctx.dispc_cinfo.lck_div;
	*pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
330 331 332 333

	return 0;
}

A
Archit Taneja 已提交
334
static int dpi_set_mode(struct dpi_data *dpi)
T
Tomi Valkeinen 已提交
335
{
A
Archit Taneja 已提交
336
	struct omap_dss_device *out = &dpi->output;
337
	enum omap_channel channel = out->dispc_channel;
A
Archit Taneja 已提交
338
	struct omap_video_timings *t = &dpi->timings;
339 340
	int lck_div = 0, pck_div = 0;
	unsigned long fck = 0;
T
Tomi Valkeinen 已提交
341 342 343
	unsigned long pck;
	int r = 0;

344
	if (dpi->pll)
345
		r = dpi_set_dsi_clk(dpi, channel, t->pixelclock, &fck,
346
				&lck_div, &pck_div);
347
	else
A
Archit Taneja 已提交
348
		r = dpi_set_dispc_clk(dpi, t->pixelclock, &fck,
349
				&lck_div, &pck_div);
T
Tomi Valkeinen 已提交
350
	if (r)
351
		return r;
T
Tomi Valkeinen 已提交
352

353
	pck = fck / lck_div / pck_div;
T
Tomi Valkeinen 已提交
354

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

359
		t->pixelclock = pck;
T
Tomi Valkeinen 已提交
360 361
	}

362
	dss_mgr_set_timings(channel, t);
T
Tomi Valkeinen 已提交
363

364
	return 0;
T
Tomi Valkeinen 已提交
365 366
}

A
Archit Taneja 已提交
367
static void dpi_config_lcd_manager(struct dpi_data *dpi)
T
Tomi Valkeinen 已提交
368
{
A
Archit Taneja 已提交
369
	struct omap_dss_device *out = &dpi->output;
370
	enum omap_channel channel = out->dispc_channel;
A
Archit Taneja 已提交
371 372

	dpi->mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
373

A
Archit Taneja 已提交
374 375
	dpi->mgr_config.stallmode = false;
	dpi->mgr_config.fifohandcheck = false;
376

A
Archit Taneja 已提交
377
	dpi->mgr_config.video_port_width = dpi->data_lines;
378

A
Archit Taneja 已提交
379
	dpi->mgr_config.lcden_sig_polarity = 0;
380

381
	dss_mgr_set_lcd_config(channel, &dpi->mgr_config);
T
Tomi Valkeinen 已提交
382 383
}

384
static int dpi_display_enable(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
385
{
A
Archit Taneja 已提交
386
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
387
	struct omap_dss_device *out = &dpi->output;
388
	enum omap_channel channel = out->dispc_channel;
T
Tomi Valkeinen 已提交
389 390
	int r;

A
Archit Taneja 已提交
391
	mutex_lock(&dpi->lock);
392

A
Archit Taneja 已提交
393
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI) && !dpi->vdds_dsi_reg) {
394
		DSSERR("no VDSS_DSI regulator\n");
395 396
		r = -ENODEV;
		goto err_no_reg;
397 398
	}

399
	if (!out->dispc_channel_connected) {
400
		DSSERR("failed to enable display: no output/manager\n");
401
		r = -ENODEV;
402
		goto err_no_out_mgr;
403 404
	}

405
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI)) {
A
Archit Taneja 已提交
406
		r = regulator_enable(dpi->vdds_dsi_reg);
407
		if (r)
408
			goto err_reg_enable;
409 410
	}

411
	r = dispc_runtime_get();
T
Tomi Valkeinen 已提交
412
	if (r)
413 414
		goto err_get_dispc;

415
	r = dss_dpi_select_source(out->port_num, channel);
416 417 418
	if (r)
		goto err_src_sel;

419 420
	if (dpi->pll) {
		r = dss_pll_enable(dpi->pll);
421
		if (r)
422
			goto err_dsi_pll_init;
423 424
	}

A
Archit Taneja 已提交
425
	r = dpi_set_mode(dpi);
T
Tomi Valkeinen 已提交
426
	if (r)
427
		goto err_set_mode;
T
Tomi Valkeinen 已提交
428

A
Archit Taneja 已提交
429
	dpi_config_lcd_manager(dpi);
430

T
Tomi Valkeinen 已提交
431 432
	mdelay(2);

433
	r = dss_mgr_enable(channel);
434 435
	if (r)
		goto err_mgr_enable;
T
Tomi Valkeinen 已提交
436

A
Archit Taneja 已提交
437
	mutex_unlock(&dpi->lock);
438

T
Tomi Valkeinen 已提交
439 440
	return 0;

441
err_mgr_enable:
442
err_set_mode:
443 444
	if (dpi->pll)
		dss_pll_disable(dpi->pll);
445
err_dsi_pll_init:
446
err_src_sel:
447 448
	dispc_runtime_put();
err_get_dispc:
449
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
A
Archit Taneja 已提交
450
		regulator_disable(dpi->vdds_dsi_reg);
451
err_reg_enable:
452
err_no_out_mgr:
453
err_no_reg:
A
Archit Taneja 已提交
454
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
455 456 457
	return r;
}

458
static void dpi_display_disable(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
459
{
A
Archit Taneja 已提交
460
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
461
	enum omap_channel channel = dpi->output.dispc_channel;
462

A
Archit Taneja 已提交
463
	mutex_lock(&dpi->lock);
464

465
	dss_mgr_disable(channel);
T
Tomi Valkeinen 已提交
466

467
	if (dpi->pll) {
468
		dss_select_lcd_clk_source(channel, OMAP_DSS_CLK_SRC_FCK);
469
		dss_pll_disable(dpi->pll);
470
	}
T
Tomi Valkeinen 已提交
471

472
	dispc_runtime_put();
T
Tomi Valkeinen 已提交
473

474
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
A
Archit Taneja 已提交
475
		regulator_disable(dpi->vdds_dsi_reg);
476

A
Archit Taneja 已提交
477
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
478 479
}

480
static void dpi_set_timings(struct omap_dss_device *dssdev,
481
		struct omap_video_timings *timings)
T
Tomi Valkeinen 已提交
482
{
A
Archit Taneja 已提交
483
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
484

T
Tomi Valkeinen 已提交
485
	DSSDBG("dpi_set_timings\n");
486

A
Archit Taneja 已提交
487
	mutex_lock(&dpi->lock);
488

A
Archit Taneja 已提交
489
	dpi->timings = *timings;
490

A
Archit Taneja 已提交
491
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
492 493
}

T
Tomi Valkeinen 已提交
494 495 496
static void dpi_get_timings(struct omap_dss_device *dssdev,
		struct omap_video_timings *timings)
{
A
Archit Taneja 已提交
497
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
498 499

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

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

A
Archit Taneja 已提交
503
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
504 505
}

506
static int dpi_check_timings(struct omap_dss_device *dssdev,
T
Tomi Valkeinen 已提交
507 508
			struct omap_video_timings *timings)
{
A
Archit Taneja 已提交
509
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
510
	enum omap_channel channel = dpi->output.dispc_channel;
T
Tomi Valkeinen 已提交
511 512 513
	int lck_div, pck_div;
	unsigned long fck;
	unsigned long pck;
514 515
	struct dpi_clk_calc_ctx ctx;
	bool ok;
T
Tomi Valkeinen 已提交
516

517 518 519
	if (timings->x_res % 8 != 0)
		return -EINVAL;

520
	if (!dispc_mgr_timings_ok(channel, timings))
T
Tomi Valkeinen 已提交
521 522
		return -EINVAL;

523
	if (timings->pixelclock == 0)
T
Tomi Valkeinen 已提交
524 525
		return -EINVAL;

526
	if (dpi->pll) {
A
Archit Taneja 已提交
527
		ok = dpi_dsi_clk_calc(dpi, timings->pixelclock, &ctx);
528 529
		if (!ok)
			return -EINVAL;
T
Tomi Valkeinen 已提交
530

531
		fck = ctx.dsi_cinfo.clkout[HSDIV_DISPC];
532
	} else {
533
		ok = dpi_dss_clk_calc(timings->pixelclock, &ctx);
534 535
		if (!ok)
			return -EINVAL;
T
Tomi Valkeinen 已提交
536

537
		fck = ctx.fck;
T
Tomi Valkeinen 已提交
538
	}
539

540 541
	lck_div = ctx.dispc_cinfo.lck_div;
	pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
542

543
	pck = fck / lck_div / pck_div;
T
Tomi Valkeinen 已提交
544

545
	timings->pixelclock = pck;
T
Tomi Valkeinen 已提交
546 547 548 549

	return 0;
}

550
static void dpi_set_data_lines(struct omap_dss_device *dssdev, int data_lines)
551
{
A
Archit Taneja 已提交
552
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
553

A
Archit Taneja 已提交
554
	mutex_lock(&dpi->lock);
555

A
Archit Taneja 已提交
556 557 558
	dpi->data_lines = data_lines;

	mutex_unlock(&dpi->lock);
559 560
}

561
static int dpi_verify_dsi_pll(struct dss_pll *pll)
562 563 564 565 566
{
	int r;

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

567
	r = dss_pll_enable(pll);
568
	if (r)
569 570
		return r;

571
	dss_pll_disable(pll);
572 573 574 575

	return 0;
}

A
Archit Taneja 已提交
576
static int dpi_init_regulator(struct dpi_data *dpi)
577 578 579 580 581 582
{
	struct regulator *vdds_dsi;

	if (!dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
		return 0;

A
Archit Taneja 已提交
583
	if (dpi->vdds_dsi_reg)
584 585
		return 0;

A
Archit Taneja 已提交
586
	vdds_dsi = devm_regulator_get(&dpi->pdev->dev, "vdds_dsi");
587
	if (IS_ERR(vdds_dsi)) {
588 589
		if (PTR_ERR(vdds_dsi) != -EPROBE_DEFER)
			DSSERR("can't get VDDS_DSI regulator\n");
590
		return PTR_ERR(vdds_dsi);
591 592
	}

A
Archit Taneja 已提交
593
	dpi->vdds_dsi_reg = vdds_dsi;
594 595 596 597

	return 0;
}

A
Archit Taneja 已提交
598
static void dpi_init_pll(struct dpi_data *dpi)
599
{
600
	struct dss_pll *pll;
601

602
	if (dpi->pll)
603 604
		return;

605 606
	pll = dpi_get_pll(dpi->output.dispc_channel);
	if (!pll)
607 608
		return;

T
Tomi Valkeinen 已提交
609 610 611 612
	/* On DRA7 we need to set a mux to use the PLL */
	if (omapdss_get_version() == OMAPDSS_VER_DRA7xx)
		dss_ctrl_pll_set_control_mux(pll->id, dpi->output.dispc_channel);

613
	if (dpi_verify_dsi_pll(pll)) {
614 615 616 617
		DSSWARN("DSI PLL not operational\n");
		return;
	}

618
	dpi->pll = pll;
619 620
}

621 622 623 624 625 626
/*
 * 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.
 */
627
static enum omap_channel dpi_get_channel(int port_num)
628 629 630 631 632 633 634
{
	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:
635
	case OMAPDSS_VER_AM43xx:
636 637
		return OMAP_DSS_CHANNEL_LCD;

T
Tomi Valkeinen 已提交
638 639 640 641 642 643 644 645 646 647 648
	case OMAPDSS_VER_DRA7xx:
		switch (port_num) {
		case 2:
			return OMAP_DSS_CHANNEL_LCD3;
		case 1:
			return OMAP_DSS_CHANNEL_LCD2;
		case 0:
		default:
			return OMAP_DSS_CHANNEL_LCD;
		}

649 650 651 652 653 654 655 656 657 658 659 660 661 662
	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 已提交
663 664 665
static int dpi_connect(struct omap_dss_device *dssdev,
		struct omap_dss_device *dst)
{
A
Archit Taneja 已提交
666
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
667
	enum omap_channel channel = dpi->output.dispc_channel;
T
Tomi Valkeinen 已提交
668 669
	int r;

A
Archit Taneja 已提交
670
	r = dpi_init_regulator(dpi);
T
Tomi Valkeinen 已提交
671 672 673
	if (r)
		return r;

A
Archit Taneja 已提交
674
	dpi_init_pll(dpi);
T
Tomi Valkeinen 已提交
675

676
	r = dss_mgr_connect(channel, dssdev);
T
Tomi Valkeinen 已提交
677 678 679 680 681 682 683
	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);
684
		dss_mgr_disconnect(channel, dssdev);
T
Tomi Valkeinen 已提交
685 686 687 688 689 690 691 692 693
		return r;
	}

	return 0;
}

static void dpi_disconnect(struct omap_dss_device *dssdev,
		struct omap_dss_device *dst)
{
694 695 696
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
	enum omap_channel channel = dpi->output.dispc_channel;

697
	WARN_ON(dst != dssdev->dst);
T
Tomi Valkeinen 已提交
698

699
	if (dst != dssdev->dst)
T
Tomi Valkeinen 已提交
700 701 702 703
		return;

	omapdss_output_unset_device(dssdev);

704
	dss_mgr_disconnect(channel, dssdev);
T
Tomi Valkeinen 已提交
705 706 707 708 709 710
}

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

711 712
	.enable = dpi_display_enable,
	.disable = dpi_display_disable,
T
Tomi Valkeinen 已提交
713 714

	.check_timings = dpi_check_timings,
715
	.set_timings = dpi_set_timings,
T
Tomi Valkeinen 已提交
716 717
	.get_timings = dpi_get_timings,

718
	.set_data_lines = dpi_set_data_lines,
T
Tomi Valkeinen 已提交
719 720
};

721
static void dpi_init_output(struct platform_device *pdev)
722
{
A
Archit Taneja 已提交
723
	struct dpi_data *dpi = dpi_get_data_from_pdev(pdev);
A
Archit Taneja 已提交
724
	struct omap_dss_device *out = &dpi->output;
725

726
	out->dev = &pdev->dev;
727
	out->id = OMAP_DSS_OUTPUT_DPI;
728
	out->output_type = OMAP_DISPLAY_TYPE_DPI;
T
Tomi Valkeinen 已提交
729
	out->name = "dpi.0";
730
	out->dispc_channel = dpi_get_channel(0);
T
Tomi Valkeinen 已提交
731
	out->ops.dpi = &dpi_ops;
732
	out->owner = THIS_MODULE;
733

734
	omapdss_register_output(out);
735 736
}

737
static void dpi_uninit_output(struct platform_device *pdev)
738
{
A
Archit Taneja 已提交
739
	struct dpi_data *dpi = dpi_get_data_from_pdev(pdev);
A
Archit Taneja 已提交
740
	struct omap_dss_device *out = &dpi->output;
741

742
	omapdss_unregister_output(out);
743 744
}

745 746 747 748 749
static void dpi_init_output_port(struct platform_device *pdev,
	struct device_node *port)
{
	struct dpi_data *dpi = port->data;
	struct omap_dss_device *out = &dpi->output;
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
	int r;
	u32 port_num;

	r = of_property_read_u32(port, "reg", &port_num);
	if (r)
		port_num = 0;

	switch (port_num) {
	case 2:
		out->name = "dpi.2";
		break;
	case 1:
		out->name = "dpi.1";
		break;
	case 0:
	default:
		out->name = "dpi.0";
		break;
	}
769 770 771 772

	out->dev = &pdev->dev;
	out->id = OMAP_DSS_OUTPUT_DPI;
	out->output_type = OMAP_DISPLAY_TYPE_DPI;
773 774
	out->dispc_channel = dpi_get_channel(port_num);
	out->port_num = port_num;
775 776 777 778 779 780
	out->ops.dpi = &dpi_ops;
	out->owner = THIS_MODULE;

	omapdss_register_output(out);
}

781
static void dpi_uninit_output_port(struct device_node *port)
782 783 784 785 786 787 788
{
	struct dpi_data *dpi = port->data;
	struct omap_dss_device *out = &dpi->output;

	omapdss_unregister_output(out);
}

T
Tomi Valkeinen 已提交
789
static int dpi_bind(struct device *dev, struct device *master, void *data)
790
{
T
Tomi Valkeinen 已提交
791
	struct platform_device *pdev = to_platform_device(dev);
A
Archit Taneja 已提交
792 793 794 795 796
	struct dpi_data *dpi;

	dpi = devm_kzalloc(&pdev->dev, sizeof(*dpi), GFP_KERNEL);
	if (!dpi)
		return -ENOMEM;
A
Archit Taneja 已提交
797 798

	dpi->pdev = pdev;
799

A
Archit Taneja 已提交
800 801 802
	dev_set_drvdata(&pdev->dev, dpi);

	mutex_init(&dpi->lock);
803

804 805
	dpi_init_output(pdev);

806 807 808
	return 0;
}

T
Tomi Valkeinen 已提交
809
static void dpi_unbind(struct device *dev, struct device *master, void *data)
T
Tomi Valkeinen 已提交
810
{
T
Tomi Valkeinen 已提交
811 812
	struct platform_device *pdev = to_platform_device(dev);

813
	dpi_uninit_output(pdev);
T
Tomi Valkeinen 已提交
814 815 816 817 818 819
}

static const struct component_ops dpi_component_ops = {
	.bind	= dpi_bind,
	.unbind	= dpi_unbind,
};
820

T
Tomi Valkeinen 已提交
821 822 823 824 825 826 827 828
static int dpi_probe(struct platform_device *pdev)
{
	return component_add(&pdev->dev, &dpi_component_ops);
}

static int dpi_remove(struct platform_device *pdev)
{
	component_del(&pdev->dev, &dpi_component_ops);
829
	return 0;
T
Tomi Valkeinen 已提交
830 831
}

832
static struct platform_driver omap_dpi_driver = {
T
Tomi Valkeinen 已提交
833 834
	.probe		= dpi_probe,
	.remove		= dpi_remove,
835 836
	.driver         = {
		.name   = "omapdss_dpi",
T
Tomi Valkeinen 已提交
837
		.suppress_bind_attrs = true,
838 839 840
	},
};

T
Tomi Valkeinen 已提交
841
int __init dpi_init_platform_driver(void)
842
{
843
	return platform_driver_register(&omap_dpi_driver);
844 845
}

846
void dpi_uninit_platform_driver(void)
847 848 849
{
	platform_driver_unregister(&omap_dpi_driver);
}
T
Tomi Valkeinen 已提交
850

851
int dpi_init_port(struct platform_device *pdev, struct device_node *port)
T
Tomi Valkeinen 已提交
852
{
A
Archit Taneja 已提交
853
	struct dpi_data *dpi;
T
Tomi Valkeinen 已提交
854 855 856 857
	struct device_node *ep;
	u32 datalines;
	int r;

A
Archit Taneja 已提交
858 859 860 861
	dpi = devm_kzalloc(&pdev->dev, sizeof(*dpi), GFP_KERNEL);
	if (!dpi)
		return -ENOMEM;

T
Tomi Valkeinen 已提交
862 863 864 865 866 867 868 869 870 871
	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 已提交
872
	dpi->data_lines = datalines;
T
Tomi Valkeinen 已提交
873 874 875

	of_node_put(ep);

A
Archit Taneja 已提交
876
	dpi->pdev = pdev;
877
	port->data = dpi;
T
Tomi Valkeinen 已提交
878

A
Archit Taneja 已提交
879
	mutex_init(&dpi->lock);
T
Tomi Valkeinen 已提交
880

881
	dpi_init_output_port(pdev, port);
T
Tomi Valkeinen 已提交
882

A
Archit Taneja 已提交
883
	dpi->port_initialized = true;
T
Tomi Valkeinen 已提交
884 885 886 887 888 889 890 891 892

	return 0;

err_datalines:
	of_node_put(ep);

	return r;
}

893
void dpi_uninit_port(struct device_node *port)
T
Tomi Valkeinen 已提交
894
{
895
	struct dpi_data *dpi = port->data;
A
Archit Taneja 已提交
896 897

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

900
	dpi_uninit_output_port(port);
T
Tomi Valkeinen 已提交
901
}