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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Architecture specific parts of HP's STI (framebuffer) driver
  3.  * structures are HP-UX compatible for XFree86 usage 
  4.  */ 
  5. #ifndef __ASM_PARISC_GRFIOCTL_H
  6. #define __ASM_PARISC_GRFIOCTL_H
  7. /* upper 32 bits of graphics id (HP/UX identifier) */
  8. #define GRFGATOR 8
  9. #define S9000_ID_S300 9
  10. #define GRFBOBCAT 9
  11. #define GRFCATSEYE 9
  12. #define S9000_ID_98720 10
  13. #define GRFRBOX 10
  14. #define S9000_ID_98550 11
  15. #define GRFFIREEYE 11
  16. #define S9000_ID_A1096A 12
  17. #define GRFHYPERION 12
  18. #define S9000_ID_FRI 13
  19. #define S9000_ID_98730 14
  20. #define GRFDAVINCI 14
  21. #define S9000_ID_98705 0x26C08070 /* Tigershark */
  22. #define S9000_ID_98736 0x26D148AB
  23. #define S9000_ID_A1659A 0x26D1482A /* CRX 8 plane color (=ELK) */
  24. #define S9000_ID_ELK S9000_ID_A1659A
  25. #define S9000_ID_A1439A 0x26D148EE /* CRX24 = CRX+ (24-plane color) */
  26. #define S9000_ID_A1924A 0x26D1488C /* GRX gray-scale */
  27. #define S9000_ID_ELM S9000_ID_A1924A
  28. #define S9000_ID_98765 0x27480DEF
  29. #define S9000_ID_ELK_768 0x27482101
  30. #define S9000_ID_STINGER 0x27A4A402
  31. #define S9000_ID_TIMBER 0x27F12392 /* Bushmaster (710) Graphics */
  32. #define S9000_ID_TOMCAT 0x27FCCB6D /* dual-headed ELK (Dual CRX) */
  33. #define S9000_ID_ARTIST 0x2B4DED6D /* Artist (Gecko/712 & 715) onboard Graphics */
  34. #define S9000_ID_HCRX 0x2BCB015A /* Hyperdrive/Hyperbowl (A4071A) Graphics */
  35. #define CRX24_OVERLAY_PLANES 0x920825AA /* Overlay planes on CRX24 */
  36. #define CRT_ID_ELK_1024 S9000_ID_ELK_768 /* Elk 1024x768  CRX */
  37. #define CRT_ID_ELK_1280 S9000_ID_A1659A /* Elk 1280x1024 CRX */
  38. #define CRT_ID_ELK_1024DB 0x27849CA5      /* Elk 1024x768 double buffer */
  39. #define CRT_ID_ELK_GS S9000_ID_A1924A /* Elk 1280x1024 GreyScale    */
  40. #define CRT_ID_CRX24 S9000_ID_A1439A /* Piranha */
  41. #define CRT_ID_VISUALIZE_EG 0x2D08C0A7      /* Graffiti (built-in B132+/B160L) */
  42. #define CRT_ID_THUNDER 0x2F23E5FC      /* Thunder 1 VISUALIZE 48*/
  43. #define CRT_ID_THUNDER2 0x2F8D570E      /* Thunder 2 VISUALIZE 48 XP*/
  44. #define CRT_ID_HCRX S9000_ID_HCRX /* Hyperdrive HCRX */
  45. #define CRT_ID_CRX48Z S9000_ID_STINGER /* Stinger */
  46. #define CRT_ID_DUAL_CRX S9000_ID_TOMCAT /* Tomcat */
  47. #define CRT_ID_PVRX S9000_ID_98705 /* Tigershark */
  48. #define CRT_ID_TIMBER S9000_ID_TIMBER /* Timber (710 builtin) */
  49. #define CRT_ID_TVRX S9000_ID_98765 /* TVRX (gto/falcon) */
  50. #define CRT_ID_ARTIST S9000_ID_ARTIST /* Artist */
  51. #define CRT_ID_SUMMIT 0x2FC1066B      /* Summit FX2, FX4, FX6 ... */
  52. /* structure for ioctl(GCDESCRIBE) */
  53. #define gaddr_t unsigned long /* FIXME: PA2.0 (64bit) portable ? */
  54. struct grf_fbinfo {
  55. unsigned int id; /* upper 32 bits of graphics id */
  56. unsigned int mapsize; /* mapped size of framebuffer */
  57. unsigned int dwidth, dlength;/* x and y sizes */
  58. unsigned int width, length; /* total x and total y size */
  59. unsigned int xlen; /* x pitch size */
  60. unsigned int bpp, bppu; /* bits per pixel and used bpp */
  61. unsigned int npl, nplbytes; /* # of planes and bytes per plane */
  62. char name[32]; /* name of the device (from ROM) */
  63. unsigned int attr; /* attributes */
  64. gaddr_t  fbbase, regbase;/* framebuffer and register base addr */
  65. gaddr_t regions[6]; /* region bases */
  66. };
  67. #define GCID _IOR('G', 0, int)
  68. #define GCON _IO('G', 1)
  69. #define GCOFF _IO('G', 2)
  70. #define GCAON _IO('G', 3)
  71. #define GCAOFF _IO('G', 4)
  72. #define GCMAP _IOWR('G', 5, int)
  73. #define GCUNMAP _IOWR('G', 6, int)
  74. #define GCMAP_HPUX _IO('G', 5)
  75. #define GCUNMAP_HPUX _IO('G', 6)
  76. #define GCLOCK _IO('G', 7)
  77. #define GCUNLOCK _IO('G', 8)
  78. #define GCLOCK_MINIMUM _IO('G', 9)
  79. #define GCUNLOCK_MINIMUM _IO('G', 10)
  80. #define GCSTATIC_CMAP _IO('G', 11)
  81. #define GCVARIABLE_CMAP _IO('G', 12)
  82. #define GCTERM _IOWR('G',20,int) /* multi-headed Tomcat */ 
  83. #define GCDESCRIBE _IOR('G', 21, struct grf_fbinfo)
  84. #define GCFASTLOCK _IO('G', 26)
  85. #endif /* __ASM_PARISC_GRFIOCTL_H */