imxfb.c 25.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 *  Freescale i.MX Frame Buffer device driver
 *
 *  Copyright (C) 2004 Sascha Hauer, Pengutronix
 *   Based on acornfb.c Copyright (C) Russell King.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file COPYING in the main directory of this archive for
 * more details.
 *
 * Please direct your questions and comments on this driver to the following
 * email address:
 *
 *	linux-arm-kernel@lists.arm.linux.org.uk
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/interrupt.h>
#include <linux/slab.h>
23
#include <linux/mm.h>
24 25 26 27 28
#include <linux/fb.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/cpufreq.h>
S
Sascha Hauer 已提交
29
#include <linux/clk.h>
30
#include <linux/platform_device.h>
31
#include <linux/dma-mapping.h>
32
#include <linux/io.h>
33
#include <linux/lcd.h>
S
Sascha Hauer 已提交
34
#include <linux/math64.h>
M
Markus Pargmann 已提交
35 36 37
#include <linux/of.h>
#include <linux/of_device.h>

38 39
#include <linux/regulator/consumer.h>

M
Markus Pargmann 已提交
40 41 42
#include <video/of_display_timing.h>
#include <video/of_videomode.h>
#include <video/videomode.h>
43

44
#include <linux/platform_data/video-imxfb.h>
45 46 47 48 49 50

/*
 * Complain if VAR is out of range.
 */
#define DEBUG_VAR 1

51 52 53 54 55 56
#define DRIVER_NAME "imx-fb"

#define LCDC_SSA	0x00

#define LCDC_SIZE	0x04
#define SIZE_XMAX(x)	((((x) >> 4) & 0x3f) << 20)
S
Sascha Hauer 已提交
57

58 59
#define YMAX_MASK_IMX1	0x1ff
#define YMAX_MASK_IMX21	0x3ff
60 61 62 63 64 65 66 67 68

#define LCDC_VPW	0x08
#define VPW_VPW(x)	((x) & 0x3ff)

#define LCDC_CPOS	0x0C
#define CPOS_CC1	(1<<31)
#define CPOS_CC0	(1<<30)
#define CPOS_OP		(1<<28)
#define CPOS_CXP(x)	(((x) & 3ff) << 16)
S
Sascha Hauer 已提交
69

70 71 72 73 74 75 76
#define LCDC_LCWHB	0x10
#define LCWHB_BK_EN	(1<<31)
#define LCWHB_CW(w)	(((w) & 0x1f) << 24)
#define LCWHB_CH(h)	(((h) & 0x1f) << 16)
#define LCWHB_BD(x)	((x) & 0xff)

#define LCDC_LCHCC	0x14
S
Sascha Hauer 已提交
77

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
#define LCDC_PCR	0x18

#define LCDC_HCR	0x1C
#define HCR_H_WIDTH(x)	(((x) & 0x3f) << 26)
#define HCR_H_WAIT_1(x)	(((x) & 0xff) << 8)
#define HCR_H_WAIT_2(x)	((x) & 0xff)

#define LCDC_VCR	0x20
#define VCR_V_WIDTH(x)	(((x) & 0x3f) << 26)
#define VCR_V_WAIT_1(x)	(((x) & 0xff) << 8)
#define VCR_V_WAIT_2(x)	((x) & 0xff)

#define LCDC_POS	0x24
#define POS_POS(x)	((x) & 1f)

#define LCDC_LSCR1	0x28
/* bit fields in imxfb.h */

#define LCDC_PWMR	0x2C
/* bit fields in imxfb.h */

#define LCDC_DMACR	0x30
/* bit fields in imxfb.h */

#define LCDC_RMCR	0x34
S
Sascha Hauer 已提交
103

104
#define RMCR_LCDC_EN_MX1	(1<<1)
S
Sascha Hauer 已提交
105

106 107 108 109 110 111 112 113 114 115 116 117
#define RMCR_SELF_REF	(1<<0)

#define LCDC_LCDICR	0x38
#define LCDICR_INT_SYN	(1<<2)
#define LCDICR_INT_CON	(1)

#define LCDC_LCDISR	0x40
#define LCDISR_UDR_ERR	(1<<3)
#define LCDISR_ERR_RES	(1<<2)
#define LCDISR_EOF	(1<<1)
#define LCDISR_BOF	(1<<0)

M
Markus Pargmann 已提交
118 119
#define IMXFB_LSCR1_DEFAULT 0x00120300

120 121 122
#define LCDC_LAUSCR	0x80
#define LAUSCR_AUS_MODE	(1<<31)

123 124 125
/* Used fb-mode. Can be set on kernel command line, therefore file-static. */
static const char *fb_mode;

126 127 128 129 130 131 132 133 134 135 136
/*
 * These are the bitfields for each
 * display depth that we support.
 */
struct imxfb_rgb {
	struct fb_bitfield	red;
	struct fb_bitfield	green;
	struct fb_bitfield	blue;
	struct fb_bitfield	transp;
};

137 138 139 140 141
enum imxfb_type {
	IMX1_FB,
	IMX21_FB,
};

142 143 144
struct imxfb_info {
	struct platform_device  *pdev;
	void __iomem		*regs;
145 146 147
	struct clk		*clk_ipg;
	struct clk		*clk_ahb;
	struct clk		*clk_per;
148
	enum imxfb_type		devtype;
149
	bool			enabled;
150 151 152 153 154 155 156 157 158 159 160 161 162 163

