dpi.c 17.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
/*
 * 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
};

A
Archit Taneja 已提交
57 58 59 60 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);
}

static struct dpi_data *dpi_get_data_from_pdev(struct platform_device *pdev)
{
	return dev_get_drvdata(&pdev->dev);
}
T
Tomi Valkeinen 已提交
66

67
static struct platform_device *dpi_get_dsidev(enum omap_channel channel)
68
{
69 70 71 72 73 74 75 76 77 78 79
	/*
	 * 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:
80
	case OMAPDSS_VER_AM43xx:
81 82
		return NULL;

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
	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;
		}

105 106 107
	default:
		return NULL;
	}
108 109
}

110
static enum omap_dss_clk_source dpi_get_alt_clk_src(enum omap_channel channel)
111
{
112 113 114 115 116
	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;
117 118
	case OMAP_DSS_CHANNEL_LCD3:
		return OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC;
119 120 121 122 123
	default:
		/* this shouldn't happen */
		WARN_ON(1);
		return OMAP_DSS_CLK_SRC_FCK;
	}
124 125
}

126 127 128 129 130 131 132 133 134 135
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 已提交
136
	unsigned long fck;
137 138 139 140 141 142 143 144 145 146 147 148 149
	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.
	 */
150
	if (ctx->pck_min >= 100000000) {
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
		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.
	 */
177
	if (regm_dispc > 1 && regm_dispc % 2 != 0 && ctx->pck_min >= 100000000)
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
		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);
}

