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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/video/vga.h -- standard VGA chipset interaction
  3.  *
  4.  * Copyright 1999 Jeff Garzik <jgarzik@mandrakesoft.com>
  5.  * 
  6.  * Copyright history from vga16fb.c:
  7.  * Copyright 1999 Ben Pfaff and Petr Vandrovec
  8.  * Based on VGA info at http://www.goodnet.com/~tinara/FreeVGA/home.htm
  9.  * Based on VESA framebuffer (c) 1998 Gerd Knorr
  10.  *
  11.  * This file is subject to the terms and conditions of the GNU General
  12.  * Public License.  See the file COPYING in the main directory of this
  13.  * archive for more details.  
  14.  *
  15.  */
  16. #ifndef __linux_video_vga_h__
  17. #define __linux_video_vga_h__
  18. #include <linux/config.h>
  19. #include <linux/types.h>
  20. #include <asm/io.h>
  21. #ifndef CONFIG_AMIGA
  22. #include <asm/vga.h>
  23. #else
  24. /*
  25.  * FIXME
  26.  * Ugh, we don't have PCI space, so map readb() and friends to use Zorro space
  27.  * for MMIO accesses. This should make clgenfb work again on Amiga
  28.  */
  29. #define inb(port) 0
  30. #define inw(port) 0
  31. #define outb(port, val) do { } while (0)
  32. #define outw(port, val) do { } while (0)
  33. #define readb z_readb
  34. #define writeb z_writeb
  35. #define writew z_writew
  36. #endif
  37. #include <asm/byteorder.h>
  38. /* Some of the code below is taken from SVGAlib.  The original,
  39.    unmodified copyright notice for that code is below. */
  40. /* VGAlib version 1.2 - (c) 1993 Tommy Frandsen                    */
  41. /*                                                                 */
  42. /* This library is free software; you can redistribute it and/or   */
  43. /* modify it without any restrictions. This library is distributed */
  44. /* in the hope that it will be useful, but without any warranty.   */
  45. /* Multi-chipset support Copyright 1993 Harm Hanemaayer */
  46. /* partially copyrighted (C) 1993 by Hartmut Schirmer */
  47. /* VGA data register ports */
  48. #define VGA_CRT_DC   0x3D5 /* CRT Controller Data Register - color emulation */
  49. #define VGA_CRT_DM   0x3B5 /* CRT Controller Data Register - mono emulation */
  50. #define VGA_ATT_R    0x3C1 /* Attribute Controller Data Read Register */
  51. #define VGA_ATT_W    0x3C0 /* Attribute Controller Data Write Register */
  52. #define VGA_GFX_D    0x3CF /* Graphics Controller Data Register */
  53. #define VGA_SEQ_D    0x3C5 /* Sequencer Data Register */
  54. #define VGA_MIS_R    0x3CC /* Misc Output Read Register */
  55. #define VGA_MIS_W    0x3C2 /* Misc Output Write Register */
  56. #define VGA_FTC_R 0x3CA /* Feature Control Read Register */
  57. #define VGA_IS1_RC   0x3DA /* Input Status Register 1 - color emulation */
  58. #define VGA_IS1_RM   0x3BA /* Input Status Register 1 - mono emulation */
  59. #define VGA_PEL_D    0x3C9 /* PEL Data Register */
  60. #define VGA_PEL_MSK  0x3C6 /* PEL mask register */
  61. /* EGA-specific registers */
  62. #define EGA_GFX_E0 0x3CC /* Graphics enable processor 0 */
  63. #define EGA_GFX_E1 0x3CA /* Graphics enable processor 1 */
  64. /* VGA index register ports */
  65. #define VGA_CRT_IC   0x3D4 /* CRT Controller Index - color emulation */
  66. #define VGA_CRT_IM   0x3B4 /* CRT Controller Index - mono emulation */
  67. #define VGA_ATT_IW   0x3C0 /* Attribute Controller Index & Data Write Register */
  68. #define VGA_GFX_I    0x3CE /* Graphics Controller Index */
  69. #define VGA_SEQ_I    0x3C4 /* Sequencer Index */
  70. #define VGA_PEL_IW   0x3C8 /* PEL Write Index */
  71. #define VGA_PEL_IR   0x3C7 /* PEL Read Index */
  72. /* standard VGA indexes max counts */
  73. #define VGA_CRT_C    0x19 /* Number of CRT Controller Registers */
  74. #define VGA_ATT_C    0x15 /* Number of Attribute Controller Registers */
  75. #define VGA_GFX_C    0x09 /* Number of Graphics Controller Registers */
  76. #define VGA_SEQ_C    0x05 /* Number of Sequencer Registers */
  77. #define VGA_MIS_C    0x01 /* Number of Misc Output Register */
  78. /* VGA misc register bit masks */
  79. #define VGA_MIS_COLOR 0x01
  80. #define VGA_MIS_ENB_MEM_ACCESS 0x02
  81. #define VGA_MIS_DCLK_28322_720 0x04
  82. #define VGA_MIS_ENB_PLL_LOAD (0x04 | 0x08)
  83. #define VGA_MIS_SEL_HIGH_PAGE 0x20
  84. /* VGA CRT controller register indices */
  85. #define VGA_CRTC_H_TOTAL 0
  86. #define VGA_CRTC_H_DISP 1
  87. #define VGA_CRTC_H_BLANK_START 2
  88. #define VGA_CRTC_H_BLANK_END 3
  89. #define VGA_CRTC_H_SYNC_START 4
  90. #define VGA_CRTC_H_SYNC_END 5
  91. #define VGA_CRTC_V_TOTAL 6
  92. #define VGA_CRTC_OVERFLOW 7
  93. #define VGA_CRTC_PRESET_ROW 8
  94. #define VGA_CRTC_MAX_SCAN 9
  95. #define VGA_CRTC_CURSOR_START 0x0A
  96. #define VGA_CRTC_CURSOR_END 0x0B
  97. #define VGA_CRTC_START_HI 0x0C
  98. #define VGA_CRTC_START_LO 0x0D
  99. #define VGA_CRTC_CURSOR_HI 0x0E
  100. #define VGA_CRTC_CURSOR_LO 0x0F
  101. #define VGA_CRTC_V_SYNC_START 0x10
  102. #define VGA_CRTC_V_SYNC_END 0x11
  103. #define VGA_CRTC_V_DISP_END 0x12
  104. #define VGA_CRTC_OFFSET 0x13
  105. #define VGA_CRTC_UNDERLINE 0x14
  106. #define VGA_CRTC_V_BLANK_START 0x15
  107. #define VGA_CRTC_V_BLANK_END 0x16
  108. #define VGA_CRTC_MODE 0x17
  109. #define VGA_CRTC_LINE_COMPARE 0x18
  110. #define VGA_CRTC_REGS VGA_CRT_C
  111. /* VGA CRT controller bit masks */
  112. #define VGA_CR11_LOCK_CR0_CR7 0x80 /* lock writes to CR0 - CR7 */
  113. #define VGA_CR17_H_V_SIGNALS_ENABLED 0x80
  114. /* VGA attribute controller register indices */
  115. #define VGA_ATC_PALETTE0 0x00
  116. #define VGA_ATC_PALETTE1 0x01
  117. #define VGA_ATC_PALETTE2 0x02
  118. #define VGA_ATC_PALETTE3 0x03
  119. #define VGA_ATC_PALETTE4 0x04
  120. #define VGA_ATC_PALETTE5 0x05
  121. #define VGA_ATC_PALETTE6 0x06
  122. #define VGA_ATC_PALETTE7 0x07
  123. #define VGA_ATC_PALETTE8 0x08
  124. #define VGA_ATC_PALETTE9 0x09
  125. #define VGA_ATC_PALETTEA 0x0A
  126. #define VGA_ATC_PALETTEB 0x0B
  127. #define VGA_ATC_PALETTEC 0x0C
  128. #define VGA_ATC_PALETTED 0x0D
  129. #define VGA_ATC_PALETTEE 0x0E
  130. #define VGA_ATC_PALETTEF 0x0F
  131. #define VGA_ATC_MODE 0x10
  132. #define VGA_ATC_OVERSCAN 0x11
  133. #define VGA_ATC_PLANE_ENABLE 0x12
  134. #define VGA_ATC_PEL 0x13
  135. #define VGA_ATC_COLOR_PAGE 0x14
  136. #define VGA_AR_ENABLE_DISPLAY 0x20
  137. /* VGA sequencer register indices */
  138. #define VGA_SEQ_RESET 0x00
  139. #define VGA_SEQ_CLOCK_MODE 0x01
  140. #define VGA_SEQ_PLANE_WRITE 0x02
  141. #define VGA_SEQ_CHARACTER_MAP 0x03
  142. #define VGA_SEQ_MEMORY_MODE 0x04
  143. /* VGA sequencer register bit masks */
  144. #define VGA_SR01_CHAR_CLK_8DOTS 0x01 /* bit 0: character clocks 8 dots wide are generated */
  145. #define VGA_SR01_SCREEN_OFF 0x20 /* bit 5: Screen is off */
  146. #define VGA_SR02_ALL_PLANES 0x0F /* bits 3-0: enable access to all planes */
  147. #define VGA_SR04_EXT_MEM 0x02 /* bit 1: allows complete mem access to 256K */
  148. #define VGA_SR04_SEQ_MODE 0x04 /* bit 2: directs system to use a sequential addressing mode */
  149. #define VGA_SR04_CHN_4M 0x08 /* bit 3: selects modulo 4 addressing for CPU access to display memory */
  150. /* VGA graphics controller register indices */
  151. #define VGA_GFX_SR_VALUE 0x00
  152. #define VGA_GFX_SR_ENABLE 0x01
  153. #define VGA_GFX_COMPARE_VALUE 0x02
  154. #define VGA_GFX_DATA_ROTATE 0x03
  155. #define VGA_GFX_PLANE_READ 0x04
  156. #define VGA_GFX_MODE 0x05
  157. #define VGA_GFX_MISC 0x06
  158. #define VGA_GFX_COMPARE_MASK 0x07
  159. #define VGA_GFX_BIT_MASK 0x08
  160. /* VGA graphics controller bit masks */
  161. #define VGA_GR06_GRAPHICS_MODE 0x01
  162. /* macro for composing an 8-bit VGA register index and value
  163.  * into a single 16-bit quantity */
  164. #define VGA_OUT16VAL(v, r)       (((v) << 8) | (r))
  165. /* decide whether we should enable the faster 16-bit VGA register writes */
  166. #ifdef __LITTLE_ENDIAN
  167. #define VGA_OUTW_WRITE
  168. #endif
  169. /*
  170.  * generic VGA port read/write
  171.  */
  172.  
  173. static inline unsigned char vga_io_r (unsigned short port)
  174. {
  175. return inb (port);
  176. }
  177. static inline void vga_io_w (unsigned short port, unsigned char val)
  178. {
  179. outb (val, port);
  180. }
  181. static inline void vga_io_w_fast (unsigned short port, unsigned char reg,
  182.   unsigned char val)
  183. {
  184. outw (VGA_OUT16VAL (val, reg), port);
  185. }
  186. static inline unsigned char vga_mm_r (caddr_t regbase, unsigned short port)
  187. {
  188. return readb (regbase + port);
  189. }
  190. static inline void vga_mm_w (caddr_t regbase, unsigned short port, unsigned char val)
  191. {
  192. writeb (val, regbase + port);
  193. }
  194. static inline void vga_mm_w_fast (caddr_t regbase, unsigned short port,
  195.   unsigned char reg, unsigned char val)
  196. {
  197. writew (VGA_OUT16VAL (val, reg), regbase + port);
  198. }
  199. static inline unsigned char vga_r (caddr_t regbase, unsigned short port)
  200. {
  201. if (regbase)
  202. return vga_mm_r (regbase, port);
  203. else
  204. return vga_io_r (port);
  205. }
  206. static inline void vga_w (caddr_t regbase, unsigned short port, unsigned char val)
  207. {
  208. if (regbase)
  209. vga_mm_w (regbase, port, val);
  210. else
  211. vga_io_w (port, val);
  212. }
  213. static inline void vga_w_fast (caddr_t regbase, unsigned short port,
  214.        unsigned char reg, unsigned char val)
  215. {
  216. if (regbase)
  217. vga_mm_w_fast (regbase, port, reg, val);
  218. else
  219. vga_io_w_fast (port, reg, val);
  220. }
  221. /*
  222.  * VGA CRTC register read/write
  223.  */
  224.  
  225. static inline unsigned char vga_rcrt (caddr_t regbase, unsigned char reg)
  226. {
  227.         vga_w (regbase, VGA_CRT_IC, reg);
  228.         return vga_r (regbase, VGA_CRT_DC);
  229. }
  230. static inline void vga_wcrt (caddr_t regbase, unsigned char reg, unsigned char val)
  231. {
  232. #ifdef VGA_OUTW_WRITE
  233. vga_w_fast (regbase, VGA_CRT_IC, reg, val);
  234. #else
  235.         vga_w (regbase, VGA_CRT_IC, reg);
  236.         vga_w (regbase, VGA_CRT_DC, val);
  237. #endif /* VGA_OUTW_WRITE */
  238. }
  239. static inline unsigned char vga_io_rcrt (unsigned char reg)
  240. {
  241.         vga_io_w (VGA_CRT_IC, reg);
  242.         return vga_io_r (VGA_CRT_DC);
  243. }
  244. static inline void vga_io_wcrt (unsigned char reg, unsigned char val)
  245. {
  246. #ifdef VGA_OUTW_WRITE
  247. vga_io_w_fast (VGA_CRT_IC, reg, val);
  248. #else
  249.         vga_io_w (VGA_CRT_IC, reg);
  250.         vga_io_w (VGA_CRT_DC, val);
  251. #endif /* VGA_OUTW_WRITE */
  252. }
  253. static inline unsigned char vga_mm_rcrt (caddr_t regbase, unsigned char reg)
  254. {
  255.         vga_mm_w (regbase, VGA_CRT_IC, reg);
  256.         return vga_mm_r (regbase, VGA_CRT_DC);
  257. }
  258. static inline void vga_mm_wcrt (caddr_t regbase, unsigned char reg, unsigned char val)
  259. {
  260. #ifdef VGA_OUTW_WRITE
  261. vga_mm_w_fast (regbase, VGA_CRT_IC, reg, val);
  262. #else
  263.         vga_mm_w (regbase, VGA_CRT_IC, reg);
  264.         vga_mm_w (regbase, VGA_CRT_DC, val);
  265. #endif /* VGA_OUTW_WRITE */
  266. }
  267. /*
  268.  * VGA sequencer register read/write
  269.  */
  270.  
  271. static inline unsigned char vga_rseq (caddr_t regbase, unsigned char reg)
  272. {
  273.         vga_w (regbase, VGA_SEQ_I, reg);
  274.         return vga_r (regbase, VGA_SEQ_D);
  275. }
  276. static inline void vga_wseq (caddr_t regbase, unsigned char reg, unsigned char val)
  277. {
  278. #ifdef VGA_OUTW_WRITE
  279. vga_w_fast (regbase, VGA_SEQ_I, reg, val);
  280. #else
  281.         vga_w (regbase, VGA_SEQ_I, reg);
  282.         vga_w (regbase, VGA_SEQ_D, val);
  283. #endif /* VGA_OUTW_WRITE */
  284. }
  285. static inline unsigned char vga_io_rseq (unsigned char reg)
  286. {
  287.         vga_io_w (VGA_SEQ_I, reg);
  288.         return vga_io_r (VGA_SEQ_D);
  289. }
  290. static inline void vga_io_wseq (unsigned char reg, unsigned char val)
  291. {
  292. #ifdef VGA_OUTW_WRITE
  293. vga_io_w_fast (VGA_SEQ_I, reg, val);
  294. #else
  295.         vga_io_w (VGA_SEQ_I, reg);
  296.         vga_io_w (VGA_SEQ_D, val);
  297. #endif /* VGA_OUTW_WRITE */
  298. }
  299. static inline unsigned char vga_mm_rseq (caddr_t regbase, unsigned char reg)
  300. {
  301.         vga_mm_w (regbase, VGA_SEQ_I, reg);
  302.         return vga_mm_r (regbase, VGA_SEQ_D);
  303. }
  304. static inline void vga_mm_wseq (caddr_t regbase, unsigned char reg, unsigned char val)
  305. {
  306. #ifdef VGA_OUTW_WRITE
  307. vga_mm_w_fast (regbase, VGA_SEQ_I, reg, val);
  308. #else
  309.         vga_mm_w (regbase, VGA_SEQ_I, reg);
  310.         vga_mm_w (regbase, VGA_SEQ_D, val);
  311. #endif /* VGA_OUTW_WRITE */
  312. }
  313. /*
  314.  * VGA graphics controller register read/write
  315.  */
  316.  
  317. static inline unsigned char vga_rgfx (caddr_t regbase, unsigned char reg)
  318. {
  319.         vga_w (regbase, VGA_GFX_I, reg);
  320.         return vga_r (regbase, VGA_GFX_D);
  321. }
  322. static inline void vga_wgfx (caddr_t regbase, unsigned char reg, unsigned char val)
  323. {
  324. #ifdef VGA_OUTW_WRITE
  325. vga_w_fast (regbase, VGA_GFX_I, reg, val);
  326. #else
  327.         vga_w (regbase, VGA_GFX_I, reg);
  328.         vga_w (regbase, VGA_GFX_D, val);
  329. #endif /* VGA_OUTW_WRITE */
  330. }
  331. static inline unsigned char vga_io_rgfx (unsigned char reg)
  332. {
  333.         vga_io_w (VGA_GFX_I, reg);
  334.         return vga_io_r (VGA_GFX_D);
  335. }
  336. static inline void vga_io_wgfx (unsigned char reg, unsigned char val)
  337. {
  338. #ifdef VGA_OUTW_WRITE
  339. vga_io_w_fast (VGA_GFX_I, reg, val);
  340. #else
  341.         vga_io_w (VGA_GFX_I, reg);
  342.         vga_io_w (VGA_GFX_D, val);
  343. #endif /* VGA_OUTW_WRITE */
  344. }
  345. static inline unsigned char vga_mm_rgfx (caddr_t regbase, unsigned char reg)
  346. {
  347.         vga_mm_w (regbase, VGA_GFX_I, reg);
  348.         return vga_mm_r (regbase, VGA_GFX_D);
  349. }
  350. static inline void vga_mm_wgfx (caddr_t regbase, unsigned char reg, unsigned char val)
  351. {
  352. #ifdef VGA_OUTW_WRITE
  353. vga_mm_w_fast (regbase, VGA_GFX_I, reg, val);
  354. #else
  355.         vga_mm_w (regbase, VGA_GFX_I, reg);
  356.         vga_mm_w (regbase, VGA_GFX_D, val);
  357. #endif /* VGA_OUTW_WRITE */
  358. }
  359. /*
  360.  * VGA attribute controller register read/write
  361.  */
  362.  
  363. static inline unsigned char vga_rattr (caddr_t regbase, unsigned char reg)
  364. {
  365.         vga_w (regbase, VGA_ATT_IW, reg);
  366.         return vga_r (regbase, VGA_ATT_R);
  367. }
  368. static inline void vga_wattr (caddr_t regbase, unsigned char reg, unsigned char val)
  369. {
  370.         vga_w (regbase, VGA_ATT_IW, reg);
  371.         vga_w (regbase, VGA_ATT_W, val);
  372. }
  373. static inline unsigned char vga_io_rattr (unsigned char reg)
  374. {
  375.         vga_io_w (VGA_ATT_IW, reg);
  376.         return vga_io_r (VGA_ATT_R);
  377. }
  378. static inline void vga_io_wattr (unsigned char reg, unsigned char val)
  379. {
  380.         vga_io_w (VGA_ATT_IW, reg);
  381.         vga_io_w (VGA_ATT_W, val);
  382. }
  383. static inline unsigned char vga_mm_rattr (caddr_t regbase, unsigned char reg)
  384. {
  385.         vga_mm_w (regbase, VGA_ATT_IW, reg);
  386.         return vga_mm_r (regbase, VGA_ATT_R);
  387. }
  388. static inline void vga_mm_wattr (caddr_t regbase, unsigned char reg, unsigned char val)
  389. {
  390.         vga_mm_w (regbase, VGA_ATT_IW, reg);
  391.         vga_mm_w (regbase, VGA_ATT_W, val);
  392. }
  393. #endif /* __linux_video_vga_h__ */