当前位置:首页 > linux教程 > 列表

嵌入式Linux中基于framebuffer设备的jpeg格式在本地LCD屏显示

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-22 10:20:51 浏览: 评论:0 

Framebuffer 是用一个视频输出设备从包含完整的帧数据的一个内存缓冲区中来驱动一个视频显示设备,本文我们来看看嵌入式Linux基于framebuffer的jpeg格式在本地LCD屏显示.

在基于Linux的视频监控采集系统中,摄像头采集到的一帧视频图像数据一般都是经过硬件自动压缩成jpeg格式的,然后再保存到摄像头设备的缓冲区.如果要把采集到的jpeg格式显示在本地LCD屏上,由于我们的Linux系统没有移植任何GUI系统,就要考虑以下方面:

1. 将jpeg格式解压缩为位图格式,也就是jpeg解码.

2. 将解码出来的位图格式输出到本地的LCD屏上. 在Linux系统下是通过写入帧缓冲(framebuffer)来实现的.

3. framebuffer相当于为LCD设备提供一个统一的接口,对framebuffer的操控会反映到LCD显示设备上去. 如果配置Linux内核时没有找到支持本地lcd屏这种型号的驱动,那我们要自己写lcd屏驱动,然后选择静态加入内核或以模块的形式加入内核动态加载. 针对以上三点,我们逐一解决:

1.jpeg解码

先了解一下jpeg标准的编码过程:原始的一帧未压缩过的图像可以看成是RGB(红绿蓝)色彩空间上的一组向量集合,但在RGB空间是不利于数据压缩的,因此为了压缩先要把图像映射到利于压缩的YUV空间上(原因是因为人类的眼睛对于亮度差异的敏感度高于色彩变化,而YUV空间的一个基向量Y就是亮度), 这一步叫色彩空间转换.

下一步可以在YUV空间上减少U(色调)和V(饱和度)的成分,也就是在亮度信息不减少的情况下移除部分色彩信息,谁叫人的眼睛对亮度的敏感优于对色彩的敏感呢.这一步叫缩减取样.下一步是将图像从色彩空间映射到频率空间,可以采用的变换方法有:离散余弦变换,傅氏变换,正弦变换等. 其中应用最广的是离散余弦变换(DCT).这一步是无损的,目的是为了在下一步称之为量化的过程中可以经过四舍五入删除高频量得到压缩后的矩阵.量化之后就是对这个矩阵的编码问题了.针对这个矩阵的分布特点,采用"Z"字形的顺序扫描编排,然后进行RLE行程编码,把大量连续重复的数据压缩.最后再用范式Huffman编码.要了解详细的过程,可以查看JPEG标准. 而解码就是以上编码的逆过程了.除非想要自己实现jpeg的编码和解码函数,我们可以不必细究这些过程,而是直接使用别人已经实现的jpeg编码解码库.在Linux平台下,有libjpeg库,它是完全用C语言编写的, 依照它的许可协议,可自由使用,不是GPL协议,它可以用于商业目的. libjpeg的6b版本有个问题,就是解码接口,它只接受文件源.打开源的函数jpeg_stdio_src(j_decompress_ptr cinfo, FILE *infile)要求解码源infile是文件.而我们希望解码的是直接来自映射内存中的数据.要解码内存流的话就要修改libjpeg的源码了,可以参考这里:http://my.unix-center.net/~Simon_fu/?p=565 目前libjpeg的最新版8c已经解决了这个接口不好的问题了,它增加了对内存流解码的支持.通过调用函数

jpeg_mem_src(&cinfo, fdmem, st.st_size);

就可以将保存在内存的jpeg格式数据作为源输入了.因此我们就用libjpeg 8c这个版本来解码,用到的函数主要有:

初始化jpeg解压对象:

  1. /* init jpeg decompress object error handler */ 
  2. cinfo.err = jpeg_std_error(&jerr); 
  3. jpeg_create_decompress(&cinfo); 

绑定jpeg解压对象到输入流:

  1. /* bind jpeg decompress object to infile */ 
  2. READ_FILE    // 从jpeg文件读入 
  3. jpeg_stdio_src(&cinfo, infile); 
  4. f READ_MEM    // 从内存读入jpeg格式 
  5. jpeg_mem_src(&cinfo, fdmem, st.st_size); 
  6. if 

