2 * framebuffer driver for VBE 2.0 compliant graphic boards
4 * switching to graphics mode happens at boot time (while
5 * running in real mode, see arch/i386/boot/video.S).
7 * (c) 1998 Gerd Knorr <kraxel@goldbach.in-berlin.de>
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/string.h>
16 #include <linux/delay.h>
18 #include <linux/ioport.h>
19 #include <linux/init.h>
20 #include <linux/platform_device.h>
21 #include <linux/screen_info.h>
23 #include <video/vga.h>
27 #define dac_reg (0x3c8)
28 #define dac_val (0x3c9)
30 /* --------------------------------------------------------------------- */
32 static struct fb_var_screeninfo vesafb_defined __initdata
= {
33 .activate
= FB_ACTIVATE_NOW
,
40 .vmode
= FB_VMODE_NONINTERLACED
,
43 static struct fb_fix_screeninfo vesafb_fix __initdata
= {
45 .type
= FB_TYPE_PACKED_PIXELS
,
46 .accel
= FB_ACCEL_NONE
,
49 static int inverse __read_mostly
;
50 static int mtrr __read_mostly
; /* disable mtrr */
51 static int vram_remap __initdata
; /* Set amount of memory to be used */
52 static int vram_total __initdata
; /* Set total amount of memory */
53 static int pmi_setpal __read_mostly
= 1; /* pmi for palette changes ??? */
54 static int ypan __read_mostly
; /* 0..nothing, 1..ypan, 2..ywrap */
55 static void (*pmi_start
)(void) __read_mostly
;
56 static void (*pmi_pal
) (void) __read_mostly
;
57 static int depth __read_mostly
;
58 static int vga_compat __read_mostly
;
59 /* --------------------------------------------------------------------- */
61 static int vesafb_pan_display(struct fb_var_screeninfo
*var
,
67 offset
= (var
->yoffset
* info
->fix
.line_length
+ var
->xoffset
) / 4;
71 : /* no return value */
72 : "a" (0x4f07), /* EAX */
74 "c" (offset
), /* ECX */
75 "d" (offset
>> 16), /* EDX */
76 "D" (&pmi_start
)); /* EDI */
81 static int vesa_setpalette(int regno
, unsigned red
, unsigned green
,
84 int shift
= 16 - depth
;
88 * Try VGA registers first...
91 outb_p(regno
, dac_reg
);
92 outb_p(red
>> shift
, dac_val
);
93 outb_p(green
>> shift
, dac_val
);
94 outb_p(blue
>> shift
, dac_val
);
100 * Fallback to the PMI....
102 if (err
&& pmi_setpal
) {
103 struct { u_char blue
, green
, red
, pad
; } entry
;
105 entry
.red
= red
>> shift
;
106 entry
.green
= green
>> shift
;
107 entry
.blue
= blue
>> shift
;
109 __asm__
__volatile__(
111 : /* no return value */
112 : "a" (0x4f09), /* EAX */
115 "d" (regno
), /* EDX */
116 "D" (&entry
), /* EDI */
117 "S" (&pmi_pal
)); /* ESI */
125 static int vesafb_setcolreg(unsigned regno
, unsigned red
, unsigned green
,
126 unsigned blue
, unsigned transp
,
127 struct fb_info
*info
)
132 * Set a single color register. The values supplied are
133 * already rounded down to the hardware's capabilities
134 * (according to the entries in the `var' structure). Return
135 * != 0 for invalid regno.
138 if (regno
>= info
->cmap
.len
)
141 if (info
->var
.bits_per_pixel
== 8)
142 err
= vesa_setpalette(regno
,red
,green
,blue
);
143 else if (regno
< 16) {
144 switch (info
->var
.bits_per_pixel
) {
146 if (info
->var
.red
.offset
== 10) {
148 ((u32
*) (info
->pseudo_palette
))[regno
] =
149 ((red
& 0xf800) >> 1) |
150 ((green
& 0xf800) >> 6) |
151 ((blue
& 0xf800) >> 11);
154 ((u32
*) (info
->pseudo_palette
))[regno
] =
156 ((green
& 0xfc00) >> 5) |
157 ((blue
& 0xf800) >> 11);
165 ((u32
*)(info
->pseudo_palette
))[regno
] =
166 (red
<< info
->var
.red
.offset
) |
167 (green
<< info
->var
.green
.offset
) |
168 (blue
<< info
->var
.blue
.offset
);
176 static void vesafb_destroy(struct fb_info
*info
)
178 fb_dealloc_cmap(&info
->cmap
);
179 if (info
->screen_base
)
180 iounmap(info
->screen_base
);
181 release_mem_region(info
->apertures
->ranges
[0].base
, info
->apertures
->ranges
[0].size
);
182 framebuffer_release(info
);
185 static struct fb_ops vesafb_ops
= {
186 .owner
= THIS_MODULE
,
187 .fb_destroy
= vesafb_destroy
,
188 .fb_setcolreg
= vesafb_setcolreg
,
189 .fb_pan_display
= vesafb_pan_display
,
190 .fb_fillrect
= cfb_fillrect
,
191 .fb_copyarea
= cfb_copyarea
,
192 .fb_imageblit
= cfb_imageblit
,
195 static int __init
vesafb_setup(char *options
)
199 if (!options
|| !*options
)
202 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
203 if (!*this_opt
) continue;
205 if (! strcmp(this_opt
, "inverse"))
207 else if (! strcmp(this_opt
, "redraw"))
209 else if (! strcmp(this_opt
, "ypan"))
211 else if (! strcmp(this_opt
, "ywrap"))
213 else if (! strcmp(this_opt
, "vgapal"))
215 else if (! strcmp(this_opt
, "pmipal"))
217 else if (! strncmp(this_opt
, "mtrr:", 5))
218 mtrr
= simple_strtoul(this_opt
+5, NULL
, 0);
219 else if (! strcmp(this_opt
, "nomtrr"))
221 else if (! strncmp(this_opt
, "vtotal:", 7))
222 vram_total
= simple_strtoul(this_opt
+7, NULL
, 0);
223 else if (! strncmp(this_opt
, "vremap:", 7))
224 vram_remap
= simple_strtoul(this_opt
+7, NULL
, 0);
229 static int __init
vesafb_probe(struct platform_device
*dev
)
231 struct fb_info
*info
;
233 unsigned int size_vmode
;
234 unsigned int size_remap
;
235 unsigned int size_total
;
237 if (screen_info
.orig_video_isVGA
!= VIDEO_TYPE_VLFB
)
240 vga_compat
= (screen_info
.capabilities
& 2) ? 0 : 1;
241 vesafb_fix
.smem_start
= screen_info
.lfb_base
;
242 vesafb_defined
.bits_per_pixel
= screen_info
.lfb_depth
;
243 if (15 == vesafb_defined
.bits_per_pixel
)
244 vesafb_defined
.bits_per_pixel
= 16;
245 vesafb_defined
.xres
= screen_info
.lfb_width
;
246 vesafb_defined
.yres
= screen_info
.lfb_height
;
247 vesafb_fix
.line_length
= screen_info
.lfb_linelength
;
248 vesafb_fix
.visual
= (vesafb_defined
.bits_per_pixel
== 8) ?
249 FB_VISUAL_PSEUDOCOLOR
: FB_VISUAL_TRUECOLOR
;
251 /* size_vmode -- that is the amount of memory needed for the
252 * used video mode, i.e. the minimum amount of
254 size_vmode
= vesafb_defined
.yres
* vesafb_fix
.line_length
;
256 /* size_total -- all video memory we have. Used for mtrr
257 * entries, resource allocation and bounds
259 size_total
= screen_info
.lfb_size
* 65536;
261 size_total
= vram_total
* 1024 * 1024;
262 if (size_total
< size_vmode
)
263 size_total
= size_vmode
;
265 /* size_remap -- the amount of video memory we are going to
266 * use for vesafb. With modern cards it is no
267 * option to simply use size_total as that
268 * wastes plenty of kernel address space. */
269 size_remap
= size_vmode
* 2;
271 size_remap
= vram_remap
* 1024 * 1024;
272 if (size_remap
< size_vmode
)
273 size_remap
= size_vmode
;
274 if (size_remap
> size_total
)
275 size_remap
= size_total
;
276 vesafb_fix
.smem_len
= size_remap
;
279 screen_info
.vesapm_seg
= 0;
282 if (!request_mem_region(vesafb_fix
.smem_start
, size_total
, "vesafb")) {
284 "vesafb: cannot reserve video memory at 0x%lx\n",
285 vesafb_fix
.smem_start
);
286 /* We cannot make this fatal. Sometimes this comes from magic
287 spaces our resource handlers simply don't know about */
290 info
= framebuffer_alloc(sizeof(u32
) * 256, &dev
->dev
);
292 release_mem_region(vesafb_fix
.smem_start
, size_total
);
295 info
->pseudo_palette
= info
->par
;
298 /* set vesafb aperture size for generic probing */
299 info
->apertures
= alloc_apertures(1);
300 if (!info
->apertures
) {
304 info
->apertures
->ranges
[0].base
= screen_info
.lfb_base
;
305 info
->apertures
->ranges
[0].size
= size_total
;
307 printk(KERN_INFO
"vesafb: mode is %dx%dx%d, linelength=%d, pages=%d\n",
308 vesafb_defined
.xres
, vesafb_defined
.yres
, vesafb_defined
.bits_per_pixel
, vesafb_fix
.line_length
, screen_info
.pages
);
310 if (screen_info
.vesapm_seg
) {
311 printk(KERN_INFO
"vesafb: protected mode interface info at %04x:%04x\n",
312 screen_info
.vesapm_seg
,screen_info
.vesapm_off
);
315 if (screen_info
.vesapm_seg
< 0xc000)
316 ypan
= pmi_setpal
= 0; /* not available or some DOS TSR ... */
318 if (ypan
|| pmi_setpal
) {
319 unsigned short *pmi_base
;
320 pmi_base
= (unsigned short*)phys_to_virt(((unsigned long)screen_info
.vesapm_seg
<< 4) + screen_info
.vesapm_off
);
321 pmi_start
= (void*)((char*)pmi_base
+ pmi_base
[1]);
322 pmi_pal
= (void*)((char*)pmi_base
+ pmi_base
[2]);
323 printk(KERN_INFO
"vesafb: pmi: set display start = %p, set palette = %p\n",pmi_start
,pmi_pal
);
325 printk(KERN_INFO
"vesafb: pmi: ports = ");
326 for (i
= pmi_base
[3]/2; pmi_base
[i
] != 0xffff; i
++)
327 printk("%x ",pmi_base
[i
]);
329 if (pmi_base
[i
] != 0xffff) {
331 * memory areas not supported (yet?)
333 * Rules are: we have to set up a descriptor for the requested
334 * memory area and pass it in the ES register to the BIOS function.
336 printk(KERN_INFO
"vesafb: can't handle memory requests, pmi disabled\n");
337 ypan
= pmi_setpal
= 0;
342 if (vesafb_defined
.bits_per_pixel
== 8 && !pmi_setpal
&& !vga_compat
) {
343 printk(KERN_WARNING
"vesafb: hardware palette is unchangeable,\n"
344 " colors may be incorrect\n");
345 vesafb_fix
.visual
= FB_VISUAL_STATIC_PSEUDOCOLOR
;
348 vesafb_defined
.xres_virtual
= vesafb_defined
.xres
;
349 vesafb_defined
.yres_virtual
= vesafb_fix
.smem_len
/ vesafb_fix
.line_length
;
350 if (ypan
&& vesafb_defined
.yres_virtual
> vesafb_defined
.yres
) {
351 printk(KERN_INFO
"vesafb: scrolling: %s using protected mode interface, yres_virtual=%d\n",
352 (ypan
> 1) ? "ywrap" : "ypan",vesafb_defined
.yres_virtual
);
354 printk(KERN_INFO
"vesafb: scrolling: redraw\n");
355 vesafb_defined
.yres_virtual
= vesafb_defined
.yres
;
359 /* some dummy values for timing to make fbset happy */
360 vesafb_defined
.pixclock
= 10000000 / vesafb_defined
.xres
* 1000 / vesafb_defined
.yres
;
361 vesafb_defined
.left_margin
= (vesafb_defined
.xres
/ 8) & 0xf8;
362 vesafb_defined
.hsync_len
= (vesafb_defined
.xres
/ 8) & 0xf8;
364 vesafb_defined
.red
.offset
= screen_info
.red_pos
;
365 vesafb_defined
.red
.length
= screen_info
.red_size
;
366 vesafb_defined
.green
.offset
= screen_info
.green_pos
;
367 vesafb_defined
.green
.length
= screen_info
.green_size
;
368 vesafb_defined
.blue
.offset
= screen_info
.blue_pos
;
369 vesafb_defined
.blue
.length
= screen_info
.blue_size
;
370 vesafb_defined
.transp
.offset
= screen_info
.rsvd_pos
;
371 vesafb_defined
.transp
.length
= screen_info
.rsvd_size
;
373 if (vesafb_defined
.bits_per_pixel
<= 8) {
374 depth
= vesafb_defined
.green
.length
;
375 vesafb_defined
.red
.length
=
376 vesafb_defined
.green
.length
=
377 vesafb_defined
.blue
.length
=
378 vesafb_defined
.bits_per_pixel
;
381 printk(KERN_INFO
"vesafb: %s: "
382 "size=%d:%d:%d:%d, shift=%d:%d:%d:%d\n",
383 (vesafb_defined
.bits_per_pixel
> 8) ?
384 "Truecolor" : (vga_compat
|| pmi_setpal
) ?
385 "Pseudocolor" : "Static Pseudocolor",
386 screen_info
.rsvd_size
,
387 screen_info
.red_size
,
388 screen_info
.green_size
,
389 screen_info
.blue_size
,
390 screen_info
.rsvd_pos
,
392 screen_info
.green_pos
,
393 screen_info
.blue_pos
);
395 vesafb_fix
.ypanstep
= ypan
? 1 : 0;
396 vesafb_fix
.ywrapstep
= (ypan
>1) ? 1 : 0;
398 /* request failure does not faze us, as vgacon probably has this
399 * region already (FIXME) */
400 request_region(0x3c0, 32, "vesafb");
404 unsigned int temp_size
= size_total
;
405 unsigned int type
= 0;
409 type
= MTRR_TYPE_UNCACHABLE
;
412 type
= MTRR_TYPE_WRBACK
;
415 type
= MTRR_TYPE_WRCOMB
;
418 type
= MTRR_TYPE_WRTHROUGH
;
428 /* Find the largest power-of-two */
429 temp_size
= roundup_pow_of_two(temp_size
);
431 /* Try and find a power of two to add */
433 rc
= mtrr_add(vesafb_fix
.smem_start
, temp_size
,
436 } while (temp_size
>= PAGE_SIZE
&& rc
== -EINVAL
);
442 case 1: /* uncachable */
443 info
->screen_base
= ioremap_nocache(vesafb_fix
.smem_start
, vesafb_fix
.smem_len
);
445 case 2: /* write-back */
446 info
->screen_base
= ioremap_cache(vesafb_fix
.smem_start
, vesafb_fix
.smem_len
);
448 case 3: /* write-combining */
449 info
->screen_base
= ioremap_wc(vesafb_fix
.smem_start
, vesafb_fix
.smem_len
);
451 case 4: /* write-through */
453 info
->screen_base
= ioremap(vesafb_fix
.smem_start
, vesafb_fix
.smem_len
);
456 if (!info
->screen_base
) {
458 "vesafb: abort, cannot ioremap video memory 0x%x @ 0x%lx\n",
459 vesafb_fix
.smem_len
, vesafb_fix
.smem_start
);
464 printk(KERN_INFO
"vesafb: framebuffer at 0x%lx, mapped to 0x%p, "
465 "using %dk, total %dk\n",
466 vesafb_fix
.smem_start
, info
->screen_base
,
467 size_remap
/1024, size_total
/1024);
469 info
->fbops
= &vesafb_ops
;
470 info
->var
= vesafb_defined
;
471 info
->fix
= vesafb_fix
;
472 info
->flags
= FBINFO_FLAG_DEFAULT
| FBINFO_MISC_FIRMWARE
|
473 (ypan
? FBINFO_HWACCEL_YPAN
: 0);
476 info
->fbops
->fb_pan_display
= NULL
;
478 if (fb_alloc_cmap(&info
->cmap
, 256, 0) < 0) {
482 if (register_framebuffer(info
)<0) {
484 fb_dealloc_cmap(&info
->cmap
);
487 printk(KERN_INFO
"fb%d: %s frame buffer device\n",
488 info
->node
, info
->fix
.id
);
491 if (info
->screen_base
)
492 iounmap(info
->screen_base
);
493 framebuffer_release(info
);
494 release_mem_region(vesafb_fix
.smem_start
, size_total
);
498 static struct platform_driver vesafb_driver
= {
504 static struct platform_device
*vesafb_device
;
506 static int __init
vesafb_init(void)
511 /* ignore error return of fb_get_options */
512 fb_get_options("vesafb", &option
);
513 vesafb_setup(option
);
515 vesafb_device
= platform_device_alloc("vesafb", 0);
519 ret
= platform_device_add(vesafb_device
);
521 ret
= platform_driver_probe(&vesafb_driver
, vesafb_probe
);
523 platform_device_del(vesafb_device
);
527 platform_device_put(vesafb_device
);
528 vesafb_device
= NULL
;
533 module_init(vesafb_init
);
535 MODULE_LICENSE("GPL");