dpi.c 17.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>
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
static struct dpi_data *dpi_get_data_from_dssdev(struct omap_dss_device *dssdev)
{
	return container_of(dssdev, struct dpi_data, output);
}

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

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

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

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

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

127 128 129 130 131 132 133 134 135 136
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 已提交
137
	unsigned long fck;
138 139 140 141 142 143 144 145 146 147 148 149 150
	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.
	 */
151
	if (ctx->pck_min >= 100000000) {
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 177
		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.
	 */
178
	if (regm_dispc > 1 && regm_dispc % 2 != 0 && ctx->pck_min >= 100000000)
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
		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);
}

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

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

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

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

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

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

	pll_min = 0;
	pll_max = 0;

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

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

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

	return false;
}



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

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

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

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

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

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

	return 0;
}
294

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

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

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

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

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

	return 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

T
Tomi Valkeinen 已提交
427 428
	return 0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	return 0;
}

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

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

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

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

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

	if (!dss_has_feature(FEAT_DPI_USES_VDDS_DSI))
		return 0;

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

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

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

	return 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

717
	omapdss_register_output(out);
718 719 720 721
}

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

725
	omapdss_unregister_output(out);
726 727
}

728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
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;

	out->dev = &pdev->dev;
	out->id = OMAP_DSS_OUTPUT_DPI;
	out->output_type = OMAP_DISPLAY_TYPE_DPI;
	out->dispc_channel = dpi_get_channel();
	out->ops.dpi = &dpi_ops;
	out->owner = THIS_MODULE;

	omapdss_register_output(out);
}

static void __exit dpi_uninit_output_port(struct device_node *port)
{
	struct dpi_data *dpi = port->data;
	struct omap_dss_device *out = &dpi->output;

	omapdss_unregister_output(out);
}

752
static int omap_dpi_probe(struct platform_device *pdev)
753
{
A
Archit Taneja 已提交
754 755 756 757 758
	struct dpi_data *dpi;

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

	dpi->pdev = pdev;
761

A
Archit Taneja 已提交
762 763 764
	dev_set_drvdata(&pdev->dev, dpi);

	mutex_init(&dpi->lock);
765

766 767
	dpi_init_output(pdev);

768 769 770
	return 0;
}

T
Tomi Valkeinen 已提交
771
static int __exit omap_dpi_remove(struct platform_device *pdev)
T
Tomi Valkeinen 已提交
772
{
773 774
	dpi_uninit_output(pdev);

775
	return 0;
T
Tomi Valkeinen 已提交
776 777
}

778
static struct platform_driver omap_dpi_driver = {
779
	.probe		= omap_dpi_probe,
T
Tomi Valkeinen 已提交
780
	.remove         = __exit_p(omap_dpi_remove),
781 782 783
	.driver         = {
		.name   = "omapdss_dpi",
		.owner  = THIS_MODULE,
T
Tomi Valkeinen 已提交
784
		.suppress_bind_attrs = true,
785 786 787
	},
};

T
Tomi Valkeinen 已提交
788
int __init dpi_init_platform_driver(void)
789
{
790
	return platform_driver_register(&omap_dpi_driver);
791 792
}

T
Tomi Valkeinen 已提交
793
void __exit dpi_uninit_platform_driver(void)
794 795 796
{
	platform_driver_unregister(&omap_dpi_driver);
}
T
Tomi Valkeinen 已提交
797 798 799

int __init dpi_init_port(struct platform_device *pdev, struct device_node *port)
{
A
Archit Taneja 已提交
800
	struct dpi_data *dpi;
T
Tomi Valkeinen 已提交
801 802 803 804
	struct device_node *ep;
	u32 datalines;
	int r;

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

T
Tomi Valkeinen 已提交
809 810 811 812 813 814 815 816 817 818
	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 已提交
819
	dpi->data_lines = datalines;
T
Tomi Valkeinen 已提交
820 821 822

	of_node_put(ep);

A
Archit Taneja 已提交
823
	dpi->pdev = pdev;
824
	port->data = dpi;
T
Tomi Valkeinen 已提交
825

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

828
	dpi_init_output_port(pdev, port);
T
Tomi Valkeinen 已提交
829

A
Archit Taneja 已提交
830
	dpi->port_initialized = true;
T
Tomi Valkeinen 已提交
831 832 833 834 835 836 837 838 839

	return 0;

err_datalines:
	of_node_put(ep);

	return r;
}

840
void __exit dpi_uninit_port(struct device_node *port)
T
Tomi Valkeinen 已提交
841
{
842
	struct dpi_data *dpi = port->data;
A
Archit Taneja 已提交
843 844

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

847
	dpi_uninit_output_port(port);
T
Tomi Valkeinen 已提交
848
}