	/*
	 * These are the addresses we mapped
	 * the framebuffer memory region to.
	 */
	dma_addr_t		map_dma;
	u_int			map_size;

	u_int			palette_size;

	dma_addr_t		dbar1;
	dma_addr_t		dbar2;

	u_int			pcr;
164
	u_int			lauscr;
165 166 167
	u_int			pwmr;
	u_int			lscr1;
	u_int			dmacr;
168 169
	bool			cmap_inverse;
	bool			cmap_static;
170

171 172 173
	struct imx_fb_videomode *mode;
	int			num_modes;

174
	struct regulator	*lcd_pwr;
175 176
};

177
static const struct platform_device_id imxfb_devtype[] = {
178 179 180 181 182 183 184 185 186 187 188 189
	{
		.name = "imx1-fb",
		.driver_data = IMX1_FB,
	}, {
		.name = "imx21-fb",
		.driver_data = IMX21_FB,
	}, {
		/* sentinel */
	}
};
MODULE_DEVICE_TABLE(platform, imxfb_devtype);

190
static const struct of_device_id imxfb_of_dev_id[] = {
M
Markus Pargmann 已提交
191 192 193 194 195 196 197 198 199 200 201 202
	{
		.compatible = "fsl,imx1-fb",
		.data = &imxfb_devtype[IMX1_FB],
	}, {
		.compatible = "fsl,imx21-fb",
		.data = &imxfb_devtype[IMX21_FB],
	}, {
		/* sentinel */
	}
};
MODULE_DEVICE_TABLE(of, imxfb_of_dev_id);

203 204 205 206 207
static inline int is_imx1_fb(struct imxfb_info *fbi)
{
	return fbi->devtype == IMX1_FB;
}

208 209 210 211 212 213 214 215
#define IMX_NAME	"IMX"

/*
 * Minimum X and Y resolutions
 */
#define MIN_XRES	64
#define MIN_YRES	64

S
Sascha Hauer 已提交
216 217 218 219 220 221 222 223 224 225 226
/* Actually this really is 18bit support, the lowest 2 bits of each colour
 * are unused in hardware. We claim to have 24bit support to make software
 * like X work, which does not support 18bit.
 */
static struct imxfb_rgb def_rgb_18 = {
	.red	= {.offset = 16, .length = 8,},
	.green	= {.offset = 8, .length = 8,},
	.blue	= {.offset = 0, .length = 8,},
	.transp = {.offset = 0, .length = 0,},
};

S
Sascha Hauer 已提交
227 228 229 230 231 232 233 234
static struct imxfb_rgb def_rgb_16_tft = {
	.red	= {.offset = 11, .length = 5,},
	.green	= {.offset = 5, .length = 6,},
	.blue	= {.offset = 0, .length = 5,},
	.transp = {.offset = 0, .length = 0,},
};

static struct imxfb_rgb def_rgb_16_stn = {
235 236 237 238
	.red	= {.offset = 8, .length = 4,},
	.green	= {.offset = 4, .length = 4,},
	.blue	= {.offset = 0, .length = 4,},
	.transp = {.offset = 0, .length = 0,},
239 240 241
};

static struct imxfb_rgb def_rgb_8 = {
242 243 244 245
	.red	= {.offset = 0, .length = 8,},
	.green	= {.offset = 0, .length = 8,},
	.blue	= {.offset = 0, .length = 8,},
	.transp = {.offset = 0, .length = 0,},
246 247
};

248 249
static int imxfb_activate_var(struct fb_var_screeninfo *var,
		struct fb_info *info);
250 251 252 253 254 255 256 257

static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
{
	chan &= 0xffff;
	chan >>= 16 - bf->length;
	return chan << bf->offset;
}

258 259
static int imxfb_setpalettereg(u_int regno, u_int red, u_int green, u_int blue,
		u_int trans, struct fb_info *info)
260 261 262 263 264 265 266 267 268 269
{
	struct imxfb_info *fbi = info->par;
	u_int val, ret = 1;

#define CNVT_TOHW(val,width) ((((val)<<(width))+0x7FFF-(val))>>16)
	if (regno < fbi->palette_size) {
		val = (CNVT_TOHW(red, 4) << 8) |
		      (CNVT_TOHW(green,4) << 4) |
		      CNVT_TOHW(blue,  4);

270
		writel(val, fbi->regs + 0x800 + (regno << 2));
271 272 273 274 275
		ret = 0;
	}
	return ret;
}

