2 * Copyright 2008 Freescale Semiconductor, Inc. All Rights Reserved.
4 * Freescale DIU Frame Buffer device driver
6 * Authors: Hongjun Chen <hong-jun.chen@freescale.com>
7 * Paul Widmer <paul.widmer@freescale.com>
8 * Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
9 * York Sun <yorksun@freescale.com>
11 * Based on imxfb.c Copyright (C) 2004 S.Hauer, Pengutronix
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
20 #include <linux/module.h>
21 #include <linux/kernel.h>
22 #include <linux/errno.h>
23 #include <linux/string.h>
24 #include <linux/slab.h>
26 #include <linux/init.h>
27 #include <linux/dma-mapping.h>
28 #include <linux/platform_device.h>
29 #include <linux/interrupt.h>
30 #include <linux/clk.h>
31 #include <linux/uaccess.h>
32 #include <linux/vmalloc.h>
33 #include <linux/spinlock.h>
35 #include <sysdev/fsl_soc.h>
36 #include <linux/fsl-diu-fb.h>
39 #define NUM_AOIS 5 /* 1 for plane 0, 2 for planes 1 & 2 each */
41 /* HW cursor parameters */
44 /* INT_STATUS/INT_MASK field descriptions */
45 #define INT_VSYNC 0x01 /* Vsync interrupt */
46 #define INT_VSYNC_WB 0x02 /* Vsync interrupt for write back operation */
47 #define INT_UNDRUN 0x04 /* Under run exception interrupt */
48 #define INT_PARERR 0x08 /* Display parameters error interrupt */
49 #define INT_LS_BF_VS 0x10 /* Lines before vsync. interrupt */
52 * List of supported video modes
54 * The first entry is the default video mode. The remain entries are in
55 * order if increasing resolution and frequency. The 320x240-60 mode is
56 * the initial AOI for the second and third planes.
58 static struct fb_videomode fsl_diu_mode_db
[] = {
70 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
71 .vmode
= FB_VMODE_NONINTERLACED
84 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
85 .vmode
= FB_VMODE_NONINTERLACED
98 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
99 .vmode
= FB_VMODE_NONINTERLACED
112 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
113 .vmode
= FB_VMODE_NONINTERLACED
126 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
127 .vmode
= FB_VMODE_NONINTERLACED
140 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
141 .vmode
= FB_VMODE_NONINTERLACED
154 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
155 .vmode
= FB_VMODE_NONINTERLACED
168 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
169 .vmode
= FB_VMODE_NONINTERLACED
182 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
183 .vmode
= FB_VMODE_NONINTERLACED
196 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
197 .vmode
= FB_VMODE_NONINTERLACED
210 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
211 .vmode
= FB_VMODE_NONINTERLACED
224 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
225 .vmode
= FB_VMODE_NONINTERLACED
238 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
239 .vmode
= FB_VMODE_NONINTERLACED
252 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
253 .vmode
= FB_VMODE_NONINTERLACED
266 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
267 .vmode
= FB_VMODE_NONINTERLACED
280 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
281 .vmode
= FB_VMODE_NONINTERLACED
294 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
295 .vmode
= FB_VMODE_NONINTERLACED
308 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
309 .vmode
= FB_VMODE_NONINTERLACED
313 static char *fb_mode
;
314 static unsigned long default_bpp
= 32;
315 static enum fsl_diu_monitor_port monitor_port
;
316 static char *monitor_string
;
318 #if defined(CONFIG_NOT_COHERENT_CACHE)
319 static u8
*coherence_data
;
320 static size_t coherence_data_size
;
321 static unsigned int d_cache_line_size
;
324 static DEFINE_SPINLOCK(diu_lock
);
327 PLANE0
= 0, /* Plane 0, only one AOI that fills the screen */
328 PLANE1_AOI0
, /* Plane 1, first AOI */
329 PLANE1_AOI1
, /* Plane 1, second AOI */
330 PLANE2_AOI0
, /* Plane 2, first AOI */
331 PLANE2_AOI1
, /* Plane 2, second AOI */
335 enum mfb_index index
;
338 unsigned long pseudo_palette
[16];
340 unsigned char g_alpha
;
342 int x_aoi_d
; /* aoi display x offset to physical screen */
343 int y_aoi_d
; /* aoi display y offset to physical screen */
344 struct fsl_diu_data
*parent
;
348 * struct fsl_diu_data - per-DIU data structure
349 * @dma_addr: DMA address of this structure
350 * @fsl_diu_info: fb_info objects, one per AOI
351 * @dev_attr: sysfs structure
353 * @monitor_port: the monitor port this DIU is connected to
354 * @diu_reg: pointer to the DIU hardware registers
355 * @reg_lock: spinlock for register access
356 * @dummy_aoi: video buffer for the 4x4 32-bit dummy AOI
357 * dummy_ad: DIU Area Descriptor for the dummy AOI
358 * @ad[]: Area Descriptors for each real AOI
359 * @gamma: gamma color table
360 * @cursor: hardware cursor data
362 * This data structure must be allocated with 32-byte alignment, so that the
363 * internal fields can be aligned properly.
365 struct fsl_diu_data
{
367 struct fb_info fsl_diu_info
[NUM_AOIS
];
368 struct mfb_info mfb
[NUM_AOIS
];
369 struct device_attribute dev_attr
;
371 enum fsl_diu_monitor_port monitor_port
;
372 struct diu __iomem
*diu_reg
;
374 u8 dummy_aoi
[4 * 4 * 4];
375 struct diu_ad dummy_ad
__aligned(8);
376 struct diu_ad ad
[NUM_AOIS
] __aligned(8);
377 u8 gamma
[256 * 3] __aligned(32);
378 /* It's easier to parse the cursor data as little-endian */
379 __le16 cursor
[MAX_CURS
* MAX_CURS
] __aligned(32);
380 /* Blank cursor data -- used to hide the cursor */
381 __le16 blank_cursor
[MAX_CURS
* MAX_CURS
] __aligned(32);
382 uint8_t edid_data
[EDID_LENGTH
];
386 /* Determine the DMA address of a member of the fsl_diu_data structure */
387 #define DMA_ADDR(p, f) ((p)->dma_addr + offsetof(struct fsl_diu_data, f))
389 static struct mfb_info mfb_template
[] = {
399 .index
= PLANE1_AOI0
,
408 .index
= PLANE1_AOI1
,
417 .index
= PLANE2_AOI0
,
426 .index
= PLANE2_AOI1
,
437 static void __attribute__ ((unused
)) fsl_diu_dump(struct diu __iomem
*hw
)
440 pr_debug("DIU: desc=%08x,%08x,%08x, gamma=%08x pallete=%08x "
441 "cursor=%08x curs_pos=%08x diu_mode=%08x bgnd=%08x "
442 "disp_size=%08x hsyn_para=%08x vsyn_para=%08x syn_pol=%08x "
443 "thresholds=%08x int_mask=%08x plut=%08x\n",
444 hw
->desc
[0], hw
->desc
[1], hw
->desc
[2], hw
->gamma
,
445 hw
->pallete
, hw
->cursor
, hw
->curs_pos
, hw
->diu_mode
,
446 hw
->bgnd
, hw
->disp_size
, hw
->hsyn_para
, hw
->vsyn_para
,
447 hw
->syn_pol
, hw
->thresholds
, hw
->int_mask
, hw
->plut
);
453 * fsl_diu_name_to_port - convert a port name to a monitor port enum
455 * Takes the name of a monitor port ("dvi", "lvds", or "dlvds") and returns
456 * the enum fsl_diu_monitor_port that corresponds to that string.
458 * For compatibility with older versions, a number ("0", "1", or "2") is also
461 * If the string is unknown, DVI is assumed.
463 * If the particular port is not supported by the platform, another port
464 * (platform-specific) is chosen instead.
466 static enum fsl_diu_monitor_port
fsl_diu_name_to_port(const char *s
)
468 enum fsl_diu_monitor_port port
= FSL_DIU_PORT_DVI
;
472 if (!strict_strtoul(s
, 10, &val
) && (val
<= 2))
473 port
= (enum fsl_diu_monitor_port
) val
;
474 else if (strncmp(s
, "lvds", 4) == 0)
475 port
= FSL_DIU_PORT_LVDS
;
476 else if (strncmp(s
, "dlvds", 5) == 0)
477 port
= FSL_DIU_PORT_DLVDS
;
480 return diu_ops
.valid_monitor_port(port
);
484 * Workaround for failed writing desc register of planes.
485 * Needed with MPC5121 DIU rev 2.0 silicon.
487 void wr_reg_wa(u32
*reg
, u32 val
)
491 } while (in_be32(reg
) != val
);
494 static void fsl_diu_enable_panel(struct fb_info
*info
)
496 struct mfb_info
*pmfbi
, *cmfbi
, *mfbi
= info
->par
;
497 struct diu_ad
*ad
= mfbi
->ad
;
498 struct fsl_diu_data
*data
= mfbi
->parent
;
499 struct diu __iomem
*hw
= data
->diu_reg
;
501 switch (mfbi
->index
) {
503 wr_reg_wa(&hw
->desc
[0], ad
->paddr
);
506 cmfbi
= &data
->mfb
[2];
507 if (hw
->desc
[1] != ad
->paddr
) { /* AOI0 closed */
508 if (cmfbi
->count
> 0) /* AOI1 open */
510 cpu_to_le32(cmfbi
->ad
->paddr
);
513 wr_reg_wa(&hw
->desc
[1], ad
->paddr
);
517 cmfbi
= &data
->mfb
[4];
518 if (hw
->desc
[2] != ad
->paddr
) { /* AOI0 closed */
519 if (cmfbi
->count
> 0) /* AOI1 open */
521 cpu_to_le32(cmfbi
->ad
->paddr
);
524 wr_reg_wa(&hw
->desc
[2], ad
->paddr
);
528 pmfbi
= &data
->mfb
[1];
530 if (hw
->desc
[1] == data
->dummy_ad
.paddr
)
531 wr_reg_wa(&hw
->desc
[1], ad
->paddr
);
533 pmfbi
->ad
->next_ad
= cpu_to_le32(ad
->paddr
);
536 pmfbi
= &data
->mfb
[3];
538 if (hw
->desc
[2] == data
->dummy_ad
.paddr
)
539 wr_reg_wa(&hw
->desc
[2], ad
->paddr
);
540 else /* AOI0 was open */
541 pmfbi
->ad
->next_ad
= cpu_to_le32(ad
->paddr
);
546 static void fsl_diu_disable_panel(struct fb_info
*info
)
548 struct mfb_info
*pmfbi
, *cmfbi
, *mfbi
= info
->par
;
549 struct diu_ad
*ad
= mfbi
->ad
;
550 struct fsl_diu_data
*data
= mfbi
->parent
;
551 struct diu __iomem
*hw
= data
->diu_reg
;
553 switch (mfbi
->index
) {
555 wr_reg_wa(&hw
->desc
[0], 0);
558 cmfbi
= &data
->mfb
[2];
559 if (cmfbi
->count
> 0) /* AOI1 is open */
560 wr_reg_wa(&hw
->desc
[1], cmfbi
->ad
->paddr
);
561 /* move AOI1 to the first */
562 else /* AOI1 was closed */
563 wr_reg_wa(&hw
->desc
[1], data
->dummy_ad
.paddr
);
567 cmfbi
= &data
->mfb
[4];
568 if (cmfbi
->count
> 0) /* AOI1 is open */
569 wr_reg_wa(&hw
->desc
[2], cmfbi
->ad
->paddr
);
570 /* move AOI1 to the first */
571 else /* AOI1 was closed */
572 wr_reg_wa(&hw
->desc
[2], data
->dummy_ad
.paddr
);
576 pmfbi
= &data
->mfb
[1];
577 if (hw
->desc
[1] != ad
->paddr
) {
578 /* AOI1 is not the first in the chain */
579 if (pmfbi
->count
> 0)
580 /* AOI0 is open, must be the first */
581 pmfbi
->ad
->next_ad
= 0;
582 } else /* AOI1 is the first in the chain */
583 wr_reg_wa(&hw
->desc
[1], data
->dummy_ad
.paddr
);
587 pmfbi
= &data
->mfb
[3];
588 if (hw
->desc
[2] != ad
->paddr
) {
589 /* AOI1 is not the first in the chain */
590 if (pmfbi
->count
> 0)
591 /* AOI0 is open, must be the first */
592 pmfbi
->ad
->next_ad
= 0;
593 } else /* AOI1 is the first in the chain */
594 wr_reg_wa(&hw
->desc
[2], data
->dummy_ad
.paddr
);
600 static void enable_lcdc(struct fb_info
*info
)
602 struct mfb_info
*mfbi
= info
->par
;
603 struct fsl_diu_data
*data
= mfbi
->parent
;
604 struct diu __iomem
*hw
= data
->diu_reg
;
606 out_be32(&hw
->diu_mode
, MFB_MODE1
);
609 static void disable_lcdc(struct fb_info
*info
)
611 struct mfb_info
*mfbi
= info
->par
;
612 struct fsl_diu_data
*data
= mfbi
->parent
;
613 struct diu __iomem
*hw
= data
->diu_reg
;
615 out_be32(&hw
->diu_mode
, 0);
618 static void adjust_aoi_size_position(struct fb_var_screeninfo
*var
,
619 struct fb_info
*info
)
621 struct mfb_info
*lower_aoi_mfbi
, *upper_aoi_mfbi
, *mfbi
= info
->par
;
622 struct fsl_diu_data
*data
= mfbi
->parent
;
623 int available_height
, upper_aoi_bottom
;
624 enum mfb_index index
= mfbi
->index
;
625 int lower_aoi_is_open
, upper_aoi_is_open
;
626 __u32 base_plane_width
, base_plane_height
, upper_aoi_height
;
628 base_plane_width
= data
->fsl_diu_info
[0].var
.xres
;
629 base_plane_height
= data
->fsl_diu_info
[0].var
.yres
;
631 if (mfbi
->x_aoi_d
< 0)
633 if (mfbi
->y_aoi_d
< 0)
637 if (mfbi
->x_aoi_d
!= 0)
639 if (mfbi
->y_aoi_d
!= 0)
644 lower_aoi_mfbi
= data
->fsl_diu_info
[index
+1].par
;
645 lower_aoi_is_open
= lower_aoi_mfbi
->count
> 0 ? 1 : 0;
646 if (var
->xres
> base_plane_width
)
647 var
->xres
= base_plane_width
;
648 if ((mfbi
->x_aoi_d
+ var
->xres
) > base_plane_width
)
649 mfbi
->x_aoi_d
= base_plane_width
- var
->xres
;
651 if (lower_aoi_is_open
)
652 available_height
= lower_aoi_mfbi
->y_aoi_d
;
654 available_height
= base_plane_height
;
655 if (var
->yres
> available_height
)
656 var
->yres
= available_height
;
657 if ((mfbi
->y_aoi_d
+ var
->yres
) > available_height
)
658 mfbi
->y_aoi_d
= available_height
- var
->yres
;
662 upper_aoi_mfbi
= data
->fsl_diu_info
[index
-1].par
;
663 upper_aoi_height
= data
->fsl_diu_info
[index
-1].var
.yres
;
664 upper_aoi_bottom
= upper_aoi_mfbi
->y_aoi_d
+ upper_aoi_height
;
665 upper_aoi_is_open
= upper_aoi_mfbi
->count
> 0 ? 1 : 0;
666 if (var
->xres
> base_plane_width
)
667 var
->xres
= base_plane_width
;
668 if ((mfbi
->x_aoi_d
+ var
->xres
) > base_plane_width
)
669 mfbi
->x_aoi_d
= base_plane_width
- var
->xres
;
670 if (mfbi
->y_aoi_d
< 0)
672 if (upper_aoi_is_open
) {
673 if (mfbi
->y_aoi_d
< upper_aoi_bottom
)
674 mfbi
->y_aoi_d
= upper_aoi_bottom
;
675 available_height
= base_plane_height
678 available_height
= base_plane_height
;
679 if (var
->yres
> available_height
)
680 var
->yres
= available_height
;
681 if ((mfbi
->y_aoi_d
+ var
->yres
) > base_plane_height
)
682 mfbi
->y_aoi_d
= base_plane_height
- var
->yres
;
687 * Checks to see if the hardware supports the state requested by var passed
688 * in. This function does not alter the hardware state! If the var passed in
689 * is slightly off by what the hardware can support then we alter the var
690 * PASSED in to what we can do. If the hardware doesn't support mode change
691 * a -EINVAL will be returned by the upper layers.
693 static int fsl_diu_check_var(struct fb_var_screeninfo
*var
,
694 struct fb_info
*info
)
696 if (var
->xres_virtual
< var
->xres
)
697 var
->xres_virtual
= var
->xres
;
698 if (var
->yres_virtual
< var
->yres
)
699 var
->yres_virtual
= var
->yres
;
701 if (var
->xoffset
< 0)
704 if (var
->yoffset
< 0)
707 if (var
->xoffset
+ info
->var
.xres
> info
->var
.xres_virtual
)
708 var
->xoffset
= info
->var
.xres_virtual
- info
->var
.xres
;
710 if (var
->yoffset
+ info
->var
.yres
> info
->var
.yres_virtual
)
711 var
->yoffset
= info
->var
.yres_virtual
- info
->var
.yres
;
713 if ((var
->bits_per_pixel
!= 32) && (var
->bits_per_pixel
!= 24) &&
714 (var
->bits_per_pixel
!= 16))
715 var
->bits_per_pixel
= default_bpp
;
717 switch (var
->bits_per_pixel
) {
720 var
->red
.offset
= 11;
721 var
->red
.msb_right
= 0;
723 var
->green
.length
= 6;
724 var
->green
.offset
= 5;
725 var
->green
.msb_right
= 0;
727 var
->blue
.length
= 5;
728 var
->blue
.offset
= 0;
729 var
->blue
.msb_right
= 0;
731 var
->transp
.length
= 0;
732 var
->transp
.offset
= 0;
733 var
->transp
.msb_right
= 0;
738 var
->red
.msb_right
= 0;
740 var
->green
.length
= 8;
741 var
->green
.offset
= 8;
742 var
->green
.msb_right
= 0;
744 var
->blue
.length
= 8;
745 var
->blue
.offset
= 16;
746 var
->blue
.msb_right
= 0;
748 var
->transp
.length
= 0;
749 var
->transp
.offset
= 0;
750 var
->transp
.msb_right
= 0;
754 var
->red
.offset
= 16;
755 var
->red
.msb_right
= 0;
757 var
->green
.length
= 8;
758 var
->green
.offset
= 8;
759 var
->green
.msb_right
= 0;
761 var
->blue
.length
= 8;
762 var
->blue
.offset
= 0;
763 var
->blue
.msb_right
= 0;
765 var
->transp
.length
= 8;
766 var
->transp
.offset
= 24;
767 var
->transp
.msb_right
= 0;
776 /* Copy nonstd field to/from sync for fbset usage */
777 var
->sync
|= var
->nonstd
;
778 var
->nonstd
|= var
->sync
;
780 adjust_aoi_size_position(var
, info
);
784 static void set_fix(struct fb_info
*info
)
786 struct fb_fix_screeninfo
*fix
= &info
->fix
;
787 struct fb_var_screeninfo
*var
= &info
->var
;
788 struct mfb_info
*mfbi
= info
->par
;
790 strncpy(fix
->id
, mfbi
->id
, sizeof(fix
->id
));
791 fix
->line_length
= var
->xres_virtual
* var
->bits_per_pixel
/ 8;
792 fix
->type
= FB_TYPE_PACKED_PIXELS
;
793 fix
->accel
= FB_ACCEL_NONE
;
794 fix
->visual
= FB_VISUAL_TRUECOLOR
;
799 static void update_lcdc(struct fb_info
*info
)
801 struct fb_var_screeninfo
*var
= &info
->var
;
802 struct mfb_info
*mfbi
= info
->par
;
803 struct fsl_diu_data
*data
= mfbi
->parent
;
804 struct diu __iomem
*hw
;
806 u8
*gamma_table_base
;
812 if (diu_ops
.set_monitor_port
)
813 diu_ops
.set_monitor_port(data
->monitor_port
);
814 gamma_table_base
= data
->gamma
;
816 /* Prep for DIU init - gamma table, cursor table */
818 for (i
= 0; i
<= 2; i
++)
819 for (j
= 0; j
<= 255; j
++)
820 *gamma_table_base
++ = j
;
822 if (diu_ops
.set_gamma_table
)
823 diu_ops
.set_gamma_table(data
->monitor_port
, data
->gamma
);
827 /* Program DIU registers */
829 out_be32(&hw
->gamma
, DMA_ADDR(data
, gamma
));
831 out_be32(&hw
->bgnd
, 0x007F7F7F); /* Set background to grey */
832 out_be32(&hw
->disp_size
, (var
->yres
<< 16) | var
->xres
);
834 /* Horizontal and vertical configuration register */
835 temp
= var
->left_margin
<< 22 | /* BP_H */
836 var
->hsync_len
<< 11 | /* PW_H */
837 var
->right_margin
; /* FP_H */
839 out_be32(&hw
->hsyn_para
, temp
);
841 temp
= var
->upper_margin
<< 22 | /* BP_V */
842 var
->vsync_len
<< 11 | /* PW_V */
843 var
->lower_margin
; /* FP_V */
845 out_be32(&hw
->vsyn_para
, temp
);
847 diu_ops
.set_pixel_clock(var
->pixclock
);
849 #ifndef CONFIG_PPC_MPC512x
851 * The PLUT register is defined differently on the MPC5121 than it
852 * is on other SOCs. Unfortunately, there's no documentation that
853 * explains how it's supposed to be programmed, so for now, we leave
854 * it at the default value on the MPC5121.
856 * For other SOCs, program it for the highest priority, which will
857 * reduce the chance of underrun. Technically, we should scale the
858 * priority to match the screen resolution, but doing that properly
859 * requires delicate fine-tuning for each use-case.
861 out_be32(&hw
->plut
, 0x01F5F666);
868 static int map_video_memory(struct fb_info
*info
)
870 u32 smem_len
= info
->fix
.line_length
* info
->var
.yres_virtual
;
873 p
= alloc_pages_exact(smem_len
, GFP_DMA
| __GFP_ZERO
);
875 dev_err(info
->dev
, "unable to allocate fb memory\n");
878 mutex_lock(&info
->mm_lock
);
879 info
->screen_base
= p
;
880 info
->fix
.smem_start
= virt_to_phys(info
->screen_base
);
881 info
->fix
.smem_len
= smem_len
;
882 mutex_unlock(&info
->mm_lock
);
883 info
->screen_size
= info
->fix
.smem_len
;
888 static void unmap_video_memory(struct fb_info
*info
)
890 void *p
= info
->screen_base
;
891 size_t l
= info
->fix
.smem_len
;
893 mutex_lock(&info
->mm_lock
);
894 info
->screen_base
= NULL
;
895 info
->fix
.smem_start
= 0;
896 info
->fix
.smem_len
= 0;
897 mutex_unlock(&info
->mm_lock
);
900 free_pages_exact(p
, l
);
904 * Using the fb_var_screeninfo in fb_info we set the aoi of this
905 * particular framebuffer. It is a light version of fsl_diu_set_par.
907 static int fsl_diu_set_aoi(struct fb_info
*info
)
909 struct fb_var_screeninfo
*var
= &info
->var
;
910 struct mfb_info
*mfbi
= info
->par
;
911 struct diu_ad
*ad
= mfbi
->ad
;
913 /* AOI should not be greater than display size */
914 ad
->offset_xyi
= cpu_to_le32((var
->yoffset
<< 16) | var
->xoffset
);
915 ad
->offset_xyd
= cpu_to_le32((mfbi
->y_aoi_d
<< 16) | mfbi
->x_aoi_d
);
920 * fsl_diu_get_pixel_format: return the pixel format for a given color depth
922 * The pixel format is a 32-bit value that determine which bits in each
923 * pixel are to be used for each color. This is the default function used
924 * if the platform does not define its own version.
926 static u32
fsl_diu_get_pixel_format(unsigned int bits_per_pixel
)
928 #define PF_BYTE_F 0x10000000
929 #define PF_ALPHA_C_MASK 0x0E000000
930 #define PF_ALPHA_C_SHIFT 25
931 #define PF_BLUE_C_MASK 0x01800000
932 #define PF_BLUE_C_SHIFT 23
933 #define PF_GREEN_C_MASK 0x00600000
934 #define PF_GREEN_C_SHIFT 21
935 #define PF_RED_C_MASK 0x00180000
936 #define PF_RED_C_SHIFT 19
937 #define PF_PALETTE 0x00040000
938 #define PF_PIXEL_S_MASK 0x00030000
939 #define PF_PIXEL_S_SHIFT 16
940 #define PF_COMP_3_MASK 0x0000F000
941 #define PF_COMP_3_SHIFT 12
942 #define PF_COMP_2_MASK 0x00000F00
943 #define PF_COMP_2_SHIFT 8
944 #define PF_COMP_1_MASK 0x000000F0
945 #define PF_COMP_1_SHIFT 4
946 #define PF_COMP_0_MASK 0x0000000F
947 #define PF_COMP_0_SHIFT 0
949 #define MAKE_PF(alpha, red, green, blue, size, c0, c1, c2, c3) \
950 cpu_to_le32(PF_BYTE_F | (alpha << PF_ALPHA_C_SHIFT) | \
951 (blue << PF_BLUE_C_SHIFT) | (green << PF_GREEN_C_SHIFT) | \
952 (red << PF_RED_C_SHIFT) | (c3 << PF_COMP_3_SHIFT) | \
953 (c2 << PF_COMP_2_SHIFT) | (c1 << PF_COMP_1_SHIFT) | \
954 (c0 << PF_COMP_0_SHIFT) | (size << PF_PIXEL_S_SHIFT))
956 switch (bits_per_pixel
) {
959 return MAKE_PF(3, 2, 1, 0, 3, 8, 8, 8, 8);
962 return MAKE_PF(4, 0, 1, 2, 2, 8, 8, 8, 0);
965 return MAKE_PF(4, 2, 1, 0, 1, 5, 6, 5, 0);
967 pr_err("fsl-diu: unsupported color depth %u\n", bits_per_pixel
);
973 * Copies a cursor image from user space to the proper place in driver
974 * memory so that the hardware can display the cursor image.
976 * Cursor data is represented as a sequence of 'width' bits packed into bytes.
977 * That is, the first 8 bits are in the first byte, the second 8 bits in the
978 * second byte, and so on. Therefore, the each row of the cursor is (width +
979 * 7) / 8 bytes of 'data'
981 * The DIU only supports cursors up to 32x32 (MAX_CURS). We reject cursors
982 * larger than this, so we already know that 'width' <= 32. Therefore, we can
983 * simplify our code by using a 32-bit big-endian integer ("line") to read in
984 * a single line of pixels, and only look at the top 'width' bits of that
987 * This could result in an unaligned 32-bit read. For example, if the cursor
988 * is 24x24, then the first three bytes of 'image' contain the pixel data for
989 * the top line of the cursor. We do a 32-bit read of 'image', but we look
990 * only at the top 24 bits. Then we increment 'image' by 3 bytes. The next
991 * read is unaligned. The only problem is that we might read past the end of
992 * 'image' by 1-3 bytes, but that should not cause any problems.
994 static void fsl_diu_load_cursor_image(struct fb_info
*info
,
995 const void *image
, uint16_t bg
, uint16_t fg
,
996 unsigned int width
, unsigned int height
)
998 struct mfb_info
*mfbi
= info
->par
;
999 struct fsl_diu_data
*data
= mfbi
->parent
;
1000 __le16
*cursor
= data
->cursor
;
1001 __le16 _fg
= cpu_to_le16(fg
);
1002 __le16 _bg
= cpu_to_le16(bg
);
1005 for (h
= 0; h
< height
; h
++) {
1006 uint32_t mask
= 1 << 31;
1007 uint32_t line
= be32_to_cpup(image
);
1009 for (w
= 0; w
< width
; w
++) {
1010 cursor
[w
] = (line
& mask
) ? _fg
: _bg
;
1015 image
+= DIV_ROUND_UP(width
, 8);
1020 * Set a hardware cursor. The image data for the cursor is passed via the
1023 static int fsl_diu_cursor(struct fb_info
*info
, struct fb_cursor
*cursor
)
1025 struct mfb_info
*mfbi
= info
->par
;
1026 struct fsl_diu_data
*data
= mfbi
->parent
;
1027 struct diu __iomem
*hw
= data
->diu_reg
;
1029 if (cursor
->image
.width
> MAX_CURS
|| cursor
->image
.height
> MAX_CURS
)
1032 /* The cursor size has changed */
1033 if (cursor
->set
& FB_CUR_SETSIZE
) {
1035 * The DIU cursor is a fixed size, so when we get this
1036 * message, instead of resizing the cursor, we just clear
1037 * all the image data, in expectation of new data. However,
1038 * in tests this control does not appear to be normally
1041 memset(data
->cursor
, 0, sizeof(data
->cursor
));
1044 /* The cursor position has changed (cursor->image.dx|dy) */
1045 if (cursor
->set
& FB_CUR_SETPOS
) {
1048 yy
= (cursor
->image
.dy
- info
->var
.yoffset
) & 0x7ff;
1049 xx
= (cursor
->image
.dx
- info
->var
.xoffset
) & 0x7ff;
1051 out_be32(&hw
->curs_pos
, yy
<< 16 | xx
);
1055 * FB_CUR_SETIMAGE - the cursor image has changed
1056 * FB_CUR_SETCMAP - the cursor colors has changed
1057 * FB_CUR_SETSHAPE - the cursor bitmask has changed
1059 if (cursor
->set
& (FB_CUR_SETSHAPE
| FB_CUR_SETCMAP
| FB_CUR_SETIMAGE
)) {
1060 unsigned int image_size
=
1061 DIV_ROUND_UP(cursor
->image
.width
, 8) * cursor
->image
.height
;
1062 unsigned int image_words
=
1063 DIV_ROUND_UP(image_size
, sizeof(uint32_t));
1064 unsigned int bg_idx
= cursor
->image
.bg_color
;
1065 unsigned int fg_idx
= cursor
->image
.fg_color
;
1066 uint8_t buffer
[image_size
];
1067 uint32_t *image
, *source
, *mask
;
1071 if (info
->state
!= FBINFO_STATE_RUNNING
)
1075 * Determine the size of the cursor image data. Normally,
1078 image_size
= DIV_ROUND_UP(cursor
->image
.width
, 8) *
1079 cursor
->image
.height
;
1081 bg
= ((info
->cmap
.red
[bg_idx
] & 0xf8) << 7) |
1082 ((info
->cmap
.green
[bg_idx
] & 0xf8) << 2) |
1083 ((info
->cmap
.blue
[bg_idx
] & 0xf8) >> 3) |
1086 fg
= ((info
->cmap
.red
[fg_idx
] & 0xf8) << 7) |
1087 ((info
->cmap
.green
[fg_idx
] & 0xf8) << 2) |
1088 ((info
->cmap
.blue
[fg_idx
] & 0xf8) >> 3) |
1091 /* Use 32-bit operations on the data to improve performance */
1092 image
= (uint32_t *)buffer
;
1093 source
= (uint32_t *)cursor
->image
.data
;
1094 mask
= (uint32_t *)cursor
->mask
;
1096 if (cursor
->rop
== ROP_XOR
)
1097 for (i
= 0; i
< image_words
; i
++)
1098 image
[i
] = source
[i
] ^ mask
[i
];
1100 for (i
= 0; i
< image_words
; i
++)
1101 image
[i
] = source
[i
] & mask
[i
];
1103 fsl_diu_load_cursor_image(info
, image
, bg
, fg
,
1104 cursor
->image
.width
, cursor
->image
.height
);
1108 * Show or hide the cursor. The cursor data is always stored in the
1109 * 'cursor' memory block, and the actual cursor position is always in
1110 * the DIU's CURS_POS register. To hide the cursor, we redirect the
1111 * CURSOR register to a blank cursor. The show the cursor, we
1112 * redirect the CURSOR register to the real cursor data.
1115 out_be32(&hw
->cursor
, DMA_ADDR(data
, cursor
));
1117 out_be32(&hw
->cursor
, DMA_ADDR(data
, blank_cursor
));
1123 * Using the fb_var_screeninfo in fb_info we set the resolution of this
1124 * particular framebuffer. This function alters the fb_fix_screeninfo stored
1125 * in fb_info. It does not alter var in fb_info since we are using that
1126 * data. This means we depend on the data in var inside fb_info to be
1127 * supported by the hardware. fsl_diu_check_var is always called before
1128 * fsl_diu_set_par to ensure this.
1130 static int fsl_diu_set_par(struct fb_info
*info
)
1133 struct fb_var_screeninfo
*var
= &info
->var
;
1134 struct mfb_info
*mfbi
= info
->par
;
1135 struct fsl_diu_data
*data
= mfbi
->parent
;
1136 struct diu_ad
*ad
= mfbi
->ad
;
1137 struct diu __iomem
*hw
;
1143 len
= info
->var
.yres_virtual
* info
->fix
.line_length
;
1144 /* Alloc & dealloc each time resolution/bpp change */
1145 if (len
!= info
->fix
.smem_len
) {
1146 if (info
->fix
.smem_start
)
1147 unmap_video_memory(info
);
1149 /* Memory allocation for framebuffer */
1150 if (map_video_memory(info
)) {
1151 dev_err(info
->dev
, "unable to allocate fb memory 1\n");
1156 if (diu_ops
.get_pixel_format
)
1157 ad
->pix_fmt
= diu_ops
.get_pixel_format(data
->monitor_port
,
1158 var
->bits_per_pixel
);
1160 ad
->pix_fmt
= fsl_diu_get_pixel_format(var
->bits_per_pixel
);
1162 ad
->addr
= cpu_to_le32(info
->fix
.smem_start
);
1163 ad
->src_size_g_alpha
= cpu_to_le32((var
->yres_virtual
<< 12) |
1164 var
->xres_virtual
) | mfbi
->g_alpha
;
1165 /* AOI should not be greater than display size */
1166 ad
->aoi_size
= cpu_to_le32((var
->yres
<< 16) | var
->xres
);
1167 ad
->offset_xyi
= cpu_to_le32((var
->yoffset
<< 16) | var
->xoffset
);
1168 ad
->offset_xyd
= cpu_to_le32((mfbi
->y_aoi_d
<< 16) | mfbi
->x_aoi_d
);
1170 /* Disable chroma keying function */
1179 if (mfbi
->index
== PLANE0
)
1184 static inline __u32
CNVT_TOHW(__u32 val
, __u32 width
)
1186 return ((val
<< width
) + 0x7FFF - val
) >> 16;
1190 * Set a single color register. The values supplied have a 16 bit magnitude
1191 * which needs to be scaled in this function for the hardware. Things to take
1192 * into consideration are how many color registers, if any, are supported with
1193 * the current color visual. With truecolor mode no color palettes are
1194 * supported. Here a pseudo palette is created which we store the value in
1195 * pseudo_palette in struct fb_info. For pseudocolor mode we have a limited
1198 static int fsl_diu_setcolreg(unsigned int regno
, unsigned int red
,
1199 unsigned int green
, unsigned int blue
,
1200 unsigned int transp
, struct fb_info
*info
)
1205 * If greyscale is true, then we convert the RGB value
1206 * to greyscale no matter what visual we are using.
1208 if (info
->var
.grayscale
)
1209 red
= green
= blue
= (19595 * red
+ 38470 * green
+
1211 switch (info
->fix
.visual
) {
1212 case FB_VISUAL_TRUECOLOR
:
1214 * 16-bit True Colour. We encode the RGB value
1215 * according to the RGB bitfield information.
1218 u32
*pal
= info
->pseudo_palette
;
1221 red
= CNVT_TOHW(red
, info
->var
.red
.length
);
1222 green
= CNVT_TOHW(green
, info
->var
.green
.length
);
1223 blue
= CNVT_TOHW(blue
, info
->var
.blue
.length
);
1224 transp
= CNVT_TOHW(transp
, info
->var
.transp
.length
);
1226 v
= (red
<< info
->var
.red
.offset
) |
1227 (green
<< info
->var
.green
.offset
) |
1228 (blue
<< info
->var
.blue
.offset
) |
1229 (transp
<< info
->var
.transp
.offset
);
1241 * Pan (or wrap, depending on the `vmode' field) the display using the
1242 * 'xoffset' and 'yoffset' fields of the 'var' structure. If the values
1243 * don't fit, return -EINVAL.
1245 static int fsl_diu_pan_display(struct fb_var_screeninfo
*var
,
1246 struct fb_info
*info
)
1248 if ((info
->var
.xoffset
== var
->xoffset
) &&
1249 (info
->var
.yoffset
== var
->yoffset
))
1250 return 0; /* No change, do nothing */
1252 if (var
->xoffset
< 0 || var
->yoffset
< 0
1253 || var
->xoffset
+ info
->var
.xres
> info
->var
.xres_virtual
1254 || var
->yoffset
+ info
->var
.yres
> info
->var
.yres_virtual
)
1257 info
->var
.xoffset
= var
->xoffset
;
1258 info
->var
.yoffset
= var
->yoffset
;
1260 if (var
->vmode
& FB_VMODE_YWRAP
)
1261 info
->var
.vmode
|= FB_VMODE_YWRAP
;
1263 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1265 fsl_diu_set_aoi(info
);
1270 static int fsl_diu_ioctl(struct fb_info
*info
, unsigned int cmd
,
1273 struct mfb_info
*mfbi
= info
->par
;
1274 struct diu_ad
*ad
= mfbi
->ad
;
1275 struct mfb_chroma_key ck
;
1276 unsigned char global_alpha
;
1277 struct aoi_display_offset aoi_d
;
1279 void __user
*buf
= (void __user
*)arg
;
1284 dev_dbg(info
->dev
, "ioctl %08x (dir=%s%s type=%u nr=%u size=%u)\n", cmd
,
1285 _IOC_DIR(cmd
) & _IOC_READ
? "R" : "",
1286 _IOC_DIR(cmd
) & _IOC_WRITE
? "W" : "",
1287 _IOC_TYPE(cmd
), _IOC_NR(cmd
), _IOC_SIZE(cmd
));
1290 case MFB_SET_PIXFMT_OLD
:
1292 "MFB_SET_PIXFMT value of 0x%08x is deprecated.\n",
1293 MFB_SET_PIXFMT_OLD
);
1294 case MFB_SET_PIXFMT
:
1295 if (copy_from_user(&pix_fmt
, buf
, sizeof(pix_fmt
)))
1297 ad
->pix_fmt
= pix_fmt
;
1299 case MFB_GET_PIXFMT_OLD
:
1301 "MFB_GET_PIXFMT value of 0x%08x is deprecated.\n",
1302 MFB_GET_PIXFMT_OLD
);
1303 case MFB_GET_PIXFMT
:
1304 pix_fmt
= ad
->pix_fmt
;
1305 if (copy_to_user(buf
, &pix_fmt
, sizeof(pix_fmt
)))
1309 if (copy_from_user(&aoi_d
, buf
, sizeof(aoi_d
)))
1311 mfbi
->x_aoi_d
= aoi_d
.x_aoi_d
;
1312 mfbi
->y_aoi_d
= aoi_d
.y_aoi_d
;
1313 fsl_diu_check_var(&info
->var
, info
);
1314 fsl_diu_set_aoi(info
);
1317 aoi_d
.x_aoi_d
= mfbi
->x_aoi_d
;
1318 aoi_d
.y_aoi_d
= mfbi
->y_aoi_d
;
1319 if (copy_to_user(buf
, &aoi_d
, sizeof(aoi_d
)))
1323 global_alpha
= mfbi
->g_alpha
;
1324 if (copy_to_user(buf
, &global_alpha
, sizeof(global_alpha
)))
1328 /* set panel information */
1329 if (copy_from_user(&global_alpha
, buf
, sizeof(global_alpha
)))
1331 ad
->src_size_g_alpha
= (ad
->src_size_g_alpha
& (~0xff)) |
1332 (global_alpha
& 0xff);
1333 mfbi
->g_alpha
= global_alpha
;
1335 case MFB_SET_CHROMA_KEY
:
1336 /* set panel winformation */
1337 if (copy_from_user(&ck
, buf
, sizeof(ck
)))
1341 (ck
.red_max
< ck
.red_min
||
1342 ck
.green_max
< ck
.green_min
||
1343 ck
.blue_max
< ck
.blue_min
))
1354 ad
->ckmax_r
= ck
.red_max
;
1355 ad
->ckmax_g
= ck
.green_max
;
1356 ad
->ckmax_b
= ck
.blue_max
;
1357 ad
->ckmin_r
= ck
.red_min
;
1358 ad
->ckmin_g
= ck
.green_min
;
1359 ad
->ckmin_b
= ck
.blue_min
;
1362 #ifdef CONFIG_PPC_MPC512x
1363 case MFB_SET_GAMMA
: {
1364 struct fsl_diu_data
*data
= mfbi
->parent
;
1366 if (copy_from_user(data
->gamma
, buf
, sizeof(data
->gamma
)))
1368 setbits32(&data
->diu_reg
->gamma
, 0); /* Force table reload */
1371 case MFB_GET_GAMMA
: {
1372 struct fsl_diu_data
*data
= mfbi
->parent
;
1374 if (copy_to_user(buf
, data
->gamma
, sizeof(data
->gamma
)))
1380 dev_err(info
->dev
, "unknown ioctl command (0x%08X)\n", cmd
);
1381 return -ENOIOCTLCMD
;
1387 static inline void fsl_diu_enable_interrupts(struct fsl_diu_data
*data
)
1389 u32 int_mask
= INT_UNDRUN
; /* enable underrun detection */
1391 if (IS_ENABLED(CONFIG_NOT_COHERENT_CACHE
))
1392 int_mask
|= INT_VSYNC
; /* enable vertical sync */
1394 clrbits32(&data
->diu_reg
->int_mask
, int_mask
);
1397 /* turn on fb if count == 1
1399 static int fsl_diu_open(struct fb_info
*info
, int user
)
1401 struct mfb_info
*mfbi
= info
->par
;
1404 /* free boot splash memory on first /dev/fb0 open */
1405 if ((mfbi
->index
== PLANE0
) && diu_ops
.release_bootmem
)
1406 diu_ops
.release_bootmem();
1408 spin_lock(&diu_lock
);
1410 if (mfbi
->count
== 1) {
1411 fsl_diu_check_var(&info
->var
, info
);
1412 res
= fsl_diu_set_par(info
);
1416 fsl_diu_enable_interrupts(mfbi
->parent
);
1417 fsl_diu_enable_panel(info
);
1421 spin_unlock(&diu_lock
);
1425 /* turn off fb if count == 0
1427 static int fsl_diu_release(struct fb_info
*info
, int user
)
1429 struct mfb_info
*mfbi
= info
->par
;
1432 spin_lock(&diu_lock
);
1434 if (mfbi
->count
== 0) {
1435 struct fsl_diu_data
*data
= mfbi
->parent
;
1436 bool disable
= true;
1439 /* Disable interrupts only if all AOIs are closed */
1440 for (i
= 0; i
< NUM_AOIS
; i
++) {
1441 struct mfb_info
*mi
= data
->fsl_diu_info
[i
].par
;
1447 out_be32(&data
->diu_reg
->int_mask
, 0xffffffff);
1448 fsl_diu_disable_panel(info
);
1451 spin_unlock(&diu_lock
);
1455 static struct fb_ops fsl_diu_ops
= {
1456 .owner
= THIS_MODULE
,
1457 .fb_check_var
= fsl_diu_check_var
,
1458 .fb_set_par
= fsl_diu_set_par
,
1459 .fb_setcolreg
= fsl_diu_setcolreg
,
1460 .fb_pan_display
= fsl_diu_pan_display
,
1461 .fb_fillrect
= cfb_fillrect
,
1462 .fb_copyarea
= cfb_copyarea
,
1463 .fb_imageblit
= cfb_imageblit
,
1464 .fb_ioctl
= fsl_diu_ioctl
,
1465 .fb_open
= fsl_diu_open
,
1466 .fb_release
= fsl_diu_release
,
1467 .fb_cursor
= fsl_diu_cursor
,
1470 static int install_fb(struct fb_info
*info
)
1473 struct mfb_info
*mfbi
= info
->par
;
1474 struct fsl_diu_data
*data
= mfbi
->parent
;
1475 const char *aoi_mode
, *init_aoi_mode
= "320x240";
1476 struct fb_videomode
*db
= fsl_diu_mode_db
;
1477 unsigned int dbsize
= ARRAY_SIZE(fsl_diu_mode_db
);
1478 int has_default_mode
= 1;
1480 info
->var
.activate
= FB_ACTIVATE_NOW
;
1481 info
->fbops
= &fsl_diu_ops
;
1482 info
->flags
= FBINFO_DEFAULT
| FBINFO_VIRTFB
| FBINFO_PARTIAL_PAN_OK
|
1484 info
->pseudo_palette
= mfbi
->pseudo_palette
;
1486 rc
= fb_alloc_cmap(&info
->cmap
, 16, 0);
1490 if (mfbi
->index
== PLANE0
) {
1491 if (data
->has_edid
) {
1492 /* Now build modedb from EDID */
1493 fb_edid_to_monspecs(data
->edid_data
, &info
->monspecs
);
1494 fb_videomode_to_modelist(info
->monspecs
.modedb
,
1495 info
->monspecs
.modedb_len
,
1497 db
= info
->monspecs
.modedb
;
1498 dbsize
= info
->monspecs
.modedb_len
;
1502 aoi_mode
= init_aoi_mode
;
1504 rc
= fb_find_mode(&info
->var
, info
, aoi_mode
, db
, dbsize
, NULL
,
1508 * For plane 0 we continue and look into
1509 * driver's internal modedb.
1511 if ((mfbi
->index
== PLANE0
) && data
->has_edid
)
1512 has_default_mode
= 0;
1517 if (!has_default_mode
) {
1518 rc
= fb_find_mode(&info
->var
, info
, aoi_mode
, fsl_diu_mode_db
,
1519 ARRAY_SIZE(fsl_diu_mode_db
), NULL
, default_bpp
);
1521 has_default_mode
= 1;
1524 /* Still not found, use preferred mode from database if any */
1525 if (!has_default_mode
&& info
->monspecs
.modedb
) {
1526 struct fb_monspecs
*specs
= &info
->monspecs
;
1527 struct fb_videomode
*modedb
= &specs
->modedb
[0];
1530 * Get preferred timing. If not found,
1531 * first mode in database will be used.
1533 if (specs
->misc
& FB_MISC_1ST_DETAIL
) {
1536 for (i
= 0; i
< specs
->modedb_len
; i
++) {
1537 if (specs
->modedb
[i
].flag
& FB_MODE_IS_FIRST
) {
1538 modedb
= &specs
->modedb
[i
];
1544 info
->var
.bits_per_pixel
= default_bpp
;
1545 fb_videomode_to_var(&info
->var
, modedb
);
1548 if (fsl_diu_check_var(&info
->var
, info
)) {
1549 dev_err(info
->dev
, "fsl_diu_check_var failed\n");
1550 unmap_video_memory(info
);
1551 fb_dealloc_cmap(&info
->cmap
);
1555 if (register_framebuffer(info
) < 0) {
1556 dev_err(info
->dev
, "register_framebuffer failed\n");
1557 unmap_video_memory(info
);
1558 fb_dealloc_cmap(&info
->cmap
);
1562 mfbi
->registered
= 1;
1563 dev_info(info
->dev
, "%s registered successfully\n", mfbi
->id
);
1568 static void uninstall_fb(struct fb_info
*info
)
1570 struct mfb_info
*mfbi
= info
->par
;
1572 if (!mfbi
->registered
)
1575 unregister_framebuffer(info
);
1576 unmap_video_memory(info
);
1578 fb_dealloc_cmap(&info
->cmap
);
1580 mfbi
->registered
= 0;
1583 static irqreturn_t
fsl_diu_isr(int irq
, void *dev_id
)
1585 struct diu __iomem
*hw
= dev_id
;
1586 uint32_t status
= in_be32(&hw
->int_status
);
1589 /* This is the workaround for underrun */
1590 if (status
& INT_UNDRUN
) {
1591 out_be32(&hw
->diu_mode
, 0);
1593 out_be32(&hw
->diu_mode
, 1);
1595 #if defined(CONFIG_NOT_COHERENT_CACHE)
1596 else if (status
& INT_VSYNC
) {
1599 for (i
= 0; i
< coherence_data_size
;
1600 i
+= d_cache_line_size
)
1601 __asm__
__volatile__ (
1603 ::[input
]"r"(&coherence_data
[i
]));
1613 * Power management hooks. Note that we won't be called from IRQ context,
1614 * unlike the blank functions above, so we may sleep.
1616 static int fsl_diu_suspend(struct platform_device
*ofdev
, pm_message_t state
)
1618 struct fsl_diu_data
*data
;
1620 data
= dev_get_drvdata(&ofdev
->dev
);
1621 disable_lcdc(data
->fsl_diu_info
);
1626 static int fsl_diu_resume(struct platform_device
*ofdev
)
1628 struct fsl_diu_data
*data
;
1630 data
= dev_get_drvdata(&ofdev
->dev
);
1631 enable_lcdc(data
->fsl_diu_info
);
1637 #define fsl_diu_suspend NULL
1638 #define fsl_diu_resume NULL
1639 #endif /* CONFIG_PM */
1641 static ssize_t
store_monitor(struct device
*device
,
1642 struct device_attribute
*attr
, const char *buf
, size_t count
)
1644 enum fsl_diu_monitor_port old_monitor_port
;
1645 struct fsl_diu_data
*data
=
1646 container_of(attr
, struct fsl_diu_data
, dev_attr
);
1648 old_monitor_port
= data
->monitor_port
;
1649 data
->monitor_port
= fsl_diu_name_to_port(buf
);
1651 if (old_monitor_port
!= data
->monitor_port
) {
1652 /* All AOIs need adjust pixel format
1653 * fsl_diu_set_par only change the pixsel format here
1654 * unlikely to fail. */
1657 for (i
=0; i
< NUM_AOIS
; i
++)
1658 fsl_diu_set_par(&data
->fsl_diu_info
[i
]);
1663 static ssize_t
show_monitor(struct device
*device
,
1664 struct device_attribute
*attr
, char *buf
)
1666 struct fsl_diu_data
*data
=
1667 container_of(attr
, struct fsl_diu_data
, dev_attr
);
1669 switch (data
->monitor_port
) {
1670 case FSL_DIU_PORT_DVI
:
1671 return sprintf(buf
, "DVI\n");
1672 case FSL_DIU_PORT_LVDS
:
1673 return sprintf(buf
, "Single-link LVDS\n");
1674 case FSL_DIU_PORT_DLVDS
:
1675 return sprintf(buf
, "Dual-link LVDS\n");
1681 static int fsl_diu_probe(struct platform_device
*pdev
)
1683 struct device_node
*np
= pdev
->dev
.of_node
;
1684 struct mfb_info
*mfbi
;
1685 struct fsl_diu_data
*data
;
1686 dma_addr_t dma_addr
; /* DMA addr of fsl_diu_data struct */
1691 data
= dmam_alloc_coherent(&pdev
->dev
, sizeof(struct fsl_diu_data
),
1692 &dma_addr
, GFP_DMA
| __GFP_ZERO
);
1695 data
->dma_addr
= dma_addr
;
1698 * dma_alloc_coherent() uses a page allocator, so the address is
1699 * always page-aligned. We need the memory to be 32-byte aligned,
1700 * so that's good. However, if one day the allocator changes, we
1701 * need to catch that. It's not worth the effort to handle unaligned
1702 * alloctions now because it's highly unlikely to ever be a problem.
1704 if ((unsigned long)data
& 31) {
1705 dev_err(&pdev
->dev
, "misaligned allocation");
1710 spin_lock_init(&data
->reg_lock
);
1712 for (i
= 0; i
< NUM_AOIS
; i
++) {
1713 struct fb_info
*info
= &data
->fsl_diu_info
[i
];
1715 info
->device
= &pdev
->dev
;
1716 info
->par
= &data
->mfb
[i
];
1719 * We store the physical address of the AD in the reserved
1720 * 'paddr' field of the AD itself.
1722 data
->ad
[i
].paddr
= DMA_ADDR(data
, ad
[i
]);
1724 info
->fix
.smem_start
= 0;
1726 /* Initialize the AOI data structure */
1728 memcpy(mfbi
, &mfb_template
[i
], sizeof(struct mfb_info
));
1729 mfbi
->parent
= data
;
1730 mfbi
->ad
= &data
->ad
[i
];
1733 /* Get the EDID data from the device tree, if present */
1734 prop
= of_get_property(np
, "edid", &ret
);
1735 if (prop
&& ret
== EDID_LENGTH
) {
1736 memcpy(data
->edid_data
, prop
, EDID_LENGTH
);
1737 data
->has_edid
= true;
1740 data
->diu_reg
= of_iomap(np
, 0);
1741 if (!data
->diu_reg
) {
1742 dev_err(&pdev
->dev
, "cannot map DIU registers\n");
1747 /* Get the IRQ of the DIU */
1748 data
->irq
= irq_of_parse_and_map(np
, 0);
1751 dev_err(&pdev
->dev
, "could not get DIU IRQ\n");
1755 data
->monitor_port
= monitor_port
;
1757 /* Initialize the dummy Area Descriptor */
1758 data
->dummy_ad
.addr
= cpu_to_le32(DMA_ADDR(data
, dummy_aoi
));
1759 data
->dummy_ad
.pix_fmt
= 0x88882317;
1760 data
->dummy_ad
.src_size_g_alpha
= cpu_to_le32((4 << 12) | 4);
1761 data
->dummy_ad
.aoi_size
= cpu_to_le32((4 << 16) | 2);
1762 data
->dummy_ad
.offset_xyi
= 0;
1763 data
->dummy_ad
.offset_xyd
= 0;
1764 data
->dummy_ad
.next_ad
= 0;
1765 data
->dummy_ad
.paddr
= DMA_ADDR(data
, dummy_ad
);
1768 * Let DIU continue to display splash screen if it was pre-initialized
1769 * by the bootloader; otherwise, clear the display.
1771 if (in_be32(&data
->diu_reg
->diu_mode
) == MFB_MODE0
)
1772 out_be32(&data
->diu_reg
->desc
[0], 0);
1774 out_be32(&data
->diu_reg
->desc
[1], data
->dummy_ad
.paddr
);
1775 out_be32(&data
->diu_reg
->desc
[2], data
->dummy_ad
.paddr
);
1778 * Older versions of U-Boot leave interrupts enabled, so disable
1779 * all of them and clear the status register.
1781 out_be32(&data
->diu_reg
->int_mask
, 0xffffffff);
1782 in_be32(&data
->diu_reg
->int_status
);
1784 ret
= request_irq(data
->irq
, fsl_diu_isr
, 0, "fsl-diu-fb",
1787 dev_err(&pdev
->dev
, "could not claim irq\n");
1791 for (i
= 0; i
< NUM_AOIS
; i
++) {
1792 ret
= install_fb(&data
->fsl_diu_info
[i
]);
1794 dev_err(&pdev
->dev
, "could not register fb %d\n", i
);
1795 free_irq(data
->irq
, data
->diu_reg
);
1800 sysfs_attr_init(&data
->dev_attr
.attr
);
1801 data
->dev_attr
.attr
.name
= "monitor";
1802 data
->dev_attr
.attr
.mode
= S_IRUGO
|S_IWUSR
;
1803 data
->dev_attr
.show
= show_monitor
;
1804 data
->dev_attr
.store
= store_monitor
;
1805 ret
= device_create_file(&pdev
->dev
, &data
->dev_attr
);
1807 dev_err(&pdev
->dev
, "could not create sysfs file %s\n",
1808 data
->dev_attr
.attr
.name
);
1811 dev_set_drvdata(&pdev
->dev
, data
);
1815 for (i
= 0; i
< NUM_AOIS
; i
++)
1816 uninstall_fb(&data
->fsl_diu_info
[i
]);
1818 iounmap(data
->diu_reg
);
1823 static int fsl_diu_remove(struct platform_device
*pdev
)
1825 struct fsl_diu_data
*data
;
1828 data
= dev_get_drvdata(&pdev
->dev
);
1829 disable_lcdc(&data
->fsl_diu_info
[0]);
1831 free_irq(data
->irq
, data
->diu_reg
);
1833 for (i
= 0; i
< NUM_AOIS
; i
++)
1834 uninstall_fb(&data
->fsl_diu_info
[i
]);
1836 iounmap(data
->diu_reg
);
1842 static int __init
fsl_diu_setup(char *options
)
1847 if (!options
|| !*options
)
1850 while ((opt
= strsep(&options
, ",")) != NULL
) {
1853 if (!strncmp(opt
, "monitor=", 8)) {
1854 monitor_port
= fsl_diu_name_to_port(opt
+ 8);
1855 } else if (!strncmp(opt
, "bpp=", 4)) {
1856 if (!strict_strtoul(opt
+ 4, 10, &val
))
1866 static struct of_device_id fsl_diu_match
[] = {
1867 #ifdef CONFIG_PPC_MPC512x
1869 .compatible
= "fsl,mpc5121-diu",
1873 .compatible
= "fsl,diu",
1877 MODULE_DEVICE_TABLE(of
, fsl_diu_match
);
1879 static struct platform_driver fsl_diu_driver
= {
1881 .name
= "fsl-diu-fb",
1882 .owner
= THIS_MODULE
,
1883 .of_match_table
= fsl_diu_match
,
1885 .probe
= fsl_diu_probe
,
1886 .remove
= fsl_diu_remove
,
1887 .suspend
= fsl_diu_suspend
,
1888 .resume
= fsl_diu_resume
,
1891 static int __init
fsl_diu_init(void)
1893 #ifdef CONFIG_NOT_COHERENT_CACHE
1894 struct device_node
*np
;
1902 * For kernel boot options (in 'video=xxxfb:<options>' format)
1904 if (fb_get_options("fslfb", &option
))
1906 fsl_diu_setup(option
);
1908 monitor_port
= fsl_diu_name_to_port(monitor_string
);
1910 pr_info("Freescale Display Interface Unit (DIU) framebuffer driver\n");
1912 #ifdef CONFIG_NOT_COHERENT_CACHE
1913 np
= of_find_node_by_type(NULL
, "cpu");
1915 pr_err("fsl-diu-fb: can't find 'cpu' device node\n");
1919 prop
= of_get_property(np
, "d-cache-size", NULL
);
1921 pr_err("fsl-diu-fb: missing 'd-cache-size' property' "
1928 * Freescale PLRU requires 13/8 times the cache size to do a proper
1929 * displacement flush
1931 coherence_data_size
= be32_to_cpup(prop
) * 13;
1932 coherence_data_size
/= 8;
1934 pr_debug("fsl-diu-fb: coherence data size is %zu bytes\n",
1935 coherence_data_size
);
1937 prop
= of_get_property(np
, "d-cache-line-size", NULL
);
1939 pr_err("fsl-diu-fb: missing 'd-cache-line-size' property' "
1944 d_cache_line_size
= be32_to_cpup(prop
);
1946 pr_debug("fsl-diu-fb: cache lines size is %u bytes\n",
1950 coherence_data
= vmalloc(coherence_data_size
);
1951 if (!coherence_data
) {
1952 pr_err("fsl-diu-fb: could not allocate coherence data "
1953 "(size=%zu)\n", coherence_data_size
);
1959 ret
= platform_driver_register(&fsl_diu_driver
);
1961 pr_err("fsl-diu-fb: failed to register platform driver\n");
1962 #if defined(CONFIG_NOT_COHERENT_CACHE)
1963 vfree(coherence_data
);
1969 static void __exit
fsl_diu_exit(void)
1971 platform_driver_unregister(&fsl_diu_driver
);
1972 #if defined(CONFIG_NOT_COHERENT_CACHE)
1973 vfree(coherence_data
);
1977 module_init(fsl_diu_init
);
1978 module_exit(fsl_diu_exit
);
1980 MODULE_AUTHOR("York Sun <yorksun@freescale.com>");
1981 MODULE_DESCRIPTION("Freescale DIU framebuffer driver");
1982 MODULE_LICENSE("GPL");
1984 module_param_named(mode
, fb_mode
, charp
, 0);
1985 MODULE_PARM_DESC(mode
,
1986 "Specify resolution as \"<xres>x<yres>[-<bpp>][@<refresh>]\" ");
1987 module_param_named(bpp
, default_bpp
, ulong
, 0);
1988 MODULE_PARM_DESC(bpp
, "Specify bit-per-pixel if not specified in 'mode'");
1989 module_param_named(monitor
, monitor_string
, charp
, 0);
1990 MODULE_PARM_DESC(monitor
, "Specify the monitor port "
1991 "(\"dvi\", \"lvds\", or \"dlvds\") if supported by the platform");