4 * Linux framebuffer driver for Intel(R) 830M/845G/852GM/855GM/865G/915G/915GM
5 * integrated graphics chips.
7 * Copyright © 2002, 2003 David Dawes <dawes@xfree86.org>
10 * This driver consists of two parts. The first part (intelfbdrv.c) provides
11 * the basic fbdev interfaces, is derived in part from the radeonfb and
12 * vesafb drivers, and is covered by the GPL. The second part (intelfbhw.c)
13 * provides the code to program the hardware. Most of it is derived from
14 * the i810/i830 XFree86 driver. The HW-specific code is covered here
15 * under a dual license (GPL and MIT/XFree86 license).
21 /* $DHD: intelfb/intelfbdrv.c,v 1.20 2003/06/27 15:17:40 dawes Exp $ */
25 * 01/2003 - Initial driver (0.1.0), no mode switching, no acceleration.
26 * This initial version is a basic core that works a lot like
27 * the vesafb driver. It must be built-in to the kernel,
28 * and the initial video mode must be set with vga=XXX at
29 * boot time. (David Dawes)
31 * 01/2003 - Version 0.2.0: Mode switching added, colormap support
32 * implemented, Y panning, and soft screen blanking implemented.
33 * No acceleration yet. (David Dawes)
35 * 01/2003 - Version 0.3.0: fbcon acceleration support added. Module
36 * option handling added. (David Dawes)
38 * 01/2003 - Version 0.4.0: fbcon HW cursor support added. (David Dawes)
40 * 01/2003 - Version 0.4.1: Add auto-generation of built-in modes.
43 * 02/2003 - Version 0.4.2: Add check for active non-CRT devices, and
44 * mode validation checks. (David Dawes)
46 * 02/2003 - Version 0.4.3: Check when the VC is in graphics mode so that
47 * acceleration is disabled while an XFree86 server is running.
50 * 02/2003 - Version 0.4.4: Monitor DPMS support. (David Dawes)
52 * 02/2003 - Version 0.4.5: Basic XFree86 + fbdev working. (David Dawes)
54 * 02/2003 - Version 0.5.0: Modify to work with the 2.5.32 kernel as well
55 * as 2.4.x kernels. (David Dawes)
57 * 02/2003 - Version 0.6.0: Split out HW-specifics into a separate file.
60 * 02/2003 - Version 0.7.0: Test on 852GM/855GM. Acceleration and HW
61 * cursor are disabled on this platform. (David Dawes)
63 * 02/2003 - Version 0.7.1: Test on 845G. Acceleration is disabled
64 * on this platform. (David Dawes)
66 * 02/2003 - Version 0.7.2: Test on 830M. Acceleration and HW
67 * cursor are disabled on this platform. (David Dawes)
69 * 02/2003 - Version 0.7.3: Fix 8-bit modes for mobile platforms
72 * 02/2003 - Version 0.7.4: Add checks for FB and FBCON_HAS_CFB* configured
73 * in the kernel, and add mode bpp verification and default
74 * bpp selection based on which FBCON_HAS_CFB* are configured.
77 * 02/2003 - Version 0.7.5: Add basic package/install scripts based on the
78 * DRI packaging scripts. (David Dawes)
80 * 04/2003 - Version 0.7.6: Fix typo that affects builds with SMP-enabled
81 * kernels. (David Dawes, reported by Anupam).
83 * 06/2003 - Version 0.7.7:
84 * Fix Makefile.kernel build problem (Tsutomu Yasuda).
85 * Fix mis-placed #endif (2.4.21 kernel).
87 * 09/2004 - Version 0.9.0 - by Sylvain Meyer
88 * Port to linux 2.6 kernel fbdev
89 * Fix HW accel and HW cursor on i845G
90 * Use of agpgart for fb memory reservation
93 * 10/2004 - Version 0.9.1
94 * Use module_param instead of old MODULE_PARM
97 * 11/2004 - Version 0.9.2
98 * Add vram option to reserve more memory than stolen by BIOS
99 * Fix intelfbhw_pan_display typo
100 * Add __initdata annotations
110 #include <linux/config.h>
111 #include <linux/module.h>
112 #include <linux/kernel.h>
113 #include <linux/errno.h>
114 #include <linux/string.h>
115 #include <linux/mm.h>
116 #include <linux/tty.h>
117 #include <linux/slab.h>
118 #include <linux/delay.h>
119 #include <linux/fb.h>
120 #include <linux/ioport.h>
121 #include <linux/init.h>
122 #include <linux/pci.h>
123 #include <linux/vmalloc.h>
124 #include <linux/pagemap.h>
129 #include <asm/mtrr.h>
133 #include "intelfbhw.h"
135 static void __devinit get_initial_mode(struct intelfb_info *dinfo);
136 static void update_dinfo(struct intelfb_info *dinfo,
137 struct fb_var_screeninfo *var);
138 static int intelfb_check_var(struct fb_var_screeninfo *var,
139 struct fb_info *info);
140 static int intelfb_set_par(struct fb_info *info);
141 static int intelfb_setcolreg(unsigned regno, unsigned red, unsigned green,
142 unsigned blue, unsigned transp,
143 struct fb_info *info);
145 static int intelfb_blank(int blank, struct fb_info *info);
146 static int intelfb_pan_display(struct fb_var_screeninfo *var,
147 struct fb_info *info);
149 static void intelfb_fillrect(struct fb_info *info,
150 const struct fb_fillrect *rect);
151 static void intelfb_copyarea(struct fb_info *info,
152 const struct fb_copyarea *region);
153 static void intelfb_imageblit(struct fb_info *info,
154 const struct fb_image *image);
155 static int intelfb_cursor(struct fb_info *info,
156 struct fb_cursor *cursor);
158 static int intelfb_sync(struct fb_info *info);
160 static int intelfb_ioctl(struct fb_info *info,
161 unsigned int cmd, unsigned long arg);
163 static int __devinit intelfb_pci_register(struct pci_dev *pdev,
164 const struct pci_device_id *ent);
165 static void __devexit intelfb_pci_unregister(struct pci_dev *pdev);
166 static int __devinit intelfb_set_fbinfo(struct intelfb_info *dinfo);
169 * Limiting the class to PCI_CLASS_DISPLAY_VGA prevents function 1 of the
170 * mobile chipsets from being registered.
172 #if DETECT_VGA_CLASS_ONLY
173 #define INTELFB_CLASS_MASK ~0 << 8
175 #define INTELFB_CLASS_MASK 0
178 static struct pci_device_id intelfb_pci_table[] __devinitdata = {
179 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_830M, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_830M },
180 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_845G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_845G },
181 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_85XGM, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_85XGM },
182 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_865G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_865G },
183 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_915G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_915G },
184 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_915GM, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_915GM },
189 static int num_registered = 0;
192 static struct fb_ops intel_fb_ops = {
193 .owner = THIS_MODULE,
194 .fb_check_var = intelfb_check_var,
195 .fb_set_par = intelfb_set_par,
196 .fb_setcolreg = intelfb_setcolreg,
197 .fb_blank = intelfb_blank,
198 .fb_pan_display = intelfb_pan_display,
199 .fb_fillrect = intelfb_fillrect,
200 .fb_copyarea = intelfb_copyarea,
201 .fb_imageblit = intelfb_imageblit,
202 .fb_cursor = intelfb_cursor,
203 .fb_sync = intelfb_sync,
204 .fb_ioctl = intelfb_ioctl
207 /* PCI driver module table */
208 static struct pci_driver intelfb_driver = {
210 .id_table = intelfb_pci_table,
211 .probe = intelfb_pci_register,
212 .remove = __devexit_p(intelfb_pci_unregister)
215 /* Module description/parameters */
216 MODULE_AUTHOR("David Dawes <dawes@tungstengraphics.com>, "
217 "Sylvain Meyer <sylvain.meyer@worldonline.fr>");
219 "Framebuffer driver for Intel(R) " SUPPORTED_CHIPSETS " chipsets");
220 MODULE_LICENSE("Dual BSD/GPL");
221 MODULE_DEVICE_TABLE(pci, intelfb_pci_table);
223 static int accel = 1;
225 static int hwcursor = 0;
227 static int fixed = 0;
228 static int noinit = 0;
229 static int noregister = 0;
230 static int probeonly = 0;
231 static int idonly = 0;
232 static int bailearly = 0;
233 static int voffset = 48;
234 static char *mode = NULL;
236 module_param(accel, bool, S_IRUGO);
237 MODULE_PARM_DESC(accel, "Enable hardware acceleration");
238 module_param(vram, int, S_IRUGO);
239 MODULE_PARM_DESC(vram, "System RAM to allocate to framebuffer in MiB");
240 module_param(voffset, int, S_IRUGO);
241 MODULE_PARM_DESC(voffset, "Offset of framebuffer in MiB");
242 module_param(hwcursor, bool, S_IRUGO);
243 MODULE_PARM_DESC(hwcursor, "Enable HW cursor");
244 module_param(mtrr, bool, S_IRUGO);
245 MODULE_PARM_DESC(mtrr, "Enable MTRR support");
246 module_param(fixed, bool, S_IRUGO);
247 MODULE_PARM_DESC(fixed, "Disable mode switching");
248 module_param(noinit, bool, 0);
249 MODULE_PARM_DESC(noinit, "Don't initialise graphics mode when loading");
250 module_param(noregister, bool, 0);
251 MODULE_PARM_DESC(noregister, "Don't register, just probe and exit (debug)");
252 module_param(probeonly, bool, 0);
253 MODULE_PARM_DESC(probeonly, "Do a minimal probe (debug)");
254 module_param(idonly, bool, 0);
255 MODULE_PARM_DESC(idonly, "Just identify without doing anything else (debug)");
256 module_param(bailearly, bool, 0);
257 MODULE_PARM_DESC(bailearly, "Bail out early, depending on value (debug)");
258 module_param(mode, charp, S_IRUGO);
259 MODULE_PARM_DESC(mode,
260 "Initial video mode \"<xres>x<yres>[-<depth>][@<refresh>]\"");
263 #define OPT_EQUAL(opt, name) (!strncmp(opt, name, strlen(name)))
264 #define OPT_INTVAL(opt, name) simple_strtoul(opt + strlen(name), NULL, 0)
265 #define OPT_STRVAL(opt, name) (opt + strlen(name))
267 static __inline__ char *
268 get_opt_string(const char *this_opt, const char *name)
274 p = OPT_STRVAL(this_opt, name);
276 while (p[i] && p[i] != ' ' && p[i] != ',')
278 ret = kmalloc(i + 1, GFP_KERNEL);
286 static __inline__ int
287 get_opt_int(const char *this_opt, const char *name, int *ret)
292 if (!OPT_EQUAL(this_opt, name))
295 *ret = OPT_INTVAL(this_opt, name);
299 static __inline__ int
300 get_opt_bool(const char *this_opt, const char *name, int *ret)
305 if (OPT_EQUAL(this_opt, name)) {
306 if (this_opt[strlen(name)] == '=')
307 *ret = simple_strtoul(this_opt + strlen(name) + 1,
312 if (OPT_EQUAL(this_opt, "no") && OPT_EQUAL(this_opt + 2, name))
321 intelfb_setup(char *options)
325 DBG_MSG("intelfb_setup\n");
327 if (!options || !*options) {
328 DBG_MSG("no options\n");
331 DBG_MSG("options: %s\n", options);
334 * These are the built-in options analogous to the module parameters
339 * video=intelfb:[mode][,<param>=<val>] ...
343 * video=intelfb:1024x768-16@75,accel=0
346 while ((this_opt = strsep(&options, ","))) {
349 if (get_opt_bool(this_opt, "accel", &accel))
351 else if (get_opt_int(this_opt, "vram", &vram))
353 else if (get_opt_bool(this_opt, "hwcursor", &hwcursor))
355 else if (get_opt_bool(this_opt, "mtrr", &mtrr))
357 else if (get_opt_bool(this_opt, "fixed", &fixed))
359 else if (get_opt_bool(this_opt, "init", &noinit))
361 else if (OPT_EQUAL(this_opt, "mode="))
362 mode = get_opt_string(this_opt, "mode=");
379 DBG_MSG("intelfb_init\n");
381 INF_MSG("Framebuffer driver for "
382 "Intel(R) " SUPPORTED_CHIPSETS " chipsets\n");
383 INF_MSG("Version " INTELFB_VERSION "\n");
389 if (fb_get_options("intelfb", &option))
391 intelfb_setup(option);
394 return pci_register_driver(&intelfb_driver);
400 DBG_MSG("intelfb_exit\n");
401 pci_unregister_driver(&intelfb_driver);
404 module_init(intelfb_init);
405 module_exit(intelfb_exit);
407 /***************************************************************
408 * mtrr support functions *
409 ***************************************************************/
412 static inline void __devinit set_mtrr(struct intelfb_info *dinfo)
414 dinfo->mtrr_reg = mtrr_add(dinfo->aperture.physical,
415 dinfo->aperture.size, MTRR_TYPE_WRCOMB, 1);
416 if (dinfo->mtrr_reg < 0) {
417 ERR_MSG("unable to set MTRR\n");
422 static inline void unset_mtrr(struct intelfb_info *dinfo)
425 mtrr_del(dinfo->mtrr_reg, dinfo->aperture.physical,
426 dinfo->aperture.size);
429 #define set_mtrr(x) WRN_MSG("MTRR is disabled in the kernel\n")
431 #define unset_mtrr(x) do { } while (0)
432 #endif /* CONFIG_MTRR */
434 /***************************************************************
435 * driver init / cleanup *
436 ***************************************************************/
439 cleanup(struct intelfb_info *dinfo)
441 DBG_MSG("cleanup\n");
446 fb_dealloc_cmap(&dinfo->info->cmap);
447 kfree(dinfo->info->pixmap.addr);
449 if (dinfo->registered)
450 unregister_framebuffer(dinfo->info);
454 if (dinfo->fbmem_gart && dinfo->gtt_fb_mem) {
455 agp_unbind_memory(dinfo->gtt_fb_mem);
456 agp_free_memory(dinfo->gtt_fb_mem);
458 if (dinfo->gtt_cursor_mem) {
459 agp_unbind_memory(dinfo->gtt_cursor_mem);
460 agp_free_memory(dinfo->gtt_cursor_mem);
462 if (dinfo->gtt_ring_mem) {
463 agp_unbind_memory(dinfo->gtt_ring_mem);
464 agp_free_memory(dinfo->gtt_ring_mem);
467 if (dinfo->mmio_base)
468 iounmap((void __iomem *)dinfo->mmio_base);
469 if (dinfo->aperture.virtual)
470 iounmap((void __iomem *)dinfo->aperture.virtual);
472 if (dinfo->flag & INTELFB_MMIO_ACQUIRED)
473 release_mem_region(dinfo->mmio_base_phys, INTEL_REG_SIZE);
474 if (dinfo->flag & INTELFB_FB_ACQUIRED)
475 release_mem_region(dinfo->aperture.physical,
476 dinfo->aperture.size);
477 framebuffer_release(dinfo->info);
480 #define bailout(dinfo) do { \
481 DBG_MSG("bailout\n"); \
483 INF_MSG("Not going to register framebuffer, exiting...\n"); \
489 intelfb_pci_register(struct pci_dev *pdev, const struct pci_device_id *ent)
491 struct fb_info *info;
492 struct intelfb_info *dinfo;
494 int aperture_size, stolen_size;
495 struct agp_kern_info gtt_info;
498 struct agp_bridge_data *bridge;
499 int aperture_bar = 0;
503 DBG_MSG("intelfb_pci_register\n");
506 if (num_registered != 1) {
507 ERR_MSG("Attempted to register %d devices "
508 "(should be only 1).\n", num_registered);
512 info = framebuffer_alloc(sizeof(struct intelfb_info), &pdev->dev);
514 ERR_MSG("Could not allocate memory for intelfb_info.\n");
517 if (fb_alloc_cmap(&info->cmap, 256, 1) < 0) {
518 ERR_MSG("Could not allocate cmap for intelfb_info.\n");
525 dinfo->fbops = &intel_fb_ops;
528 /* Reserve pixmap space. */
529 info->pixmap.addr = kmalloc(64 * 1024, GFP_KERNEL);
530 if (info->pixmap.addr == NULL) {
531 ERR_MSG("Cannot reserve pixmap memory.\n");
534 memset(info->pixmap.addr, 0, 64 * 1024);
536 /* set early this option because it could be changed by tv encoder
538 dinfo->fixed_mode = fixed;
541 if ((err = pci_enable_device(pdev))) {
542 ERR_MSG("Cannot enable device.\n");
547 /* Set base addresses. */
548 if ((ent->device == PCI_DEVICE_ID_INTEL_915G) ||
549 (ent->device == PCI_DEVICE_ID_INTEL_915GM)) {
552 /* Disable HW cursor on 915G/M (not implemented yet) */
555 dinfo->aperture.physical = pci_resource_start(pdev, aperture_bar);
556 dinfo->aperture.size = pci_resource_len(pdev, aperture_bar);
557 dinfo->mmio_base_phys = pci_resource_start(pdev, mmio_bar);
558 DBG_MSG("fb aperture: 0x%llx/0x%llx, MMIO region: 0x%llx/0x%llx\n",
559 (unsigned long long)pci_resource_start(pdev, aperture_bar),
560 (unsigned long long)pci_resource_len(pdev, aperture_bar),
561 (unsigned long long)pci_resource_start(pdev, mmio_bar),
562 (unsigned long long)pci_resource_len(pdev, mmio_bar));
564 /* Reserve the fb and MMIO regions */
565 if (!request_mem_region(dinfo->aperture.physical, dinfo->aperture.size,
566 INTELFB_MODULE_NAME)) {
567 ERR_MSG("Cannot reserve FB region.\n");
572 dinfo->flag |= INTELFB_FB_ACQUIRED;
574 if (!request_mem_region(dinfo->mmio_base_phys,
576 INTELFB_MODULE_NAME)) {
577 ERR_MSG("Cannot reserve MMIO region.\n");
582 dinfo->flag |= INTELFB_MMIO_ACQUIRED;
584 /* Get the chipset info. */
585 dinfo->pci_chipset = pdev->device;
587 if (intelfbhw_get_chipset(pdev, &dinfo->name, &dinfo->chipset,
593 if (intelfbhw_get_memory(pdev, &aperture_size,&stolen_size)) {
598 INF_MSG("%02x:%02x.%d: %s, aperture size %dMB, "
599 "stolen memory %dkB\n",
600 pdev->bus->number, PCI_SLOT(pdev->devfn),
601 PCI_FUNC(pdev->devfn), dinfo->name,
602 BtoMB(aperture_size), BtoKB(stolen_size));
604 /* Set these from the options. */
605 dinfo->accel = accel;
606 dinfo->hwcursor = hwcursor;
608 if (NOACCEL_CHIPSET(dinfo) && dinfo->accel == 1) {
609 INF_MSG("Acceleration is not supported for the %s chipset.\n",
614 /* Framebuffer parameters - Use all the stolen memory if >= vram */
615 if (ROUND_UP_TO_PAGE(stolen_size) >= MB(vram)) {
616 dinfo->fb.size = ROUND_UP_TO_PAGE(stolen_size);
617 dinfo->fbmem_gart = 0;
619 dinfo->fb.size = MB(vram);
620 dinfo->fbmem_gart = 1;
623 /* Allocate space for the ring buffer and HW cursor if enabled. */
625 dinfo->ring.size = RINGBUFFER_SIZE;
626 dinfo->ring_tail_mask = dinfo->ring.size - 1;
628 if (dinfo->hwcursor) {
629 dinfo->cursor.size = HW_CURSOR_SIZE;
632 /* Use agpgart to manage the GATT */
633 if (!(bridge = agp_backend_acquire(pdev))) {
634 ERR_MSG("cannot acquire agp\n");
639 /* get the current gatt info */
640 if (agp_copy_info(bridge, >t_info)) {
641 ERR_MSG("cannot get agp info\n");
642 agp_backend_release(bridge);
647 if (MB(voffset) < stolen_size)
648 offset = (stolen_size >> 12);
650 offset = ROUND_UP_TO_PAGE(MB(voffset))/GTT_PAGE_SIZE;
652 /* set the mem offsets - set them after the already used pages */
654 dinfo->ring.offset = offset + gtt_info.current_memory;
656 if (dinfo->hwcursor) {
657 dinfo->cursor.offset = offset +
658 + gtt_info.current_memory + (dinfo->ring.size >> 12);
660 if (dinfo->fbmem_gart) {
661 dinfo->fb.offset = offset +
662 + gtt_info.current_memory + (dinfo->ring.size >> 12)
663 + (dinfo->cursor.size >> 12);
666 /* Allocate memories (which aren't stolen) */
667 /* Map the fb and MMIO regions */
668 /* ioremap only up to the end of used aperture */
669 dinfo->aperture.virtual = (u8 __iomem *)ioremap_nocache
670 (dinfo->aperture.physical, ((offset + dinfo->fb.offset) << 12)
672 if (!dinfo->aperture.virtual) {
673 ERR_MSG("Cannot remap FB region.\n");
679 (u8 __iomem *)ioremap_nocache(dinfo->mmio_base_phys,
681 if (!dinfo->mmio_base) {
682 ERR_MSG("Cannot remap MMIO region.\n");
688 if (!(dinfo->gtt_ring_mem =
689 agp_allocate_memory(bridge, dinfo->ring.size >> 12,
690 AGP_NORMAL_MEMORY))) {
691 ERR_MSG("cannot allocate ring buffer memory\n");
692 agp_backend_release(bridge);
696 if (agp_bind_memory(dinfo->gtt_ring_mem,
697 dinfo->ring.offset)) {
698 ERR_MSG("cannot bind ring buffer memory\n");
699 agp_backend_release(bridge);
703 dinfo->ring.physical = dinfo->aperture.physical
704 + (dinfo->ring.offset << 12);
705 dinfo->ring.virtual = dinfo->aperture.virtual
706 + (dinfo->ring.offset << 12);
707 dinfo->ring_head = dinfo->ring.virtual;
709 if (dinfo->hwcursor) {
710 agp_memtype = dinfo->mobile ? AGP_PHYSICAL_MEMORY
712 if (!(dinfo->gtt_cursor_mem =
713 agp_allocate_memory(bridge, dinfo->cursor.size >> 12,
715 ERR_MSG("cannot allocate cursor memory\n");
716 agp_backend_release(bridge);
720 if (agp_bind_memory(dinfo->gtt_cursor_mem,
721 dinfo->cursor.offset)) {
722 ERR_MSG("cannot bind cursor memory\n");
723 agp_backend_release(bridge);
728 dinfo->cursor.physical
729 = dinfo->gtt_cursor_mem->physical;
731 dinfo->cursor.physical = dinfo->aperture.physical
732 + (dinfo->cursor.offset << 12);
733 dinfo->cursor.virtual = dinfo->aperture.virtual
734 + (dinfo->cursor.offset << 12);
736 if (dinfo->fbmem_gart) {
737 if (!(dinfo->gtt_fb_mem =
738 agp_allocate_memory(bridge, dinfo->fb.size >> 12,
739 AGP_NORMAL_MEMORY))) {
740 WRN_MSG("cannot allocate framebuffer memory - use "
742 dinfo->fbmem_gart = 0;
744 if (agp_bind_memory(dinfo->gtt_fb_mem,
746 WRN_MSG("cannot bind framebuffer memory - use "
748 dinfo->fbmem_gart = 0;
752 /* update framebuffer memory parameters */
753 if (!dinfo->fbmem_gart)
754 dinfo->fb.offset = 0; /* starts at offset 0 */
755 dinfo->fb.physical = dinfo->aperture.physical
756 + (dinfo->fb.offset << 12);
757 dinfo->fb.virtual = dinfo->aperture.virtual + (dinfo->fb.offset << 12);
758 dinfo->fb_start = dinfo->fb.offset << 12;
760 /* release agpgart */
761 agp_backend_release(bridge);
766 DBG_MSG("fb: 0x%x(+ 0x%x)/0x%x (0x%x)\n",
767 dinfo->fb.physical, dinfo->fb.offset, dinfo->fb.size,
768 (u32 __iomem ) dinfo->fb.virtual);
769 DBG_MSG("MMIO: 0x%x/0x%x (0x%x)\n",
770 dinfo->mmio_base_phys, INTEL_REG_SIZE,
771 (u32 __iomem) dinfo->mmio_base);
772 DBG_MSG("ring buffer: 0x%x/0x%x (0x%x)\n",
773 dinfo->ring.physical, dinfo->ring.size,
774 (u32 __iomem ) dinfo->ring.virtual);
775 DBG_MSG("HW cursor: 0x%x/0x%x (0x%x) (offset 0x%x) (phys 0x%x)\n",
776 dinfo->cursor.physical, dinfo->cursor.size,
777 (u32 __iomem ) dinfo->cursor.virtual, dinfo->cursor.offset,
778 dinfo->cursor.physical);
780 DBG_MSG("options: vram = %d, accel = %d, hwcursor = %d, fixed = %d, "
781 "noinit = %d\n", vram, accel, hwcursor, fixed, noinit);
782 DBG_MSG("options: mode = \"%s\"\n", mode ? mode : "");
788 * Check if the LVDS port or any DVO ports are enabled. If so,
789 * don't allow mode switching
791 dvo = intelfbhw_check_non_crt(dinfo);
793 dinfo->fixed_mode = 1;
794 WRN_MSG("Non-CRT device is enabled ( ");
798 s = intelfbhw_dvo_to_string(1 << i);
805 printk("). Disabling mode switching.\n");
811 if (FIXED_MODE(dinfo) && ORIG_VIDEO_ISVGA != VIDEO_TYPE_VLFB) {
812 ERR_MSG("Video mode must be programmed at boot time.\n");
820 /* Initialise dinfo and related data. */
821 /* If an initial mode was programmed at boot time, get its details. */
822 if (ORIG_VIDEO_ISVGA == VIDEO_TYPE_VLFB)
823 get_initial_mode(dinfo);
828 if (FIXED_MODE(dinfo)) {
829 /* remap fb address */
830 update_dinfo(dinfo, &dinfo->initial_var);
837 if (intelfb_set_fbinfo(dinfo)) {
848 pci_set_drvdata(pdev, dinfo);
850 /* Save the initial register state. */
851 i = intelfbhw_read_hw_state(dinfo, &dinfo->save_state,
852 bailearly > 6 ? bailearly - 6 : 0);
854 DBG_MSG("intelfbhw_read_hw_state returned %d\n", i);
858 intelfbhw_print_hw_state(dinfo, &dinfo->save_state);
863 /* Cursor initialisation */
864 if (dinfo->hwcursor) {
865 intelfbhw_cursor_init(dinfo);
866 intelfbhw_cursor_reset(dinfo);
872 /* 2d acceleration init */
874 intelfbhw_2d_start(dinfo);
882 if (register_framebuffer(dinfo->info) < 0) {
883 ERR_MSG("Cannot register framebuffer.\n");
888 dinfo->registered = 1;
893 fb_dealloc_cmap(&info->cmap);
895 framebuffer_release(info);
899 static void __devexit
900 intelfb_pci_unregister(struct pci_dev *pdev)
902 struct intelfb_info *dinfo = pci_get_drvdata(pdev);
904 DBG_MSG("intelfb_pci_unregister\n");
911 pci_set_drvdata(pdev, NULL);
914 /***************************************************************
916 ***************************************************************/
919 intelfb_var_to_depth(const struct fb_var_screeninfo *var)
921 DBG_MSG("intelfb_var_to_depth: bpp: %d, green.length is %d\n",
922 var->bits_per_pixel, var->green.length);
924 switch (var->bits_per_pixel) {
926 return (var->green.length == 6) ? 16 : 15;
930 return var->bits_per_pixel;
935 static __inline__ int
936 var_to_refresh(const struct fb_var_screeninfo *var)
938 int xtot = var->xres + var->left_margin + var->right_margin +
940 int ytot = var->yres + var->upper_margin + var->lower_margin +
943 return (1000000000 / var->pixclock * 1000 + 500) / xtot / ytot;
946 /***************************************************************
947 * Various intialisation functions *
948 ***************************************************************/
950 static void __devinit
951 get_initial_mode(struct intelfb_info *dinfo)
953 struct fb_var_screeninfo *var;
956 DBG_MSG("get_initial_mode\n");
958 dinfo->initial_vga = 1;
959 dinfo->initial_fb_base = screen_info.lfb_base;
960 dinfo->initial_video_ram = screen_info.lfb_size * KB(64);
961 dinfo->initial_pitch = screen_info.lfb_linelength;
963 var = &dinfo->initial_var;
964 memset(var, 0, sizeof(*var));
965 var->xres = screen_info.lfb_width;
966 var->yres = screen_info.lfb_height;
967 var->bits_per_pixel = screen_info.lfb_depth;
968 switch (screen_info.lfb_depth) {
970 var->bits_per_pixel = 16;
973 var->bits_per_pixel = 32;
977 DBG_MSG("Initial info: FB is 0x%x/0x%x (%d kByte)\n",
978 dinfo->initial_fb_base, dinfo->initial_video_ram,
979 BtoKB(dinfo->initial_video_ram));
981 DBG_MSG("Initial info: mode is %dx%d-%d (%d)\n",
982 var->xres, var->yres, var->bits_per_pixel,
983 dinfo->initial_pitch);
985 /* Dummy timing values (assume 60Hz) */
986 var->left_margin = (var->xres / 8) & 0xf8;
987 var->right_margin = 32;
988 var->upper_margin = 16;
989 var->lower_margin = 4;
990 var->hsync_len = (var->xres / 8) & 0xf8;
993 xtot = var->xres + var->left_margin +
994 var->right_margin + var->hsync_len;
995 ytot = var->yres + var->upper_margin +
996 var->lower_margin + var->vsync_len;
997 var->pixclock = 10000000 / xtot * 1000 / ytot * 100 / 60;
1002 if (var->bits_per_pixel > 8) {
1003 var->red.offset = screen_info.red_pos;
1004 var->red.length = screen_info.red_size;
1005 var->green.offset = screen_info.green_pos;
1006 var->green.length = screen_info.green_size;
1007 var->blue.offset = screen_info.blue_pos;
1008 var->blue.length = screen_info.blue_size;
1009 var->transp.offset = screen_info.rsvd_pos;
1010 var->transp.length = screen_info.rsvd_size;
1012 var->red.length = 8;
1013 var->green.length = 8;
1014 var->blue.length = 8;
1018 static int __devinit
1019 intelfb_init_var(struct intelfb_info *dinfo)
1021 struct fb_var_screeninfo *var;
1024 DBG_MSG("intelfb_init_var\n");
1026 var = &dinfo->info->var;
1027 if (FIXED_MODE(dinfo)) {
1028 memcpy(var, &dinfo->initial_var,
1029 sizeof(struct fb_var_screeninfo));
1033 msrc = fb_find_mode(var, dinfo->info, mode,
1034 vesa_modes, VESA_MODEDB_SIZE,
1040 msrc = fb_find_mode(var, dinfo->info, PREFERRED_MODE,
1041 vesa_modes, VESA_MODEDB_SIZE,
1047 ERR_MSG("Cannot find a suitable video mode.\n");
1051 INF_MSG("Initial video mode is %dx%d-%d@%d.\n", var->xres, var->yres,
1052 var->bits_per_pixel, var_to_refresh(var));
1054 DBG_MSG("Initial video mode is from %d.\n", msrc);
1056 #if ALLOCATE_FOR_PANNING
1057 /* Allow use of half of the video ram for panning */
1058 var->xres_virtual = var->xres;
1060 dinfo->fb.size / 2 / (var->bits_per_pixel * var->xres);
1061 if (var->yres_virtual < var->yres)
1062 var->yres_virtual = var->yres;
1064 var->yres_virtual = var->yres;
1068 var->accel_flags |= FB_ACCELF_TEXT;
1070 var->accel_flags &= ~FB_ACCELF_TEXT;
1075 static int __devinit
1076 intelfb_set_fbinfo(struct intelfb_info *dinfo)
1078 struct fb_info *info = dinfo->info;
1080 DBG_MSG("intelfb_set_fbinfo\n");
1082 info->flags = FBINFO_FLAG_DEFAULT;
1083 info->fbops = &intel_fb_ops;
1084 info->pseudo_palette = dinfo->pseudo_palette;
1086 info->pixmap.size = 64*1024;
1087 info->pixmap.buf_align = 8;
1088 info->pixmap.access_align = 32;
1089 info->pixmap.flags = FB_PIXMAP_SYSTEM;
1091 if (intelfb_init_var(dinfo))
1094 info->pixmap.scan_align = 1;
1095 strcpy(info->fix.id, dinfo->name);
1096 info->fix.smem_start = dinfo->fb.physical;
1097 info->fix.smem_len = dinfo->fb.size;
1098 info->fix.type = FB_TYPE_PACKED_PIXELS;
1099 info->fix.type_aux = 0;
1100 info->fix.xpanstep = 8;
1101 info->fix.ypanstep = 1;
1102 info->fix.ywrapstep = 0;
1103 info->fix.mmio_start = dinfo->mmio_base_phys;
1104 info->fix.mmio_len = INTEL_REG_SIZE;
1105 info->fix.accel = FB_ACCEL_I830;
1106 update_dinfo(dinfo, &info->var);
1111 /* Update dinfo to match the active video mode. */
1113 update_dinfo(struct intelfb_info *dinfo, struct fb_var_screeninfo *var)
1115 DBG_MSG("update_dinfo\n");
1117 dinfo->bpp = var->bits_per_pixel;
1118 dinfo->depth = intelfb_var_to_depth(var);
1119 dinfo->xres = var->xres;
1120 dinfo->yres = var->xres;
1121 dinfo->pixclock = var->pixclock;
1123 dinfo->info->fix.visual = dinfo->visual;
1124 dinfo->info->fix.line_length = dinfo->pitch;
1126 switch (dinfo->bpp) {
1128 dinfo->visual = FB_VISUAL_PSEUDOCOLOR;
1129 dinfo->pitch = var->xres_virtual;
1132 dinfo->visual = FB_VISUAL_TRUECOLOR;
1133 dinfo->pitch = var->xres_virtual * 2;
1136 dinfo->visual = FB_VISUAL_TRUECOLOR;
1137 dinfo->pitch = var->xres_virtual * 4;
1141 /* Make sure the line length is a aligned correctly. */
1142 dinfo->pitch = ROUND_UP_TO(dinfo->pitch, STRIDE_ALIGNMENT);
1144 if (FIXED_MODE(dinfo))
1145 dinfo->pitch = dinfo->initial_pitch;
1147 dinfo->info->screen_base = (char __iomem *)dinfo->fb.virtual;
1148 dinfo->info->fix.line_length = dinfo->pitch;
1149 dinfo->info->fix.visual = dinfo->visual;
1152 /* fbops functions */
1154 /***************************************************************
1156 ***************************************************************/
1159 intelfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
1162 struct fb_var_screeninfo v;
1163 struct intelfb_info *dinfo;
1164 static int first = 1;
1166 DBG_MSG("intelfb_check_var: accel_flags is %d\n", var->accel_flags);
1168 dinfo = GET_DINFO(info);
1170 if (intelfbhw_validate_mode(dinfo, var) != 0)
1175 /* Check for a supported bpp. */
1176 if (v.bits_per_pixel <= 8) {
1177 v.bits_per_pixel = 8;
1178 } else if (v.bits_per_pixel <= 16) {
1179 if (v.bits_per_pixel == 16)
1181 v.bits_per_pixel = 16;
1182 } else if (v.bits_per_pixel <= 32) {
1183 v.bits_per_pixel = 32;
1187 change_var = ((info->var.xres != var->xres) ||
1188 (info->var.yres != var->yres) ||
1189 (info->var.xres_virtual != var->xres_virtual) ||
1190 (info->var.yres_virtual != var->yres_virtual) ||
1191 (info->var.bits_per_pixel != var->bits_per_pixel) ||
1192 memcmp(&info->var.red, &var->red, sizeof(var->red)) ||
1193 memcmp(&info->var.green, &var->green,
1194 sizeof(var->green)) ||
1195 memcmp(&info->var.blue, &var->blue, sizeof(var->blue)));
1197 if (FIXED_MODE(dinfo) &&
1199 var->yres_virtual > dinfo->initial_var.yres_virtual ||
1200 var->yres_virtual < dinfo->initial_var.yres ||
1201 var->xoffset || var->nonstd)) {
1203 ERR_MSG("Changing the video mode is not supported.\n");
1209 switch (intelfb_var_to_depth(&v)) {
1211 v.red.offset = v.green.offset = v.blue.offset = 0;
1212 v.red.length = v.green.length = v.blue.length = 8;
1213 v.transp.offset = v.transp.length = 0;
1219 v.red.length = v.green.length = v.blue.length = 5;
1220 v.transp.offset = v.transp.length = 0;
1229 v.transp.offset = v.transp.length = 0;
1235 v.red.length = v.green.length = v.blue.length = 8;
1236 v.transp.offset = v.transp.length = 0;
1242 v.red.length = v.green.length = v.blue.length = 8;
1243 v.transp.offset = 24;
1244 v.transp.length = 8;
1253 if (v.xoffset > v.xres_virtual - v.xres)
1254 v.xoffset = v.xres_virtual - v.xres;
1255 if (v.yoffset > v.yres_virtual - v.yres)
1256 v.yoffset = v.yres_virtual - v.yres;
1258 v.red.msb_right = v.green.msb_right = v.blue.msb_right =
1259 v.transp.msb_right = 0;
1267 intelfb_set_par(struct fb_info *info)
1269 struct intelfb_hwstate *hw;
1270 struct intelfb_info *dinfo = GET_DINFO(info);
1272 if (FIXED_MODE(dinfo)) {
1273 ERR_MSG("Changing the video mode is not supported.\n");
1277 hw = kmalloc(sizeof(*hw), GFP_ATOMIC);
1281 DBG_MSG("intelfb_set_par (%dx%d-%d)\n", info->var.xres,
1282 info->var.yres, info->var.bits_per_pixel);
1284 intelfb_blank(FB_BLANK_POWERDOWN, info);
1286 if (ACCEL(dinfo, info))
1287 intelfbhw_2d_stop(dinfo);
1289 memcpy(hw, &dinfo->save_state, sizeof(*hw));
1290 if (intelfbhw_mode_to_hw(dinfo, hw, &info->var))
1292 if (intelfbhw_program_mode(dinfo, hw, 0))
1296 intelfbhw_read_hw_state(dinfo, hw, 0);
1297 intelfbhw_print_hw_state(dinfo, hw);
1300 update_dinfo(dinfo, &info->var);
1302 if (ACCEL(dinfo, info))
1303 intelfbhw_2d_start(dinfo);
1305 intelfb_pan_display(&info->var, info);
1307 intelfb_blank(FB_BLANK_UNBLANK, info);
1309 if (ACCEL(dinfo, info)) {
1310 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN |
1311 FBINFO_HWACCEL_COPYAREA | FBINFO_HWACCEL_FILLRECT |
1312 FBINFO_HWACCEL_IMAGEBLIT;
1314 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
1324 intelfb_setcolreg(unsigned regno, unsigned red, unsigned green,
1325 unsigned blue, unsigned transp, struct fb_info *info)
1327 struct intelfb_info *dinfo = GET_DINFO(info);
1330 DBG_MSG("intelfb_setcolreg: regno %d, depth %d\n", regno, dinfo->depth);
1336 switch (dinfo->depth) {
1343 intelfbhw_setcolreg(dinfo, regno, red, green, blue,
1348 dinfo->pseudo_palette[regno] = ((red & 0xf800) >> 1) |
1349 ((green & 0xf800) >> 6) |
1350 ((blue & 0xf800) >> 11);
1353 dinfo->pseudo_palette[regno] = (red & 0xf800) |
1354 ((green & 0xfc00) >> 5) |
1355 ((blue & 0xf800) >> 11);
1358 dinfo->pseudo_palette[regno] = ((red & 0xff00) << 8) |
1360 ((blue & 0xff00) >> 8);
1367 intelfb_blank(int blank, struct fb_info *info)
1369 intelfbhw_do_blank(blank, info);
1374 intelfb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
1376 intelfbhw_pan_display(var, info);
1380 /* When/if we have our own ioctls. */
1382 intelfb_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
1390 intelfb_fillrect (struct fb_info *info, const struct fb_fillrect *rect)
1392 struct intelfb_info *dinfo = GET_DINFO(info);
1396 DBG_MSG("intelfb_fillrect\n");
1399 if (!ACCEL(dinfo, info) || dinfo->depth == 4)
1400 return cfb_fillrect(info, rect);
1402 if (rect->rop == ROP_COPY)
1403 rop = PAT_ROP_GXCOPY;
1405 rop = PAT_ROP_GXXOR;
1407 if (dinfo->depth != 8)
1408 color = dinfo->pseudo_palette[rect->color];
1410 color = rect->color;
1412 intelfbhw_do_fillrect(dinfo, rect->dx, rect->dy,
1413 rect->width, rect->height, color,
1414 dinfo->pitch, info->var.bits_per_pixel,
1419 intelfb_copyarea(struct fb_info *info, const struct fb_copyarea *region)
1421 struct intelfb_info *dinfo = GET_DINFO(info);
1424 DBG_MSG("intelfb_copyarea\n");
1427 if (!ACCEL(dinfo, info) || dinfo->depth == 4)
1428 return cfb_copyarea(info, region);
1430 intelfbhw_do_bitblt(dinfo, region->sx, region->sy, region->dx,
1431 region->dy, region->width, region->height,
1432 dinfo->pitch, info->var.bits_per_pixel);
1436 intelfb_imageblit(struct fb_info *info, const struct fb_image *image)
1438 struct intelfb_info *dinfo = GET_DINFO(info);
1439 u32 fgcolor, bgcolor;
1442 DBG_MSG("intelfb_imageblit\n");
1445 if (!ACCEL(dinfo, info) || dinfo->depth == 4
1446 || image->depth != 1)
1447 return cfb_imageblit(info, image);
1449 if (dinfo->depth != 8) {
1450 fgcolor = dinfo->pseudo_palette[image->fg_color];
1451 bgcolor = dinfo->pseudo_palette[image->bg_color];
1453 fgcolor = image->fg_color;
1454 bgcolor = image->bg_color;
1457 if (!intelfbhw_do_drawglyph(dinfo, fgcolor, bgcolor, image->width,
1458 image->height, image->data,
1459 image->dx, image->dy,
1460 dinfo->pitch, info->var.bits_per_pixel))
1461 return cfb_imageblit(info, image);
1465 intelfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
1467 struct intelfb_info *dinfo = GET_DINFO(info);
1470 DBG_MSG("intelfb_cursor\n");
1473 if (!dinfo->hwcursor)
1476 intelfbhw_cursor_hide(dinfo);
1478 /* If XFree killed the cursor - restore it */
1479 if (INREG(CURSOR_A_BASEADDR) != dinfo->cursor.offset << 12) {
1482 DBG_MSG("the cursor was killed - restore it !!\n");
1483 DBG_MSG("size %d, %d pos %d, %d\n",
1484 cursor->image.width, cursor->image.height,
1485 cursor->image.dx, cursor->image.dy);
1487 intelfbhw_cursor_init(dinfo);
1488 intelfbhw_cursor_reset(dinfo);
1489 intelfbhw_cursor_setpos(dinfo, cursor->image.dx,
1492 if (dinfo->depth != 8) {
1493 fg =dinfo->pseudo_palette[cursor->image.fg_color];
1494 bg =dinfo->pseudo_palette[cursor->image.bg_color];
1496 fg = cursor->image.fg_color;
1497 bg = cursor->image.bg_color;
1499 intelfbhw_cursor_setcolor(dinfo, bg, fg);
1500 intelfbhw_cursor_load(dinfo, cursor->image.width,
1501 cursor->image.height,
1505 intelfbhw_cursor_show(dinfo);
1509 if (cursor->set & FB_CUR_SETPOS) {
1512 dx = cursor->image.dx - info->var.xoffset;
1513 dy = cursor->image.dy - info->var.yoffset;
1515 intelfbhw_cursor_setpos(dinfo, dx, dy);
1518 if (cursor->set & FB_CUR_SETSIZE) {
1519 if (cursor->image.width > 64 || cursor->image.height > 64)
1522 intelfbhw_cursor_reset(dinfo);
1525 if (cursor->set & FB_CUR_SETCMAP) {
1528 if (dinfo->depth != 8) {
1529 fg = dinfo->pseudo_palette[cursor->image.fg_color];
1530 bg = dinfo->pseudo_palette[cursor->image.bg_color];
1532 fg = cursor->image.fg_color;
1533 bg = cursor->image.bg_color;
1536 intelfbhw_cursor_setcolor(dinfo, bg, fg);
1539 if (cursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETIMAGE)) {
1540 u32 s_pitch = (ROUND_UP_TO(cursor->image.width, 8) / 8);
1541 u32 size = s_pitch * cursor->image.height;
1542 u8 *dat = (u8 *) cursor->image.data;
1543 u8 *msk = (u8 *) cursor->mask;
1547 if (cursor->image.depth != 1)
1550 switch (cursor->rop) {
1552 for (i = 0; i < size; i++)
1553 src[i] = dat[i] ^ msk[i];
1557 for (i = 0; i < size; i++)
1558 src[i] = dat[i] & msk[i];
1562 /* save the bitmap to restore it when XFree will
1563 make the cursor dirty */
1564 memcpy(dinfo->cursor_src, src, size);
1566 intelfbhw_cursor_load(dinfo, cursor->image.width,
1567 cursor->image.height, src);
1571 intelfbhw_cursor_show(dinfo);
1577 intelfb_sync(struct fb_info *info)
1579 struct intelfb_info *dinfo = GET_DINFO(info);
1582 DBG_MSG("intelfb_sync\n");
1585 if (dinfo->ring_lockup)
1588 intelfbhw_do_sync(dinfo);