276
static int imxfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
		   u_int trans, struct fb_info *info)
{
	struct imxfb_info *fbi = info->par;
	unsigned int val;
	int ret = 1;

	/*
	 * If inverse mode was selected, invert all the colours
	 * rather than the register number.  The register number
	 * is what you poke into the framebuffer to produce the
	 * colour you requested.
	 */
	if (fbi->cmap_inverse) {
		red   = 0xffff - red;
		green = 0xffff - green;
		blue  = 0xffff - blue;
	}

	/*
	 * If greyscale is true, then we convert the RGB value
	 * to greyscale no mater what visual we are using.
	 */
	if (info->var.grayscale)
		red = green = blue = (19595 * red + 38470 * green +
					7471 * blue) >> 16;

	switch (info->fix.visual) {
	case FB_VISUAL_TRUECOLOR:
		/*
		 * 12 or 16-bit True Colour.  We encode the RGB value
		 * according to the RGB bitfield information.
		 */
		if (regno < 16) {
			u32 *pal = info->pseudo_palette;

			val  = chan_to_field(red, &info->var.red);
			val |= chan_to_field(green, &info->var.green);
			val |= chan_to_field(blue, &info->var.blue);

			pal[regno] = val;
			ret = 0;
		}
		break;

	case FB_VISUAL_STATIC_PSEUDOCOLOR:
	case FB_VISUAL_PSEUDOCOLOR:
		ret = imxfb_setpalettereg(regno, red, green, blue, trans, info);
		break;
	}

	return ret;
}

330 331 332 333 334
static const struct imx_fb_videomode *imxfb_find_mode(struct imxfb_info *fbi)
{
	struct imx_fb_videomode *m;
	int i;

M
Markus Pargmann 已提交
335 336 337
	if (!fb_mode)
		return &fbi->mode[0];

338 339 340 341 342 343 344
	for (i = 0, m = &fbi->mode[0]; i < fbi->num_modes; i++, m++) {
		if (!strcmp(m->mode.name, fb_mode))
			return m;
	}
	return NULL;
}

345 346 347 348 349 350
/*
 *  imxfb_check_var():
 *    Round up in the following order: bits_per_pixel, xres,
 *    yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale,
 *    bitfields, horizontal timing, vertical timing.
 */
351
static int imxfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
352 353
{
	struct imxfb_info *fbi = info->par;
S
Sascha Hauer 已提交
354
	struct imxfb_rgb *rgb;
355 356 357 358
	const struct imx_fb_videomode *imxfb_mode;
	unsigned long lcd_clk;
	unsigned long long tmp;
	u32 pcr = 0;
359 360 361 362 363

	if (var->xres < MIN_XRES)
		var->xres = MIN_XRES;
	if (var->yres < MIN_YRES)
		var->yres = MIN_YRES;
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381

	imxfb_mode = imxfb_find_mode(fbi);
	if (!imxfb_mode)
		return -EINVAL;

	var->xres		= imxfb_mode->mode.xres;
	var->yres		= imxfb_mode->mode.yres;
	var->bits_per_pixel	= imxfb_mode->bpp;
	var->pixclock		= imxfb_mode->mode.pixclock;
	var->hsync_len		= imxfb_mode->mode.hsync_len;
	var->left_margin	= imxfb_mode->mode.left_margin;
	var->right_margin	= imxfb_mode->mode.right_margin;
	var->vsync_len		= imxfb_mode->mode.vsync_len;
	var->upper_margin	= imxfb_mode->mode.upper_margin;
	var->lower_margin	= imxfb_mode->mode.lower_margin;
	var->sync		= imxfb_mode->mode.sync;
	var->xres_virtual	= max(var->xres_virtual, var->xres);
	var->yres_virtual	= max(var->yres_virtual, var->yres);
382 383

	pr_debug("var->bits_per_pixel=%d\n", var->bits_per_pixel);
384

385
	lcd_clk = clk_get_rate(fbi->clk_per);
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401

	tmp = var->pixclock * (unsigned long long)lcd_clk;

	do_div(tmp, 1000000);

	if (do_div(tmp, 1000000) > 500000)
		tmp++;

	pcr = (unsigned int)tmp;

	if (--pcr > 0x3F) {
		pcr = 0x3F;
		printk(KERN_WARNING "Must limit pixel clock to %luHz\n",
				lcd_clk / pcr);
	}

402
	switch (var->bits_per_pixel) {
S
Sascha Hauer 已提交
403
	case 32:
404
		pcr |= PCR_BPIX_18;
S
Sascha Hauer 已提交
405 406
		rgb = &def_rgb_18;
		break;
407
	case 16:
S
Sascha Hauer 已提交
408
	default:
409
		if (is_imx1_fb(fbi))
410 411 412 413 414
			pcr |= PCR_BPIX_12;
		else
			pcr |= PCR_BPIX_16;

		if (imxfb_mode->pcr & PCR_TFT)
S
Sascha Hauer 已提交
415 416 417
			rgb = &def_rgb_16_tft;
		else
			rgb = &def_rgb_16_stn;
418 419
		break;
	case 8:
420
		pcr |= PCR_BPIX_8;
S
Sascha Hauer 已提交
421
		rgb = &def_rgb_8;
422 423 424
		break;
	}

425 426 427 428
	/* add sync polarities */
	pcr |= imxfb_mode->pcr & ~(0x3f | (7 << 25));

	fbi->pcr = pcr;
429 430 431 432 433
	/*
	 * The LCDC AUS Mode Control Register does not exist on imx1.
	 */
	if (!is_imx1_fb(fbi) && imxfb_mode->aus_mode)
		fbi->lauscr = LAUSCR_AUS_MODE;
434

435 436 437 438
	/*
	 * Copy the RGB parameters for this display
	 * from the machine specific parameters.
	 */
S
Sascha Hauer 已提交
439 440 441 442
	var->red    = rgb->red;
	var->green  = rgb->green;
	var->blue   = rgb->blue;
	var->transp = rgb->transp;
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463

	pr_debug("RGBT length = %d:%d:%d:%d\n",
		var->red.length, var->green.length, var->blue.length,
		var->transp.length);

	pr_debug("RGBT offset = %d:%d:%d:%d\n",
		var->red.offset, var->green.offset, var->blue.offset,
		var->transp.offset);

	return 0;
}

