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

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

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

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

48 49
	struct mutex lock;

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

54
	struct omap_dss_device output;
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 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 100
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;
}

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

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

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

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

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

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

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

	/* inputs */

	unsigned long pck_min, pck_max;

	/* outputs */

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


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

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

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


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

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

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

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

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

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

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

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

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

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

239 240 241 242 243 244 245 246 247 248
		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 */
249
		dss_pll_calc_b(dpi->pll, clkin, pck, &ctx->pll_cinfo);
250 251 252

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

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

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

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

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

	return false;
}



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

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

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

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

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

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

	return 0;
}
317

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

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

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

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

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

	return 0;
}

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

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

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

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

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

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

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

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

	dpi->mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
381

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

T
Tomi Valkeinen 已提交
441 442
	return 0;

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

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

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

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

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

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

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

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

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

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

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

490
	dpi->vm = *vm;
491

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

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

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

502
	*vm = dpi->vm;
T
Tomi Valkeinen 已提交
503

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

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

518
	if (vm->hactive % 8 != 0)
519 520
		return -EINVAL;

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

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

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

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

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

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

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

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

	return 0;
}

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

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

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

561
	dss_pll_disable(pll);
562 563 564 565

	return 0;
}

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

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

576 577 578 579 580
	/*
	 * The DPI uses the DSI VDDS on OMAP34xx, OMAP35xx, OMAP36xx, AM37xx and
	 * DM37xx only.
	 */
	if (!soc_device_match(dpi_soc_devices))
581 582
		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
	dpi->clk_src = dpi_get_clk_src(dpi);
606 607

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

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

616
	dpi->pll = pll;
617 618
}

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

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

643
	case DSS_MODEL_OMAP4:
644 645
		return OMAP_DSS_CHANNEL_LCD2;

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

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

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

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

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

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

	return 0;
}

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

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

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

	omapdss_output_unset_device(dssdev);

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

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

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

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

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

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

	omapdss_register_output(out);
}

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

	omapdss_unregister_output(out);
}

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

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

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

	of_node_put(ep);

A
Archit Taneja 已提交
779
	dpi->pdev = pdev;
780
	dpi->dss_model = dss_model;
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
}