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 __devinitdata 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];
341 unsigned char g_alpha
;
343 int x_aoi_d
; /* aoi display x offset to physical screen */
344 int y_aoi_d
; /* aoi display y offset to physical screen */
345 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 u8 cursor
[MAX_CURS
* MAX_CURS
* 2] __aligned(32);
383 /* Determine the DMA address of a member of the fsl_diu_data structure */
384 #define DMA_ADDR(p, f) ((p)->dma_addr + offsetof(struct fsl_diu_data, f))
386 static struct mfb_info mfb_template
[] = {
396 .index
= PLANE1_AOI0
,
405 .index
= PLANE1_AOI1
,
414 .index
= PLANE2_AOI0
,
423 .index
= PLANE2_AOI1
,
434 * fsl_diu_name_to_port - convert a port name to a monitor port enum
436 * Takes the name of a monitor port ("dvi", "lvds", or "dlvds") and returns
437 * the enum fsl_diu_monitor_port that corresponds to that string.
439 * For compatibility with older versions, a number ("0", "1", or "2") is also
442 * If the string is unknown, DVI is assumed.
444 * If the particular port is not supported by the platform, another port
445 * (platform-specific) is chosen instead.
447 static enum fsl_diu_monitor_port
fsl_diu_name_to_port(const char *s
)
449 enum fsl_diu_monitor_port port
= FSL_DIU_PORT_DVI
;
453 if (!strict_strtoul(s
, 10, &val
) && (val
<= 2))
454 port
= (enum fsl_diu_monitor_port
) val
;
455 else if (strncmp(s
, "lvds", 4) == 0)
456 port
= FSL_DIU_PORT_LVDS
;
457 else if (strncmp(s
, "dlvds", 5) == 0)
458 port
= FSL_DIU_PORT_DLVDS
;
461 return diu_ops
.valid_monitor_port(port
);
465 * Workaround for failed writing desc register of planes.
466 * Needed with MPC5121 DIU rev 2.0 silicon.
468 void wr_reg_wa(u32
*reg
, u32 val
)
472 } while (in_be32(reg
) != val
);
475 static void fsl_diu_enable_panel(struct fb_info
*info
)
477 struct mfb_info
*pmfbi
, *cmfbi
, *mfbi
= info
->par
;
478 struct diu_ad
*ad
= mfbi
->ad
;
479 struct fsl_diu_data
*data
= mfbi
->parent
;
480 struct diu __iomem
*hw
= data
->diu_reg
;
482 switch (mfbi
->index
) {
484 if (hw
->desc
[0] != ad
->paddr
)
485 wr_reg_wa(&hw
->desc
[0], ad
->paddr
);
488 cmfbi
= &data
->mfb
[2];
489 if (hw
->desc
[1] != ad
->paddr
) { /* AOI0 closed */
490 if (cmfbi
->count
> 0) /* AOI1 open */
492 cpu_to_le32(cmfbi
->ad
->paddr
);
495 wr_reg_wa(&hw
->desc
[1], ad
->paddr
);
499 cmfbi
= &data
->mfb
[4];
500 if (hw
->desc
[2] != ad
->paddr
) { /* AOI0 closed */
501 if (cmfbi
->count
> 0) /* AOI1 open */
503 cpu_to_le32(cmfbi
->ad
->paddr
);
506 wr_reg_wa(&hw
->desc
[2], ad
->paddr
);
510 pmfbi
= &data
->mfb
[1];
512 if (hw
->desc
[1] == data
->dummy_ad
.paddr
)
513 wr_reg_wa(&hw
->desc
[1], ad
->paddr
);
515 pmfbi
->ad
->next_ad
= cpu_to_le32(ad
->paddr
);
518 pmfbi
= &data
->mfb
[3];
520 if (hw
->desc
[2] == data
->dummy_ad
.paddr
)
521 wr_reg_wa(&hw
->desc
[2], ad
->paddr
);
522 else /* AOI0 was open */
523 pmfbi
->ad
->next_ad
= cpu_to_le32(ad
->paddr
);
528 static void fsl_diu_disable_panel(struct fb_info
*info
)
530 struct mfb_info
*pmfbi
, *cmfbi
, *mfbi
= info
->par
;
531 struct diu_ad
*ad
= mfbi
->ad
;
532 struct fsl_diu_data
*data
= mfbi
->parent
;
533 struct diu __iomem
*hw
= data
->diu_reg
;
535 switch (mfbi
->index
) {
537 if (hw
->desc
[0] != data
->dummy_ad
.paddr
)
538 wr_reg_wa(&hw
->desc
[0], data
->dummy_ad
.paddr
);
541 cmfbi
= &data
->mfb
[2];
542 if (cmfbi
->count
> 0) /* AOI1 is open */
543 wr_reg_wa(&hw
->desc
[1], cmfbi
->ad
->paddr
);
544 /* move AOI1 to the first */
545 else /* AOI1 was closed */
546 wr_reg_wa(&hw
->desc
[1], data
->dummy_ad
.paddr
);
550 cmfbi
= &data
->mfb
[4];
551 if (cmfbi
->count
> 0) /* AOI1 is open */
552 wr_reg_wa(&hw
->desc
[2], cmfbi
->ad
->paddr
);
553 /* move AOI1 to the first */
554 else /* AOI1 was closed */
555 wr_reg_wa(&hw
->desc
[2], data
->dummy_ad
.paddr
);
559 pmfbi
= &data
->mfb
[1];
560 if (hw
->desc
[1] != ad
->paddr
) {
561 /* AOI1 is not the first in the chain */
562 if (pmfbi
->count
> 0)
563 /* AOI0 is open, must be the first */
564 pmfbi
->ad
->next_ad
= 0;
565 } else /* AOI1 is the first in the chain */
566 wr_reg_wa(&hw
->desc
[1], data
->dummy_ad
.paddr
);
570 pmfbi
= &data
->mfb
[3];
571 if (hw
->desc
[2] != ad
->paddr
) {
572 /* AOI1 is not the first in the chain */
573 if (pmfbi
->count
> 0)
574 /* AOI0 is open, must be the first */
575 pmfbi
->ad
->next_ad
= 0;
576 } else /* AOI1 is the first in the chain */
577 wr_reg_wa(&hw
->desc
[2], data
->dummy_ad
.paddr
);
583 static void enable_lcdc(struct fb_info
*info
)
585 struct mfb_info
*mfbi
= info
->par
;
586 struct fsl_diu_data
*data
= mfbi
->parent
;
587 struct diu __iomem
*hw
= data
->diu_reg
;
589 out_be32(&hw
->diu_mode
, MFB_MODE1
);
592 static void disable_lcdc(struct fb_info
*info
)
594 struct mfb_info
*mfbi
= info
->par
;
595 struct fsl_diu_data
*data
= mfbi
->parent
;
596 struct diu __iomem
*hw
= data
->diu_reg
;
598 out_be32(&hw
->diu_mode
, 0);
601 static void adjust_aoi_size_position(struct fb_var_screeninfo
*var
,
602 struct fb_info
*info
)
604 struct mfb_info
*lower_aoi_mfbi
, *upper_aoi_mfbi
, *mfbi
= info
->par
;
605 struct fsl_diu_data
*data
= mfbi
->parent
;
606 int available_height
, upper_aoi_bottom
;
607 enum mfb_index index
= mfbi
->index
;
608 int lower_aoi_is_open
, upper_aoi_is_open
;
609 __u32 base_plane_width
, base_plane_height
, upper_aoi_height
;
611 base_plane_width
= data
->fsl_diu_info
[0].var
.xres
;
612 base_plane_height
= data
->fsl_diu_info
[0].var
.yres
;
614 if (mfbi
->x_aoi_d
< 0)
616 if (mfbi
->y_aoi_d
< 0)
620 if (mfbi
->x_aoi_d
!= 0)
622 if (mfbi
->y_aoi_d
!= 0)
627 lower_aoi_mfbi
= data
->fsl_diu_info
[index
+1].par
;
628 lower_aoi_is_open
= lower_aoi_mfbi
->count
> 0 ? 1 : 0;
629 if (var
->xres
> base_plane_width
)
630 var
->xres
= base_plane_width
;
631 if ((mfbi
->x_aoi_d
+ var
->xres
) > base_plane_width
)
632 mfbi
->x_aoi_d
= base_plane_width
- var
->xres
;
634 if (lower_aoi_is_open
)
635 available_height
= lower_aoi_mfbi
->y_aoi_d
;
637 available_height
= base_plane_height
;
638 if (var
->yres
> available_height
)
639 var
->yres
= available_height
;
640 if ((mfbi
->y_aoi_d
+ var
->yres
) > available_height
)
641 mfbi
->y_aoi_d
= available_height
- var
->yres
;
645 upper_aoi_mfbi
= data
->fsl_diu_info
[index
-1].par
;
646 upper_aoi_height
= data
->fsl_diu_info
[index
-1].var
.yres
;
647 upper_aoi_bottom
= upper_aoi_mfbi
->y_aoi_d
+ upper_aoi_height
;
648 upper_aoi_is_open
= upper_aoi_mfbi
->count
> 0 ? 1 : 0;
649 if (var
->xres
> base_plane_width
)
650 var
->xres
= base_plane_width
;
651 if ((mfbi
->x_aoi_d
+ var
->xres
) > base_plane_width
)
652 mfbi
->x_aoi_d
= base_plane_width
- var
->xres
;
653 if (mfbi
->y_aoi_d
< 0)
655 if (upper_aoi_is_open
) {
656 if (mfbi
->y_aoi_d
< upper_aoi_bottom
)
657 mfbi
->y_aoi_d
= upper_aoi_bottom
;
658 available_height
= base_plane_height
661 available_height
= base_plane_height
;
662 if (var
->yres
> available_height
)
663 var
->yres
= available_height
;
664 if ((mfbi
->y_aoi_d
+ var
->yres
) > base_plane_height
)
665 mfbi
->y_aoi_d
= base_plane_height
- var
->yres
;
670 * Checks to see if the hardware supports the state requested by var passed
671 * in. This function does not alter the hardware state! If the var passed in
672 * is slightly off by what the hardware can support then we alter the var
673 * PASSED in to what we can do. If the hardware doesn't support mode change
674 * a -EINVAL will be returned by the upper layers.
676 static int fsl_diu_check_var(struct fb_var_screeninfo
*var
,
677 struct fb_info
*info
)
679 if (var
->xres_virtual
< var
->xres
)
680 var
->xres_virtual
= var
->xres
;
681 if (var
->yres_virtual
< var
->yres
)
682 var
->yres_virtual
= var
->yres
;
684 if (var
->xoffset
< 0)
687 if (var
->yoffset
< 0)
690 if (var
->xoffset
+ info
->var
.xres
> info
->var
.xres_virtual
)
691 var
->xoffset
= info
->var
.xres_virtual
- info
->var
.xres
;
693 if (var
->yoffset
+ info
->var
.yres
> info
->var
.yres_virtual
)
694 var
->yoffset
= info
->var
.yres_virtual
- info
->var
.yres
;
696 if ((var
->bits_per_pixel
!= 32) && (var
->bits_per_pixel
!= 24) &&
697 (var
->bits_per_pixel
!= 16))
698 var
->bits_per_pixel
= default_bpp
;
700 switch (var
->bits_per_pixel
) {
703 var
->red
.offset
= 11;
704 var
->red
.msb_right
= 0;
706 var
->green
.length
= 6;
707 var
->green
.offset
= 5;
708 var
->green
.msb_right
= 0;
710 var
->blue
.length
= 5;
711 var
->blue
.offset
= 0;
712 var
->blue
.msb_right
= 0;
714 var
->transp
.length
= 0;
715 var
->transp
.offset
= 0;
716 var
->transp
.msb_right
= 0;
721 var
->red
.msb_right
= 0;
723 var
->green
.length
= 8;
724 var
->green
.offset
= 8;
725 var
->green
.msb_right
= 0;
727 var
->blue
.length
= 8;
728 var
->blue
.offset
= 16;
729 var
->blue
.msb_right
= 0;
731 var
->transp
.length
= 0;
732 var
->transp
.offset
= 0;
733 var
->transp
.msb_right
= 0;
737 var
->red
.offset
= 16;
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
= 0;
746 var
->blue
.msb_right
= 0;
748 var
->transp
.length
= 8;
749 var
->transp
.offset
= 24;
750 var
->transp
.msb_right
= 0;
759 /* Copy nonstd field to/from sync for fbset usage */
760 var
->sync
|= var
->nonstd
;
761 var
->nonstd
|= var
->sync
;
763 adjust_aoi_size_position(var
, info
);
767 static void set_fix(struct fb_info
*info
)
769 struct fb_fix_screeninfo
*fix
= &info
->fix
;
770 struct fb_var_screeninfo
*var
= &info
->var
;
771 struct mfb_info
*mfbi
= info
->par
;
773 strncpy(fix
->id
, mfbi
->id
, sizeof(fix
->id
));
774 fix
->line_length
= var
->xres_virtual
* var
->bits_per_pixel
/ 8;
775 fix
->type
= FB_TYPE_PACKED_PIXELS
;
776 fix
->accel
= FB_ACCEL_NONE
;
777 fix
->visual
= FB_VISUAL_TRUECOLOR
;
782 static void update_lcdc(struct fb_info
*info
)
784 struct fb_var_screeninfo
*var
= &info
->var
;
785 struct mfb_info
*mfbi
= info
->par
;
786 struct fsl_diu_data
*data
= mfbi
->parent
;
787 struct diu __iomem
*hw
;
789 u8
*gamma_table_base
;
795 diu_ops
.set_monitor_port(data
->monitor_port
);
796 gamma_table_base
= data
->gamma
;
798 /* Prep for DIU init - gamma table, cursor table */
800 for (i
= 0; i
<= 2; i
++)
801 for (j
= 0; j
<= 255; j
++)
802 *gamma_table_base
++ = j
;
804 if (diu_ops
.set_gamma_table
)
805 diu_ops
.set_gamma_table(data
->monitor_port
, data
->gamma
);
809 /* Program DIU registers */
811 out_be32(&hw
->gamma
, DMA_ADDR(data
, gamma
));
812 out_be32(&hw
->cursor
, DMA_ADDR(data
, cursor
));
814 out_be32(&hw
->bgnd
, 0x007F7F7F); /* BGND */
815 out_be32(&hw
->bgnd_wb
, 0); /* BGND_WB */
816 out_be32(&hw
->disp_size
, (var
->yres
<< 16 | var
->xres
));
818 out_be32(&hw
->wb_size
, 0); /* WB SIZE */
819 out_be32(&hw
->wb_mem_addr
, 0); /* WB MEM ADDR */
821 /* Horizontal and vertical configuration register */
822 temp
= var
->left_margin
<< 22 | /* BP_H */
823 var
->hsync_len
<< 11 | /* PW_H */
824 var
->right_margin
; /* FP_H */
826 out_be32(&hw
->hsyn_para
, temp
);
828 temp
= var
->upper_margin
<< 22 | /* BP_V */
829 var
->vsync_len
<< 11 | /* PW_V */
830 var
->lower_margin
; /* FP_V */
832 out_be32(&hw
->vsyn_para
, temp
);
834 diu_ops
.set_pixel_clock(var
->pixclock
);
836 out_be32(&hw
->syn_pol
, 0); /* SYNC SIGNALS POLARITY */
837 out_be32(&hw
->int_status
, 0); /* INTERRUPT STATUS */
838 out_be32(&hw
->plut
, 0x01F5F666);
844 static int map_video_memory(struct fb_info
*info
)
846 u32 smem_len
= info
->fix
.line_length
* info
->var
.yres_virtual
;
849 p
= alloc_pages_exact(smem_len
, GFP_DMA
| __GFP_ZERO
);
851 dev_err(info
->dev
, "unable to allocate fb memory\n");
854 mutex_lock(&info
->mm_lock
);
855 info
->screen_base
= p
;
856 info
->fix
.smem_start
= virt_to_phys(info
->screen_base
);
857 info
->fix
.smem_len
= smem_len
;
858 mutex_unlock(&info
->mm_lock
);
859 info
->screen_size
= info
->fix
.smem_len
;
864 static void unmap_video_memory(struct fb_info
*info
)
866 void *p
= info
->screen_base
;
867 size_t l
= info
->fix
.smem_len
;
869 mutex_lock(&info
->mm_lock
);
870 info
->screen_base
= NULL
;
871 info
->fix
.smem_start
= 0;
872 info
->fix
.smem_len
= 0;
873 mutex_unlock(&info
->mm_lock
);
876 free_pages_exact(p
, l
);
880 * Using the fb_var_screeninfo in fb_info we set the aoi of this
881 * particular framebuffer. It is a light version of fsl_diu_set_par.
883 static int fsl_diu_set_aoi(struct fb_info
*info
)
885 struct fb_var_screeninfo
*var
= &info
->var
;
886 struct mfb_info
*mfbi
= info
->par
;
887 struct diu_ad
*ad
= mfbi
->ad
;
889 /* AOI should not be greater than display size */
890 ad
->offset_xyi
= cpu_to_le32((var
->yoffset
<< 16) | var
->xoffset
);
891 ad
->offset_xyd
= cpu_to_le32((mfbi
->y_aoi_d
<< 16) | mfbi
->x_aoi_d
);
896 * fsl_diu_get_pixel_format: return the pixel format for a given color depth
898 * The pixel format is a 32-bit value that determine which bits in each
899 * pixel are to be used for each color. This is the default function used
900 * if the platform does not define its own version.
902 static u32
fsl_diu_get_pixel_format(unsigned int bits_per_pixel
)
904 #define PF_BYTE_F 0x10000000
905 #define PF_ALPHA_C_MASK 0x0E000000
906 #define PF_ALPHA_C_SHIFT 25
907 #define PF_BLUE_C_MASK 0x01800000
908 #define PF_BLUE_C_SHIFT 23
909 #define PF_GREEN_C_MASK 0x00600000
910 #define PF_GREEN_C_SHIFT 21
911 #define PF_RED_C_MASK 0x00180000
912 #define PF_RED_C_SHIFT 19
913 #define PF_PALETTE 0x00040000
914 #define PF_PIXEL_S_MASK 0x00030000
915 #define PF_PIXEL_S_SHIFT 16
916 #define PF_COMP_3_MASK 0x0000F000
917 #define PF_COMP_3_SHIFT 12
918 #define PF_COMP_2_MASK 0x00000F00
919 #define PF_COMP_2_SHIFT 8
920 #define PF_COMP_1_MASK 0x000000F0
921 #define PF_COMP_1_SHIFT 4
922 #define PF_COMP_0_MASK 0x0000000F
923 #define PF_COMP_0_SHIFT 0
925 #define MAKE_PF(alpha, red, blue, green, size, c0, c1, c2, c3) \
926 cpu_to_le32(PF_BYTE_F | (alpha << PF_ALPHA_C_SHIFT) | \
927 (blue << PF_BLUE_C_SHIFT) | (green << PF_GREEN_C_SHIFT) | \
928 (red << PF_RED_C_SHIFT) | (c3 << PF_COMP_3_SHIFT) | \
929 (c2 << PF_COMP_2_SHIFT) | (c1 << PF_COMP_1_SHIFT) | \
930 (c0 << PF_COMP_0_SHIFT) | (size << PF_PIXEL_S_SHIFT))
932 switch (bits_per_pixel
) {
935 return MAKE_PF(3, 2, 0, 1, 3, 8, 8, 8, 8);
938 return MAKE_PF(4, 0, 1, 2, 2, 0, 8, 8, 8);
941 return MAKE_PF(4, 2, 1, 0, 1, 5, 6, 5, 0);
943 pr_err("fsl-diu: unsupported color depth %u\n", bits_per_pixel
);
949 * Using the fb_var_screeninfo in fb_info we set the resolution of this
950 * particular framebuffer. This function alters the fb_fix_screeninfo stored
951 * in fb_info. It does not alter var in fb_info since we are using that
952 * data. This means we depend on the data in var inside fb_info to be
953 * supported by the hardware. fsl_diu_check_var is always called before
954 * fsl_diu_set_par to ensure this.
956 static int fsl_diu_set_par(struct fb_info
*info
)
959 struct fb_var_screeninfo
*var
= &info
->var
;
960 struct mfb_info
*mfbi
= info
->par
;
961 struct fsl_diu_data
*data
= mfbi
->parent
;
962 struct diu_ad
*ad
= mfbi
->ad
;
963 struct diu __iomem
*hw
;
968 mfbi
->cursor_reset
= 1;
970 len
= info
->var
.yres_virtual
* info
->fix
.line_length
;
971 /* Alloc & dealloc each time resolution/bpp change */
972 if (len
!= info
->fix
.smem_len
) {
973 if (info
->fix
.smem_start
)
974 unmap_video_memory(info
);
976 /* Memory allocation for framebuffer */
977 if (map_video_memory(info
)) {
978 dev_err(info
->dev
, "unable to allocate fb memory 1\n");
983 if (diu_ops
.get_pixel_format
)
984 ad
->pix_fmt
= diu_ops
.get_pixel_format(data
->monitor_port
,
985 var
->bits_per_pixel
);
987 ad
->pix_fmt
= fsl_diu_get_pixel_format(var
->bits_per_pixel
);
989 ad
->addr
= cpu_to_le32(info
->fix
.smem_start
);
990 ad
->src_size_g_alpha
= cpu_to_le32((var
->yres_virtual
<< 12) |
991 var
->xres_virtual
) | mfbi
->g_alpha
;
992 /* AOI should not be greater than display size */
993 ad
->aoi_size
= cpu_to_le32((var
->yres
<< 16) | var
->xres
);
994 ad
->offset_xyi
= cpu_to_le32((var
->yoffset
<< 16) | var
->xoffset
);
995 ad
->offset_xyd
= cpu_to_le32((mfbi
->y_aoi_d
<< 16) | mfbi
->x_aoi_d
);
997 /* Disable chroma keying function */
1006 if (mfbi
->index
== PLANE0
)
1011 static inline __u32
CNVT_TOHW(__u32 val
, __u32 width
)
1013 return ((val
<< width
) + 0x7FFF - val
) >> 16;
1017 * Set a single color register. The values supplied have a 16 bit magnitude
1018 * which needs to be scaled in this function for the hardware. Things to take
1019 * into consideration are how many color registers, if any, are supported with
1020 * the current color visual. With truecolor mode no color palettes are
1021 * supported. Here a pseudo palette is created which we store the value in
1022 * pseudo_palette in struct fb_info. For pseudocolor mode we have a limited
1025 static int fsl_diu_setcolreg(unsigned int regno
, unsigned int red
,
1026 unsigned int green
, unsigned int blue
,
1027 unsigned int transp
, struct fb_info
*info
)
1032 * If greyscale is true, then we convert the RGB value
1033 * to greyscale no matter what visual we are using.
1035 if (info
->var
.grayscale
)
1036 red
= green
= blue
= (19595 * red
+ 38470 * green
+
1038 switch (info
->fix
.visual
) {
1039 case FB_VISUAL_TRUECOLOR
:
1041 * 16-bit True Colour. We encode the RGB value
1042 * according to the RGB bitfield information.
1045 u32
*pal
= info
->pseudo_palette
;
1048 red
= CNVT_TOHW(red
, info
->var
.red
.length
);
1049 green
= CNVT_TOHW(green
, info
->var
.green
.length
);
1050 blue
= CNVT_TOHW(blue
, info
->var
.blue
.length
);
1051 transp
= CNVT_TOHW(transp
, info
->var
.transp
.length
);
1053 v
= (red
<< info
->var
.red
.offset
) |
1054 (green
<< info
->var
.green
.offset
) |
1055 (blue
<< info
->var
.blue
.offset
) |
1056 (transp
<< info
->var
.transp
.offset
);
1068 * Pan (or wrap, depending on the `vmode' field) the display using the
1069 * 'xoffset' and 'yoffset' fields of the 'var' structure. If the values
1070 * don't fit, return -EINVAL.
1072 static int fsl_diu_pan_display(struct fb_var_screeninfo
*var
,
1073 struct fb_info
*info
)
1075 if ((info
->var
.xoffset
== var
->xoffset
) &&
1076 (info
->var
.yoffset
== var
->yoffset
))
1077 return 0; /* No change, do nothing */
1079 if (var
->xoffset
< 0 || var
->yoffset
< 0
1080 || var
->xoffset
+ info
->var
.xres
> info
->var
.xres_virtual
1081 || var
->yoffset
+ info
->var
.yres
> info
->var
.yres_virtual
)
1084 info
->var
.xoffset
= var
->xoffset
;
1085 info
->var
.yoffset
= var
->yoffset
;
1087 if (var
->vmode
& FB_VMODE_YWRAP
)
1088 info
->var
.vmode
|= FB_VMODE_YWRAP
;
1090 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1092 fsl_diu_set_aoi(info
);
1097 static int fsl_diu_ioctl(struct fb_info
*info
, unsigned int cmd
,
1100 struct mfb_info
*mfbi
= info
->par
;
1101 struct diu_ad
*ad
= mfbi
->ad
;
1102 struct mfb_chroma_key ck
;
1103 unsigned char global_alpha
;
1104 struct aoi_display_offset aoi_d
;
1106 void __user
*buf
= (void __user
*)arg
;
1111 case MFB_SET_PIXFMT_OLD
:
1113 "MFB_SET_PIXFMT value of 0x%08x is deprecated.\n",
1114 MFB_SET_PIXFMT_OLD
);
1115 case MFB_SET_PIXFMT
:
1116 if (copy_from_user(&pix_fmt
, buf
, sizeof(pix_fmt
)))
1118 ad
->pix_fmt
= pix_fmt
;
1120 case MFB_GET_PIXFMT_OLD
:
1122 "MFB_GET_PIXFMT value of 0x%08x is deprecated.\n",
1123 MFB_GET_PIXFMT_OLD
);
1124 case MFB_GET_PIXFMT
:
1125 pix_fmt
= ad
->pix_fmt
;
1126 if (copy_to_user(buf
, &pix_fmt
, sizeof(pix_fmt
)))
1130 if (copy_from_user(&aoi_d
, buf
, sizeof(aoi_d
)))
1132 mfbi
->x_aoi_d
= aoi_d
.x_aoi_d
;
1133 mfbi
->y_aoi_d
= aoi_d
.y_aoi_d
;
1134 fsl_diu_check_var(&info
->var
, info
);
1135 fsl_diu_set_aoi(info
);
1138 aoi_d
.x_aoi_d
= mfbi
->x_aoi_d
;
1139 aoi_d
.y_aoi_d
= mfbi
->y_aoi_d
;
1140 if (copy_to_user(buf
, &aoi_d
, sizeof(aoi_d
)))
1144 global_alpha
= mfbi
->g_alpha
;
1145 if (copy_to_user(buf
, &global_alpha
, sizeof(global_alpha
)))
1149 /* set panel information */
1150 if (copy_from_user(&global_alpha
, buf
, sizeof(global_alpha
)))
1152 ad
->src_size_g_alpha
= (ad
->src_size_g_alpha
& (~0xff)) |
1153 (global_alpha
& 0xff);
1154 mfbi
->g_alpha
= global_alpha
;
1156 case MFB_SET_CHROMA_KEY
:
1157 /* set panel winformation */
1158 if (copy_from_user(&ck
, buf
, sizeof(ck
)))
1162 (ck
.red_max
< ck
.red_min
||
1163 ck
.green_max
< ck
.green_min
||
1164 ck
.blue_max
< ck
.blue_min
))
1175 ad
->ckmax_r
= ck
.red_max
;
1176 ad
->ckmax_g
= ck
.green_max
;
1177 ad
->ckmax_b
= ck
.blue_max
;
1178 ad
->ckmin_r
= ck
.red_min
;
1179 ad
->ckmin_g
= ck
.green_min
;
1180 ad
->ckmin_b
= ck
.blue_min
;
1184 dev_err(info
->dev
, "unknown ioctl command (0x%08X)\n", cmd
);
1185 return -ENOIOCTLCMD
;
1191 /* turn on fb if count == 1
1193 static int fsl_diu_open(struct fb_info
*info
, int user
)
1195 struct mfb_info
*mfbi
= info
->par
;
1198 /* free boot splash memory on first /dev/fb0 open */
1199 if ((mfbi
->index
== PLANE0
) && diu_ops
.release_bootmem
)
1200 diu_ops
.release_bootmem();
1202 spin_lock(&diu_lock
);
1204 if (mfbi
->count
== 1) {
1205 fsl_diu_check_var(&info
->var
, info
);
1206 res
= fsl_diu_set_par(info
);
1210 fsl_diu_enable_panel(info
);
1213 spin_unlock(&diu_lock
);
1217 /* turn off fb if count == 0
1219 static int fsl_diu_release(struct fb_info
*info
, int user
)
1221 struct mfb_info
*mfbi
= info
->par
;
1224 spin_lock(&diu_lock
);
1226 if (mfbi
->count
== 0)
1227 fsl_diu_disable_panel(info
);
1229 spin_unlock(&diu_lock
);
1233 static struct fb_ops fsl_diu_ops
= {
1234 .owner
= THIS_MODULE
,
1235 .fb_check_var
= fsl_diu_check_var
,
1236 .fb_set_par
= fsl_diu_set_par
,
1237 .fb_setcolreg
= fsl_diu_setcolreg
,
1238 .fb_pan_display
= fsl_diu_pan_display
,
1239 .fb_fillrect
= cfb_fillrect
,
1240 .fb_copyarea
= cfb_copyarea
,
1241 .fb_imageblit
= cfb_imageblit
,
1242 .fb_ioctl
= fsl_diu_ioctl
,
1243 .fb_open
= fsl_diu_open
,
1244 .fb_release
= fsl_diu_release
,
1247 static int __devinit
install_fb(struct fb_info
*info
)
1250 struct mfb_info
*mfbi
= info
->par
;
1251 const char *aoi_mode
, *init_aoi_mode
= "320x240";
1252 struct fb_videomode
*db
= fsl_diu_mode_db
;
1253 unsigned int dbsize
= ARRAY_SIZE(fsl_diu_mode_db
);
1254 int has_default_mode
= 1;
1256 info
->var
.activate
= FB_ACTIVATE_NOW
;
1257 info
->fbops
= &fsl_diu_ops
;
1258 info
->flags
= FBINFO_DEFAULT
| FBINFO_VIRTFB
| FBINFO_PARTIAL_PAN_OK
|
1260 info
->pseudo_palette
= mfbi
->pseudo_palette
;
1262 rc
= fb_alloc_cmap(&info
->cmap
, 16, 0);
1266 if (mfbi
->index
== PLANE0
) {
1267 if (mfbi
->edid_data
) {
1268 /* Now build modedb from EDID */
1269 fb_edid_to_monspecs(mfbi
->edid_data
, &info
->monspecs
);
1270 fb_videomode_to_modelist(info
->monspecs
.modedb
,
1271 info
->monspecs
.modedb_len
,
1273 db
= info
->monspecs
.modedb
;
1274 dbsize
= info
->monspecs
.modedb_len
;
1278 aoi_mode
= init_aoi_mode
;
1280 rc
= fb_find_mode(&info
->var
, info
, aoi_mode
, db
, dbsize
, NULL
,
1284 * For plane 0 we continue and look into
1285 * driver's internal modedb.
1287 if ((mfbi
->index
== PLANE0
) && mfbi
->edid_data
)
1288 has_default_mode
= 0;
1293 if (!has_default_mode
) {
1294 rc
= fb_find_mode(&info
->var
, info
, aoi_mode
, fsl_diu_mode_db
,
1295 ARRAY_SIZE(fsl_diu_mode_db
), NULL
, default_bpp
);
1297 has_default_mode
= 1;
1300 /* Still not found, use preferred mode from database if any */
1301 if (!has_default_mode
&& info
->monspecs
.modedb
) {
1302 struct fb_monspecs
*specs
= &info
->monspecs
;
1303 struct fb_videomode
*modedb
= &specs
->modedb
[0];
1306 * Get preferred timing. If not found,
1307 * first mode in database will be used.
1309 if (specs
->misc
& FB_MISC_1ST_DETAIL
) {
1312 for (i
= 0; i
< specs
->modedb_len
; i
++) {
1313 if (specs
->modedb
[i
].flag
& FB_MODE_IS_FIRST
) {
1314 modedb
= &specs
->modedb
[i
];
1320 info
->var
.bits_per_pixel
= default_bpp
;
1321 fb_videomode_to_var(&info
->var
, modedb
);
1324 if (fsl_diu_check_var(&info
->var
, info
)) {
1325 dev_err(info
->dev
, "fsl_diu_check_var failed\n");
1326 unmap_video_memory(info
);
1327 fb_dealloc_cmap(&info
->cmap
);
1331 if (register_framebuffer(info
) < 0) {
1332 dev_err(info
->dev
, "register_framebuffer failed\n");
1333 unmap_video_memory(info
);
1334 fb_dealloc_cmap(&info
->cmap
);
1338 mfbi
->registered
= 1;
1339 dev_info(info
->dev
, "%s registered successfully\n", mfbi
->id
);
1344 static void uninstall_fb(struct fb_info
*info
)
1346 struct mfb_info
*mfbi
= info
->par
;
1348 if (!mfbi
->registered
)
1351 if (mfbi
->index
== PLANE0
)
1352 kfree(mfbi
->edid_data
);
1354 unregister_framebuffer(info
);
1355 unmap_video_memory(info
);
1357 fb_dealloc_cmap(&info
->cmap
);
1359 mfbi
->registered
= 0;
1362 static irqreturn_t
fsl_diu_isr(int irq
, void *dev_id
)
1364 struct diu __iomem
*hw
= dev_id
;
1365 unsigned int status
= in_be32(&hw
->int_status
);
1368 /* This is the workaround for underrun */
1369 if (status
& INT_UNDRUN
) {
1370 out_be32(&hw
->diu_mode
, 0);
1372 out_be32(&hw
->diu_mode
, 1);
1374 #if defined(CONFIG_NOT_COHERENT_CACHE)
1375 else if (status
& INT_VSYNC
) {
1378 for (i
= 0; i
< coherence_data_size
;
1379 i
+= d_cache_line_size
)
1380 __asm__
__volatile__ (
1382 ::[input
]"r"(&coherence_data
[i
]));
1390 static int request_irq_local(struct fsl_diu_data
*data
)
1392 struct diu __iomem
*hw
= data
->diu_reg
;
1396 /* Read to clear the status */
1397 in_be32(&hw
->int_status
);
1399 ret
= request_irq(data
->irq
, fsl_diu_isr
, 0, "fsl-diu-fb", hw
);
1401 ints
= INT_PARERR
| INT_LS_BF_VS
;
1402 #if !defined(CONFIG_NOT_COHERENT_CACHE)
1406 /* Read to clear the status */
1407 in_be32(&hw
->int_status
);
1408 out_be32(&hw
->int_mask
, ints
);
1414 static void free_irq_local(struct fsl_diu_data
*data
)
1416 struct diu __iomem
*hw
= data
->diu_reg
;
1418 /* Disable all LCDC interrupt */
1419 out_be32(&hw
->int_mask
, 0x1f);
1421 free_irq(data
->irq
, NULL
);
1426 * Power management hooks. Note that we won't be called from IRQ context,
1427 * unlike the blank functions above, so we may sleep.
1429 static int fsl_diu_suspend(struct platform_device
*ofdev
, pm_message_t state
)
1431 struct fsl_diu_data
*data
;
1433 data
= dev_get_drvdata(&ofdev
->dev
);
1434 disable_lcdc(data
->fsl_diu_info
);
1439 static int fsl_diu_resume(struct platform_device
*ofdev
)
1441 struct fsl_diu_data
*data
;
1443 data
= dev_get_drvdata(&ofdev
->dev
);
1444 enable_lcdc(data
->fsl_diu_info
);
1450 #define fsl_diu_suspend NULL
1451 #define fsl_diu_resume NULL
1452 #endif /* CONFIG_PM */
1454 static ssize_t
store_monitor(struct device
*device
,
1455 struct device_attribute
*attr
, const char *buf
, size_t count
)
1457 enum fsl_diu_monitor_port old_monitor_port
;
1458 struct fsl_diu_data
*data
=
1459 container_of(attr
, struct fsl_diu_data
, dev_attr
);
1461 old_monitor_port
= data
->monitor_port
;
1462 data
->monitor_port
= fsl_diu_name_to_port(buf
);
1464 if (old_monitor_port
!= data
->monitor_port
) {
1465 /* All AOIs need adjust pixel format
1466 * fsl_diu_set_par only change the pixsel format here
1467 * unlikely to fail. */
1470 for (i
=0; i
< NUM_AOIS
; i
++)
1471 fsl_diu_set_par(&data
->fsl_diu_info
[i
]);
1476 static ssize_t
show_monitor(struct device
*device
,
1477 struct device_attribute
*attr
, char *buf
)
1479 struct fsl_diu_data
*data
=
1480 container_of(attr
, struct fsl_diu_data
, dev_attr
);
1482 switch (data
->monitor_port
) {
1483 case FSL_DIU_PORT_DVI
:
1484 return sprintf(buf
, "DVI\n");
1485 case FSL_DIU_PORT_LVDS
:
1486 return sprintf(buf
, "Single-link LVDS\n");
1487 case FSL_DIU_PORT_DLVDS
:
1488 return sprintf(buf
, "Dual-link LVDS\n");
1494 static int __devinit
fsl_diu_probe(struct platform_device
*pdev
)
1496 struct device_node
*np
= pdev
->dev
.of_node
;
1497 struct mfb_info
*mfbi
;
1498 struct fsl_diu_data
*data
;
1500 dma_addr_t dma_addr
; /* DMA addr of fsl_diu_data struct */
1504 data
= dma_alloc_coherent(&pdev
->dev
, sizeof(struct fsl_diu_data
),
1505 &dma_addr
, GFP_DMA
| __GFP_ZERO
);
1508 data
->dma_addr
= dma_addr
;
1511 * dma_alloc_coherent() uses a page allocator, so the address is
1512 * always page-aligned. We need the memory to be 32-byte aligned,
1513 * so that's good. However, if one day the allocator changes, we
1514 * need to catch that. It's not worth the effort to handle unaligned
1515 * alloctions now because it's highly unlikely to ever be a problem.
1517 if ((unsigned long)data
& 31) {
1518 dev_err(&pdev
->dev
, "misaligned allocation");
1523 spin_lock_init(&data
->reg_lock
);
1525 for (i
= 0; i
< NUM_AOIS
; i
++) {
1526 struct fb_info
*info
= &data
->fsl_diu_info
[i
];
1528 info
->device
= &pdev
->dev
;
1529 info
->par
= &data
->mfb
[i
];
1532 * We store the physical address of the AD in the reserved
1533 * 'paddr' field of the AD itself.
1535 data
->ad
[i
].paddr
= DMA_ADDR(data
, ad
[i
]);
1537 info
->fix
.smem_start
= 0;
1539 /* Initialize the AOI data structure */
1541 memcpy(mfbi
, &mfb_template
[i
], sizeof(struct mfb_info
));
1542 mfbi
->parent
= data
;
1543 mfbi
->ad
= &data
->ad
[i
];
1545 if (mfbi
->index
== PLANE0
) {
1550 prop
= of_get_property(np
, "edid", &len
);
1551 if (prop
&& len
== EDID_LENGTH
)
1552 mfbi
->edid_data
= kmemdup(prop
, EDID_LENGTH
,
1557 data
->diu_reg
= of_iomap(np
, 0);
1558 if (!data
->diu_reg
) {
1559 dev_err(&pdev
->dev
, "cannot map DIU registers\n");
1564 diu_mode
= in_be32(&data
->diu_reg
->diu_mode
);
1565 if (diu_mode
== MFB_MODE0
)
1566 out_be32(&data
->diu_reg
->diu_mode
, 0); /* disable DIU */
1568 /* Get the IRQ of the DIU */
1569 data
->irq
= irq_of_parse_and_map(np
, 0);
1572 dev_err(&pdev
->dev
, "could not get DIU IRQ\n");
1576 data
->monitor_port
= monitor_port
;
1578 /* Initialize the dummy Area Descriptor */
1579 data
->dummy_ad
.addr
= cpu_to_le32(DMA_ADDR(data
, dummy_aoi
));
1580 data
->dummy_ad
.pix_fmt
= 0x88882317;
1581 data
->dummy_ad
.src_size_g_alpha
= cpu_to_le32((4 << 12) | 4);
1582 data
->dummy_ad
.aoi_size
= cpu_to_le32((4 << 16) | 2);
1583 data
->dummy_ad
.offset_xyi
= 0;
1584 data
->dummy_ad
.offset_xyd
= 0;
1585 data
->dummy_ad
.next_ad
= 0;
1586 data
->dummy_ad
.paddr
= DMA_ADDR(data
, dummy_ad
);
1589 * Let DIU display splash screen if it was pre-initialized
1590 * by the bootloader, set dummy area descriptor otherwise.
1592 if (diu_mode
== MFB_MODE0
)
1593 out_be32(&data
->diu_reg
->desc
[0], data
->dummy_ad
.paddr
);
1595 out_be32(&data
->diu_reg
->desc
[1], data
->dummy_ad
.paddr
);
1596 out_be32(&data
->diu_reg
->desc
[2], data
->dummy_ad
.paddr
);
1598 for (i
= 0; i
< NUM_AOIS
; i
++) {
1599 ret
= install_fb(&data
->fsl_diu_info
[i
]);
1601 dev_err(&pdev
->dev
, "could not register fb %d\n", i
);
1606 if (request_irq_local(data
)) {
1607 dev_err(&pdev
->dev
, "could not claim irq\n");
1611 sysfs_attr_init(&data
->dev_attr
.attr
);
1612 data
->dev_attr
.attr
.name
= "monitor";
1613 data
->dev_attr
.attr
.mode
= S_IRUGO
|S_IWUSR
;
1614 data
->dev_attr
.show
= show_monitor
;
1615 data
->dev_attr
.store
= store_monitor
;
1616 ret
= device_create_file(&pdev
->dev
, &data
->dev_attr
);
1618 dev_err(&pdev
->dev
, "could not create sysfs file %s\n",
1619 data
->dev_attr
.attr
.name
);
1622 dev_set_drvdata(&pdev
->dev
, data
);
1626 for (i
= 0; i
< NUM_AOIS
; i
++)
1627 uninstall_fb(&data
->fsl_diu_info
[i
]);
1629 iounmap(data
->diu_reg
);
1631 dma_free_coherent(&pdev
->dev
, sizeof(struct fsl_diu_data
), data
,
1637 static int fsl_diu_remove(struct platform_device
*pdev
)
1639 struct fsl_diu_data
*data
;
1642 data
= dev_get_drvdata(&pdev
->dev
);
1643 disable_lcdc(&data
->fsl_diu_info
[0]);
1644 free_irq_local(data
);
1646 for (i
= 0; i
< NUM_AOIS
; i
++)
1647 uninstall_fb(&data
->fsl_diu_info
[i
]);
1649 iounmap(data
->diu_reg
);
1651 dma_free_coherent(&pdev
->dev
, sizeof(struct fsl_diu_data
), data
,
1658 static int __init
fsl_diu_setup(char *options
)
1663 if (!options
|| !*options
)
1666 while ((opt
= strsep(&options
, ",")) != NULL
) {
1669 if (!strncmp(opt
, "monitor=", 8)) {
1670 monitor_port
= fsl_diu_name_to_port(opt
+ 8);
1671 } else if (!strncmp(opt
, "bpp=", 4)) {
1672 if (!strict_strtoul(opt
+ 4, 10, &val
))
1682 static struct of_device_id fsl_diu_match
[] = {
1683 #ifdef CONFIG_PPC_MPC512x
1685 .compatible
= "fsl,mpc5121-diu",
1689 .compatible
= "fsl,diu",
1693 MODULE_DEVICE_TABLE(of
, fsl_diu_match
);
1695 static struct platform_driver fsl_diu_driver
= {
1697 .name
= "fsl-diu-fb",
1698 .owner
= THIS_MODULE
,
1699 .of_match_table
= fsl_diu_match
,
1701 .probe
= fsl_diu_probe
,
1702 .remove
= fsl_diu_remove
,
1703 .suspend
= fsl_diu_suspend
,
1704 .resume
= fsl_diu_resume
,
1707 static int __init
fsl_diu_init(void)
1709 #ifdef CONFIG_NOT_COHERENT_CACHE
1710 struct device_node
*np
;
1718 * For kernel boot options (in 'video=xxxfb:<options>' format)
1720 if (fb_get_options("fslfb", &option
))
1722 fsl_diu_setup(option
);
1724 monitor_port
= fsl_diu_name_to_port(monitor_string
);
1726 pr_info("Freescale Display Interface Unit (DIU) framebuffer driver\n");
1728 #ifdef CONFIG_NOT_COHERENT_CACHE
1729 np
= of_find_node_by_type(NULL
, "cpu");
1731 pr_err("fsl-diu-fb: can't find 'cpu' device node\n");
1735 prop
= of_get_property(np
, "d-cache-size", NULL
);
1737 pr_err("fsl-diu-fb: missing 'd-cache-size' property' "
1744 * Freescale PLRU requires 13/8 times the cache size to do a proper
1745 * displacement flush
1747 coherence_data_size
= be32_to_cpup(prop
) * 13;
1748 coherence_data_size
/= 8;
1750 prop
= of_get_property(np
, "d-cache-line-size", NULL
);
1752 pr_err("fsl-diu-fb: missing 'd-cache-line-size' property' "
1757 d_cache_line_size
= be32_to_cpup(prop
);
1760 coherence_data
= vmalloc(coherence_data_size
);
1761 if (!coherence_data
)
1765 ret
= platform_driver_register(&fsl_diu_driver
);
1767 pr_err("fsl-diu-fb: failed to register platform driver\n");
1768 #if defined(CONFIG_NOT_COHERENT_CACHE)
1769 vfree(coherence_data
);
1775 static void __exit
fsl_diu_exit(void)
1777 platform_driver_unregister(&fsl_diu_driver
);
1778 #if defined(CONFIG_NOT_COHERENT_CACHE)
1779 vfree(coherence_data
);
1783 module_init(fsl_diu_init
);
1784 module_exit(fsl_diu_exit
);
1786 MODULE_AUTHOR("York Sun <yorksun@freescale.com>");
1787 MODULE_DESCRIPTION("Freescale DIU framebuffer driver");
1788 MODULE_LICENSE("GPL");
1790 module_param_named(mode
, fb_mode
, charp
, 0);
1791 MODULE_PARM_DESC(mode
,
1792 "Specify resolution as \"<xres>x<yres>[-<bpp>][@<refresh>]\" ");
1793 module_param_named(bpp
, default_bpp
, ulong
, 0);
1794 MODULE_PARM_DESC(bpp
, "Specify bit-per-pixel if not specified in 'mode'");
1795 module_param_named(monitor
, monitor_string
, charp
, 0);
1796 MODULE_PARM_DESC(monitor
, "Specify the monitor port "
1797 "(\"dvi\", \"lvds\", or \"dlvds\") if supported by the platform");