/*
 * imxfb_set_par():
 *	Set the user defined part of the display for the specified console
 */
static int imxfb_set_par(struct fb_info *info)
{
	struct imxfb_info *fbi = info->par;
	struct fb_var_screeninfo *var = &info->var;

S
Sascha Hauer 已提交
464
	if (var->bits_per_pixel == 16 || var->bits_per_pixel == 32)
465 466 467 468 469 470 471 472 473 474 475 476
		info->fix.visual = FB_VISUAL_TRUECOLOR;
	else if (!fbi->cmap_static)
		info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
	else {
		/*
		 * Some people have weird ideas about wanting static
		 * pseudocolor maps.  I suspect their user space
		 * applications are broken.
		 */
		info->fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
	}

477
	info->fix.line_length = var->xres_virtual * var->bits_per_pixel / 8;
478 479 480 481 482 483 484
	fbi->palette_size = var->bits_per_pixel == 8 ? 256 : 16;

	imxfb_activate_var(var, info);

	return 0;
}

485
static int imxfb_enable_controller(struct imxfb_info *fbi)
486
{
487
	int ret;
488 489

	if (fbi->enabled)
490
		return 0;
491

492 493
	pr_debug("Enabling LCD controller\n");

494
	writel(fbi->map_dma, fbi->regs + LCDC_SSA);
495

496 497
	/* panning offset 0 (0 pixel offset)        */
	writel(0x00000000, fbi->regs + LCDC_POS);
498 499

	/* disable hardware cursor */
500 501
	writel(readl(fbi->regs + LCDC_CPOS) & ~(CPOS_CC0 | CPOS_CC1),
		fbi->regs + LCDC_CPOS);
502

503 504 505 506 507
	/*
	 * RMCR_LCDC_EN_MX1 is present on i.MX1 only, but doesn't hurt
	 * on other SoCs
	 */
	writel(RMCR_LCDC_EN_MX1, fbi->regs + LCDC_RMCR);
508

509 510 511 512 513 514 515 516 517 518 519 520
	ret = clk_prepare_enable(fbi->clk_ipg);
	if (ret)
		goto err_enable_ipg;

	ret = clk_prepare_enable(fbi->clk_ahb);
	if (ret)
		goto err_enable_ahb;

	ret = clk_prepare_enable(fbi->clk_per);
	if (ret)
		goto err_enable_per;

521
	fbi->enabled = true;
522 523 524 525 526 527 528 529 530 531
	return 0;

err_enable_per:
	clk_disable_unprepare(fbi->clk_ahb);
err_enable_ahb:
	clk_disable_unprepare(fbi->clk_ipg);
err_enable_ipg:
	writel(0, fbi->regs + LCDC_RMCR);

	return ret;
532 533 534 535
}

static void imxfb_disable_controller(struct imxfb_info *fbi)
{
536 537 538
	if (!fbi->enabled)
		return;

539 540
	pr_debug("Disabling LCD controller\n");

541 542
	clk_disable_unprepare(fbi->clk_per);
	clk_disable_unprepare(fbi->clk_ahb);
543
	clk_disable_unprepare(fbi->clk_ipg);
544
	fbi->enabled = false;
S
Sascha Hauer 已提交
545

546
	writel(0, fbi->regs + LCDC_RMCR);
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
}

static int imxfb_blank(int blank, struct fb_info *info)
{
	struct imxfb_info *fbi = info->par;

	pr_debug("imxfb_blank: blank=%d\n", blank);

	switch (blank) {
	case FB_BLANK_POWERDOWN:
	case FB_BLANK_VSYNC_SUSPEND:
	case FB_BLANK_HSYNC_SUSPEND:
	case FB_BLANK_NORMAL:
		imxfb_disable_controller(fbi);
		break;

	case FB_BLANK_UNBLANK:
564
		return imxfb_enable_controller(fbi);
565 566 567 568
	}
	return 0;
}

569
static const struct fb_ops imxfb_ops = {
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
	.owner		= THIS_MODULE,
	.fb_check_var	= imxfb_check_var,
	.fb_set_par	= imxfb_set_par,
	.fb_setcolreg	= imxfb_setcolreg,
	.fb_fillrect	= cfb_fillrect,
	.fb_copyarea	= cfb_copyarea,
	.fb_imageblit	= cfb_imageblit,
	.fb_blank	= imxfb_blank,
};

/*
 * imxfb_activate_var():
 *	Configures LCD Controller based on entries in var parameter.  Settings are
 *	only written to the controller if changes were made.
 */
