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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/video/retz3fb.h -- Defines and macros for the RetinaZ3 frame
  3.  *     buffer device
  4.  *
  5.  *    Copyright (C) 1997 Jes Sorensen
  6.  *
  7.  * History:
  8.  *   - 22 Jan 97: Initial work
  9.  *
  10.  *
  11.  * This file is subject to the terms and conditions of the GNU General Public
  12.  * License.  See the file COPYING in the main directory of this archive
  13.  * for more details.
  14.  */
  15. /*
  16.  * Macros to read and write to registers.
  17.  */
  18. #define reg_w(regs, reg,dat) (*(regs + reg) = dat)
  19. #define reg_r(regs, reg) (*(regs + reg))
  20. /*
  21.  * Macro to access the sequencer.
  22.  */
  23. #define seq_w(regs, sreg, sdat) 
  24. do{ reg_w(regs, SEQ_IDX, sreg); reg_w(regs, SEQ_DATA, sdat); } while(0)
  25. /*
  26.  * Macro to access the CRT controller.
  27.  */
  28. #define crt_w(regs, creg, cdat) 
  29. do{ reg_w(regs, CRT_IDX, creg); reg_w(regs, CRT_DATA, cdat); } while(0)
  30. /*
  31.  * Macro to access the graphics controller.
  32.  */
  33. #define gfx_w(regs, greg, gdat) 
  34. do{ reg_w(regs, GFX_IDX, greg); reg_w(regs, GFX_DATA, gdat); } while(0)
  35. /*
  36.  * Macro to access the attribute controller.
  37.  */
  38. #define attr_w(regs, areg, adat) 
  39. do{ reg_w(regs, ACT_IDX, areg); reg_w(regs, ACT_DATA, adat); } while(0)
  40. /*
  41.  * Macro to access the pll.
  42.  */
  43. #define pll_w(regs, preg, pdat) 
  44. do{ reg_w(regs, PLL_IDX, preg); 
  45.     reg_w(regs, PLL_DATA, (pdat & 0xff)); 
  46.     reg_w(regs, PLL_DATA, (pdat >> 8));
  47. } while(0)
  48. /*
  49.  * Offsets
  50.  */
  51. #define VIDEO_MEM_OFFSET 0x00c00000
  52. #define ACM_OFFSET 0x00b00000
  53. /*
  54.  * Accelerator Control Menu
  55.  */
  56. #define ACM_PRIMARY_OFFSET 0x00
  57. #define ACM_SECONDARY_OFFSET 0x04
  58. #define ACM_MODE_CONTROL 0x08
  59. #define ACM_CURSOR_POSITION 0x0c
  60. #define ACM_START_STATUS 0x30
  61. #define ACM_CONTROL 0x34
  62. #define ACM_RASTEROP_ROTATION 0x38
  63. #define ACM_BITMAP_DIMENSION 0x3c
  64. #define ACM_DESTINATION 0x40
  65. #define ACM_SOURCE 0x44
  66. #define ACM_PATTERN 0x48
  67. #define ACM_FOREGROUND 0x4c
  68. #define ACM_BACKGROUND 0x50
  69. /*
  70.  * Video DAC addresses
  71.  */
  72. #define VDAC_ADDRESS 0x03c8
  73. #define VDAC_ADDRESS_W 0x03c8
  74. #define VDAC_ADDRESS_R 0x03c7
  75. #define VDAC_STATE 0x03c7
  76. #define VDAC_DATA 0x03c9
  77. #define VDAC_MASK 0x03c6
  78. /*
  79.  * Sequencer
  80.  */
  81. #define SEQ_IDX 0x03c4 /* Sequencer Index */
  82. #define SEQ_DATA 0x03c5
  83. #define SEQ_RESET 0x00
  84. #define SEQ_CLOCKING_MODE 0x01
  85. #define SEQ_MAP_MASK 0x02
  86. #define SEQ_CHAR_MAP_SELECT 0x03
  87. #define SEQ_MEMORY_MODE 0x04
  88. #define SEQ_EXTENDED_ENABLE 0x05 /* NCR extensions */
  89. #define SEQ_UNKNOWN1          0x06
  90. #define SEQ_UNKNOWN2          0x07
  91. #define SEQ_CHIP_ID 0x08
  92. #define SEQ_UNKNOWN3          0x09
  93. #define SEQ_CURSOR_COLOR1 0x0a
  94. #define SEQ_CURSOR_COLOR0 0x0b
  95. #define SEQ_CURSOR_CONTROL 0x0c
  96. #define SEQ_CURSOR_X_LOC_HI 0x0d
  97. #define SEQ_CURSOR_X_LOC_LO 0x0e
  98. #define SEQ_CURSOR_Y_LOC_HI 0x0f
  99. #define SEQ_CURSOR_Y_LOC_LO 0x10
  100. #define SEQ_CURSOR_X_INDEX 0x11
  101. #define SEQ_CURSOR_Y_INDEX 0x12
  102. #define SEQ_CURSOR_STORE_HI 0x13
  103. #define SEQ_CURSOR_STORE_LO 0x14
  104. #define SEQ_CURSOR_ST_OFF_HI 0x15
  105. #define SEQ_CURSOR_ST_OFF_LO 0x16
  106. #define SEQ_CURSOR_PIXELMASK 0x17
  107. #define SEQ_PRIM_HOST_OFF_HI 0x18
  108. #define SEQ_PRIM_HOST_OFF_LO 0x19
  109. #define SEQ_LINEAR_0 0x1a
  110. #define SEQ_LINEAR_1 0x1b
  111. #define SEQ_SEC_HOST_OFF_HI 0x1c
  112. #define SEQ_SEC_HOST_OFF_LO 0x1d
  113. #define SEQ_EXTENDED_MEM_ENA 0x1e
  114. #define SEQ_EXT_CLOCK_MODE 0x1f
  115. #define SEQ_EXT_VIDEO_ADDR 0x20
  116. #define SEQ_EXT_PIXEL_CNTL 0x21
  117. #define SEQ_BUS_WIDTH_FEEDB 0x22
  118. #define SEQ_PERF_SELECT 0x23
  119. #define SEQ_COLOR_EXP_WFG 0x24
  120. #define SEQ_COLOR_EXP_WBG 0x25
  121. #define SEQ_EXT_RW_CONTROL 0x26
  122. #define SEQ_MISC_FEATURE_SEL 0x27
  123. #define SEQ_COLOR_KEY_CNTL 0x28
  124. #define SEQ_COLOR_KEY_MATCH0 0x29
  125. #define SEQ_COLOR_KEY_MATCH1  0x2a
  126. #define SEQ_COLOR_KEY_MATCH2  0x2b
  127. #define SEQ_UNKNOWN6          0x2c
  128. #define SEQ_CRC_CONTROL 0x2d
  129. #define SEQ_CRC_DATA_LOW 0x2e
  130. #define SEQ_CRC_DATA_HIGH 0x2f
  131. #define SEQ_MEMORY_MAP_CNTL 0x30
  132. #define SEQ_ACM_APERTURE_1 0x31
  133. #define SEQ_ACM_APERTURE_2 0x32
  134. #define SEQ_ACM_APERTURE_3 0x33
  135. #define SEQ_BIOS_UTILITY_0 0x3e
  136. #define SEQ_BIOS_UTILITY_1 0x3f
  137. /*
  138.  * Graphics Controller
  139.  */
  140. #define GFX_IDX 0x03ce
  141. #define GFX_DATA 0x03cf
  142. #define GFX_SET_RESET 0x00
  143. #define GFX_ENABLE_SET_RESET 0x01
  144. #define GFX_COLOR_COMPARE 0x02
  145. #define GFX_DATA_ROTATE 0x03
  146. #define GFX_READ_MAP_SELECT 0x04
  147. #define GFX_GRAPHICS_MODE 0x05
  148. #define GFX_MISC 0x06
  149. #define GFX_COLOR_XCARE 0x07
  150. #define GFX_BITMASK 0x08
  151. /*
  152.  * CRT Controller
  153.  */
  154. #define CRT_IDX 0x03d4
  155. #define CRT_DATA 0x03d5
  156. #define CRT_HOR_TOTAL 0x00
  157. #define CRT_HOR_DISP_ENA_END 0x01
  158. #define CRT_START_HOR_BLANK 0x02
  159. #define CRT_END_HOR_BLANK 0x03
  160. #define CRT_START_HOR_RETR 0x04
  161. #define CRT_END_HOR_RETR 0x05
  162. #define CRT_VER_TOTAL 0x06
  163. #define CRT_OVERFLOW 0x07
  164. #define CRT_PRESET_ROW_SCAN 0x08
  165. #define CRT_MAX_SCAN_LINE 0x09
  166. #define CRT_CURSOR_START 0x0a
  167. #define CRT_CURSOR_END 0x0b
  168. #define CRT_START_ADDR_HIGH 0x0c
  169. #define CRT_START_ADDR_LOW 0x0d
  170. #define CRT_CURSOR_LOC_HIGH 0x0e
  171. #define CRT_CURSOR_LOC_LOW 0x0f
  172. #define CRT_START_VER_RETR 0x10
  173. #define CRT_END_VER_RETR 0x11
  174. #define CRT_VER_DISP_ENA_END 0x12
  175. #define CRT_OFFSET 0x13
  176. #define CRT_UNDERLINE_LOC 0x14
  177. #define CRT_START_VER_BLANK 0x15
  178. #define CRT_END_VER_BLANK 0x16
  179. #define CRT_MODE_CONTROL 0x17
  180. #define CRT_LINE_COMPARE 0x18
  181. #define CRT_UNKNOWN1          0x19
  182. #define CRT_UNKNOWN2          0x1a
  183. #define CRT_UNKNOWN3          0x1b
  184. #define CRT_UNKNOWN4          0x1c
  185. #define CRT_UNKNOWN5          0x1d
  186. #define CRT_UNKNOWN6          0x1e
  187. #define CRT_UNKNOWN7          0x1f
  188. #define CRT_UNKNOWN8          0x20
  189. #define CRT_UNKNOWN9 0x21
  190. #define CRT_UNKNOWN10 0x22
  191. #define CRT_UNKNOWN11       0x23
  192. #define CRT_UNKNOWN12       0x24
  193. #define CRT_UNKNOWN13       0x25
  194. #define CRT_UNKNOWN14       0x26
  195. #define CRT_UNKNOWN15       0x27
  196. #define CRT_UNKNOWN16       0x28
  197. #define CRT_UNKNOWN17       0x29
  198. #define CRT_UNKNOWN18       0x2a
  199. #define CRT_UNKNOWN19       0x2b
  200. #define CRT_UNKNOWN20       0x2c
  201. #define CRT_UNKNOWN21       0x2d
  202. #define CRT_UNKNOWN22       0x2e
  203. #define CRT_UNKNOWN23       0x2f
  204. #define CRT_EXT_HOR_TIMING1 0x30 /* NCR crt extensions */
  205. #define CRT_EXT_START_ADDR 0x31
  206. #define CRT_EXT_HOR_TIMING2 0x32
  207. #define CRT_EXT_VER_TIMING 0x33
  208. #define CRT_MONITOR_POWER 0x34
  209. /*
  210.  * General Registers
  211.  */
  212. #define GREG_STATUS0_R 0x03c2
  213. #define GREG_STATUS1_R 0x03da
  214. #define GREG_MISC_OUTPUT_R 0x03cc
  215. #define GREG_MISC_OUTPUT_W 0x03c2
  216. #define GREG_FEATURE_CONTROL_R 0x03ca
  217. #define GREG_FEATURE_CONTROL_W 0x03da
  218. #define GREG_POS 0x0102
  219. /*
  220.  * Attribute Controller
  221.  */
  222. #define ACT_IDX 0x03C0
  223. #define ACT_ADDRESS_R 0x03C0
  224. #define ACT_DATA 0x03C0
  225. #define ACT_ADDRESS_RESET 0x03DA
  226. #define ACT_PALETTE0 0x00
  227. #define ACT_PALETTE1 0x01
  228. #define ACT_PALETTE2 0x02
  229. #define ACT_PALETTE3 0x03
  230. #define ACT_PALETTE4 0x04
  231. #define ACT_PALETTE5 0x05
  232. #define ACT_PALETTE6 0x06
  233. #define ACT_PALETTE7 0x07
  234. #define ACT_PALETTE8 0x08
  235. #define ACT_PALETTE9 0x09
  236. #define ACT_PALETTE10 0x0A
  237. #define ACT_PALETTE11 0x0B
  238. #define ACT_PALETTE12 0x0C
  239. #define ACT_PALETTE13 0x0D
  240. #define ACT_PALETTE14 0x0E
  241. #define ACT_PALETTE15 0x0F
  242. #define ACT_ATTR_MODE_CNTL 0x10
  243. #define ACT_OVERSCAN_COLOR 0x11
  244. #define ACT_COLOR_PLANE_ENA 0x12
  245. #define ACT_HOR_PEL_PANNING 0x13
  246. #define ACT_COLOR_SELECT 0x14
  247. /*
  248.  * PLL
  249.  */
  250. #define PLL_IDX 0x83c8
  251. #define PLL_DATA 0x83c9
  252. /*
  253.  * Blitter operations
  254.  */
  255. #define Z3BLTclear 0x00 /* 0 */
  256. #define Z3BLTand 0x80 /* src AND dst */
  257. #define Z3BLTandReverse 0x40 /* src AND NOT dst */
  258. #define Z3BLTcopy 0xc0 /* src */
  259. #define Z3BLTandInverted 0x20 /* NOT src AND dst */
  260. #define Z3BLTnoop 0xa0 /* dst */
  261. #define Z3BLTxor 0x60 /* src XOR dst */
  262. #define Z3BLTor 0xe0 /* src OR dst */
  263. #define Z3BLTnor 0x10 /* NOT src AND NOT dst */
  264. #define Z3BLTequiv 0x90 /* NOT src XOR dst */
  265. #define Z3BLTinvert 0x50 /* NOT dst */
  266. #define Z3BLTorReverse 0xd0 /* src OR NOT dst */
  267. #define Z3BLTcopyInverted 0x30 /* NOT src */
  268. #define Z3BLTorInverted 0xb0 /* NOT src OR dst */
  269. #define Z3BLTnand 0x70 /* NOT src OR NOT dst */
  270. #define Z3BLTset 0xf0 /* 1 */