sisfb.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * Copyright (C) 2001-2004 by Thomas Winischhofer, Vienna, Austria.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the named License,
  7. * or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
  17. */
  18. #ifndef _LINUX_SISFB
  19. #define _LINUX_SISFB
  20. #include <asm/ioctl.h>
  21. #include <asm/types.h>
  22. /**********************************************/
  23. /* PUBLIC */
  24. /**********************************************/
  25. /* vbflags */
  26. #define CRT2_DEFAULT 0x00000001
  27. #define CRT2_LCD 0x00000002 /* TW: Never change the order of the CRT2_XXX entries */
  28. #define CRT2_TV 0x00000004 /* (see SISCycleCRT2Type()) */
  29. #define CRT2_VGA 0x00000008
  30. #define TV_NTSC 0x00000010
  31. #define TV_PAL 0x00000020
  32. #define TV_HIVISION 0x00000040
  33. #define TV_YPBPR 0x00000080
  34. #define TV_AVIDEO 0x00000100
  35. #define TV_SVIDEO 0x00000200
  36. #define TV_SCART 0x00000400
  37. #define VB_CONEXANT 0x00000800 /* 661 series only */
  38. #define VB_TRUMPION VB_CONEXANT /* 300 series only */
  39. #define TV_PALM 0x00001000
  40. #define TV_PALN 0x00002000
  41. #define TV_NTSCJ 0x00001000
  42. #define VB_302ELV 0x00004000
  43. #define TV_CHSCART 0x00008000
  44. #define TV_CHYPBPR525I 0x00010000
  45. #define CRT1_VGA 0x00000000
  46. #define CRT1_LCDA 0x00020000
  47. #define VGA2_CONNECTED 0x00040000
  48. #define VB_DISPTYPE_CRT1 0x00080000 /* CRT1 connected and used */
  49. #define VB_301 0x00100000 /* Video bridge type */
  50. #define VB_301B 0x00200000
  51. #define VB_302B 0x00400000
  52. #define VB_30xBDH 0x00800000 /* 30xB DH version (w/o LCD support) */
  53. #define VB_LVDS 0x01000000
  54. #define VB_CHRONTEL 0x02000000
  55. #define VB_301LV 0x04000000
  56. #define VB_302LV 0x08000000
  57. #define VB_301C 0x10000000
  58. #define VB_SINGLE_MODE 0x20000000 /* CRT1 or CRT2; determined by DISPTYPE_CRTx */
  59. #define VB_MIRROR_MODE 0x40000000 /* CRT1 + CRT2 identical (mirror mode) */
  60. #define VB_DUALVIEW_MODE 0x80000000 /* CRT1 + CRT2 independent (dual head mode) */
  61. /* Aliases: */
  62. #define CRT2_ENABLE (CRT2_LCD | CRT2_TV | CRT2_VGA)
  63. #define TV_STANDARD (TV_NTSC | TV_PAL | TV_PALM | TV_PALN | TV_NTSCJ)
  64. #define TV_INTERFACE (TV_AVIDEO|TV_SVIDEO|TV_SCART|TV_HIVISION|TV_YPBPR|TV_CHSCART|TV_CHYPBPR525I)
  65. /* Only if TV_YPBPR is set: */
  66. #define TV_YPBPR525I TV_NTSC
  67. #define TV_YPBPR525P TV_PAL
  68. #define TV_YPBPR750P TV_PALM
  69. #define TV_YPBPR1080I TV_PALN
  70. #define TV_YPBPRALL (TV_YPBPR525I | TV_YPBPR525P | TV_YPBPR750P | TV_YPBPR1080I)
  71. #define VB_SISBRIDGE (VB_301|VB_301B|VB_301C|VB_302B|VB_301LV|VB_302LV|VB_302ELV)
  72. #define VB_SISTVBRIDGE (VB_301|VB_301B|VB_301C|VB_302B|VB_301LV|VB_302LV)
  73. #define VB_VIDEOBRIDGE (VB_SISBRIDGE | VB_LVDS | VB_CHRONTEL | VB_CONEXANT)
  74. #define VB_DISPTYPE_DISP2 CRT2_ENABLE
  75. #define VB_DISPTYPE_CRT2 CRT2_ENABLE
  76. #define VB_DISPTYPE_DISP1 VB_DISPTYPE_CRT1
  77. #define VB_DISPMODE_SINGLE VB_SINGLE_MODE
  78. #define VB_DISPMODE_MIRROR VB_MIRROR_MODE
  79. #define VB_DISPMODE_DUAL VB_DUALVIEW_MODE
  80. #define VB_DISPLAY_MODE (SINGLE_MODE | MIRROR_MODE | DUALVIEW_MODE)
  81. /* Structure argument for SISFB_GET_INFO ioctl */
  82. typedef struct _SISFB_INFO sisfb_info, *psisfb_info;
  83. struct _SISFB_INFO {
  84. __u32 sisfb_id; /* for identifying sisfb */
  85. #ifndef SISFB_ID
  86. #define SISFB_ID 0x53495346 /* Identify myself with 'SISF' */
  87. #endif
  88. __u32 chip_id; /* PCI-ID of detected chip */
  89. __u32 memory; /* video memory in KB which sisfb manages */
  90. __u32 heapstart; /* heap start (= sisfb "mem" argument) in KB */
  91. __u8 fbvidmode; /* current sisfb mode */
  92. __u8 sisfb_version;
  93. __u8 sisfb_revision;
  94. __u8 sisfb_patchlevel;
  95. __u8 sisfb_caps; /* sisfb capabilities */
  96. __u32 sisfb_tqlen; /* turbo queue length (in KB) */
  97. __u32 sisfb_pcibus; /* The card's PCI ID */
  98. __u32 sisfb_pcislot;
  99. __u32 sisfb_pcifunc;
  100. __u8 sisfb_lcdpdc; /* PanelDelayCompensation */
  101. __u8 sisfb_lcda; /* Detected status of LCDA for low res/text modes */
  102. __u32 sisfb_vbflags;
  103. __u32 sisfb_currentvbflags;
  104. __u32 sisfb_scalelcd;
  105. __u32 sisfb_specialtiming;
  106. __u8 sisfb_haveemi;
  107. __u8 sisfb_emi30,sisfb_emi31,sisfb_emi32,sisfb_emi33;
  108. __u8 sisfb_haveemilcd;
  109. __u8 sisfb_lcdpdca; /* PanelDelayCompensation for LCD-via-CRT1 */
  110. __u16 sisfb_tvxpos, sisfb_tvypos; /* Warning: Values + 32 ! */
  111. __u8 reserved[208]; /* for future use */
  112. };
  113. /* Addtional IOCTLs for communication sisfb <> X driver */
  114. /* If changing this, vgatypes.h must also be changed (for X driver) */
  115. /* ioctl for identifying and giving some info (esp. memory heap start) */
  116. #define SISFB_GET_INFO_SIZE _IOR(0xF3,0x00,__u32)
  117. #define SISFB_GET_INFO _IOR(0xF3,0x01,struct _SISFB_INFO)
  118. /* ioctrl to get current vertical retrace status */
  119. #define SISFB_GET_VBRSTATUS _IOR(0xF3,0x02,__u32)
  120. /* ioctl to enable/disable panning auto-maximize (like nomax parameter) */
  121. #define SISFB_GET_AUTOMAXIMIZE _IOR(0xF3,0x03,__u32)
  122. #define SISFB_SET_AUTOMAXIMIZE _IOW(0xF3,0x03,__u32)
  123. /* ioctls to relocate TV output (x=D[31:16], y=D[15:0], + 32)*/
  124. #define SISFB_GET_TVPOSOFFSET _IOR(0xF3,0x04,__u32)
  125. #define SISFB_SET_TVPOSOFFSET _IOW(0xF3,0x04,__u32)
  126. /* ioctl for locking sisfb (no register access during lock) */
  127. /* As of now, only used to avoid register access during
  128. * the ioctls listed above.
  129. */
  130. #define SISFB_SET_LOCK _IOW(0xF3,0x06,__u32)
  131. /* more to come soon */
  132. /* ioctls 0xF3 up to 0x3F reserved for sisfb */
  133. /****************************************************************/
  134. /* The following are deprecated and should not be used anymore: */
  135. /****************************************************************/
  136. /* ioctl for identifying and giving some info (esp. memory heap start) */
  137. #define SISFB_GET_INFO_OLD _IOR('n',0xF8,__u32)
  138. /* ioctrl to get current vertical retrace status */
  139. #define SISFB_GET_VBRSTATUS_OLD _IOR('n',0xF9,__u32)
  140. /* ioctl to enable/disable panning auto-maximize (like nomax parameter) */
  141. #define SISFB_GET_AUTOMAXIMIZE_OLD _IOR('n',0xFA,__u32)
  142. #define SISFB_SET_AUTOMAXIMIZE_OLD _IOW('n',0xFA,__u32)
  143. /****************************************************************/
  144. /* End of deprecated ioctl numbers */
  145. /****************************************************************/
  146. /* For fb memory manager (FBIO_ALLOC, FBIO_FREE) */
  147. struct sis_memreq {
  148. __u32 offset;
  149. __u32 size;
  150. };
  151. /**********************************************/
  152. /* PRIVATE */
  153. /* (for IN-KERNEL usage only) */
  154. /**********************************************/
  155. #ifdef __KERNEL__
  156. #define UNKNOWN_VGA 0
  157. #define SIS_300_VGA 1
  158. #define SIS_315_VGA 2
  159. extern void sis_malloc(struct sis_memreq *req);
  160. extern void sis_free(u32 base);
  161. #endif
  162. #endif