203
static bool dpi_calc_dss_cb(unsigned long fck, void *data)
204 205 206
{
	struct dpi_clk_calc_ctx *ctx = data;

207
	ctx->fck = fck;
208 209 210 211 212

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

A
Archit Taneja 已提交
213 214
static bool dpi_dsi_clk_calc(struct dpi_data *dpi, unsigned long pck,
		struct dpi_clk_calc_ctx *ctx)
215 216 217 218
{
	unsigned long clkin;
	unsigned long pll_min, pll_max;

A
Archit Taneja 已提交
219
	clkin = dsi_get_pll_clkin(dpi->dsidev);
220 221

	memset(ctx, 0, sizeof(*ctx));
A
Archit Taneja 已提交
222
	ctx->dsidev = dpi->dsidev;
223 224 225 226 227 228 229
	ctx->pck_min = pck - 1000;
	ctx->pck_max = pck + 1000;
	ctx->dsi_cinfo.clkin = clkin;

	pll_min = 0;
	pll_max = 0;

A
Archit Taneja 已提交
230
	return dsi_pll_calc(dpi->dsidev, clkin,
231 232 233 234 235 236 237 238 239 240 241 242
			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
243
	 * +/- ~15MHz.
244 245
	 */

246
	for (i = 0; i < 25; ++i) {
247 248 249 250 251 252 253 254 255
		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;

256
		ok = dss_div_calc(pck, ctx->pck_min, dpi_calc_dss_cb, ctx);
257 258 259 260 261 262 263 264 265
		if (ok)
			return ok;
	}

	return false;
}



A
Archit Taneja 已提交
266
static int dpi_set_dsi_clk(struct dpi_data *dpi, enum omap_channel channel,
267 268
		unsigned long pck_req, unsigned long *fck, int *lck_div,
		int *pck_div)
T
Tomi Valkeinen 已提交
269
{
270
	struct dpi_clk_calc_ctx ctx;
T
Tomi Valkeinen 已提交
271
	int r;
272
	bool ok;
T
Tomi Valkeinen 已提交
273

A
Archit Taneja 已提交
274
	ok = dpi_dsi_clk_calc(dpi, pck_req, &ctx);
275 276
	if (!ok)
		return -EINVAL;
T
Tomi Valkeinen 已提交
277

A
Archit Taneja 已提交
278
	r = dsi_pll_set_clock_div(dpi->dsidev, &ctx.dsi_cinfo);
T
Tomi Valkeinen 已提交
279 280 281
	if (r)
		return r;

282 283
	dss_select_lcd_clk_source(channel,
			dpi_get_alt_clk_src(channel));
T
Tomi Valkeinen 已提交
284

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

287 288 289
	*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 已提交
290 291 292

	return 0;
}
293

A
Archit Taneja 已提交
294 295
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 已提交
296
{
297
	struct dpi_clk_calc_ctx ctx;
T
Tomi Valkeinen 已提交
298
	int r;
299
	bool ok;
T
Tomi Valkeinen 已提交
300

301 302 303
	ok = dpi_dss_clk_calc(pck_req, &ctx);
	if (!ok)
		return -EINVAL;
T
Tomi Valkeinen 已提交
304

305
	r = dss_set_fck_rate(ctx.fck);
T
Tomi Valkeinen 已提交
306 307 308
	if (r)
		return r;

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

311
	*fck = ctx.fck;
312 313
	*lck_div = ctx.dispc_cinfo.lck_div;
	*pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
314 315 316 317

	return 0;
}

A
Archit Taneja 已提交
318
static int dpi_set_mode(struct dpi_data *dpi)
T
Tomi Valkeinen 已提交
319
{
A
Archit Taneja 已提交
320 321 322
	struct omap_dss_device *out = &dpi->output;
	struct omap_overlay_manager *mgr = out->manager;
	struct omap_video_timings *t = &dpi->timings;
323 324
	int lck_div = 0, pck_div = 0;
	unsigned long fck = 0;
T
Tomi Valkeinen 已提交
325 326 327
	unsigned long pck;
	int r = 0;

A
Archit Taneja 已提交
328 329
	if (dpi->dsidev)
		r = dpi_set_dsi_clk(dpi, mgr->id, t->pixelclock, &fck,
330
				&lck_div, &pck_div);
331
	else
A
Archit Taneja 已提交
332
		r = dpi_set_dispc_clk(dpi, t->pixelclock, &fck,
333
				&lck_div, &pck_div);
T
Tomi Valkeinen 已提交
334
	if (r)
335
		return r;
T
Tomi Valkeinen 已提交
336

337
	pck = fck / lck_div / pck_div;
T
Tomi Valkeinen 已提交
338

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

343
		t->pixelclock = pck;
T
Tomi Valkeinen 已提交
344 345
	}

346
	dss_mgr_set_timings(mgr, t);
T
Tomi Valkeinen 已提交
347

348
	return 0;
T
Tomi Valkeinen 已提交
349 350
}

A
Archit Taneja 已提交
351
static void dpi_config_lcd_manager(struct dpi_data *dpi)
T
Tomi Valkeinen 已提交
352
{
A
Archit Taneja 已提交
353 354 355 356
	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;
357

A
Archit Taneja 已提交
358 359
	dpi->mgr_config.stallmode = false;
	dpi->mgr_config.fifohandcheck = false;
360

A
Archit Taneja 已提交
361
	dpi->mgr_config.video_port_width = dpi->data_lines;
362

A
Archit Taneja 已提交
363
	dpi->mgr_config.lcden_sig_polarity = 0;
364

A
Archit Taneja 已提交
365
	dss_mgr_set_lcd_config(mgr, &dpi->mgr_config);
T
Tomi Valkeinen 已提交
366 367
}

368
static int dpi_display_enable(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
369
{
A
Archit Taneja 已提交
370
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
371
	struct omap_dss_device *out = &dpi->output;
T
Tomi Valkeinen 已提交
372 373
	int r;

A
Archit Taneja 已提交
374
	mutex_lock(&dpi->lock);
375

A
Archit Taneja 已提交
376
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI) && !dpi->vdds_dsi_reg) {
377
		DSSERR("no VDSS_DSI regulator\n");
378 379
		r = -ENODEV;
		goto err_no_reg;
380 381
	}

382 383
	if (out == NULL || out->manager == NULL) {
		DSSERR("failed to enable display: no output/manager\n");
384
		r = -ENODEV;
385
		goto err_no_out_mgr;
386 387
	}

388
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI)) {
A
Archit Taneja 已提交
389
		r = regulator_enable(dpi->vdds_dsi_reg);
390
		if (r)
391
			goto err_reg_enable;
392 393
	}

394
	r = dispc_runtime_get();
T
Tomi Valkeinen 已提交
395
	if (r)
396 397
		goto err_get_dispc;

398
	r = dss_dpi_select_source(out->manager->id);
399 400 401
	if (r)
		goto err_src_sel;

