Intel 830M/845G/852GM/855GM/865G/915G/945G Framebuffer driver¶
A. Introduction¶
This is a framebuffer driver for various Intel 8xx/9xx compatiblegraphics devices. These would include:
- Intel 830M
- Intel 845G
- Intel 852GM
- Intel 855GM
- Intel 865G
- Intel 915G
- Intel 915GM
- Intel 945G
- Intel 945GM
- Intel 945GME
- Intel 965G
- Intel 965GM
B. List of available options¶
- “video=intelfb”
enables the intelfb driver
Recommendation: required
- “mode=<xres>x<yres>[-<bpp>][@<refresh>]”
select mode
Recommendation: user preference(default =1024x768-32@70)
- “vram=<value>”
select amount of system RAM in MB to allocate for the video memoryif not enough RAM was already allocated by the BIOS.
Recommendation: 1 - 4 MB.(default = 4 MB)
- “voffset=<value>”
select at what offset in MB of the logical memory to allocate theframebuffer memory. The intent is to avoid the memory blocksused by standard graphics applications (XFree86). Depending on yourusage, adjust the value up or down, (0 for maximum usage, 63/127 MBfor the least amount). Note, an arbitrary setting may conflictwith XFree86.
Recommendation: do not set(default = 48 MB)
- “accel”
enable text acceleration. This can be enabled/reenabled anytimeby using ‘fbset -accel true/false’.
Recommendation: enable(default = set)
- “hwcursor”
enable cursor acceleration.
Recommendation: enable(default = set)
- “mtrr”
enable MTRR. This allows data transfers to the framebuffer memoryto occur in bursts which can significantly increase performance.Not very helpful with the intel chips because of ‘shared memory’.
Recommendation: set(default = set)
- “fixed”
disable mode switching.
Recommendation: do not set(default = not set)
The binary parameters can be unset with a “no” prefix, example “noaccel”.The default parameter (not named) is the mode.
C. Kernel booting¶
Separate each option/option-pair by commas (,) and the option from its valuewith an equals sign (=) as in the following:
video=intelfb:option1,option2=value2
Sample Usage¶
In /etc/lilo.conf, add the line:
append="video=intelfb:mode=800x600-32@75,accel,hwcursor,vram=8"
This will initialize the framebuffer to 800x600 at 32bpp and 75Hz. Theframebuffer will use 8 MB of System RAM. hw acceleration of text and cursorwill be enabled.
Remarks¶
If setting this parameter doesn’t work (you stay in a 80x25 text-mode),you might need to set the “vga=<mode>” parameter too - see vesafb.txtin this directory.
D. Module options¶
The module parameters are essentially similar to the kernelparameters. The main difference is that you need to include a Boolean value(1 for TRUE, and 0 for FALSE) for those options which don’t need a value.
Example, to enable MTRR, include “mtrr=1”.
Sample Usage¶
Using the same setup as described above, load the module like this:
modprobe intelfb mode=800x600-32@75 vram=8 accel=1 hwcursor=1
Or just add the following to a configuration file in /etc/modprobe.d/:
options intelfb mode=800x600-32@75 vram=8 accel=1 hwcursor=1
and just do a:
modprobe intelfb
E. Acknowledgment:¶
- Geert Uytterhoeven - his excellent howto and the virtualframebuffer driver code made this possible.
- Jeff Hartmann for his agpgart code.
- David Dawes for his original kernel 2.4 code.
- The X developers. Insights were provided just by reading theXFree86 source code.
- Antonino A. Daplas for his inspiring i810fb driver.
- Andrew Morton for his kernel patches maintenance.
Sylvain