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

嵌入式Linux

开发平台:

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