A
Archit Taneja 已提交
402 403
	if (dpi->dsidev) {
		r = dsi_runtime_get(dpi->dsidev);
404 405 406
		if (r)
			goto err_get_dsi;

A
Archit Taneja 已提交
407
		r = dsi_pll_init(dpi->dsidev, 0, 1);
408
		if (r)
409
			goto err_dsi_pll_init;
410 411
	}

A
Archit Taneja 已提交
412
	r = dpi_set_mode(dpi);
T
Tomi Valkeinen 已提交
413
	if (r)
414
		goto err_set_mode;
T
Tomi Valkeinen 已提交
415

A
Archit Taneja 已提交
416
	dpi_config_lcd_manager(dpi);
417

T
Tomi Valkeinen 已提交
418 419
	mdelay(2);

420
	r = dss_mgr_enable(out->manager);
421 422
	if (r)
		goto err_mgr_enable;
T
Tomi Valkeinen 已提交
423

A
Archit Taneja 已提交
424
	mutex_unlock(&dpi->lock);
425

T
Tomi Valkeinen 已提交
426 427
	return 0;

428
err_mgr_enable:
429
err_set_mode:
A
Archit Taneja 已提交
430 431
	if (dpi->dsidev)
		dsi_pll_uninit(dpi->dsidev, true);
432
err_dsi_pll_init:
A
Archit Taneja 已提交
433 434
	if (dpi->dsidev)
		dsi_runtime_put(dpi->dsidev);
435
err_get_dsi:
436
err_src_sel:
437 438
	dispc_runtime_put();
err_get_dispc:
439
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
A
Archit Taneja 已提交
440
		regulator_disable(dpi->vdds_dsi_reg);
441
err_reg_enable:
442
err_no_out_mgr:
443
err_no_reg:
A
Archit Taneja 已提交
444
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
445 446 447
	return r;
}