读取jpeg头部信息:

  1. /* read jpeg header */ 
  2. jpeg_read_header(&cinfo, TRUE); 
 

解压过程:

  1. /* decompress process */ 
  2. jpeg_start_decompress(&cinfo); 

调用这个函数之后,可以得到jpeg图像的下面几个参数:

  1. output_width // 图像的宽度 
  2. output_height // 图像的高度 
  3. output_components // 每个像素占用的字节数 

我们采用每扫描一行像素就输出到屏幕的方法的话,根据以上参数可以确定分配一行信息需要的缓冲区:

  1. buffer = (unsigned char *)malloc(cinfo.output_width * 
  2.         cinfo.output_components); 

总共需要扫描output_height行,读取一行扫描数据并输出到LCD屏幕:

  1. y = 0; 
  2. while (cinfo.output_scanline < cinfo.output_height) { 
  3.     jpeg_read_scanlines(&cinfo, &buffer, 1); 
  4.     if (fb_depth == 16) {    // 如果显示设备色深是16位 
  5.         ... 
  6.     } else if (fb_depth == 24) {    // 如果显示设备色深是24位 
  7.         ... 
  8.     } else if (fb_depth == 32) {    // 如果显示设备色深是32位 
  9.         ... 
  10.     } 
  11.     y++; 

结束jpeg解码:

  1. /* finish decompress, destroy decompress object */ 
  2. jpeg_finish_decompress(&cinfo); 
  3. jpeg_destroy_decompress(&cinfo); 

释放缓冲区:

  1. /* release memory buffer */ 
  2. free(buffer); 

2.输出位图到LCD屏

通过framebuffer直接写屏的主要步骤有:

打开framebuffer设备:

  1. /* open framebuffer device */ 
  2. fbdev = fb_open("/dev/fb0"); 

获取framebuffer设备参数:

  1. /* get status of framebuffer device */ 
  2. fb_stat(fbdev, &fb_width, &fb_height, &fb_depth); 

映射framebuffer设备到共享内存:

  1. screensize = fb_width * fb_height * fb_depth / 8; 
  2. fbmem = fb_mmap(fbdev, screensize); 

直接对映射到那片内存进行写操作,LCD屏刷新刷新时就会反应到屏幕上去了.

  1. y = 0; 
  2.        while (cinfo.output_scanline < cinfo.output_height) { 
  3.            jpeg_read_scanlines(&cinfo, &buffer, 1); 
  4.            if (fb_depth == 16) { 
  5.                unsigned short color; 
  6.  
  7.                for (x = 0; x < cinfo.output_width; x++) { 
  8.                    color = 
  9.                        RGB888toRGB565(buffer[x * 3], 
  10.                                buffer[x * 3 + 1], buffer[x * 3 + 2]); 
  11.                    fb_pixel(fbmem, fb_width, fb_height, x, y, color); 
  12.                } 
  13.            } else if (fb_depth == 24) { 
  14.                memcpy((unsigned char *) fbmem + y * fb_width * 3, 
  15.                        buffer, cinfo.output_width * cinfo.output_components); 
  16.            } else if (fb_depth == 32) { 
  17.                // memcpy((unsigned char *) fbmem + y * fb_width * 4, 
  18.                        // buffer, cinfo.output_width * cinfo.output_components); 
  19.                for (x = 0; x < cinfo.output_width; x++) { 
  20.                    *(fbmem + y * fb_width * 4 + x * 4)     = (unsigned char) buffer[x * 3 + 2]; 
  21.                    *(fbmem + y * fb_width * 4 + x * 4 + 1) = (unsigned char) buffer[x * 3 + 1]; 
  22.                    *(fbmem + y * fb_width * 4 + x * 4 + 2) = (unsigned char) buffer[x * 3 + 0]; 
  23.                    *(fbmem + y * fb_width * 4 + x * 4 + 3) = (unsigned char) 0; 
  24.                }  //phpfensi.com 
  25.            } 
  26.            y++;    // next scanline 
  27.        } 

卸载映射framebuffer的那部分内存:

  1.     /* unmap framebuffer's shared memory */ 
  2.     fb_munmap(fbmem, screensize); 
  3.  
  4. 关闭framebuffer设备: 
  5.  
  6.     close(fbdev); 

根据以上两点,可以写一个测试程序,在不开X-window图形系统的情况下,将本地的jpeg文件直接显示到屏幕上.

  1. #include    <stdio.h> 
  2. #include    <string.h> 
  3. #include    <stdlib.h> 
  4. #include    <unistd.h> 
  5. #include    <sys/ioctl.h> 
  6. #include    <sys/types.h> 
  7. #include    <sys/stat.h> 
  8. #include    <errno.h> 
  9. #include    <fcntl.h> 
  10. #include    <sys/mman.h> 
  11. #include    <linux/fb.h> 
  12. #include    "jpeglib.h" 
  13. #include    "jerror.h" 
  14.  
  15. #define FB_DEV  "/dev/fb0" 
  16. #define __fnc__ __FUNCTION__ 
  17.  
  18. #define debug           0 
  19. #define debug_printf    0 
  20. #define BYREAD          0 
  21. #define BYMEM           1 
  22.  
  23. /* function deciaration */ 
  24.  
  25. void usage(char *msg); 
  26. unsigned short RGB888toRGB565(unsigned char red, 
  27.         unsigned char green, unsigned char blue); 
  28. int fb_open(char *fb_device); 
  29. int fb_close(int fd); 
  30. int fb_stat(int fd, unsigned int *width, unsigned int *height, unsigned int *    depth); 
  31. void *fb_mmap(int fd, unsigned int screensize); 
  32. void *fd_mmap(int fd, unsigned int filesize); 
  33. int fb_munmap(void *start, size_t length); 
  34. int fb_pixel(void *fbmem, int width, int height, 
  35.         int x, int y, unsigned short color); 
  36.  
  37. #if(debug) 
  38. void draw(unsigned char *fbp, 
  39.         struct fb_var_screeninfo vinfo, 
  40.         struct fb_fix_screeninfo finfo); 
  41. #endif 
  42.  
  43. /* function implementation */ 
  44.  
  45. int main(int argc, char **argv) 
  46.     struct jpeg_decompress_struct cinfo; 
  47.     struct jpeg_error_mgr jerr; 
  48. #if(BYREAD) 
  49.     FILE *infile; 
  50. #endif 
  51.     int fd; 
  52.     unsigned char *buffer; 
  53.     struct stat st; 
  54.  
  55.     int fbdev; 
  56.     char *fb_device; 
  57.     unsigned char *fbmem; 
  58.     unsigned char *fdmem; 
  59.     unsigned int screensize; 
  60.     unsigned int fb_width; 
  61.     unsigned int fb_height; 
  62.     unsigned int fb_depth; 
  63.     register unsigned int x; 
  64.     register unsigned int y; 
  65.  
  66.     /* check auguments */ 
  67.     if (argc != 2) { 
  68.         usage("insuffient auguments"); 
  69.         exit(-1); 
  70.     } 
  71.  
  72.     /* open framebuffer device */ 
  73.     if ((fb_device = getenv("FRAMEBUFFER")) == NULL) 
  74.         fb_device = FB_DEV; 
  75.     fbdev = fb_open(fb_device); 
  76.  
  77.     /* get status of framebuffer device */ 
  78.     fb_stat(fbdev, &fb_width, &fb_height, &fb_depth); 
  79.  
  80.     /* map framebuffer device to shared memory */ 
  81.     screensize = fb_width * fb_height * fb_depth / 8; 
  82.     fbmem = fb_mmap(fbdev, screensize); 
  83.  
  84. #if (BYREAD) 
  85.     /* open input jpeg file */ 
  86.     if ((infile = fopen(argv[1], "rb")) == NULL) { 
  87.         fprintf(stderr, "open %s failedn", argv[1]); 
  88.         exit(-1); 
  89.     } 
  90. #endif 
  91.  
  92.     if ((fd = open(argv[1], O_RDONLY)) < 0) { 
  93.         perror("open"); 
  94.         exit(-1); 
  95.     } 
  96.  
  97.     if (fstat(fd, &st) < 0) { 
  98.         perror("fstat"); 
  99.         exit(-1); 
  100.     } 
  101.  
  102.     fdmem = fd_mmap(fd, st.st_size); 
  103.  
  104.     /* init jpeg decompress object error handler */ 
  105.     cinfo.err = jpeg_std_error(&jerr); 
  106.     jpeg_create_decompress(&cinfo); 
  107.  
  108.     /* bind jpeg decompress object to infile */ 
  109. #if (BYREAD) 
  110.     jpeg_stdio_src(&cinfo, infile); 
  111. #endif 
  112.  
  113. #if (BYMEM) 
  114.     jpeg_mem_src(&cinfo, fdmem, st.st_size); 
  115. #endif 
  116.  
  117.     /* read jpeg header */ 
  118.     jpeg_read_header(&cinfo, TRUE); 
  119.  
  120.     /* decompress process */ 
  121.     jpeg_start_decompress(&cinfo); 
  122.     if ((cinfo.output_width > fb_width) || 
  123.             (cinfo.output_height > fb_height)) { 
  124.         printf("too large jpeg file, can't displayn"); 
  125. #if (0) 
  126.         return -1; 
  127. #endif 
  128.     } 
  129.  
  130.     buffer = (unsigned char *) malloc(cinfo.output_width * 
  131.             cinfo.output_components); 
  132.  
  133.     struct fb_fix_screeninfo fb_finfo; 
  134.     struct fb_var_screeninfo fb_vinfo; 
  135.  
  136.     if (ioctl(fbdev, FBIOGET_FSCREENINFO, &fb_finfo)) { 
  137.         perror(__fnc__); 
  138.         return -1; 
  139.     } 
  140.  
  141.     if (ioctl(fbdev, FBIOGET_VSCREENINFO, &fb_vinfo)) { 
  142.         perror(__fnc__); 
  143.         return -1; 
  144.     } 
  145.  
  146. #if(debug) 
  147.     draw(fbmem, fb_vinfo, fb_finfo); 
  148. #endif 
  149.     y = 0; 
  150.     while (cinfo.output_scanline < cinfo.output_height) { 
  151.         jpeg_read_scanlines(&cinfo, &buffer, 1); 
  152.         if (fb_depth == 16) { 
  153.             unsigned short color; 
  154.  
  155.             for (x = 0; x < cinfo.output_width; x++) { 
  156.                 color = 
  157.                     RGB888toRGB565(buffer[x * 3], 
  158.                             buffer[x * 3 + 1], buffer[x * 3 + 2]); 
  159.                 fb_pixel(fbmem, fb_width, fb_height, x, y, color); 
  160.             } 
  161.         } else if (fb_depth == 24) { 
  162.             memcpy((unsigned char *) fbmem + y * fb_width * 3, 
  163.                     buffer, cinfo.output_width * cinfo.output_components); 
  164.         } else if (fb_depth == 32) { 
  165.             // memcpy((unsigned char *) fbmem + y * fb_width * 4, 
  166.                     // buffer, cinfo.output_width * cinfo.output_components); 
  167.             for (x = 0; x < cinfo.output_width; x++) { 
  168.                 * (fbmem + y * fb_width * 4 + x * 4)     = (unsigned char)       buffer[x * 3 + 2]; 
  169.                 * (fbmem + y * fb_width * 4 + x * 4 + 1) = (unsigned char)       buffer[x * 3 + 1]; 
  170.                 * (fbmem + y * fb_width * 4 + x * 4 + 2) = (unsigned char)       buffer[x * 3 + 0]; 
  171.                 * (fbmem + y * fb_width * 4 + x * 4 + 3) = (unsigned char) 0; 
  172.             } 
  173.         } 
  174.         y++;    // next scanline 
  175.     } 
  176.  
  177.     /* finish decompress, destroy decompress object */ 
  178.     jpeg_finish_decompress(&cinfo); 
  179.     jpeg_destroy_decompress(&cinfo); 
  180.  
  181.     /* release memory buffer */ 
  182.     free(buffer); 
  183.  
  184. #if (BYREAD) 
  185.     /* close jpeg inputing file */ 
  186.     fclose(infile); 
  187. #endif 
  188.  
  189.     /* unmap framebuffer's shared memory */ 
  190.     fb_munmap(fbmem, screensize); 
  191.  
  192. #if (BYMEM) 
  193.     munmap(fdmem, (size_t) st.st_size); 
  194.     close(fd); 
  195. #endif 
  196.  
  197.     /* close framebuffer device */ 
  198.     fb_close(fbdev); 
  199.  
  200.     return 0; 
  201.  
  202. void usage(char *msg) 
  203.     fprintf(stderr, "%sn", msg); 
  204.     printf("Usage: fv some-jpeg-file.jpgn"); 
  205.  
  206. /* open framebuffer device. 
  207.  * return positive file descriptor if success, 
  208.  * else return -1 
  209.  */ 
  210. int fb_open(char *fb_device) 
  211.     int fd; 
  212.  
  213.     if ((fd = open(fb_device, O_RDWR)) < 0) { 
  214.         perror(__fnc__); 
  215.         return -1; 
  216.     } 
  217.     return fd; 
  218.  
  219. int fb_close(int fd) 
  220.     return (close(fd)); 
  221.  
  222. /* get framebuffer's width, height, and depth. 
  223.  * return 0 if success, else return -1. 
  224.  */ 
  225. int fb_stat(int fd, unsigned int *width, unsigned int *height, unsigned int *    depth) 
  226.     struct fb_fix_screeninfo fb_finfo; 
  227.     struct fb_var_screeninfo fb_vinfo; 
  228.  
  229.     if (ioctl(fd, FBIOGET_FSCREENINFO, &fb_finfo)) { 
  230.         perror(__fnc__); 
  231.         return -1; 
  232.     } 
  233.  
  234.     if (ioctl(fd, FBIOGET_VSCREENINFO, &fb_vinfo)) { 
  235.         perror(__fnc__); 
  236.         return -1; 
  237.     } 
  238.  
  239.     *width = fb_vinfo.xres; 
  240.     *height = fb_vinfo.yres; 
  241.     *depth = fb_vinfo.bits_per_pixel; 
  242.  
  243.     return 0; 
  244.  
  245. /* map shared memory to framebuffer device. 
  246.  * return maped memory if success 
  247.  * else return -1, as mmap dose 
  248.  */ 
  249. void *fb_mmap(int fd, unsigned int screensize) 
  250.     caddr_t fbmem; 
  251.  
  252.     if ((fbmem = mmap(0, screensize, PROT_READ | PROT_WRITE, 
  253.                     MAP_SHARED, fd, 0)) == MAP_FAILED) { 
  254.         perror(__func__); 
  255.         return (void *) (-1); 
  256.     } 
  257.  
  258.     return fbmem; 
  259.  
  260. /* map shared memmory to a opened file */ 
  261. void *fd_mmap(int fd, unsigned int filesize
  262.     caddr_t fdmem; 
  263.  
  264.     if ((fdmem = mmap(0, filesize, PROT_READ, 
  265.                     MAP_SHARED, fd, 0)) == MAP_FAILED) { 
  266.         perror(__func__); 
  267.         return (void *) (-1); 
  268.     } 
  269.  
  270.     return fdmem; 
  271.  
  272. /* unmap map memory for framebuffer device */ 
  273. int fb_munmap(void *start, size_t length) 
  274.     return (munmap(start, length)); 
  275.  
  276. /* convert 24bit RGB888 to 16bit RGB565 color format */ 
  277. unsigned short RGB888toRGB565(unsigned char red, 
  278.         unsigned char green, unsigned char blue) 
  279.     unsigned short B = (blue >> 3) & 0x001F; 
  280.     unsigned short G = ((green >> 2) << 5) & 0x07E0; 
  281.     unsigned short R = ((red >> 3) << 11) & 0xF800; 
  282.  
  283.     return (unsigned short) (R | G | B); 
  284.  
  285. /* display a pixel on the framebuffer device. 
  286.  * fbmem is the starting memory of framebuffer, 
  287.  * width and height are dimension of framebuffer, 
  288.  * width and height are dimension of framebuffer, 
  289.  * x and y are the coordinates to display, 
  290.  * color is the pixel's color value. 
  291.  * return 0 if success, otherwise return -1. 
  292.  */ 
  293. int fb_pixel(void *fbmem, int width, int height, 
  294.         int x, int y, unsigned short color) 
  295.     if ((x > width) || (y > height)) 
  296.         return -1; 
  297.  
  298.     unsigned short *dst = ((unsigned short *) fbmem + y * width + x); 
  299.  
  300.     *dst = color; 
  301.     return 0; 

3.LCD驱动

我们用到的是一块东华3.5寸数字屏,型号为WXCAT35-TG3.下面的驱动程序是韦东山老师课堂上现场写的,如下:

  1. #include <linux/module.h> 
  2. #include <linux/kernel.h> 
  3. #include <linux/errno.h> 
  4. #include <linux/string.h> 
  5. #include <linux/mm.h> 
  6. #include <linux/slab.h> 
  7. #include <linux/delay.h> 
  8. #include <linux/interrupt.h> 
  9. #include <linux/fb.h> 
  10. #include <linux/init.h> 
  11. #include <linux/ioport.h> 
  12. #include <linux/dma-mapping.h> 
  13.  
  14. #include <asm/uaccess.h> 
  15. #include <asm/system.h> 
  16. #include <asm/irq.h> 
  17. #include <asm/setup.h> 
  18.  
  19. /* WXCAT35-TG3 */ 
  20. struct s3c_lcd_regs { 
  21.     unsigned long    lcdcon1; 
  22.     unsigned long    lcdcon2; 
  23.     unsigned long    lcdcon3; 
  24.     unsigned long    lcdcon4; 
  25.     unsigned long    lcdcon5; 
  26.     unsigned long    lcdsaddr1; 
  27.     unsigned long    lcdsaddr2; 
  28.     unsigned long    lcdsaddr3; 
  29.     unsigned long    redlut; 
  30.     unsigned long    greenlut; 
  31.     unsigned long    bluelut; 
  32.     unsigned long    reserved[9]; 
  33.     unsigned long    dithmode; 
  34.     unsigned long    tpal; 
  35.     unsigned long    lcdintpnd; 
  36.     unsigned long    lcdsrcpnd; 
  37.     unsigned long    lcdintmsk; 
  38.     unsigned long    lpcsel; 
  39. }; 
  40.  
  41. static u32 colregs[16]; 
  42. static struct fb_info *s3c_fb_info; 
  43. static dma_addr_t s3c_fb_handle; 
  44. static unsigned long fb_va; 
  45.  
  46. /* from pxafb.c */ 
  47. static inline unsigned int chan_to_field(unsigned int chan, struct fb_bitfield *bf) 
  48.     chan &= 0xffff; 
  49.     chan >>= 16 - bf->length; 
  50.     return chan << bf->offset; 
  51.  
  52. static int s3cfb_setcolreg(unsigned regno, 
  53.                    unsigned red, unsigned green, unsigned blue, 
  54.                    unsigned transp, struct fb_info *info) 
  55.     unsigned int val; 
  56.  
  57.     /* dprintk("setcol: regno=%d, rgb=%d,%d,%dn", regno, red, green, blue); */ 
  58.  
  59.     /* true-colour, use pseuo-palette */ 
  60.  
  61.     if (regno < 16) { 
  62.         u32 *pal = s3c_fb_info->pseudo_palette; 
  63.  
  64.         val  = chan_to_field(red,   &s3c_fb_info->var.red); 
  65.         val |= chan_to_field(green, &s3c_fb_info->var.green); 
  66.         val |= chan_to_field(blue,  &s3c_fb_info->var.blue); 
  67.  
  68.         pal[regno] = val; 
  69.     } 
  70.  
  71.     return 0; 
  72.  
  73. static struct fb_ops s3cfb_ops = { 
  74.     .owner        = THIS_MODULE, 
  75. //    .fb_check_var    = clps7111fb_check_var, 
  76. //    .fb_set_par    = clps7111fb_set_par, 
  77. //    .fb_setcolreg    = clps7111fb_setcolreg, 
  78. //    .fb_blank    = clps7111fb_blank, 
  79.  
  80.     .fb_setcolreg    = s3cfb_setcolreg, 
  81.     .fb_fillrect    = cfb_fillrect, 
  82.     .fb_copyarea    = cfb_copyarea, 
  83.     .fb_imageblit    = cfb_imageblit, 
  84. }; 
  85.  
  86. struct s3c_lcd_regs *s3c_lcd_regs; 
  87. static volatile unsigned long *gpccon; 
  88. static volatile unsigned long *gpdcon; 
  89. static volatile unsigned long *gpgcon; 
  90.  
  91. int s3c_lcd_init(void) 
  92.     extern int debug_lcd; 
  93.     /* 1. 分配一个fb_info结构体 */ 
  94.     s3c_fb_info = framebuffer_alloc(0, NULL); 
  95.     printk("%s %dn"__FUNCTION____LINE__); 
  96.  
  97.     /* 2. 设置fb_info结构体 */ 
  98.     /* 
  99.        2.1 设置固定的信息 
  100.        2.2 设置可变的信息 
  101.        2.3 设置操作函数 
  102.     */ 
  103.  
  104.     /* 24BPP(bits per pixel), 会用到4字节, 其中浪费1字节 */ 
  105.     strcpy(s3c_fb_info->fix.id, "WXCAT35-TG3"); 
  106.     // s3c_fb_info->fix.smem_start // frame buffer's physical address 
  107.     s3c_fb_info->fix.smem_len    = 320*240*32/8; 
  108.     s3c_fb_info->fix.type        = FB_TYPE_PACKED_PIXELS; 
  109.     s3c_fb_info->fix.visual      = FB_VISUAL_TRUECOLOR; 
  110.     s3c_fb_info->fix.line_length = 320 * 4; 
  111.  
  112.     s3c_fb_info->var.xres             = 320; 
  113.     s3c_fb_info->var.yres             = 240; 
  114.     s3c_fb_info->var.xres_virtual     = 320; 
  115.     s3c_fb_info->var.yres_virtual     = 240; 
  116.     s3c_fb_info->var.bits_per_pixel   = 32; 
  117.  
  118.     s3c_fb_info->var.red.offset       = 16; 
  119.     s3c_fb_info->var.red.length       = 8; 
  120.  
  121.     s3c_fb_info->var.green.offset     = 8; 
  122.     s3c_fb_info->var.green.length     = 8; 
  123.  
  124.     s3c_fb_info->var.blue.offset      = 0; 
  125.     s3c_fb_info->var.blue.length      = 8; 
  126.  
  127.     //s3c_fb_info->var.activate         = FB_ACTIVATE; 
  128.  
  129.     s3c_fb_info->fbops                = &s3cfb_ops; 
  130.     s3c_fb_info->pseudo_palette       = colregs; 
  131.  
  132.     /* 3. 硬件相关的操作 */ 
  133.     /* 配置GPIO */ 
  134.     gpccon     = ioremap(0x56000020, 4); 
  135.     gpdcon     = ioremap(0x56000030, 4); 
  136.     gpgcon     = ioremap(0x56000060, 4); 
  137.     *gpccon = 0xaaaaaaaa; 
  138.     *gpdcon = 0xaaaaaaaa; 
  139.     *gpgcon |= (3<<8);  /* GPG4 use as lcd_pwren */ 
  140.     printk("%s %dn"__FUNCTION____LINE__); 
  141.  
  142.     s3c_lcd_regs = ioremap(0X4D000000, sizeof(struct s3c_lcd_regs)); 
  143.  
  144.     /* 
  145.      * VCLK = HCLK / [(CLKVAL+1)x2] = 100M/[(CLKVAL+1)x2] = 6.4 
  146.      * CLKVAL = 6.8 = 7 
  147.      * TFT LCD panel 
  148.      * 24bpp 
  149.      */ 
  150.     s3c_lcd_regs->lcdcon1 = (7<<8)|(0<<7)|(3<<5)|(0x0d<<1)|(0<<0); 
  151.     printk("%s %dn"__FUNCTION____LINE__); 
  152.  
  153.     /* VBPD: 电子枪收到VSYNC信号后,"多长时间"才能跳回第1行 
  154.      * VBPD=14,      LCD: tvb=15 
  155.      * LINEVAL=239,  LCD: 有240行 
  156.      * VFPD=11,      LCD: tvf=12  // 发出最后一行数据后,再过多长时间才发出VSYNC 
  157.      * VSPW=2,       LCD: tvp=3   // VSYNC的宽度 
  158.      */ 
  159.     s3c_lcd_regs->lcdcon2 = (14<<24)|(239<<14)|(11<<6)|(2<<0); 
  160.  
  161.     /* HBPD: 电子枪收到HSYNC信号后,"多长时间"才能跳回第1列 
  162.      * HBPD=37,      LCD: thb=38 
  163.      * HORVAL=319,   LCD: 有320行 
  164.      * HFPD=19,      LCD: thf=20  // 发出最后一象素数据后,再过多长时间才发出HSYNC 
  165.      * HSPW=29,      LCD: thp=30   // VSYNC的宽度 
  166.      */ 
  167.     s3c_lcd_regs->lcdcon3 = (37<<19)|(319<<8)|(19<<0); 
  168.     s3c_lcd_regs->lcdcon4 = 29; 
  169.  
  170.     /* bit10:  在VCLK上升沿取数据  
  171.      * bit9 :  VSYNC低电平有效 
  172.      * bit8 :  HSYNC低电平有效 
  173.      * bit5 :  PWREN低电平有效 
  174.      */     
  175.     s3c_lcd_regs->lcdcon5 = (1<<10)|(1<<9)|(1<<8)|(1<<5)|(0<<3); 
  176.  
  177.     /* 分配frame buffer */ 
  178.     fb_va = (unsigned long)dma_alloc_writecombine(NULL, s3c_fb_info->fix.smem_len, &s3c_fb_handle, GFP_KERNEL); 
  179.  
  180.     printk("fb_va = 0x%x, pa = 0x%xn", fb_va, s3c_fb_handle); 
  181.     s3c_fb_info->fix.smem_start = s3c_fb_handle; 
  182.     s3c_fb_info->screen_base    = fb_va; 
  183.  
  184.     /* 把framebuffer的地址告诉LCD控制器 */ 
  185.     s3c_lcd_regs->lcdsaddr1 = (s3c_fb_info->fix.smem_start >> 1); 
  186.     s3c_lcd_regs->lcdsaddr2 = ((s3c_fb_info->fix.smem_start+320*240*4) >> 1) & 0x1fffff; 
  187.     s3c_lcd_regs->lcdsaddr3 = 320*4/2; 
  188.  
  189.     /* 使能LCD */ 
  190.     s3c_lcd_regs->lcdcon1 |= (1<<0); 
  191.  
  192.     /* 4. register_framebuffer */ 
  193.     printk("%s %dn"__FUNCTION____LINE__); 
  194.     //debug_lcd = 1; 
  195.     register_framebuffer(s3c_fb_info); 
  196.     printk("%s %dn"__FUNCTION____LINE__); 
  197.  
  198.     return 0;  
  199.  
  200. void s3c_lcd_exit(void) 
  201.     unregister_framebuffer(s3c_fb_info); 
  202.     dma_free_writecombine(NULL, s3c_fb_info->fix.smem_len, fb_va, s3c_fb_handle); 
  203.     iounmap(s3c_lcd_regs); 
  204.     iounmap(gpccon); 
  205.     iounmap(gpdcon); 
  206.     iounmap(gpgcon); 
  207.     framebuffer_release(s3c_fb_info); 
  208.  
  209. module_init(s3c_lcd_init); 
  210. module_exit(s3c_lcd_exit); 
  211.  
  212. MODULE_LICENSE("GPL"); 

然后把它加入到内核,以静态加载的模式启动.最后,可以把读取内存jpeg格式数据输出到LCD屏的这部分整合到mjpg-stream或servfox去,就实现了采集图像本地显示了.

Tags: framebuffer 嵌入式Linux

分享到: