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>
34 #include <linux/of_address.h>
35 #include <linux/of_irq.h>
37 #include <sysdev/fsl_soc.h>
38 #include <linux/fsl-diu-fb.h>
41 #define NUM_AOIS 5 /* 1 for plane 0, 2 for planes 1 & 2 each */
43 /* HW cursor parameters */
46 /* INT_STATUS/INT_MASK field descriptions */
47 #define INT_VSYNC 0x01 /* Vsync interrupt */
48 #define INT_VSYNC_WB 0x02 /* Vsync interrupt for write back operation */
49 #define INT_UNDRUN 0x04 /* Under run exception interrupt */
50 #define INT_PARERR 0x08 /* Display parameters error interrupt */
51 #define INT_LS_BF_VS 0x10 /* Lines before vsync. interrupt */
54 * List of supported video modes
56 * The first entry is the default video mode. The remain entries are in
57 * order if increasing resolution and frequency. The 320x240-60 mode is
58 * the initial AOI for the second and third planes.
60 static struct fb_videomode fsl_diu_mode_db
[] = {
72 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
73 .vmode
= FB_VMODE_NONINTERLACED
86 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
87 .vmode
= FB_VMODE_NONINTERLACED
100 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
101 .vmode
= FB_VMODE_NONINTERLACED
114 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
115 .vmode
= FB_VMODE_NONINTERLACED
128 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
129 .vmode
= FB_VMODE_NONINTERLACED
142 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
143 .vmode
= FB_VMODE_NONINTERLACED
156 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
157 .vmode
= FB_VMODE_NONINTERLACED
170 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
171 .vmode
= FB_VMODE_NONINTERLACED
184 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
185 .vmode
= FB_VMODE_NONINTERLACED
198 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
199 .vmode
= FB_VMODE_NONINTERLACED
212 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
213 .vmode
= FB_VMODE_NONINTERLACED
226 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
227 .vmode
= FB_VMODE_NONINTERLACED
240 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
241 .vmode
= FB_VMODE_NONINTERLACED
254 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
255 .vmode
= FB_VMODE_NONINTERLACED
268 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
269 .vmode
= FB_VMODE_NONINTERLACED
282 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
283 .vmode
= FB_VMODE_NONINTERLACED
296 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
297 .vmode
= FB_VMODE_NONINTERLACED
310 .sync
= FB_SYNC_COMP_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
311 .vmode
= FB_VMODE_NONINTERLACED
315 static char *fb_mode
;
316 static unsigned long default_bpp
= 32;
317 static enum fsl_diu_monitor_port monitor_port
;
318 static char *monitor_string
;
320 #if defined(CONFIG_NOT_COHERENT_CACHE)
321 static u8
*coherence_data
;
322 static size_t coherence_data_size
;
323 static unsigned int d_cache_line_size
;
326 static DEFINE_SPINLOCK(diu_lock
);
329 PLANE0
= 0, /* Plane 0, only one AOI that fills the screen */
330 PLANE1_AOI0
, /* Plane 1, first AOI */
331 PLANE1_AOI1
, /* Plane 1, second AOI */
332 PLANE2_AOI0
, /* Plane 2, first AOI */
333 PLANE2_AOI1
, /* Plane 2, second AOI */
337 enum mfb_index index
;
340 unsigned long pseudo_palette
[16];
342 unsigned char g_alpha
;
344 int x_aoi_d
; /* aoi display x offset to physical screen */
345 int y_aoi_d
; /* aoi display y offset to physical screen */
346 struct fsl_diu_data
*parent
;
350 * struct fsl_diu_data - per-DIU data structure
351 * @dma_addr: DMA address of this structure
352 * @fsl_diu_info: fb_info objects, one per AOI
353 * @dev_attr: sysfs structure
355 * @monitor_port: the monitor port this DIU is connected to
356 * @diu_reg: pointer to the DIU hardware registers
357 * @reg_lock: spinlock for register access
358 * @dummy_aoi: video buffer for the 4x4 32-bit dummy AOI
359 * dummy_ad: DIU Area Descriptor for the dummy AOI
360 * @ad[]: Area Descriptors for each real AOI
361 * @gamma: gamma color table
362 * @cursor: hardware cursor data
364 * This data structure must be allocated with 32-byte alignment, so that the
365 * internal fields can be aligned properly.
367 struct fsl_diu_data
{
369 struct fb_info fsl_diu_info
[NUM_AOIS
];
370 struct mfb_info mfb
[NUM_AOIS
];
371 struct device_attribute dev_attr
;
373 enum fsl_diu_monitor_port monitor_port
;
374 struct diu __iomem
*diu_reg
;
376 u8 dummy_aoi
[4 * 4 * 4];
377 struct diu_ad dummy_ad
__aligned(8);
378 struct diu_ad ad
[NUM_AOIS
] __aligned(8);
379 u8 gamma
[256 * 3] __aligned(32);
380 /* It's easier to parse the cursor data as little-endian */
381 __le16 cursor
[MAX_CURS
* MAX_CURS
] __aligned(32);
382 /* Blank cursor data -- used to hide the cursor */
383 __le16 blank_cursor
[MAX_CURS
* MAX_CURS
] __aligned(32);
384 uint8_t edid_data
[EDID_LENGTH
];
388 /* Determine the DMA address of a member of the fsl_diu_data structure */
389 #define DMA_ADDR(p, f) ((p)->dma_addr + offsetof(struct fsl_diu_data, f))
391 static struct mfb_info mfb_template
[] = {
401 .index
= PLANE1_AOI0
,
410 .index
= PLANE1_AOI1
,
419 .index
= PLANE2_AOI0
,
428 .index
= PLANE2_AOI1
,
439 static void __attribute__ ((unused
)) fsl_diu_dump(struct diu __iomem
*hw
)
442 pr_debug("DIU: desc=%08x,%08x,%08x, gamma=%08x pallete=%08x "
443 "cursor=%08x curs_pos=%08x diu_mode=%08x bgnd=%08x "
444 "disp_size=%08x hsyn_para=%08x vsyn_para=%08x syn_pol=%08x "
445 "thresholds=%08x int_mask=%08x plut=%08x\n",
446 hw
->desc
[0], hw
->desc
[1], hw
->desc
[2], hw
->gamma
,
447 hw
->pallete
, hw
->cursor
, hw
->curs_pos
, hw
->diu_mode
,
448 hw
->bgnd
, hw
->disp_size
, hw
->hsyn_para
, hw
->vsyn_para
,
449 hw
->syn_pol
, hw
->thresholds
, hw
->int_mask
, hw
->plut
);
455 * fsl_diu_name_to_port - convert a port name to a monitor port enum
457 * Takes the name of a monitor port ("dvi", "lvds", or "dlvds") and returns
458 * the enum fsl_diu_monitor_port that corresponds to that string.
460 * For compatibility with older versions, a number ("0", "1", or "2") is also
463 * If the string is unknown, DVI is assumed.
465 * If the particular port is not supported by the platform, another port
466 * (platform-specific) is chosen instead.
468 static enum fsl_diu_monitor_port
fsl_diu_name_to_port(const char *s
)
470 enum fsl_diu_monitor_port port
= FSL_DIU_PORT_DVI
;
474 if (!kstrtoul(s
, 10, &val
) && (val
<= 2))
475 port
= (enum fsl_diu_monitor_port
) val
;
476 else if (strncmp(s
, "lvds", 4) == 0)
477 port
= FSL_DIU_PORT_LVDS
;
478 else if (strncmp(s
, "dlvds", 5) == 0)
479 port
= FSL_DIU_PORT_DLVDS
;
482 if (diu_ops
.valid_monitor_port
)
483 port
= diu_ops
.valid_monitor_port(port
);
489 * Workaround for failed writing desc register of planes.
490 * Needed with MPC5121 DIU rev 2.0 silicon.
492 void wr_reg_wa(u32
*reg
, u32 val
)
496 } while (in_be32(reg
) != val
);
499 static void fsl_diu_enable_panel(struct fb_info
*info
)
501 struct mfb_info
*pmfbi
, *cmfbi
, *mfbi
= info
->par
;
502 struct diu_ad
*ad
= mfbi
->ad
;
503 struct fsl_diu_data
*data
= mfbi
->parent
;
504 struct diu __iomem
*hw
= data
->diu_reg
;
506 switch (mfbi
->index
) {
508 wr_reg_wa(&hw
->desc
[0], ad
->paddr
);
511 cmfbi
= &data
->mfb
[2];
512 if (hw
->desc
[1] != ad
->paddr
) { /* AOI0 closed */
513 if (cmfbi
->count
> 0) /* AOI1 open */
515 cpu_to_le32(cmfbi
->ad
->paddr
);
518 wr_reg_wa(&hw
->desc
[1], ad
->paddr
);
522 cmfbi
= &data
->mfb
[4];
523 if (hw
->desc
[2] != ad
->paddr
) { /* AOI0 closed */
524 if (cmfbi
->count
> 0) /* AOI1 open */
526 cpu_to_le32(cmfbi
->ad
->paddr
);
529 wr_reg_wa(&hw
->desc
[2], ad
->paddr
);
533 pmfbi
= &data
->mfb
[1];
535 if (hw
->desc
[1] == data
->dummy_ad
.paddr
)
536 wr_reg_wa(&hw
->desc
[1], ad
->paddr
);
538 pmfbi
->ad
->next_ad
= cpu_to_le32(ad
->paddr
);
541 pmfbi
= &data
->mfb
[3];
543 if (hw
->desc
[2] == data
->dummy_ad
.paddr
)
544 wr_reg_wa(&hw
->desc
[2], ad
->paddr
);
545 else /* AOI0 was open */
546 pmfbi
->ad
->next_ad
= cpu_to_le32(ad
->paddr
);
551 static void fsl_diu_disable_panel(struct fb_info
*info
)
553 struct mfb_info
*pmfbi
, *cmfbi
, *mfbi
= info
->par
;
554 struct diu_ad
*ad
= mfbi
->ad
;
555 struct fsl_diu_data
*data
= mfbi
->parent
;
556 struct diu __iomem
*hw
= data
->diu_reg
;
558 switch (mfbi
->index
) {
560 wr_reg_wa(&hw
->desc
[0], 0);
563 cmfbi
= &data
->mfb
[2];
564 if (cmfbi
->count
> 0) /* AOI1 is open */
565 wr_reg_wa(&hw
->desc
[1], cmfbi
->ad
->paddr
);
566 /* move AOI1 to the first */
567 else /* AOI1 was closed */
568 wr_reg_wa(&hw
->desc
[1], data
->dummy_ad
.paddr
);
572 cmfbi
= &data
->mfb
[4];
573 if (cmfbi
->count
> 0) /* AOI1 is open */
574 wr_reg_wa(&hw
->desc
[2], cmfbi
->ad
->paddr
);
575 /* move AOI1 to the first */
576 else /* AOI1 was closed */
577 wr_reg_wa(&hw
->desc
[2], data
->dummy_ad
.paddr
);
581 pmfbi
= &data
->mfb
[1];
582 if (hw
->desc
[1] != ad
->paddr
) {
583 /* AOI1 is not the first in the chain */
584 if (pmfbi
->count
> 0)
585 /* AOI0 is open, must be the first */
586 pmfbi
->ad
->next_ad
= 0;
587 } else /* AOI1 is the first in the chain */
588 wr_reg_wa(&hw
->desc
[1], data
->dummy_ad
.paddr
);
592 pmfbi
= &data
->mfb
[3];
593 if (hw
->desc
[2] != ad
->paddr
) {
594 /* AOI1 is not the first in the chain */
595 if (pmfbi
->count
> 0)
596 /* AOI0 is open, must be the first */
597 pmfbi
->ad
->next_ad
= 0;
598 } else /* AOI1 is the first in the chain */
599 wr_reg_wa(&hw
->desc
[2], data
->dummy_ad
.paddr
);
605 static void enable_lcdc(struct fb_info
*info
)
607 struct mfb_info
*mfbi
= info
->par
;
608 struct fsl_diu_data
*data
= mfbi
->parent
;
609 struct diu __iomem
*hw
= data
->diu_reg
;
611 out_be32(&hw
->diu_mode
, MFB_MODE1
);
614 static void disable_lcdc(struct fb_info
*info
)
616 struct mfb_info
*mfbi
= info
->par
;
617 struct fsl_diu_data
*data
= mfbi
->parent
;
618 struct diu __iomem
*hw
= data
->diu_reg
;
620 out_be32(&hw
->diu_mode
, 0);
623 static void adjust_aoi_size_position(struct fb_var_screeninfo
*var
,
624 struct fb_info
*info
)
626 struct mfb_info
*lower_aoi_mfbi
, *upper_aoi_mfbi
, *mfbi
= info
->par
;
627 struct fsl_diu_data
*data
= mfbi
->parent
;
628 int available_height
, upper_aoi_bottom
;
629 enum mfb_index index
= mfbi
->index
;
630 int lower_aoi_is_open
, upper_aoi_is_open
;
631 __u32 base_plane_width
, base_plane_height
, upper_aoi_height
;
633 base_plane_width
= data
->fsl_diu_info
[0].var
.xres
;
634 base_plane_height
= data
->fsl_diu_info
[0].var
.yres
;
636 if (mfbi
->x_aoi_d
< 0)
638 if (mfbi
->y_aoi_d
< 0)
642 if (mfbi
->x_aoi_d
!= 0)
644 if (mfbi
->y_aoi_d
!= 0)
649 lower_aoi_mfbi
= data
->fsl_diu_info
[index
+1].par
;
650 lower_aoi_is_open
= lower_aoi_mfbi
->count
> 0 ? 1 : 0;
651 if (var
->xres
> base_plane_width
)
652 var
->xres
= base_plane_width
;
653 if ((mfbi
->x_aoi_d
+ var
->xres
) > base_plane_width
)
654 mfbi
->x_aoi_d
= base_plane_width
- var
->xres
;
656 if (lower_aoi_is_open
)
657 available_height
= lower_aoi_mfbi
->y_aoi_d
;
659 available_height
= base_plane_height
;
660 if (var
->yres
> available_height
)
661 var
->yres
= available_height
;
662 if ((mfbi
->y_aoi_d
+ var
->yres
) > available_height
)
663 mfbi
->y_aoi_d
= available_height
- var
->yres
;
667 upper_aoi_mfbi
= data
->fsl_diu_info
[index
-1].par
;
668 upper_aoi_height
= data
->fsl_diu_info
[index
-1].var
.yres
;
669 upper_aoi_bottom
= upper_aoi_mfbi
->y_aoi_d
+ upper_aoi_height
;
670 upper_aoi_is_open
= upper_aoi_mfbi
->count
> 0 ? 1 : 0;
671 if (var
->xres
> base_plane_width
)
672 var
->xres
= base_plane_width
;
673 if ((mfbi
->x_aoi_d
+ var
->xres
) > base_plane_width
)
674 mfbi
->x_aoi_d
= base_plane_width
- var
->xres
;
675 if (mfbi
->y_aoi_d
< 0)
677 if (upper_aoi_is_open
) {
678 if (mfbi
->y_aoi_d
< upper_aoi_bottom
)
679 mfbi
->y_aoi_d
= upper_aoi_bottom
;
680 available_height
= base_plane_height
683 available_height
= base_plane_height
;
684 if (var
->yres
> available_height
)
685 var
->yres
= available_height
;
686 if ((mfbi
->y_aoi_d
+ var
->yres
) > base_plane_height
)
687 mfbi
->y_aoi_d
= base_plane_height
- var
->yres
;
692 * Checks to see if the hardware supports the state requested by var passed
693 * in. This function does not alter the hardware state! If the var passed in
694 * is slightly off by what the hardware can support then we alter the var
695 * PASSED in to what we can do. If the hardware doesn't support mode change
696 * a -EINVAL will be returned by the upper layers.
698 static int fsl_diu_check_var(struct fb_var_screeninfo
*var
,
699 struct fb_info
*info
)
701 if (var
->xres_virtual
< var
->xres
)
702 var
->xres_virtual
= var
->xres
;
703 if (var
->yres_virtual
< var
->yres
)
704 var
->yres_virtual
= var
->yres
;
706 if (var
->xoffset
< 0)
709 if (var
->yoffset
< 0)
712 if (var
->xoffset
+ info
->var
.xres
> info
->var
.xres_virtual
)
713 var
->xoffset
= info
->var
.xres_virtual
- info
->var
.xres
;
715 if (var
->yoffset
+ info
->var
.yres
> info
->var
.yres_virtual
)
716 var
->yoffset
= info
->var
.yres_virtual
- info
->var
.yres
;
718 if ((var
->bits_per_pixel
!= 32) && (var
->bits_per_pixel
!= 24) &&
719 (var
->bits_per_pixel
!= 16))
720 var
->bits_per_pixel
= default_bpp
;
722 switch (var
->bits_per_pixel
) {
725 var
->red
.offset
= 11;
726 var
->red
.msb_right
= 0;
728 var
->green
.length
= 6;
729 var
->green
.offset
= 5;
730 var
->green
.msb_right
= 0;
732 var
->blue
.length
= 5;
733 var
->blue
.offset
= 0;
734 var
->blue
.msb_right
= 0;
736 var
->transp
.length
= 0;
737 var
->transp
.offset
= 0;
738 var
->transp
.msb_right
= 0;
743 var
->red
.msb_right
= 0;
745 var
->green
.length
= 8;
746 var
->green
.offset
= 8;
747 var
->green
.msb_right
= 0;
749 var
->blue
.length
= 8;
750 var
->blue
.offset
= 16;
751 var
->blue
.msb_right
= 0;
753 var
->transp
.length
= 0;
754 var
->transp
.offset
= 0;
755 var
->transp
.msb_right
= 0;
759 var
->red
.offset
= 16;
760 var
->red
.msb_right
= 0;
762 var
->green
.length
= 8;
763 var
->green
.offset
= 8;
764 var
->green
.msb_right
= 0;
766 var
->blue
.length
= 8;
767 var
->blue
.offset
= 0;
768 var
->blue
.msb_right
= 0;
770 var
->transp
.length
= 8;
771 var
->transp
.offset
= 24;
772 var
->transp
.msb_right
= 0;
781 /* Copy nonstd field to/from sync for fbset usage */
782 var
->sync
|= var
->nonstd
;
783 var
->nonstd
|= var
->sync
;
785 adjust_aoi_size_position(var
, info
);
789 static void set_fix(struct fb_info
*info
)
791 struct fb_fix_screeninfo
*fix
= &info
->fix
;
792 struct fb_var_screeninfo
*var
= &info
->var
;
793 struct mfb_info
*mfbi
= info
->par
;
795 strncpy(fix
->id
, mfbi
->id
, sizeof(fix
->id
));
796 fix
->line_length
= var
->xres_virtual
* var
->bits_per_pixel
/ 8;
797 fix
->type
= FB_TYPE_PACKED_PIXELS
;
798 fix
->accel
= FB_ACCEL_NONE
;
799 fix
->visual
= FB_VISUAL_TRUECOLOR
;
804 static void update_lcdc(struct fb_info
*info
)
806 struct fb_var_screeninfo
*var
= &info
->var
;
807 struct mfb_info
*mfbi
= info
->par
;
808 struct fsl_diu_data
*data
= mfbi
->parent
;
809 struct diu __iomem
*hw
;
811 u8
*gamma_table_base
;
817 if (diu_ops
.set_monitor_port
)
818 diu_ops
.set_monitor_port(data
->monitor_port
);
819 gamma_table_base
= data
->gamma
;
821 /* Prep for DIU init - gamma table, cursor table */
823 for (i
= 0; i
<= 2; i
++)
824 for (j
= 0; j
<= 255; j
++)
825 *gamma_table_base
++ = j
;
827 if (diu_ops
.set_gamma_table
)
828 diu_ops
.set_gamma_table(data
->monitor_port
, data
->gamma
);
832 /* Program DIU registers */
834 out_be32(&hw
->gamma
, DMA_ADDR(data
, gamma
));
836 out_be32(&hw
->bgnd
, 0x007F7F7F); /* Set background to grey */
837 out_be32(&hw
->disp_size
, (var
->yres
<< 16) | var
->xres
);
839 /* Horizontal and vertical configuration register */
840 temp
= var
->left_margin
<< 22 | /* BP_H */
841 var
->hsync_len
<< 11 | /* PW_H */
842 var
->right_margin
; /* FP_H */
844 out_be32(&hw
->hsyn_para
, temp
);
846 temp
= var
->upper_margin
<< 22 | /* BP_V */
847 var
->vsync_len
<< 11 | /* PW_V */
848 var
->lower_margin
; /* FP_V */
850 out_be32(&hw
->vsyn_para
, temp
);
852 diu_ops
.set_pixel_clock(var
->pixclock
);
854 #ifndef CONFIG_PPC_MPC512x
856 * The PLUT register is defined differently on the MPC5121 than it
857 * is on other SOCs. Unfortunately, there's no documentation that
858 * explains how it's supposed to be programmed, so for now, we leave
859 * it at the default value on the MPC5121.
861 * For other SOCs, program it for the highest priority, which will
862 * reduce the chance of underrun. Technically, we should scale the
863 * priority to match the screen resolution, but doing that properly
864 * requires delicate fine-tuning for each use-case.
866 out_be32(&hw
->plut
, 0x01F5F666);
873 static int map_video_memory(struct fb_info
*info
)
875 u32 smem_len
= info
->fix
.line_length
* info
->var
.yres_virtual
;
878 p
= alloc_pages_exact(smem_len
, GFP_DMA
| __GFP_ZERO
);
880 dev_err(info
->dev
, "unable to allocate fb memory\n");
883 mutex_lock(&info
->mm_lock
);
884 info
->screen_base
= p
;
885 info
->fix
.smem_start
= virt_to_phys(info
->screen_base
);
886 info
->fix
.smem_len
= smem_len
;
887 mutex_unlock(&info
->mm_lock
);
888 info
->screen_size
= info
->fix
.smem_len
;
893 static void unmap_video_memory(struct fb_info
*info
)
895 void *p
= info
->screen_base
;
896 size_t l
= info
->fix
.smem_len
;
898 mutex_lock(&info
->mm_lock
);
899 info
->screen_base
= NULL
;
900 info
->fix
.smem_start
= 0;
901 info
->fix
.smem_len
= 0;
902 mutex_unlock(&info
->mm_lock
);
905 free_pages_exact(p
, l
);
909 * Using the fb_var_screeninfo in fb_info we set the aoi of this
910 * particular framebuffer. It is a light version of fsl_diu_set_par.
912 static int fsl_diu_set_aoi(struct fb_info
*info
)
914 struct fb_var_screeninfo
*var
= &info
->var
;
915 struct mfb_info
*mfbi
= info
->par
;
916 struct diu_ad
*ad
= mfbi
->ad
;
918 /* AOI should not be greater than display size */
919 ad
->offset_xyi
= cpu_to_le32((var
->yoffset
<< 16) | var
->xoffset
);
920 ad
->offset_xyd
= cpu_to_le32((mfbi
->y_aoi_d
<< 16) | mfbi
->x_aoi_d
);
925 * fsl_diu_get_pixel_format: return the pixel format for a given color depth
927 * The pixel format is a 32-bit value that determine which bits in each
928 * pixel are to be used for each color. This is the default function used
929 * if the platform does not define its own version.
931 static u32
fsl_diu_get_pixel_format(unsigned int bits_per_pixel
)
933 #define PF_BYTE_F 0x10000000
934 #define PF_ALPHA_C_MASK 0x0E000000
935 #define PF_ALPHA_C_SHIFT 25
936 #define PF_BLUE_C_MASK 0x01800000
937 #define PF_BLUE_C_SHIFT 23
938 #define PF_GREEN_C_MASK 0x00600000
939 #define PF_GREEN_C_SHIFT 21
940 #define PF_RED_C_MASK 0x00180000
941 #define PF_RED_C_SHIFT 19
942 #define PF_PALETTE 0x00040000
943 #define PF_PIXEL_S_MASK 0x00030000
944 #define PF_PIXEL_S_SHIFT 16
945 #define PF_COMP_3_MASK 0x0000F000
946 #define PF_COMP_3_SHIFT 12
947 #define PF_COMP_2_MASK 0x00000F00
948 #define PF_COMP_2_SHIFT 8
949 #define PF_COMP_1_MASK 0x000000F0
950 #define PF_COMP_1_SHIFT 4
951 #define PF_COMP_0_MASK 0x0000000F
952 #define PF_COMP_0_SHIFT 0
954 #define MAKE_PF(alpha, red, green, blue, size, c0, c1, c2, c3) \
955 cpu_to_le32(PF_BYTE_F | (alpha << PF_ALPHA_C_SHIFT) | \
956 (blue << PF_BLUE_C_SHIFT) | (green << PF_GREEN_C_SHIFT) | \
957 (red << PF_RED_C_SHIFT) | (c3 << PF_COMP_3_SHIFT) | \
958 (c2 << PF_COMP_2_SHIFT) | (c1 << PF_COMP_1_SHIFT) | \
959 (c0 << PF_COMP_0_SHIFT) | (size << PF_PIXEL_S_SHIFT))
961 switch (bits_per_pixel
) {
964 return MAKE_PF(3, 2, 1, 0, 3, 8, 8, 8, 8);
967 return MAKE_PF(4, 0, 1, 2, 2, 8, 8, 8, 0);
970 return MAKE_PF(4, 2, 1, 0, 1, 5, 6, 5, 0);
972 pr_err("fsl-diu: unsupported color depth %u\n", bits_per_pixel
);
978 * Copies a cursor image from user space to the proper place in driver
979 * memory so that the hardware can display the cursor image.
981 * Cursor data is represented as a sequence of 'width' bits packed into bytes.
982 * That is, the first 8 bits are in the first byte, the second 8 bits in the
983 * second byte, and so on. Therefore, the each row of the cursor is (width +
984 * 7) / 8 bytes of 'data'
986 * The DIU only supports cursors up to 32x32 (MAX_CURS). We reject cursors
987 * larger than this, so we already know that 'width' <= 32. Therefore, we can
988 * simplify our code by using a 32-bit big-endian integer ("line") to read in
989 * a single line of pixels, and only look at the top 'width' bits of that
992 * This could result in an unaligned 32-bit read. For example, if the cursor
993 * is 24x24, then the first three bytes of 'image' contain the pixel data for
994 * the top line of the cursor. We do a 32-bit read of 'image', but we look
995 * only at the top 24 bits. Then we increment 'image' by 3 bytes. The next
996 * read is unaligned. The only problem is that we might read past the end of
997 * 'image' by 1-3 bytes, but that should not cause any problems.
999 static void fsl_diu_load_cursor_image(struct fb_info
*info
,
1000 const void *image
, uint16_t bg
, uint16_t fg
,
1001 unsigned int width
, unsigned int height
)
1003 struct mfb_info
*mfbi
= info
->par
;
1004 struct fsl_diu_data
*data
= mfbi
->parent
;
1005 __le16
*cursor
= data
->cursor
;
1006 __le16 _fg
= cpu_to_le16(fg
);
1007 __le16 _bg
= cpu_to_le16(bg
);
1010 for (h
= 0; h
< height
; h
++) {
1011 uint32_t mask
= 1 << 31;
1012 uint32_t line
= be32_to_cpup(image
);
1014 for (w
= 0; w
< width
; w
++) {
1015 cursor
[w
] = (line
& mask
) ? _fg
: _bg
;
1020 image
+= DIV_ROUND_UP(width
, 8);
1025 * Set a hardware cursor. The image data for the cursor is passed via the
1028 static int fsl_diu_cursor(struct fb_info
*info
, struct fb_cursor
*cursor
)
1030 struct mfb_info
*mfbi
= info
->par
;
1031 struct fsl_diu_data
*data
= mfbi
->parent
;
1032 struct diu __iomem
*hw
= data
->diu_reg
;
1034 if (cursor
->image
.width
> MAX_CURS
|| cursor
->image
.height
> MAX_CURS
)
1037 /* The cursor size has changed */
1038 if (cursor
->set
& FB_CUR_SETSIZE
) {
1040 * The DIU cursor is a fixed size, so when we get this
1041 * message, instead of resizing the cursor, we just clear
1042 * all the image data, in expectation of new data. However,
1043 * in tests this control does not appear to be normally
1046 memset(data
->cursor
, 0, sizeof(data
->cursor
));
1049 /* The cursor position has changed (cursor->image.dx|dy) */
1050 if (cursor
->set
& FB_CUR_SETPOS
) {
1053 yy
= (cursor
->image
.dy
- info
->var
.yoffset
) & 0x7ff;
1054 xx
= (cursor
->image
.dx
- info
->var
.xoffset
) & 0x7ff;
1056 out_be32(&hw
->curs_pos
, yy
<< 16 | xx
);
1060 * FB_CUR_SETIMAGE - the cursor image has changed
1061 * FB_CUR_SETCMAP - the cursor colors has changed
1062 * FB_CUR_SETSHAPE - the cursor bitmask has changed
1064 if (cursor
->set
& (FB_CUR_SETSHAPE
| FB_CUR_SETCMAP
| FB_CUR_SETIMAGE
)) {
1065 unsigned int image_size
=
1066 DIV_ROUND_UP(cursor
->image
.width
, 8) * cursor
->image
.height
;
1067 unsigned int image_words
=
1068 DIV_ROUND_UP(image_size
, sizeof(uint32_t));
1069 unsigned int bg_idx
= cursor
->image
.bg_color
;
1070 unsigned int fg_idx
= cursor
->image
.fg_color
;
1071 uint8_t buffer
[image_size
];
1072 uint32_t *image
, *source
, *mask
;
1076 if (info
->state
!= FBINFO_STATE_RUNNING
)
1080 * Determine the size of the cursor image data. Normally,
1083 image_size
= DIV_ROUND_UP(cursor
->image
.width
, 8) *
1084 cursor
->image
.height
;
1086 bg
= ((info
->cmap
.red
[bg_idx
] & 0xf8) << 7) |
1087 ((info
->cmap
.green
[bg_idx
] & 0xf8) << 2) |
1088 ((info
->cmap
.blue
[bg_idx
] & 0xf8) >> 3) |
1091 fg
= ((info
->cmap
.red
[fg_idx
] & 0xf8) << 7) |
1092 ((info
->cmap
.green
[fg_idx
] & 0xf8) << 2) |
1093 ((info
->cmap
.blue
[fg_idx
] & 0xf8) >> 3) |
1096 /* Use 32-bit operations on the data to improve performance */
1097 image
= (uint32_t *)buffer
;
1098 source
= (uint32_t *)cursor
->image
.data
;
1099 mask
= (uint32_t *)cursor
->mask
;
1101 if (cursor
->rop
== ROP_XOR
)
1102 for (i
= 0; i
< image_words
; i
++)
1103 image
[i
] = source
[i
] ^ mask
[i
];
1105 for (i
= 0; i
< image_words
; i
++)
1106 image
[i
] = source
[i
] & mask
[i
];
1108 fsl_diu_load_cursor_image(info
, image
, bg
, fg
,
1109 cursor
->image
.width
, cursor
->image
.height
);
1113 * Show or hide the cursor. The cursor data is always stored in the
1114 * 'cursor' memory block, and the actual cursor position is always in
1115 * the DIU's CURS_POS register. To hide the cursor, we redirect the
1116 * CURSOR register to a blank cursor. The show the cursor, we
1117 * redirect the CURSOR register to the real cursor data.
1120 out_be32(&hw
->cursor
, DMA_ADDR(data
, cursor
));
1122 out_be32(&hw
->cursor
, DMA_ADDR(data
, blank_cursor
));
1128 * Using the fb_var_screeninfo in fb_info we set the resolution of this
1129 * particular framebuffer. This function alters the fb_fix_screeninfo stored
1130 * in fb_info. It does not alter var in fb_info since we are using that
1131 * data. This means we depend on the data in var inside fb_info to be
1132 * supported by the hardware. fsl_diu_check_var is always called before
1133 * fsl_diu_set_par to ensure this.
1135 static int fsl_diu_set_par(struct fb_info
*info
)
1138 struct fb_var_screeninfo
*var
= &info
->var
;
1139 struct mfb_info
*mfbi
= info
->par
;
1140 struct fsl_diu_data
*data
= mfbi
->parent
;
1141 struct diu_ad
*ad
= mfbi
->ad
;
1142 struct diu __iomem
*hw
;
1148 len
= info
->var
.yres_virtual
* info
->fix
.line_length
;
1149 /* Alloc & dealloc each time resolution/bpp change */
1150 if (len
!= info
->fix
.smem_len
) {
1151 if (info
->fix
.smem_start
)
1152 unmap_video_memory(info
);
1154 /* Memory allocation for framebuffer */
1155 if (map_video_memory(info
)) {
1156 dev_err(info
->dev
, "unable to allocate fb memory 1\n");
1161 if (diu_ops
.get_pixel_format
)
1162 ad
->pix_fmt
= diu_ops
.get_pixel_format(data
->monitor_port
,
1163 var
->bits_per_pixel
);
1165 ad
->pix_fmt
= fsl_diu_get_pixel_format(var
->bits_per_pixel
);
1167 ad
->addr
= cpu_to_le32(info
->fix
.smem_start
);
1168 ad
->src_size_g_alpha
= cpu_to_le32((var
->yres_virtual
<< 12) |
1169 var
->xres_virtual
) | mfbi
->g_alpha
;
1170 /* AOI should not be greater than display size */
1171 ad
->aoi_size
= cpu_to_le32((var
->yres
<< 16) | var
->xres
);
1172 ad
->offset_xyi
= cpu_to_le32((var
->yoffset
<< 16) | var
->xoffset
);
1173 ad
->offset_xyd
= cpu_to_le32((mfbi
->y_aoi_d
<< 16) | mfbi
->x_aoi_d
);
1175 /* Disable chroma keying function */
1184 if (mfbi
->index
== PLANE0
)
1189 static inline __u32
CNVT_TOHW(__u32 val
, __u32 width
)
1191 return ((val
<< width
) + 0x7FFF - val
) >> 16;
1195 * Set a single color register. The values supplied have a 16 bit magnitude
1196 * which needs to be scaled in this function for the hardware. Things to take
1197 * into consideration are how many color registers, if any, are supported with
1198 * the current color visual. With truecolor mode no color palettes are
1199 * supported. Here a pseudo palette is created which we store the value in
1200 * pseudo_palette in struct fb_info. For pseudocolor mode we have a limited
1203 static int fsl_diu_setcolreg(unsigned int regno
, unsigned int red
,
1204 unsigned int green
, unsigned int blue
,
1205 unsigned int transp
, struct fb_info
*info
)
1210 * If greyscale is true, then we convert the RGB value
1211 * to greyscale no matter what visual we are using.
1213 if (info
->var
.grayscale
)
1214 red
= green
= blue
= (19595 * red
+ 38470 * green
+
1216 switch (info
->fix
.visual
) {
1217 case FB_VISUAL_TRUECOLOR
:
1219 * 16-bit True Colour. We encode the RGB value
1220 * according to the RGB bitfield information.
1223 u32
*pal
= info
->pseudo_palette
;
1226 red
= CNVT_TOHW(red
, info
->var
.red
.length
);
1227 green
= CNVT_TOHW(green
, info
->var
.green
.length
);
1228 blue
= CNVT_TOHW(blue
, info
->var
.blue
.length
);
1229 transp
= CNVT_TOHW(transp
, info
->var
.transp
.length
);
1231 v
= (red
<< info
->var
.red
.offset
) |
1232 (green
<< info
->var
.green
.offset
) |
1233 (blue
<< info
->var
.blue
.offset
) |
1234 (transp
<< info
->var
.transp
.offset
);
1246 * Pan (or wrap, depending on the `vmode' field) the display using the
1247 * 'xoffset' and 'yoffset' fields of the 'var' structure. If the values
1248 * don't fit, return -EINVAL.
1250 static int fsl_diu_pan_display(struct fb_var_screeninfo
*var
,
1251 struct fb_info
*info
)
1253 if ((info
->var
.xoffset
== var
->xoffset
) &&
1254 (info
->var
.yoffset
== var
->yoffset
))
1255 return 0; /* No change, do nothing */
1257 if (var
->xoffset
< 0 || var
->yoffset
< 0
1258 || var
->xoffset
+ info
->var
.xres
> info
->var
.xres_virtual
1259 || var
->yoffset
+ info
->var
.yres
> info
->var
.yres_virtual
)
1262 info
->var
.xoffset
= var
->xoffset
;
1263 info
->var
.yoffset
= var
->yoffset
;
1265 if (var
->vmode
& FB_VMODE_YWRAP
)
1266 info
->var
.vmode
|= FB_VMODE_YWRAP
;
1268 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1270 fsl_diu_set_aoi(info
);
1275 static int fsl_diu_ioctl(struct fb_info
*info
, unsigned int cmd
,
1278 struct mfb_info
*mfbi
= info
->par
;
1279 struct diu_ad
*ad
= mfbi
->ad
;
1280 struct mfb_chroma_key ck
;
1281 unsigned char global_alpha
;
1282 struct aoi_display_offset aoi_d
;
1284 void __user
*buf
= (void __user
*)arg
;
1289 dev_dbg(info
->dev
, "ioctl %08x (dir=%s%s type=%u nr=%u size=%u)\n", cmd
,
1290 _IOC_DIR(cmd
) & _IOC_READ
? "R" : "",
1291 _IOC_DIR(cmd
) & _IOC_WRITE
? "W" : "",
1292 _IOC_TYPE(cmd
), _IOC_NR(cmd
), _IOC_SIZE(cmd
));
1295 case MFB_SET_PIXFMT_OLD
:
1297 "MFB_SET_PIXFMT value of 0x%08x is deprecated.\n",
1298 MFB_SET_PIXFMT_OLD
);
1299 case MFB_SET_PIXFMT
:
1300 if (copy_from_user(&pix_fmt
, buf
, sizeof(pix_fmt
)))
1302 ad
->pix_fmt
= pix_fmt
;
1304 case MFB_GET_PIXFMT_OLD
:
1306 "MFB_GET_PIXFMT value of 0x%08x is deprecated.\n",
1307 MFB_GET_PIXFMT_OLD
);
1308 case MFB_GET_PIXFMT
:
1309 pix_fmt
= ad
->pix_fmt
;
1310 if (copy_to_user(buf
, &pix_fmt
, sizeof(pix_fmt
)))
1314 if (copy_from_user(&aoi_d
, buf
, sizeof(aoi_d
)))
1316 mfbi
->x_aoi_d
= aoi_d
.x_aoi_d
;
1317 mfbi
->y_aoi_d
= aoi_d
.y_aoi_d
;
1318 fsl_diu_check_var(&info
->var
, info
);
1319 fsl_diu_set_aoi(info
);
1322 aoi_d
.x_aoi_d
= mfbi
->x_aoi_d
;
1323 aoi_d
.y_aoi_d
= mfbi
->y_aoi_d
;
1324 if (copy_to_user(buf
, &aoi_d
, sizeof(aoi_d
)))
1328 global_alpha
= mfbi
->g_alpha
;
1329 if (copy_to_user(buf
, &global_alpha
, sizeof(global_alpha
)))
1333 /* set panel information */
1334 if (copy_from_user(&global_alpha
, buf
, sizeof(global_alpha
)))
1336 ad
->src_size_g_alpha
= (ad
->src_size_g_alpha
& (~0xff)) |
1337 (global_alpha
& 0xff);
1338 mfbi
->g_alpha
= global_alpha
;
1340 case MFB_SET_CHROMA_KEY
:
1341 /* set panel winformation */
1342 if (copy_from_user(&ck
, buf
, sizeof(ck
)))
1346 (ck
.red_max
< ck
.red_min
||
1347 ck
.green_max
< ck
.green_min
||
1348 ck
.blue_max
< ck
.blue_min
))
1359 ad
->ckmax_r
= ck
.red_max
;
1360 ad
->ckmax_g
= ck
.green_max
;
1361 ad
->ckmax_b
= ck
.blue_max
;
1362 ad
->ckmin_r
= ck
.red_min
;
1363 ad
->ckmin_g
= ck
.green_min
;
1364 ad
->ckmin_b
= ck
.blue_min
;
1367 #ifdef CONFIG_PPC_MPC512x
1368 case MFB_SET_GAMMA
: {
1369 struct fsl_diu_data
*data
= mfbi
->parent
;
1371 if (copy_from_user(data
->gamma
, buf
, sizeof(data
->gamma
)))
1373 setbits32(&data
->diu_reg
->gamma
, 0); /* Force table reload */
1376 case MFB_GET_GAMMA
: {
1377 struct fsl_diu_data
*data
= mfbi
->parent
;
1379 if (copy_to_user(buf
, data
->gamma
, sizeof(data
->gamma
)))
1385 dev_err(info
->dev
, "unknown ioctl command (0x%08X)\n", cmd
);
1386 return -ENOIOCTLCMD
;
1392 static inline void fsl_diu_enable_interrupts(struct fsl_diu_data
*data
)
1394 u32 int_mask
= INT_UNDRUN
; /* enable underrun detection */
1396 if (IS_ENABLED(CONFIG_NOT_COHERENT_CACHE
))
1397 int_mask
|= INT_VSYNC
; /* enable vertical sync */
1399 clrbits32(&data
->diu_reg
->int_mask
, int_mask
);
1402 /* turn on fb if count == 1
1404 static int fsl_diu_open(struct fb_info
*info
, int user
)
1406 struct mfb_info
*mfbi
= info
->par
;
1409 /* free boot splash memory on first /dev/fb0 open */
1410 if ((mfbi
->index
== PLANE0
) && diu_ops
.release_bootmem
)
1411 diu_ops
.release_bootmem();
1413 spin_lock(&diu_lock
);
1415 if (mfbi
->count
== 1) {
1416 fsl_diu_check_var(&info
->var
, info
);
1417 res
= fsl_diu_set_par(info
);
1421 fsl_diu_enable_interrupts(mfbi
->parent
);
1422 fsl_diu_enable_panel(info
);
1426 spin_unlock(&diu_lock
);
1430 /* turn off fb if count == 0
1432 static int fsl_diu_release(struct fb_info
*info
, int user
)
1434 struct mfb_info
*mfbi
= info
->par
;
1437 spin_lock(&diu_lock
);
1439 if (mfbi
->count
== 0) {
1440 struct fsl_diu_data
*data
= mfbi
->parent
;
1441 bool disable
= true;
1444 /* Disable interrupts only if all AOIs are closed */
1445 for (i
= 0; i
< NUM_AOIS
; i
++) {
1446 struct mfb_info
*mi
= data
->fsl_diu_info
[i
].par
;
1452 out_be32(&data
->diu_reg
->int_mask
, 0xffffffff);
1453 fsl_diu_disable_panel(info
);
1456 spin_unlock(&diu_lock
);
1460 static struct fb_ops fsl_diu_ops
= {
1461 .owner
= THIS_MODULE
,
1462 .fb_check_var
= fsl_diu_check_var
,
1463 .fb_set_par
= fsl_diu_set_par
,
1464 .fb_setcolreg
= fsl_diu_setcolreg
,
1465 .fb_pan_display
= fsl_diu_pan_display
,
1466 .fb_fillrect
= cfb_fillrect
,
1467 .fb_copyarea
= cfb_copyarea
,
1468 .fb_imageblit
= cfb_imageblit
,
1469 .fb_ioctl
= fsl_diu_ioctl
,
1470 .fb_open
= fsl_diu_open
,
1471 .fb_release
= fsl_diu_release
,
1472 .fb_cursor
= fsl_diu_cursor
,
1475 static int install_fb(struct fb_info
*info
)
1478 struct mfb_info
*mfbi
= info
->par
;
1479 struct fsl_diu_data
*data
= mfbi
->parent
;
1480 const char *aoi_mode
, *init_aoi_mode
= "320x240";
1481 struct fb_videomode
*db
= fsl_diu_mode_db
;
1482 unsigned int dbsize
= ARRAY_SIZE(fsl_diu_mode_db
);
1483 int has_default_mode
= 1;
1485 info
->var
.activate
= FB_ACTIVATE_NOW
;
1486 info
->fbops
= &fsl_diu_ops
;
1487 info
->flags
= FBINFO_DEFAULT
| FBINFO_VIRTFB
| FBINFO_PARTIAL_PAN_OK
|
1489 info
->pseudo_palette
= mfbi
->pseudo_palette
;
1491 rc
= fb_alloc_cmap(&info
->cmap
, 16, 0);
1495 if (mfbi
->index
== PLANE0
) {
1496 if (data
->has_edid
) {
1497 /* Now build modedb from EDID */
1498 fb_edid_to_monspecs(data
->edid_data
, &info
->monspecs
);
1499 fb_videomode_to_modelist(info
->monspecs
.modedb
,
1500 info
->monspecs
.modedb_len
,
1502 db
= info
->monspecs
.modedb
;
1503 dbsize
= info
->monspecs
.modedb_len
;
1507 aoi_mode
= init_aoi_mode
;
1509 rc
= fb_find_mode(&info
->var
, info
, aoi_mode
, db
, dbsize
, NULL
,
1513 * For plane 0 we continue and look into
1514 * driver's internal modedb.
1516 if ((mfbi
->index
== PLANE0
) && data
->has_edid
)
1517 has_default_mode
= 0;
1522 if (!has_default_mode
) {
1523 rc
= fb_find_mode(&info
->var
, info
, aoi_mode
, fsl_diu_mode_db
,
1524 ARRAY_SIZE(fsl_diu_mode_db
), NULL
, default_bpp
);
1526 has_default_mode
= 1;
1529 /* Still not found, use preferred mode from database if any */
1530 if (!has_default_mode
&& info
->monspecs
.modedb
) {
1531 struct fb_monspecs
*specs
= &info
->monspecs
;
1532 struct fb_videomode
*modedb
= &specs
->modedb
[0];
1535 * Get preferred timing. If not found,
1536 * first mode in database will be used.
1538 if (specs
->misc
& FB_MISC_1ST_DETAIL
) {
1541 for (i
= 0; i
< specs
->modedb_len
; i
++) {
1542 if (specs
->modedb
[i
].flag
& FB_MODE_IS_FIRST
) {
1543 modedb
= &specs
->modedb
[i
];
1549 info
->var
.bits_per_pixel
= default_bpp
;
1550 fb_videomode_to_var(&info
->var
, modedb
);
1553 if (fsl_diu_check_var(&info
->var
, info
)) {
1554 dev_err(info
->dev
, "fsl_diu_check_var failed\n");
1555 unmap_video_memory(info
);
1556 fb_dealloc_cmap(&info
->cmap
);
1560 if (register_framebuffer(info
) < 0) {
1561 dev_err(info
->dev
, "register_framebuffer failed\n");
1562 unmap_video_memory(info
);
1563 fb_dealloc_cmap(&info
->cmap
);
1567 mfbi
->registered
= 1;
1568 dev_info(info
->dev
, "%s registered successfully\n", mfbi
->id
);
1573 static void uninstall_fb(struct fb_info
*info
)
1575 struct mfb_info
*mfbi
= info
->par
;
1577 if (!mfbi
->registered
)
1580 unregister_framebuffer(info
);
1581 unmap_video_memory(info
);
1583 fb_dealloc_cmap(&info
->cmap
);
1585 mfbi
->registered
= 0;
1588 static irqreturn_t
fsl_diu_isr(int irq
, void *dev_id
)
1590 struct diu __iomem
*hw
= dev_id
;
1591 uint32_t status
= in_be32(&hw
->int_status
);
1594 /* This is the workaround for underrun */
1595 if (status
& INT_UNDRUN
) {
1596 out_be32(&hw
->diu_mode
, 0);
1598 out_be32(&hw
->diu_mode
, 1);
1600 #if defined(CONFIG_NOT_COHERENT_CACHE)
1601 else if (status
& INT_VSYNC
) {
1604 for (i
= 0; i
< coherence_data_size
;
1605 i
+= d_cache_line_size
)
1606 __asm__
__volatile__ (
1608 ::[input
]"r"(&coherence_data
[i
]));
1618 * Power management hooks. Note that we won't be called from IRQ context,
1619 * unlike the blank functions above, so we may sleep.
1621 static int fsl_diu_suspend(struct platform_device
*ofdev
, pm_message_t state
)
1623 struct fsl_diu_data
*data
;
1625 data
= dev_get_drvdata(&ofdev
->dev
);
1626 disable_lcdc(data
->fsl_diu_info
);
1631 static int fsl_diu_resume(struct platform_device
*ofdev
)
1633 struct fsl_diu_data
*data
;
1636 data
= dev_get_drvdata(&ofdev
->dev
);
1638 fsl_diu_enable_interrupts(data
);
1639 update_lcdc(data
->fsl_diu_info
);
1640 for (i
= 0; i
< NUM_AOIS
; i
++) {
1641 if (data
->mfb
[i
].count
)
1642 fsl_diu_enable_panel(&data
->fsl_diu_info
[i
]);
1649 #define fsl_diu_suspend NULL
1650 #define fsl_diu_resume NULL
1651 #endif /* CONFIG_PM */
1653 static ssize_t
store_monitor(struct device
*device
,
1654 struct device_attribute
*attr
, const char *buf
, size_t count
)
1656 enum fsl_diu_monitor_port old_monitor_port
;
1657 struct fsl_diu_data
*data
=
1658 container_of(attr
, struct fsl_diu_data
, dev_attr
);
1660 old_monitor_port
= data
->monitor_port
;
1661 data
->monitor_port
= fsl_diu_name_to_port(buf
);
1663 if (old_monitor_port
!= data
->monitor_port
) {
1664 /* All AOIs need adjust pixel format
1665 * fsl_diu_set_par only change the pixsel format here
1666 * unlikely to fail. */
1669 for (i
=0; i
< NUM_AOIS
; i
++)
1670 fsl_diu_set_par(&data
->fsl_diu_info
[i
]);
1675 static ssize_t
show_monitor(struct device
*device
,
1676 struct device_attribute
*attr
, char *buf
)
1678 struct fsl_diu_data
*data
=
1679 container_of(attr
, struct fsl_diu_data
, dev_attr
);
1681 switch (data
->monitor_port
) {
1682 case FSL_DIU_PORT_DVI
:
1683 return sprintf(buf
, "DVI\n");
1684 case FSL_DIU_PORT_LVDS
:
1685 return sprintf(buf
, "Single-link LVDS\n");
1686 case FSL_DIU_PORT_DLVDS
:
1687 return sprintf(buf
, "Dual-link LVDS\n");
1693 static int fsl_diu_probe(struct platform_device
*pdev
)
1695 struct device_node
*np
= pdev
->dev
.of_node
;
1696 struct mfb_info
*mfbi
;
1697 struct fsl_diu_data
*data
;
1698 dma_addr_t dma_addr
; /* DMA addr of fsl_diu_data struct */
1703 data
= dmam_alloc_coherent(&pdev
->dev
, sizeof(struct fsl_diu_data
),
1704 &dma_addr
, GFP_DMA
| __GFP_ZERO
);
1707 data
->dma_addr
= dma_addr
;
1710 * dma_alloc_coherent() uses a page allocator, so the address is
1711 * always page-aligned. We need the memory to be 32-byte aligned,
1712 * so that's good. However, if one day the allocator changes, we
1713 * need to catch that. It's not worth the effort to handle unaligned
1714 * alloctions now because it's highly unlikely to ever be a problem.
1716 if ((unsigned long)data
& 31) {
1717 dev_err(&pdev
->dev
, "misaligned allocation");
1722 spin_lock_init(&data
->reg_lock
);
1724 for (i
= 0; i
< NUM_AOIS
; i
++) {
1725 struct fb_info
*info
= &data
->fsl_diu_info
[i
];
1727 info
->device
= &pdev
->dev
;
1728 info
->par
= &data
->mfb
[i
];
1731 * We store the physical address of the AD in the reserved
1732 * 'paddr' field of the AD itself.
1734 data
->ad
[i
].paddr
= DMA_ADDR(data
, ad
[i
]);
1736 info
->fix
.smem_start
= 0;
1738 /* Initialize the AOI data structure */
1740 memcpy(mfbi
, &mfb_template
[i
], sizeof(struct mfb_info
));
1741 mfbi
->parent
= data
;
1742 mfbi
->ad
= &data
->ad
[i
];
1745 /* Get the EDID data from the device tree, if present */
1746 prop
= of_get_property(np
, "edid", &ret
);
1747 if (prop
&& ret
== EDID_LENGTH
) {
1748 memcpy(data
->edid_data
, prop
, EDID_LENGTH
);
1749 data
->has_edid
= true;
1752 data
->diu_reg
= of_iomap(np
, 0);
1753 if (!data
->diu_reg
) {
1754 dev_err(&pdev
->dev
, "cannot map DIU registers\n");
1759 /* Get the IRQ of the DIU */
1760 data
->irq
= irq_of_parse_and_map(np
, 0);
1763 dev_err(&pdev
->dev
, "could not get DIU IRQ\n");
1767 data
->monitor_port
= monitor_port
;
1769 /* Initialize the dummy Area Descriptor */
1770 data
->dummy_ad
.addr
= cpu_to_le32(DMA_ADDR(data
, dummy_aoi
));
1771 data
->dummy_ad
.pix_fmt
= 0x88882317;
1772 data
->dummy_ad
.src_size_g_alpha
= cpu_to_le32((4 << 12) | 4);
1773 data
->dummy_ad
.aoi_size
= cpu_to_le32((4 << 16) | 2);
1774 data
->dummy_ad
.offset_xyi
= 0;
1775 data
->dummy_ad
.offset_xyd
= 0;
1776 data
->dummy_ad
.next_ad
= 0;
1777 data
->dummy_ad
.paddr
= DMA_ADDR(data
, dummy_ad
);
1780 * Let DIU continue to display splash screen if it was pre-initialized
1781 * by the bootloader; otherwise, clear the display.
1783 if (in_be32(&data
->diu_reg
->diu_mode
) == MFB_MODE0
)
1784 out_be32(&data
->diu_reg
->desc
[0], 0);
1786 out_be32(&data
->diu_reg
->desc
[1], data
->dummy_ad
.paddr
);
1787 out_be32(&data
->diu_reg
->desc
[2], data
->dummy_ad
.paddr
);
1790 * Older versions of U-Boot leave interrupts enabled, so disable
1791 * all of them and clear the status register.
1793 out_be32(&data
->diu_reg
->int_mask
, 0xffffffff);
1794 in_be32(&data
->diu_reg
->int_status
);
1796 ret
= request_irq(data
->irq
, fsl_diu_isr
, 0, "fsl-diu-fb",
1799 dev_err(&pdev
->dev
, "could not claim irq\n");
1803 for (i
= 0; i
< NUM_AOIS
; i
++) {
1804 ret
= install_fb(&data
->fsl_diu_info
[i
]);
1806 dev_err(&pdev
->dev
, "could not register fb %d\n", i
);
1807 free_irq(data
->irq
, data
->diu_reg
);
1812 sysfs_attr_init(&data
->dev_attr
.attr
);
1813 data
->dev_attr
.attr
.name
= "monitor";
1814 data
->dev_attr
.attr
.mode
= S_IRUGO
|S_IWUSR
;
1815 data
->dev_attr
.show
= show_monitor
;
1816 data
->dev_attr
.store
= store_monitor
;
1817 ret
= device_create_file(&pdev
->dev
, &data
->dev_attr
);
1819 dev_err(&pdev
->dev
, "could not create sysfs file %s\n",
1820 data
->dev_attr
.attr
.name
);
1823 dev_set_drvdata(&pdev
->dev
, data
);
1827 for (i
= 0; i
< NUM_AOIS
; i
++)
1828 uninstall_fb(&data
->fsl_diu_info
[i
]);
1830 iounmap(data
->diu_reg
);
1835 static int fsl_diu_remove(struct platform_device
*pdev
)
1837 struct fsl_diu_data
*data
;
1840 data
= dev_get_drvdata(&pdev
->dev
);
1841 disable_lcdc(&data
->fsl_diu_info
[0]);
1843 free_irq(data
->irq
, data
->diu_reg
);
1845 for (i
= 0; i
< NUM_AOIS
; i
++)
1846 uninstall_fb(&data
->fsl_diu_info
[i
]);
1848 iounmap(data
->diu_reg
);
1854 static int __init
fsl_diu_setup(char *options
)
1859 if (!options
|| !*options
)
1862 while ((opt
= strsep(&options
, ",")) != NULL
) {
1865 if (!strncmp(opt
, "monitor=", 8)) {
1866 monitor_port
= fsl_diu_name_to_port(opt
+ 8);
1867 } else if (!strncmp(opt
, "bpp=", 4)) {
1868 if (!kstrtoul(opt
+ 4, 10, &val
))
1878 static struct of_device_id fsl_diu_match
[] = {
1879 #ifdef CONFIG_PPC_MPC512x
1881 .compatible
= "fsl,mpc5121-diu",
1885 .compatible
= "fsl,diu",
1889 MODULE_DEVICE_TABLE(of
, fsl_diu_match
);
1891 static struct platform_driver fsl_diu_driver
= {
1893 .name
= "fsl-diu-fb",
1894 .of_match_table
= fsl_diu_match
,
1896 .probe
= fsl_diu_probe
,
1897 .remove
= fsl_diu_remove
,
1898 .suspend
= fsl_diu_suspend
,
1899 .resume
= fsl_diu_resume
,
1902 static int __init
fsl_diu_init(void)
1904 #ifdef CONFIG_NOT_COHERENT_CACHE
1905 struct device_node
*np
;
1913 * For kernel boot options (in 'video=xxxfb:<options>' format)
1915 if (fb_get_options("fslfb", &option
))
1917 fsl_diu_setup(option
);
1919 monitor_port
= fsl_diu_name_to_port(monitor_string
);
1923 * Must to verify set_pixel_clock. If not implement on platform,
1924 * then that means that there is no platform support for the DIU.
1926 if (!diu_ops
.set_pixel_clock
)
1929 pr_info("Freescale Display Interface Unit (DIU) framebuffer driver\n");
1931 #ifdef CONFIG_NOT_COHERENT_CACHE
1932 np
= of_find_node_by_type(NULL
, "cpu");
1934 pr_err("fsl-diu-fb: can't find 'cpu' device node\n");
1938 prop
= of_get_property(np
, "d-cache-size", NULL
);
1940 pr_err("fsl-diu-fb: missing 'd-cache-size' property' "
1947 * Freescale PLRU requires 13/8 times the cache size to do a proper
1948 * displacement flush
1950 coherence_data_size
= be32_to_cpup(prop
) * 13;
1951 coherence_data_size
/= 8;
1953 pr_debug("fsl-diu-fb: coherence data size is %zu bytes\n",
1954 coherence_data_size
);
1956 prop
= of_get_property(np
, "d-cache-line-size", NULL
);
1958 pr_err("fsl-diu-fb: missing 'd-cache-line-size' property' "
1963 d_cache_line_size
= be32_to_cpup(prop
);
1965 pr_debug("fsl-diu-fb: cache lines size is %u bytes\n",
1969 coherence_data
= vmalloc(coherence_data_size
);
1970 if (!coherence_data
) {
1971 pr_err("fsl-diu-fb: could not allocate coherence data "
1972 "(size=%zu)\n", coherence_data_size
);
1978 ret
= platform_driver_register(&fsl_diu_driver
);
1980 pr_err("fsl-diu-fb: failed to register platform driver\n");
1981 #if defined(CONFIG_NOT_COHERENT_CACHE)
1982 vfree(coherence_data
);
1988 static void __exit
fsl_diu_exit(void)
1990 platform_driver_unregister(&fsl_diu_driver
);
1991 #if defined(CONFIG_NOT_COHERENT_CACHE)
1992 vfree(coherence_data
);
1996 module_init(fsl_diu_init
);
1997 module_exit(fsl_diu_exit
);
1999 MODULE_AUTHOR("York Sun <yorksun@freescale.com>");
2000 MODULE_DESCRIPTION("Freescale DIU framebuffer driver");
2001 MODULE_LICENSE("GPL");
2003 module_param_named(mode
, fb_mode
, charp
, 0);
2004 MODULE_PARM_DESC(mode
,
2005 "Specify resolution as \"<xres>x<yres>[-<bpp>][@<refresh>]\" ");
2006 module_param_named(bpp
, default_bpp
, ulong
, 0);
2007 MODULE_PARM_DESC(bpp
, "Specify bit-per-pixel if not specified in 'mode'");
2008 module_param_named(monitor
, monitor_string
, charp
, 0);
2009 MODULE_PARM_DESC(monitor
, "Specify the monitor port "
2010 "(\"dvi\", \"lvds\", or \"dlvds\") if supported by the platform");