2 * File: drivers/video/bfin-t350mcqb-fb.c
4 * Author: Michael Hennerich <hennerich@blackfin.uclinux.org>
7 * Description: Blackfin LCD Framebufer driver
11 * Copyright 2004-2007 Analog Devices Inc.
13 * Bugs: Enter bugs at http://blackfin.uclinux.org/
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, see the file COPYING, or write
27 * to the Free Software Foundation, Inc.,
28 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 #include <linux/module.h>
32 #include <linux/kernel.h>
33 #include <linux/errno.h>
34 #include <linux/string.h>
36 #include <linux/init.h>
37 #include <linux/types.h>
38 #include <linux/interrupt.h>
39 #include <linux/device.h>
40 #include <linux/backlight.h>
41 #include <linux/lcd.h>
42 #include <linux/dma-mapping.h>
43 #include <linux/platform_device.h>
45 #include <asm/blackfin.h>
47 #include <asm/dma-mapping.h>
49 #include <asm/portmux.h>
50 #include <asm/gptimers.h>
54 #define LCD_X_RES 320 /* Horizontal Resolution */
55 #define LCD_Y_RES 240 /* Vertical Resolution */
56 #define LCD_BPP 24 /* Bit Per Pixel */
58 #define DMA_BUS_SIZE 16
59 #define LCD_CLK (12*1000*1000) /* 12MHz */
61 #define CLOCKS_PER_PIX 3
64 * HS and VS timing parameters (all in number of PPI clk ticks)
67 #define U_LINE 1 /* Blanking Lines */
69 #define H_ACTPIX (LCD_X_RES * CLOCKS_PER_PIX) /* active horizontal pixel */
70 #define H_PERIOD (408 * CLOCKS_PER_PIX) /* HS period */
71 #define H_PULSE 90 /* HS pulse width */
72 #define H_START 204 /* first valid pixel */
74 #define V_LINES (LCD_Y_RES + U_LINE) /* total vertical lines */
75 #define V_PULSE (3 * H_PERIOD) /* VS pulse width (1-5 H_PERIODs) */
76 #define V_PERIOD (H_PERIOD * V_LINES) /* VS period */
78 #define ACTIVE_VIDEO_MEM_OFFSET (U_LINE * H_ACTPIX)
80 #define BFIN_LCD_NBR_PALETTE_ENTRIES 256
82 #define DRIVER_NAME "bfin-t350mcqb"
83 static char driver_name
[] = DRIVER_NAME
;
85 struct bfin_t350mcqbfb_info
{
88 unsigned char *fb_buffer
; /* RGB Buffer */
89 dma_addr_t dma_handle
;
93 spinlock_t lock
; /* lock */
97 module_param(nocursor
, int, 0644);
98 MODULE_PARM_DESC(nocursor
, "cursor enable/disable");
100 #define PPI_TX_MODE 0x2
101 #define PPI_XFER_TYPE_11 0xC
102 #define PPI_PORT_CFG_01 0x10
103 #define PPI_PACK_EN 0x80
104 #define PPI_POLS_1 0x8000
106 static void bfin_t350mcqb_config_ppi(struct bfin_t350mcqbfb_info
*fbi
)
108 bfin_write_PPI_DELAY(H_START
);
109 bfin_write_PPI_COUNT(H_ACTPIX
-1);
110 bfin_write_PPI_FRAME(V_LINES
);
112 bfin_write_PPI_CONTROL(PPI_TX_MODE
| /* output mode , PORT_DIR */
113 PPI_XFER_TYPE_11
| /* sync mode XFR_TYPE */
114 PPI_PORT_CFG_01
| /* two frame sync PORT_CFG */
115 PPI_PACK_EN
| /* packing enabled PACK_EN */
116 PPI_POLS_1
); /* faling edge syncs POLS */
119 static inline void bfin_t350mcqb_disable_ppi(void)
121 bfin_write_PPI_CONTROL(bfin_read_PPI_CONTROL() & ~PORT_EN
);
124 static inline void bfin_t350mcqb_enable_ppi(void)
126 bfin_write_PPI_CONTROL(bfin_read_PPI_CONTROL() | PORT_EN
);
129 static void bfin_t350mcqb_start_timers(void)
133 local_irq_save(flags
);
134 enable_gptimers(TIMER1bit
);
135 enable_gptimers(TIMER0bit
);
136 local_irq_restore(flags
);
139 static void bfin_t350mcqb_stop_timers(void)
141 disable_gptimers(TIMER0bit
| TIMER1bit
);
143 set_gptimer_status(0, TIMER_STATUS_TRUN0
| TIMER_STATUS_TRUN1
|
144 TIMER_STATUS_TIMIL0
| TIMER_STATUS_TIMIL1
|
145 TIMER_STATUS_TOVF0
| TIMER_STATUS_TOVF1
);
149 static void bfin_t350mcqb_init_timers(void)
152 bfin_t350mcqb_stop_timers();
154 set_gptimer_period(TIMER0_id
, H_PERIOD
);
155 set_gptimer_pwidth(TIMER0_id
, H_PULSE
);
156 set_gptimer_config(TIMER0_id
, TIMER_MODE_PWM
| TIMER_PERIOD_CNT
|
157 TIMER_TIN_SEL
| TIMER_CLK_SEL
|
160 set_gptimer_period(TIMER1_id
, V_PERIOD
);
161 set_gptimer_pwidth(TIMER1_id
, V_PULSE
);
162 set_gptimer_config(TIMER1_id
, TIMER_MODE_PWM
| TIMER_PERIOD_CNT
|
163 TIMER_TIN_SEL
| TIMER_CLK_SEL
|
168 static void bfin_t350mcqb_config_dma(struct bfin_t350mcqbfb_info
*fbi
)
171 set_dma_config(CH_PPI
,
172 set_bfin_dma_config(DIR_READ
, DMA_FLOW_AUTO
,
173 INTR_DISABLE
, DIMENSION_2D
,
175 DMA_NOSYNC_KEEP_DMA_BUF
));
176 set_dma_x_count(CH_PPI
, (LCD_X_RES
* LCD_BPP
) / DMA_BUS_SIZE
);
177 set_dma_x_modify(CH_PPI
, DMA_BUS_SIZE
/ 8);
178 set_dma_y_count(CH_PPI
, V_LINES
);
180 set_dma_y_modify(CH_PPI
, DMA_BUS_SIZE
/ 8);
181 set_dma_start_addr(CH_PPI
, (unsigned long)fbi
->fb_buffer
);
185 static int bfin_t350mcqb_request_ports(int action
)
187 u16 ppi0_req_8
[] = {P_PPI0_CLK
, P_PPI0_FS1
, P_PPI0_FS2
,
188 P_PPI0_D0
, P_PPI0_D1
, P_PPI0_D2
,
189 P_PPI0_D3
, P_PPI0_D4
, P_PPI0_D5
,
190 P_PPI0_D6
, P_PPI0_D7
, 0};
193 if (peripheral_request_list(ppi0_req_8
, DRIVER_NAME
)) {
194 printk(KERN_ERR
"Requesting Peripherals faild\n");
198 peripheral_free_list(ppi0_req_8
);
203 static int bfin_t350mcqb_fb_open(struct fb_info
*info
, int user
)
205 struct bfin_t350mcqbfb_info
*fbi
= info
->par
;
207 spin_lock(&fbi
->lock
);
208 fbi
->lq043_open_cnt
++;
210 if (fbi
->lq043_open_cnt
<= 1) {
212 bfin_t350mcqb_disable_ppi();
215 bfin_t350mcqb_config_dma(fbi
);
216 bfin_t350mcqb_config_ppi(fbi
);
217 bfin_t350mcqb_init_timers();
221 bfin_t350mcqb_enable_ppi();
222 bfin_t350mcqb_start_timers();
225 spin_unlock(&fbi
->lock
);
230 static int bfin_t350mcqb_fb_release(struct fb_info
*info
, int user
)
232 struct bfin_t350mcqbfb_info
*fbi
= info
->par
;
234 spin_lock(&fbi
->lock
);
236 fbi
->lq043_open_cnt
--;
239 if (fbi
->lq043_open_cnt
<= 0) {
240 bfin_t350mcqb_disable_ppi();
243 bfin_t350mcqb_stop_timers();
244 memset(fbi
->fb_buffer
, 0, info
->fix
.smem_len
);
247 spin_unlock(&fbi
->lock
);
252 static int bfin_t350mcqb_fb_check_var(struct fb_var_screeninfo
*var
,
253 struct fb_info
*info
)
256 if (var
->bits_per_pixel
!= LCD_BPP
) {
257 pr_debug("%s: depth not supported: %u BPP\n", __FUNCTION__
,
258 var
->bits_per_pixel
);
262 if (info
->var
.xres
!= var
->xres
|| info
->var
.yres
!= var
->yres
||
263 info
->var
.xres_virtual
!= var
->xres_virtual
||
264 info
->var
.yres_virtual
!= var
->yres_virtual
) {
265 pr_debug("%s: Resolution not supported: X%u x Y%u \n",
266 __FUNCTION__
, var
->xres
, var
->yres
);
274 if ((info
->fix
.line_length
* var
->yres_virtual
) > info
->fix
.smem_len
) {
275 pr_debug("%s: Memory Limit requested yres_virtual = %u\n",
276 __FUNCTION__
, var
->yres_virtual
);
283 static int bfin_t350mcqb_fb_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
)
285 struct bfin_t350mcqbfb_info
*fbi
= info
->par
;
290 spin_lock(&fbi
->lock
);
292 spin_unlock(&fbi
->lock
);
294 vma
->vm_start
= (unsigned long)(fbi
->fb_buffer
+ ACTIVE_VIDEO_MEM_OFFSET
);
296 vma
->vm_end
= vma
->vm_start
+ info
->fix
.smem_len
;
297 /* For those who don't understand how mmap works, go read
298 * Documentation/nommu-mmap.txt.
299 * For those that do, you will know that the VM_MAYSHARE flag
300 * must be set in the vma->vm_flags structure on noMMU
301 * Other flags can be set, and are documented in
304 vma
->vm_flags
|= VM_MAYSHARE
;
309 int bfin_t350mcqb_fb_cursor(struct fb_info
*info
, struct fb_cursor
*cursor
)
314 return -EINVAL
; /* just to force soft_cursor() call */
317 static int bfin_t350mcqb_fb_setcolreg(u_int regno
, u_int red
, u_int green
,
318 u_int blue
, u_int transp
,
319 struct fb_info
*info
)
321 if (regno
>= BFIN_LCD_NBR_PALETTE_ENTRIES
)
324 if (info
->var
.grayscale
) {
325 /* grayscale = 0.30*R + 0.59*G + 0.11*B */
326 red
= green
= blue
= (red
* 77 + green
* 151 + blue
* 28) >> 8;
329 if (info
->fix
.visual
== FB_VISUAL_TRUECOLOR
) {
332 /* Place color in the pseudopalette */
336 red
>>= (16 - info
->var
.red
.length
);
337 green
>>= (16 - info
->var
.green
.length
);
338 blue
>>= (16 - info
->var
.blue
.length
);
340 value
= (red
<< info
->var
.red
.offset
) |
341 (green
<< info
->var
.green
.offset
) |
342 (blue
<< info
->var
.blue
.offset
);
345 ((u32
*) (info
->pseudo_palette
))[regno
] = value
;
352 static struct fb_ops bfin_t350mcqb_fb_ops
= {
353 .owner
= THIS_MODULE
,
354 .fb_open
= bfin_t350mcqb_fb_open
,
355 .fb_release
= bfin_t350mcqb_fb_release
,
356 .fb_check_var
= bfin_t350mcqb_fb_check_var
,
357 .fb_fillrect
= cfb_fillrect
,
358 .fb_copyarea
= cfb_copyarea
,
359 .fb_imageblit
= cfb_imageblit
,
360 .fb_mmap
= bfin_t350mcqb_fb_mmap
,
361 .fb_cursor
= bfin_t350mcqb_fb_cursor
,
362 .fb_setcolreg
= bfin_t350mcqb_fb_setcolreg
,
365 #ifndef NO_BL_SUPPORT
366 static int bl_get_brightness(struct backlight_device
*bd
)
371 static struct backlight_ops bfin_lq043fb_bl_ops
= {
372 .get_brightness
= bl_get_brightness
,
375 static struct backlight_device
*bl_dev
;
377 static int bfin_lcd_get_power(struct lcd_device
*dev
)
382 static int bfin_lcd_set_power(struct lcd_device
*dev
, int power
)
387 static int bfin_lcd_get_contrast(struct lcd_device
*dev
)
392 static int bfin_lcd_set_contrast(struct lcd_device
*dev
, int contrast
)
398 static int bfin_lcd_check_fb(struct fb_info
*fi
)
400 if (!fi
|| (fi
== &bfin_t350mcqb_fb
))
405 static struct lcd_ops bfin_lcd_ops
= {
406 .get_power
= bfin_lcd_get_power
,
407 .set_power
= bfin_lcd_set_power
,
408 .get_contrast
= bfin_lcd_get_contrast
,
409 .set_contrast
= bfin_lcd_set_contrast
,
410 .check_fb
= bfin_lcd_check_fb
,
413 static struct lcd_device
*lcd_dev
;
416 static irqreturn_t
bfin_t350mcqb_irq_error(int irq
, void *dev_id
)
418 /*struct bfin_t350mcqbfb_info *info = (struct bfin_t350mcqbfb_info *)dev_id;*/
420 u16 status
= bfin_read_PPI_STATUS();
421 bfin_write_PPI_STATUS(0xFFFF);
424 bfin_t350mcqb_disable_ppi();
429 bfin_t350mcqb_enable_ppi();
430 bfin_write_PPI_STATUS(0xFFFF);
436 static int __init
bfin_t350mcqb_probe(struct platform_device
*pdev
)
438 struct bfin_t350mcqbfb_info
*info
;
439 struct fb_info
*fbinfo
;
442 printk(KERN_INFO DRIVER_NAME
": %dx%d %d-bit RGB FrameBuffer initializing...\n",
443 LCD_X_RES
, LCD_Y_RES
, LCD_BPP
);
445 if (request_dma(CH_PPI
, "CH_PPI") < 0) {
446 printk(KERN_ERR DRIVER_NAME
447 ": couldn't request CH_PPI DMA\n");
453 framebuffer_alloc(sizeof(struct bfin_t350mcqbfb_info
), &pdev
->dev
);
461 info
->dev
= &pdev
->dev
;
463 platform_set_drvdata(pdev
, fbinfo
);
465 strcpy(fbinfo
->fix
.id
, driver_name
);
467 fbinfo
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
468 fbinfo
->fix
.type_aux
= 0;
469 fbinfo
->fix
.xpanstep
= 0;
470 fbinfo
->fix
.ypanstep
= 0;
471 fbinfo
->fix
.ywrapstep
= 0;
472 fbinfo
->fix
.accel
= FB_ACCEL_NONE
;
473 fbinfo
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
475 fbinfo
->var
.nonstd
= 0;
476 fbinfo
->var
.activate
= FB_ACTIVATE_NOW
;
477 fbinfo
->var
.height
= -1;
478 fbinfo
->var
.width
= -1;
479 fbinfo
->var
.accel_flags
= 0;
480 fbinfo
->var
.vmode
= FB_VMODE_NONINTERLACED
;
482 fbinfo
->var
.xres
= LCD_X_RES
;
483 fbinfo
->var
.xres_virtual
= LCD_X_RES
;
484 fbinfo
->var
.yres
= LCD_Y_RES
;
485 fbinfo
->var
.yres_virtual
= LCD_Y_RES
;
486 fbinfo
->var
.bits_per_pixel
= LCD_BPP
;
488 fbinfo
->var
.red
.offset
= 0;
489 fbinfo
->var
.green
.offset
= 8;
490 fbinfo
->var
.blue
.offset
= 16;
491 fbinfo
->var
.transp
.offset
= 0;
492 fbinfo
->var
.red
.length
= 8;
493 fbinfo
->var
.green
.length
= 8;
494 fbinfo
->var
.blue
.length
= 8;
495 fbinfo
->var
.transp
.length
= 0;
496 fbinfo
->fix
.smem_len
= LCD_X_RES
* LCD_Y_RES
* LCD_BPP
/ 8;
498 fbinfo
->fix
.line_length
= fbinfo
->var
.xres_virtual
*
499 fbinfo
->var
.bits_per_pixel
/ 8;
502 fbinfo
->fbops
= &bfin_t350mcqb_fb_ops
;
503 fbinfo
->flags
= FBINFO_FLAG_DEFAULT
;
506 dma_alloc_coherent(NULL
, fbinfo
->fix
.smem_len
, &info
->dma_handle
,
509 if (NULL
== info
->fb_buffer
) {
510 printk(KERN_ERR DRIVER_NAME
511 ": couldn't allocate dma buffer.\n");
516 memset(info
->fb_buffer
, 0, fbinfo
->fix
.smem_len
);
518 fbinfo
->screen_base
= (void *)info
->fb_buffer
+ ACTIVE_VIDEO_MEM_OFFSET
;
519 fbinfo
->fix
.smem_start
= (int)info
->fb_buffer
+ ACTIVE_VIDEO_MEM_OFFSET
;
521 fbinfo
->fbops
= &bfin_t350mcqb_fb_ops
;
523 fbinfo
->pseudo_palette
= kmalloc(sizeof(u32
) * 16, GFP_KERNEL
);
524 if (!fbinfo
->pseudo_palette
) {
525 printk(KERN_ERR DRIVER_NAME
526 "Fail to allocate pseudo_palette\n");
532 memset(fbinfo
->pseudo_palette
, 0, sizeof(u32
) * 16);
534 if (fb_alloc_cmap(&fbinfo
->cmap
, BFIN_LCD_NBR_PALETTE_ENTRIES
, 0)
536 printk(KERN_ERR DRIVER_NAME
537 "Fail to allocate colormap (%d entries)\n",
538 BFIN_LCD_NBR_PALETTE_ENTRIES
);
543 if (bfin_t350mcqb_request_ports(1)) {
544 printk(KERN_ERR DRIVER_NAME
": couldn't request gpio port.\n");
549 info
->irq
= platform_get_irq(pdev
, 0);
555 if (request_irq(info
->irq
, (void *)bfin_t350mcqb_irq_error
, IRQF_DISABLED
,
556 "PPI ERROR", info
) < 0) {
557 printk(KERN_ERR DRIVER_NAME
558 ": unable to request PPI ERROR IRQ\n");
563 if (register_framebuffer(fbinfo
) < 0) {
564 printk(KERN_ERR DRIVER_NAME
565 ": unable to register framebuffer.\n");
569 #ifndef NO_BL_SUPPORT
571 backlight_device_register("bf52x-bl", NULL
, NULL
,
572 &bfin_lq043fb_bl_ops
);
573 bl_dev
->props
.max_brightness
= 255;
575 lcd_dev
= lcd_device_register(DRIVER_NAME
, NULL
, &bfin_lcd_ops
);
576 lcd_dev
->props
.max_contrast
= 255, printk(KERN_INFO
"Done.\n");
582 free_irq(info
->irq
, info
);
584 bfin_t350mcqb_request_ports(0);
586 fb_dealloc_cmap(&fbinfo
->cmap
);
588 kfree(fbinfo
->pseudo_palette
);
590 dma_free_coherent(NULL
, fbinfo
->fix
.smem_len
, info
->fb_buffer
,
593 framebuffer_release(fbinfo
);
597 platform_set_drvdata(pdev
, NULL
);
602 static int bfin_t350mcqb_remove(struct platform_device
*pdev
)
605 struct fb_info
*fbinfo
= platform_get_drvdata(pdev
);
606 struct bfin_t350mcqbfb_info
*info
= fbinfo
->par
;
609 free_irq(info
->irq
, info
);
611 if (info
->fb_buffer
!= NULL
)
612 dma_free_coherent(NULL
, fbinfo
->fix
.smem_len
, info
->fb_buffer
,
615 kfree(fbinfo
->pseudo_palette
);
616 fb_dealloc_cmap(&fbinfo
->cmap
);
618 #ifndef NO_BL_SUPPORT
619 lcd_device_unregister(lcd_dev
);
620 backlight_device_unregister(bl_dev
);
623 unregister_framebuffer(fbinfo
);
625 bfin_t350mcqb_request_ports(0);
627 printk(KERN_INFO DRIVER_NAME
": Unregister LCD driver.\n");
633 static int bfin_t350mcqb_suspend(struct platform_device
*pdev
, pm_message_t state
)
635 struct fb_info
*fbinfo
= platform_get_drvdata(pdev
);
636 struct bfin_t350mcqbfb_info
*info
= fbinfo
->par
;
638 bfin_t350mcqb_disable_ppi();
640 bfin_write_PPI_STATUS(0xFFFF);
645 static int bfin_t350mcqb_resume(struct platform_device
*pdev
)
647 struct fb_info
*fbinfo
= platform_get_drvdata(pdev
);
648 struct bfin_t350mcqbfb_info
*info
= fbinfo
->par
;
651 bfin_t350mcqb_enable_ppi();
656 #define bfin_t350mcqb_suspend NULL
657 #define bfin_t350mcqb_resume NULL
660 static struct platform_driver bfin_t350mcqb_driver
= {
661 .probe
= bfin_t350mcqb_probe
,
662 .remove
= bfin_t350mcqb_remove
,
663 .suspend
= bfin_t350mcqb_suspend
,
664 .resume
= bfin_t350mcqb_resume
,
667 .owner
= THIS_MODULE
,
671 static int __devinit
bfin_t350mcqb_driver_init(void)
673 return platform_driver_register(&bfin_t350mcqb_driver
);
676 static void __exit
bfin_t350mcqb_driver_cleanup(void)
678 platform_driver_unregister(&bfin_t350mcqb_driver
);
681 MODULE_DESCRIPTION("Blackfin TFT LCD Driver");
682 MODULE_LICENSE("GPL");
684 module_init(bfin_t350mcqb_driver_init
);
685 module_exit(bfin_t350mcqb_driver_cleanup
);