dpi.c 16.3 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
/*
 * 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>
25
#include <linux/export.h>
26
#include <linux/err.h>
T
Tomi Valkeinen 已提交
27
#include <linux/errno.h>
28 29
#include <linux/platform_device.h>
#include <linux/regulator/consumer.h>
30
#include <linux/string.h>
T
Tomi Valkeinen 已提交
31
#include <linux/of.h>
32
#include <linux/clk.h>
33
#include <linux/sys_soc.h>
T
Tomi Valkeinen 已提交
34

35
#include "omapdss.h"
T
Tomi Valkeinen 已提交
36 37
#include "dss.h"

A
Archit Taneja 已提交
38
struct dpi_data {
39
	struct platform_device *pdev;
40
	enum dss_model dss_model;
41
	struct dss_device *dss;
42

43
	struct regulator *vdds_dsi_reg;
44
	enum dss_clk_source clk_src;
45
	struct dss_pll *pll;
46

47 48
	struct mutex lock;

49
	struct videomode vm;
50
	struct dss_lcd_mgr_config mgr_config;
51
	int data_lines;
52

53
	struct omap_dss_device output;
A
Archit Taneja 已提交
54 55
};

A
Archit Taneja 已提交
56 57 58 59 60
static struct dpi_data *dpi_get_data_from_dssdev(struct omap_dss_device *dssdev)
{
	return container_of(dssdev, struct dpi_data, output);
}

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
static enum dss_clk_source dpi_get_clk_src_dra7xx(enum omap_channel channel)
{
	/*
	 * Possible clock sources:
	 * LCD1: FCK/PLL1_1/HDMI_PLL
	 * LCD2: FCK/PLL1_3/HDMI_PLL (DRA74x: PLL2_3)
	 * LCD3: FCK/PLL1_3/HDMI_PLL (DRA74x: PLL2_1)
	 */

	switch (channel) {
	case OMAP_DSS_CHANNEL_LCD:
	{
		if (dss_pll_find_by_src(DSS_CLK_SRC_PLL1_1))
			return DSS_CLK_SRC_PLL1_1;
		break;
	}
	case OMAP_DSS_CHANNEL_LCD2:
	{
		if (dss_pll_find_by_src(DSS_CLK_SRC_PLL1_3))
			return DSS_CLK_SRC_PLL1_3;
		if (dss_pll_find_by_src(DSS_CLK_SRC_PLL2_3))
			return DSS_CLK_SRC_PLL2_3;
		break;
	}
	case OMAP_DSS_CHANNEL_LCD3:
	{
		if (dss_pll_find_by_src(DSS_CLK_SRC_PLL2_1))
			return DSS_CLK_SRC_PLL2_1;
		if (dss_pll_find_by_src(DSS_CLK_SRC_PLL1_3))
			return DSS_CLK_SRC_PLL1_3;
		break;
	}
	default:
		break;
	}

	return DSS_CLK_SRC_FCK;
}

100
static enum dss_clk_source dpi_get_clk_src(struct dpi_data *dpi)
101
{
102 103
	enum omap_channel channel = dpi->output.dispc_channel;

104 105 106 107 108
	/*
	 * 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.
	 */
109 110 111
	switch (dpi->dss_model) {
	case DSS_MODEL_OMAP2:
	case DSS_MODEL_OMAP3:
112
		return DSS_CLK_SRC_FCK;
113

114
	case DSS_MODEL_OMAP4:
115 116
		switch (channel) {
		case OMAP_DSS_CHANNEL_LCD:
117
			return DSS_CLK_SRC_PLL1_1;
118
		case OMAP_DSS_CHANNEL_LCD2:
119
			return DSS_CLK_SRC_PLL2_1;
120
		default:
121
			return DSS_CLK_SRC_FCK;
122 123
		}

124
	case DSS_MODEL_OMAP5:
125 126
		switch (channel) {
		case OMAP_DSS_CHANNEL_LCD:
127
			return DSS_CLK_SRC_PLL1_1;
128
		case OMAP_DSS_CHANNEL_LCD3:
129 130
			return DSS_CLK_SRC_PLL2_1;
		case OMAP_DSS_CHANNEL_LCD2:
131
		default:
132
			return DSS_CLK_SRC_FCK;
133 134
		}

135
	case DSS_MODEL_DRA7:
136
		return dpi_get_clk_src_dra7xx(channel);
T
Tomi Valkeinen 已提交
137

138
	default:
139
		return DSS_CLK_SRC_FCK;
140
	}
141 142
}

