2 * Driver for AT91 LCD Controller
4 * Copyright (C) 2007 Atmel Corporation
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive for
11 #include <linux/kernel.h>
12 #include <linux/platform_device.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/interrupt.h>
15 #include <linux/clk.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
19 #include <linux/backlight.h>
20 #include <linux/gfp.h>
21 #include <linux/gpio/consumer.h>
22 #include <linux/module.h>
24 #include <linux/of_device.h>
25 #include <video/of_videomode.h>
26 #include <video/of_display_timing.h>
27 #include <linux/regulator/consumer.h>
28 #include <video/videomode.h>
30 #include <video/atmel_lcdc.h>
32 struct atmel_lcdfb_config {
33 bool have_alt_pixclock;
35 bool have_intensity_bit;
38 /* LCD Controller info data structure, stored in device platform_data */
39 struct atmel_lcdfb_info {
44 struct work_struct task;
46 unsigned int smem_len;
47 struct platform_device *pdev;
51 struct backlight_device *backlight;
54 u32 pseudo_palette[16];
55 bool have_intensity_bit;
57 struct atmel_lcdfb_pdata pdata;
59 struct atmel_lcdfb_config *config;
60 struct regulator *reg_lcd;
63 struct atmel_lcdfb_power_ctrl_gpio {
64 struct gpio_desc *gpiod;
66 struct list_head list;
69 #define lcdc_readl(sinfo, reg) __raw_readl((sinfo)->mmio+(reg))
70 #define lcdc_writel(sinfo, reg, val) __raw_writel((val), (sinfo)->mmio+(reg))
72 /* configurable parameters */
73 #define ATMEL_LCDC_CVAL_DEFAULT 0xc8
74 #define ATMEL_LCDC_DMA_BURST_LEN 8 /* words */
75 #define ATMEL_LCDC_FIFO_SIZE 512 /* words */
77 static struct atmel_lcdfb_config at91sam9261_config = {
79 .have_intensity_bit = true,
82 static struct atmel_lcdfb_config at91sam9263_config = {
83 .have_intensity_bit = true,
86 static struct atmel_lcdfb_config at91sam9g10_config = {
90 static struct atmel_lcdfb_config at91sam9g45_config = {
91 .have_alt_pixclock = true,
94 static struct atmel_lcdfb_config at91sam9g45es_config = {
97 static struct atmel_lcdfb_config at91sam9rl_config = {
98 .have_intensity_bit = true,
101 static u32 contrast_ctr = ATMEL_LCDC_PS_DIV8
102 | ATMEL_LCDC_POL_POSITIVE
103 | ATMEL_LCDC_ENA_PWMENABLE;
105 #ifdef CONFIG_BACKLIGHT_ATMEL_LCDC
107 /* some bl->props field just changed */
108 static int atmel_bl_update_status(struct backlight_device *bl)
110 struct atmel_lcdfb_info *sinfo = bl_get_data(bl);
111 int brightness = backlight_get_brightness(bl);
113 lcdc_writel(sinfo, ATMEL_LCDC_CONTRAST_VAL, brightness);
114 if (contrast_ctr & ATMEL_LCDC_POL_POSITIVE)
115 lcdc_writel(sinfo, ATMEL_LCDC_CONTRAST_CTR,
116 brightness ? contrast_ctr : 0);
118 lcdc_writel(sinfo, ATMEL_LCDC_CONTRAST_CTR, contrast_ctr);
123 static int atmel_bl_get_brightness(struct backlight_device *bl)
125 struct atmel_lcdfb_info *sinfo = bl_get_data(bl);
127 return lcdc_readl(sinfo, ATMEL_LCDC_CONTRAST_VAL);
130 static const struct backlight_ops atmel_lcdc_bl_ops = {
131 .update_status = atmel_bl_update_status,
132 .get_brightness = atmel_bl_get_brightness,
135 static void init_backlight(struct atmel_lcdfb_info *sinfo)
137 struct backlight_properties props;
138 struct backlight_device *bl;
140 if (sinfo->backlight)
143 memset(&props, 0, sizeof(struct backlight_properties));
144 props.type = BACKLIGHT_RAW;
145 props.max_brightness = 0xff;
146 bl = backlight_device_register("backlight", &sinfo->pdev->dev, sinfo,
147 &atmel_lcdc_bl_ops, &props);
149 dev_err(&sinfo->pdev->dev, "error %ld on backlight register\n",
153 sinfo->backlight = bl;
155 bl->props.power = FB_BLANK_UNBLANK;
156 bl->props.fb_blank = FB_BLANK_UNBLANK;
157 bl->props.brightness = atmel_bl_get_brightness(bl);
160 static void exit_backlight(struct atmel_lcdfb_info *sinfo)
162 if (!sinfo->backlight)
165 if (sinfo->backlight->ops) {
166 sinfo->backlight->props.power = FB_BLANK_POWERDOWN;
167 sinfo->backlight->ops->update_status(sinfo->backlight);
169 backlight_device_unregister(sinfo->backlight);
174 static void init_backlight(struct atmel_lcdfb_info *sinfo)
176 dev_warn(&sinfo->pdev->dev, "backlight control is not available\n");
179 static void exit_backlight(struct atmel_lcdfb_info *sinfo)
185 static void init_contrast(struct atmel_lcdfb_info *sinfo)
187 struct atmel_lcdfb_pdata *pdata = &sinfo->pdata;
189 /* contrast pwm can be 'inverted' */
190 if (pdata->lcdcon_pol_negative)
191 contrast_ctr &= ~(ATMEL_LCDC_POL_POSITIVE);
193 /* have some default contrast/backlight settings */
194 lcdc_writel(sinfo, ATMEL_LCDC_CONTRAST_CTR, contrast_ctr);
195 lcdc_writel(sinfo, ATMEL_LCDC_CONTRAST_VAL, ATMEL_LCDC_CVAL_DEFAULT);
197 if (pdata->lcdcon_is_backlight)
198 init_backlight(sinfo);
201 static inline void atmel_lcdfb_power_control(struct atmel_lcdfb_info *sinfo, int on)
204 struct atmel_lcdfb_pdata *pdata = &sinfo->pdata;
206 if (pdata->atmel_lcdfb_power_control)
207 pdata->atmel_lcdfb_power_control(pdata, on);
208 else if (sinfo->reg_lcd) {
210 ret = regulator_enable(sinfo->reg_lcd);
212 dev_err(&sinfo->pdev->dev,
213 "lcd regulator enable failed: %d\n", ret);
215 ret = regulator_disable(sinfo->reg_lcd);
217 dev_err(&sinfo->pdev->dev,
218 "lcd regulator disable failed: %d\n", ret);
223 static const struct fb_fix_screeninfo atmel_lcdfb_fix __initconst = {
224 .type = FB_TYPE_PACKED_PIXELS,
225 .visual = FB_VISUAL_TRUECOLOR,
229 .accel = FB_ACCEL_NONE,
232 static unsigned long compute_hozval(struct atmel_lcdfb_info *sinfo,
235 unsigned long lcdcon2;
238 if (!sinfo->config->have_hozval)
241 lcdcon2 = lcdc_readl(sinfo, ATMEL_LCDC_LCDCON2);
243 if ((lcdcon2 & ATMEL_LCDC_DISTYPE) != ATMEL_LCDC_DISTYPE_TFT) {
245 if ((lcdcon2 & ATMEL_LCDC_DISTYPE) == ATMEL_LCDC_DISTYPE_STNCOLOR) {
248 if ( (lcdcon2 & ATMEL_LCDC_IFWIDTH) == ATMEL_LCDC_IFWIDTH_4
249 || ( (lcdcon2 & ATMEL_LCDC_IFWIDTH) == ATMEL_LCDC_IFWIDTH_8
250 && (lcdcon2 & ATMEL_LCDC_SCANMOD) == ATMEL_LCDC_SCANMOD_DUAL ))
251 value = DIV_ROUND_UP(value, 4);
253 value = DIV_ROUND_UP(value, 8);
259 static void atmel_lcdfb_stop_nowait(struct atmel_lcdfb_info *sinfo)
261 struct atmel_lcdfb_pdata *pdata = &sinfo->pdata;
263 /* Turn off the LCD controller and the DMA controller */
264 lcdc_writel(sinfo, ATMEL_LCDC_PWRCON,
265 pdata->guard_time << ATMEL_LCDC_GUARDT_OFFSET);
267 /* Wait for the LCDC core to become idle */
268 while (lcdc_readl(sinfo, ATMEL_LCDC_PWRCON) & ATMEL_LCDC_BUSY)
271 lcdc_writel(sinfo, ATMEL_LCDC_DMACON, 0);
274 static void atmel_lcdfb_stop(struct atmel_lcdfb_info *sinfo)
276 atmel_lcdfb_stop_nowait(sinfo);
278 /* Wait for DMA engine to become idle... */
279 while (lcdc_readl(sinfo, ATMEL_LCDC_DMACON) & ATMEL_LCDC_DMABUSY)
283 static void atmel_lcdfb_start(struct atmel_lcdfb_info *sinfo)
285 struct atmel_lcdfb_pdata *pdata = &sinfo->pdata;
287 lcdc_writel(sinfo, ATMEL_LCDC_DMACON, pdata->default_dmacon);
288 lcdc_writel(sinfo, ATMEL_LCDC_PWRCON,
289 (pdata->guard_time << ATMEL_LCDC_GUARDT_OFFSET)
293 static void atmel_lcdfb_update_dma(struct fb_info *info,
294 struct fb_var_screeninfo *var)
296 struct atmel_lcdfb_info *sinfo = info->par;
297 struct fb_fix_screeninfo *fix = &info->fix;
298 unsigned long dma_addr;
300 dma_addr = (fix->smem_start + var->yoffset * fix->line_length
301 + var->xoffset * info->var.bits_per_pixel / 8);
305 /* Set framebuffer DMA base address and pixel offset */
306 lcdc_writel(sinfo, ATMEL_LCDC_DMABADDR1, dma_addr);
309 static inline void atmel_lcdfb_free_video_memory(struct atmel_lcdfb_info *sinfo)
311 struct fb_info *info = sinfo->info;
313 dma_free_wc(info->device, info->fix.smem_len, info->screen_base,
314 info->fix.smem_start);
318 * atmel_lcdfb_alloc_video_memory - Allocate framebuffer memory
319 * @sinfo: the frame buffer to allocate memory for
321 * This function is called only from the atmel_lcdfb_probe()
322 * so no locking by fb_info->mm_lock around smem_len setting is needed.
324 static int atmel_lcdfb_alloc_video_memory(struct atmel_lcdfb_info *sinfo)
326 struct fb_info *info = sinfo->info;
327 struct fb_var_screeninfo *var = &info->var;
328 unsigned int smem_len;
330 smem_len = (var->xres_virtual * var->yres_virtual
331 * ((var->bits_per_pixel + 7) / 8));
332 info->fix.smem_len = max(smem_len, sinfo->smem_len);
334 info->screen_base = dma_alloc_wc(info->device, info->fix.smem_len,
335 (dma_addr_t *)&info->fix.smem_start,
338 if (!info->screen_base) {
342 memset(info->screen_base, 0, info->fix.smem_len);
347 static const struct fb_videomode *atmel_lcdfb_choose_mode(struct fb_var_screeninfo *var,
348 struct fb_info *info)
350 struct fb_videomode varfbmode;
351 const struct fb_videomode *fbmode = NULL;
353 fb_var_to_videomode(&varfbmode, var);
354 fbmode = fb_find_nearest_mode(&varfbmode, &info->modelist);
356 fb_videomode_to_var(var, fbmode);
362 * atmel_lcdfb_check_var - Validates a var passed in.
363 * @var: frame buffer variable screen structure
364 * @info: frame buffer structure that represents a single frame buffer
366 * Checks to see if the hardware supports the state requested by
367 * var passed in. This function does not alter the hardware
368 * state!!! This means the data stored in struct fb_info and
369 * struct atmel_lcdfb_info do not change. This includes the var
370 * inside of struct fb_info. Do NOT change these. This function
371 * can be called on its own if we intent to only test a mode and
372 * not actually set it. The stuff in modedb.c is a example of
373 * this. If the var passed in is slightly off by what the
374 * hardware can support then we alter the var PASSED in to what
375 * we can do. If the hardware doesn't support mode change a
376 * -EINVAL will be returned by the upper layers. You don't need
377 * to implement this function then. If you hardware doesn't
378 * support changing the resolution then this function is not
379 * needed. In this case the driver would just provide a var that
380 * represents the static state the screen is in.
382 * Returns negative errno on error, or zero on success.
384 static int atmel_lcdfb_check_var(struct fb_var_screeninfo *var,
385 struct fb_info *info)
387 struct device *dev = info->device;
388 struct atmel_lcdfb_info *sinfo = info->par;
389 struct atmel_lcdfb_pdata *pdata = &sinfo->pdata;
390 unsigned long clk_value_khz;
392 clk_value_khz = clk_get_rate(sinfo->lcdc_clk) / 1000;
394 dev_dbg(dev, "%s:\n", __func__);
396 if (!(var->pixclock && var->bits_per_pixel)) {
397 /* choose a suitable mode if possible */
398 if (!atmel_lcdfb_choose_mode(var, info)) {
399 dev_err(dev, "needed value not specified\n");
404 dev_dbg(dev, " resolution: %ux%u\n", var->xres, var->yres);
405 dev_dbg(dev, " pixclk: %lu KHz\n", PICOS2KHZ(var->pixclock));
406 dev_dbg(dev, " bpp: %u\n", var->bits_per_pixel);
407 dev_dbg(dev, " clk: %lu KHz\n", clk_value_khz);
409 if (PICOS2KHZ(var->pixclock) > clk_value_khz) {
410 dev_err(dev, "%lu KHz pixel clock is too fast\n", PICOS2KHZ(var->pixclock));
414 /* Do not allow to have real resoulution larger than virtual */
415 if (var->xres > var->xres_virtual)
416 var->xres_virtual = var->xres;
418 if (var->yres > var->yres_virtual)
419 var->yres_virtual = var->yres;
421 /* Force same alignment for each line */
422 var->xres = (var->xres + 3) & ~3UL;
423 var->xres_virtual = (var->xres_virtual + 3) & ~3UL;
425 var->red.msb_right = var->green.msb_right = var->blue.msb_right = 0;
426 var->transp.msb_right = 0;
427 var->transp.offset = var->transp.length = 0;
428 var->xoffset = var->yoffset = 0;
430 if (info->fix.smem_len) {
431 unsigned int smem_len = (var->xres_virtual * var->yres_virtual
432 * ((var->bits_per_pixel + 7) / 8));
433 if (smem_len > info->fix.smem_len) {
434 dev_err(dev, "Frame buffer is too small (%u) for screen size (need at least %u)\n",
435 info->fix.smem_len, smem_len);
440 /* Saturate vertical and horizontal timings at maximum values */
441 var->vsync_len = min_t(u32, var->vsync_len,
442 (ATMEL_LCDC_VPW >> ATMEL_LCDC_VPW_OFFSET) + 1);
443 var->upper_margin = min_t(u32, var->upper_margin,
444 ATMEL_LCDC_VBP >> ATMEL_LCDC_VBP_OFFSET);
445 var->lower_margin = min_t(u32, var->lower_margin,
447 var->right_margin = min_t(u32, var->right_margin,
448 (ATMEL_LCDC_HFP >> ATMEL_LCDC_HFP_OFFSET) + 1);
449 var->hsync_len = min_t(u32, var->hsync_len,
450 (ATMEL_LCDC_HPW >> ATMEL_LCDC_HPW_OFFSET) + 1);
451 var->left_margin = min_t(u32, var->left_margin,
454 /* Some parameters can't be zero */
455 var->vsync_len = max_t(u32, var->vsync_len, 1);
456 var->right_margin = max_t(u32, var->right_margin, 1);
457 var->hsync_len = max_t(u32, var->hsync_len, 1);
458 var->left_margin = max_t(u32, var->left_margin, 1);
460 switch (var->bits_per_pixel) {
465 var->red.offset = var->green.offset = var->blue.offset = 0;
466 var->red.length = var->green.length = var->blue.length
467 = var->bits_per_pixel;
470 /* Older SOCs use IBGR:555 rather than BGR:565. */
471 if (sinfo->config->have_intensity_bit)
472 var->green.length = 5;
474 var->green.length = 6;
476 if (pdata->lcd_wiring_mode == ATMEL_LCDC_WIRING_RGB) {
478 var->red.offset = var->green.length + 5;
479 var->blue.offset = 0;
483 var->blue.offset = var->green.length + 5;
485 var->green.offset = 5;
486 var->red.length = var->blue.length = 5;
489 var->transp.offset = 24;
490 var->transp.length = 8;
493 if (pdata->lcd_wiring_mode == ATMEL_LCDC_WIRING_RGB) {
495 var->red.offset = 16;
496 var->blue.offset = 0;
500 var->blue.offset = 16;
502 var->green.offset = 8;
503 var->red.length = var->green.length = var->blue.length = 8;
506 dev_err(dev, "color depth %d not supported\n",
507 var->bits_per_pixel);
517 static void atmel_lcdfb_reset(struct atmel_lcdfb_info *sinfo)
521 atmel_lcdfb_stop(sinfo);
522 atmel_lcdfb_start(sinfo);
526 * atmel_lcdfb_set_par - Alters the hardware state.
527 * @info: frame buffer structure that represents a single frame buffer
529 * Using the fb_var_screeninfo in fb_info we set the resolution
530 * of the this particular framebuffer. This function alters the
531 * par AND the fb_fix_screeninfo stored in fb_info. It doesn't
532 * not alter var in fb_info since we are using that data. This
533 * means we depend on the data in var inside fb_info to be
534 * supported by the hardware. atmel_lcdfb_check_var is always called
535 * before atmel_lcdfb_set_par to ensure this. Again if you can't
536 * change the resolution you don't need this function.
539 static int atmel_lcdfb_set_par(struct fb_info *info)
541 struct atmel_lcdfb_info *sinfo = info->par;
542 struct atmel_lcdfb_pdata *pdata = &sinfo->pdata;
543 unsigned long hozval_linesz;
545 unsigned long clk_value_khz;
546 unsigned long bits_per_line;
547 unsigned long pix_factor = 2;
551 dev_dbg(info->device, "%s:\n", __func__);
552 dev_dbg(info->device, " * resolution: %ux%u (%ux%u virtual)\n",
553 info->var.xres, info->var.yres,
554 info->var.xres_virtual, info->var.yres_virtual);
556 atmel_lcdfb_stop_nowait(sinfo);
558 if (info->var.bits_per_pixel == 1)
559 info->fix.visual = FB_VISUAL_MONO01;
560 else if (info->var.bits_per_pixel <= 8)
561 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
563 info->fix.visual = FB_VISUAL_TRUECOLOR;
565 bits_per_line = info->var.xres_virtual * info->var.bits_per_pixel;
566 info->fix.line_length = DIV_ROUND_UP(bits_per_line, 8);
568 /* Re-initialize the DMA engine... */
569 dev_dbg(info->device, " * update DMA engine\n");
570 atmel_lcdfb_update_dma(info, &info->var);
572 /* ...set frame size and burst length = 8 words (?) */
573 value = (info->var.yres * info->var.xres * info->var.bits_per_pixel) / 32;
574 value |= ((ATMEL_LCDC_DMA_BURST_LEN - 1) << ATMEL_LCDC_BLENGTH_OFFSET);
575 lcdc_writel(sinfo, ATMEL_LCDC_DMAFRMCFG, value);
577 /* Now, the LCDC core... */
579 /* Set pixel clock */
580 if (sinfo->config->have_alt_pixclock)
583 clk_value_khz = clk_get_rate(sinfo->lcdc_clk) / 1000;
585 value = DIV_ROUND_UP(clk_value_khz, PICOS2KHZ(info->var.pixclock));
587 if (value < pix_factor) {
588 dev_notice(info->device, "Bypassing pixel clock divider\n");
589 lcdc_writel(sinfo, ATMEL_LCDC_LCDCON1, ATMEL_LCDC_BYPASS);
591 value = (value / pix_factor) - 1;
592 dev_dbg(info->device, " * programming CLKVAL = 0x%08lx\n",
594 lcdc_writel(sinfo, ATMEL_LCDC_LCDCON1,
595 value << ATMEL_LCDC_CLKVAL_OFFSET);
597 KHZ2PICOS(clk_value_khz / (pix_factor * (value + 1)));
598 dev_dbg(info->device, " updated pixclk: %lu KHz\n",
599 PICOS2KHZ(info->var.pixclock));
603 /* Initialize control register 2 */
604 value = pdata->default_lcdcon2;
606 if (!(info->var.sync & FB_SYNC_HOR_HIGH_ACT))
607 value |= ATMEL_LCDC_INVLINE_INVERTED;
608 if (!(info->var.sync & FB_SYNC_VERT_HIGH_ACT))
609 value |= ATMEL_LCDC_INVFRAME_INVERTED;
611 switch (info->var.bits_per_pixel) {
612 case 1: value |= ATMEL_LCDC_PIXELSIZE_1; break;
613 case 2: value |= ATMEL_LCDC_PIXELSIZE_2; break;
614 case 4: value |= ATMEL_LCDC_PIXELSIZE_4; break;
615 case 8: value |= ATMEL_LCDC_PIXELSIZE_8; break;
616 case 15: fallthrough;
617 case 16: value |= ATMEL_LCDC_PIXELSIZE_16; break;
618 case 24: value |= ATMEL_LCDC_PIXELSIZE_24; break;
619 case 32: value |= ATMEL_LCDC_PIXELSIZE_32; break;
620 default: BUG(); break;
622 dev_dbg(info->device, " * LCDCON2 = %08lx\n", value);
623 lcdc_writel(sinfo, ATMEL_LCDC_LCDCON2, value);
625 /* Vertical timing */
626 value = (info->var.vsync_len - 1) << ATMEL_LCDC_VPW_OFFSET;
627 value |= info->var.upper_margin << ATMEL_LCDC_VBP_OFFSET;
628 value |= info->var.lower_margin;
629 dev_dbg(info->device, " * LCDTIM1 = %08lx\n", value);
630 lcdc_writel(sinfo, ATMEL_LCDC_TIM1, value);
632 /* Horizontal timing */
633 value = (info->var.right_margin - 1) << ATMEL_LCDC_HFP_OFFSET;
634 value |= (info->var.hsync_len - 1) << ATMEL_LCDC_HPW_OFFSET;
635 value |= (info->var.left_margin - 1);
636 dev_dbg(info->device, " * LCDTIM2 = %08lx\n", value);
637 lcdc_writel(sinfo, ATMEL_LCDC_TIM2, value);
639 /* Horizontal value (aka line size) */
640 hozval_linesz = compute_hozval(sinfo, info->var.xres);
643 value = (hozval_linesz - 1) << ATMEL_LCDC_HOZVAL_OFFSET;
644 value |= info->var.yres - 1;
645 dev_dbg(info->device, " * LCDFRMCFG = %08lx\n", value);
646 lcdc_writel(sinfo, ATMEL_LCDC_LCDFRMCFG, value);
648 /* FIFO Threshold: Use formula from data sheet */
649 value = ATMEL_LCDC_FIFO_SIZE - (2 * ATMEL_LCDC_DMA_BURST_LEN + 3);
650 lcdc_writel(sinfo, ATMEL_LCDC_FIFO, value);
652 /* Toggle LCD_MODE every frame */
653 lcdc_writel(sinfo, ATMEL_LCDC_MVAL, 0);
655 /* Disable all interrupts */
656 lcdc_writel(sinfo, ATMEL_LCDC_IDR, ~0U);
657 /* Enable FIFO & DMA errors */
658 lcdc_writel(sinfo, ATMEL_LCDC_IER, ATMEL_LCDC_UFLWI | ATMEL_LCDC_OWRI | ATMEL_LCDC_MERI);
660 /* ...wait for DMA engine to become idle... */
661 while (lcdc_readl(sinfo, ATMEL_LCDC_DMACON) & ATMEL_LCDC_DMABUSY)
664 atmel_lcdfb_start(sinfo);
666 dev_dbg(info->device, " * DONE\n");
671 static inline unsigned int chan_to_field(unsigned int chan, const struct fb_bitfield *bf)
674 chan >>= 16 - bf->length;
675 return chan << bf->offset;
679 * atmel_lcdfb_setcolreg - Optional function. Sets a color register.
680 * @regno: Which register in the CLUT we are programming
681 * @red: The red value which can be up to 16 bits wide
682 * @green: The green value which can be up to 16 bits wide
683 * @blue: The blue value which can be up to 16 bits wide.
684 * @transp: If supported the alpha value which can be up to 16 bits wide.
685 * @info: frame buffer info structure
687 * Set a single color register. The values supplied have a 16 bit
688 * magnitude which needs to be scaled in this function for the hardware.
689 * Things to take into consideration are how many color registers, if
690 * any, are supported with the current color visual. With truecolor mode
691 * no color palettes are supported. Here a pseudo palette is created
692 * which we store the value in pseudo_palette in struct fb_info. For
693 * pseudocolor mode we have a limited color palette. To deal with this
694 * we can program what color is displayed for a particular pixel value.
695 * DirectColor is similar in that we can program each color field. If
696 * we have a static colormap we don't need to implement this function.
698 * Returns negative errno on error, or zero on success. In an
699 * ideal world, this would have been the case, but as it turns
700 * out, the other drivers return 1 on failure, so that's what
703 static int atmel_lcdfb_setcolreg(unsigned int regno, unsigned int red,
704 unsigned int green, unsigned int blue,
705 unsigned int transp, struct fb_info *info)
707 struct atmel_lcdfb_info *sinfo = info->par;
708 struct atmel_lcdfb_pdata *pdata = &sinfo->pdata;
713 if (info->var.grayscale)
714 red = green = blue = (19595 * red + 38470 * green
715 + 7471 * blue) >> 16;
717 switch (info->fix.visual) {
718 case FB_VISUAL_TRUECOLOR:
720 pal = info->pseudo_palette;
722 val = chan_to_field(red, &info->var.red);
723 val |= chan_to_field(green, &info->var.green);
724 val |= chan_to_field(blue, &info->var.blue);
731 case FB_VISUAL_PSEUDOCOLOR:
733 if (sinfo->config->have_intensity_bit) {
734 /* old style I+BGR:555 */
735 val = ((red >> 11) & 0x001f);
736 val |= ((green >> 6) & 0x03e0);
737 val |= ((blue >> 1) & 0x7c00);
740 * TODO: intensity bit. Maybe something like
741 * ~(red[10] ^ green[10] ^ blue[10]) & 1
744 /* new style BGR:565 / RGB:565 */
745 if (pdata->lcd_wiring_mode == ATMEL_LCDC_WIRING_RGB) {
746 val = ((blue >> 11) & 0x001f);
747 val |= ((red >> 0) & 0xf800);
749 val = ((red >> 11) & 0x001f);
750 val |= ((blue >> 0) & 0xf800);
753 val |= ((green >> 5) & 0x07e0);
756 lcdc_writel(sinfo, ATMEL_LCDC_LUT(regno), val);
761 case FB_VISUAL_MONO01:
763 val = (regno == 0) ? 0x00 : 0x1F;
764 lcdc_writel(sinfo, ATMEL_LCDC_LUT(regno), val);
774 static int atmel_lcdfb_pan_display(struct fb_var_screeninfo *var,
775 struct fb_info *info)
777 dev_dbg(info->device, "%s\n", __func__);
779 atmel_lcdfb_update_dma(info, var);
784 static int atmel_lcdfb_blank(int blank_mode, struct fb_info *info)
786 struct atmel_lcdfb_info *sinfo = info->par;
788 switch (blank_mode) {
789 case FB_BLANK_UNBLANK:
790 case FB_BLANK_NORMAL:
791 atmel_lcdfb_start(sinfo);
793 case FB_BLANK_VSYNC_SUSPEND:
794 case FB_BLANK_HSYNC_SUSPEND:
796 case FB_BLANK_POWERDOWN:
797 atmel_lcdfb_stop(sinfo);
803 /* let fbcon do a soft blank for us */
804 return ((blank_mode == FB_BLANK_NORMAL) ? 1 : 0);
807 static const struct fb_ops atmel_lcdfb_ops = {
808 .owner = THIS_MODULE,
809 .fb_check_var = atmel_lcdfb_check_var,
810 .fb_set_par = atmel_lcdfb_set_par,
811 .fb_setcolreg = atmel_lcdfb_setcolreg,
812 .fb_blank = atmel_lcdfb_blank,
813 .fb_pan_display = atmel_lcdfb_pan_display,
814 .fb_fillrect = cfb_fillrect,
815 .fb_copyarea = cfb_copyarea,
816 .fb_imageblit = cfb_imageblit,
819 static irqreturn_t atmel_lcdfb_interrupt(int irq, void *dev_id)
821 struct fb_info *info = dev_id;
822 struct atmel_lcdfb_info *sinfo = info->par;
825 status = lcdc_readl(sinfo, ATMEL_LCDC_ISR);
826 if (status & ATMEL_LCDC_UFLWI) {
827 dev_warn(info->device, "FIFO underflow %#x\n", status);
828 /* reset DMA and FIFO to avoid screen shifting */
829 schedule_work(&sinfo->task);
831 lcdc_writel(sinfo, ATMEL_LCDC_ICR, status);
836 * LCD controller task (to reset the LCD)
838 static void atmel_lcdfb_task(struct work_struct *work)
840 struct atmel_lcdfb_info *sinfo =
841 container_of(work, struct atmel_lcdfb_info, task);
843 atmel_lcdfb_reset(sinfo);
846 static int __init atmel_lcdfb_init_fbinfo(struct atmel_lcdfb_info *sinfo)
848 struct fb_info *info = sinfo->info;
851 info->var.activate |= FB_ACTIVATE_FORCE | FB_ACTIVATE_NOW;
853 dev_info(info->device,
854 "%luKiB frame buffer at %08lx (mapped at %p)\n",
855 (unsigned long)info->fix.smem_len / 1024,
856 (unsigned long)info->fix.smem_start,
859 /* Allocate colormap */
860 ret = fb_alloc_cmap(&info->cmap, 256, 0);
862 dev_err(info->device, "Alloc color map failed\n");
867 static void atmel_lcdfb_start_clock(struct atmel_lcdfb_info *sinfo)
869 clk_prepare_enable(sinfo->bus_clk);
870 clk_prepare_enable(sinfo->lcdc_clk);
873 static void atmel_lcdfb_stop_clock(struct atmel_lcdfb_info *sinfo)
875 clk_disable_unprepare(sinfo->bus_clk);
876 clk_disable_unprepare(sinfo->lcdc_clk);
879 static const struct of_device_id atmel_lcdfb_dt_ids[] = {
880 { .compatible = "atmel,at91sam9261-lcdc" , .data = &at91sam9261_config, },
881 { .compatible = "atmel,at91sam9263-lcdc" , .data = &at91sam9263_config, },
882 { .compatible = "atmel,at91sam9g10-lcdc" , .data = &at91sam9g10_config, },
883 { .compatible = "atmel,at91sam9g45-lcdc" , .data = &at91sam9g45_config, },
884 { .compatible = "atmel,at91sam9g45es-lcdc" , .data = &at91sam9g45es_config, },
885 { .compatible = "atmel,at91sam9rl-lcdc" , .data = &at91sam9rl_config, },
889 MODULE_DEVICE_TABLE(of, atmel_lcdfb_dt_ids);
891 static const char *atmel_lcdfb_wiring_modes[] = {
892 [ATMEL_LCDC_WIRING_BGR] = "BRG",
893 [ATMEL_LCDC_WIRING_RGB] = "RGB",
896 static int atmel_lcdfb_get_of_wiring_modes(struct device_node *np)
901 err = of_property_read_string(np, "atmel,lcd-wiring-mode", &mode);
903 return ATMEL_LCDC_WIRING_BGR;
905 for (i = 0; i < ARRAY_SIZE(atmel_lcdfb_wiring_modes); i++)
906 if (!strcasecmp(mode, atmel_lcdfb_wiring_modes[i]))
912 static void atmel_lcdfb_power_control_gpio(struct atmel_lcdfb_pdata *pdata, int on)
914 struct atmel_lcdfb_power_ctrl_gpio *og;
916 list_for_each_entry(og, &pdata->pwr_gpios, list)
917 gpiod_set_value(og->gpiod, on);
920 static int atmel_lcdfb_of_init(struct atmel_lcdfb_info *sinfo)
922 struct fb_info *info = sinfo->info;
923 struct atmel_lcdfb_pdata *pdata = &sinfo->pdata;
924 struct fb_var_screeninfo *var = &info->var;
925 struct device *dev = &sinfo->pdev->dev;
926 struct device_node *np =dev->of_node;
927 struct device_node *display_np;
928 struct atmel_lcdfb_power_ctrl_gpio *og;
929 bool is_gpio_power = false;
930 struct fb_videomode fb_vm;
931 struct gpio_desc *gpiod;
936 sinfo->config = (struct atmel_lcdfb_config*)
937 of_match_device(atmel_lcdfb_dt_ids, dev)->data;
939 display_np = of_parse_phandle(np, "display", 0);
941 dev_err(dev, "failed to find display phandle\n");
945 ret = of_property_read_u32(display_np, "bits-per-pixel", &var->bits_per_pixel);
947 dev_err(dev, "failed to get property bits-per-pixel\n");
948 goto put_display_node;
951 ret = of_property_read_u32(display_np, "atmel,guard-time", &pdata->guard_time);
953 dev_err(dev, "failed to get property atmel,guard-time\n");
954 goto put_display_node;
957 ret = of_property_read_u32(display_np, "atmel,lcdcon2", &pdata->default_lcdcon2);
959 dev_err(dev, "failed to get property atmel,lcdcon2\n");
960 goto put_display_node;
963 ret = of_property_read_u32(display_np, "atmel,dmacon", &pdata->default_dmacon);
965 dev_err(dev, "failed to get property bits-per-pixel\n");
966 goto put_display_node;
969 INIT_LIST_HEAD(&pdata->pwr_gpios);
970 for (i = 0; i < gpiod_count(dev, "atmel,power-control"); i++) {
972 gpiod = devm_gpiod_get_index(dev, "atmel,power-control",
977 og = devm_kzalloc(dev, sizeof(*og), GFP_KERNEL);
979 goto put_display_node;
982 is_gpio_power = true;
984 ret = gpiod_direction_output(gpiod, gpiod_is_active_low(gpiod));
986 dev_err(dev, "set direction output gpio atmel,power-control[%d] failed\n", i);
987 goto put_display_node;
989 list_add(&og->list, &pdata->pwr_gpios);
993 pdata->atmel_lcdfb_power_control = atmel_lcdfb_power_control_gpio;
995 ret = atmel_lcdfb_get_of_wiring_modes(display_np);
997 dev_err(dev, "invalid atmel,lcd-wiring-mode\n");
998 goto put_display_node;
1000 pdata->lcd_wiring_mode = ret;
1002 pdata->lcdcon_is_backlight = of_property_read_bool(display_np, "atmel,lcdcon-backlight");
1003 pdata->lcdcon_pol_negative = of_property_read_bool(display_np, "atmel,lcdcon-backlight-inverted");
1005 ret = of_get_videomode(display_np, &vm, OF_USE_NATIVE_MODE);
1007 dev_err(dev, "failed to get videomode from DT\n");
1008 goto put_display_node;
1011 ret = fb_videomode_from_videomode(&vm, &fb_vm);
1013 goto put_display_node;
1015 fb_add_videomode(&fb_vm, &info->modelist);
1018 of_node_put(display_np);
1022 static int __init atmel_lcdfb_probe(struct platform_device *pdev)
1024 struct device *dev = &pdev->dev;
1025 struct fb_info *info;
1026 struct atmel_lcdfb_info *sinfo;
1027 struct resource *regs = NULL;
1028 struct resource *map = NULL;
1029 struct fb_modelist *modelist;
1032 dev_dbg(dev, "%s BEGIN\n", __func__);
1035 info = framebuffer_alloc(sizeof(struct atmel_lcdfb_info), dev);
1043 INIT_LIST_HEAD(&info->modelist);
1045 if (!pdev->dev.of_node) {
1046 dev_err(dev, "cannot get default configuration\n");
1050 ret = atmel_lcdfb_of_init(sinfo);
1058 sinfo->reg_lcd = devm_regulator_get(&pdev->dev, "lcd");
1059 if (IS_ERR(sinfo->reg_lcd))
1060 sinfo->reg_lcd = NULL;
1062 info->flags = FBINFO_DEFAULT | FBINFO_PARTIAL_PAN_OK |
1063 FBINFO_HWACCEL_YPAN;
1064 info->pseudo_palette = sinfo->pseudo_palette;
1065 info->fbops = &atmel_lcdfb_ops;
1067 info->fix = atmel_lcdfb_fix;
1068 strcpy(info->fix.id, sinfo->pdev->name);
1070 /* Enable LCDC Clocks */
1071 sinfo->bus_clk = clk_get(dev, "hclk");
1072 if (IS_ERR(sinfo->bus_clk)) {
1073 ret = PTR_ERR(sinfo->bus_clk);
1076 sinfo->lcdc_clk = clk_get(dev, "lcdc_clk");
1077 if (IS_ERR(sinfo->lcdc_clk)) {
1078 ret = PTR_ERR(sinfo->lcdc_clk);
1081 atmel_lcdfb_start_clock(sinfo);
1083 modelist = list_first_entry(&info->modelist,
1084 struct fb_modelist, list);
1085 fb_videomode_to_var(&info->var, &modelist->mode);
1087 atmel_lcdfb_check_var(&info->var, info);
1089 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1091 dev_err(dev, "resources unusable\n");
1096 sinfo->irq_base = platform_get_irq(pdev, 0);
1097 if (sinfo->irq_base < 0) {
1098 ret = sinfo->irq_base;
1102 /* Initialize video memory */
1103 map = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1105 /* use a pre-allocated memory buffer */
1106 info->fix.smem_start = map->start;
1107 info->fix.smem_len = resource_size(map);
1108 if (!request_mem_region(info->fix.smem_start,
1109 info->fix.smem_len, pdev->name)) {
1114 info->screen_base = ioremap_wc(info->fix.smem_start,
1115 info->fix.smem_len);
1116 if (!info->screen_base) {
1118 goto release_intmem;
1122 * Don't clear the framebuffer -- someone may have set
1123 * up a splash image.
1126 /* allocate memory buffer */
1127 ret = atmel_lcdfb_alloc_video_memory(sinfo);
1129 dev_err(dev, "cannot allocate framebuffer: %d\n", ret);
1134 /* LCDC registers */
1135 info->fix.mmio_start = regs->start;
1136 info->fix.mmio_len = resource_size(regs);
1138 if (!request_mem_region(info->fix.mmio_start,
1139 info->fix.mmio_len, pdev->name)) {
1144 sinfo->mmio = ioremap(info->fix.mmio_start, info->fix.mmio_len);
1146 dev_err(dev, "cannot map LCDC registers\n");
1151 /* Initialize PWM for contrast or backlight ("off") */
1152 init_contrast(sinfo);
1155 ret = request_irq(sinfo->irq_base, atmel_lcdfb_interrupt, 0, pdev->name, info);
1157 dev_err(dev, "request_irq failed: %d\n", ret);
1161 /* Some operations on the LCDC might sleep and
1162 * require a preemptible task context */
1163 INIT_WORK(&sinfo->task, atmel_lcdfb_task);
1165 ret = atmel_lcdfb_init_fbinfo(sinfo);
1167 dev_err(dev, "init fbinfo failed: %d\n", ret);
1168 goto unregister_irqs;
1171 ret = atmel_lcdfb_set_par(info);
1173 dev_err(dev, "set par failed: %d\n", ret);
1174 goto unregister_irqs;
1177 dev_set_drvdata(dev, info);
1180 * Tell the world that we're ready to go
1182 ret = register_framebuffer(info);
1184 dev_err(dev, "failed to register framebuffer device: %d\n", ret);
1188 /* Power up the LCDC screen */
1189 atmel_lcdfb_power_control(sinfo, 1);
1191 dev_info(dev, "fb%d: Atmel LCDC at 0x%08lx (mapped at %p), irq %d\n",
1192 info->node, info->fix.mmio_start, sinfo->mmio, sinfo->irq_base);
1197 dev_set_drvdata(dev, NULL);
1198 fb_dealloc_cmap(&info->cmap);
1200 cancel_work_sync(&sinfo->task);
1201 free_irq(sinfo->irq_base, info);
1203 exit_backlight(sinfo);
1204 iounmap(sinfo->mmio);
1206 release_mem_region(info->fix.mmio_start, info->fix.mmio_len);
1209 iounmap(info->screen_base);
1211 atmel_lcdfb_free_video_memory(sinfo);
1215 release_mem_region(info->fix.smem_start, info->fix.smem_len);
1217 atmel_lcdfb_stop_clock(sinfo);
1218 clk_put(sinfo->lcdc_clk);
1220 clk_put(sinfo->bus_clk);
1222 framebuffer_release(info);
1224 dev_dbg(dev, "%s FAILED\n", __func__);
1228 static int __exit atmel_lcdfb_remove(struct platform_device *pdev)
1230 struct device *dev = &pdev->dev;
1231 struct fb_info *info = dev_get_drvdata(dev);
1232 struct atmel_lcdfb_info *sinfo;
1234 if (!info || !info->par)
1238 cancel_work_sync(&sinfo->task);
1239 exit_backlight(sinfo);
1240 atmel_lcdfb_power_control(sinfo, 0);
1241 unregister_framebuffer(info);
1242 atmel_lcdfb_stop_clock(sinfo);
1243 clk_put(sinfo->lcdc_clk);
1244 clk_put(sinfo->bus_clk);
1245 fb_dealloc_cmap(&info->cmap);
1246 free_irq(sinfo->irq_base, info);
1247 iounmap(sinfo->mmio);
1248 release_mem_region(info->fix.mmio_start, info->fix.mmio_len);
1249 if (platform_get_resource(pdev, IORESOURCE_MEM, 1)) {
1250 iounmap(info->screen_base);
1251 release_mem_region(info->fix.smem_start, info->fix.smem_len);
1253 atmel_lcdfb_free_video_memory(sinfo);
1256 framebuffer_release(info);
1263 static int atmel_lcdfb_suspend(struct platform_device *pdev, pm_message_t mesg)
1265 struct fb_info *info = platform_get_drvdata(pdev);
1266 struct atmel_lcdfb_info *sinfo = info->par;
1269 * We don't want to handle interrupts while the clock is
1270 * stopped. It may take forever.
1272 lcdc_writel(sinfo, ATMEL_LCDC_IDR, ~0U);
1274 sinfo->saved_lcdcon = lcdc_readl(sinfo, ATMEL_LCDC_CONTRAST_CTR);
1275 lcdc_writel(sinfo, ATMEL_LCDC_CONTRAST_CTR, 0);
1276 atmel_lcdfb_power_control(sinfo, 0);
1277 atmel_lcdfb_stop(sinfo);
1278 atmel_lcdfb_stop_clock(sinfo);
1283 static int atmel_lcdfb_resume(struct platform_device *pdev)
1285 struct fb_info *info = platform_get_drvdata(pdev);
1286 struct atmel_lcdfb_info *sinfo = info->par;
1288 atmel_lcdfb_start_clock(sinfo);
1289 atmel_lcdfb_start(sinfo);
1290 atmel_lcdfb_power_control(sinfo, 1);
1291 lcdc_writel(sinfo, ATMEL_LCDC_CONTRAST_CTR, sinfo->saved_lcdcon);
1293 /* Enable FIFO & DMA errors */
1294 lcdc_writel(sinfo, ATMEL_LCDC_IER, ATMEL_LCDC_UFLWI
1295 | ATMEL_LCDC_OWRI | ATMEL_LCDC_MERI);
1301 #define atmel_lcdfb_suspend NULL
1302 #define atmel_lcdfb_resume NULL
1305 static struct platform_driver atmel_lcdfb_driver = {
1306 .remove = __exit_p(atmel_lcdfb_remove),
1307 .suspend = atmel_lcdfb_suspend,
1308 .resume = atmel_lcdfb_resume,
1310 .name = "atmel_lcdfb",
1311 .of_match_table = of_match_ptr(atmel_lcdfb_dt_ids),
1315 module_platform_driver_probe(atmel_lcdfb_driver, atmel_lcdfb_probe);
1317 MODULE_DESCRIPTION("AT91 LCD Controller framebuffer driver");
1319 MODULE_LICENSE("GPL");