2 * BRIEF MODULE DESCRIPTION
5 * Copyright 2004-2005 AMD
9 * linux/drivers/video/skeletonfb.c -- Skeleton for a frame buffer device
10 * Created 28 Dec 1997 by Geert Uytterhoeven
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
20 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
24 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 * You should have received a copy of the GNU General Public License along
29 * with this program; if not, write to the Free Software Foundation, Inc.,
30 * 675 Mass Ave, Cambridge, MA 02139, USA.
33 #include <linux/module.h>
34 #include <linux/platform_device.h>
35 #include <linux/kernel.h>
36 #include <linux/errno.h>
37 #include <linux/string.h>
40 #include <linux/init.h>
41 #include <linux/interrupt.h>
42 #include <linux/ctype.h>
43 #include <linux/dma-mapping.h>
44 #include <linux/slab.h>
46 #include <asm/mach-au1x00/au1000.h>
50 #include <asm/mach-au1x00/au1xxx_pm.h>
53 #ifndef CONFIG_FB_AU1200_DEVS
54 #define CONFIG_FB_AU1200_DEVS 4
57 #define DRIVER_NAME "au1200fb"
58 #define DRIVER_DESC "LCD controller driver for AU1200 processors"
62 #define print_err(f, arg...) printk(KERN_ERR DRIVER_NAME ": " f "\n", ## arg)
63 #define print_warn(f, arg...) printk(KERN_WARNING DRIVER_NAME ": " f "\n", ## arg)
64 #define print_info(f, arg...) printk(KERN_INFO DRIVER_NAME ": " f "\n", ## arg)
67 #define print_dbg(f, arg...) printk(KERN_DEBUG __FILE__ ": " f "\n", ## arg)
69 #define print_dbg(f, arg...) do {} while (0)
73 #define AU1200_LCD_FB_IOCTL 0x46FF
75 #define AU1200_LCD_SET_SCREEN 1
76 #define AU1200_LCD_GET_SCREEN 2
77 #define AU1200_LCD_SET_WINDOW 3
78 #define AU1200_LCD_GET_WINDOW 4
79 #define AU1200_LCD_SET_PANEL 5
80 #define AU1200_LCD_GET_PANEL 6
82 #define SCREEN_SIZE (1<< 1)
83 #define SCREEN_BACKCOLOR (1<< 2)
84 #define SCREEN_BRIGHTNESS (1<< 3)
85 #define SCREEN_COLORKEY (1<< 4)
86 #define SCREEN_MASK (1<< 5)
88 struct au1200_lcd_global_regs_t
{
92 unsigned int backcolor
;
93 unsigned int brightness
;
94 unsigned int colorkey
;
96 unsigned int panel_choice
;
101 #define WIN_POSITION (1<< 0)
102 #define WIN_ALPHA_COLOR (1<< 1)
103 #define WIN_ALPHA_MODE (1<< 2)
104 #define WIN_PRIORITY (1<< 3)
105 #define WIN_CHANNEL (1<< 4)
106 #define WIN_BUFFER_FORMAT (1<< 5)
107 #define WIN_COLOR_ORDER (1<< 6)
108 #define WIN_PIXEL_ORDER (1<< 7)
109 #define WIN_SIZE (1<< 8)
110 #define WIN_COLORKEY_MODE (1<< 9)
111 #define WIN_DOUBLE_BUFFER_MODE (1<< 10)
112 #define WIN_RAM_ARRAY_MODE (1<< 11)
113 #define WIN_BUFFER_SCALE (1<< 12)
114 #define WIN_ENABLE (1<< 13)
116 struct au1200_lcd_window_regs_t
{
120 unsigned int alpha_color
;
121 unsigned int alpha_mode
;
122 unsigned int priority
;
123 unsigned int channel
;
124 unsigned int buffer_format
;
125 unsigned int color_order
;
126 unsigned int pixel_order
;
129 unsigned int colorkey_mode
;
130 unsigned int double_buffer_mode
;
131 unsigned int ram_array_mode
;
138 struct au1200_lcd_iodata_t
{
140 struct au1200_lcd_global_regs_t global
;
141 struct au1200_lcd_window_regs_t window
;
144 #if defined(__BIG_ENDIAN)
145 #define LCD_CONTROL_DEFAULT_PO LCD_CONTROL_PO_11
147 #define LCD_CONTROL_DEFAULT_PO LCD_CONTROL_PO_00
149 #define LCD_CONTROL_DEFAULT_SBPPF LCD_CONTROL_SBPPF_565
151 /* Private, per-framebuffer management information (independent of the panel itself) */
152 struct au1200fb_device
{
153 struct fb_info fb_info
; /* FB driver info record */
156 unsigned char* fb_mem
; /* FrameBuffer memory map */
161 static struct au1200fb_device _au1200fb_devices
[CONFIG_FB_AU1200_DEVS
];
162 /********************************************************************/
164 /* LCD controller restrictions */
165 #define AU1200_LCD_MAX_XRES 1280
166 #define AU1200_LCD_MAX_YRES 1024
167 #define AU1200_LCD_MAX_BPP 32
168 #define AU1200_LCD_MAX_CLK 96000000 /* fixme: this needs to go away ? */
169 #define AU1200_LCD_NBR_PALETTE_ENTRIES 256
171 /* Default number of visible screen buffer to allocate */
172 #define AU1200FB_NBR_VIDEO_BUFFERS 1
174 /********************************************************************/
176 static struct au1200_lcd
*lcd
= (struct au1200_lcd
*) AU1200_LCD_ADDR
;
177 static int window_index
= 2; /* default is zero */
178 static int panel_index
= 2; /* default is zero */
179 static struct window_settings
*win
;
180 static struct panel_settings
*panel
;
181 static int noblanking
= 1;
182 static int nohwcursor
= 0;
184 struct window_settings
{
185 unsigned char name
[64];
186 uint32 mode_backcolor
;
187 uint32 mode_colorkey
;
188 uint32 mode_colorkeymsk
;
194 uint32 mode_winctrl1
; /* winctrl1[FRM,CCO,PO,PIPE] */
195 uint32 mode_winenable
;
199 #if defined(__BIG_ENDIAN)
200 #define LCD_WINCTRL1_PO_16BPP LCD_WINCTRL1_PO_00
202 #define LCD_WINCTRL1_PO_16BPP LCD_WINCTRL1_PO_01
205 extern int board_au1200fb_panel_init (void);
206 extern int board_au1200fb_panel_shutdown (void);
209 int au1200fb_pm_callback(au1xxx_power_dev_t
*dev
,
210 au1xxx_request_t request
, void *data
);
211 au1xxx_power_dev_t
*LCD_pm_dev
;
215 * Default window configurations
217 static struct window_settings windows
[] = {
219 "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx",
220 /* mode_backcolor */ 0x006600ff,
221 /* mode_colorkey,msk*/ 0, 0,
224 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
225 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
226 LCD_WINCTRL1_PO_16BPP
,
227 /* mode_winenable*/ LCD_WINENABLE_WEN0
,
230 /* xres, yres, xpos, ypos */ 100, 100, 100, 100,
231 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
232 LCD_WINCTRL1_PO_16BPP
|
234 /* mode_winenable*/ LCD_WINENABLE_WEN1
,
237 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
238 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
239 LCD_WINCTRL1_PO_16BPP
,
240 /* mode_winenable*/ 0,
243 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
244 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
245 LCD_WINCTRL1_PO_16BPP
|
247 /* mode_winenable*/ 0,
253 "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx",
254 /* mode_backcolor */ 0x006600ff,
255 /* mode_colorkey,msk*/ 0, 0,
258 /* xres, yres, xpos, ypos */ 320, 240, 5, 5,
259 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_24BPP
|
261 /* mode_winenable*/ LCD_WINENABLE_WEN0
,
264 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
265 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
266 | LCD_WINCTRL1_PO_16BPP
,
267 /* mode_winenable*/ 0,
270 /* xres, yres, xpos, ypos */ 100, 100, 0, 0,
271 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
272 LCD_WINCTRL1_PO_16BPP
|
274 /* mode_winenable*/ 0/*LCD_WINENABLE_WEN2*/,
277 /* xres, yres, xpos, ypos */ 200, 25, 0, 0,
278 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
279 LCD_WINCTRL1_PO_16BPP
|
281 /* mode_winenable*/ 0,
286 "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx",
287 /* mode_backcolor */ 0x006600ff,
288 /* mode_colorkey,msk*/ 0, 0,
291 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
292 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
293 LCD_WINCTRL1_PO_16BPP
,
294 /* mode_winenable*/ LCD_WINENABLE_WEN0
,
297 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
298 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
299 LCD_WINCTRL1_PO_16BPP
,
300 /* mode_winenable*/ 0,
303 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
304 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_32BPP
|
305 LCD_WINCTRL1_PO_00
|LCD_WINCTRL1_PIPE
,
306 /* mode_winenable*/ 0/*LCD_WINENABLE_WEN2*/,
309 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
310 /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565
|
311 LCD_WINCTRL1_PO_16BPP
|
313 /* mode_winenable*/ 0,
317 /* Need VGA 640 @ 24bpp, @ 32bpp */
318 /* Need VGA 800 @ 24bpp, @ 32bpp */
319 /* Need VGA 1024 @ 24bpp, @ 32bpp */
323 * Controller configurations for various panels.
326 struct panel_settings
328 const char name
[25]; /* Full name <vendor>_<model> */
330 struct fb_monspecs monspecs
; /* FB monitor specs */
334 uint32 mode_horztiming
;
335 uint32 mode_verttiming
;
336 uint32 mode_clkcontrol
;
340 uint32 mode_fifoctrl
;
341 uint32 mode_toyclksrc
;
342 uint32 mode_backlight
;
344 int (*device_init
)(void);
345 int (*device_shutdown
)(void);
346 #define Xres min_xres
347 #define Yres min_yres
348 u32 min_xres
; /* Minimum horizontal resolution */
349 u32 max_xres
; /* Maximum horizontal resolution */
350 u32 min_yres
; /* Minimum vertical resolution */
351 u32 max_yres
; /* Maximum vertical resolution */
354 /********************************************************************/
355 /* fixme: Maybe a modedb for the CRT ? otherwise panels should be as-is */
357 /* List of panels known to work with the AU1200 LCD controller.
358 * To add a new panel, enter the same specifications as the
359 * Generic_TFT one, and MAKE SURE that it doesn't conflicts
360 * with the controller restrictions. Restrictions are:
362 * STN color panels: max_bpp <= 12
363 * STN mono panels: max_bpp <= 4
364 * TFT panels: max_bpp <= 16
368 static struct panel_settings known_lcd_panels
[] =
370 [0] = { /* QVGA 320x240 H:33.3kHz V:110Hz */
371 .name
= "QVGA_320x240",
381 .input
= FB_DISP_RGB
,
383 .mode_screen
= LCD_SCREEN_SX_N(320) |
384 LCD_SCREEN_SY_N(240),
385 .mode_horztiming
= 0x00c4623b,
386 .mode_verttiming
= 0x00502814,
387 .mode_clkcontrol
= 0x00020002, /* /4=24Mhz */
388 .mode_pwmdiv
= 0x00000000,
389 .mode_pwmhi
= 0x00000000,
390 .mode_outmask
= 0x00FFFFFF,
391 .mode_fifoctrl
= 0x2f2f2f2f,
392 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
393 .mode_backlight
= 0x00000000,
394 .mode_auxpll
= 8, /* 96MHz AUXPLL */
396 .device_shutdown
= NULL
,
401 [1] = { /* VGA 640x480 H:30.3kHz V:58Hz */
402 .name
= "VGA_640x480",
412 .input
= FB_DISP_RGB
,
414 .mode_screen
= 0x13f9df80,
415 .mode_horztiming
= 0x003c5859,
416 .mode_verttiming
= 0x00741201,
417 .mode_clkcontrol
= 0x00020001, /* /4=24Mhz */
418 .mode_pwmdiv
= 0x00000000,
419 .mode_pwmhi
= 0x00000000,
420 .mode_outmask
= 0x00FFFFFF,
421 .mode_fifoctrl
= 0x2f2f2f2f,
422 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
423 .mode_backlight
= 0x00000000,
424 .mode_auxpll
= 8, /* 96MHz AUXPLL */
426 .device_shutdown
= NULL
,
431 [2] = { /* SVGA 800x600 H:46.1kHz V:69Hz */
432 .name
= "SVGA_800x600",
442 .input
= FB_DISP_RGB
,
444 .mode_screen
= 0x18fa5780,
445 .mode_horztiming
= 0x00dc7e77,
446 .mode_verttiming
= 0x00584805,
447 .mode_clkcontrol
= 0x00020000, /* /2=48Mhz */
448 .mode_pwmdiv
= 0x00000000,
449 .mode_pwmhi
= 0x00000000,
450 .mode_outmask
= 0x00FFFFFF,
451 .mode_fifoctrl
= 0x2f2f2f2f,
452 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
453 .mode_backlight
= 0x00000000,
454 .mode_auxpll
= 8, /* 96MHz AUXPLL */
456 .device_shutdown
= NULL
,
461 [3] = { /* XVGA 1024x768 H:56.2kHz V:70Hz */
462 .name
= "XVGA_1024x768",
472 .input
= FB_DISP_RGB
,
474 .mode_screen
= 0x1ffaff80,
475 .mode_horztiming
= 0x007d0e57,
476 .mode_verttiming
= 0x00740a01,
477 .mode_clkcontrol
= 0x000A0000, /* /1 */
478 .mode_pwmdiv
= 0x00000000,
479 .mode_pwmhi
= 0x00000000,
480 .mode_outmask
= 0x00FFFFFF,
481 .mode_fifoctrl
= 0x2f2f2f2f,
482 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
483 .mode_backlight
= 0x00000000,
484 .mode_auxpll
= 6, /* 72MHz AUXPLL */
486 .device_shutdown
= NULL
,
491 [4] = { /* XVGA XVGA 1280x1024 H:68.5kHz V:65Hz */
492 .name
= "XVGA_1280x1024",
502 .input
= FB_DISP_RGB
,
504 .mode_screen
= 0x27fbff80,
505 .mode_horztiming
= 0x00cdb2c7,
506 .mode_verttiming
= 0x00600002,
507 .mode_clkcontrol
= 0x000A0000, /* /1 */
508 .mode_pwmdiv
= 0x00000000,
509 .mode_pwmhi
= 0x00000000,
510 .mode_outmask
= 0x00FFFFFF,
511 .mode_fifoctrl
= 0x2f2f2f2f,
512 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
513 .mode_backlight
= 0x00000000,
514 .mode_auxpll
= 10, /* 120MHz AUXPLL */
516 .device_shutdown
= NULL
,
521 [5] = { /* Samsung 1024x768 TFT */
522 .name
= "Samsung_1024x768_TFT",
532 .input
= FB_DISP_RGB
,
534 .mode_screen
= 0x1ffaff80,
535 .mode_horztiming
= 0x018cc677,
536 .mode_verttiming
= 0x00241217,
537 .mode_clkcontrol
= 0x00000000, /* SCB 0x1 /4=24Mhz */
538 .mode_pwmdiv
= 0x8000063f, /* SCB 0x0 */
539 .mode_pwmhi
= 0x03400000, /* SCB 0x0 */
540 .mode_outmask
= 0x00FFFFFF,
541 .mode_fifoctrl
= 0x2f2f2f2f,
542 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
543 .mode_backlight
= 0x00000000,
544 .mode_auxpll
= 8, /* 96MHz AUXPLL */
545 .device_init
= board_au1200fb_panel_init
,
546 .device_shutdown
= board_au1200fb_panel_shutdown
,
551 [6] = { /* Toshiba 640x480 TFT */
552 .name
= "Toshiba_640x480_TFT",
562 .input
= FB_DISP_RGB
,
564 .mode_screen
= LCD_SCREEN_SX_N(640) |
565 LCD_SCREEN_SY_N(480),
566 .mode_horztiming
= LCD_HORZTIMING_HPW_N(96) |
567 LCD_HORZTIMING_HND1_N(13) | LCD_HORZTIMING_HND2_N(51),
568 .mode_verttiming
= LCD_VERTTIMING_VPW_N(2) |
569 LCD_VERTTIMING_VND1_N(11) | LCD_VERTTIMING_VND2_N(32),
570 .mode_clkcontrol
= 0x00000000, /* /4=24Mhz */
571 .mode_pwmdiv
= 0x8000063f,
572 .mode_pwmhi
= 0x03400000,
573 .mode_outmask
= 0x00fcfcfc,
574 .mode_fifoctrl
= 0x2f2f2f2f,
575 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
576 .mode_backlight
= 0x00000000,
577 .mode_auxpll
= 8, /* 96MHz AUXPLL */
578 .device_init
= board_au1200fb_panel_init
,
579 .device_shutdown
= board_au1200fb_panel_shutdown
,
584 [7] = { /* Sharp 320x240 TFT */
585 .name
= "Sharp_320x240_TFT",
595 .input
= FB_DISP_RGB
,
597 .mode_screen
= LCD_SCREEN_SX_N(320) |
598 LCD_SCREEN_SY_N(240),
599 .mode_horztiming
= LCD_HORZTIMING_HPW_N(60) |
600 LCD_HORZTIMING_HND1_N(13) | LCD_HORZTIMING_HND2_N(2),
601 .mode_verttiming
= LCD_VERTTIMING_VPW_N(2) |
602 LCD_VERTTIMING_VND1_N(2) | LCD_VERTTIMING_VND2_N(5),
603 .mode_clkcontrol
= LCD_CLKCONTROL_PCD_N(7), /*16=6Mhz*/
604 .mode_pwmdiv
= 0x8000063f,
605 .mode_pwmhi
= 0x03400000,
606 .mode_outmask
= 0x00fcfcfc,
607 .mode_fifoctrl
= 0x2f2f2f2f,
608 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
609 .mode_backlight
= 0x00000000,
610 .mode_auxpll
= 8, /* 96MHz AUXPLL */
611 .device_init
= board_au1200fb_panel_init
,
612 .device_shutdown
= board_au1200fb_panel_shutdown
,
617 [8] = { /* Toppoly TD070WGCB2 7" 856x480 TFT */
618 .name
= "Toppoly_TD070WGCB2",
628 .input
= FB_DISP_RGB
,
630 .mode_screen
= LCD_SCREEN_SX_N(856) |
631 LCD_SCREEN_SY_N(480),
632 .mode_horztiming
= LCD_HORZTIMING_HND2_N(43) |
633 LCD_HORZTIMING_HND1_N(43) | LCD_HORZTIMING_HPW_N(114),
634 .mode_verttiming
= LCD_VERTTIMING_VND2_N(20) |
635 LCD_VERTTIMING_VND1_N(21) | LCD_VERTTIMING_VPW_N(4),
636 .mode_clkcontrol
= 0x00020001, /* /4=24Mhz */
637 .mode_pwmdiv
= 0x8000063f,
638 .mode_pwmhi
= 0x03400000,
639 .mode_outmask
= 0x00fcfcfc,
640 .mode_fifoctrl
= 0x2f2f2f2f,
641 .mode_toyclksrc
= 0x00000004, /* AUXPLL directly */
642 .mode_backlight
= 0x00000000,
643 .mode_auxpll
= 8, /* 96MHz AUXPLL */
644 .device_init
= board_au1200fb_panel_init
,
645 .device_shutdown
= board_au1200fb_panel_shutdown
,
651 #define NUM_PANELS (ARRAY_SIZE(known_lcd_panels))
653 /********************************************************************/
656 static int set_brightness(unsigned int brightness
)
658 unsigned int hi1
, divider
;
660 /* limit brightness pwm duty to >= 30/1600 */
661 if (brightness
< 30) {
664 divider
= (lcd
->pwmdiv
& 0x3FFFF) + 1;
665 hi1
= (lcd
->pwmhi
>> 16) + 1;
666 hi1
= (((brightness
& 0xFF) + 1) * divider
>> 8);
667 lcd
->pwmhi
&= 0xFFFF;
668 lcd
->pwmhi
|= (hi1
<< 16);
672 #endif /* CONFIG_PM */
674 static int winbpp (unsigned int winctrl1
)
678 /* how many bits are needed for each pixel format */
679 switch (winctrl1
& LCD_WINCTRL1_FRM
) {
680 case LCD_WINCTRL1_FRM_1BPP
:
683 case LCD_WINCTRL1_FRM_2BPP
:
686 case LCD_WINCTRL1_FRM_4BPP
:
689 case LCD_WINCTRL1_FRM_8BPP
:
692 case LCD_WINCTRL1_FRM_12BPP
:
693 case LCD_WINCTRL1_FRM_16BPP655
:
694 case LCD_WINCTRL1_FRM_16BPP565
:
695 case LCD_WINCTRL1_FRM_16BPP556
:
696 case LCD_WINCTRL1_FRM_16BPPI1555
:
697 case LCD_WINCTRL1_FRM_16BPPI5551
:
698 case LCD_WINCTRL1_FRM_16BPPA1555
:
699 case LCD_WINCTRL1_FRM_16BPPA5551
:
702 case LCD_WINCTRL1_FRM_24BPP
:
703 case LCD_WINCTRL1_FRM_32BPP
:
711 static int fbinfo2index (struct fb_info
*fb_info
)
715 for (i
= 0; i
< CONFIG_FB_AU1200_DEVS
; ++i
) {
716 if (fb_info
== (struct fb_info
*)(&_au1200fb_devices
[i
].fb_info
))
719 printk("au1200fb: ERROR: fbinfo2index failed!\n");
723 static int au1200_setlocation (struct au1200fb_device
*fbdev
, int plane
,
726 uint32 winctrl0
, winctrl1
, winenable
, fb_offset
= 0;
729 /* FIX!!! NOT CHECKING FOR COMPLETE OFFSCREEN YET */
731 winctrl0
= lcd
->window
[plane
].winctrl0
;
732 winctrl1
= lcd
->window
[plane
].winctrl1
;
733 winctrl0
&= (LCD_WINCTRL0_A
| LCD_WINCTRL0_AEN
);
734 winctrl1
&= ~(LCD_WINCTRL1_SZX
| LCD_WINCTRL1_SZY
);
736 /* Check for off-screen adjustments */
737 xsz
= win
->w
[plane
].xres
;
738 ysz
= win
->w
[plane
].yres
;
739 if ((xpos
+ win
->w
[plane
].xres
) > panel
->Xres
) {
740 /* Off-screen to the right */
741 xsz
= panel
->Xres
- xpos
; /* off by 1 ??? */
742 /*printk("off screen right\n");*/
745 if ((ypos
+ win
->w
[plane
].yres
) > panel
->Yres
) {
746 /* Off-screen to the bottom */
747 ysz
= panel
->Yres
- ypos
; /* off by 1 ??? */
748 /*printk("off screen bottom\n");*/
752 /* Off-screen to the left */
753 xsz
= win
->w
[plane
].xres
+ xpos
;
754 fb_offset
+= (((0 - xpos
) * winbpp(lcd
->window
[plane
].winctrl1
))/8);
756 /*printk("off screen left\n");*/
760 /* Off-screen to the top */
761 ysz
= win
->w
[plane
].yres
+ ypos
;
762 /* fixme: fb_offset += ((0-ypos)*fb_pars[plane].line_length); */
764 /*printk("off screen top\n");*/
767 /* record settings */
768 win
->w
[plane
].xpos
= xpos
;
769 win
->w
[plane
].ypos
= ypos
;
773 winctrl0
|= (xpos
<< 21);
774 winctrl0
|= (ypos
<< 10);
775 winctrl1
|= (xsz
<< 11);
776 winctrl1
|= (ysz
<< 0);
778 /* Disable the window while making changes, then restore WINEN */
779 winenable
= lcd
->winenable
& (1 << plane
);
781 lcd
->winenable
&= ~(1 << plane
);
782 lcd
->window
[plane
].winctrl0
= winctrl0
;
783 lcd
->window
[plane
].winctrl1
= winctrl1
;
784 lcd
->window
[plane
].winbuf0
=
785 lcd
->window
[plane
].winbuf1
= fbdev
->fb_phys
;
786 lcd
->window
[plane
].winbufctrl
= 0; /* select winbuf0 */
787 lcd
->winenable
|= winenable
;
793 static void au1200_setpanel (struct panel_settings
*newpanel
)
796 * Perform global setup/init of LCD controller
800 /* Make sure all windows disabled */
801 winenable
= lcd
->winenable
;
805 * Ensure everything is disabled before reconfiguring
807 if (lcd
->screen
& LCD_SCREEN_SEN
) {
808 /* Wait for vertical sync period */
809 lcd
->intstatus
= LCD_INT_SS
;
810 while ((lcd
->intstatus
& LCD_INT_SS
) == 0) {
814 lcd
->screen
&= ~LCD_SCREEN_SEN
; /*disable the controller*/
817 lcd
->intstatus
= lcd
->intstatus
; /*clear interrupts*/
819 /*wait for controller to shut down*/
820 } while ((lcd
->intstatus
& LCD_INT_SD
) == 0);
822 /* Call shutdown of current panel (if up) */
823 /* this must occur last, because if an external clock is driving
824 the controller, the clock cannot be turned off before first
825 shutting down the controller.
827 if (panel
->device_shutdown
!= NULL
)
828 panel
->device_shutdown();
831 /* Newpanel == NULL indicates a shutdown operation only */
832 if (newpanel
== NULL
)
837 printk("Panel(%s), %dx%d\n", panel
->name
, panel
->Xres
, panel
->Yres
);
840 * Setup clocking if internal LCD clock source (assumes sys_auxpll valid)
842 if (!(panel
->mode_clkcontrol
& LCD_CLKCONTROL_EXT
))
845 au_writel(panel
->mode_auxpll
, SYS_AUXPLL
);
846 sys_clksrc
= au_readl(SYS_CLKSRC
) & ~0x0000001f;
847 sys_clksrc
|= panel
->mode_toyclksrc
;
848 au_writel(sys_clksrc
, SYS_CLKSRC
);
852 * Configure panel timings
854 lcd
->screen
= panel
->mode_screen
;
855 lcd
->horztiming
= panel
->mode_horztiming
;
856 lcd
->verttiming
= panel
->mode_verttiming
;
857 lcd
->clkcontrol
= panel
->mode_clkcontrol
;
858 lcd
->pwmdiv
= panel
->mode_pwmdiv
;
859 lcd
->pwmhi
= panel
->mode_pwmhi
;
860 lcd
->outmask
= panel
->mode_outmask
;
861 lcd
->fifoctrl
= panel
->mode_fifoctrl
;
864 /* fixme: Check window settings to make sure still valid
865 * for new geometry */
867 au1200_setlocation(fbdev
, 0, win
->w
[0].xpos
, win
->w
[0].ypos
);
868 au1200_setlocation(fbdev
, 1, win
->w
[1].xpos
, win
->w
[1].ypos
);
869 au1200_setlocation(fbdev
, 2, win
->w
[2].xpos
, win
->w
[2].ypos
);
870 au1200_setlocation(fbdev
, 3, win
->w
[3].xpos
, win
->w
[3].ypos
);
872 lcd
->winenable
= winenable
;
875 * Re-enable screen now that it is configured
877 lcd
->screen
|= LCD_SCREEN_SEN
;
880 /* Call init of panel */
881 if (panel
->device_init
!= NULL
) panel
->device_init();
883 /* FIX!!!! not appropriate on panel change!!! Global setup/init */
886 lcd
->backcolor
= win
->mode_backcolor
;
888 /* Setup Color Key - FIX!!! */
889 lcd
->colorkey
= win
->mode_colorkey
;
890 lcd
->colorkeymsk
= win
->mode_colorkeymsk
;
892 /* Setup HWCursor - FIX!!! Need to support this eventually */
893 lcd
->hwc
.cursorctrl
= 0;
894 lcd
->hwc
.cursorpos
= 0;
895 lcd
->hwc
.cursorcolor0
= 0;
896 lcd
->hwc
.cursorcolor1
= 0;
897 lcd
->hwc
.cursorcolor2
= 0;
898 lcd
->hwc
.cursorcolor3
= 0;
902 #define D(X) printk("%25s: %08X\n", #X, X)
911 D(lcd
->window
[0].winctrl0
);
912 D(lcd
->window
[0].winctrl1
);
913 D(lcd
->window
[0].winctrl2
);
914 D(lcd
->window
[0].winbuf0
);
915 D(lcd
->window
[0].winbuf1
);
916 D(lcd
->window
[0].winbufctrl
);
917 D(lcd
->window
[1].winctrl0
);
918 D(lcd
->window
[1].winctrl1
);
919 D(lcd
->window
[1].winctrl2
);
920 D(lcd
->window
[1].winbuf0
);
921 D(lcd
->window
[1].winbuf1
);
922 D(lcd
->window
[1].winbufctrl
);
923 D(lcd
->window
[2].winctrl0
);
924 D(lcd
->window
[2].winctrl1
);
925 D(lcd
->window
[2].winctrl2
);
926 D(lcd
->window
[2].winbuf0
);
927 D(lcd
->window
[2].winbuf1
);
928 D(lcd
->window
[2].winbufctrl
);
929 D(lcd
->window
[3].winctrl0
);
930 D(lcd
->window
[3].winctrl1
);
931 D(lcd
->window
[3].winctrl2
);
932 D(lcd
->window
[3].winbuf0
);
933 D(lcd
->window
[3].winbuf1
);
934 D(lcd
->window
[3].winbufctrl
);
942 D(lcd
->hwc
.cursorctrl
);
943 D(lcd
->hwc
.cursorpos
);
944 D(lcd
->hwc
.cursorcolor0
);
945 D(lcd
->hwc
.cursorcolor1
);
946 D(lcd
->hwc
.cursorcolor2
);
947 D(lcd
->hwc
.cursorcolor3
);
951 static void au1200_setmode(struct au1200fb_device
*fbdev
)
953 int plane
= fbdev
->plane
;
954 /* Window/plane setup */
955 lcd
->window
[plane
].winctrl1
= ( 0
956 | LCD_WINCTRL1_PRI_N(plane
)
957 | win
->w
[plane
].mode_winctrl1
/* FRM,CCO,PO,PIPE */
960 au1200_setlocation(fbdev
, plane
, win
->w
[plane
].xpos
, win
->w
[plane
].ypos
);
962 lcd
->window
[plane
].winctrl2
= ( 0
963 | LCD_WINCTRL2_CKMODE_00
965 | LCD_WINCTRL2_BX_N( fbdev
->fb_info
.fix
.line_length
)
969 lcd
->winenable
|= win
->w
[plane
].mode_winenable
;
976 /*#define panel_is_dual(panel) ((panel->mode_screen & LCD_SCREEN_PT) == LCD_SCREEN_PT_010)*/
977 /*#define panel_is_active(panel)((panel->mode_screen & LCD_SCREEN_PT) == LCD_SCREEN_PT_010)*/
979 #define panel_is_color(panel) ((panel->mode_screen & LCD_SCREEN_PT) <= LCD_SCREEN_PT_CDSTN)
981 /* Bitfields format supported by the controller. */
982 static struct fb_bitfield rgb_bitfields
[][4] = {
983 /* Red, Green, Blue, Transp */
984 [LCD_WINCTRL1_FRM_16BPP655
>> 25] =
985 { { 10, 6, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
987 [LCD_WINCTRL1_FRM_16BPP565
>> 25] =
988 { { 11, 5, 0 }, { 5, 6, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
990 [LCD_WINCTRL1_FRM_16BPP556
>> 25] =
991 { { 11, 5, 0 }, { 6, 5, 0 }, { 0, 6, 0 }, { 0, 0, 0 } },
993 [LCD_WINCTRL1_FRM_16BPPI1555
>> 25] =
994 { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
996 [LCD_WINCTRL1_FRM_16BPPI5551
>> 25] =
997 { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 0, 0 } },
999 [LCD_WINCTRL1_FRM_16BPPA1555
>> 25] =
1000 { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 15, 1, 0 } },
1002 [LCD_WINCTRL1_FRM_16BPPA5551
>> 25] =
1003 { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 1, 0 } },
1005 [LCD_WINCTRL1_FRM_24BPP
>> 25] =
1006 { { 16, 8, 0 }, { 8, 8, 0 }, { 0, 8, 0 }, { 0, 0, 0 } },
1008 [LCD_WINCTRL1_FRM_32BPP
>> 25] =
1009 { { 16, 8, 0 }, { 8, 8, 0 }, { 0, 8, 0 }, { 24, 0, 0 } },
1012 /*-------------------------------------------------------------------------*/
1016 static void au1200fb_update_fbinfo(struct fb_info
*fbi
)
1018 /* FIX!!!! This also needs to take the window pixel format into account!!! */
1020 /* Update var-dependent FB info */
1021 if (panel_is_color(panel
)) {
1022 if (fbi
->var
.bits_per_pixel
<= 8) {
1024 fbi
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
1025 fbi
->fix
.line_length
= fbi
->var
.xres_virtual
/
1026 (8/fbi
->var
.bits_per_pixel
);
1028 /* non-palettized */
1029 fbi
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
1030 fbi
->fix
.line_length
= fbi
->var
.xres_virtual
* (fbi
->var
.bits_per_pixel
/ 8);
1033 /* mono FIX!!! mono 8 and 4 bits */
1034 fbi
->fix
.visual
= FB_VISUAL_MONO10
;
1035 fbi
->fix
.line_length
= fbi
->var
.xres_virtual
/ 8;
1038 fbi
->screen_size
= fbi
->fix
.line_length
* fbi
->var
.yres_virtual
;
1039 print_dbg("line length: %d\n", fbi
->fix
.line_length
);
1040 print_dbg("bits_per_pixel: %d\n", fbi
->var
.bits_per_pixel
);
1043 /*-------------------------------------------------------------------------*/
1045 /* AU1200 framebuffer driver */
1048 * Validate var settings with hardware restrictions and modify it if necessary
1050 static int au1200fb_fb_check_var(struct fb_var_screeninfo
*var
,
1051 struct fb_info
*fbi
)
1053 struct au1200fb_device
*fbdev
= (struct au1200fb_device
*)fbi
;
1055 int screen_size
, plane
;
1057 plane
= fbdev
->plane
;
1059 /* Make sure that the mode respect all LCD controller and
1060 * panel restrictions. */
1061 var
->xres
= win
->w
[plane
].xres
;
1062 var
->yres
= win
->w
[plane
].yres
;
1064 /* No need for virtual resolution support */
1065 var
->xres_virtual
= var
->xres
;
1066 var
->yres_virtual
= var
->yres
;
1068 var
->bits_per_pixel
= winbpp(win
->w
[plane
].mode_winctrl1
);
1070 screen_size
= var
->xres_virtual
* var
->yres_virtual
;
1071 if (var
->bits_per_pixel
> 8) screen_size
*= (var
->bits_per_pixel
/ 8);
1072 else screen_size
/= (8/var
->bits_per_pixel
);
1074 if (fbdev
->fb_len
< screen_size
)
1075 return -EINVAL
; /* Virtual screen is to big, abort */
1077 /* FIX!!!! what are the implicaitons of ignoring this for windows ??? */
1078 /* The max LCD clock is fixed to 48MHz (value of AUX_CLK). The pixel
1079 * clock can only be obtain by dividing this value by an even integer.
1080 * Fallback to a slower pixel clock if necessary. */
1081 pixclock
= max((u32
)(PICOS2KHZ(var
->pixclock
) * 1000), fbi
->monspecs
.dclkmin
);
1082 pixclock
= min3(pixclock
, fbi
->monspecs
.dclkmax
, (u32
)AU1200_LCD_MAX_CLK
/2);
1084 if (AU1200_LCD_MAX_CLK
% pixclock
) {
1085 int diff
= AU1200_LCD_MAX_CLK
% pixclock
;
1089 var
->pixclock
= KHZ2PICOS(pixclock
/1000);
1091 if (!panel_is_active(panel
)) {
1092 int pcd
= AU1200_LCD_MAX_CLK
/ (pixclock
* 2) - 1;
1094 if (!panel_is_color(panel
)
1095 && (panel
->control_base
& LCD_CONTROL_MPI
) && (pcd
< 3)) {
1096 /* STN 8bit mono panel support is up to 6MHz pixclock */
1097 var
->pixclock
= KHZ2PICOS(6000);
1099 /* Other STN panel support is up to 12MHz */
1100 var
->pixclock
= KHZ2PICOS(12000);
1104 /* Set bitfield accordingly */
1105 switch (var
->bits_per_pixel
) {
1108 /* 16bpp True color.
1109 * These must be set to MATCH WINCTRL[FORM] */
1111 idx
= (win
->w
[0].mode_winctrl1
& LCD_WINCTRL1_FRM
) >> 25;
1112 var
->red
= rgb_bitfields
[idx
][0];
1113 var
->green
= rgb_bitfields
[idx
][1];
1114 var
->blue
= rgb_bitfields
[idx
][2];
1115 var
->transp
= rgb_bitfields
[idx
][3];
1121 /* 32bpp True color.
1122 * These must be set to MATCH WINCTRL[FORM] */
1124 idx
= (win
->w
[0].mode_winctrl1
& LCD_WINCTRL1_FRM
) >> 25;
1125 var
->red
= rgb_bitfields
[idx
][0];
1126 var
->green
= rgb_bitfields
[idx
][1];
1127 var
->blue
= rgb_bitfields
[idx
][2];
1128 var
->transp
= rgb_bitfields
[idx
][3];
1132 print_dbg("Unsupported depth %dbpp", var
->bits_per_pixel
);
1140 * Set hardware with var settings. This will enable the controller with a
1141 * specific mode, normally validated with the fb_check_var method
1143 static int au1200fb_fb_set_par(struct fb_info
*fbi
)
1145 struct au1200fb_device
*fbdev
= (struct au1200fb_device
*)fbi
;
1147 au1200fb_update_fbinfo(fbi
);
1148 au1200_setmode(fbdev
);
1154 * Set color in LCD palette.
1156 static int au1200fb_fb_setcolreg(unsigned regno
, unsigned red
, unsigned green
,
1157 unsigned blue
, unsigned transp
, struct fb_info
*fbi
)
1159 volatile u32
*palette
= lcd
->palette
;
1162 if (regno
> (AU1200_LCD_NBR_PALETTE_ENTRIES
- 1))
1165 if (fbi
->var
.grayscale
) {
1166 /* Convert color to grayscale */
1167 red
= green
= blue
=
1168 (19595 * red
+ 38470 * green
+ 7471 * blue
) >> 16;
1171 if (fbi
->fix
.visual
== FB_VISUAL_TRUECOLOR
) {
1172 /* Place color in the pseudopalette */
1176 palette
= (u32
*) fbi
->pseudo_palette
;
1178 red
>>= (16 - fbi
->var
.red
.length
);
1179 green
>>= (16 - fbi
->var
.green
.length
);
1180 blue
>>= (16 - fbi
->var
.blue
.length
);
1182 value
= (red
<< fbi
->var
.red
.offset
) |
1183 (green
<< fbi
->var
.green
.offset
)|
1184 (blue
<< fbi
->var
.blue
.offset
);
1187 } else if (1 /*FIX!!! panel_is_active(fbdev->panel)*/) {
1188 /* COLOR TFT PALLETTIZED (use RGB 565) */
1189 value
= (red
& 0xF800)|((green
>> 5) &
1190 0x07E0)|((blue
>> 11) & 0x001F);
1193 } else if (0 /*panel_is_color(fbdev->panel)*/) {
1194 /* COLOR STN MODE */
1198 /* MONOCHROME MODE */
1199 value
= (green
>> 12) & 0x000F;
1203 palette
[regno
] = value
;
1209 * Blank the screen. Depending on the mode, the screen will be
1210 * activated with the backlight color, or desactivated
1212 static int au1200fb_fb_blank(int blank_mode
, struct fb_info
*fbi
)
1214 /* Short-circuit screen blanking */
1218 switch (blank_mode
) {
1220 case FB_BLANK_UNBLANK
:
1221 case FB_BLANK_NORMAL
:
1222 /* printk("turn on panel\n"); */
1223 au1200_setpanel(panel
);
1225 case FB_BLANK_VSYNC_SUSPEND
:
1226 case FB_BLANK_HSYNC_SUSPEND
:
1227 case FB_BLANK_POWERDOWN
:
1228 /* printk("turn off panel\n"); */
1229 au1200_setpanel(NULL
);
1236 /* FB_BLANK_NORMAL is a soft blank */
1237 return (blank_mode
== FB_BLANK_NORMAL
) ? -EINVAL
: 0;
1241 * Map video memory in user space. We don't use the generic fb_mmap
1242 * method mainly to allow the use of the TLB streaming flag (CCA=6)
1244 static int au1200fb_fb_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
)
1248 unsigned long start
=0, off
;
1249 struct au1200fb_device
*fbdev
= (struct au1200fb_device
*) info
;
1252 au1xxx_pm_access(LCD_pm_dev
);
1255 if (vma
->vm_pgoff
> (~0UL >> PAGE_SHIFT
)) {
1259 start
= fbdev
->fb_phys
& PAGE_MASK
;
1260 len
= PAGE_ALIGN((start
& ~PAGE_MASK
) + fbdev
->fb_len
);
1262 off
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1264 if ((vma
->vm_end
- vma
->vm_start
+ off
) > len
) {
1269 vma
->vm_pgoff
= off
>> PAGE_SHIFT
;
1271 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
1272 pgprot_val(vma
->vm_page_prot
) |= _CACHE_MASK
; /* CCA=7 */
1274 vma
->vm_flags
|= VM_IO
;
1276 return io_remap_pfn_range(vma
, vma
->vm_start
, off
>> PAGE_SHIFT
,
1277 vma
->vm_end
- vma
->vm_start
,
1283 static void set_global(u_int cmd
, struct au1200_lcd_global_regs_t
*pdata
)
1286 unsigned int hi1
, divider
;
1288 /* SCREEN_SIZE: user cannot reset size, must switch panel choice */
1290 if (pdata
->flags
& SCREEN_BACKCOLOR
)
1291 lcd
->backcolor
= pdata
->backcolor
;
1293 if (pdata
->flags
& SCREEN_BRIGHTNESS
) {
1295 // limit brightness pwm duty to >= 30/1600
1296 if (pdata
->brightness
< 30) {
1297 pdata
->brightness
= 30;
1299 divider
= (lcd
->pwmdiv
& 0x3FFFF) + 1;
1300 hi1
= (lcd
->pwmhi
>> 16) + 1;
1301 hi1
= (((pdata
->brightness
& 0xFF)+1) * divider
>> 8);
1302 lcd
->pwmhi
&= 0xFFFF;
1303 lcd
->pwmhi
|= (hi1
<< 16);
1306 if (pdata
->flags
& SCREEN_COLORKEY
)
1307 lcd
->colorkey
= pdata
->colorkey
;
1309 if (pdata
->flags
& SCREEN_MASK
)
1310 lcd
->colorkeymsk
= pdata
->mask
;
1314 static void get_global(u_int cmd
, struct au1200_lcd_global_regs_t
*pdata
)
1316 unsigned int hi1
, divider
;
1318 pdata
->xsize
= ((lcd
->screen
& LCD_SCREEN_SX
) >> 19) + 1;
1319 pdata
->ysize
= ((lcd
->screen
& LCD_SCREEN_SY
) >> 8) + 1;
1321 pdata
->backcolor
= lcd
->backcolor
;
1322 pdata
->colorkey
= lcd
->colorkey
;
1323 pdata
->mask
= lcd
->colorkeymsk
;
1326 hi1
= (lcd
->pwmhi
>> 16) + 1;
1327 divider
= (lcd
->pwmdiv
& 0x3FFFF) + 1;
1328 pdata
->brightness
= ((hi1
<< 8) / divider
) - 1;
1332 static void set_window(unsigned int plane
,
1333 struct au1200_lcd_window_regs_t
*pdata
)
1335 unsigned int val
, bpp
;
1337 /* Window control register 0 */
1338 if (pdata
->flags
& WIN_POSITION
) {
1339 val
= lcd
->window
[plane
].winctrl0
& ~(LCD_WINCTRL0_OX
|
1341 val
|= ((pdata
->xpos
<< 21) & LCD_WINCTRL0_OX
);
1342 val
|= ((pdata
->ypos
<< 10) & LCD_WINCTRL0_OY
);
1343 lcd
->window
[plane
].winctrl0
= val
;
1345 if (pdata
->flags
& WIN_ALPHA_COLOR
) {
1346 val
= lcd
->window
[plane
].winctrl0
& ~(LCD_WINCTRL0_A
);
1347 val
|= ((pdata
->alpha_color
<< 2) & LCD_WINCTRL0_A
);
1348 lcd
->window
[plane
].winctrl0
= val
;
1350 if (pdata
->flags
& WIN_ALPHA_MODE
) {
1351 val
= lcd
->window
[plane
].winctrl0
& ~(LCD_WINCTRL0_AEN
);
1352 val
|= ((pdata
->alpha_mode
<< 1) & LCD_WINCTRL0_AEN
);
1353 lcd
->window
[plane
].winctrl0
= val
;
1356 /* Window control register 1 */
1357 if (pdata
->flags
& WIN_PRIORITY
) {
1358 val
= lcd
->window
[plane
].winctrl1
& ~(LCD_WINCTRL1_PRI
);
1359 val
|= ((pdata
->priority
<< 30) & LCD_WINCTRL1_PRI
);
1360 lcd
->window
[plane
].winctrl1
= val
;
1362 if (pdata
->flags
& WIN_CHANNEL
) {
1363 val
= lcd
->window
[plane
].winctrl1
& ~(LCD_WINCTRL1_PIPE
);
1364 val
|= ((pdata
->channel
<< 29) & LCD_WINCTRL1_PIPE
);
1365 lcd
->window
[plane
].winctrl1
= val
;
1367 if (pdata
->flags
& WIN_BUFFER_FORMAT
) {
1368 val
= lcd
->window
[plane
].winctrl1
& ~(LCD_WINCTRL1_FRM
);
1369 val
|= ((pdata
->buffer_format
<< 25) & LCD_WINCTRL1_FRM
);
1370 lcd
->window
[plane
].winctrl1
= val
;
1372 if (pdata
->flags
& WIN_COLOR_ORDER
) {
1373 val
= lcd
->window
[plane
].winctrl1
& ~(LCD_WINCTRL1_CCO
);
1374 val
|= ((pdata
->color_order
<< 24) & LCD_WINCTRL1_CCO
);
1375 lcd
->window
[plane
].winctrl1
= val
;
1377 if (pdata
->flags
& WIN_PIXEL_ORDER
) {
1378 val
= lcd
->window
[plane
].winctrl1
& ~(LCD_WINCTRL1_PO
);
1379 val
|= ((pdata
->pixel_order
<< 22) & LCD_WINCTRL1_PO
);
1380 lcd
->window
[plane
].winctrl1
= val
;
1382 if (pdata
->flags
& WIN_SIZE
) {
1383 val
= lcd
->window
[plane
].winctrl1
& ~(LCD_WINCTRL1_SZX
|
1385 val
|= (((pdata
->xsize
<< 11) - 1) & LCD_WINCTRL1_SZX
);
1386 val
|= (((pdata
->ysize
) - 1) & LCD_WINCTRL1_SZY
);
1387 lcd
->window
[plane
].winctrl1
= val
;
1388 /* program buffer line width */
1389 bpp
= winbpp(val
) / 8;
1390 val
= lcd
->window
[plane
].winctrl2
& ~(LCD_WINCTRL2_BX
);
1391 val
|= (((pdata
->xsize
* bpp
) << 8) & LCD_WINCTRL2_BX
);
1392 lcd
->window
[plane
].winctrl2
= val
;
1395 /* Window control register 2 */
1396 if (pdata
->flags
& WIN_COLORKEY_MODE
) {
1397 val
= lcd
->window
[plane
].winctrl2
& ~(LCD_WINCTRL2_CKMODE
);
1398 val
|= ((pdata
->colorkey_mode
<< 24) & LCD_WINCTRL2_CKMODE
);
1399 lcd
->window
[plane
].winctrl2
= val
;
1401 if (pdata
->flags
& WIN_DOUBLE_BUFFER_MODE
) {
1402 val
= lcd
->window
[plane
].winctrl2
& ~(LCD_WINCTRL2_DBM
);
1403 val
|= ((pdata
->double_buffer_mode
<< 23) & LCD_WINCTRL2_DBM
);
1404 lcd
->window
[plane
].winctrl2
= val
;
1406 if (pdata
->flags
& WIN_RAM_ARRAY_MODE
) {
1407 val
= lcd
->window
[plane
].winctrl2
& ~(LCD_WINCTRL2_RAM
);
1408 val
|= ((pdata
->ram_array_mode
<< 21) & LCD_WINCTRL2_RAM
);
1409 lcd
->window
[plane
].winctrl2
= val
;
1412 /* Buffer line width programmed with WIN_SIZE */
1414 if (pdata
->flags
& WIN_BUFFER_SCALE
) {
1415 val
= lcd
->window
[plane
].winctrl2
& ~(LCD_WINCTRL2_SCX
|
1417 val
|= ((pdata
->xsize
<< 11) & LCD_WINCTRL2_SCX
);
1418 val
|= ((pdata
->ysize
) & LCD_WINCTRL2_SCY
);
1419 lcd
->window
[plane
].winctrl2
= val
;
1422 if (pdata
->flags
& WIN_ENABLE
) {
1423 val
= lcd
->winenable
;
1425 val
|= (pdata
->enable
& 1) << plane
;
1426 lcd
->winenable
= val
;
1431 static void get_window(unsigned int plane
,
1432 struct au1200_lcd_window_regs_t
*pdata
)
1434 /* Window control register 0 */
1435 pdata
->xpos
= (lcd
->window
[plane
].winctrl0
& LCD_WINCTRL0_OX
) >> 21;
1436 pdata
->ypos
= (lcd
->window
[plane
].winctrl0
& LCD_WINCTRL0_OY
) >> 10;
1437 pdata
->alpha_color
= (lcd
->window
[plane
].winctrl0
& LCD_WINCTRL0_A
) >> 2;
1438 pdata
->alpha_mode
= (lcd
->window
[plane
].winctrl0
& LCD_WINCTRL0_AEN
) >> 1;
1440 /* Window control register 1 */
1441 pdata
->priority
= (lcd
->window
[plane
].winctrl1
& LCD_WINCTRL1_PRI
) >> 30;
1442 pdata
->channel
= (lcd
->window
[plane
].winctrl1
& LCD_WINCTRL1_PIPE
) >> 29;
1443 pdata
->buffer_format
= (lcd
->window
[plane
].winctrl1
& LCD_WINCTRL1_FRM
) >> 25;
1444 pdata
->color_order
= (lcd
->window
[plane
].winctrl1
& LCD_WINCTRL1_CCO
) >> 24;
1445 pdata
->pixel_order
= (lcd
->window
[plane
].winctrl1
& LCD_WINCTRL1_PO
) >> 22;
1446 pdata
->xsize
= ((lcd
->window
[plane
].winctrl1
& LCD_WINCTRL1_SZX
) >> 11) + 1;
1447 pdata
->ysize
= (lcd
->window
[plane
].winctrl1
& LCD_WINCTRL1_SZY
) + 1;
1449 /* Window control register 2 */
1450 pdata
->colorkey_mode
= (lcd
->window
[plane
].winctrl2
& LCD_WINCTRL2_CKMODE
) >> 24;
1451 pdata
->double_buffer_mode
= (lcd
->window
[plane
].winctrl2
& LCD_WINCTRL2_DBM
) >> 23;
1452 pdata
->ram_array_mode
= (lcd
->window
[plane
].winctrl2
& LCD_WINCTRL2_RAM
) >> 21;
1454 pdata
->enable
= (lcd
->winenable
>> plane
) & 1;
1458 static int au1200fb_ioctl(struct fb_info
*info
, unsigned int cmd
,
1465 au1xxx_pm_access(LCD_pm_dev
);
1468 plane
= fbinfo2index(info
);
1469 print_dbg("au1200fb: ioctl %d on plane %d\n", cmd
, plane
);
1471 if (cmd
== AU1200_LCD_FB_IOCTL
) {
1472 struct au1200_lcd_iodata_t iodata
;
1474 if (copy_from_user(&iodata
, (void __user
*) arg
, sizeof(iodata
)))
1477 print_dbg("FB IOCTL called\n");
1479 switch (iodata
.subcmd
) {
1480 case AU1200_LCD_SET_SCREEN
:
1481 print_dbg("AU1200_LCD_SET_SCREEN\n");
1482 set_global(cmd
, &iodata
.global
);
1485 case AU1200_LCD_GET_SCREEN
:
1486 print_dbg("AU1200_LCD_GET_SCREEN\n");
1487 get_global(cmd
, &iodata
.global
);
1490 case AU1200_LCD_SET_WINDOW
:
1491 print_dbg("AU1200_LCD_SET_WINDOW\n");
1492 set_window(plane
, &iodata
.window
);
1495 case AU1200_LCD_GET_WINDOW
:
1496 print_dbg("AU1200_LCD_GET_WINDOW\n");
1497 get_window(plane
, &iodata
.window
);
1500 case AU1200_LCD_SET_PANEL
:
1501 print_dbg("AU1200_LCD_SET_PANEL\n");
1502 if ((iodata
.global
.panel_choice
>= 0) &&
1503 (iodata
.global
.panel_choice
<
1506 struct panel_settings
*newpanel
;
1507 panel_index
= iodata
.global
.panel_choice
;
1508 newpanel
= &known_lcd_panels
[panel_index
];
1509 au1200_setpanel(newpanel
);
1513 case AU1200_LCD_GET_PANEL
:
1514 print_dbg("AU1200_LCD_GET_PANEL\n");
1515 iodata
.global
.panel_choice
= panel_index
;
1522 val
= copy_to_user((void __user
*) arg
, &iodata
, sizeof(iodata
));
1524 print_dbg("error: could not copy %d bytes\n", val
);
1533 static struct fb_ops au1200fb_fb_ops
= {
1534 .owner
= THIS_MODULE
,
1535 .fb_check_var
= au1200fb_fb_check_var
,
1536 .fb_set_par
= au1200fb_fb_set_par
,
1537 .fb_setcolreg
= au1200fb_fb_setcolreg
,
1538 .fb_blank
= au1200fb_fb_blank
,
1539 .fb_fillrect
= cfb_fillrect
,
1540 .fb_copyarea
= cfb_copyarea
,
1541 .fb_imageblit
= cfb_imageblit
,
1543 .fb_ioctl
= au1200fb_ioctl
,
1544 .fb_mmap
= au1200fb_fb_mmap
,
1547 /*-------------------------------------------------------------------------*/
1549 static irqreturn_t
au1200fb_handle_irq(int irq
, void* dev_id
)
1551 /* Nothing to do for now, just clear any pending interrupt */
1552 lcd
->intstatus
= lcd
->intstatus
;
1558 /*-------------------------------------------------------------------------*/
1560 /* AU1200 LCD device probe helpers */
1562 static int au1200fb_init_fbinfo(struct au1200fb_device
*fbdev
)
1564 struct fb_info
*fbi
= &fbdev
->fb_info
;
1567 memset(fbi
, 0, sizeof(struct fb_info
));
1568 fbi
->fbops
= &au1200fb_fb_ops
;
1570 bpp
= winbpp(win
->w
[fbdev
->plane
].mode_winctrl1
);
1572 /* Copy monitor specs from panel data */
1573 /* fixme: we're setting up LCD controller windows, so these dont give a
1574 damn as to what the monitor specs are (the panel itself does, but that
1575 isnt done here...so maybe need a generic catchall monitor setting??? */
1576 memcpy(&fbi
->monspecs
, &panel
->monspecs
, sizeof(struct fb_monspecs
));
1578 /* We first try the user mode passed in argument. If that failed,
1579 * or if no one has been specified, we default to the first mode of the
1580 * panel list. Note that after this call, var data will be set */
1581 if (!fb_find_mode(&fbi
->var
,
1583 NULL
, /* drv_info.opt_mode, */
1584 fbi
->monspecs
.modedb
,
1585 fbi
->monspecs
.modedb_len
,
1586 fbi
->monspecs
.modedb
,
1589 print_err("Cannot find valid mode for panel %s", panel
->name
);
1593 fbi
->pseudo_palette
= kcalloc(16, sizeof(u32
), GFP_KERNEL
);
1594 if (!fbi
->pseudo_palette
) {
1598 if (fb_alloc_cmap(&fbi
->cmap
, AU1200_LCD_NBR_PALETTE_ENTRIES
, 0) < 0) {
1599 print_err("Fail to allocate colormap (%d entries)",
1600 AU1200_LCD_NBR_PALETTE_ENTRIES
);
1601 kfree(fbi
->pseudo_palette
);
1605 strncpy(fbi
->fix
.id
, "AU1200", sizeof(fbi
->fix
.id
));
1606 fbi
->fix
.smem_start
= fbdev
->fb_phys
;
1607 fbi
->fix
.smem_len
= fbdev
->fb_len
;
1608 fbi
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
1609 fbi
->fix
.xpanstep
= 0;
1610 fbi
->fix
.ypanstep
= 0;
1611 fbi
->fix
.mmio_start
= 0;
1612 fbi
->fix
.mmio_len
= 0;
1613 fbi
->fix
.accel
= FB_ACCEL_NONE
;
1615 fbi
->screen_base
= (char __iomem
*) fbdev
->fb_mem
;
1617 au1200fb_update_fbinfo(fbi
);
1622 /*-------------------------------------------------------------------------*/
1624 /* AU1200 LCD controller device driver */
1626 static int au1200fb_drv_probe(struct platform_device
*dev
)
1628 struct au1200fb_device
*fbdev
;
1630 int bpp
, plane
, ret
;
1635 for (plane
= 0; plane
< CONFIG_FB_AU1200_DEVS
; ++plane
) {
1636 bpp
= winbpp(win
->w
[plane
].mode_winctrl1
);
1637 if (win
->w
[plane
].xres
== 0)
1638 win
->w
[plane
].xres
= panel
->Xres
;
1639 if (win
->w
[plane
].yres
== 0)
1640 win
->w
[plane
].yres
= panel
->Yres
;
1642 fbdev
= &_au1200fb_devices
[plane
];
1643 memset(fbdev
, 0, sizeof(struct au1200fb_device
));
1644 fbdev
->plane
= plane
;
1646 /* Allocate the framebuffer to the maximum screen size */
1647 fbdev
->fb_len
= (win
->w
[plane
].xres
* win
->w
[plane
].yres
* bpp
) / 8;
1649 fbdev
->fb_mem
= dma_alloc_noncoherent(&dev
->dev
,
1650 PAGE_ALIGN(fbdev
->fb_len
),
1651 &fbdev
->fb_phys
, GFP_KERNEL
);
1652 if (!fbdev
->fb_mem
) {
1653 print_err("fail to allocate frambuffer (size: %dK))",
1654 fbdev
->fb_len
/ 1024);
1659 * Set page reserved so that mmap will work. This is necessary
1660 * since we'll be remapping normal memory.
1662 for (page
= (unsigned long)fbdev
->fb_phys
;
1663 page
< PAGE_ALIGN((unsigned long)fbdev
->fb_phys
+
1665 page
+= PAGE_SIZE
) {
1666 SetPageReserved(pfn_to_page(page
>> PAGE_SHIFT
)); /* LCD DMA is NOT coherent on Au1200 */
1668 print_dbg("Framebuffer memory map at %p", fbdev
->fb_mem
);
1669 print_dbg("phys=0x%08x, size=%dK", fbdev
->fb_phys
, fbdev
->fb_len
/ 1024);
1672 if ((ret
= au1200fb_init_fbinfo(fbdev
)) < 0)
1675 /* Register new framebuffer */
1676 if ((ret
= register_framebuffer(&fbdev
->fb_info
)) < 0) {
1677 print_err("cannot register new framebuffer");
1681 au1200fb_fb_set_par(&fbdev
->fb_info
);
1683 #if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
1685 if (fb_prepare_logo(&fbdev
->fb_info
, FB_ROTATE_UR
)) {
1686 /* Start display and show logo on boot */
1687 fb_set_cmap(&fbdev
->fb_info
.cmap
,
1690 fb_show_logo(&fbdev
->fb_info
, FB_ROTATE_UR
);
1695 /* Now hook interrupt too */
1696 if ((ret
= request_irq(AU1200_LCD_INT
, au1200fb_handle_irq
,
1697 IRQF_DISABLED
| IRQF_SHARED
, "lcd", (void *)dev
)) < 0) {
1698 print_err("fail to request interrupt line %d (err: %d)",
1699 AU1200_LCD_INT
, ret
);
1706 /* NOTE: This only does the current plane/window that failed; others are still active */
1708 dma_free_noncoherent(dev
, PAGE_ALIGN(fbdev
->fb_len
),
1709 fbdev
->fb_mem
, fbdev
->fb_phys
);
1710 if (fbdev
->fb_info
.cmap
.len
!= 0)
1711 fb_dealloc_cmap(&fbdev
->fb_info
.cmap
);
1712 if (fbdev
->fb_info
.pseudo_palette
)
1713 kfree(fbdev
->fb_info
.pseudo_palette
);
1715 free_irq(AU1200_LCD_INT
, (void*)dev
);
1719 static int au1200fb_drv_remove(struct platform_device
*dev
)
1721 struct au1200fb_device
*fbdev
;
1727 /* Turn off the panel */
1728 au1200_setpanel(NULL
);
1730 for (plane
= 0; plane
< CONFIG_FB_AU1200_DEVS
; ++plane
)
1732 fbdev
= &_au1200fb_devices
[plane
];
1734 /* Clean up all probe data */
1735 unregister_framebuffer(&fbdev
->fb_info
);
1737 dma_free_noncoherent(&dev
->dev
,
1738 PAGE_ALIGN(fbdev
->fb_len
),
1739 fbdev
->fb_mem
, fbdev
->fb_phys
);
1740 if (fbdev
->fb_info
.cmap
.len
!= 0)
1741 fb_dealloc_cmap(&fbdev
->fb_info
.cmap
);
1742 if (fbdev
->fb_info
.pseudo_palette
)
1743 kfree(fbdev
->fb_info
.pseudo_palette
);
1746 free_irq(AU1200_LCD_INT
, (void *)dev
);
1752 static int au1200fb_drv_suspend(struct platform_device
*dev
, u32 state
)
1758 static int au1200fb_drv_resume(struct platform_device
*dev
)
1763 #endif /* CONFIG_PM */
1765 static struct platform_driver au1200fb_driver
= {
1767 .name
= "au1200-lcd",
1768 .owner
= THIS_MODULE
,
1770 .probe
= au1200fb_drv_probe
,
1771 .remove
= au1200fb_drv_remove
,
1773 .suspend
= au1200fb_drv_suspend
,
1774 .resume
= au1200fb_drv_resume
,
1778 /*-------------------------------------------------------------------------*/
1782 static void au1200fb_setup(void)
1784 char* options
= NULL
;
1786 int num_panels
= ARRAY_SIZE(known_lcd_panels
);
1789 fb_get_options(DRIVER_NAME
, &options
);
1792 while ((this_opt
= strsep(&options
,",")) != NULL
) {
1793 /* Panel option - can be panel name,
1794 * "bs" for board-switch, or number/index */
1795 if (!strncmp(this_opt
, "panel:", 6)) {
1800 /* First check for index, which allows
1801 * to short circuit this mess */
1802 li
= simple_strtol(this_opt
, &endptr
, 0);
1803 if (*endptr
== '\0') {
1804 panel_idx
= (int)li
;
1806 else if (strcmp(this_opt
, "bs") == 0) {
1807 extern int board_au1200fb_panel(void);
1808 panel_idx
= board_au1200fb_panel();
1812 for (i
= 0; i
< num_panels
; i
++) {
1813 if (!strcmp(this_opt
, known_lcd_panels
[i
].name
)) {
1819 if ((panel_idx
< 0) || (panel_idx
>= num_panels
)) {
1820 print_warn("Panel %s not supported!", this_opt
);
1823 panel_index
= panel_idx
;
1826 else if (strncmp(this_opt
, "nohwcursor", 10) == 0) {
1830 /* Unsupported option */
1832 print_warn("Unsupported option \"%s\"", this_opt
);
1839 static int au1200fb_pm_callback(au1xxx_power_dev_t
*dev
,
1840 au1xxx_request_t request
, void *data
) {
1843 unsigned int brightness
= 0;
1845 if (request
== AU1XXX_PM_SLEEP
) {
1846 board_au1200fb_panel_shutdown();
1848 else if (request
== AU1XXX_PM_WAKEUP
) {
1849 if(dev
->prev_state
== SLEEP_STATE
)
1852 au1200_setpanel(panel
);
1853 for (plane
= 0; plane
< CONFIG_FB_AU1200_DEVS
; ++plane
) {
1854 struct au1200fb_device
*fbdev
;
1855 fbdev
= &_au1200fb_devices
[plane
];
1856 au1200fb_fb_set_par(&fbdev
->fb_info
);
1860 d
= *((unsigned int*)data
);
1861 if(d
<=10) brightness
= 26;
1862 else if(d
<=20) brightness
= 51;
1863 else if(d
<=30) brightness
= 77;
1864 else if(d
<=40) brightness
= 102;
1865 else if(d
<=50) brightness
= 128;
1866 else if(d
<=60) brightness
= 153;
1867 else if(d
<=70) brightness
= 179;
1868 else if(d
<=80) brightness
= 204;
1869 else if(d
<=90) brightness
= 230;
1870 else brightness
= 255;
1871 set_brightness(brightness
);
1872 } else if (request
== AU1XXX_PM_GETSTATUS
) {
1873 return dev
->cur_state
;
1874 } else if (request
== AU1XXX_PM_ACCESS
) {
1875 if (dev
->cur_state
!= SLEEP_STATE
)
1878 au1200_setpanel(panel
);
1880 } else if (request
== AU1XXX_PM_IDLE
) {
1881 } else if (request
== AU1XXX_PM_CLEANUP
) {
1888 static int __init
au1200fb_init(void)
1890 print_info("" DRIVER_DESC
"");
1892 /* Setup driver with options */
1895 /* Point to the panel selected */
1896 panel
= &known_lcd_panels
[panel_index
];
1897 win
= &windows
[window_index
];
1899 printk(DRIVER_NAME
": Panel %d %s\n", panel_index
, panel
->name
);
1900 printk(DRIVER_NAME
": Win %d %s\n", window_index
, win
->name
);
1902 /* Kickstart the panel, the framebuffers/windows come soon enough */
1903 au1200_setpanel(panel
);
1906 LCD_pm_dev
= new_au1xxx_power_device("LCD", &au1200fb_pm_callback
, NULL
);
1907 if ( LCD_pm_dev
== NULL
)
1908 printk(KERN_INFO
"Unable to create a power management device entry for the au1200fb.\n");
1910 printk(KERN_INFO
"Power management device entry for the au1200fb loaded.\n");
1913 return platform_driver_register(&au1200fb_driver
);
1916 static void __exit
au1200fb_cleanup(void)
1918 platform_driver_unregister(&au1200fb_driver
);
1921 module_init(au1200fb_init
);
1922 module_exit(au1200fb_cleanup
);
1924 MODULE_DESCRIPTION(DRIVER_DESC
);
1925 MODULE_LICENSE("GPL");