2 * A framebuffer driver for VBE 2.0+ compliant video cards
4 * (c) 2007 Michal Januszewski <spock@gentoo.org>
5 * Loosely based upon the vesafb driver.
8 #include <linux/init.h>
9 #include <linux/module.h>
10 #include <linux/moduleparam.h>
11 #include <linux/skbuff.h>
12 #include <linux/timer.h>
13 #include <linux/completion.h>
14 #include <linux/connector.h>
15 #include <linux/random.h>
16 #include <linux/platform_device.h>
17 #include <linux/limits.h>
20 #include <linux/mutex.h>
21 #include <linux/slab.h>
22 #include <video/edid.h>
23 #include <video/uvesafb.h>
25 #include <video/vga.h>
29 static struct cb_id uvesafb_cn_id
= {
31 .val
= CN_VAL_V86D_UVESAFB
33 static char v86d_path
[PATH_MAX
] = "/sbin/v86d";
34 static char v86d_started
; /* has v86d been started by uvesafb? */
36 static struct fb_fix_screeninfo uvesafb_fix
= {
38 .type
= FB_TYPE_PACKED_PIXELS
,
39 .accel
= FB_ACCEL_NONE
,
40 .visual
= FB_VISUAL_TRUECOLOR
,
43 static int mtrr
= 3; /* enable mtrr by default */
44 static bool blank
= 1; /* enable blanking by default */
45 static int ypan
= 1; /* 0: scroll, 1: ypan, 2: ywrap */
46 static bool pmi_setpal
= true; /* use PMI for palette changes */
47 static bool nocrtc
; /* ignore CRTC settings */
48 static bool noedid
; /* don't try DDC transfers */
49 static int vram_remap
; /* set amt. of memory to be used */
50 static int vram_total
; /* set total amount of memory */
51 static u16 maxclk
; /* maximum pixel clock */
52 static u16 maxvf
; /* maximum vertical frequency */
53 static u16 maxhf
; /* maximum horizontal frequency */
54 static u16 vbemode
; /* force use of a specific VBE mode */
55 static char *mode_option
;
56 static u8 dac_width
= 6;
58 static struct uvesafb_ktask
*uvfb_tasks
[UVESAFB_TASKS_MAX
];
59 static DEFINE_MUTEX(uvfb_lock
);
62 * A handler for replies from userspace.
64 * Make sure each message passes consistency checks and if it does,
65 * find the kernel part of the task struct, copy the registers and
66 * the buffer contents and then complete the task.
68 static void uvesafb_cn_callback(struct cn_msg
*msg
, struct netlink_skb_parms
*nsp
)
70 struct uvesafb_task
*utask
;
71 struct uvesafb_ktask
*task
;
73 if (!capable(CAP_SYS_ADMIN
))
76 if (msg
->seq
>= UVESAFB_TASKS_MAX
)
79 mutex_lock(&uvfb_lock
);
80 task
= uvfb_tasks
[msg
->seq
];
82 if (!task
|| msg
->ack
!= task
->ack
) {
83 mutex_unlock(&uvfb_lock
);
87 utask
= (struct uvesafb_task
*)msg
->data
;
89 /* Sanity checks for the buffer length. */
90 if (task
->t
.buf_len
< utask
->buf_len
||
91 utask
->buf_len
> msg
->len
- sizeof(*utask
)) {
92 mutex_unlock(&uvfb_lock
);
96 uvfb_tasks
[msg
->seq
] = NULL
;
97 mutex_unlock(&uvfb_lock
);
99 memcpy(&task
->t
, utask
, sizeof(*utask
));
101 if (task
->t
.buf_len
&& task
->buf
)
102 memcpy(task
->buf
, utask
+ 1, task
->t
.buf_len
);
104 complete(task
->done
);
108 static int uvesafb_helper_start(void)
121 return call_usermodehelper(v86d_path
, argv
, envp
, UMH_WAIT_PROC
);
125 * Execute a uvesafb task.
127 * Returns 0 if the task is executed successfully.
129 * A message sent to the userspace consists of the uvesafb_task
130 * struct and (optionally) a buffer. The uvesafb_task struct is
131 * a simplified version of uvesafb_ktask (its kernel counterpart)
132 * containing only the register values, flags and the length of
135 * Each message is assigned a sequence number (increased linearly)
136 * and a random ack number. The sequence number is used as a key
137 * for the uvfb_tasks array which holds pointers to uvesafb_ktask
138 * structs for all requests.
140 static int uvesafb_exec(struct uvesafb_ktask
*task
)
145 int len
= sizeof(task
->t
) + task
->t
.buf_len
;
148 * Check whether the message isn't longer than the maximum
149 * allowed by connector.
151 if (sizeof(*m
) + len
> CONNECTOR_MAX_MSG_SIZE
) {
152 printk(KERN_WARNING
"uvesafb: message too long (%d), "
153 "can't execute task\n", (int)(sizeof(*m
) + len
));
157 m
= kzalloc(sizeof(*m
) + len
, GFP_KERNEL
);
161 init_completion(task
->done
);
163 memcpy(&m
->id
, &uvesafb_cn_id
, sizeof(m
->id
));
166 m
->ack
= prandom_u32();
168 /* uvesafb_task structure */
169 memcpy(m
+ 1, &task
->t
, sizeof(task
->t
));
172 memcpy((u8
*)(m
+ 1) + sizeof(task
->t
), task
->buf
, task
->t
.buf_len
);
175 * Save the message ack number so that we can find the kernel
176 * part of this task when a reply is received from userspace.
180 mutex_lock(&uvfb_lock
);
182 /* If all slots are taken -- bail out. */
183 if (uvfb_tasks
[seq
]) {
184 mutex_unlock(&uvfb_lock
);
189 /* Save a pointer to the kernel part of the task struct. */
190 uvfb_tasks
[seq
] = task
;
191 mutex_unlock(&uvfb_lock
);
193 err
= cn_netlink_send(m
, 0, GFP_KERNEL
);
196 * Try to start the userspace helper if sending
197 * the request failed the first time.
199 err
= uvesafb_helper_start();
201 printk(KERN_ERR
"uvesafb: failed to execute %s\n",
203 printk(KERN_ERR
"uvesafb: make sure that the v86d "
204 "helper is installed and executable\n");
207 err
= cn_netlink_send(m
, 0, gfp_any());
211 } else if (err
== -ENOBUFS
)
214 if (!err
&& !(task
->t
.flags
& TF_EXIT
))
215 err
= !wait_for_completion_timeout(task
->done
,
216 msecs_to_jiffies(UVESAFB_TIMEOUT
));
218 mutex_lock(&uvfb_lock
);
219 uvfb_tasks
[seq
] = NULL
;
220 mutex_unlock(&uvfb_lock
);
223 if (seq
>= UVESAFB_TASKS_MAX
)
231 * Free a uvesafb_ktask struct.
233 static void uvesafb_free(struct uvesafb_ktask
*task
)
242 * Prepare a uvesafb_ktask struct to be used again.
244 static void uvesafb_reset(struct uvesafb_ktask
*task
)
246 struct completion
*cpl
= task
->done
;
248 memset(task
, 0, sizeof(*task
));
253 * Allocate and prepare a uvesafb_ktask struct.
255 static struct uvesafb_ktask
*uvesafb_prep(void)
257 struct uvesafb_ktask
*task
;
259 task
= kzalloc(sizeof(*task
), GFP_KERNEL
);
261 task
->done
= kzalloc(sizeof(*task
->done
), GFP_KERNEL
);
270 static void uvesafb_setup_var(struct fb_var_screeninfo
*var
,
271 struct fb_info
*info
, struct vbe_mode_ib
*mode
)
273 struct uvesafb_par
*par
= info
->par
;
275 var
->vmode
= FB_VMODE_NONINTERLACED
;
276 var
->sync
= FB_SYNC_VERT_HIGH_ACT
;
278 var
->xres
= mode
->x_res
;
279 var
->yres
= mode
->y_res
;
280 var
->xres_virtual
= mode
->x_res
;
281 var
->yres_virtual
= (par
->ypan
) ?
282 info
->fix
.smem_len
/ mode
->bytes_per_scan_line
:
286 var
->bits_per_pixel
= mode
->bits_per_pixel
;
288 if (var
->bits_per_pixel
== 15)
289 var
->bits_per_pixel
= 16;
291 if (var
->bits_per_pixel
> 8) {
292 var
->red
.offset
= mode
->red_off
;
293 var
->red
.length
= mode
->red_len
;
294 var
->green
.offset
= mode
->green_off
;
295 var
->green
.length
= mode
->green_len
;
296 var
->blue
.offset
= mode
->blue_off
;
297 var
->blue
.length
= mode
->blue_len
;
298 var
->transp
.offset
= mode
->rsvd_off
;
299 var
->transp
.length
= mode
->rsvd_len
;
302 var
->green
.offset
= 0;
303 var
->blue
.offset
= 0;
304 var
->transp
.offset
= 0;
307 var
->green
.length
= 8;
308 var
->blue
.length
= 8;
309 var
->transp
.length
= 0;
313 static int uvesafb_vbe_find_mode(struct uvesafb_par
*par
,
314 int xres
, int yres
, int depth
, unsigned char flags
)
316 int i
, match
= -1, h
= 0, d
= 0x7fffffff;
318 for (i
= 0; i
< par
->vbe_modes_cnt
; i
++) {
319 h
= abs(par
->vbe_modes
[i
].x_res
- xres
) +
320 abs(par
->vbe_modes
[i
].y_res
- yres
) +
321 abs(depth
- par
->vbe_modes
[i
].depth
);
324 * We have an exact match in terms of resolution
330 if (h
< d
|| (h
== d
&& par
->vbe_modes
[i
].depth
> depth
)) {
337 if (flags
& UVESAFB_EXACT_DEPTH
&&
338 par
->vbe_modes
[match
].depth
!= depth
)
341 if (flags
& UVESAFB_EXACT_RES
&& d
> 24)
350 static u8
*uvesafb_vbe_state_save(struct uvesafb_par
*par
)
352 struct uvesafb_ktask
*task
;
356 if (!par
->vbe_state_size
)
359 state
= kmalloc(par
->vbe_state_size
, GFP_KERNEL
);
361 return ERR_PTR(-ENOMEM
);
363 task
= uvesafb_prep();
369 task
->t
.regs
.eax
= 0x4f04;
370 task
->t
.regs
.ecx
= 0x000f;
371 task
->t
.regs
.edx
= 0x0001;
372 task
->t
.flags
= TF_BUF_RET
| TF_BUF_ESBX
;
373 task
->t
.buf_len
= par
->vbe_state_size
;
375 err
= uvesafb_exec(task
);
377 if (err
|| (task
->t
.regs
.eax
& 0xffff) != 0x004f) {
378 printk(KERN_WARNING
"uvesafb: VBE get state call "
379 "failed (eax=0x%x, err=%d)\n",
380 task
->t
.regs
.eax
, err
);
389 static void uvesafb_vbe_state_restore(struct uvesafb_par
*par
, u8
*state_buf
)
391 struct uvesafb_ktask
*task
;
397 task
= uvesafb_prep();
401 task
->t
.regs
.eax
= 0x4f04;
402 task
->t
.regs
.ecx
= 0x000f;
403 task
->t
.regs
.edx
= 0x0002;
404 task
->t
.buf_len
= par
->vbe_state_size
;
405 task
->t
.flags
= TF_BUF_ESBX
;
406 task
->buf
= state_buf
;
408 err
= uvesafb_exec(task
);
409 if (err
|| (task
->t
.regs
.eax
& 0xffff) != 0x004f)
410 printk(KERN_WARNING
"uvesafb: VBE state restore call "
411 "failed (eax=0x%x, err=%d)\n",
412 task
->t
.regs
.eax
, err
);
417 static int uvesafb_vbe_getinfo(struct uvesafb_ktask
*task
,
418 struct uvesafb_par
*par
)
422 task
->t
.regs
.eax
= 0x4f00;
423 task
->t
.flags
= TF_VBEIB
;
424 task
->t
.buf_len
= sizeof(struct vbe_ib
);
425 task
->buf
= &par
->vbe_ib
;
426 strncpy(par
->vbe_ib
.vbe_signature
, "VBE2", 4);
428 err
= uvesafb_exec(task
);
429 if (err
|| (task
->t
.regs
.eax
& 0xffff) != 0x004f) {
430 printk(KERN_ERR
"uvesafb: Getting VBE info block failed "
431 "(eax=0x%x, err=%d)\n", (u32
)task
->t
.regs
.eax
,
436 if (par
->vbe_ib
.vbe_version
< 0x0200) {
437 printk(KERN_ERR
"uvesafb: Sorry, pre-VBE 2.0 cards are "
442 if (!par
->vbe_ib
.mode_list_ptr
) {
443 printk(KERN_ERR
"uvesafb: Missing mode list!\n");
447 printk(KERN_INFO
"uvesafb: ");
450 * Convert string pointers and the mode list pointer into
451 * usable addresses. Print informational messages about the
452 * video adapter and its vendor.
454 if (par
->vbe_ib
.oem_vendor_name_ptr
)
456 ((char *)task
->buf
) + par
->vbe_ib
.oem_vendor_name_ptr
);
458 if (par
->vbe_ib
.oem_product_name_ptr
)
460 ((char *)task
->buf
) + par
->vbe_ib
.oem_product_name_ptr
);
462 if (par
->vbe_ib
.oem_product_rev_ptr
)
464 ((char *)task
->buf
) + par
->vbe_ib
.oem_product_rev_ptr
);
466 if (par
->vbe_ib
.oem_string_ptr
)
468 ((char *)task
->buf
) + par
->vbe_ib
.oem_string_ptr
);
470 printk("VBE v%d.%d\n", ((par
->vbe_ib
.vbe_version
& 0xff00) >> 8),
471 par
->vbe_ib
.vbe_version
& 0xff);
476 static int uvesafb_vbe_getmodes(struct uvesafb_ktask
*task
,
477 struct uvesafb_par
*par
)
482 par
->vbe_modes_cnt
= 0;
484 /* Count available modes. */
485 mode
= (u16
*) (((u8
*)&par
->vbe_ib
) + par
->vbe_ib
.mode_list_ptr
);
486 while (*mode
!= 0xffff) {
487 par
->vbe_modes_cnt
++;
491 par
->vbe_modes
= kzalloc(sizeof(struct vbe_mode_ib
) *
492 par
->vbe_modes_cnt
, GFP_KERNEL
);
496 /* Get info about all available modes. */
497 mode
= (u16
*) (((u8
*)&par
->vbe_ib
) + par
->vbe_ib
.mode_list_ptr
);
498 while (*mode
!= 0xffff) {
499 struct vbe_mode_ib
*mib
;
502 task
->t
.regs
.eax
= 0x4f01;
503 task
->t
.regs
.ecx
= (u32
) *mode
;
504 task
->t
.flags
= TF_BUF_RET
| TF_BUF_ESDI
;
505 task
->t
.buf_len
= sizeof(struct vbe_mode_ib
);
506 task
->buf
= par
->vbe_modes
+ off
;
508 err
= uvesafb_exec(task
);
509 if (err
|| (task
->t
.regs
.eax
& 0xffff) != 0x004f) {
510 printk(KERN_WARNING
"uvesafb: Getting mode info block "
511 "for mode 0x%x failed (eax=0x%x, err=%d)\n",
512 *mode
, (u32
)task
->t
.regs
.eax
, err
);
514 par
->vbe_modes_cnt
--;
519 mib
->mode_id
= *mode
;
522 * We only want modes that are supported with the current
523 * hardware configuration, color, graphics and that have
524 * support for the LFB.
526 if ((mib
->mode_attr
& VBE_MODE_MASK
) == VBE_MODE_MASK
&&
527 mib
->bits_per_pixel
>= 8)
530 par
->vbe_modes_cnt
--;
533 mib
->depth
= mib
->red_len
+ mib
->green_len
+ mib
->blue_len
;
536 * Handle 8bpp modes and modes with broken color component
539 if (mib
->depth
== 0 || (mib
->depth
== 24 &&
540 mib
->bits_per_pixel
== 32))
541 mib
->depth
= mib
->bits_per_pixel
;
544 if (par
->vbe_modes_cnt
> 0)
551 * The Protected Mode Interface is 32-bit x86 code, so we only run it on
552 * x86 and not x86_64.
555 static int uvesafb_vbe_getpmi(struct uvesafb_ktask
*task
,
556 struct uvesafb_par
*par
)
561 task
->t
.regs
.eax
= 0x4f0a;
562 task
->t
.regs
.ebx
= 0x0;
563 err
= uvesafb_exec(task
);
565 if ((task
->t
.regs
.eax
& 0xffff) != 0x4f || task
->t
.regs
.es
< 0xc000) {
566 par
->pmi_setpal
= par
->ypan
= 0;
568 par
->pmi_base
= (u16
*)phys_to_virt(((u32
)task
->t
.regs
.es
<< 4)
570 par
->pmi_start
= (u8
*)par
->pmi_base
+ par
->pmi_base
[1];
571 par
->pmi_pal
= (u8
*)par
->pmi_base
+ par
->pmi_base
[2];
572 printk(KERN_INFO
"uvesafb: protected mode interface info at "
574 (u16
)task
->t
.regs
.es
, (u16
)task
->t
.regs
.edi
);
575 printk(KERN_INFO
"uvesafb: pmi: set display start = %p, "
576 "set palette = %p\n", par
->pmi_start
,
579 if (par
->pmi_base
[3]) {
580 printk(KERN_INFO
"uvesafb: pmi: ports = ");
581 for (i
= par
->pmi_base
[3]/2;
582 par
->pmi_base
[i
] != 0xffff; i
++)
583 printk("%x ", par
->pmi_base
[i
]);
586 if (par
->pmi_base
[i
] != 0xffff) {
587 printk(KERN_INFO
"uvesafb: can't handle memory"
588 " requests, pmi disabled\n");
589 par
->ypan
= par
->pmi_setpal
= 0;
595 #endif /* CONFIG_X86_32 */
598 * Check whether a video mode is supported by the Video BIOS and is
599 * compatible with the monitor limits.
601 static int uvesafb_is_valid_mode(struct fb_videomode
*mode
,
602 struct fb_info
*info
)
604 if (info
->monspecs
.gtf
) {
605 fb_videomode_to_var(&info
->var
, mode
);
606 if (fb_validate_mode(&info
->var
, info
))
610 if (uvesafb_vbe_find_mode(info
->par
, mode
->xres
, mode
->yres
, 8,
611 UVESAFB_EXACT_RES
) == -1)
617 static int uvesafb_vbe_getedid(struct uvesafb_ktask
*task
, struct fb_info
*info
)
619 struct uvesafb_par
*par
= info
->par
;
622 if (noedid
|| par
->vbe_ib
.vbe_version
< 0x0300)
625 task
->t
.regs
.eax
= 0x4f15;
626 task
->t
.regs
.ebx
= 0;
627 task
->t
.regs
.ecx
= 0;
631 err
= uvesafb_exec(task
);
633 if ((task
->t
.regs
.eax
& 0xffff) != 0x004f || err
)
636 if ((task
->t
.regs
.ebx
& 0x3) == 3) {
637 printk(KERN_INFO
"uvesafb: VBIOS/hardware supports both "
638 "DDC1 and DDC2 transfers\n");
639 } else if ((task
->t
.regs
.ebx
& 0x3) == 2) {
640 printk(KERN_INFO
"uvesafb: VBIOS/hardware supports DDC2 "
642 } else if ((task
->t
.regs
.ebx
& 0x3) == 1) {
643 printk(KERN_INFO
"uvesafb: VBIOS/hardware supports DDC1 "
646 printk(KERN_INFO
"uvesafb: VBIOS/hardware doesn't support "
651 task
->t
.regs
.eax
= 0x4f15;
652 task
->t
.regs
.ebx
= 1;
653 task
->t
.regs
.ecx
= task
->t
.regs
.edx
= 0;
654 task
->t
.flags
= TF_BUF_RET
| TF_BUF_ESDI
;
655 task
->t
.buf_len
= EDID_LENGTH
;
656 task
->buf
= kzalloc(EDID_LENGTH
, GFP_KERNEL
);
660 err
= uvesafb_exec(task
);
662 if ((task
->t
.regs
.eax
& 0xffff) == 0x004f && !err
) {
663 fb_edid_to_monspecs(task
->buf
, &info
->monspecs
);
665 if (info
->monspecs
.vfmax
&& info
->monspecs
.hfmax
) {
667 * If the maximum pixel clock wasn't specified in
668 * the EDID block, set it to 300 MHz.
670 if (info
->monspecs
.dclkmax
== 0)
671 info
->monspecs
.dclkmax
= 300 * 1000000;
672 info
->monspecs
.gtf
= 1;
682 static void uvesafb_vbe_getmonspecs(struct uvesafb_ktask
*task
,
683 struct fb_info
*info
)
685 struct uvesafb_par
*par
= info
->par
;
688 memset(&info
->monspecs
, 0, sizeof(info
->monspecs
));
691 * If we don't get all necessary data from the EDID block,
692 * mark it as incompatible with the GTF and set nocrtc so
693 * that we always use the default BIOS refresh rate.
695 if (uvesafb_vbe_getedid(task
, info
)) {
696 info
->monspecs
.gtf
= 0;
700 /* Kernel command line overrides. */
702 info
->monspecs
.dclkmax
= maxclk
* 1000000;
704 info
->monspecs
.vfmax
= maxvf
;
706 info
->monspecs
.hfmax
= maxhf
* 1000;
709 * In case DDC transfers are not supported, the user can provide
710 * monitor limits manually. Lower limits are set to "safe" values.
712 if (info
->monspecs
.gtf
== 0 && maxclk
&& maxvf
&& maxhf
) {
713 info
->monspecs
.dclkmin
= 0;
714 info
->monspecs
.vfmin
= 60;
715 info
->monspecs
.hfmin
= 29000;
716 info
->monspecs
.gtf
= 1;
720 if (info
->monspecs
.gtf
)
722 "uvesafb: monitor limits: vf = %d Hz, hf = %d kHz, "
723 "clk = %d MHz\n", info
->monspecs
.vfmax
,
724 (int)(info
->monspecs
.hfmax
/ 1000),
725 (int)(info
->monspecs
.dclkmax
/ 1000000));
727 printk(KERN_INFO
"uvesafb: no monitor limits have been set, "
728 "default refresh rate will be used\n");
730 /* Add VBE modes to the modelist. */
731 for (i
= 0; i
< par
->vbe_modes_cnt
; i
++) {
732 struct fb_var_screeninfo var
;
733 struct vbe_mode_ib
*mode
;
734 struct fb_videomode vmode
;
736 mode
= &par
->vbe_modes
[i
];
737 memset(&var
, 0, sizeof(var
));
739 var
.xres
= mode
->x_res
;
740 var
.yres
= mode
->y_res
;
742 fb_get_mode(FB_VSYNCTIMINGS
| FB_IGNOREMON
, 60, &var
, info
);
743 fb_var_to_videomode(&vmode
, &var
);
744 fb_add_videomode(&vmode
, &info
->modelist
);
747 /* Add valid VESA modes to our modelist. */
748 for (i
= 0; i
< VESA_MODEDB_SIZE
; i
++) {
749 if (uvesafb_is_valid_mode((struct fb_videomode
*)
750 &vesa_modes
[i
], info
))
751 fb_add_videomode(&vesa_modes
[i
], &info
->modelist
);
754 for (i
= 0; i
< info
->monspecs
.modedb_len
; i
++) {
755 if (uvesafb_is_valid_mode(&info
->monspecs
.modedb
[i
], info
))
756 fb_add_videomode(&info
->monspecs
.modedb
[i
],
763 static void uvesafb_vbe_getstatesize(struct uvesafb_ktask
*task
,
764 struct uvesafb_par
*par
)
771 * Get the VBE state buffer size. We want all available
772 * hardware state data (CL = 0x0f).
774 task
->t
.regs
.eax
= 0x4f04;
775 task
->t
.regs
.ecx
= 0x000f;
776 task
->t
.regs
.edx
= 0x0000;
779 err
= uvesafb_exec(task
);
781 if (err
|| (task
->t
.regs
.eax
& 0xffff) != 0x004f) {
782 printk(KERN_WARNING
"uvesafb: VBE state buffer size "
783 "cannot be determined (eax=0x%x, err=%d)\n",
784 task
->t
.regs
.eax
, err
);
785 par
->vbe_state_size
= 0;
789 par
->vbe_state_size
= 64 * (task
->t
.regs
.ebx
& 0xffff);
792 static int uvesafb_vbe_init(struct fb_info
*info
)
794 struct uvesafb_ktask
*task
= NULL
;
795 struct uvesafb_par
*par
= info
->par
;
798 task
= uvesafb_prep();
802 err
= uvesafb_vbe_getinfo(task
, par
);
806 err
= uvesafb_vbe_getmodes(task
, par
);
810 par
->nocrtc
= nocrtc
;
812 par
->pmi_setpal
= pmi_setpal
;
815 if (par
->pmi_setpal
|| par
->ypan
) {
816 if (__supported_pte_mask
& _PAGE_NX
) {
817 par
->pmi_setpal
= par
->ypan
= 0;
818 printk(KERN_WARNING
"uvesafb: NX protection is active, "
819 "better not use the PMI.\n");
821 uvesafb_vbe_getpmi(task
, par
);
825 /* The protected mode interface is not available on non-x86. */
826 par
->pmi_setpal
= par
->ypan
= 0;
829 INIT_LIST_HEAD(&info
->modelist
);
830 uvesafb_vbe_getmonspecs(task
, info
);
831 uvesafb_vbe_getstatesize(task
, par
);
833 out
: uvesafb_free(task
);
837 static int uvesafb_vbe_init_mode(struct fb_info
*info
)
839 struct list_head
*pos
;
840 struct fb_modelist
*modelist
;
841 struct fb_videomode
*mode
;
842 struct uvesafb_par
*par
= info
->par
;
845 /* Has the user requested a specific VESA mode? */
847 for (i
= 0; i
< par
->vbe_modes_cnt
; i
++) {
848 if (par
->vbe_modes
[i
].mode_id
== vbemode
) {
850 uvesafb_setup_var(&info
->var
, info
,
851 &par
->vbe_modes
[modeid
]);
852 fb_get_mode(FB_VSYNCTIMINGS
| FB_IGNOREMON
, 60,
855 * With pixclock set to 0, the default BIOS
856 * timings will be used in set_par().
858 info
->var
.pixclock
= 0;
862 printk(KERN_INFO
"uvesafb: requested VBE mode 0x%x is "
863 "unavailable\n", vbemode
);
867 /* Count the modes in the modelist */
869 list_for_each(pos
, &info
->modelist
)
873 * Convert the modelist into a modedb so that we can use it with
876 mode
= kzalloc(i
* sizeof(*mode
), GFP_KERNEL
);
879 list_for_each(pos
, &info
->modelist
) {
880 modelist
= list_entry(pos
, struct fb_modelist
, list
);
881 mode
[i
] = modelist
->mode
;
886 mode_option
= UVESAFB_DEFAULT_MODE
;
888 i
= fb_find_mode(&info
->var
, info
, mode_option
, mode
, i
,
894 /* fb_find_mode() failed */
896 info
->var
.xres
= 640;
897 info
->var
.yres
= 480;
898 mode
= (struct fb_videomode
*)
899 fb_find_best_mode(&info
->var
, &info
->modelist
);
902 fb_videomode_to_var(&info
->var
, mode
);
904 modeid
= par
->vbe_modes
[0].mode_id
;
905 uvesafb_setup_var(&info
->var
, info
,
906 &par
->vbe_modes
[modeid
]);
907 fb_get_mode(FB_VSYNCTIMINGS
| FB_IGNOREMON
, 60,
914 /* Look for a matching VBE mode. */
915 modeid
= uvesafb_vbe_find_mode(par
, info
->var
.xres
, info
->var
.yres
,
916 info
->var
.bits_per_pixel
, UVESAFB_EXACT_RES
);
921 uvesafb_setup_var(&info
->var
, info
, &par
->vbe_modes
[modeid
]);
925 * If we are not VBE3.0+ compliant, we're done -- the BIOS will
926 * ignore our timings anyway.
928 if (par
->vbe_ib
.vbe_version
< 0x0300 || par
->nocrtc
)
929 fb_get_mode(FB_VSYNCTIMINGS
| FB_IGNOREMON
, 60,
935 static int uvesafb_setpalette(struct uvesafb_pal_entry
*entries
, int count
,
936 int start
, struct fb_info
*info
)
938 struct uvesafb_ktask
*task
;
940 struct uvesafb_par
*par
= info
->par
;
941 int i
= par
->mode_idx
;
946 * We support palette modifications for 8 bpp modes only, so
947 * there can never be more than 256 entries.
949 if (start
+ count
> 256)
953 /* Use VGA registers if mode is VGA-compatible. */
954 if (i
>= 0 && i
< par
->vbe_modes_cnt
&&
955 par
->vbe_modes
[i
].mode_attr
& VBE_MODE_VGACOMPAT
) {
956 for (i
= 0; i
< count
; i
++) {
957 outb_p(start
+ i
, dac_reg
);
958 outb_p(entries
[i
].red
, dac_val
);
959 outb_p(entries
[i
].green
, dac_val
);
960 outb_p(entries
[i
].blue
, dac_val
);
964 else if (par
->pmi_setpal
) {
965 __asm__
__volatile__(
967 : /* no return value */
968 : "a" (0x4f09), /* EAX */
970 "c" (count
), /* ECX */
971 "d" (start
), /* EDX */
972 "D" (entries
), /* EDI */
973 "S" (&par
->pmi_pal
)); /* ESI */
975 #endif /* CONFIG_X86_32 */
977 #endif /* CONFIG_X86 */
979 task
= uvesafb_prep();
983 task
->t
.regs
.eax
= 0x4f09;
984 task
->t
.regs
.ebx
= 0x0;
985 task
->t
.regs
.ecx
= count
;
986 task
->t
.regs
.edx
= start
;
987 task
->t
.flags
= TF_BUF_ESDI
;
988 task
->t
.buf_len
= sizeof(struct uvesafb_pal_entry
) * count
;
991 err
= uvesafb_exec(task
);
992 if ((task
->t
.regs
.eax
& 0xffff) != 0x004f)
1000 static int uvesafb_setcolreg(unsigned regno
, unsigned red
, unsigned green
,
1001 unsigned blue
, unsigned transp
,
1002 struct fb_info
*info
)
1004 struct uvesafb_pal_entry entry
;
1005 int shift
= 16 - dac_width
;
1008 if (regno
>= info
->cmap
.len
)
1011 if (info
->var
.bits_per_pixel
== 8) {
1012 entry
.red
= red
>> shift
;
1013 entry
.green
= green
>> shift
;
1014 entry
.blue
= blue
>> shift
;
1017 err
= uvesafb_setpalette(&entry
, 1, regno
, info
);
1018 } else if (regno
< 16) {
1019 switch (info
->var
.bits_per_pixel
) {
1021 if (info
->var
.red
.offset
== 10) {
1023 ((u32
*) (info
->pseudo_palette
))[regno
] =
1024 ((red
& 0xf800) >> 1) |
1025 ((green
& 0xf800) >> 6) |
1026 ((blue
& 0xf800) >> 11);
1029 ((u32
*) (info
->pseudo_palette
))[regno
] =
1031 ((green
& 0xfc00) >> 5) |
1032 ((blue
& 0xf800) >> 11);
1041 ((u32
*)(info
->pseudo_palette
))[regno
] =
1042 (red
<< info
->var
.red
.offset
) |
1043 (green
<< info
->var
.green
.offset
) |
1044 (blue
<< info
->var
.blue
.offset
);
1051 static int uvesafb_setcmap(struct fb_cmap
*cmap
, struct fb_info
*info
)
1053 struct uvesafb_pal_entry
*entries
;
1054 int shift
= 16 - dac_width
;
1057 if (info
->var
.bits_per_pixel
== 8) {
1058 if (cmap
->start
+ cmap
->len
> info
->cmap
.start
+
1059 info
->cmap
.len
|| cmap
->start
< info
->cmap
.start
)
1062 entries
= kmalloc(sizeof(*entries
) * cmap
->len
, GFP_KERNEL
);
1066 for (i
= 0; i
< cmap
->len
; i
++) {
1067 entries
[i
].red
= cmap
->red
[i
] >> shift
;
1068 entries
[i
].green
= cmap
->green
[i
] >> shift
;
1069 entries
[i
].blue
= cmap
->blue
[i
] >> shift
;
1072 err
= uvesafb_setpalette(entries
, cmap
->len
, cmap
->start
, info
);
1076 * For modes with bpp > 8, we only set the pseudo palette in
1077 * the fb_info struct. We rely on uvesafb_setcolreg to do all
1080 for (i
= 0; i
< cmap
->len
; i
++) {
1081 err
|= uvesafb_setcolreg(cmap
->start
+ i
, cmap
->red
[i
],
1082 cmap
->green
[i
], cmap
->blue
[i
],
1089 static int uvesafb_pan_display(struct fb_var_screeninfo
*var
,
1090 struct fb_info
*info
)
1092 #ifdef CONFIG_X86_32
1094 struct uvesafb_par
*par
= info
->par
;
1096 offset
= (var
->yoffset
* info
->fix
.line_length
+ var
->xoffset
) / 4;
1099 * It turns out it's not the best idea to do panning via vm86,
1100 * so we only allow it if we have a PMI.
1102 if (par
->pmi_start
) {
1103 __asm__
__volatile__(
1105 : /* no return value */
1106 : "a" (0x4f07), /* EAX */
1108 "c" (offset
), /* ECX */
1109 "d" (offset
>> 16), /* EDX */
1110 "D" (&par
->pmi_start
)); /* EDI */
1116 static int uvesafb_blank(int blank
, struct fb_info
*info
)
1118 struct uvesafb_ktask
*task
;
1121 struct uvesafb_par
*par
= info
->par
;
1123 if (par
->vbe_ib
.capabilities
& VBE_CAP_VGACOMPAT
) {
1125 u8 seq
= 0, crtc17
= 0;
1127 if (blank
== FB_BLANK_POWERDOWN
) {
1134 err
= (blank
== FB_BLANK_UNBLANK
) ? 0 : -EINVAL
;
1137 vga_wseq(NULL
, 0x00, 0x01);
1138 seq
|= vga_rseq(NULL
, 0x01) & ~0x20;
1139 vga_wseq(NULL
, 0x00, seq
);
1141 crtc17
|= vga_rcrt(NULL
, 0x17) & ~0x80;
1143 vga_wcrt(NULL
, 0x17, crtc17
);
1144 vga_wseq(NULL
, 0x00, 0x03);
1146 #endif /* CONFIG_X86 */
1148 task
= uvesafb_prep();
1152 task
->t
.regs
.eax
= 0x4f10;
1154 case FB_BLANK_UNBLANK
:
1155 task
->t
.regs
.ebx
= 0x0001;
1157 case FB_BLANK_NORMAL
:
1158 task
->t
.regs
.ebx
= 0x0101; /* standby */
1160 case FB_BLANK_POWERDOWN
:
1161 task
->t
.regs
.ebx
= 0x0401; /* powerdown */
1167 err
= uvesafb_exec(task
);
1168 if (err
|| (task
->t
.regs
.eax
& 0xffff) != 0x004f)
1170 out
: uvesafb_free(task
);
1175 static int uvesafb_open(struct fb_info
*info
, int user
)
1177 struct uvesafb_par
*par
= info
->par
;
1178 int cnt
= atomic_read(&par
->ref_count
);
1181 if (!cnt
&& par
->vbe_state_size
) {
1182 buf
= uvesafb_vbe_state_save(par
);
1184 printk(KERN_WARNING
"uvesafb: save hardware state"
1185 "failed, error code is %ld!\n", PTR_ERR(buf
));
1187 par
->vbe_state_orig
= buf
;
1191 atomic_inc(&par
->ref_count
);
1195 static int uvesafb_release(struct fb_info
*info
, int user
)
1197 struct uvesafb_ktask
*task
= NULL
;
1198 struct uvesafb_par
*par
= info
->par
;
1199 int cnt
= atomic_read(&par
->ref_count
);
1207 task
= uvesafb_prep();
1211 /* First, try to set the standard 80x25 text mode. */
1212 task
->t
.regs
.eax
= 0x0003;
1216 * Now try to restore whatever hardware state we might have
1217 * saved when the fb device was first opened.
1219 uvesafb_vbe_state_restore(par
, par
->vbe_state_orig
);
1221 atomic_dec(&par
->ref_count
);
1227 static int uvesafb_set_par(struct fb_info
*info
)
1229 struct uvesafb_par
*par
= info
->par
;
1230 struct uvesafb_ktask
*task
= NULL
;
1231 struct vbe_crtc_ib
*crtc
= NULL
;
1232 struct vbe_mode_ib
*mode
= NULL
;
1233 int i
, err
= 0, depth
= info
->var
.bits_per_pixel
;
1235 if (depth
> 8 && depth
!= 32)
1236 depth
= info
->var
.red
.length
+ info
->var
.green
.length
+
1237 info
->var
.blue
.length
;
1239 i
= uvesafb_vbe_find_mode(par
, info
->var
.xres
, info
->var
.yres
, depth
,
1240 UVESAFB_EXACT_RES
| UVESAFB_EXACT_DEPTH
);
1242 mode
= &par
->vbe_modes
[i
];
1246 task
= uvesafb_prep();
1250 task
->t
.regs
.eax
= 0x4f02;
1251 task
->t
.regs
.ebx
= mode
->mode_id
| 0x4000; /* use LFB */
1253 if (par
->vbe_ib
.vbe_version
>= 0x0300 && !par
->nocrtc
&&
1254 info
->var
.pixclock
!= 0) {
1255 task
->t
.regs
.ebx
|= 0x0800; /* use CRTC data */
1256 task
->t
.flags
= TF_BUF_ESDI
;
1257 crtc
= kzalloc(sizeof(struct vbe_crtc_ib
), GFP_KERNEL
);
1262 crtc
->horiz_start
= info
->var
.xres
+ info
->var
.right_margin
;
1263 crtc
->horiz_end
= crtc
->horiz_start
+ info
->var
.hsync_len
;
1264 crtc
->horiz_total
= crtc
->horiz_end
+ info
->var
.left_margin
;
1266 crtc
->vert_start
= info
->var
.yres
+ info
->var
.lower_margin
;
1267 crtc
->vert_end
= crtc
->vert_start
+ info
->var
.vsync_len
;
1268 crtc
->vert_total
= crtc
->vert_end
+ info
->var
.upper_margin
;
1270 crtc
->pixel_clock
= PICOS2KHZ(info
->var
.pixclock
) * 1000;
1271 crtc
->refresh_rate
= (u16
)(100 * (crtc
->pixel_clock
/
1272 (crtc
->vert_total
* crtc
->horiz_total
)));
1274 if (info
->var
.vmode
& FB_VMODE_DOUBLE
)
1276 if (info
->var
.vmode
& FB_VMODE_INTERLACED
)
1278 if (!(info
->var
.sync
& FB_SYNC_HOR_HIGH_ACT
))
1280 if (!(info
->var
.sync
& FB_SYNC_VERT_HIGH_ACT
))
1282 memcpy(&par
->crtc
, crtc
, sizeof(*crtc
));
1284 memset(&par
->crtc
, 0, sizeof(*crtc
));
1287 task
->t
.buf_len
= sizeof(struct vbe_crtc_ib
);
1288 task
->buf
= &par
->crtc
;
1290 err
= uvesafb_exec(task
);
1291 if (err
|| (task
->t
.regs
.eax
& 0xffff) != 0x004f) {
1293 * The mode switch might have failed because we tried to
1294 * use our own timings. Try again with the default timings.
1297 printk(KERN_WARNING
"uvesafb: mode switch failed "
1298 "(eax=0x%x, err=%d). Trying again with "
1299 "default timings.\n", task
->t
.regs
.eax
, err
);
1300 uvesafb_reset(task
);
1303 info
->var
.pixclock
= 0;
1306 printk(KERN_ERR
"uvesafb: mode switch failed (eax="
1307 "0x%x, err=%d)\n", task
->t
.regs
.eax
, err
);
1314 /* For 8bpp modes, always try to set the DAC to 8 bits. */
1315 if (par
->vbe_ib
.capabilities
& VBE_CAP_CAN_SWITCH_DAC
&&
1316 mode
->bits_per_pixel
<= 8) {
1317 uvesafb_reset(task
);
1318 task
->t
.regs
.eax
= 0x4f08;
1319 task
->t
.regs
.ebx
= 0x0800;
1321 err
= uvesafb_exec(task
);
1322 if (err
|| (task
->t
.regs
.eax
& 0xffff) != 0x004f ||
1323 ((task
->t
.regs
.ebx
& 0xff00) >> 8) != 8) {
1330 info
->fix
.visual
= (info
->var
.bits_per_pixel
== 8) ?
1331 FB_VISUAL_PSEUDOCOLOR
: FB_VISUAL_TRUECOLOR
;
1332 info
->fix
.line_length
= mode
->bytes_per_scan_line
;
1341 static void uvesafb_check_limits(struct fb_var_screeninfo
*var
,
1342 struct fb_info
*info
)
1344 const struct fb_videomode
*mode
;
1345 struct uvesafb_par
*par
= info
->par
;
1348 * If pixclock is set to 0, then we're using default BIOS timings
1349 * and thus don't have to perform any checks here.
1354 if (par
->vbe_ib
.vbe_version
< 0x0300) {
1355 fb_get_mode(FB_VSYNCTIMINGS
| FB_IGNOREMON
, 60, var
, info
);
1359 if (!fb_validate_mode(var
, info
))
1362 mode
= fb_find_best_mode(var
, &info
->modelist
);
1364 if (mode
->xres
== var
->xres
&& mode
->yres
== var
->yres
&&
1365 !(mode
->vmode
& (FB_VMODE_INTERLACED
| FB_VMODE_DOUBLE
))) {
1366 fb_videomode_to_var(var
, mode
);
1371 if (info
->monspecs
.gtf
&& !fb_get_mode(FB_MAXTIMINGS
, 0, var
, info
))
1373 /* Use default refresh rate */
1377 static int uvesafb_check_var(struct fb_var_screeninfo
*var
,
1378 struct fb_info
*info
)
1380 struct uvesafb_par
*par
= info
->par
;
1381 struct vbe_mode_ib
*mode
= NULL
;
1383 int depth
= var
->red
.length
+ var
->green
.length
+ var
->blue
.length
;
1386 * Various apps will use bits_per_pixel to set the color depth,
1387 * which is theoretically incorrect, but which we'll try to handle
1390 if (depth
== 0 || abs(depth
- var
->bits_per_pixel
) >= 8)
1391 depth
= var
->bits_per_pixel
;
1393 match
= uvesafb_vbe_find_mode(par
, var
->xres
, var
->yres
, depth
,
1398 mode
= &par
->vbe_modes
[match
];
1399 uvesafb_setup_var(var
, info
, mode
);
1402 * Check whether we have remapped enough memory for this mode.
1403 * We might be called at an early stage, when we haven't remapped
1404 * any memory yet, in which case we simply skip the check.
1406 if (var
->yres
* mode
->bytes_per_scan_line
> info
->fix
.smem_len
1407 && info
->fix
.smem_len
)
1410 if ((var
->vmode
& FB_VMODE_DOUBLE
) &&
1411 !(par
->vbe_modes
[match
].mode_attr
& 0x100))
1412 var
->vmode
&= ~FB_VMODE_DOUBLE
;
1414 if ((var
->vmode
& FB_VMODE_INTERLACED
) &&
1415 !(par
->vbe_modes
[match
].mode_attr
& 0x200))
1416 var
->vmode
&= ~FB_VMODE_INTERLACED
;
1418 uvesafb_check_limits(var
, info
);
1420 var
->xres_virtual
= var
->xres
;
1421 var
->yres_virtual
= (par
->ypan
) ?
1422 info
->fix
.smem_len
/ mode
->bytes_per_scan_line
:
1427 static struct fb_ops uvesafb_ops
= {
1428 .owner
= THIS_MODULE
,
1429 .fb_open
= uvesafb_open
,
1430 .fb_release
= uvesafb_release
,
1431 .fb_setcolreg
= uvesafb_setcolreg
,
1432 .fb_setcmap
= uvesafb_setcmap
,
1433 .fb_pan_display
= uvesafb_pan_display
,
1434 .fb_blank
= uvesafb_blank
,
1435 .fb_fillrect
= cfb_fillrect
,
1436 .fb_copyarea
= cfb_copyarea
,
1437 .fb_imageblit
= cfb_imageblit
,
1438 .fb_check_var
= uvesafb_check_var
,
1439 .fb_set_par
= uvesafb_set_par
,
1442 static void uvesafb_init_info(struct fb_info
*info
, struct vbe_mode_ib
*mode
)
1444 unsigned int size_vmode
;
1445 unsigned int size_remap
;
1446 unsigned int size_total
;
1447 struct uvesafb_par
*par
= info
->par
;
1450 info
->pseudo_palette
= ((u8
*)info
->par
+ sizeof(struct uvesafb_par
));
1451 info
->fix
= uvesafb_fix
;
1452 info
->fix
.ypanstep
= par
->ypan
? 1 : 0;
1453 info
->fix
.ywrapstep
= (par
->ypan
> 1) ? 1 : 0;
1455 /* Disable blanking if the user requested so. */
1457 info
->fbops
->fb_blank
= NULL
;
1460 * Find out how much IO memory is required for the mode with
1461 * the highest resolution.
1464 for (i
= 0; i
< par
->vbe_modes_cnt
; i
++) {
1465 h
= par
->vbe_modes
[i
].bytes_per_scan_line
*
1466 par
->vbe_modes
[i
].y_res
;
1473 * size_vmode -- that is the amount of memory needed for the
1474 * used video mode, i.e. the minimum amount of
1478 size_vmode
= info
->var
.yres
* mode
->bytes_per_scan_line
;
1480 size_vmode
= info
->var
.yres
* info
->var
.xres
*
1481 ((info
->var
.bits_per_pixel
+ 7) >> 3);
1485 * size_total -- all video memory we have. Used for mtrr
1486 * entries, resource allocation and bounds
1489 size_total
= par
->vbe_ib
.total_memory
* 65536;
1491 size_total
= vram_total
* 1024 * 1024;
1492 if (size_total
< size_vmode
)
1493 size_total
= size_vmode
;
1496 * size_remap -- the amount of video memory we are going to
1497 * use for vesafb. With modern cards it is no
1498 * option to simply use size_total as th
1499 * wastes plenty of kernel address space.
1502 size_remap
= vram_remap
* 1024 * 1024;
1503 if (size_remap
< size_vmode
)
1504 size_remap
= size_vmode
;
1505 if (size_remap
> size_total
)
1506 size_remap
= size_total
;
1508 info
->fix
.smem_len
= size_remap
;
1509 info
->fix
.smem_start
= mode
->phys_base_ptr
;
1512 * We have to set yres_virtual here because when setup_var() was
1513 * called, smem_len wasn't defined yet.
1515 info
->var
.yres_virtual
= info
->fix
.smem_len
/
1516 mode
->bytes_per_scan_line
;
1518 if (par
->ypan
&& info
->var
.yres_virtual
> info
->var
.yres
) {
1519 printk(KERN_INFO
"uvesafb: scrolling: %s "
1520 "using protected mode interface, "
1521 "yres_virtual=%d\n",
1522 (par
->ypan
> 1) ? "ywrap" : "ypan",
1523 info
->var
.yres_virtual
);
1525 printk(KERN_INFO
"uvesafb: scrolling: redraw\n");
1526 info
->var
.yres_virtual
= info
->var
.yres
;
1530 info
->flags
= FBINFO_FLAG_DEFAULT
|
1531 (par
->ypan
? FBINFO_HWACCEL_YPAN
: 0);
1534 info
->fbops
->fb_pan_display
= NULL
;
1537 static void uvesafb_init_mtrr(struct fb_info
*info
)
1539 struct uvesafb_par
*par
= info
->par
;
1541 if (mtrr
&& !(info
->fix
.smem_start
& (PAGE_SIZE
- 1))) {
1542 int temp_size
= info
->fix
.smem_len
;
1546 /* Find the largest power-of-two */
1547 temp_size
= roundup_pow_of_two(temp_size
);
1549 /* Try and find a power of two to add */
1551 rc
= arch_phys_wc_add(info
->fix
.smem_start
, temp_size
);
1553 } while (temp_size
>= PAGE_SIZE
&& rc
== -EINVAL
);
1556 par
->mtrr_handle
= rc
;
1560 static void uvesafb_ioremap(struct fb_info
*info
)
1562 info
->screen_base
= ioremap_wc(info
->fix
.smem_start
, info
->fix
.smem_len
);
1565 static ssize_t
uvesafb_show_vbe_ver(struct device
*dev
,
1566 struct device_attribute
*attr
, char *buf
)
1568 struct fb_info
*info
= platform_get_drvdata(to_platform_device(dev
));
1569 struct uvesafb_par
*par
= info
->par
;
1571 return snprintf(buf
, PAGE_SIZE
, "%.4x\n", par
->vbe_ib
.vbe_version
);
1574 static DEVICE_ATTR(vbe_version
, S_IRUGO
, uvesafb_show_vbe_ver
, NULL
);
1576 static ssize_t
uvesafb_show_vbe_modes(struct device
*dev
,
1577 struct device_attribute
*attr
, char *buf
)
1579 struct fb_info
*info
= platform_get_drvdata(to_platform_device(dev
));
1580 struct uvesafb_par
*par
= info
->par
;
1583 for (i
= 0; i
< par
->vbe_modes_cnt
&& ret
< PAGE_SIZE
; i
++) {
1584 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1585 "%dx%d-%d, 0x%.4x\n",
1586 par
->vbe_modes
[i
].x_res
, par
->vbe_modes
[i
].y_res
,
1587 par
->vbe_modes
[i
].depth
, par
->vbe_modes
[i
].mode_id
);
1593 static DEVICE_ATTR(vbe_modes
, S_IRUGO
, uvesafb_show_vbe_modes
, NULL
);
1595 static ssize_t
uvesafb_show_vendor(struct device
*dev
,
1596 struct device_attribute
*attr
, char *buf
)
1598 struct fb_info
*info
= platform_get_drvdata(to_platform_device(dev
));
1599 struct uvesafb_par
*par
= info
->par
;
1601 if (par
->vbe_ib
.oem_vendor_name_ptr
)
1602 return snprintf(buf
, PAGE_SIZE
, "%s\n", (char *)
1603 (&par
->vbe_ib
) + par
->vbe_ib
.oem_vendor_name_ptr
);
1608 static DEVICE_ATTR(oem_vendor
, S_IRUGO
, uvesafb_show_vendor
, NULL
);
1610 static ssize_t
uvesafb_show_product_name(struct device
*dev
,
1611 struct device_attribute
*attr
, char *buf
)
1613 struct fb_info
*info
= platform_get_drvdata(to_platform_device(dev
));
1614 struct uvesafb_par
*par
= info
->par
;
1616 if (par
->vbe_ib
.oem_product_name_ptr
)
1617 return snprintf(buf
, PAGE_SIZE
, "%s\n", (char *)
1618 (&par
->vbe_ib
) + par
->vbe_ib
.oem_product_name_ptr
);
1623 static DEVICE_ATTR(oem_product_name
, S_IRUGO
, uvesafb_show_product_name
, NULL
);
1625 static ssize_t
uvesafb_show_product_rev(struct device
*dev
,
1626 struct device_attribute
*attr
, char *buf
)
1628 struct fb_info
*info
= platform_get_drvdata(to_platform_device(dev
));
1629 struct uvesafb_par
*par
= info
->par
;
1631 if (par
->vbe_ib
.oem_product_rev_ptr
)
1632 return snprintf(buf
, PAGE_SIZE
, "%s\n", (char *)
1633 (&par
->vbe_ib
) + par
->vbe_ib
.oem_product_rev_ptr
);
1638 static DEVICE_ATTR(oem_product_rev
, S_IRUGO
, uvesafb_show_product_rev
, NULL
);
1640 static ssize_t
uvesafb_show_oem_string(struct device
*dev
,
1641 struct device_attribute
*attr
, char *buf
)
1643 struct fb_info
*info
= platform_get_drvdata(to_platform_device(dev
));
1644 struct uvesafb_par
*par
= info
->par
;
1646 if (par
->vbe_ib
.oem_string_ptr
)
1647 return snprintf(buf
, PAGE_SIZE
, "%s\n",
1648 (char *)(&par
->vbe_ib
) + par
->vbe_ib
.oem_string_ptr
);
1653 static DEVICE_ATTR(oem_string
, S_IRUGO
, uvesafb_show_oem_string
, NULL
);
1655 static ssize_t
uvesafb_show_nocrtc(struct device
*dev
,
1656 struct device_attribute
*attr
, char *buf
)
1658 struct fb_info
*info
= platform_get_drvdata(to_platform_device(dev
));
1659 struct uvesafb_par
*par
= info
->par
;
1661 return snprintf(buf
, PAGE_SIZE
, "%d\n", par
->nocrtc
);
1664 static ssize_t
uvesafb_store_nocrtc(struct device
*dev
,
1665 struct device_attribute
*attr
, const char *buf
, size_t count
)
1667 struct fb_info
*info
= platform_get_drvdata(to_platform_device(dev
));
1668 struct uvesafb_par
*par
= info
->par
;
1679 static DEVICE_ATTR(nocrtc
, S_IRUGO
| S_IWUSR
, uvesafb_show_nocrtc
,
1680 uvesafb_store_nocrtc
);
1682 static struct attribute
*uvesafb_dev_attrs
[] = {
1683 &dev_attr_vbe_version
.attr
,
1684 &dev_attr_vbe_modes
.attr
,
1685 &dev_attr_oem_vendor
.attr
,
1686 &dev_attr_oem_product_name
.attr
,
1687 &dev_attr_oem_product_rev
.attr
,
1688 &dev_attr_oem_string
.attr
,
1689 &dev_attr_nocrtc
.attr
,
1693 static struct attribute_group uvesafb_dev_attgrp
= {
1695 .attrs
= uvesafb_dev_attrs
,
1698 static int uvesafb_probe(struct platform_device
*dev
)
1700 struct fb_info
*info
;
1701 struct vbe_mode_ib
*mode
= NULL
;
1702 struct uvesafb_par
*par
;
1705 info
= framebuffer_alloc(sizeof(*par
) + sizeof(u32
) * 256, &dev
->dev
);
1711 err
= uvesafb_vbe_init(info
);
1713 printk(KERN_ERR
"uvesafb: vbe_init() failed with %d\n", err
);
1717 info
->fbops
= &uvesafb_ops
;
1719 i
= uvesafb_vbe_init_mode(info
);
1724 mode
= &par
->vbe_modes
[i
];
1727 if (fb_alloc_cmap(&info
->cmap
, 256, 0) < 0) {
1732 uvesafb_init_info(info
, mode
);
1734 if (!request_region(0x3c0, 32, "uvesafb")) {
1735 printk(KERN_ERR
"uvesafb: request region 0x3c0-0x3e0 failed\n");
1740 if (!request_mem_region(info
->fix
.smem_start
, info
->fix
.smem_len
,
1742 printk(KERN_ERR
"uvesafb: cannot reserve video memory at "
1743 "0x%lx\n", info
->fix
.smem_start
);
1748 uvesafb_init_mtrr(info
);
1749 uvesafb_ioremap(info
);
1751 if (!info
->screen_base
) {
1753 "uvesafb: abort, cannot ioremap 0x%x bytes of video "
1754 "memory at 0x%lx\n",
1755 info
->fix
.smem_len
, info
->fix
.smem_start
);
1760 platform_set_drvdata(dev
, info
);
1762 if (register_framebuffer(info
) < 0) {
1764 "uvesafb: failed to register framebuffer device\n");
1769 printk(KERN_INFO
"uvesafb: framebuffer at 0x%lx, mapped to 0x%p, "
1770 "using %dk, total %dk\n", info
->fix
.smem_start
,
1771 info
->screen_base
, info
->fix
.smem_len
/1024,
1772 par
->vbe_ib
.total_memory
* 64);
1773 fb_info(info
, "%s frame buffer device\n", info
->fix
.id
);
1775 err
= sysfs_create_group(&dev
->dev
.kobj
, &uvesafb_dev_attgrp
);
1777 fb_warn(info
, "failed to register attributes\n");
1782 iounmap(info
->screen_base
);
1784 release_mem_region(info
->fix
.smem_start
, info
->fix
.smem_len
);
1786 release_region(0x3c0, 32);
1788 if (!list_empty(&info
->modelist
))
1789 fb_destroy_modelist(&info
->modelist
);
1790 fb_destroy_modedb(info
->monspecs
.modedb
);
1791 fb_dealloc_cmap(&info
->cmap
);
1793 kfree(par
->vbe_modes
);
1795 framebuffer_release(info
);
1799 static int uvesafb_remove(struct platform_device
*dev
)
1801 struct fb_info
*info
= platform_get_drvdata(dev
);
1804 struct uvesafb_par
*par
= info
->par
;
1806 sysfs_remove_group(&dev
->dev
.kobj
, &uvesafb_dev_attgrp
);
1807 unregister_framebuffer(info
);
1808 release_region(0x3c0, 32);
1809 iounmap(info
->screen_base
);
1810 arch_phys_wc_del(par
->mtrr_handle
);
1811 release_mem_region(info
->fix
.smem_start
, info
->fix
.smem_len
);
1812 fb_destroy_modedb(info
->monspecs
.modedb
);
1813 fb_dealloc_cmap(&info
->cmap
);
1816 kfree(par
->vbe_modes
);
1817 kfree(par
->vbe_state_orig
);
1818 kfree(par
->vbe_state_saved
);
1821 framebuffer_release(info
);
1826 static struct platform_driver uvesafb_driver
= {
1827 .probe
= uvesafb_probe
,
1828 .remove
= uvesafb_remove
,
1834 static struct platform_device
*uvesafb_device
;
1837 static int uvesafb_setup(char *options
)
1841 if (!options
|| !*options
)
1844 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
1845 if (!*this_opt
) continue;
1847 if (!strcmp(this_opt
, "redraw"))
1849 else if (!strcmp(this_opt
, "ypan"))
1851 else if (!strcmp(this_opt
, "ywrap"))
1853 else if (!strcmp(this_opt
, "vgapal"))
1855 else if (!strcmp(this_opt
, "pmipal"))
1857 else if (!strncmp(this_opt
, "mtrr:", 5))
1858 mtrr
= simple_strtoul(this_opt
+5, NULL
, 0);
1859 else if (!strcmp(this_opt
, "nomtrr"))
1861 else if (!strcmp(this_opt
, "nocrtc"))
1863 else if (!strcmp(this_opt
, "noedid"))
1865 else if (!strcmp(this_opt
, "noblank"))
1867 else if (!strncmp(this_opt
, "vtotal:", 7))
1868 vram_total
= simple_strtoul(this_opt
+ 7, NULL
, 0);
1869 else if (!strncmp(this_opt
, "vremap:", 7))
1870 vram_remap
= simple_strtoul(this_opt
+ 7, NULL
, 0);
1871 else if (!strncmp(this_opt
, "maxhf:", 6))
1872 maxhf
= simple_strtoul(this_opt
+ 6, NULL
, 0);
1873 else if (!strncmp(this_opt
, "maxvf:", 6))
1874 maxvf
= simple_strtoul(this_opt
+ 6, NULL
, 0);
1875 else if (!strncmp(this_opt
, "maxclk:", 7))
1876 maxclk
= simple_strtoul(this_opt
+ 7, NULL
, 0);
1877 else if (!strncmp(this_opt
, "vbemode:", 8))
1878 vbemode
= simple_strtoul(this_opt
+ 8, NULL
, 0);
1879 else if (this_opt
[0] >= '0' && this_opt
[0] <= '9') {
1880 mode_option
= this_opt
;
1883 "uvesafb: unrecognized option %s\n", this_opt
);
1887 if (mtrr
!= 3 && mtrr
!= 0)
1888 pr_warn("uvesafb: mtrr should be set to 0 or 3; %d is unsupported", mtrr
);
1892 #endif /* !MODULE */
1894 static ssize_t
show_v86d(struct device_driver
*dev
, char *buf
)
1896 return snprintf(buf
, PAGE_SIZE
, "%s\n", v86d_path
);
1899 static ssize_t
store_v86d(struct device_driver
*dev
, const char *buf
,
1902 strncpy(v86d_path
, buf
, PATH_MAX
);
1906 static DRIVER_ATTR(v86d
, S_IRUGO
| S_IWUSR
, show_v86d
, store_v86d
);
1908 static int uvesafb_init(void)
1913 char *option
= NULL
;
1915 if (fb_get_options("uvesafb", &option
))
1917 uvesafb_setup(option
);
1919 err
= cn_add_callback(&uvesafb_cn_id
, "uvesafb", uvesafb_cn_callback
);
1923 err
= platform_driver_register(&uvesafb_driver
);
1926 uvesafb_device
= platform_device_alloc("uvesafb", 0);
1928 err
= platform_device_add(uvesafb_device
);
1934 platform_device_put(uvesafb_device
);
1935 platform_driver_unregister(&uvesafb_driver
);
1936 cn_del_callback(&uvesafb_cn_id
);
1940 err
= driver_create_file(&uvesafb_driver
.driver
,
1943 printk(KERN_WARNING
"uvesafb: failed to register "
1951 module_init(uvesafb_init
);
1953 static void uvesafb_exit(void)
1955 struct uvesafb_ktask
*task
;
1958 task
= uvesafb_prep();
1960 task
->t
.flags
= TF_EXIT
;
1966 cn_del_callback(&uvesafb_cn_id
);
1967 driver_remove_file(&uvesafb_driver
.driver
, &driver_attr_v86d
);
1968 platform_device_unregister(uvesafb_device
);
1969 platform_driver_unregister(&uvesafb_driver
);
1972 module_exit(uvesafb_exit
);
1974 static int param_set_scroll(const char *val
, const struct kernel_param
*kp
)
1978 if (!strcmp(val
, "redraw"))
1980 else if (!strcmp(val
, "ypan"))
1982 else if (!strcmp(val
, "ywrap"))
1989 static struct kernel_param_ops param_ops_scroll
= {
1990 .set
= param_set_scroll
,
1992 #define param_check_scroll(name, p) __param_check(name, p, void)
1994 module_param_named(scroll
, ypan
, scroll
, 0);
1995 MODULE_PARM_DESC(scroll
,
1996 "Scrolling mode, set to 'redraw', 'ypan', or 'ywrap'");
1997 module_param_named(vgapal
, pmi_setpal
, invbool
, 0);
1998 MODULE_PARM_DESC(vgapal
, "Set palette using VGA registers");
1999 module_param_named(pmipal
, pmi_setpal
, bool, 0);
2000 MODULE_PARM_DESC(pmipal
, "Set palette using PMI calls");
2001 module_param(mtrr
, uint
, 0);
2002 MODULE_PARM_DESC(mtrr
,
2003 "Memory Type Range Registers setting. Use 0 to disable.");
2004 module_param(blank
, bool, 0);
2005 MODULE_PARM_DESC(blank
, "Enable hardware blanking");
2006 module_param(nocrtc
, bool, 0);
2007 MODULE_PARM_DESC(nocrtc
, "Ignore CRTC timings when setting modes");
2008 module_param(noedid
, bool, 0);
2009 MODULE_PARM_DESC(noedid
,
2010 "Ignore EDID-provided monitor limits when setting modes");
2011 module_param(vram_remap
, uint
, 0);
2012 MODULE_PARM_DESC(vram_remap
, "Set amount of video memory to be used [MiB]");
2013 module_param(vram_total
, uint
, 0);
2014 MODULE_PARM_DESC(vram_total
, "Set total amount of video memoery [MiB]");
2015 module_param(maxclk
, ushort
, 0);
2016 MODULE_PARM_DESC(maxclk
, "Maximum pixelclock [MHz], overrides EDID data");
2017 module_param(maxhf
, ushort
, 0);
2018 MODULE_PARM_DESC(maxhf
,
2019 "Maximum horizontal frequency [kHz], overrides EDID data");
2020 module_param(maxvf
, ushort
, 0);
2021 MODULE_PARM_DESC(maxvf
,
2022 "Maximum vertical frequency [Hz], overrides EDID data");
2023 module_param(mode_option
, charp
, 0);
2024 MODULE_PARM_DESC(mode_option
,
2025 "Specify initial video mode as \"<xres>x<yres>[-<bpp>][@<refresh>]\"");
2026 module_param(vbemode
, ushort
, 0);
2027 MODULE_PARM_DESC(vbemode
,
2028 "VBE mode number to set, overrides the 'mode' option");
2029 module_param_string(v86d
, v86d_path
, PATH_MAX
, 0660);
2030 MODULE_PARM_DESC(v86d
, "Path to the v86d userspace helper.");
2032 MODULE_LICENSE("GPL");
2033 MODULE_AUTHOR("Michal Januszewski <spock@gentoo.org>");
2034 MODULE_DESCRIPTION("Framebuffer driver for VBE2.0+ compliant graphics boards");