1 /* drivers/video/s1d13xxxfb.c
3 * (c) 2004 Simtec Electronics
4 * (c) 2005 Thibaut VARENE <varenet@parisc-linux.org>
5 * (c) 2009 Kristoffer Ericson <kristoffer.ericson@gmail.com>
7 * Driver for Epson S1D13xxx series framebuffer chips
10 * linux/drivers/video/skeletonfb.c
11 * linux/drivers/video/epson1355fb.c
12 * linux/drivers/video/epson/s1d13xxxfb.c (2.4 driver by Epson)
14 * TODO: - handle dual screen display (CRT and LCD at the same time).
15 * - check_var(), mode change, etc.
16 * - probably not SMP safe :)
17 * - support all bitblt operations on all cards
19 * This file is subject to the terms and conditions of the GNU General Public
20 * License. See the file COPYING in the main directory of this archive for
24 #include <linux/module.h>
25 #include <linux/platform_device.h>
26 #include <linux/delay.h>
27 #include <linux/types.h>
28 #include <linux/errno.h>
30 #include <linux/mman.h>
32 #include <linux/spinlock_types.h>
33 #include <linux/spinlock.h>
34 #include <linux/slab.h>
37 #include <video/s1d13xxxfb.h>
39 #define PFX "s1d13xxxfb: "
40 #define BLIT "s1d13xxxfb_bitblt: "
43 * set this to enable debugging on general functions
46 #define dbg(fmt, args...) do { printk(KERN_INFO fmt, ## args); } while(0)
48 #define dbg(fmt, args...) do { no_printk(KERN_INFO fmt, ## args); } while (0)
52 * set this to enable debugging on 2D acceleration
55 #define dbg_blit(fmt, args...) do { printk(KERN_INFO BLIT fmt, ## args); } while (0)
57 #define dbg_blit(fmt, args...) do { } while (0)
61 * we make sure only one bitblt operation is running
63 static DEFINE_SPINLOCK(s1d13xxxfb_bitblt_lock
);
66 * list of card production ids
68 static const int s1d13xxxfb_prod_ids
[] = {
75 * List of card strings
77 static const char *s1d13xxxfb_prod_names
[] = {
84 * here we define the default struct fb_fix_screeninfo
86 static const struct fb_fix_screeninfo s1d13xxxfb_fix
= {
88 .type
= FB_TYPE_PACKED_PIXELS
,
89 .visual
= FB_VISUAL_PSEUDOCOLOR
,
93 .accel
= FB_ACCEL_NONE
,
97 s1d13xxxfb_readreg(struct s1d13xxxfb_par
*par
, u16 regno
)
99 return readb(par
->regs
+ regno
);
103 s1d13xxxfb_writereg(struct s1d13xxxfb_par
*par
, u16 regno
, u8 value
)
105 writeb(value
, par
->regs
+ regno
);
109 s1d13xxxfb_runinit(struct s1d13xxxfb_par
*par
,
110 const struct s1d13xxxfb_regval
*initregs
,
111 const unsigned int size
)
115 for (i
= 0; i
< size
; i
++) {
116 if ((initregs
[i
].addr
== S1DREG_DELAYOFF
) ||
117 (initregs
[i
].addr
== S1DREG_DELAYON
))
118 mdelay((int)initregs
[i
].value
);
120 s1d13xxxfb_writereg(par
, initregs
[i
].addr
, initregs
[i
].value
);
124 /* make sure the hardware can cope with us */
129 lcd_enable(struct s1d13xxxfb_par
*par
, int enable
)
131 u8 mode
= s1d13xxxfb_readreg(par
, S1DREG_COM_DISP_MODE
);
138 s1d13xxxfb_writereg(par
, S1DREG_COM_DISP_MODE
, mode
);
142 crt_enable(struct s1d13xxxfb_par
*par
, int enable
)
144 u8 mode
= s1d13xxxfb_readreg(par
, S1DREG_COM_DISP_MODE
);
151 s1d13xxxfb_writereg(par
, S1DREG_COM_DISP_MODE
, mode
);
155 /*************************************************************
156 framebuffer control functions
157 *************************************************************/
159 s1d13xxxfb_setup_pseudocolour(struct fb_info
*info
)
161 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
163 info
->var
.red
.length
= 4;
164 info
->var
.green
.length
= 4;
165 info
->var
.blue
.length
= 4;
169 s1d13xxxfb_setup_truecolour(struct fb_info
*info
)
171 info
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
172 info
->var
.bits_per_pixel
= 16;
174 info
->var
.red
.length
= 5;
175 info
->var
.red
.offset
= 11;
177 info
->var
.green
.length
= 6;
178 info
->var
.green
.offset
= 5;
180 info
->var
.blue
.length
= 5;
181 info
->var
.blue
.offset
= 0;
185 * s1d13xxxfb_set_par - Alters the hardware state.
186 * @info: frame buffer structure
188 * Using the fb_var_screeninfo in fb_info we set the depth of the
189 * framebuffer. This function alters the par AND the
190 * fb_fix_screeninfo stored in fb_info. It doesn't not alter var in
191 * fb_info since we are using that data. This means we depend on the
192 * data in var inside fb_info to be supported by the hardware.
193 * xxxfb_check_var is always called before xxxfb_set_par to ensure this.
195 * XXX TODO: write proper s1d13xxxfb_check_var(), without which that
196 * function is quite useless.
199 s1d13xxxfb_set_par(struct fb_info
*info
)
201 struct s1d13xxxfb_par
*s1dfb
= info
->par
;
204 dbg("s1d13xxxfb_set_par: bpp=%d\n", info
->var
.bits_per_pixel
);
206 if ((s1dfb
->display
& 0x01)) /* LCD */
207 val
= s1d13xxxfb_readreg(s1dfb
, S1DREG_LCD_DISP_MODE
); /* read colour control */
209 val
= s1d13xxxfb_readreg(s1dfb
, S1DREG_CRT_DISP_MODE
); /* read colour control */
213 switch (info
->var
.bits_per_pixel
) {
215 dbg("pseudo colour 4\n");
216 s1d13xxxfb_setup_pseudocolour(info
);
220 dbg("pseudo colour 8\n");
221 s1d13xxxfb_setup_pseudocolour(info
);
225 dbg("true colour\n");
226 s1d13xxxfb_setup_truecolour(info
);
231 dbg("bpp not supported!\n");
235 dbg("writing %02x to display mode register\n", val
);
237 if ((s1dfb
->display
& 0x01)) /* LCD */
238 s1d13xxxfb_writereg(s1dfb
, S1DREG_LCD_DISP_MODE
, val
);
240 s1d13xxxfb_writereg(s1dfb
, S1DREG_CRT_DISP_MODE
, val
);
242 info
->fix
.line_length
= info
->var
.xres
* info
->var
.bits_per_pixel
;
243 info
->fix
.line_length
/= 8;
245 dbg("setting line_length to %d\n", info
->fix
.line_length
);
253 * s1d13xxxfb_setcolreg - sets a color register.
254 * @regno: Which register in the CLUT we are programming
255 * @red: The red value which can be up to 16 bits wide
256 * @green: The green value which can be up to 16 bits wide
257 * @blue: The blue value which can be up to 16 bits wide.
258 * @transp: If supported the alpha value which can be up to 16 bits wide.
259 * @info: frame buffer info structure
261 * Returns negative errno on error, or zero on success.
264 s1d13xxxfb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
265 u_int transp
, struct fb_info
*info
)
267 struct s1d13xxxfb_par
*s1dfb
= info
->par
;
268 unsigned int pseudo_val
;
270 if (regno
>= S1D_PALETTE_SIZE
)
273 dbg("s1d13xxxfb_setcolreg: %d: rgb=%d,%d,%d, tr=%d\n",
274 regno
, red
, green
, blue
, transp
);
276 if (info
->var
.grayscale
)
277 red
= green
= blue
= (19595*red
+ 38470*green
+ 7471*blue
) >> 16;
279 switch (info
->fix
.visual
) {
280 case FB_VISUAL_TRUECOLOR
:
284 /* deal with creating pseudo-palette entries */
286 pseudo_val
= (red
>> 11) << info
->var
.red
.offset
;
287 pseudo_val
|= (green
>> 10) << info
->var
.green
.offset
;
288 pseudo_val
|= (blue
>> 11) << info
->var
.blue
.offset
;
290 dbg("s1d13xxxfb_setcolreg: pseudo %d, val %08x\n",
293 ((u32
*)info
->pseudo_palette
)[regno
] = pseudo_val
;
296 case FB_VISUAL_PSEUDOCOLOR
:
297 s1d13xxxfb_writereg(s1dfb
, S1DREG_LKUP_ADDR
, regno
);
298 s1d13xxxfb_writereg(s1dfb
, S1DREG_LKUP_DATA
, red
);
299 s1d13xxxfb_writereg(s1dfb
, S1DREG_LKUP_DATA
, green
);
300 s1d13xxxfb_writereg(s1dfb
, S1DREG_LKUP_DATA
, blue
);
307 dbg("s1d13xxxfb_setcolreg: done\n");
313 * s1d13xxxfb_blank - blanks the display.
314 * @blank_mode: the blank mode we want.
315 * @info: frame buffer structure that represents a single frame buffer
317 * Blank the screen if blank_mode != 0, else unblank. Return 0 if
318 * blanking succeeded, != 0 if un-/blanking failed due to e.g. a
319 * video mode which doesn't support it. Implements VESA suspend
320 * and powerdown modes on hardware that supports disabling hsync/vsync:
321 * blank_mode == 2: suspend vsync
322 * blank_mode == 3: suspend hsync
323 * blank_mode == 4: powerdown
325 * Returns negative errno on error, or zero on success.
328 s1d13xxxfb_blank(int blank_mode
, struct fb_info
*info
)
330 struct s1d13xxxfb_par
*par
= info
->par
;
332 dbg("s1d13xxxfb_blank: blank=%d, info=%p\n", blank_mode
, info
);
334 switch (blank_mode
) {
335 case FB_BLANK_UNBLANK
:
336 case FB_BLANK_NORMAL
:
337 if ((par
->display
& 0x01) != 0)
339 if ((par
->display
& 0x02) != 0)
342 case FB_BLANK_VSYNC_SUSPEND
:
343 case FB_BLANK_HSYNC_SUSPEND
:
345 case FB_BLANK_POWERDOWN
:
353 /* let fbcon do a soft blank for us */
354 return ((blank_mode
== FB_BLANK_NORMAL
) ? 1 : 0);
358 * s1d13xxxfb_pan_display - Pans the display.
359 * @var: frame buffer variable screen structure
360 * @info: frame buffer structure that represents a single frame buffer
362 * Pan (or wrap, depending on the `vmode' field) the display using the
363 * `yoffset' field of the `var' structure (`xoffset' not yet supported).
364 * If the values don't fit, return -EINVAL.
366 * Returns negative errno on error, or zero on success.
369 s1d13xxxfb_pan_display(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
371 struct s1d13xxxfb_par
*par
= info
->par
;
374 if (var
->xoffset
!= 0) /* not yet ... */
377 if (var
->yoffset
+ info
->var
.yres
> info
->var
.yres_virtual
)
380 start
= (info
->fix
.line_length
>> 1) * var
->yoffset
;
382 if ((par
->display
& 0x01)) {
384 s1d13xxxfb_writereg(par
, S1DREG_LCD_DISP_START0
, (start
& 0xff));
385 s1d13xxxfb_writereg(par
, S1DREG_LCD_DISP_START1
, ((start
>> 8) & 0xff));
386 s1d13xxxfb_writereg(par
, S1DREG_LCD_DISP_START2
, ((start
>> 16) & 0x0f));
389 s1d13xxxfb_writereg(par
, S1DREG_CRT_DISP_START0
, (start
& 0xff));
390 s1d13xxxfb_writereg(par
, S1DREG_CRT_DISP_START1
, ((start
>> 8) & 0xff));
391 s1d13xxxfb_writereg(par
, S1DREG_CRT_DISP_START2
, ((start
>> 16) & 0x0f));
397 /************************************************************
398 functions to handle bitblt acceleration
399 ************************************************************/
402 * bltbit_wait_bitclear - waits for change in register value
403 * @info : frambuffer structure
404 * @bit : value currently in register
407 * waits until value changes FROM bit
411 bltbit_wait_bitclear(struct fb_info
*info
, u8 bit
, int timeout
)
413 while (s1d13xxxfb_readreg(info
->par
, S1DREG_BBLT_CTL0
) & bit
) {
416 dbg_blit("wait_bitclear timeout\n");
425 * s1d13xxxfb_bitblt_copyarea - accelerated copyarea function
426 * @info : framebuffer structure
427 * @area : fb_copyarea structure
429 * supports (atleast) S1D13506
433 s1d13xxxfb_bitblt_copyarea(struct fb_info
*info
, const struct fb_copyarea
*area
)
438 u16 sx
= area
->sx
, sy
= area
->sy
;
439 u16 dx
= area
->dx
, dy
= area
->dy
;
440 u16 width
= area
->width
, height
= area
->height
;
443 spin_lock(&s1d13xxxfb_bitblt_lock
);
445 /* bytes per xres line */
446 bpp
= (info
->var
.bits_per_pixel
>> 3);
447 stride
= bpp
* info
->var
.xres
;
449 /* reverse, calculate the last pixel in rectangle */
450 if ((dy
> sy
) || ((dy
== sy
) && (dx
>= sx
))) {
451 dst
= (((dy
+ height
- 1) * stride
) + (bpp
* (dx
+ width
- 1)));
452 src
= (((sy
+ height
- 1) * stride
) + (bpp
* (sx
+ width
- 1)));
454 /* not reverse, calculate the first pixel in rectangle */
455 } else { /* (y * xres) + (bpp * x) */
456 dst
= (dy
* stride
) + (bpp
* dx
);
457 src
= (sy
* stride
) + (bpp
* sx
);
460 /* set source address */
461 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_SRC_START0
, (src
& 0xff));
462 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_SRC_START1
, (src
>> 8) & 0x00ff);
463 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_SRC_START2
, (src
>> 16) & 0x00ff);
465 /* set destination address */
466 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_DST_START0
, (dst
& 0xff));
467 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_DST_START1
, (dst
>> 8) & 0x00ff);
468 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_DST_START2
, (dst
>> 16) & 0x00ff);
470 /* program height and width */
471 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_WIDTH0
, (width
& 0xff) - 1);
472 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_WIDTH1
, (width
>> 8));
474 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_HEIGHT0
, (height
& 0xff) - 1);
475 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_HEIGHT1
, (height
>> 8));
477 /* negative direction ROP */
479 dbg_blit("(copyarea) negative rop\n");
480 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_OP
, 0x03);
481 } else /* positive direction ROP */ {
482 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_OP
, 0x02);
483 dbg_blit("(copyarea) positive rop\n");
486 /* set for rectangel mode and not linear */
487 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_CTL0
, 0x0);
489 /* setup the bpp 1 = 16bpp, 0 = 8bpp*/
490 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_CTL1
, (bpp
>> 1));
492 /* set words per xres */
493 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_MEM_OFF0
, (stride
>> 1) & 0xff);
494 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_MEM_OFF1
, (stride
>> 9));
496 dbg_blit("(copyarea) dx=%d, dy=%d\n", dx
, dy
);
497 dbg_blit("(copyarea) sx=%d, sy=%d\n", sx
, sy
);
498 dbg_blit("(copyarea) width=%d, height=%d\n", width
- 1, height
- 1);
499 dbg_blit("(copyarea) stride=%d\n", stride
);
500 dbg_blit("(copyarea) bpp=%d=0x0%d, mem_offset1=%d, mem_offset2=%d\n", bpp
, (bpp
>> 1),
501 (stride
>> 1) & 0xff, stride
>> 9);
503 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_CC_EXP
, 0x0c);
505 /* initialize the engine */
506 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_CTL0
, 0x80);
508 /* wait to complete */
509 bltbit_wait_bitclear(info
, 0x80, 8000);
511 spin_unlock(&s1d13xxxfb_bitblt_lock
);
515 * s1d13xxxfb_bitblt_solidfill - accelerated solidfill function
516 * @info : framebuffer structure
517 * @rect : fb_fillrect structure
519 * supports (atleast 13506)
523 s1d13xxxfb_bitblt_solidfill(struct fb_info
*info
, const struct fb_fillrect
*rect
)
525 u32 screen_stride
, dest
;
527 u16 bpp
= (info
->var
.bits_per_pixel
>> 3);
530 spin_lock(&s1d13xxxfb_bitblt_lock
);
532 /* bytes per x width */
533 screen_stride
= (bpp
* info
->var
.xres
);
535 /* bytes to starting point */
536 dest
= ((rect
->dy
* screen_stride
) + (bpp
* rect
->dx
));
538 dbg_blit("(solidfill) dx=%d, dy=%d, stride=%d, dest=%d\n"
539 "(solidfill) : rect_width=%d, rect_height=%d\n",
540 rect
->dx
, rect
->dy
, screen_stride
, dest
,
541 rect
->width
- 1, rect
->height
- 1);
543 dbg_blit("(solidfill) : xres=%d, yres=%d, bpp=%d\n",
544 info
->var
.xres
, info
->var
.yres
,
545 info
->var
.bits_per_pixel
);
546 dbg_blit("(solidfill) : rop=%d\n", rect
->rop
);
548 /* We split the destination into the three registers */
549 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_DST_START0
, (dest
& 0x00ff));
550 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_DST_START1
, ((dest
>> 8) & 0x00ff));
551 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_DST_START2
, ((dest
>> 16) & 0x00ff));
553 /* give information regarding rectangel width */
554 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_WIDTH0
, ((rect
->width
) & 0x00ff) - 1);
555 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_WIDTH1
, (rect
->width
>> 8));
557 /* give information regarding rectangel height */
558 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_HEIGHT0
, ((rect
->height
) & 0x00ff) - 1);
559 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_HEIGHT1
, (rect
->height
>> 8));
561 if (info
->fix
.visual
== FB_VISUAL_TRUECOLOR
||
562 info
->fix
.visual
== FB_VISUAL_DIRECTCOLOR
) {
563 fg
= ((u32
*)info
->pseudo_palette
)[rect
->color
];
564 dbg_blit("(solidfill) truecolor/directcolor\n");
565 dbg_blit("(solidfill) pseudo_palette[%d] = %d\n", rect
->color
, fg
);
568 dbg_blit("(solidfill) color = %d\n", rect
->color
);
571 /* set foreground color */
572 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_FGC0
, (fg
& 0xff));
573 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_FGC1
, (fg
>> 8) & 0xff);
575 /* set rectangual region of memory (rectangle and not linear) */
576 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_CTL0
, 0x0);
578 /* set operation mode SOLID_FILL */
579 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_OP
, BBLT_SOLID_FILL
);
581 /* set bits per pixel (1 = 16bpp, 0 = 8bpp) */
582 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_CTL1
, (info
->var
.bits_per_pixel
>> 4));
584 /* set the memory offset for the bblt in word sizes */
585 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_MEM_OFF0
, (screen_stride
>> 1) & 0x00ff);
586 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_MEM_OFF1
, (screen_stride
>> 9));
588 /* and away we go.... */
589 s1d13xxxfb_writereg(info
->par
, S1DREG_BBLT_CTL0
, 0x80);
591 /* wait until its done */
592 bltbit_wait_bitclear(info
, 0x80, 8000);
594 /* let others play */
595 spin_unlock(&s1d13xxxfb_bitblt_lock
);
598 /* framebuffer information structures */
599 static const struct fb_ops s1d13xxxfb_fbops
= {
600 .owner
= THIS_MODULE
,
601 FB_DEFAULT_IOMEM_OPS
,
602 .fb_set_par
= s1d13xxxfb_set_par
,
603 .fb_setcolreg
= s1d13xxxfb_setcolreg
,
604 .fb_blank
= s1d13xxxfb_blank
,
605 .fb_pan_display
= s1d13xxxfb_pan_display
,
608 static const struct fb_ops s1d13xxxfb_fbops_s1d13506
= {
609 .owner
= THIS_MODULE
,
610 __FB_DEFAULT_IOMEM_OPS_RDWR
,
611 .fb_set_par
= s1d13xxxfb_set_par
,
612 .fb_setcolreg
= s1d13xxxfb_setcolreg
,
613 .fb_blank
= s1d13xxxfb_blank
,
614 .fb_pan_display
= s1d13xxxfb_pan_display
,
615 .fb_fillrect
= s1d13xxxfb_bitblt_solidfill
,
616 .fb_copyarea
= s1d13xxxfb_bitblt_copyarea
,
617 .fb_imageblit
= cfb_imageblit
,
618 __FB_DEFAULT_IOMEM_OPS_MMAP
,
621 static int s1d13xxxfb_width_tab
[2][4] = {
627 * s1d13xxxfb_fetch_hw_state - Configure the framebuffer according to
629 * @info: frame buffer structure
631 * We setup the framebuffer structures according to the current
632 * hardware setup. On some machines, the BIOS will have filled
633 * the chip registers with such info, on others, these values will
634 * have been written in some init procedure. In any case, the
635 * software values needs to match the hardware ones. This is what
636 * this function ensures.
638 * Note: some of the hardcoded values here might need some love to
639 * work on various chips, and might need to no longer be hardcoded.
641 static void s1d13xxxfb_fetch_hw_state(struct fb_info
*info
)
643 struct fb_var_screeninfo
*var
= &info
->var
;
644 struct fb_fix_screeninfo
*fix
= &info
->fix
;
645 struct s1d13xxxfb_par
*par
= info
->par
;
649 u32 xres_virtual
, yres_virtual
;
651 int is_color
, is_dual
, is_tft
;
652 int lcd_enabled
, crt_enabled
;
654 fix
->type
= FB_TYPE_PACKED_PIXELS
;
657 par
->display
= s1d13xxxfb_readreg(par
, S1DREG_COM_DISP_MODE
);
658 crt_enabled
= (par
->display
& 0x02) != 0;
659 lcd_enabled
= (par
->display
& 0x01) != 0;
661 if (lcd_enabled
&& crt_enabled
)
662 printk(KERN_WARNING PFX
"Warning: LCD and CRT detected, using LCD\n");
665 display
= s1d13xxxfb_readreg(par
, S1DREG_LCD_DISP_MODE
);
667 display
= s1d13xxxfb_readreg(par
, S1DREG_CRT_DISP_MODE
);
669 bpp
= display
& 0x07;
674 var
->bits_per_pixel
= 8;
675 var
->red
.offset
= var
->green
.offset
= var
->blue
.offset
= 0;
676 var
->red
.length
= var
->green
.length
= var
->blue
.length
= 8;
679 s1d13xxxfb_setup_truecolour(info
);
682 dbg("bpp: %i\n", bpp
);
684 fb_alloc_cmap(&info
->cmap
, 256, 0);
687 panel
= s1d13xxxfb_readreg(par
, S1DREG_PANEL_TYPE
);
688 is_color
= (panel
& 0x04) != 0;
689 is_dual
= (panel
& 0x02) != 0;
690 is_tft
= (panel
& 0x01) != 0;
691 lcd_bpp
= s1d13xxxfb_width_tab
[is_tft
][(panel
>> 4) & 3];
694 xres
= (s1d13xxxfb_readreg(par
, S1DREG_LCD_DISP_HWIDTH
) + 1) * 8;
695 yres
= (s1d13xxxfb_readreg(par
, S1DREG_LCD_DISP_VHEIGHT0
) +
696 ((s1d13xxxfb_readreg(par
, S1DREG_LCD_DISP_VHEIGHT1
) & 0x03) << 8) + 1);
698 offset
= (s1d13xxxfb_readreg(par
, S1DREG_LCD_MEM_OFF0
) +
699 ((s1d13xxxfb_readreg(par
, S1DREG_LCD_MEM_OFF1
) & 0x7) << 8));
701 xres
= (s1d13xxxfb_readreg(par
, S1DREG_CRT_DISP_HWIDTH
) + 1) * 8;
702 yres
= (s1d13xxxfb_readreg(par
, S1DREG_CRT_DISP_VHEIGHT0
) +
703 ((s1d13xxxfb_readreg(par
, S1DREG_CRT_DISP_VHEIGHT1
) & 0x03) << 8) + 1);
705 offset
= (s1d13xxxfb_readreg(par
, S1DREG_CRT_MEM_OFF0
) +
706 ((s1d13xxxfb_readreg(par
, S1DREG_CRT_MEM_OFF1
) & 0x7) << 8));
708 xres_virtual
= offset
* 16 / var
->bits_per_pixel
;
709 yres_virtual
= fix
->smem_len
/ (offset
* 2);
713 var
->xres_virtual
= xres_virtual
;
714 var
->yres_virtual
= yres_virtual
;
715 var
->xoffset
= var
->yoffset
= 0;
717 fix
->line_length
= offset
* 2;
719 var
->grayscale
= !is_color
;
721 var
->activate
= FB_ACTIVATE_NOW
;
723 dbg(PFX
"bpp=%d, lcd_bpp=%d, "
724 "crt_enabled=%d, lcd_enabled=%d\n",
725 var
->bits_per_pixel
, lcd_bpp
, crt_enabled
, lcd_enabled
);
726 dbg(PFX
"xres=%d, yres=%d, vxres=%d, vyres=%d "
727 "is_color=%d, is_dual=%d, is_tft=%d\n",
728 xres
, yres
, xres_virtual
, yres_virtual
, is_color
, is_dual
, is_tft
);
731 static void __s1d13xxxfb_remove(struct platform_device
*pdev
)
733 struct fb_info
*info
= platform_get_drvdata(pdev
);
734 struct s1d13xxxfb_par
*par
= NULL
;
738 if (par
&& par
->regs
) {
739 /* disable output & enable powersave */
740 s1d13xxxfb_writereg(par
, S1DREG_COM_DISP_MODE
, 0x00);
741 s1d13xxxfb_writereg(par
, S1DREG_PS_CNF
, 0x11);
745 fb_dealloc_cmap(&info
->cmap
);
747 if (info
->screen_base
)
748 iounmap(info
->screen_base
);
750 framebuffer_release(info
);
753 release_mem_region(pdev
->resource
[0].start
,
754 resource_size(&pdev
->resource
[0]));
755 release_mem_region(pdev
->resource
[1].start
,
756 resource_size(&pdev
->resource
[1]));
759 static void s1d13xxxfb_remove(struct platform_device
*pdev
)
761 struct fb_info
*info
= platform_get_drvdata(pdev
);
763 unregister_framebuffer(info
);
764 __s1d13xxxfb_remove(pdev
);
767 static int s1d13xxxfb_probe(struct platform_device
*pdev
)
769 struct s1d13xxxfb_par
*default_par
;
770 struct fb_info
*info
;
771 struct s1d13xxxfb_pdata
*pdata
= NULL
;
774 u8 revision
, prod_id
;
776 dbg("probe called: device is %p\n", pdev
);
778 printk(KERN_INFO
"Epson S1D13XXX FB Driver\n");
780 /* enable platform-dependent hardware glue, if any */
781 if (dev_get_platdata(&pdev
->dev
))
782 pdata
= dev_get_platdata(&pdev
->dev
);
784 if (pdata
&& pdata
->platform_init_video
)
785 pdata
->platform_init_video();
787 if (pdev
->num_resources
!= 2) {
788 dev_err(&pdev
->dev
, "invalid num_resources: %i\n",
789 pdev
->num_resources
);
794 /* resource[0] is VRAM, resource[1] is registers */
795 if (pdev
->resource
[0].flags
!= IORESOURCE_MEM
796 || pdev
->resource
[1].flags
!= IORESOURCE_MEM
) {
797 dev_err(&pdev
->dev
, "invalid resource type\n");
802 if (!request_mem_region(pdev
->resource
[0].start
,
803 resource_size(&pdev
->resource
[0]), "s1d13xxxfb mem")) {
804 dev_dbg(&pdev
->dev
, "request_mem_region failed\n");
809 if (!request_mem_region(pdev
->resource
[1].start
,
810 resource_size(&pdev
->resource
[1]), "s1d13xxxfb regs")) {
811 dev_dbg(&pdev
->dev
, "request_mem_region failed\n");
816 info
= framebuffer_alloc(sizeof(struct s1d13xxxfb_par
) + sizeof(u32
) * 256, &pdev
->dev
);
822 platform_set_drvdata(pdev
, info
);
823 default_par
= info
->par
;
824 default_par
->regs
= ioremap(pdev
->resource
[1].start
,
825 resource_size(&pdev
->resource
[1]));
826 if (!default_par
->regs
) {
827 printk(KERN_ERR PFX
"unable to map registers\n");
831 info
->pseudo_palette
= default_par
->pseudo_palette
;
833 info
->screen_base
= ioremap(pdev
->resource
[0].start
,
834 resource_size(&pdev
->resource
[0]));
836 if (!info
->screen_base
) {
837 printk(KERN_ERR PFX
"unable to map framebuffer\n");
842 /* production id is top 6 bits */
843 prod_id
= s1d13xxxfb_readreg(default_par
, S1DREG_REV_CODE
) >> 2;
844 /* revision id is lower 2 bits */
845 revision
= s1d13xxxfb_readreg(default_par
, S1DREG_REV_CODE
) & 0x3;
848 for (i
= 0; i
< ARRAY_SIZE(s1d13xxxfb_prod_ids
); i
++) {
849 if (prod_id
== s1d13xxxfb_prod_ids
[i
]) {
850 /* looks like we got it in our list */
851 default_par
->prod_id
= prod_id
;
852 default_par
->revision
= revision
;
859 printk(KERN_INFO PFX
"chip production id %i = %s\n",
860 prod_id
, s1d13xxxfb_prod_names
[i
]);
861 printk(KERN_INFO PFX
"chip revision %i\n", revision
);
864 "unknown chip production id %i, revision %i\n",
866 printk(KERN_INFO PFX
"please contact maintainer\n");
870 info
->fix
= s1d13xxxfb_fix
;
871 info
->fix
.mmio_start
= pdev
->resource
[1].start
;
872 info
->fix
.mmio_len
= resource_size(&pdev
->resource
[1]);
873 info
->fix
.smem_start
= pdev
->resource
[0].start
;
874 info
->fix
.smem_len
= resource_size(&pdev
->resource
[0]);
876 printk(KERN_INFO PFX
"regs mapped at 0x%p, fb %d KiB mapped at 0x%p\n",
877 default_par
->regs
, info
->fix
.smem_len
/ 1024, info
->screen_base
);
879 info
->par
= default_par
;
882 case S1D13506_PROD_ID
: /* activate acceleration */
883 info
->flags
= FBINFO_HWACCEL_YPAN
|
884 FBINFO_HWACCEL_FILLRECT
| FBINFO_HWACCEL_COPYAREA
;
885 info
->fbops
= &s1d13xxxfb_fbops_s1d13506
;
888 info
->flags
= FBINFO_HWACCEL_YPAN
;
889 info
->fbops
= &s1d13xxxfb_fbops
;
893 /* perform "manual" chip initialization, if needed */
894 if (pdata
&& pdata
->initregs
)
895 s1d13xxxfb_runinit(info
->par
, pdata
->initregs
, pdata
->initregssize
);
897 s1d13xxxfb_fetch_hw_state(info
);
899 if (register_framebuffer(info
) < 0) {
904 fb_info(info
, "%s frame buffer device\n", info
->fix
.id
);
909 __s1d13xxxfb_remove(pdev
);
915 static int s1d13xxxfb_suspend(struct platform_device
*dev
, pm_message_t state
)
917 struct fb_info
*info
= platform_get_drvdata(dev
);
918 struct s1d13xxxfb_par
*s1dfb
= info
->par
;
919 struct s1d13xxxfb_pdata
*pdata
= NULL
;
921 /* disable display */
922 lcd_enable(s1dfb
, 0);
923 crt_enable(s1dfb
, 0);
925 if (dev_get_platdata(&dev
->dev
))
926 pdata
= dev_get_platdata(&dev
->dev
);
929 if (!s1dfb
->disp_save
)
930 s1dfb
->disp_save
= kmalloc(info
->fix
.smem_len
, GFP_KERNEL
);
932 if (!s1dfb
->disp_save
) {
933 printk(KERN_ERR PFX
"no memory to save screen\n");
937 memcpy_fromio(s1dfb
->disp_save
, info
->screen_base
, info
->fix
.smem_len
);
939 s1dfb
->disp_save
= NULL
;
942 if (!s1dfb
->regs_save
)
943 s1dfb
->regs_save
= kmalloc(info
->fix
.mmio_len
, GFP_KERNEL
);
945 if (!s1dfb
->regs_save
) {
946 printk(KERN_ERR PFX
"no memory to save registers");
950 /* backup all registers */
951 memcpy_fromio(s1dfb
->regs_save
, s1dfb
->regs
, info
->fix
.mmio_len
);
953 /* now activate power save mode */
954 s1d13xxxfb_writereg(s1dfb
, S1DREG_PS_CNF
, 0x11);
956 if (pdata
&& pdata
->platform_suspend_video
)
957 return pdata
->platform_suspend_video();
962 static int s1d13xxxfb_resume(struct platform_device
*dev
)
964 struct fb_info
*info
= platform_get_drvdata(dev
);
965 struct s1d13xxxfb_par
*s1dfb
= info
->par
;
966 struct s1d13xxxfb_pdata
*pdata
= NULL
;
968 /* awaken the chip */
969 s1d13xxxfb_writereg(s1dfb
, S1DREG_PS_CNF
, 0x10);
971 /* do not let go until SDRAM "wakes up" */
972 while ((s1d13xxxfb_readreg(s1dfb
, S1DREG_PS_STATUS
) & 0x01))
975 if (dev_get_platdata(&dev
->dev
))
976 pdata
= dev_get_platdata(&dev
->dev
);
978 if (s1dfb
->regs_save
) {
979 /* will write RO regs, *should* get away with it :) */
980 memcpy_toio(s1dfb
->regs
, s1dfb
->regs_save
, info
->fix
.mmio_len
);
981 kfree(s1dfb
->regs_save
);
984 if (s1dfb
->disp_save
) {
985 memcpy_toio(info
->screen_base
, s1dfb
->disp_save
,
987 kfree(s1dfb
->disp_save
); /* XXX kmalloc()'d when? */
990 if ((s1dfb
->display
& 0x01) != 0)
991 lcd_enable(s1dfb
, 1);
992 if ((s1dfb
->display
& 0x02) != 0)
993 crt_enable(s1dfb
, 1);
995 if (pdata
&& pdata
->platform_resume_video
)
996 return pdata
->platform_resume_video();
1000 #endif /* CONFIG_PM */
1002 static struct platform_driver s1d13xxxfb_driver
= {
1003 .probe
= s1d13xxxfb_probe
,
1004 .remove
= s1d13xxxfb_remove
,
1006 .suspend
= s1d13xxxfb_suspend
,
1007 .resume
= s1d13xxxfb_resume
,
1010 .name
= S1D_DEVICENAME
,
1016 s1d13xxxfb_init(void)
1020 if (fb_get_options("s1d13xxxfb", NULL
))
1024 return platform_driver_register(&s1d13xxxfb_driver
);
1029 s1d13xxxfb_exit(void)
1031 platform_driver_unregister(&s1d13xxxfb_driver
);
1034 module_init(s1d13xxxfb_init
);
1035 module_exit(s1d13xxxfb_exit
);
1038 MODULE_LICENSE("GPL");
1039 MODULE_DESCRIPTION("Framebuffer driver for S1D13xxx devices");
1040 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, Thibaut VARENE <varenet@parisc-linux.org>");