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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __LINUX_FBIO_H
  2. #define __LINUX_FBIO_H
  3. /* Constants used for fbio SunOS compatibility */
  4. /* (C) 1996 Miguel de Icaza */
  5. /* Frame buffer types */
  6. #define FBTYPE_NOTYPE           -1
  7. #define FBTYPE_SUN1BW           0   /* mono */
  8. #define FBTYPE_SUN1COLOR        1 
  9. #define FBTYPE_SUN2BW           2 
  10. #define FBTYPE_SUN2COLOR        3 
  11. #define FBTYPE_SUN2GP           4 
  12. #define FBTYPE_SUN5COLOR        5 
  13. #define FBTYPE_SUN3COLOR        6 
  14. #define FBTYPE_MEMCOLOR         7 
  15. #define FBTYPE_SUN4COLOR        8 
  16.  
  17. #define FBTYPE_NOTSUN1          9 
  18. #define FBTYPE_NOTSUN2          10
  19. #define FBTYPE_NOTSUN3          11
  20.  
  21. #define FBTYPE_SUNFAST_COLOR    12  /* cg6 */
  22. #define FBTYPE_SUNROP_COLOR     13
  23. #define FBTYPE_SUNFB_VIDEO      14
  24. #define FBTYPE_SUNGIFB          15
  25. #define FBTYPE_SUNGPLAS         16
  26. #define FBTYPE_SUNGP3           17
  27. #define FBTYPE_SUNGT            18
  28. #define FBTYPE_SUNLEO           19      /* zx Leo card */
  29. #define FBTYPE_MDICOLOR         20      /* cg14 */
  30. #define FBTYPE_TCXCOLOR 21 /* SUNW,tcx card */
  31. #define FBTYPE_LASTPLUSONE      21 /* This is not last + 1 in fact... */
  32. /* Does not seem to be listed in the Sun file either */
  33. #define FBTYPE_CREATOR          22
  34. #define FBTYPE_PCI_IGA1682 23
  35. #define FBTYPE_P9100COLOR 24
  36. #define FBTYPE_PCI_GENERIC 1000
  37. #define FBTYPE_PCI_MACH64 1001
  38. /* fbio ioctls */
  39. /* Returned by FBIOGTYPE */
  40. struct  fbtype {
  41.         int     fb_type;        /* fb type, see above */
  42.         int     fb_height;      /* pixels */
  43.         int     fb_width;       /* pixels */
  44.         int     fb_depth;
  45.         int     fb_cmsize;      /* color map entries */
  46.         int     fb_size;        /* fb size in bytes */
  47. };
  48. #define FBIOGTYPE _IOR('F', 0, struct fbtype)
  49. struct  fbcmap {
  50.         int             index;          /* first element (0 origin) */
  51.         int             count;
  52.         unsigned char   *red;
  53.         unsigned char   *green;
  54.         unsigned char   *blue;
  55. };
  56. #ifdef __KERNEL__
  57. #define FBIOPUTCMAP_SPARC _IOW('F', 3, struct fbcmap)
  58. #define FBIOGETCMAP_SPARC _IOW('F', 4, struct fbcmap)
  59. #else
  60. #define FBIOPUTCMAP _IOW('F', 3, struct fbcmap)
  61. #define FBIOGETCMAP _IOW('F', 4, struct fbcmap)
  62. #endif
  63. /* # of device specific values */
  64. #define FB_ATTR_NDEVSPECIFIC    8
  65. /* # of possible emulations */
  66. #define FB_ATTR_NEMUTYPES       4
  67.  
  68. struct fbsattr {
  69.         int     flags;
  70.         int     emu_type; /* -1 if none */
  71.         int     dev_specific[FB_ATTR_NDEVSPECIFIC];
  72. };
  73.  
  74. struct fbgattr {
  75.         int     real_type; /* real frame buffer type */
  76.         int     owner; /* unknown */
  77.         struct fbtype fbtype; /* real frame buffer fbtype */
  78.         struct fbsattr sattr;   
  79.         int     emu_types[FB_ATTR_NEMUTYPES]; /* supported emulations */
  80. };
  81. #define FBIOSATTR  _IOW('F', 5, struct fbgattr) /* Unsupported: */
  82. #define FBIOGATTR  _IOR('F', 6, struct fbgattr) /* supported */
  83. #define FBIOSVIDEO _IOW('F', 7, int)
  84. #define FBIOGVIDEO _IOR('F', 8, int)
  85. /* Cursor position */
  86. struct fbcurpos {
  87. #ifdef __KERNEL__
  88. short fbx, fby;
  89. #else
  90.         short x, y;
  91. #endif
  92. };
  93. /* Cursor operations */
  94. #define FB_CUR_SETCUR   0x01 /* Enable/disable cursor display */
  95. #define FB_CUR_SETPOS   0x02 /* set cursor position */
  96. #define FB_CUR_SETHOT   0x04 /* set cursor hotspot */
  97. #define FB_CUR_SETCMAP  0x08 /* set color map for the cursor */
  98. #define FB_CUR_SETSHAPE 0x10 /* set shape */
  99. #define FB_CUR_SETALL   0x1F /* all of the above */
  100. struct fbcursor {
  101.         short set;              /* what to set, choose from the list above */
  102.         short enable;           /* cursor on/off */
  103.         struct fbcurpos pos;    /* cursor position */
  104.         struct fbcurpos hot;    /* cursor hot spot */
  105.         struct fbcmap cmap;     /* color map info */
  106.         struct fbcurpos size;   /* cursor bit map size */
  107.         char *image;            /* cursor image bits */
  108.         char *mask;             /* cursor mask bits */
  109. };
  110. /* set/get cursor attributes/shape */
  111. #define FBIOSCURSOR     _IOW('F', 24, struct fbcursor)
  112. #define FBIOGCURSOR     _IOWR('F', 25, struct fbcursor)
  113.  
  114. /* set/get cursor position */
  115. #define FBIOSCURPOS     _IOW('F', 26, struct fbcurpos)
  116. #define FBIOGCURPOS     _IOW('F', 27, struct fbcurpos)
  117.  
  118. /* get max cursor size */
  119. #define FBIOGCURMAX     _IOR('F', 28, struct fbcurpos)
  120. /* wid manipulation */
  121. struct fb_wid_alloc {
  122. #define FB_WID_SHARED_8 0
  123. #define FB_WID_SHARED_24 1
  124. #define FB_WID_DBL_8 2
  125. #define FB_WID_DBL_24 3
  126. __u32 wa_type;
  127. __s32 wa_index; /* Set on return */
  128. __u32 wa_count;
  129. };
  130. struct fb_wid_item {
  131. __u32 wi_type;
  132. __s32 wi_index;
  133. __u32 wi_attrs;
  134. __u32 wi_values[32];
  135. };
  136. struct fb_wid_list {
  137. __u32 wl_flags;
  138. __u32 wl_count;
  139. struct fb_wid_item *wl_list;
  140. };
  141. #define FBIO_WID_ALLOC _IOWR('F', 30, struct fb_wid_alloc)
  142. #define FBIO_WID_FREE _IOW('F', 31, struct fb_wid_alloc)
  143. #define FBIO_WID_PUT _IOW('F', 32, struct fb_wid_list)
  144. #define FBIO_WID_GET _IOWR('F', 33, struct fb_wid_list)
  145. /* Creator ioctls */
  146. #define FFB_IOCTL ('F'<<8)
  147. #define FFB_SYS_INFO (FFB_IOCTL|80)
  148. #define FFB_CLUTREAD (FFB_IOCTL|81)
  149. #define FFB_CLUTPOST (FFB_IOCTL|82)
  150. #define FFB_SETDIAGMODE (FFB_IOCTL|83)
  151. #define FFB_GETMONITORID (FFB_IOCTL|84)
  152. #define FFB_GETVIDEOMODE (FFB_IOCTL|85)
  153. #define FFB_SETVIDEOMODE (FFB_IOCTL|86)
  154. #define FFB_SETSERVER (FFB_IOCTL|87)
  155. #define FFB_SETOVCTL (FFB_IOCTL|88)
  156. #define FFB_GETOVCTL (FFB_IOCTL|89)
  157. #define FFB_GETSAXNUM (FFB_IOCTL|90)
  158. #define FFB_FBDEBUG (FFB_IOCTL|91)
  159. /* Cg14 ioctls */
  160. #define MDI_IOCTL          ('M'<<8)
  161. #define MDI_RESET          (MDI_IOCTL|1)
  162. #define MDI_GET_CFGINFO    (MDI_IOCTL|2)
  163. #define MDI_SET_PIXELMODE  (MDI_IOCTL|3)
  164. #    define MDI_32_PIX     32
  165. #    define MDI_16_PIX     16
  166. #    define MDI_8_PIX      8
  167. struct mdi_cfginfo {
  168. int     mdi_ncluts;     /* Number of implemented CLUTs in this MDI */
  169.         int     mdi_type;       /* FBTYPE name */
  170.         int     mdi_height;     /* height */
  171.         int     mdi_width;      /* widht */
  172.         int     mdi_size;       /* available ram */
  173.         int     mdi_mode;       /* 8bpp, 16bpp or 32bpp */
  174.         int     mdi_pixfreq;    /* pixel clock (from PROM) */
  175. };
  176. /* SparcLinux specific ioctl for the MDI, should be replaced for
  177.  * the SET_XLUT/SET_CLUTn ioctls instead
  178.  */
  179. #define MDI_CLEAR_XLUT       (MDI_IOCTL|9)
  180. /* leo & ffb ioctls */
  181. struct fb_clut_alloc {
  182. __u32 clutid; /* Set on return */
  183.   __u32 flag;
  184.   __u32 index;
  185. };
  186. struct fb_clut {
  187. #define FB_CLUT_WAIT 0x00000001 /* Not yet implemented */
  188.   __u32 flag;
  189.   __u32 clutid;
  190.   __u32 offset;
  191.   __u32 count;
  192.   char * red;
  193.   char * green;
  194.   char * blue;
  195. };
  196. struct fb_clut32 {
  197.   __u32 flag;
  198.   __u32 clutid;
  199.   __u32 offset;
  200.   __u32 count;
  201.   __u32 red;
  202.   __u32 green;
  203.   __u32 blue;
  204. };
  205. #define LEO_CLUTALLOC _IOWR('L', 53, struct fb_clut_alloc)
  206. #define LEO_CLUTFREE _IOW('L', 54, struct fb_clut_alloc)
  207. #define LEO_CLUTREAD _IOW('L', 55, struct fb_clut)
  208. #define LEO_CLUTPOST _IOW('L', 56, struct fb_clut)
  209. #define LEO_SETGAMMA _IOW('L', 68, int) /* Not yet implemented */
  210. #define LEO_GETGAMMA _IOR('L', 69, int) /* Not yet implemented */
  211. #ifdef __KERNEL__
  212. /* Addresses on the fd of a cgsix that are mappable */
  213. #define CG6_FBC    0x70000000
  214. #define CG6_TEC    0x70001000
  215. #define CG6_BTREGS 0x70002000
  216. #define CG6_FHC    0x70004000
  217. #define CG6_THC    0x70005000
  218. #define CG6_ROM    0x70006000
  219. #define CG6_RAM    0x70016000
  220. #define CG6_DHC    0x80000000
  221. #define CG3_MMAP_OFFSET 0x4000000
  222. /* Addresses on the fd of a tcx that are mappable */
  223. #define TCX_RAM8BIT    0x00000000
  224. #define TCX_RAM24BIT    0x01000000
  225. #define TCX_UNK3    0x10000000
  226. #define TCX_UNK4    0x20000000
  227. #define TCX_CONTROLPLANE    0x28000000
  228. #define TCX_UNK6    0x30000000
  229. #define TCX_UNK7    0x38000000
  230. #define TCX_TEC     0x70000000
  231. #define TCX_BTREGS  0x70002000
  232. #define TCX_THC     0x70004000
  233. #define TCX_DHC     0x70008000
  234. #define TCX_ALT     0x7000a000
  235. #define TCX_SYNC    0x7000e000
  236. #define TCX_UNK2     0x70010000
  237. /* CG14 definitions */
  238. /* Offsets into the OBIO space: */
  239. #define CG14_REGS        0       /* registers */
  240. #define CG14_CURSORREGS  0x1000  /* cursor registers */
  241. #define CG14_DACREGS     0x2000  /* DAC registers */
  242. #define CG14_XLUT        0x3000  /* X Look Up Table -- ??? */
  243. #define CG14_CLUT1       0x4000  /* Color Look Up Table */
  244. #define CG14_CLUT2       0x5000  /* Color Look Up Table */
  245. #define CG14_CLUT3       0x6000  /* Color Look Up Table */
  246. #define CG14_AUTO  0xf000
  247. #endif /* KERNEL */
  248. /* These are exported to userland for applications to use */
  249. /* Mappable offsets for the cg14: control registers */
  250. #define MDI_DIRECT_MAP 0x10000000
  251. #define MDI_CTLREG_MAP 0x20000000
  252. #define MDI_CURSOR_MAP 0x30000000
  253. #define MDI_SHDW_VRT_MAP 0x40000000
  254. /* Mappable offsets for the cg14: frame buffer resolutions */
  255. /* 32 bits */
  256. #define MDI_CHUNKY_XBGR_MAP 0x50000000
  257. #define MDI_CHUNKY_BGR_MAP 0x60000000
  258. /* 16 bits */
  259. #define MDI_PLANAR_X16_MAP 0x70000000
  260. #define MDI_PLANAR_C16_MAP 0x80000000
  261. /* 8 bit is done as CG3 MMAP offset */
  262. /* 32 bits, planar */
  263. #define MDI_PLANAR_X32_MAP 0x90000000
  264. #define MDI_PLANAR_B32_MAP 0xa0000000
  265. #define MDI_PLANAR_G32_MAP 0xb0000000
  266. #define MDI_PLANAR_R32_MAP 0xc0000000
  267. /* Mappable offsets on leo */
  268. #define LEO_SS0_MAP            0x00000000
  269. #define LEO_LC_SS0_USR_MAP     0x00800000
  270. #define LEO_LD_SS0_MAP         0x00801000
  271. #define LEO_LX_CURSOR_MAP      0x00802000
  272. #define LEO_SS1_MAP            0x00803000
  273. #define LEO_LC_SS1_USR_MAP     0x01003000
  274. #define LEO_LD_SS1_MAP         0x01004000
  275. #define LEO_UNK_MAP            0x01005000
  276. #define LEO_LX_KRN_MAP         0x01006000
  277. #define LEO_LC_SS0_KRN_MAP     0x01007000
  278. #define LEO_LC_SS1_KRN_MAP     0x01008000
  279. #define LEO_LD_GBL_MAP         0x01009000
  280. #define LEO_UNK2_MAP           0x0100a000
  281. #endif /* __LINUX_FBIO_H */