fb.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:20k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_FB_H
  2. #define _LINUX_FB_H
  3. #include <linux/tty.h>
  4. #include <asm/types.h>
  5. /* Definitions of frame buffers */
  6. #define FB_MAJOR 29
  7. #define FB_MAX 32 /* sufficient for now */
  8. /* ioctls
  9.    0x46 is 'F' */
  10. #define FBIOGET_VSCREENINFO 0x4600
  11. #define FBIOPUT_VSCREENINFO 0x4601
  12. #define FBIOGET_FSCREENINFO 0x4602
  13. #define FBIOGETCMAP 0x4604
  14. #define FBIOPUTCMAP 0x4605
  15. #define FBIOPAN_DISPLAY 0x4606
  16. /* 0x4607-0x460B are defined below */
  17. /* #define FBIOGET_MONITORSPEC 0x460C */
  18. /* #define FBIOPUT_MONITORSPEC 0x460D */
  19. /* #define FBIOSWITCH_MONIBIT 0x460E */
  20. #define FBIOGET_CON2FBMAP 0x460F
  21. #define FBIOPUT_CON2FBMAP 0x4610
  22. #define FBIOBLANK 0x4611 /* arg: 0 or vesa level + 1 */
  23. #define FBIOGET_VBLANK _IOR('F', 0x12, struct fb_vblank)
  24. #define FBIO_ALLOC              0x4613
  25. #define FBIO_FREE               0x4614
  26. #define FBIOGET_GLYPH           0x4615
  27. #define FBIOGET_HWCINFO         0x4616
  28. #define FBIOPUT_MODEINFO        0x4617
  29. #define FBIOGET_DISPINFO        0x4618
  30. #define FB_TYPE_PACKED_PIXELS 0 /* Packed Pixels */
  31. #define FB_TYPE_PLANES 1 /* Non interleaved planes */
  32. #define FB_TYPE_INTERLEAVED_PLANES 2 /* Interleaved planes */
  33. #define FB_TYPE_TEXT 3 /* Text/attributes */
  34. #define FB_TYPE_VGA_PLANES 4 /* EGA/VGA planes */
  35. #define FB_AUX_TEXT_MDA 0 /* Monochrome text */
  36. #define FB_AUX_TEXT_CGA 1 /* CGA/EGA/VGA Color text */
  37. #define FB_AUX_TEXT_S3_MMIO 2 /* S3 MMIO fasttext */
  38. #define FB_AUX_TEXT_MGA_STEP16 3 /* MGA Millenium I: text, attr, 14 reserved bytes */
  39. #define FB_AUX_TEXT_MGA_STEP8 4 /* other MGAs:      text, attr,  6 reserved bytes */
  40. #define FB_AUX_VGA_PLANES_VGA4 0 /* 16 color planes (EGA/VGA) */
  41. #define FB_AUX_VGA_PLANES_CFB4 1 /* CFB4 in planes (VGA) */
  42. #define FB_AUX_VGA_PLANES_CFB8 2 /* CFB8 in planes (VGA) */
  43. #define FB_VISUAL_MONO01 0 /* Monochr. 1=Black 0=White */
  44. #define FB_VISUAL_MONO10 1 /* Monochr. 1=White 0=Black */
  45. #define FB_VISUAL_TRUECOLOR 2 /* True color */
  46. #define FB_VISUAL_PSEUDOCOLOR 3 /* Pseudo color (like atari) */
  47. #define FB_VISUAL_DIRECTCOLOR 4 /* Direct color */
  48. #define FB_VISUAL_STATIC_PSEUDOCOLOR 5 /* Pseudo color readonly */
  49. #define FB_ACCEL_NONE 0 /* no hardware accelerator */
  50. #define FB_ACCEL_ATARIBLITT 1 /* Atari Blitter */
  51. #define FB_ACCEL_AMIGABLITT 2 /* Amiga Blitter                */
  52. #define FB_ACCEL_S3_TRIO64 3 /* Cybervision64 (S3 Trio64)    */
  53. #define FB_ACCEL_NCR_77C32BLT 4 /* RetinaZ3 (NCR 77C32BLT)      */
  54. #define FB_ACCEL_S3_VIRGE 5 /* Cybervision64/3D (S3 ViRGE) */
  55. #define FB_ACCEL_ATI_MACH64GX 6 /* ATI Mach 64GX family */
  56. #define FB_ACCEL_DEC_TGA 7 /* DEC 21030 TGA */
  57. #define FB_ACCEL_ATI_MACH64CT 8 /* ATI Mach 64CT family */
  58. #define FB_ACCEL_ATI_MACH64VT 9 /* ATI Mach 64CT family VT class */
  59. #define FB_ACCEL_ATI_MACH64GT 10 /* ATI Mach 64CT family GT class */
  60. #define FB_ACCEL_SUN_CREATOR 11 /* Sun Creator/Creator3D */
  61. #define FB_ACCEL_SUN_CGSIX 12 /* Sun cg6 */
  62. #define FB_ACCEL_SUN_LEO 13 /* Sun leo/zx */
  63. #define FB_ACCEL_IMS_TWINTURBO 14 /* IMS Twin Turbo */
  64. #define FB_ACCEL_3DLABS_PERMEDIA2 15 /* 3Dlabs Permedia 2 */
  65. #define FB_ACCEL_MATROX_MGA2064W 16 /* Matrox MGA2064W (Millenium) */
  66. #define FB_ACCEL_MATROX_MGA1064SG 17 /* Matrox MGA1064SG (Mystique) */
  67. #define FB_ACCEL_MATROX_MGA2164W 18 /* Matrox MGA2164W (Millenium II) */
  68. #define FB_ACCEL_MATROX_MGA2164W_AGP 19 /* Matrox MGA2164W (Millenium II) */
  69. #define FB_ACCEL_MATROX_MGAG100 20 /* Matrox G100 (Productiva G100) */
  70. #define FB_ACCEL_MATROX_MGAG200 21 /* Matrox G200 (Myst, Mill, ...) */
  71. #define FB_ACCEL_SUN_CG14 22 /* Sun cgfourteen  */
  72. #define FB_ACCEL_SUN_BWTWO 23 /* Sun bwtwo */
  73. #define FB_ACCEL_SUN_CGTHREE 24 /* Sun cgthree */
  74. #define FB_ACCEL_SUN_TCX 25 /* Sun tcx */
  75. #define FB_ACCEL_MATROX_MGAG400 26 /* Matrox G400 */
  76. #define FB_ACCEL_NV3 27 /* nVidia RIVA 128              */
  77. #define FB_ACCEL_NV4 28 /* nVidia RIVA TNT */
  78. #define FB_ACCEL_NV5 29 /* nVidia RIVA TNT2 */
  79. #define FB_ACCEL_CT_6555x 30 /* C&T 6555x */
  80. #define FB_ACCEL_3DFX_BANSHEE 31 /* 3Dfx Banshee */
  81. #define FB_ACCEL_ATI_RAGE128 32 /* ATI Rage128 family */
  82. #define FB_ACCEL_IGS_CYBER2000 33 /* CyberPro 2000 */
  83. #define FB_ACCEL_IGS_CYBER2010 34 /* CyberPro 2010 */
  84. #define FB_ACCEL_IGS_CYBER5000 35 /* CyberPro 5000 */
  85. #define FB_ACCEL_SIS_GLAMOUR    36 /* SiS 300/630/540              */
  86. #define FB_ACCEL_3DLABS_PERMEDIA3 37 /* 3Dlabs Permedia 3 */
  87. #define FB_ACCEL_ATI_RADEON 38 /* ATI Radeon family */
  88. #define FB_ACCEL_NEOMAGIC_NM2070 90 /* NeoMagic NM2070              */
  89. #define FB_ACCEL_NEOMAGIC_NM2090 91 /* NeoMagic NM2090              */
  90. #define FB_ACCEL_NEOMAGIC_NM2093 92 /* NeoMagic NM2093              */
  91. #define FB_ACCEL_NEOMAGIC_NM2097 93 /* NeoMagic NM2097              */
  92. #define FB_ACCEL_NEOMAGIC_NM2160 94 /* NeoMagic NM2160              */
  93. #define FB_ACCEL_NEOMAGIC_NM2200 95 /* NeoMagic NM2200              */
  94. #define FB_ACCEL_NEOMAGIC_NM2230 96 /* NeoMagic NM2230              */
  95. #define FB_ACCEL_NEOMAGIC_NM2360 97 /* NeoMagic NM2360              */
  96. #define FB_ACCEL_NEOMAGIC_NM2380 98 /* NeoMagic NM2380              */
  97. struct fb_fix_screeninfo {
  98. char id[16]; /* identification string eg "TT Builtin" */
  99. unsigned long smem_start; /* Start of frame buffer mem */
  100. /* (physical address) */
  101. __u32 smem_len; /* Length of frame buffer mem */
  102. __u32 type; /* see FB_TYPE_* */
  103. __u32 type_aux; /* Interleave for interleaved Planes */
  104. __u32 visual; /* see FB_VISUAL_* */ 
  105. __u16 xpanstep; /* zero if no hardware panning  */
  106. __u16 ypanstep; /* zero if no hardware panning  */
  107. __u16 ywrapstep; /* zero if no hardware ywrap    */
  108. __u32 line_length; /* length of a line in bytes    */
  109. unsigned long mmio_start; /* Start of Memory Mapped I/O   */
  110. /* (physical address) */
  111. __u32 mmio_len; /* Length of Memory Mapped I/O  */
  112. __u32 accel; /* Type of acceleration available */
  113. __u16 reserved[3]; /* Reserved for future compatibility */
  114. };
  115. /* Interpretation of offset for color fields: All offsets are from the right,
  116.  * inside a "pixel" value, which is exactly 'bits_per_pixel' wide (means: you
  117.  * can use the offset as right argument to <<). A pixel afterwards is a bit
  118.  * stream and is written to video memory as that unmodified. This implies
  119.  * big-endian byte order if bits_per_pixel is greater than 8.
  120.  */
  121. struct fb_bitfield {
  122. __u32 offset; /* beginning of bitfield */
  123. __u32 length; /* length of bitfield */
  124. __u32 msb_right; /* != 0 : Most significant bit is */ 
  125. /* right */ 
  126. };
  127. #define FB_NONSTD_HAM 1 /* Hold-And-Modify (HAM)        */
  128. #define FB_ACTIVATE_NOW 0 /* set values immediately (or vbl)*/
  129. #define FB_ACTIVATE_NXTOPEN 1 /* activate on next open */
  130. #define FB_ACTIVATE_TEST 2 /* don't set, round up impossible */
  131. #define FB_ACTIVATE_MASK       15
  132. /* values */
  133. #define FB_ACTIVATE_VBL        16 /* activate values on next vbl  */
  134. #define FB_CHANGE_CMAP_VBL     32 /* change colormap on vbl */
  135. #define FB_ACTIVATE_ALL        64 /* change all VCs on this fb */
  136. #define FB_ACCELF_TEXT 1 /* text mode acceleration */
  137. #define FB_SYNC_HOR_HIGH_ACT 1 /* horizontal sync high active */
  138. #define FB_SYNC_VERT_HIGH_ACT 2 /* vertical sync high active */
  139. #define FB_SYNC_EXT 4 /* external sync */
  140. #define FB_SYNC_COMP_HIGH_ACT 8 /* composite sync high active   */
  141. #define FB_SYNC_BROADCAST 16 /* broadcast video timings      */
  142. /* vtotal = 144d/288n/576i => PAL  */
  143. /* vtotal = 121d/242n/484i => NTSC */
  144. #define FB_SYNC_ON_GREEN 32 /* sync on green */
  145. #define FB_VMODE_NONINTERLACED  0 /* non interlaced */
  146. #define FB_VMODE_INTERLACED 1 /* interlaced */
  147. #define FB_VMODE_DOUBLE 2 /* double scan */
  148. #define FB_VMODE_MASK 255
  149. #define FB_VMODE_YWRAP 256 /* ywrap instead of panning     */
  150. #define FB_VMODE_SMOOTH_XPAN 512 /* smooth xpan possible (internally used) */
  151. #define FB_VMODE_CONUPDATE 512 /* don't update x/yoffset */
  152. struct fb_var_screeninfo {
  153. __u32 xres; /* visible resolution */
  154. __u32 yres;
  155. __u32 xres_virtual; /* virtual resolution */
  156. __u32 yres_virtual;
  157. __u32 xoffset; /* offset from virtual to visible */
  158. __u32 yoffset; /* resolution */
  159. __u32 bits_per_pixel; /* guess what */
  160. __u32 grayscale; /* != 0 Graylevels instead of colors */
  161. struct fb_bitfield red; /* bitfield in fb mem if true color, */
  162. struct fb_bitfield green; /* else only length is significant */
  163. struct fb_bitfield blue;
  164. struct fb_bitfield transp; /* transparency */
  165. __u32 nonstd; /* != 0 Non standard pixel format */
  166. __u32 activate; /* see FB_ACTIVATE_* */
  167. __u32 height; /* height of picture in mm    */
  168. __u32 width; /* width of picture in mm     */
  169. __u32 accel_flags; /* acceleration flags (hints) */
  170. /* Timing: All values in pixclocks, except pixclock (of course) */
  171. __u32 pixclock; /* pixel clock in ps (pico seconds) */
  172. __u32 left_margin; /* time from sync to picture */
  173. __u32 right_margin; /* time from picture to sync */
  174. __u32 upper_margin; /* time from sync to picture */
  175. __u32 lower_margin;
  176. __u32 hsync_len; /* length of horizontal sync */
  177. __u32 vsync_len; /* length of vertical sync */
  178. __u32 sync; /* see FB_SYNC_* */
  179. __u32 vmode; /* see FB_VMODE_* */
  180. __u32 reserved[6]; /* Reserved for future compatibility */
  181. };
  182. struct fb_cmap {
  183. __u32 start; /* First entry */
  184. __u32 len; /* Number of entries */
  185. __u16 *red; /* Red values */
  186. __u16 *green;
  187. __u16 *blue;
  188. __u16 *transp; /* transparency, can be NULL */
  189. };
  190. struct fb_con2fbmap {
  191. __u32 console;
  192. __u32 framebuffer;
  193. };
  194. /* VESA Blanking Levels */
  195. #define VESA_NO_BLANKING        0
  196. #define VESA_VSYNC_SUSPEND      1
  197. #define VESA_HSYNC_SUSPEND      2
  198. #define VESA_POWERDOWN          3
  199. struct fb_monspecs {
  200. __u32 hfmin; /* hfreq lower limit (Hz) */
  201. __u32 hfmax;  /* hfreq upper limit (Hz) */
  202. __u16 vfmin; /* vfreq lower limit (Hz) */
  203. __u16 vfmax; /* vfreq upper limit (Hz) */
  204. unsigned dpms : 1; /* supports DPMS */
  205. };
  206. #define FB_VBLANK_VBLANKING 0x001 /* currently in a vertical blank */
  207. #define FB_VBLANK_HBLANKING 0x002 /* currently in a horizontal blank */
  208. #define FB_VBLANK_HAVE_VBLANK 0x004 /* vertical blanks can be detected */
  209. #define FB_VBLANK_HAVE_HBLANK 0x008 /* horizontal blanks can be detected */
  210. #define FB_VBLANK_HAVE_COUNT 0x010 /* global retrace counter is available */
  211. #define FB_VBLANK_HAVE_VCOUNT 0x020 /* the vcount field is valid */
  212. #define FB_VBLANK_HAVE_HCOUNT 0x040 /* the hcount field is valid */
  213. #define FB_VBLANK_VSYNCING 0x080 /* currently in a vsync */
  214. #define FB_VBLANK_HAVE_VSYNC 0x100 /* verical syncs can be detected */
  215. struct fb_vblank {
  216. __u32 flags; /* FB_VBLANK flags */
  217. __u32 count; /* counter of retraces since boot */
  218. __u32 vcount; /* current scanline position */
  219. __u32 hcount; /* current scandot position */
  220. __u32 reserved[4]; /* reserved for future compatibility */
  221. };
  222. #ifdef __KERNEL__
  223. #if 1 /* to go away in 2.5.0 */
  224. extern int GET_FB_IDX(kdev_t rdev);
  225. #else
  226. #define GET_FB_IDX(node) (MINOR(node))
  227. #endif
  228. #include <linux/fs.h>
  229. #include <linux/init.h>
  230. #include <linux/devfs_fs_kernel.h>
  231. struct fb_info;
  232. struct fb_info_gen;
  233. struct vm_area_struct;
  234. struct file;
  235.     /*
  236.      *  Frame buffer operations
  237.      */
  238. struct fb_ops {
  239.     /* open/release and usage marking */
  240.     struct module *owner;
  241.     int (*fb_open)(struct fb_info *info, int user);
  242.     int (*fb_release)(struct fb_info *info, int user);
  243.     /* get non settable parameters */
  244.     int (*fb_get_fix)(struct fb_fix_screeninfo *fix, int con,
  245.       struct fb_info *info); 
  246.     /* get settable parameters */
  247.     int (*fb_get_var)(struct fb_var_screeninfo *var, int con,
  248.       struct fb_info *info);
  249.     /* set settable parameters */
  250.     int (*fb_set_var)(struct fb_var_screeninfo *var, int con,
  251.       struct fb_info *info);
  252.     /* get colormap */
  253.     int (*fb_get_cmap)(struct fb_cmap *cmap, int kspc, int con,
  254.        struct fb_info *info);
  255.     /* set colormap */
  256.     int (*fb_set_cmap)(struct fb_cmap *cmap, int kspc, int con,
  257.        struct fb_info *info);
  258.     /* pan display (optional) */
  259.     int (*fb_pan_display)(struct fb_var_screeninfo *var, int con,
  260.   struct fb_info *info);
  261.     /* perform fb specific ioctl (optional) */
  262.     int (*fb_ioctl)(struct inode *inode, struct file *file, unsigned int cmd,
  263.     unsigned long arg, int con, struct fb_info *info);
  264.     /* perform fb specific mmap */
  265.     int (*fb_mmap)(struct fb_info *info, struct file *file, struct vm_area_struct *vma);
  266.     /* switch to/from raster image mode */
  267.     int (*fb_rasterimg)(struct fb_info *info, int start);
  268. };
  269. struct fb_info {
  270.    char modename[40]; /* default video mode */
  271.    kdev_t node;
  272.    int flags;
  273.    int open;                            /* Has this been open already ? */
  274. #define FBINFO_FLAG_MODULE 1 /* Low-level driver is a module */
  275.    struct fb_var_screeninfo var;        /* Current var */
  276.    struct fb_fix_screeninfo fix;        /* Current fix */
  277.    struct fb_monspecs monspecs;         /* Current Monitor specs */
  278.    struct fb_cmap cmap;                 /* Current cmap */
  279.    struct fb_ops *fbops;
  280.    char *screen_base;                   /* Virtual address */
  281.    struct display *disp; /* initial display variable */
  282.    struct vc_data *display_fg; /* Console visible on this display */
  283.    char fontname[40]; /* default font name */
  284.    devfs_handle_t devfs_handle;         /* Devfs handle for new name         */
  285.    devfs_handle_t devfs_lhandle;        /* Devfs handle for compat. symlink  */
  286.    int (*changevar)(int); /* tell console var has changed */
  287.    int (*switch_con)(int, struct fb_info*);
  288. /* tell fb to switch consoles */
  289.    int (*updatevar)(int, struct fb_info*);
  290. /* tell fb to update the vars */
  291.    void (*blank)(int, struct fb_info*); /* tell fb to (un)blank the screen */
  292. /* arg = 0: unblank */
  293. /* arg > 0: VESA level (arg-1) */
  294.    void *pseudo_palette;                /* Fake palette of 16 colors and 
  295.    the cursor's color for non
  296.                                            palette mode */
  297.    /* From here on everything is device dependent */
  298.    void *par;
  299. };
  300. #ifdef MODULE
  301. #define FBINFO_FLAG_DEFAULT FBINFO_FLAG_MODULE
  302. #else
  303. #define FBINFO_FLAG_DEFAULT 0
  304. #endif
  305.     /*
  306.      *  This structure abstracts from the underlying hardware. It is not
  307.      *  mandatory but used by the `generic' frame buffer operations.
  308.      *  Read drivers/video/skeletonfb.c for more information.
  309.      */
  310. struct fbgen_hwswitch {
  311.     void (*detect)(void);
  312.     int (*encode_fix)(struct fb_fix_screeninfo *fix, const void *par,
  313.       struct fb_info_gen *info);
  314.     int (*decode_var)(const struct fb_var_screeninfo *var, void *par,
  315.       struct fb_info_gen *info);
  316.     int (*encode_var)(struct fb_var_screeninfo *var, const void *par,
  317.       struct fb_info_gen *info);
  318.     void (*get_par)(void *par, struct fb_info_gen *info);
  319.     void (*set_par)(const void *par, struct fb_info_gen *info);
  320.     int (*getcolreg)(unsigned regno, unsigned *red, unsigned *green,
  321.      unsigned *blue, unsigned *transp, struct fb_info *info);
  322.     int (*setcolreg)(unsigned regno, unsigned red, unsigned green,
  323.      unsigned blue, unsigned transp, struct fb_info *info);
  324.     int (*pan_display)(const struct fb_var_screeninfo *var,
  325.        struct fb_info_gen *info);
  326.     int (*blank)(int blank_mode, struct fb_info_gen *info);
  327.     void (*set_disp)(const void *par, struct display *disp,
  328.      struct fb_info_gen *info);
  329. };
  330. struct fb_info_gen {
  331.     struct fb_info info;
  332.     /* Entries for a generic frame buffer device */
  333.     /* Yes, this starts looking like C++ */
  334.     u_int parsize;
  335.     struct fbgen_hwswitch *fbhw;
  336.    /* From here on everything is device dependent */
  337. };
  338.     /*
  339.      *  `Generic' versions of the frame buffer device operations
  340.      */
  341. extern int fbgen_get_fix(struct fb_fix_screeninfo *fix, int con,
  342.  struct fb_info *info);
  343. extern int fbgen_get_var(struct fb_var_screeninfo *var, int con,
  344.  struct fb_info *info);
  345. extern int fbgen_set_var(struct fb_var_screeninfo *var, int con,
  346.  struct fb_info *info);
  347. extern int fbgen_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  348.   struct fb_info *info);
  349. extern int fbgen_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  350.   struct fb_info *info);
  351. extern int fbgen_pan_display(struct fb_var_screeninfo *var, int con,
  352.      struct fb_info *info);
  353.     /*
  354.      *  Helper functions
  355.      */
  356. extern int fbgen_do_set_var(struct fb_var_screeninfo *var, int isactive,
  357.     struct fb_info_gen *info);
  358. extern void fbgen_set_disp(int con, struct fb_info_gen *info);
  359. extern void fbgen_install_cmap(int con, struct fb_info_gen *info);
  360. extern int fbgen_update_var(int con, struct fb_info *info);
  361. extern int fbgen_switch(int con, struct fb_info *info);
  362. extern void fbgen_blank(int blank, struct fb_info *info);
  363. /* drivers/video/fbmem.c */
  364. extern int register_framebuffer(struct fb_info *fb_info);
  365. extern int unregister_framebuffer(struct fb_info *fb_info);
  366. extern int num_registered_fb;
  367. extern struct fb_info *registered_fb[FB_MAX];
  368. /* drivers/video/fbmon.c */
  369. extern int fbmon_valid_timings(u_int pixclock, u_int htotal, u_int vtotal,
  370.        const struct fb_info *fb_info);
  371. extern int fbmon_dpms(const struct fb_info *fb_info);
  372. /* drivers/video/fbcmap.c */
  373. extern int fb_alloc_cmap(struct fb_cmap *cmap, int len, int transp);
  374. extern void fb_copy_cmap(struct fb_cmap *from, struct fb_cmap *to,
  375.  int fsfromto);
  376. extern int fb_get_cmap(struct fb_cmap *cmap, int kspc,
  377.        int (*getcolreg)(u_int, u_int *, u_int *, u_int *,
  378. u_int *, struct fb_info *),
  379.        struct fb_info *fb_info);
  380. extern int fb_set_cmap(struct fb_cmap *cmap, int kspc,
  381.        int (*setcolreg)(u_int, u_int, u_int, u_int, u_int,
  382. struct fb_info *),
  383.        struct fb_info *fb_info);
  384. extern struct fb_cmap *fb_default_cmap(int len);
  385. extern void fb_invert_cmaps(void);
  386. struct fb_videomode {
  387.     const char *name; /* optional */
  388.     u32 refresh; /* optional */
  389.     u32 xres;
  390.     u32 yres;
  391.     u32 pixclock;
  392.     u32 left_margin;
  393.     u32 right_margin;
  394.     u32 upper_margin;
  395.     u32 lower_margin;
  396.     u32 hsync_len;
  397.     u32 vsync_len;
  398.     u32 sync;
  399.     u32 vmode;
  400. };
  401. #ifdef MODULE
  402. static inline int fb_find_mode(struct fb_var_screeninfo *var,
  403.        struct fb_info *info, const char *mode_option,
  404.        const struct fb_videomode *db,
  405.        unsigned int dbsize,
  406.        const struct fb_videomode *default_mode,
  407.        unsigned int default_bpp)
  408. {
  409.     extern int __fb_try_mode(struct fb_var_screeninfo *var,
  410.           struct fb_info *info,
  411.      const struct fb_videomode *mode,
  412.      unsigned int bpp);
  413.     /*
  414.      *  FIXME: How to make the compiler optimize vga640x400 away if
  415.      *         default_mode is non-NULL?
  416.      */
  417.     static const struct fb_videomode vga640x400 = {
  418. /* 640x400 @ 70 Hz, 31.5 kHz hsync */
  419. NULL, 70, 640, 400, 39721, 40, 24, 39, 9, 96, 2,
  420. 0, FB_VMODE_NONINTERLACED
  421.     };
  422.     if (!default_mode)
  423. default_mode = &vga640x400;
  424.     if (!default_bpp)
  425. default_bpp = 8;
  426.     return __fb_try_mode(var, info, default_mode, default_bpp);
  427. }
  428. #else
  429. extern int __init fb_find_mode(struct fb_var_screeninfo *var,
  430.        struct fb_info *info, const char *mode_option,
  431.        const struct fb_videomode *db,
  432.        unsigned int dbsize,
  433.        const struct fb_videomode *default_mode,
  434.        unsigned int default_bpp);
  435. #endif
  436. #endif /* __KERNEL__ */
  437. #if 1
  438. #define FBCMD_GET_CURRENTPAR 0xDEAD0005
  439. #define FBCMD_SET_CURRENTPAR 0xDEAD8005
  440. #endif
  441. #if 1 /* Preliminary */
  442.    /*
  443.     *    Hardware Cursor
  444.     */
  445. #define FBIOGET_FCURSORINFO     0x4607
  446. #define FBIOGET_VCURSORINFO     0x4608
  447. #define FBIOPUT_VCURSORINFO     0x4609
  448. #define FBIOGET_CURSORSTATE     0x460A
  449. #define FBIOPUT_CURSORSTATE     0x460B
  450. struct fb_fix_cursorinfo {
  451. __u16 crsr_width; /* width and height of the cursor in */
  452. __u16 crsr_height; /* pixels (zero if no cursor) */
  453. __u16 crsr_xsize; /* cursor size in display pixels */
  454. __u16 crsr_ysize;
  455. __u16 crsr_color1; /* colormap entry for cursor color1 */
  456. __u16 crsr_color2; /* colormap entry for cursor color2 */
  457. };
  458. struct fb_var_cursorinfo {
  459. __u16 width;
  460. __u16 height;
  461. __u16 xspot;
  462. __u16 yspot;
  463. __u8 data[1]; /* field with [height][width]        */
  464. };
  465. struct fb_cursorstate {
  466. __s16 xoffset;
  467. __s16 yoffset;
  468. __u16 mode;
  469. };
  470. #define FB_CURSOR_OFF 0
  471. #define FB_CURSOR_ON 1
  472. #define FB_CURSOR_FLASH 2
  473. #endif /* Preliminary */
  474. #endif /* _LINUX_FB_H */