143
struct dpi_clk_calc_ctx {
144
	struct dss_pll *pll;
145
	unsigned int clkout_idx;
146 147 148 149 150 151 152

	/* inputs */

	unsigned long pck_min, pck_max;

	/* outputs */

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


185
static bool dpi_calc_hsdiv_cb(int m_dispc, unsigned long dispc,
186 187 188 189
		void *data)
{
	struct dpi_clk_calc_ctx *ctx = data;

190 191
	ctx->pll_cinfo.mX[ctx->clkout_idx] = m_dispc;
	ctx->pll_cinfo.clkout[ctx->clkout_idx] = dispc;
192 193 194 195 196 197

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


198 199
static bool dpi_calc_pll_cb(int n, int m, unsigned long fint,
		unsigned long clkdco,
200 201 202 203
		void *data)
{
	struct dpi_clk_calc_ctx *ctx = data;

204 205 206 207
	ctx->pll_cinfo.n = n;
	ctx->pll_cinfo.m = m;
	ctx->pll_cinfo.fint = fint;
	ctx->pll_cinfo.clkdco = clkdco;
208

209
	return dss_pll_hsdiv_calc_a(ctx->pll, clkdco,
210
		ctx->pck_min, dss_get_max_fck_rate(),
211
		dpi_calc_hsdiv_cb, ctx);
212 213
}

214
static bool dpi_calc_dss_cb(unsigned long fck, void *data)
215 216 217
{
	struct dpi_clk_calc_ctx *ctx = data;

218
	ctx->fck = fck;
219 220 221 222 223

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

224
static bool dpi_pll_clk_calc(struct dpi_data *dpi, unsigned long pck,
A
Archit Taneja 已提交
225
		struct dpi_clk_calc_ctx *ctx)
226 227 228 229
{
	unsigned long clkin;

	memset(ctx, 0, sizeof(*ctx));
230
	ctx->pll = dpi->pll;
231
	ctx->clkout_idx = dss_pll_get_clkout_idx_for_src(dpi->clk_src);
232

233
	clkin = clk_get_rate(dpi->pll->clkin);
234

235 236
	if (dpi->pll->hw->type == DSS_PLL_TYPE_A) {
		unsigned long pll_min, pll_max;
237

238 239 240 241 242 243 244 245 246 247
		ctx->pck_min = pck - 1000;
		ctx->pck_max = pck + 1000;

		pll_min = 0;
		pll_max = 0;

		return dss_pll_calc_a(ctx->pll, clkin,
				pll_min, pll_max,
				dpi_calc_pll_cb, ctx);
	} else { /* DSS_PLL_TYPE_B */
248
		dss_pll_calc_b(dpi->pll, clkin, pck, &ctx->pll_cinfo);
249 250 251

		ctx->dispc_cinfo.lck_div = 1;
		ctx->dispc_cinfo.pck_div = 1;
252
		ctx->dispc_cinfo.lck = ctx->pll_cinfo.clkout[0];
253 254 255 256
		ctx->dispc_cinfo.pck = ctx->dispc_cinfo.lck;

		return true;
	}
257 258 259 260 261 262 263 264 265 266
}

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
267
	 * +/- ~15MHz.
268 269
	 */

270
	for (i = 0; i < 25; ++i) {
271 272 273 274 275 276 277 278 279
		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;

280
		ok = dss_div_calc(pck, ctx->pck_min, dpi_calc_dss_cb, ctx);
281 282 283 284 285 286 287 288 289
		if (ok)
			return ok;
	}

	return false;
}



290
static int dpi_set_pll_clk(struct dpi_data *dpi, enum omap_channel channel,
291 292
		unsigned long pck_req, unsigned long *fck, int *lck_div,
		int *pck_div)
T
Tomi Valkeinen 已提交
293
{
294
	struct dpi_clk_calc_ctx ctx;
T
Tomi Valkeinen 已提交
295
	int r;
296
	bool ok;
T
Tomi Valkeinen 已提交
297

298
	ok = dpi_pll_clk_calc(dpi, pck_req, &ctx);
299 300
	if (!ok)
		return -EINVAL;
T
Tomi Valkeinen 已提交
301

302
	r = dss_pll_set_config(dpi->pll, &ctx.pll_cinfo);
T
Tomi Valkeinen 已提交
303 304 305
	if (r)
		return r;

306
	dss_select_lcd_clk_source(dpi->dss, channel, dpi->clk_src);
T
Tomi Valkeinen 已提交
307

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

310
	*fck = ctx.pll_cinfo.clkout[ctx.clkout_idx];
311 312
	*lck_div = ctx.dispc_cinfo.lck_div;
	*pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
313 314 315

	return 0;
}
316

A
Archit Taneja 已提交
317 318
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 已提交
319
{
320
	struct dpi_clk_calc_ctx ctx;
T
Tomi Valkeinen 已提交
321
	int r;
322
	bool ok;
T
Tomi Valkeinen 已提交
323

324 325 326
	ok = dpi_dss_clk_calc(pck_req, &ctx);
	if (!ok)
		return -EINVAL;
T
Tomi Valkeinen 已提交
327

328
	r = dss_set_fck_rate(ctx.fck);
T
Tomi Valkeinen 已提交
329 330 331
	if (r)
		return r;

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

334
	*fck = ctx.fck;
335 336
	*lck_div = ctx.dispc_cinfo.lck_div;
	*pck_div = ctx.dispc_cinfo.pck_div;
T
Tomi Valkeinen 已提交
337 338 339 340

	return 0;
}

A
Archit Taneja 已提交
341
static int dpi_set_mode(struct dpi_data *dpi)
T
Tomi Valkeinen 已提交
342
{
A
Archit Taneja 已提交
343
	struct omap_dss_device *out = &dpi->output;
344
	enum omap_channel channel = out->dispc_channel;
345
	struct videomode *vm = &dpi->vm;
346 347
	int lck_div = 0, pck_div = 0;
	unsigned long fck = 0;
T
Tomi Valkeinen 已提交
348 349 350
	unsigned long pck;
	int r = 0;

351
	if (dpi->pll)
352
		r = dpi_set_pll_clk(dpi, channel, vm->pixelclock, &fck,
353
				&lck_div, &pck_div);
354
	else
355
		r = dpi_set_dispc_clk(dpi, vm->pixelclock, &fck,
356
				&lck_div, &pck_div);
T
Tomi Valkeinen 已提交
357
	if (r)
358
		return r;
T
Tomi Valkeinen 已提交
359

360
	pck = fck / lck_div / pck_div;
T
Tomi Valkeinen 已提交
361

362
	if (pck != vm->pixelclock) {
363
		DSSWARN("Could not find exact pixel clock. Requested %lu Hz, got %lu Hz\n",
364
			vm->pixelclock, pck);
T
Tomi Valkeinen 已提交
365

366
		vm->pixelclock = pck;
T
Tomi Valkeinen 已提交
367 368
	}

369
	dss_mgr_set_timings(channel, vm);
T
Tomi Valkeinen 已提交
370

371
	return 0;
T
Tomi Valkeinen 已提交
372 373
}

A
Archit Taneja 已提交
374
static void dpi_config_lcd_manager(struct dpi_data *dpi)
T
Tomi Valkeinen 已提交
375
{
A
Archit Taneja 已提交
376
	struct omap_dss_device *out = &dpi->output;
377
	enum omap_channel channel = out->dispc_channel;
A
Archit Taneja 已提交
378 379

	dpi->mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
380

A
Archit Taneja 已提交
381 382
	dpi->mgr_config.stallmode = false;
	dpi->mgr_config.fifohandcheck = false;
383

A
Archit Taneja 已提交
384
	dpi->mgr_config.video_port_width = dpi->data_lines;
385

A
Archit Taneja 已提交
386
	dpi->mgr_config.lcden_sig_polarity = 0;
387

388
	dss_mgr_set_lcd_config(channel, &dpi->mgr_config);
T
Tomi Valkeinen 已提交
389 390
}

391
static int dpi_display_enable(struct omap_dss_device *dssdev)
T
Tomi Valkeinen 已提交
392
{
A
Archit Taneja 已提交
393
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
A
Archit Taneja 已提交
394
	struct omap_dss_device *out = &dpi->output;
395
	enum omap_channel channel = out->dispc_channel;
T
Tomi Valkeinen 已提交
396 397
	int r;

A
Archit Taneja 已提交
398
	mutex_lock(&dpi->lock);
399

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

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

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

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

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

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

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

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

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

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

T
Tomi Valkeinen 已提交
440 441
	return 0;

442
err_mgr_enable:
443
err_set_mode:
444 445
	if (dpi->pll)
		dss_pll_disable(dpi->pll);
446
err_pll_init:
447
err_src_sel:
448 449
	dispc_runtime_put();
err_get_dispc:
450
	if (dpi->vdds_dsi_reg)
A
Archit Taneja 已提交
451
		regulator_disable(dpi->vdds_dsi_reg);
452
err_reg_enable:
453
err_no_out_mgr:
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(dpi->dss, channel, 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 (dpi->vdds_dsi_reg)
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 videomode *vm)
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

489
	dpi->vm = *vm;
490

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

T
Tomi Valkeinen 已提交
494
static void dpi_get_timings(struct omap_dss_device *dssdev,
495
			    struct videomode *vm)
T
Tomi Valkeinen 已提交
496
{
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

501
	*vm = dpi->vm;
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,
507
			     struct videomode *vm)
T
Tomi Valkeinen 已提交
508
{
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
	if (vm->hactive % 8 != 0)
518 519
		return -EINVAL;

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

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

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

531
		fck = ctx.pll_cinfo.clkout[ctx.clkout_idx];
532
	} else {
533
		ok = dpi_dss_clk_calc(vm->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
	vm->pixelclock = pck;
T
Tomi Valkeinen 已提交
546 547 548 549

	return 0;
}

550
static int dpi_verify_pll(struct dss_pll *pll)
551 552 553 554 555
{
	int r;

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

556
	r = dss_pll_enable(pll);
557
	if (r)
558 559
		return r;

560
	dss_pll_disable(pll);
561 562 563 564

	return 0;
}

565
static const struct soc_device_attribute dpi_soc_devices[] = {
566 567
	{ .machine = "OMAP3[456]*" },
	{ .machine = "[AD]M37*" },
568 569 570
	{ /* sentinel */ }
};

A
Archit Taneja 已提交
571
static int dpi_init_regulator(struct dpi_data *dpi)
572 573 574
{
	struct regulator *vdds_dsi;

575 576 577 578 579
	/*
	 * The DPI uses the DSI VDDS on OMAP34xx, OMAP35xx, OMAP36xx, AM37xx and
	 * DM37xx only.
	 */
	if (!soc_device_match(dpi_soc_devices))
580 581
		return 0;

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

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

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

	return 0;
}

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

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

604
	dpi->clk_src = dpi_get_clk_src(dpi);
605 606

	pll = dss_pll_find_by_src(dpi->clk_src);
607
	if (!pll)
608 609
		return;

610 611
	if (dpi_verify_pll(pll)) {
		DSSWARN("PLL not operational\n");
612 613 614
		return;
	}

615
	dpi->pll = pll;
616 617
}

618 619 620 621 622 623
/*
 * 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.
 */
624
static enum omap_channel dpi_get_channel(struct dpi_data *dpi, int port_num)
625
{
626 627 628
	switch (dpi->dss_model) {
	case DSS_MODEL_OMAP2:
	case DSS_MODEL_OMAP3:
629 630
		return OMAP_DSS_CHANNEL_LCD;

631
	case DSS_MODEL_DRA7:
T
Tomi Valkeinen 已提交
632 633 634 635 636 637 638 639 640 641
		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;
		}

642
	case DSS_MODEL_OMAP4:
643 644
		return OMAP_DSS_CHANNEL_LCD2;

645
	case DSS_MODEL_OMAP5:
646 647 648 649 650 651 652 653
		return OMAP_DSS_CHANNEL_LCD3;

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

T
Tomi Valkeinen 已提交
654 655 656
static int dpi_connect(struct omap_dss_device *dssdev,
		struct omap_dss_device *dst)
{
A
Archit Taneja 已提交
657
	struct dpi_data *dpi = dpi_get_data_from_dssdev(dssdev);
658
	enum omap_channel channel = dpi->output.dispc_channel;
T
Tomi Valkeinen 已提交
659 660
	int r;

A
Archit Taneja 已提交
661
	r = dpi_init_regulator(dpi);
T
Tomi Valkeinen 已提交
662 663 664
	if (r)
		return r;

A
Archit Taneja 已提交
665
	dpi_init_pll(dpi);
T
Tomi Valkeinen 已提交
666

667
	r = dss_mgr_connect(channel, dssdev);
T
Tomi Valkeinen 已提交
668 669 670 671 672 673 674
	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);
675
		dss_mgr_disconnect(channel, dssdev);
T
Tomi Valkeinen 已提交
676 677 678 679 680 681 682 683 684
		return r;
	}

	return 0;
}

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

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

690
	if (dst != dssdev->dst)
T
Tomi Valkeinen 已提交
691 692 693 694
		return;

	omapdss_output_unset_device(dssdev);

695
	dss_mgr_disconnect(channel, dssdev);
T
Tomi Valkeinen 已提交
696 697 698 699 700 701
}

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

702 703
	.enable = dpi_display_enable,
	.disable = dpi_display_disable,
T
Tomi Valkeinen 已提交
704 705

