Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4259331
  • 博文数量: 1148
  • 博客积分: 25453
  • 博客等级: 上将
  • 技术积分: 11949
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-06 21:14
文章分类

全部博文(1148)

文章存档

2012年(15)

2011年(1078)

2010年(58)

分类: 嵌入式

2011-05-02 22:50:03

Enabling the Linux Framebuffer




This is only a short guide. See and /usr/src/linux/Documentation/fb/ for detailed information. There is also a detailed explanation at .

  1. Make sure that you have the Linux kernel source code in .

  2. Log in as root and cd /usr/src/linux

  3. Configure the kernel:

    Run:

    make menuconfig

    Select "Code maturity level options" and set "Prompt for development and/or incomplete code/drivers".

    Then select "Console drivers" and set "Support for frame buffer devices" to built-in (even if it says EXPERIMENTAL). Then configure the driver. Most modern graphics cards can use the "VESA VGA graphics console"; use that or a driver that specifically matches your video card. Finally, enable "Advanced low level driver options" and make sure that 16 and 32 bpp packed pixel support are enabled.

    When you are finished, chose exit and save.

  4. Compile the kernel

    First do:

    make dep then: make bzImage

    The new kernel should now be in arch/i386/boot/bzImage.

  5. Copy the kernel to the boot directory: cp arch/i386/boot/bzImage /boot/linux.vesafb

  6. Edit /etc/lilo.conf.

    Warning: Keep a backup of , and have a rescue disk available. If you make a mistake, the machine may not boot.

    The file specifies how the system boots. The precise contents of the file varies from system to system. Here is an example:

    # LILO configuration file boot = /dev/hda3 delay = 30 image = /boot/vmlinuz root = /dev/hda3 label = Linux read-only # Non-UMSDOS filesystems should be mounted read-only for checking other=/dev/hda1 label=nt table=/dev/hda

    Make a new "image" section that is a copy of the first one, but with

    image = /boot/linux.vesafb and label = Linux-vesafb endcode Place it just above the first image section. Add a line before the image section saying \c{vga = 791}. (Meaning 1024x768, 16 bpp.) With the above example, lilo.conf would now be: \code # LILO configuration file boot = /dev/hda3 delay = 30 vga = 791 image = /boot/linux.vesafb root = /dev/hda3 label = Linux-vesafb read-only # Non-UMSDOS filesystems should be mounted read-only for checking image = /boot/vmlinuz root = /dev/hda3 label = Linux read-only # Non-UMSDOS filesystems should be mounted read-only for checking other=/dev/hda1 label=nt table=/dev/hda

    Do not change any existing lines in the file; just add new ones.

  7. To make the new changes take effect, run the lilo program: lilo

  8. Reboot the system. You should now see a penguin logo while the system is booting. (Or more than one on a multi-processor machine.)

  9. If it does not boot properly with the new kernel, you can boot with the old kernel by entering the label of the old image section at the LILO prompt. (with the example lilo.conf file, the old label is Linux.)

    If that does not work (probably because of an error in lilo.conf), boot the machine using your rescue disk, restore from backup and re-run lilo.

  10. Testing: Here's a short program that opens the frame buffer and draws a gradient-filled red square.


  1. #include <unistd.h>
  2. #include <stdio.h>
  3. #include <fcntl.h>
  4. #include <linux/fb.h>
  5. #include <sys/mman.h>

  6. int main()
  7. {
  8.     int fbfd = 0;
  9.     struct fb_var_screeninfo vinfo;
  10.     struct fb_fix_screeninfo finfo;
  11.     long int screensize = 0;
  12.     char *fbp = 0;
  13.     int x = 0, y = 0;
  14.     long int location = 0;

  15.     // Open the file for reading and writing
  16.     fbfd = open("/dev/fb0", O_RDWR);
  17.     if (!fbfd) {
  18.         printf("Error: cannot open framebuffer device.\n");
  19.         exit(1);
  20.     }
  21.     printf("The framebuffer device was opened successfully.\n");

  22.     // Get fixed screen information
  23.     if (ioctl(fbfd, FBIOGET_FSCREENINFO, &finfo)) {
  24.         printf("Error reading fixed information.\n");
  25.         exit(2);
  26.     }

  27.     // Get variable screen information
  28.     if (ioctl(fbfd, FBIOGET_VSCREENINFO, &vinfo)) {
  29.         printf("Error reading variable information.\n");
  30.         exit(3);
  31.     }

  32.     printf("%dx%d, %dbpp\n", vinfo.xres, vinfo.yres, vinfo.bits_per_pixel );

  33.     // Figure out the size of the screen in bytes
  34.     screensize = vinfo.xres * vinfo.yres * vinfo.bits_per_pixel / 8;

  35.     // Map the device to memory
  36.     fbp = (char *)mmap(0, screensize, PROT_READ | PROT_WRITE, MAP_SHARED,
  37.                        fbfd, 0);
  38.     if ((int)fbp == -1) {
  39.         printf("Error: failed to map framebuffer device to memory.\n");
  40.         exit(4);
  41.     }
  42.     printf("The framebuffer device was mapped to memory successfully.\n");

  43.     x = 100; y = 100; // Where we are going to put the pixel

  44.     // Figure out where in memory to put the pixel
  45.     for ( y = 100; y < 300; y++ )
  46.         for ( x = 100; x < 300; x++ ) {

  47.             location = (x+vinfo.xoffset) * (vinfo.bits_per_pixel/8) +
  48.                        (y+vinfo.yoffset) * finfo.line_length;

  49.             if ( vinfo.bits_per_pixel == 32 ) {
  50.                 *(fbp + location) = 100; // Some blue
  51.                 *(fbp + location + 1) = 15+(x-100)/2; // A little green
  52.                 *(fbp + location + 2) = 200-(y-100)/5; // A lot of red
  53.                 *(fbp + location + 3) = 0; // No transparency
  54.             } else { //assume 16bpp
  55.                 int b = 10;
  56.                 int g = (x-100)/6; // A little green
  57.                 int r = 31-(y-100)/16; // A lot of red
  58.                 unsigned short int t = r<<11 | g << 5 | b;
  59.                 *((unsigned short int*)(fbp + location)) = t;
  60.             }

  61.         }
  62.     munmap(fbp, screensize);
  63.     close(fbfd);
  64.     return 0;
  65. }

阅读(794) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~