static int imxfb_activate_var(struct fb_var_screeninfo *var, struct fb_info *info)
{
	struct imxfb_info *fbi = info->par;
588
	u32 ymax_mask = is_imx1_fb(fbi) ? YMAX_MASK_IMX1 : YMAX_MASK_IMX21;
S
Sascha Hauer 已提交
589

590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
	pr_debug("var: xres=%d hslen=%d lm=%d rm=%d\n",
		var->xres, var->hsync_len,
		var->left_margin, var->right_margin);
	pr_debug("var: yres=%d vslen=%d um=%d bm=%d\n",
		var->yres, var->vsync_len,
		var->upper_margin, var->lower_margin);

#if DEBUG_VAR
	if (var->xres < 16        || var->xres > 1024)
		printk(KERN_ERR "%s: invalid xres %d\n",
			info->fix.id, var->xres);
	if (var->hsync_len < 1    || var->hsync_len > 64)
		printk(KERN_ERR "%s: invalid hsync_len %d\n",
			info->fix.id, var->hsync_len);
	if (var->left_margin > 255)
		printk(KERN_ERR "%s: invalid left_margin %d\n",
			info->fix.id, var->left_margin);
	if (var->right_margin > 255)
		printk(KERN_ERR "%s: invalid right_margin %d\n",
			info->fix.id, var->right_margin);
610
	if (var->yres < 1 || var->yres > ymax_mask)
611 612 613 614 615 616 617 618 619 620 621 622 623
		printk(KERN_ERR "%s: invalid yres %d\n",
			info->fix.id, var->yres);
	if (var->vsync_len > 100)
		printk(KERN_ERR "%s: invalid vsync_len %d\n",
			info->fix.id, var->vsync_len);
	if (var->upper_margin > 63)
		printk(KERN_ERR "%s: invalid upper_margin %d\n",
			info->fix.id, var->upper_margin);
	if (var->lower_margin > 255)
		printk(KERN_ERR "%s: invalid lower_margin %d\n",
			info->fix.id, var->lower_margin);
#endif

624 625 626 627
	/* physical screen start address	    */
	writel(VPW_VPW(var->xres * var->bits_per_pixel / 8 / 4),
		fbi->regs + LCDC_VPW);

S
Sascha Hauer 已提交
628 629 630
	writel(HCR_H_WIDTH(var->hsync_len - 1) |
		HCR_H_WAIT_1(var->right_margin - 1) |
		HCR_H_WAIT_2(var->left_margin - 3),
631
		fbi->regs + LCDC_HCR);
632

633
	writel(VCR_V_WIDTH(var->vsync_len) |
S
Sascha Hauer 已提交
634 635
		VCR_V_WAIT_1(var->lower_margin) |
		VCR_V_WAIT_2(var->upper_margin),
636
		fbi->regs + LCDC_VCR);
637

638
	writel(SIZE_XMAX(var->xres) | (var->yres & ymax_mask),
639
			fbi->regs + LCDC_SIZE);
S
Sascha Hauer 已提交
640

641
	writel(fbi->pcr, fbi->regs + LCDC_PCR);
M
Markus Pargmann 已提交
642 643
	if (fbi->pwmr)
		writel(fbi->pwmr, fbi->regs + LCDC_PWMR);
644
	writel(fbi->lscr1, fbi->regs + LCDC_LSCR1);
M
Markus Pargmann 已提交
645 646 647 648

	/* dmacr = 0 is no valid value, as we need DMA control marks. */
	if (fbi->dmacr)
		writel(fbi->dmacr, fbi->regs + LCDC_DMACR);
649

650 651 652
	if (fbi->lauscr)
		writel(fbi->lauscr, fbi->regs + LCDC_LAUSCR);

653 654 655
	return 0;
}

M
Markus Pargmann 已提交
656
static int imxfb_init_fbinfo(struct platform_device *pdev)
657
{
658
	struct imx_fb_platform_data *pdata = dev_get_platdata(&pdev->dev);
659
	struct fb_info *info = dev_get_drvdata(&pdev->dev);
660
	struct imxfb_info *fbi = info->par;
M
Markus Pargmann 已提交
661
	struct device_node *np;
662

663
	pr_debug("%s\n",__func__);
664

665
	info->pseudo_palette = kmalloc_array(16, sizeof(u32), GFP_KERNEL);
666 667 668 669 670
	if (!info->pseudo_palette)
		return -ENOMEM;

	memset(fbi, 0, sizeof(struct imxfb_info));

671 672
	fbi->devtype = pdev->id_entry->driver_data;

673 674
	strlcpy(info->fix.id, IMX_NAME, sizeof(info->fix.id));

675
	info->fix.type			= FB_TYPE_PACKED_PIXELS;
676 677 678 679
	info->fix.type_aux		= 0;
	info->fix.xpanstep		= 0;
	info->fix.ypanstep		= 0;
	info->fix.ywrapstep		= 0;
680
	info->fix.accel			= FB_ACCEL_NONE;
681 682 683 684 685 686

	info->var.nonstd		= 0;
	info->var.activate		= FB_ACTIVATE_NOW;
	info->var.height		= -1;
	info->var.width	= -1;
	info->var.accel_flags		= 0;
687
	info->var.vmode			= FB_VMODE_NONINTERLACED;
688 689

	info->fbops			= &imxfb_ops;
690 691
	info->flags			= FBINFO_FLAG_DEFAULT |
					  FBINFO_READS_FAST;
M
Markus Pargmann 已提交
692 693 694 695 696 697 698 699 700 701 702 703
	if (pdata) {
		fbi->lscr1			= pdata->lscr1;
		fbi->dmacr			= pdata->dmacr;
		fbi->pwmr			= pdata->pwmr;
	} else {
		np = pdev->dev.of_node;
		info->var.grayscale = of_property_read_bool(np,
						"cmap-greyscale");
		fbi->cmap_inverse = of_property_read_bool(np, "cmap-inverse");
		fbi->cmap_static = of_property_read_bool(np, "cmap-static");

		fbi->lscr1 = IMXFB_LSCR1_DEFAULT;
704 705 706

		of_property_read_u32(np, "fsl,lpccr", &fbi->pwmr);

M
Markus Pargmann 已提交
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
		of_property_read_u32(np, "fsl,lscr1", &fbi->lscr1);

		of_property_read_u32(np, "fsl,dmacr", &fbi->dmacr);
	}

	return 0;
}

