2 * linux/drivers/video/epson1355fb.c -- Epson S1D13505 frame buffer for 2.5.
4 * Epson Research S1D13505 Embedded RAMDAC LCD/CRT Controller
5 * (previously known as SED1355)
7 * Cf. http://www.erd.epson.com/vdc/html/S1D13505.html
10 * Copyright (C) Hewlett-Packard Company. All rights reserved.
12 * Written by Christopher Hoover <ch@hpl.hp.com>
16 * linux/drivers/video/skeletonfb.c
17 * Modified to new api Jan 2001 by James Simmons (jsimmons@infradead.org)
18 * Created 28 Dec 1997 by Geert Uytterhoeven
20 * linux/drivers/video/epson1355fb.c (2.4 driver)
21 * Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>
23 * This file is subject to the terms and conditions of the GNU General Public
24 * License. See the file COPYING in the main directory of this archive for
31 * This driver is complicated by the fact that this is a 16-bit chip
32 * and, on at least one platform (ceiva), we can only do 16-bit reads
33 * and writes to the framebuffer. We hide this from user space
34 * except in the case of mmap().
40 * - Test 8-bit pseudocolor mode
41 * - Allow setting bpp, virtual resolution
42 * - Implement horizontal panning
43 * - (maybe) Implement hardware cursor
46 #include <linux/module.h>
47 #include <linux/kernel.h>
48 #include <linux/errno.h>
49 #include <linux/string.h>
51 #include <linux/slab.h>
52 #include <linux/delay.h>
54 #include <linux/init.h>
55 #include <linux/ioport.h>
56 #include <linux/platform_device.h>
58 #include <asm/types.h>
60 #include <asm/uaccess.h>
62 #include <video/epson1355.h>
64 struct epson1355_par
{
65 unsigned long reg_addr
;
68 /* ------------------------------------------------------------------------- */
72 static inline u8
epson1355_read_reg(int index
)
74 return ctrl_inb(par
.reg_addr
+ index
);
77 static inline void epson1355_write_reg(u8 data
, int index
)
79 ctrl_outb(data
, par
.reg_addr
+ index
);
82 #elif defined(CONFIG_ARM)
84 # ifdef CONFIG_ARCH_CEIVA
85 # include <asm/arch/hardware.h>
86 # define EPSON1355FB_BASE_PHYS (CEIVA_PHYS_SED1355)
89 static inline u8
epson1355_read_reg(struct epson1355_par
*par
, int index
)
91 return __raw_readb(par
->reg_addr
+ index
);
94 static inline void epson1355_write_reg(struct epson1355_par
*par
, u8 data
, int index
)
96 __raw_writeb(data
, par
->reg_addr
+ index
);
100 # error "no architecture-specific epson1355_{read,write}_reg"
103 #ifndef EPSON1355FB_BASE_PHYS
104 # error "EPSON1355FB_BASE_PHYS is not defined"
107 #define EPSON1355FB_REGS_OFS (0)
108 #define EPSON1355FB_REGS_PHYS (EPSON1355FB_BASE_PHYS + EPSON1355FB_REGS_OFS)
109 #define EPSON1355FB_REGS_LEN (64)
111 #define EPSON1355FB_FB_OFS (0x00200000)
112 #define EPSON1355FB_FB_PHYS (EPSON1355FB_BASE_PHYS + EPSON1355FB_FB_OFS)
113 #define EPSON1355FB_FB_LEN (2 * 1024 * 1024)
115 /* ------------------------------------------------------------------------- */
117 static inline u16
epson1355_read_reg16(struct epson1355_par
*par
, int index
)
119 u8 lo
= epson1355_read_reg(par
, index
);
120 u8 hi
= epson1355_read_reg(par
, index
+ 1);
122 return (hi
<< 8) | lo
;
125 static inline void epson1355_write_reg16(struct epson1355_par
*par
, u16 data
, int index
)
128 u8 hi
= (data
>> 8) & 0xff;
130 epson1355_write_reg(par
, lo
, index
);
131 epson1355_write_reg(par
, hi
, index
+ 1);
134 static inline u32
epson1355_read_reg20(struct epson1355_par
*par
, int index
)
136 u8 b0
= epson1355_read_reg(par
, index
);
137 u8 b1
= epson1355_read_reg(par
, index
+ 1);
138 u8 b2
= epson1355_read_reg(par
, index
+ 2);
140 return (b2
& 0x0f) << 16 | (b1
<< 8) | b0
;
143 static inline void epson1355_write_reg20(struct epson1355_par
*par
, u32 data
, int index
)
146 u8 b1
= (data
>> 8) & 0xff;
147 u8 b2
= (data
>> 16) & 0x0f;
149 epson1355_write_reg(par
, b0
, index
);
150 epson1355_write_reg(par
, b1
, index
+ 1);
151 epson1355_write_reg(par
, b2
, index
+ 2);
154 /* ------------------------------------------------------------------------- */
156 static void set_lut(struct epson1355_par
*par
, u8 index
, u8 r
, u8 g
, u8 b
)
158 epson1355_write_reg(par
, index
, REG_LUT_ADDR
);
159 epson1355_write_reg(par
, r
, REG_LUT_DATA
);
160 epson1355_write_reg(par
, g
, REG_LUT_DATA
);
161 epson1355_write_reg(par
, b
, REG_LUT_DATA
);
166 * epson1355fb_setcolreg - sets a color register.
167 * @regno: Which register in the CLUT we are programming
168 * @red: The red value which can be up to 16 bits wide
169 * @green: The green value which can be up to 16 bits wide
170 * @blue: The blue value which can be up to 16 bits wide.
171 * @transp: If supported the alpha value which can be up to 16 bits wide.
172 * @info: frame buffer info structure
174 * Returns negative errno on error, or zero on success.
176 static int epson1355fb_setcolreg(unsigned regno
, unsigned r
, unsigned g
,
177 unsigned b
, unsigned transp
,
178 struct fb_info
*info
)
180 struct epson1355_par
*par
= info
->par
;
182 if (info
->var
.grayscale
)
183 r
= g
= b
= (19595 * r
+ 38470 * g
+ 7471 * b
) >> 16;
185 switch (info
->fix
.visual
) {
186 case FB_VISUAL_TRUECOLOR
:
190 ((u32
*) info
->pseudo_palette
)[regno
] =
191 (r
& 0xf800) | (g
& 0xfc00) >> 5 | (b
& 0xf800) >> 11;
194 case FB_VISUAL_PSEUDOCOLOR
:
198 set_lut(par
, regno
, r
>> 8, g
>> 8, b
>> 8);
207 /* ------------------------------------------------------------------------- */
210 * epson1355fb_pan_display - Pans the display.
211 * @var: frame buffer variable screen structure
212 * @info: frame buffer structure that represents a single frame buffer
214 * Pan (or wrap, depending on the `vmode' field) the display using the
215 * `xoffset' and `yoffset' fields of the `var' structure.
216 * If the values don't fit, return -EINVAL.
218 * Returns negative errno on error, or zero on success.
220 static int epson1355fb_pan_display(struct fb_var_screeninfo
*var
,
221 struct fb_info
*info
)
223 struct epson1355_par
*par
= info
->par
;
226 if (var
->xoffset
!= 0) /* not yet ... */
229 if (var
->yoffset
+ info
->var
.yres
> info
->var
.yres_virtual
)
232 start
= (info
->fix
.line_length
>> 1) * var
->yoffset
;
234 epson1355_write_reg20(par
, start
, REG_SCRN1_DISP_START_ADDR0
);
239 /* ------------------------------------------------------------------------- */
241 static void lcd_enable(struct epson1355_par
*par
, int enable
)
243 u8 mode
= epson1355_read_reg(par
, REG_DISPLAY_MODE
);
250 epson1355_write_reg(par
, mode
, REG_DISPLAY_MODE
);
253 #if defined(CONFIG_ARCH_CEIVA)
254 static void backlight_enable(int enable
)
256 /* ### this should be protected by a spinlock ... */
257 u8 pddr
= clps_readb(PDDR
);
262 clps_writeb(pddr
, PDDR
);
265 static void backlight_enable(int enable
)
272 * epson1355fb_blank - blanks the display.
273 * @blank_mode: the blank mode we want.
274 * @info: frame buffer structure that represents a single frame buffer
276 * Blank the screen if blank_mode != 0, else unblank. Return 0 if
277 * blanking succeeded, != 0 if un-/blanking failed due to e.g. a
278 * video mode which doesn't support it. Implements VESA suspend
279 * and powerdown modes on hardware that supports disabling hsync/vsync:
280 * blank_mode == 2: suspend vsync
281 * blank_mode == 3: suspend hsync
282 * blank_mode == 4: powerdown
284 * Returns negative errno on error, or zero on success.
287 static int epson1355fb_blank(int blank_mode
, struct fb_info
*info
)
289 struct epson1355_par
*par
= info
->par
;
291 switch (blank_mode
) {
292 case FB_BLANK_UNBLANKING
:
293 case FB_BLANK_NORMAL
:
297 case FB_BLANK_VSYNC_SUSPEND
:
298 case FB_BLANK_HSYNC_SUSPEND
:
301 case FB_BLANK_POWERDOWN
:
309 /* let fbcon do a soft blank for us */
310 return (blank_mode
== FB_BLANK_NORMAL
) ? 1 : 0;
313 /* ------------------------------------------------------------------------- */
316 * We can't use the cfb generic routines, as we have to limit
317 * ourselves to 16-bit or 8-bit loads and stores to this 16-bit
321 static inline void epson1355fb_fb_writel(unsigned long v
, unsigned long *a
)
331 static inline unsigned long epson1355fb_fb_readl(const unsigned long *a
)
333 const u16
*p
= (u16
*) a
;
335 u16 h
= fb_readw(p
+ 1);
337 return (h
<< 16) | l
;
340 #define FB_READL epson1355fb_fb_readl
341 #define FB_WRITEL epson1355fb_fb_writel
343 /* ------------------------------------------------------------------------- */
345 static inline unsigned long copy_from_user16(void *to
, const void *from
,
348 u16
*dst
= (u16
*) to
;
349 u16
*src
= (u16
*) from
;
351 if (!access_ok(VERIFY_READ
, from
, n
))
356 if (__get_user(v
, src
))
368 if (__get_user(v
, ((u8
*) src
)))
376 static inline unsigned long copy_to_user16(void *to
, const void *from
,
379 u16
*dst
= (u16
*) to
;
380 u16
*src
= (u16
*) from
;
382 if (!access_ok(VERIFY_WRITE
, to
, n
))
386 u16 v
= fb_readw(src
);
388 if (__put_user(v
, dst
))
396 u8 v
= fb_readb(src
);
398 if (__put_user(v
, ((u8
*) dst
)))
406 epson1355fb_read(struct file
*file
, char *buf
, size_t count
, loff_t
* ppos
)
408 struct inode
*inode
= file
->f_dentry
->d_inode
;
409 int fbidx
= iminor(inode
);
410 struct fb_info
*info
= registered_fb
[fbidx
];
411 unsigned long p
= *ppos
;
413 /* from fbmem.c except for our own copy_*_user */
414 if (!info
|| !info
->screen_base
)
417 if (p
>= info
->fix
.smem_len
)
419 if (count
>= info
->fix
.smem_len
)
420 count
= info
->fix
.smem_len
;
421 if (count
+ p
> info
->fix
.smem_len
)
422 count
= info
->fix
.smem_len
- p
;
427 base_addr
= info
->screen_base
;
428 count
-= copy_to_user16(buf
, base_addr
+ p
, count
);
437 epson1355fb_write(struct file
*file
, const char *buf
,
438 size_t count
, loff_t
* ppos
)
440 struct inode
*inode
= file
->f_dentry
->d_inode
;
441 int fbidx
= iminor(inode
);
442 struct fb_info
*info
= registered_fb
[fbidx
];
443 unsigned long p
= *ppos
;
446 /* from fbmem.c except for our own copy_*_user */
447 if (!info
|| !info
->screen_base
)
450 /* from fbmem.c except for our own copy_*_user */
451 if (p
> info
->fix
.smem_len
)
453 if (count
>= info
->fix
.smem_len
)
454 count
= info
->fix
.smem_len
;
456 if (count
+ p
> info
->fix
.smem_len
) {
457 count
= info
->fix
.smem_len
- p
;
464 base_addr
= info
->screen_base
;
465 count
-= copy_from_user16(base_addr
+ p
, buf
, count
);
474 /* ------------------------------------------------------------------------- */
476 static struct fb_ops epson1355fb_fbops
= {
477 .owner
= THIS_MODULE
,
478 .fb_setcolreg
= epson1355fb_setcolreg
,
479 .fb_pan_display
= epson1355fb_pan_display
,
480 .fb_blank
= epson1355fb_blank
,
481 .fb_fillrect
= cfb_fillrect
,
482 .fb_copyarea
= cfb_copyarea
,
483 .fb_imageblit
= cfb_imageblit
,
484 .fb_read
= epson1355fb_read
,
485 .fb_write
= epson1355fb_write
,
488 /* ------------------------------------------------------------------------- */
490 static __init
unsigned int get_fb_size(struct fb_info
*info
)
492 unsigned int size
= 2 * 1024 * 1024;
493 char *p
= info
->screen_base
;
495 /* the 512k framebuffer is aliased at start + 0x80000 * n */
497 fb_writeb(0, p
+ 0x80000);
506 static int epson1355_width_tab
[2][4] __initdata
=
507 { {4, 8, 16, -1}, {9, 12, 16, -1} };
508 static int epson1355_bpp_tab
[8] __initdata
= { 1, 2, 4, 8, 15, 16 };
510 static void __init
fetch_hw_state(struct fb_info
*info
, struct epson1355_par
*par
)
512 struct fb_var_screeninfo
*var
= &info
->var
;
513 struct fb_fix_screeninfo
*fix
= &info
->fix
;
517 u32 xres_virtual
, yres_virtual
;
519 int is_color
, is_dual
, is_tft
;
520 int lcd_enabled
, crt_enabled
;
522 fix
->type
= FB_TYPE_PACKED_PIXELS
;
524 display
= epson1355_read_reg(par
, REG_DISPLAY_MODE
);
525 bpp
= epson1355_bpp_tab
[(display
>> 2) & 7];
529 fix
->visual
= FB_VISUAL_PSEUDOCOLOR
;
530 var
->bits_per_pixel
= 8;
531 var
->red
.offset
= var
->green
.offset
= var
->blue
.offset
= 0;
532 var
->red
.length
= var
->green
.length
= var
->blue
.length
= 8;
536 fix
->visual
= FB_VISUAL_TRUECOLOR
;
537 var
->bits_per_pixel
= 16;
538 var
->red
.offset
= 11;
540 var
->green
.offset
= 5;
541 var
->green
.length
= 6;
542 var
->blue
.offset
= 0;
543 var
->blue
.length
= 5;
548 fb_alloc_cmap(&(info
->cmap
), 256, 0);
550 panel
= epson1355_read_reg(par
, REG_PANEL_TYPE
);
551 is_color
= (panel
& 0x04) != 0;
552 is_dual
= (panel
& 0x02) != 0;
553 is_tft
= (panel
& 0x01) != 0;
554 crt_enabled
= (display
& 0x02) != 0;
555 lcd_enabled
= (display
& 0x01) != 0;
556 lcd_bpp
= epson1355_width_tab
[is_tft
][(panel
>> 4) & 3];
558 xres
= (epson1355_read_reg(par
, REG_HORZ_DISP_WIDTH
) + 1) * 8;
559 yres
= (epson1355_read_reg16(par
, REG_VERT_DISP_HEIGHT0
) + 1) *
560 ((is_dual
&& !crt_enabled
) ? 2 : 1);
561 offset
= epson1355_read_reg16(par
, REG_MEM_ADDR_OFFSET0
) & 0x7ff;
562 xres_virtual
= offset
* 16 / bpp
;
563 yres_virtual
= fix
->smem_len
/ (offset
* 2);
567 var
->xres_virtual
= xres_virtual
;
568 var
->yres_virtual
= yres_virtual
;
569 var
->xoffset
= var
->yoffset
= 0;
571 fix
->line_length
= offset
* 2;
573 fix
->xpanstep
= 0; /* no pan yet */
576 fix
->accel
= FB_ACCEL_NONE
;
578 var
->grayscale
= !is_color
;
582 "epson1355fb: xres=%d, yres=%d, "
583 "is_color=%d, is_dual=%d, is_tft=%d\n",
584 xres
, yres
, is_color
, is_dual
, is_tft
);
586 "epson1355fb: bpp=%d, lcd_bpp=%d, "
587 "crt_enabled=%d, lcd_enabled=%d\n",
588 bpp
, lcd_bpp
, crt_enabled
, lcd_enabled
);
593 static void clearfb16(struct fb_info
*info
)
595 u16
*dst
= (u16
*) info
->screen_base
;
596 unsigned long n
= info
->fix
.smem_len
;
607 static int epson1355fb_remove(struct platform_device
*dev
)
609 struct fb_info
*info
= platform_get_drvdata(dev
);
610 struct epson1355_par
*par
= info
->par
;
615 if (par
&& par
->reg_addr
)
616 iounmap((void *) par
->reg_addr
);
620 fb_dealloc_cmap(&info
->cmap
);
621 if (info
->screen_base
)
622 iounmap(info
->screen_base
);
623 framebuffer_release(info
);
625 release_mem_region(EPSON1355FB_FB_PHYS
, EPSON1355FB_FB_LEN
);
626 release_mem_region(EPSON1355FB_REGS_PHYS
, EPSON1355FB_REGS_LEN
);
630 int __init
epson1355fb_probe(struct platform_device
*dev
)
632 struct epson1355_par
*default_par
;
633 struct fb_info
*info
;
637 if (!request_mem_region(EPSON1355FB_REGS_PHYS
, EPSON1355FB_REGS_LEN
, "S1D13505 registers")) {
638 printk(KERN_ERR
"epson1355fb: unable to reserve "
639 "registers at 0x%0x\n", EPSON1355FB_REGS_PHYS
);
644 if (!request_mem_region(EPSON1355FB_FB_PHYS
, EPSON1355FB_FB_LEN
,
645 "S1D13505 framebuffer")) {
646 printk(KERN_ERR
"epson1355fb: unable to reserve "
647 "framebuffer at 0x%0x\n", EPSON1355FB_FB_PHYS
);
652 info
= framebuffer_alloc(sizeof(struct epson1355_par
) + sizeof(u32
) * 256, &dev
->dev
);
657 default_par
= info
->par
;
658 default_par
->reg_addr
= (unsigned long) ioremap(EPSON1355FB_REGS_PHYS
, EPSON1355FB_REGS_LEN
);
659 if (!default_par
->reg_addr
) {
660 printk(KERN_ERR
"epson1355fb: unable to map registers\n");
664 info
->pseudo_palette
= (void *)(default_par
+ 1);
666 info
->screen_base
= ioremap(EPSON1355FB_FB_PHYS
, EPSON1355FB_FB_LEN
);
667 if (!info
->screen_base
) {
668 printk(KERN_ERR
"epson1355fb: unable to map framebuffer\n");
673 revision
= epson1355_read_reg(default_par
, REG_REVISION_CODE
);
674 if ((revision
>> 2) != 3) {
675 printk(KERN_INFO
"epson1355fb: epson1355 not found\n");
680 info
->fix
.mmio_start
= EPSON1355FB_REGS_PHYS
;
681 info
->fix
.mmio_len
= EPSON1355FB_REGS_LEN
;
682 info
->fix
.smem_start
= EPSON1355FB_FB_PHYS
;
683 info
->fix
.smem_len
= get_fb_size(info
);
685 printk(KERN_INFO
"epson1355fb: regs mapped at 0x%lx, fb %d KiB mapped at 0x%p\n",
686 default_par
->reg_addr
, info
->fix
.smem_len
/ 1024, info
->screen_base
);
688 strcpy(info
->fix
.id
, "S1D13505");
689 info
->par
= default_par
;
690 info
->fbops
= &epson1355fb_fbops
;
691 info
->flags
= FBINFO_DEFAULT
| FBINFO_HWACCEL_YPAN
;
693 /* we expect the boot loader to have initialized the chip
694 with appropriate parameters from which we can determinte
695 the flavor of lcd panel attached */
696 fetch_hw_state(info
, default_par
);
698 /* turn this puppy on ... */
701 lcd_enable(default_par
, 1);
703 if (register_framebuffer(info
) < 0) {
710 platform_set_drvdata(dev
, info
);
712 printk(KERN_INFO
"fb%d: %s frame buffer device\n",
713 info
->node
, info
->fix
.id
);
718 epson1355fb_remove(dev
);
722 static struct platform_driver epson1355fb_driver
= {
723 .probe
= epson1355fb_probe
,
724 .remove
= epson1355fb_remove
,
726 .name
= "epson1355fb",
730 static struct platform_device
*epson1355fb_device
;
732 int __init
epson1355fb_init(void)
736 if (fb_get_options("epson1355fb", NULL
))
739 ret
= platform_driver_register(&epson1355fb_driver
);
742 epson1355fb_device
= platform_device_alloc("epson1355fb", 0);
744 if (epson1355fb_device
)
745 ret
= platform_device_add(epson1355fb_device
);
750 platform_device_put(epson1355fb_device
);
751 platform_driver_unregister(&epson1355fb_driver
);
758 module_init(epson1355fb_init
);
761 static void __exit
epson1355fb_exit(void)
763 platform_device_unregister(epson1355fb_device
);
764 platform_driver_unregister(&epson1355fb_driver
);
767 /* ------------------------------------------------------------------------- */
769 module_exit(epson1355fb_exit
);
772 MODULE_AUTHOR("Christopher Hoover <ch@hpl.hp.com>");
773 MODULE_DESCRIPTION("Framebuffer driver for Epson S1D13505");
774 MODULE_LICENSE("GPL");