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 if (info
->screen_base
)
179 iounmap(info
->screen_base
);
180 release_mem_region(info
->apertures
->ranges
[0].base
, info
->apertures
->ranges
[0].size
);
181 framebuffer_release(info
);
184 static struct fb_ops vesafb_ops
= {
185 .owner
= THIS_MODULE
,
186 .fb_destroy
= vesafb_destroy
,
187 .fb_setcolreg
= vesafb_setcolreg
,
188 .fb_pan_display
= vesafb_pan_display
,
189 .fb_fillrect
= cfb_fillrect
,
190 .fb_copyarea
= cfb_copyarea
,
191 .fb_imageblit
= cfb_imageblit
,
194 static int __init
vesafb_setup(char *options
)
198 if (!options
|| !*options
)
201 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
202 if (!*this_opt
) continue;
204 if (! strcmp(this_opt
, "inverse"))
206 else if (! strcmp(this_opt
, "redraw"))
208 else if (! strcmp(this_opt
, "ypan"))
210 else if (! strcmp(this_opt
, "ywrap"))
212 else if (! strcmp(this_opt
, "vgapal"))
214 else if (! strcmp(this_opt
, "pmipal"))
216 else if (! strncmp(this_opt
, "mtrr:", 5))
217 mtrr
= simple_strtoul(this_opt
+5, NULL
, 0);
218 else if (! strcmp(this_opt
, "nomtrr"))
220 else if (! strncmp(this_opt
, "vtotal:", 7))
221 vram_total
= simple_strtoul(this_opt
+7, NULL
, 0);
222 else if (! strncmp(this_opt
, "vremap:", 7))
223 vram_remap
= simple_strtoul(this_opt
+7, NULL
, 0);
228 static int __init
vesafb_probe(struct platform_device
*dev
)
230 struct fb_info
*info
;
232 unsigned int size_vmode
;
233 unsigned int size_remap
;
234 unsigned int size_total
;
236 if (screen_info
.orig_video_isVGA
!= VIDEO_TYPE_VLFB
)
239 vga_compat
= (screen_info
.capabilities
& 2) ? 0 : 1;
240 vesafb_fix
.smem_start
= screen_info
.lfb_base
;
241 vesafb_defined
.bits_per_pixel
= screen_info
.lfb_depth
;
242 if (15 == vesafb_defined
.bits_per_pixel
)
243 vesafb_defined
.bits_per_pixel
= 16;
244 vesafb_defined
.xres
= screen_info
.lfb_width
;
245 vesafb_defined
.yres
= screen_info
.lfb_height
;
246 vesafb_fix
.line_length
= screen_info
.lfb_linelength
;
247 vesafb_fix
.visual
= (vesafb_defined
.bits_per_pixel
== 8) ?
248 FB_VISUAL_PSEUDOCOLOR
: FB_VISUAL_TRUECOLOR
;
250 /* size_vmode -- that is the amount of memory needed for the
251 * used video mode, i.e. the minimum amount of
253 size_vmode
= vesafb_defined
.yres
* vesafb_fix
.line_length
;
255 /* size_total -- all video memory we have. Used for mtrr
256 * entries, resource allocation and bounds
258 size_total
= screen_info
.lfb_size
* 65536;
260 size_total
= vram_total
* 1024 * 1024;
261 if (size_total
< size_vmode
)
262 size_total
= size_vmode
;
264 /* size_remap -- the amount of video memory we are going to
265 * use for vesafb. With modern cards it is no
266 * option to simply use size_total as that
267 * wastes plenty of kernel address space. */
268 size_remap
= size_vmode
* 2;
270 size_remap
= vram_remap
* 1024 * 1024;
271 if (size_remap
< size_vmode
)
272 size_remap
= size_vmode
;
273 if (size_remap
> size_total
)
274 size_remap
= size_total
;
275 vesafb_fix
.smem_len
= size_remap
;
278 screen_info
.vesapm_seg
= 0;
281 if (!request_mem_region(vesafb_fix
.smem_start
, size_total
, "vesafb")) {
283 "vesafb: cannot reserve video memory at 0x%lx\n",
284 vesafb_fix
.smem_start
);
285 /* We cannot make this fatal. Sometimes this comes from magic
286 spaces our resource handlers simply don't know about */
289 info
= framebuffer_alloc(sizeof(u32
) * 256, &dev
->dev
);
291 release_mem_region(vesafb_fix
.smem_start
, size_total
);
294 info
->pseudo_palette
= info
->par
;
297 /* set vesafb aperture size for generic probing */
298 info
->apertures
= alloc_apertures(1);
299 if (!info
->apertures
) {
303 info
->apertures
->ranges
[0].base
= screen_info
.lfb_base
;
304 info
->apertures
->ranges
[0].size
= size_total
;
306 info
->screen_base
= ioremap(vesafb_fix
.smem_start
, vesafb_fix
.smem_len
);
307 if (!info
->screen_base
) {
309 "vesafb: abort, cannot ioremap video memory 0x%x @ 0x%lx\n",
310 vesafb_fix
.smem_len
, vesafb_fix
.smem_start
);
315 printk(KERN_INFO
"vesafb: framebuffer at 0x%lx, mapped to 0x%p, "
316 "using %dk, total %dk\n",
317 vesafb_fix
.smem_start
, info
->screen_base
,
318 size_remap
/1024, size_total
/1024);
319 printk(KERN_INFO
"vesafb: mode is %dx%dx%d, linelength=%d, pages=%d\n",
320 vesafb_defined
.xres
, vesafb_defined
.yres
, vesafb_defined
.bits_per_pixel
, vesafb_fix
.line_length
, screen_info
.pages
);
322 if (screen_info
.vesapm_seg
) {
323 printk(KERN_INFO
"vesafb: protected mode interface info at %04x:%04x\n",
324 screen_info
.vesapm_seg
,screen_info
.vesapm_off
);
327 if (screen_info
.vesapm_seg
< 0xc000)
328 ypan
= pmi_setpal
= 0; /* not available or some DOS TSR ... */
330 if (ypan
|| pmi_setpal
) {
331 unsigned short *pmi_base
;
332 pmi_base
= (unsigned short*)phys_to_virt(((unsigned long)screen_info
.vesapm_seg
<< 4) + screen_info
.vesapm_off
);
333 pmi_start
= (void*)((char*)pmi_base
+ pmi_base
[1]);
334 pmi_pal
= (void*)((char*)pmi_base
+ pmi_base
[2]);
335 printk(KERN_INFO
"vesafb: pmi: set display start = %p, set palette = %p\n",pmi_start
,pmi_pal
);
337 printk(KERN_INFO
"vesafb: pmi: ports = ");
338 for (i
= pmi_base
[3]/2; pmi_base
[i
] != 0xffff; i
++)
339 printk("%x ",pmi_base
[i
]);
341 if (pmi_base
[i
] != 0xffff) {
343 * memory areas not supported (yet?)
345 * Rules are: we have to set up a descriptor for the requested
346 * memory area and pass it in the ES register to the BIOS function.
348 printk(KERN_INFO
"vesafb: can't handle memory requests, pmi disabled\n");
349 ypan
= pmi_setpal
= 0;
354 if (vesafb_defined
.bits_per_pixel
== 8 && !pmi_setpal
&& !vga_compat
) {
355 printk(KERN_WARNING
"vesafb: hardware palette is unchangeable,\n"
356 " colors may be incorrect\n");
357 vesafb_fix
.visual
= FB_VISUAL_STATIC_PSEUDOCOLOR
;
360 vesafb_defined
.xres_virtual
= vesafb_defined
.xres
;
361 vesafb_defined
.yres_virtual
= vesafb_fix
.smem_len
/ vesafb_fix
.line_length
;
362 if (ypan
&& vesafb_defined
.yres_virtual
> vesafb_defined
.yres
) {
363 printk(KERN_INFO
"vesafb: scrolling: %s using protected mode interface, yres_virtual=%d\n",
364 (ypan
> 1) ? "ywrap" : "ypan",vesafb_defined
.yres_virtual
);
366 printk(KERN_INFO
"vesafb: scrolling: redraw\n");
367 vesafb_defined
.yres_virtual
= vesafb_defined
.yres
;
371 /* some dummy values for timing to make fbset happy */
372 vesafb_defined
.pixclock
= 10000000 / vesafb_defined
.xres
* 1000 / vesafb_defined
.yres
;
373 vesafb_defined
.left_margin
= (vesafb_defined
.xres
/ 8) & 0xf8;
374 vesafb_defined
.hsync_len
= (vesafb_defined
.xres
/ 8) & 0xf8;
376 vesafb_defined
.red
.offset
= screen_info
.red_pos
;
377 vesafb_defined
.red
.length
= screen_info
.red_size
;
378 vesafb_defined
.green
.offset
= screen_info
.green_pos
;
379 vesafb_defined
.green
.length
= screen_info
.green_size
;
380 vesafb_defined
.blue
.offset
= screen_info
.blue_pos
;
381 vesafb_defined
.blue
.length
= screen_info
.blue_size
;
382 vesafb_defined
.transp
.offset
= screen_info
.rsvd_pos
;
383 vesafb_defined
.transp
.length
= screen_info
.rsvd_size
;
385 if (vesafb_defined
.bits_per_pixel
<= 8) {
386 depth
= vesafb_defined
.green
.length
;
387 vesafb_defined
.red
.length
=
388 vesafb_defined
.green
.length
=
389 vesafb_defined
.blue
.length
=
390 vesafb_defined
.bits_per_pixel
;
393 printk(KERN_INFO
"vesafb: %s: "
394 "size=%d:%d:%d:%d, shift=%d:%d:%d:%d\n",
395 (vesafb_defined
.bits_per_pixel
> 8) ?
396 "Truecolor" : (vga_compat
|| pmi_setpal
) ?
397 "Pseudocolor" : "Static Pseudocolor",
398 screen_info
.rsvd_size
,
399 screen_info
.red_size
,
400 screen_info
.green_size
,
401 screen_info
.blue_size
,
402 screen_info
.rsvd_pos
,
404 screen_info
.green_pos
,
405 screen_info
.blue_pos
);
407 vesafb_fix
.ypanstep
= ypan
? 1 : 0;
408 vesafb_fix
.ywrapstep
= (ypan
>1) ? 1 : 0;
410 /* request failure does not faze us, as vgacon probably has this
411 * region already (FIXME) */
412 request_region(0x3c0, 32, "vesafb");
416 unsigned int temp_size
= size_total
;
417 unsigned int type
= 0;
421 type
= MTRR_TYPE_UNCACHABLE
;
424 type
= MTRR_TYPE_WRBACK
;
427 type
= MTRR_TYPE_WRCOMB
;
430 type
= MTRR_TYPE_WRTHROUGH
;
440 /* Find the largest power-of-two */
441 while (temp_size
& (temp_size
- 1))
442 temp_size
&= (temp_size
- 1);
444 /* Try and find a power of two to add */
446 rc
= mtrr_add(vesafb_fix
.smem_start
, temp_size
,
449 } while (temp_size
>= PAGE_SIZE
&& rc
== -EINVAL
);
454 info
->fbops
= &vesafb_ops
;
455 info
->var
= vesafb_defined
;
456 info
->fix
= vesafb_fix
;
457 info
->flags
= FBINFO_FLAG_DEFAULT
| FBINFO_MISC_FIRMWARE
|
458 (ypan
? FBINFO_HWACCEL_YPAN
: 0);
461 info
->fbops
->fb_pan_display
= NULL
;
463 if (fb_alloc_cmap(&info
->cmap
, 256, 0) < 0) {
467 if (register_framebuffer(info
)<0) {
469 fb_dealloc_cmap(&info
->cmap
);
472 printk(KERN_INFO
"fb%d: %s frame buffer device\n",
473 info
->node
, info
->fix
.id
);
476 if (info
->screen_base
)
477 iounmap(info
->screen_base
);
478 framebuffer_release(info
);
479 release_mem_region(vesafb_fix
.smem_start
, size_total
);
483 static struct platform_driver vesafb_driver
= {
489 static struct platform_device
*vesafb_device
;
491 static int __init
vesafb_init(void)
496 /* ignore error return of fb_get_options */
497 fb_get_options("vesafb", &option
);
498 vesafb_setup(option
);
500 vesafb_device
= platform_device_alloc("vesafb", 0);
504 ret
= platform_device_add(vesafb_device
);
506 ret
= platform_driver_probe(&vesafb_driver
, vesafb_probe
);
508 platform_device_del(vesafb_device
);
512 platform_device_put(vesafb_device
);
513 vesafb_device
= NULL
;
518 module_init(vesafb_init
);
520 MODULE_LICENSE("GPL");