448
static void dpi_display_disable(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
449
{
A
Archit Taneja 已提交
450
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
451
	struct omap_overlay_manager *mgr = dpi->output.manager;
452

A
Archit Taneja 已提交
453
	mutex_lock(&dpi->lock);
454

455
	dss_mgr_disable(mgr);
T
Tomi Valkeinen 已提交
456

A
Archit Taneja 已提交
457
	if (dpi->dsidev) {
458
		dss_select_lcd_clk_source(mgr->id, OMAP_DSS_CLK_SRC_FCK);
A
Archit Taneja 已提交
459 460
		dsi_pll_uninit(dpi->dsidev, true);
		dsi_runtime_put(dpi->dsidev);
461
	}
T
Tomi Valkeinen 已提交
462

463
	dispc_runtime_put();
T
Tomi Valkeinen 已提交
464

465
	if (dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
A
Archit Taneja 已提交
466
		regulator_disable(dpi->vdds_dsi_reg);
467

A
Archit Taneja 已提交
468
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
469 470
}

471
static void dpi_set_timings(struct omap_dss_device *dssdev,
472
		struct omap_video_timings *timings)
T
Tomi Valkeinen 已提交
473
{
A
Archit Taneja 已提交
474
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
475

T
Tomi Valkeinen 已提交
476
	DSSDBG("dpi_set_timings\n");
477

A
Archit Taneja 已提交
478
	mutex_lock(&dpi->lock);
479

A
Archit Taneja 已提交
480
	dpi->timings = *timings;
481

A
Archit Taneja 已提交
482
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
483 484
}

T
Tomi Valkeinen 已提交
485 486 487
static void dpi_get_timings(struct omap_dss_device *dssdev,
		struct omap_video_timings *timings)
{
A
Archit Taneja 已提交
488
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
489 490

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

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

A
Archit Taneja 已提交
494
	mutex_unlock(&dpi->lock);
T
Tomi Valkeinen 已提交
495 496
}

497
static int dpi_check_timings(struct omap_dss_device *dssdev,
T
Tomi Valkeinen 已提交
498 499
			struct omap_video_timings *timings)
{
A
Archit Taneja 已提交
500
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
501
	struct omap_overlay_manager *mgr = dpi->output.manager;
T
Tomi Valkeinen 已提交
502 503 504
	int lck_div, pck_div;
	unsigned long fck;
	unsigned long pck;
505 506
	struct dpi_clk_calc_ctx ctx;
	bool ok;
T
Tomi Valkeinen 已提交
507

508
	if (mgr && !dispc_mgr_timings_ok(mgr->id, timings))
T
Tomi Valkeinen 已提交
509 510
		return -EINVAL;

511
	if (timings->pixelclock == 0)
T
Tomi Valkeinen 已提交
512 513
		return -EINVAL;

A
Archit Taneja 已提交
514 515
	if (dpi->dsidev) {
		ok = dpi_dsi_clk_calc(dpi, timings->pixelclock, &ctx);
516 517
		if (!ok)
			return -EINVAL;
T
Tomi Valkeinen 已提交
518

519
		fck = ctx.dsi_cinfo.dsi_pll_hsdiv_dispc_clk;
520
	} else {
521
		ok = dpi_dss_clk_calc(timings->pixelclock, &ctx);
522 523
		if (!ok)
			return -EINVAL;
T
Tomi Valkeinen 已提交
524

525
		fck = ctx.fck;
T
Tomi Valkeinen 已提交
526
	}
527

528 529
	lck_div = ctx.dispc_cinfo.lck_div;
	pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
530

531
	pck = fck / lck_div / pck_div;
T
Tomi Valkeinen 已提交
532

533
	timings->pixelclock = pck;
T
Tomi Valkeinen 已提交
534 535 536 537

	return 0;
}

538
static void dpi_set_data_lines(struct omap_dss_device *dssdev, int data_lines)
539
{
A
Archit Taneja 已提交
540
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
541

A
Archit Taneja 已提交
542
	mutex_lock(&dpi->lock);
543

A
Archit Taneja 已提交
544 545 546
	dpi->data_lines = data_lines;

	mutex_unlock(&dpi->lock);
547 548
}

549
static int dpi_verify_dsi_pll(struct platform_device *dsidev)
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
{
	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 已提交
571
static int dpi_init_regulator(struct dpi_data *dpi)
572 573 574 575 576 577
{
	struct regulator *vdds_dsi;

	if (!dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
		return 0;

A
Archit Taneja 已提交
578
	if (dpi->vdds_dsi_reg)
579 580
		return 0;

A
Archit Taneja 已提交
581
	vdds_dsi = devm_regulator_get(&dpi->pdev->dev, "vdds_dsi");
582
	if (IS_ERR(vdds_dsi)) {
583 584
		if (PTR_ERR(vdds_dsi) != -EPROBE_DEFER)
			DSSERR("can't get VDDS_DSI regulator\n");
585
		return PTR_ERR(vdds_dsi);
586 587
	}

A
Archit Taneja 已提交
588
	dpi->vdds_dsi_reg = vdds_dsi;
589 590 591 592

	return 0;
}

A
Archit Taneja 已提交
593
static void dpi_init_pll(struct dpi_data *dpi)
594 595 596
{
	struct platform_device *dsidev;

A
Archit Taneja 已提交
597
	if (dpi->dsidev)
598 599
		return;

A
Archit Taneja 已提交
600
	dsidev = dpi_get_dsidev(dpi->output.dispc_channel);
601 602 603 604 605 606 607 608
	if (!dsidev)
		return;

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

A
Archit Taneja 已提交
609
	dpi->dsidev = dsidev;
610 611
}

612 613 614 615 616 617 618 619 620 621 622 623 624 625
/*
 * 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:
626
	case OMAPDSS_VER_AM43xx:
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
		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 已提交
643 644 645
static int dpi_connect(struct omap_dss_device *dssdev,
		struct omap_dss_device *dst)
{
A
Archit Taneja 已提交
646
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
T
Tomi Valkeinen 已提交
647 648 649
	struct omap_overlay_manager *mgr;
	int r;

A
Archit Taneja 已提交
650
	r = dpi_init_regulator(dpi);
T
Tomi Valkeinen 已提交
651 652 653
	if (r)
		return r;

A
Archit Taneja 已提交
654
	dpi_init_pll(dpi);
T
Tomi Valkeinen 已提交
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677

	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)
{
678
	WARN_ON(dst != dssdev->dst);
T
Tomi Valkeinen 已提交
679

680
	if (dst != dssdev->dst)
T
Tomi Valkeinen 已提交
681 682 683 684 685 686 687 688 689 690 691 692
		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,

693 694
	.enable = dpi_display_enable,
	.disable = dpi_display_disable,
T
Tomi Valkeinen 已提交
695 696

	.check_timings = dpi_check_timings,
697
	.set_timings = dpi_set_timings,
T
Tomi Valkeinen 已提交
698 699
	.get_timings = dpi_get_timings,

700
	.set_data_lines = dpi_set_data_lines,
T
Tomi Valkeinen 已提交
701 702
};

703
static void dpi_init_output(struct platform_device *pdev)
704
{
A
Archit Taneja 已提交
705
	struct dpi_data *dpi = dpi_get_data_from_pdev(pdev);
A
Archit Taneja 已提交
706
	struct omap_dss_device *out = &dpi->output;
707

708
	out->dev = &pdev->dev;
709
	out->id = OMAP_DSS_OUTPUT_DPI;
710
	out->output_type = OMAP_DISPLAY_TYPE_DPI;
T
Tomi Valkeinen 已提交
711
	out->name = "dpi.0";
712
	out->dispc_channel = dpi_get_channel();
T
Tomi Valkeinen 已提交
713
	out->ops.dpi = &dpi_ops;
714
	out->owner = THIS_MODULE;
715

716
	omapdss_register_output(out);
717 718 719 720
}

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

724
	omapdss_unregister_output(out);
725 726
}

727
static int omap_dpi_probe(struct platform_device *pdev)
728
{
A
Archit Taneja 已提交
729 730 731 732 733
	struct dpi_data *dpi;

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

	dpi->pdev = pdev;
736

A
Archit Taneja 已提交
737 738 739
	dev_set_drvdata(&pdev->dev, dpi);

	mutex_init(&dpi->lock);
740

741 742
	dpi_init_output(pdev);

743 744 745
	return 0;
}

T
Tomi Valkeinen 已提交
746
static int __exit omap_dpi_remove(struct platform_device *pdev)
T
Tomi Valkeinen 已提交
747
{
748 749
	dpi_uninit_output(pdev);

750
	return 0;
T
Tomi Valkeinen 已提交
751 752
}

753
static struct platform_driver omap_dpi_driver = {
754
	.probe		= omap_dpi_probe,
T
Tomi Valkeinen 已提交
755
	.remove         = __exit_p(omap_dpi_remove),
756 757 758
	.driver         = {
		.name   = "omapdss_dpi",
		.owner  = THIS_MODULE,
T
Tomi Valkeinen 已提交
759
		.suppress_bind_attrs = true,
760 761 762
	},
};

T
Tomi Valkeinen 已提交
763
int __init dpi_init_platform_driver(void)
764
{
765
	return platform_driver_register(&omap_dpi_driver);
766 767
}

T
Tomi Valkeinen 已提交
768
void __exit dpi_uninit_platform_driver(void)
769 770 771
{
	platform_driver_unregister(&omap_dpi_driver);
}
T
Tomi Valkeinen 已提交
772 773 774

int __init dpi_init_port(struct platform_device *pdev, struct device_node *port)
{
A
Archit Taneja 已提交
775
	struct dpi_data *dpi;
T
Tomi Valkeinen 已提交
776 777 778 779
	struct device_node *ep;
	u32 datalines;
	int r;

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

T
Tomi Valkeinen 已提交
784 785 786 787 788 789 790 791 792 793
	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 已提交
794
	dpi->data_lines = datalines;
T
Tomi Valkeinen 已提交
795 796 797

	of_node_put(ep);

A
Archit Taneja 已提交
798
	dpi->pdev = pdev;
T
Tomi Valkeinen 已提交
799

A
Archit Taneja 已提交
800
	mutex_init(&dpi->lock);
T
Tomi Valkeinen 已提交
801 802 803

	dpi_init_output(pdev);

A
Archit Taneja 已提交
804
	dpi->port_initialized = true;
T
Tomi Valkeinen 已提交
805

A
Archit Taneja 已提交
806 807
	dev_set_drvdata(&pdev->dev, dpi);

T
Tomi Valkeinen 已提交
808 809 810 811 812 813 814 815
	return 0;

err_datalines:
	of_node_put(ep);

	return r;
}

A
Archit Taneja 已提交
816
void __exit dpi_uninit_port(struct platform_device *pdev)
T
Tomi Valkeinen 已提交
817
{
A
Archit Taneja 已提交
818
	struct dpi_data *dpi = dpi_get_data_from_pdev(pdev);
A
Archit Taneja 已提交
819 820

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

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