fbcon-vga-planes.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  FBcon low-level driver for VGA 4-plane modes
  3.  */
  4. #ifndef _VIDEO_FBCON_VGA_PLANES_H
  5. #define _VIDEO_FBCON_VGA_PLANES_H
  6. #include <linux/config.h>
  7. #ifdef MODULE
  8. #if defined(CONFIG_FBCON_VGA_PLANES) || defined(CONFIG_FBCON_VGA_PLANES_MODULE)
  9. #define FBCON_HAS_VGA_PLANES
  10. #endif
  11. #else
  12. #if defined(CONFIG_FBCON_VGA_PLANES)
  13. #define FBCON_HAS_VGA_PLANES
  14. #endif
  15. #endif
  16. extern struct display_switch fbcon_vga_planes;
  17. extern struct display_switch fbcon_ega_planes;
  18. extern void fbcon_vga_planes_setup(struct display *p);
  19. extern void fbcon_vga_planes_bmove(struct display *p, int sy, int sx, int dy, int dx,
  20.    int height, int width);
  21. extern void fbcon_vga_planes_clear(struct vc_data *conp, struct display *p, int sy,
  22.    int sx, int height, int width);
  23. extern void fbcon_vga_planes_putc(struct vc_data *conp, struct display *p, int c,
  24.   int yy, int xx);
  25. extern void fbcon_ega_planes_putc(struct vc_data *conp, struct display *p, int c,
  26.   int yy, int xx);
  27. extern void fbcon_vga_planes_putcs(struct vc_data *conp, struct display *p,
  28.    const unsigned short *s, int count, int yy, int xx);
  29. extern void fbcon_ega_planes_putcs(struct vc_data *conp, struct display *p,
  30.    const unsigned short *s, int count, int yy, int xx);
  31. extern void fbcon_vga_planes_revc(struct display *p, int xx, int yy);
  32. #endif /* _VIDEO_FBCON_VGA_PLANES_H */