static int imxfb_of_read_mode(struct device *dev, struct device_node *np,
		struct imx_fb_videomode *imxfb_mode)
{
	int ret;
	struct fb_videomode *of_mode = &imxfb_mode->mode;
	u32 bpp;
	u32 pcr;

	ret = of_property_read_string(np, "model", &of_mode->name);
	if (ret)
		of_mode->name = NULL;

	ret = of_get_fb_videomode(np, of_mode, OF_USE_NATIVE_MODE);
	if (ret) {
		dev_err(dev, "Failed to get videomode from DT\n");
		return ret;
	}

	ret = of_property_read_u32(np, "bits-per-pixel", &bpp);
	ret |= of_property_read_u32(np, "fsl,pcr", &pcr);

	if (ret) {
		dev_err(dev, "Failed to read bpp and pcr from DT\n");
		return -EINVAL;
	}

	if (bpp < 1 || bpp > 255) {
		dev_err(dev, "Bits per pixel have to be between 1 and 255\n");
		return -EINVAL;
	}

	imxfb_mode->bpp = bpp;
	imxfb_mode->pcr = pcr;
748

749 750 751 752 753
	/*
	 * fsl,aus-mode is optional
	 */
	imxfb_mode->aus_mode = of_property_read_bool(np, "fsl,aus-mode");

754 755 756
	return 0;
}

757 758 759 760 761 762 763 764 765 766
static int imxfb_lcd_check_fb(struct lcd_device *lcddev, struct fb_info *fi)
{
	struct imxfb_info *fbi = dev_get_drvdata(&lcddev->dev);

	if (!fi || fi->par == fbi)
		return 1;

	return 0;
}

767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
static int imxfb_lcd_get_contrast(struct lcd_device *lcddev)
{
	struct imxfb_info *fbi = dev_get_drvdata(&lcddev->dev);

	return fbi->pwmr & 0xff;
}

static int imxfb_lcd_set_contrast(struct lcd_device *lcddev, int contrast)
{
	struct imxfb_info *fbi = dev_get_drvdata(&lcddev->dev);

	if (fbi->pwmr && fbi->enabled) {
		if (contrast > 255)
			contrast = 255;
		else if (contrast < 0)
			contrast = 0;

		fbi->pwmr &= ~0xff;
		fbi->pwmr |= contrast;

		writel(fbi->pwmr, fbi->regs + LCDC_PWMR);
	}

	return 0;
}

793 794 795 796
static int imxfb_lcd_get_power(struct lcd_device *lcddev)
{
	struct imxfb_info *fbi = dev_get_drvdata(&lcddev->dev);

797 798 799
	if (!IS_ERR(fbi->lcd_pwr) &&
	    !regulator_is_enabled(fbi->lcd_pwr))
		return FB_BLANK_POWERDOWN;
800

801
	return FB_BLANK_UNBLANK;
802 803 804 805 806 807 808
}

static int imxfb_lcd_set_power(struct lcd_device *lcddev, int power)
{
	struct imxfb_info *fbi = dev_get_drvdata(&lcddev->dev);

	if (!IS_ERR(fbi->lcd_pwr)) {
809
		if (power == FB_BLANK_UNBLANK)
810 811 812 813 814 815 816 817 818 819
			return regulator_enable(fbi->lcd_pwr);
		else
			return regulator_disable(fbi->lcd_pwr);
	}

	return 0;
}

static struct lcd_ops imxfb_lcd_ops = {
	.check_fb	= imxfb_lcd_check_fb,
820 821
	.get_contrast	= imxfb_lcd_get_contrast,
	.set_contrast	= imxfb_lcd_set_contrast,
822 823 824 825
	.get_power	= imxfb_lcd_get_power,
	.set_power	= imxfb_lcd_set_power,
};

826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
static int imxfb_setup(void)
{
	char *opt, *options = NULL;

	if (fb_get_options("imxfb", &options))
		return -ENODEV;

	if (!options || !*options)
		return 0;

	while ((opt = strsep(&options, ",")) != NULL) {
		if (!*opt)
			continue;
		else
			fb_mode = opt;
	}

	return 0;
}