	.check_timings = dpi_check_timings,
706
	.set_timings = dpi_set_timings,
T
Tomi Valkeinen 已提交
707 708 709
	.get_timings = dpi_get_timings,
};

710
static void dpi_init_output_port(struct dpi_data *dpi, struct device_node *port)
711 712
{
	struct omap_dss_device *out = &dpi->output;
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
	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;
	}
732

733
	out->dev = &dpi->pdev->dev;
734 735
	out->id = OMAP_DSS_OUTPUT_DPI;
	out->output_type = OMAP_DISPLAY_TYPE_DPI;
736
	out->dispc_channel = dpi_get_channel(dpi, port_num);
737
	out->port_num = port_num;
738 739 740 741 742 743
	out->ops.dpi = &dpi_ops;
	out->owner = THIS_MODULE;

	omapdss_register_output(out);
}

744
static void dpi_uninit_output_port(struct device_node *port)
745 746 747 748 749 750 751
{
	struct dpi_data *dpi = port->data;
	struct omap_dss_device *out = &dpi->output;

	omapdss_unregister_output(out);
}

752 753
int dpi_init_port(struct dss_device *dss, struct platform_device *pdev,
		  struct device_node *port, enum dss_model dss_model)
T
Tomi Valkeinen 已提交
754
{
A
Archit Taneja 已提交
755
	struct dpi_data *dpi;
T
Tomi Valkeinen 已提交
756 757 758 759
	struct device_node *ep;
	u32 datalines;
	int r;

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

764
	ep = of_get_next_child(port, NULL);
T
Tomi Valkeinen 已提交
765 766 767 768 769 770 771 772 773
	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 已提交
774
	dpi->data_lines = datalines;
T
Tomi Valkeinen 已提交
775 776 777

	of_node_put(ep);

A
Archit Taneja 已提交
778
	dpi->pdev = pdev;
779
	dpi->dss_model = dss_model;
780
	dpi->dss = dss;
781
	port->data = dpi;
T
Tomi Valkeinen 已提交
782

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

785
	dpi_init_output_port(dpi, port);
T
Tomi Valkeinen 已提交
786 787 788 789 790 791 792 793 794

	return 0;

err_datalines:
	of_node_put(ep);

	return r;
}

795
void dpi_uninit_port(struct device_node *port)
T
Tomi Valkeinen 已提交
796
{
797
	struct dpi_data *dpi = port->data;
A
Archit Taneja 已提交
798

799
	if (!dpi)
T
Tomi Valkeinen 已提交
800 801
		return;

802
	dpi_uninit_output_port(port);
T
Tomi Valkeinen 已提交
803
}