M
Markus Pargmann 已提交
846
static int imxfb_probe(struct platform_device *pdev)
847 848
{
	struct imxfb_info *fbi;
849
	struct lcd_device *lcd;
850
	struct fb_info *info;
851
	struct imx_fb_platform_data *pdata;
852
	struct resource *res;
M
Markus Pargmann 已提交
853 854
	struct imx_fb_videomode *m;
	const struct of_device_id *of_id;
855
	int ret, i;
M
Markus Pargmann 已提交
856
	int bytes_per_pixel;
857

S
Sascha Hauer 已提交
858
	dev_info(&pdev->dev, "i.MX Framebuffer driver\n");
859

860 861 862 863
	ret = imxfb_setup();
	if (ret < 0)
		return ret;

M
Markus Pargmann 已提交
864 865 866 867
	of_id = of_match_device(imxfb_of_dev_id, &pdev->dev);
	if (of_id)
		pdev->id_entry = of_id->data;

868
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
869
	if (!res)
870 871
		return -ENODEV;

872
	pdata = dev_get_platdata(&pdev->dev);
873

874
	info = framebuffer_alloc(sizeof(struct imxfb_info), &pdev->dev);
875
	if (!info)
876 877 878 879
		return -ENOMEM;

	fbi = info->par;

880
	platform_set_drvdata(pdev, info);
881

882
	ret = imxfb_init_fbinfo(pdev);
883
	if (ret < 0)
884 885
		goto failed_init;

M
Markus Pargmann 已提交
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
	if (pdata) {
		if (!fb_mode)
			fb_mode = pdata->mode[0].mode.name;

		fbi->mode = pdata->mode;
		fbi->num_modes = pdata->num_modes;
	} else {
		struct device_node *display_np;
		fb_mode = NULL;

		display_np = of_parse_phandle(pdev->dev.of_node, "display", 0);
		if (!display_np) {
			dev_err(&pdev->dev, "No display defined in devicetree\n");
			ret = -EINVAL;
			goto failed_of_parse;
		}

		/*
		 * imxfb does not support more modes, we choose only the native
		 * mode.
		 */
		fbi->num_modes = 1;

		fbi->mode = devm_kzalloc(&pdev->dev,
				sizeof(struct imx_fb_videomode), GFP_KERNEL);
		if (!fbi->mode) {
			ret = -ENOMEM;
			goto failed_of_parse;
		}

		ret = imxfb_of_read_mode(&pdev->dev, display_np, fbi->mode);
		if (ret)
			goto failed_of_parse;
	}

	/* Calculate maximum bytes used per pixel. In most cases this should
	 * be the same as m->bpp/8 */
	m = &fbi->mode[0];
	bytes_per_pixel = (m->bpp + 7) / 8;
	for (i = 0; i < fbi->num_modes; i++, m++)
		info->fix.smem_len = max_t(size_t, info->fix.smem_len,
				m->mode.xres * m->mode.yres * bytes_per_pixel);

929 930
	res = request_mem_region(res->start, resource_size(res),
				DRIVER_NAME);
931 932
	if (!res) {
		ret = -EBUSY;
933 934 935
		goto failed_req;
	}

936 937 938 939 940 941
	fbi->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
	if (IS_ERR(fbi->clk_ipg)) {
		ret = PTR_ERR(fbi->clk_ipg);
		goto failed_getclock;
	}

942 943 944 945 946 947 948 949 950 951 952 953 954 955 956
	/*
	 * The LCDC controller does not have an enable bit. The
	 * controller starts directly when the clocks are enabled.
	 * If the clocks are enabled when the controller is not yet
	 * programmed with proper register values (enabled at the
	 * bootloader, for example) then it just goes into some undefined
	 * state.
	 * To avoid this issue, let's enable and disable LCDC IPG clock
	 * so that we force some kind of 'reset' to the LCDC block.
	 */
	ret = clk_prepare_enable(fbi->clk_ipg);
	if (ret)
		goto failed_getclock;
	clk_disable_unprepare(fbi->clk_ipg);

957 958 959 960 961 962 963 964 965
	fbi->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
	if (IS_ERR(fbi->clk_ahb)) {
		ret = PTR_ERR(fbi->clk_ahb);
		goto failed_getclock;
	}

	fbi->clk_per = devm_clk_get(&pdev->dev, "per");
	if (IS_ERR(fbi->clk_per)) {
		ret = PTR_ERR(fbi->clk_per);
S
Sascha Hauer 已提交
966 967 968
		goto failed_getclock;
	}

969 970
	fbi->regs = ioremap(res->start, resource_size(res));
	if (fbi->regs == NULL) {
S
Sascha Hauer 已提交
971
		dev_err(&pdev->dev, "Cannot map frame buffer registers\n");
972
		ret = -ENOMEM;
973
		goto failed_ioremap;
974 975
	}

976
	fbi->map_size = PAGE_ALIGN(info->fix.smem_len);
977 978
	info->screen_buffer = dma_alloc_wc(&pdev->dev, fbi->map_size,
					   &fbi->map_dma, GFP_KERNEL);
979
	if (!info->screen_buffer) {
980 981 982
		dev_err(&pdev->dev, "Failed to allocate video RAM: %d\n", ret);
		ret = -ENOMEM;
		goto failed_map;
983 984
	}

985 986
	info->fix.smem_start = fbi->map_dma;

M
Markus Pargmann 已提交
987
	if (pdata && pdata->init) {
988 989 990 991 992
		ret = pdata->init(fbi->pdev);
		if (ret)
			goto failed_platform_init;
	}

993 994

	INIT_LIST_HEAD(&info->modelist);
M
Markus Pargmann 已提交
995 996
	for (i = 0; i < fbi->num_modes; i++)
		fb_add_videomode(&fbi->mode[i].mode, &info->modelist);
997

998 999 1000 1001 1002 1003
	/*
	 * This makes sure that our colour bitfield
	 * descriptors are correctly initialised.
	 */
	imxfb_check_var(&info->var, info);

1004 1005 1006 1007 1008
	/*
	 * For modes > 8bpp, the color map is bypassed.
	 * Therefore, 256 entries are enough.
	 */
	ret = fb_alloc_cmap(&info->cmap, 256, 0);
1009 1010 1011 1012 1013 1014
	if (ret < 0)
		goto failed_cmap;

	imxfb_set_par(info);
	ret = register_framebuffer(info);
	if (ret < 0) {
1015
		dev_err(&pdev->dev, "failed to register framebuffer\n");
1016 1017 1018
		goto failed_register;
	}

1019
	fbi->lcd_pwr = devm_regulator_get(&pdev->dev, "lcd");
1020
	if (PTR_ERR(fbi->lcd_pwr) == -EPROBE_DEFER) {
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
		ret = -EPROBE_DEFER;
		goto failed_lcd;
	}

	lcd = devm_lcd_device_register(&pdev->dev, "imxfb-lcd", &pdev->dev, fbi,
				       &imxfb_lcd_ops);
	if (IS_ERR(lcd)) {
		ret = PTR_ERR(lcd);
		goto failed_lcd;
	}

1032 1033
	lcd->props.max_contrast = 0xff;

1034
	imxfb_enable_controller(fbi);
1035
	fbi->pdev = pdev;
1036 1037 1038

	return 0;

1039 1040 1041
failed_lcd:
	unregister_framebuffer(info);

1042 1043 1044
failed_register:
	fb_dealloc_cmap(&info->cmap);
failed_cmap:
M
Markus Pargmann 已提交
1045
	if (pdata && pdata->exit)
1046 1047
		pdata->exit(fbi->pdev);
failed_platform_init:
1048
	dma_free_wc(&pdev->dev, fbi->map_size, info->screen_buffer,
1049
		    fbi->map_dma);
1050
failed_map:
1051 1052
	iounmap(fbi->regs);
failed_ioremap:
1053
failed_getclock:
S
Sascha Hauer 已提交
1054
	release_mem_region(res->start, resource_size(res));
1055
failed_req:
M
Markus Pargmann 已提交
1056
failed_of_parse:
1057
	kfree(info->pseudo_palette);
1058 1059 1060 1061 1062
failed_init:
	framebuffer_release(info);
	return ret;
}

1063
static int imxfb_remove(struct platform_device *pdev)
1064
{
1065
	struct imx_fb_platform_data *pdata;
1066
	struct fb_info *info = platform_get_drvdata(pdev);
1067
	struct imxfb_info *fbi = info->par;
1068 1069 1070 1071
	struct resource *res;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);

1072
	imxfb_disable_controller(fbi);
1073 1074

	unregister_framebuffer(info);
1075
	fb_dealloc_cmap(&info->cmap);
1076
	pdata = dev_get_platdata(&pdev->dev);
M
Markus Pargmann 已提交
1077
	if (pdata && pdata->exit)
1078
		pdata->exit(fbi->pdev);
1079
	dma_free_wc(&pdev->dev, fbi->map_size, info->screen_buffer,
1080
		    fbi->map_dma);
1081
	iounmap(fbi->regs);
S
Sascha Hauer 已提交
1082
	release_mem_region(res->start, resource_size(res));
1083 1084
	kfree(info->pseudo_palette);
	framebuffer_release(info);
S
Sascha Hauer 已提交
1085

1086 1087 1088
	return 0;
}

1089
static int __maybe_unused imxfb_suspend(struct device *dev)
1090
{
1091
	struct fb_info *info = dev_get_drvdata(dev);
1092
	struct imxfb_info *fbi = info->par;
1093

1094
	imxfb_disable_controller(fbi);
1095 1096

	return 0;
1097 1098
}

1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
static int __maybe_unused imxfb_resume(struct device *dev)
{
	struct fb_info *info = dev_get_drvdata(dev);
	struct imxfb_info *fbi = info->par;

	imxfb_enable_controller(fbi);

	return 0;
}

static SIMPLE_DEV_PM_OPS(imxfb_pm_ops, imxfb_suspend, imxfb_resume);

1111 1112
static struct platform_driver imxfb_driver = {
	.driver		= {
1113
		.name	= DRIVER_NAME,
M
Markus Pargmann 已提交
1114
		.of_match_table = imxfb_of_dev_id,
1115
		.pm	= &imxfb_pm_ops,
1116
	},
1117 1118
	.probe		= imxfb_probe,
	.remove		= imxfb_remove,
1119
	.id_table	= imxfb_devtype,
1120
};
1121
module_platform_driver(imxfb_driver);
1122

1123
MODULE_DESCRIPTION("Freescale i.MX framebuffer driver");
1124 1125
MODULE_AUTHOR("Sascha Hauer, Pengutronix");
MODULE_LICENSE("GPL");