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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* radeon_drv.h -- Private header for radeon driver -*- linux-c -*-
  2.  *
  3.  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  4.  * Copyright 2000 VA Linux Systems, Inc., Fremont, California.
  5.  * All rights reserved.
  6.  *
  7.  * Permission is hereby granted, free of charge, to any person obtaining a
  8.  * copy of this software and associated documentation files (the "Software"),
  9.  * to deal in the Software without restriction, including without limitation
  10.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11.  * and/or sell copies of the Software, and to permit persons to whom the
  12.  * Software is furnished to do so, subject to the following conditions:
  13.  *
  14.  * The above copyright notice and this permission notice (including the next
  15.  * paragraph) shall be included in all copies or substantial portions of the
  16.  * Software.
  17.  *
  18.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  21.  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  22.  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  23.  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  24.  * DEALINGS IN THE SOFTWARE.
  25.  *
  26.  * Authors:
  27.  *   Rickard E. (Rik) Faith <faith@valinux.com>
  28.  *   Kevin E. Martin <martin@valinux.com>
  29.  *   Gareth Hughes <gareth@valinux.com>
  30.  *
  31.  */
  32. #ifndef __RADEON_DRV_H__
  33. #define __RADEON_DRV_H__
  34. typedef struct drm_radeon_freelist {
  35.     unsigned int age;
  36.     drm_buf_t *buf;
  37.     struct drm_radeon_freelist *next;
  38.     struct drm_radeon_freelist *prev;
  39. } drm_radeon_freelist_t;
  40. typedef struct drm_radeon_ring_buffer {
  41. u32 *start;
  42. u32 *end;
  43. int size;
  44. int size_l2qw;
  45. volatile u32 *head;
  46. u32 tail;
  47. u32 tail_mask;
  48. int space;
  49. } drm_radeon_ring_buffer_t;
  50. typedef struct drm_radeon_depth_clear_t {
  51. u32 rb3d_cntl;
  52. u32 rb3d_zstencilcntl;
  53. u32 se_cntl;
  54. } drm_radeon_depth_clear_t;
  55. typedef struct drm_radeon_private {
  56. drm_radeon_ring_buffer_t ring;
  57. drm_radeon_sarea_t *sarea_priv;
  58. int agp_size;
  59. u32 agp_vm_start;
  60. u32 agp_buffers_offset;
  61. int cp_mode;
  62. int cp_running;
  63.     drm_radeon_freelist_t *head;
  64.     drm_radeon_freelist_t *tail;
  65. /* FIXME: ROTATE_BUFS is a hask to cycle through bufs until freelist
  66.    code is used.  Note this hides a problem with the scratch register
  67.    (used to keep track of last buffer completed) being written to before
  68.    the last buffer has actually completed rendering. */
  69. #define ROTATE_BUFS 1
  70. #if ROTATE_BUFS
  71. int last_buf;
  72. #endif
  73. volatile u32 *scratch;
  74. int usec_timeout;
  75. int is_pci;
  76. atomic_t idle_count;
  77. int page_flipping;
  78. int current_page;
  79. u32 crtc_offset;
  80. u32 crtc_offset_cntl;
  81. unsigned int color_fmt;
  82. unsigned int front_offset;
  83. unsigned int front_pitch;
  84. unsigned int back_offset;
  85. unsigned int back_pitch;
  86. unsigned int depth_fmt;
  87. unsigned int depth_offset;
  88. unsigned int depth_pitch;
  89. u32 front_pitch_offset;
  90. u32 back_pitch_offset;
  91. u32 depth_pitch_offset;
  92. drm_radeon_depth_clear_t depth_clear;
  93. drm_map_t *sarea;
  94. drm_map_t *fb;
  95. drm_map_t *mmio;
  96. drm_map_t *cp_ring;
  97. drm_map_t *ring_rptr;
  98. drm_map_t *buffers;
  99. drm_map_t *agp_textures;
  100. } drm_radeon_private_t;
  101. typedef struct drm_radeon_buf_priv {
  102. u32 age;
  103. int prim;
  104. int discard;
  105. int dispatched;
  106.     drm_radeon_freelist_t *list_entry;
  107. } drm_radeon_buf_priv_t;
  108. /* radeon_drv.c */
  109. extern int  radeon_version( struct inode *inode, struct file *filp,
  110.     unsigned int cmd, unsigned long arg );
  111. extern int  radeon_open( struct inode *inode, struct file *filp );
  112. extern int  radeon_release( struct inode *inode, struct file *filp );
  113. extern int  radeon_ioctl( struct inode *inode, struct file *filp,
  114.   unsigned int cmd, unsigned long arg );
  115. extern int  radeon_lock( struct inode *inode, struct file *filp,
  116.  unsigned int cmd, unsigned long arg );
  117. extern int  radeon_unlock( struct inode *inode, struct file *filp,
  118.    unsigned int cmd, unsigned long arg );
  119. /* radeon_cp.c */
  120. extern int radeon_cp_init( struct inode *inode, struct file *filp,
  121.    unsigned int cmd, unsigned long arg );
  122. extern int radeon_cp_start( struct inode *inode, struct file *filp,
  123.     unsigned int cmd, unsigned long arg );
  124. extern int radeon_cp_stop( struct inode *inode, struct file *filp,
  125.    unsigned int cmd, unsigned long arg );
  126. extern int radeon_cp_reset( struct inode *inode, struct file *filp,
  127.     unsigned int cmd, unsigned long arg );
  128. extern int radeon_cp_idle( struct inode *inode, struct file *filp,
  129.    unsigned int cmd, unsigned long arg );
  130. extern int radeon_engine_reset( struct inode *inode, struct file *filp,
  131. unsigned int cmd, unsigned long arg );
  132. extern int radeon_fullscreen( struct inode *inode, struct file *filp,
  133.       unsigned int cmd, unsigned long arg );
  134. extern int radeon_cp_buffers( struct inode *inode, struct file *filp,
  135.       unsigned int cmd, unsigned long arg );
  136. extern void radeon_freelist_reset( drm_device_t *dev );
  137. extern drm_buf_t *radeon_freelist_get( drm_device_t *dev );
  138. extern int radeon_wait_ring( drm_radeon_private_t *dev_priv, int n );
  139. extern void radeon_update_ring_snapshot( drm_radeon_private_t *dev_priv );
  140. extern int radeon_do_cp_idle( drm_radeon_private_t *dev_priv );
  141. extern int radeon_do_cleanup_pageflip( drm_device_t *dev );
  142. /* radeon_state.c */
  143. extern int radeon_cp_clear( struct inode *inode, struct file *filp,
  144.     unsigned int cmd, unsigned long arg );
  145. extern int radeon_cp_swap( struct inode *inode, struct file *filp,
  146.    unsigned int cmd, unsigned long arg );
  147. extern int radeon_cp_vertex( struct inode *inode, struct file *filp,
  148.      unsigned int cmd, unsigned long arg );
  149. extern int radeon_cp_indices( struct inode *inode, struct file *filp,
  150.       unsigned int cmd, unsigned long arg );
  151. extern int radeon_cp_blit( struct inode *inode, struct file *filp,
  152.    unsigned int cmd, unsigned long arg );
  153. extern int radeon_cp_stipple( struct inode *inode, struct file *filp,
  154.       unsigned int cmd, unsigned long arg );
  155. extern int radeon_cp_indirect( struct inode *inode, struct file *filp,
  156.        unsigned int cmd, unsigned long arg );
  157. /* radeon_bufs.c */
  158. extern int radeon_addbufs(struct inode *inode, struct file *filp,
  159.   unsigned int cmd, unsigned long arg);
  160. extern int radeon_mapbufs(struct inode *inode, struct file *filp,
  161.   unsigned int cmd, unsigned long arg);
  162. /* radeon_context.c */
  163. extern int  radeon_resctx(struct inode *inode, struct file *filp,
  164.   unsigned int cmd, unsigned long arg);
  165. extern int  radeon_addctx(struct inode *inode, struct file *filp,
  166.   unsigned int cmd, unsigned long arg);
  167. extern int  radeon_modctx(struct inode *inode, struct file *filp,
  168.   unsigned int cmd, unsigned long arg);
  169. extern int  radeon_getctx(struct inode *inode, struct file *filp,
  170.   unsigned int cmd, unsigned long arg);
  171. extern int  radeon_switchctx(struct inode *inode, struct file *filp,
  172.      unsigned int cmd, unsigned long arg);
  173. extern int  radeon_newctx(struct inode *inode, struct file *filp,
  174.   unsigned int cmd, unsigned long arg);
  175. extern int  radeon_rmctx(struct inode *inode, struct file *filp,
  176.  unsigned int cmd, unsigned long arg);
  177. extern int  radeon_context_switch(drm_device_t *dev, int old, int new);
  178. extern int  radeon_context_switch_complete(drm_device_t *dev, int new);
  179. /* Register definitions, register access macros and drmAddMap constants
  180.  * for Radeon kernel driver.
  181.  */
  182. #define RADEON_AUX_SCISSOR_CNTL 0x26f0
  183. # define RADEON_EXCLUSIVE_SCISSOR_0 (1 << 24)
  184. # define RADEON_EXCLUSIVE_SCISSOR_1 (1 << 25)
  185. # define RADEON_EXCLUSIVE_SCISSOR_2 (1 << 26)
  186. # define RADEON_SCISSOR_0_ENABLE (1 << 28)
  187. # define RADEON_SCISSOR_1_ENABLE (1 << 29)
  188. # define RADEON_SCISSOR_2_ENABLE (1 << 30)
  189. #define RADEON_BUS_CNTL 0x0030
  190. # define RADEON_BUS_MASTER_DIS (1 << 6)
  191. #define RADEON_CLOCK_CNTL_DATA 0x000c
  192. # define RADEON_PLL_WR_EN (1 << 7)
  193. #define RADEON_CLOCK_CNTL_INDEX 0x0008
  194. #define RADEON_CONFIG_APER_SIZE 0x0108
  195. #define RADEON_CRTC_OFFSET 0x0224
  196. #define RADEON_CRTC_OFFSET_CNTL 0x0228
  197. # define RADEON_CRTC_TILE_EN (1 << 15)
  198. # define RADEON_CRTC_OFFSET_FLIP_CNTL (1 << 16)
  199. #define RADEON_RB3D_COLORPITCH 0x1c48
  200. #define RADEON_RB3D_DEPTHCLEARVALUE 0x1c30
  201. #define RADEON_RB3D_DEPTHXY_OFFSET 0x1c60
  202. #define RADEON_DP_GUI_MASTER_CNTL 0x146c
  203. # define RADEON_GMC_SRC_PITCH_OFFSET_CNTL (1 << 0)
  204. # define RADEON_GMC_DST_PITCH_OFFSET_CNTL (1 << 1)
  205. # define RADEON_GMC_BRUSH_SOLID_COLOR (13 << 4)
  206. # define RADEON_GMC_BRUSH_NONE (15 << 4)
  207. # define RADEON_GMC_DST_16BPP (4 << 8)
  208. # define RADEON_GMC_DST_24BPP (5 << 8)
  209. # define RADEON_GMC_DST_32BPP (6 << 8)
  210. # define RADEON_GMC_DST_DATATYPE_SHIFT 8
  211. # define RADEON_GMC_SRC_DATATYPE_COLOR (3 << 12)
  212. # define RADEON_DP_SRC_SOURCE_MEMORY (2 << 24)
  213. # define RADEON_DP_SRC_SOURCE_HOST_DATA (3 << 24)
  214. # define RADEON_GMC_CLR_CMP_CNTL_DIS (1 << 28)
  215. # define RADEON_GMC_WR_MSK_DIS (1 << 30)
  216. # define RADEON_ROP3_S 0x00cc0000
  217. # define RADEON_ROP3_P 0x00f00000
  218. #define RADEON_DP_WRITE_MASK 0x16cc
  219. #define RADEON_DST_PITCH_OFFSET 0x142c
  220. #define RADEON_DST_PITCH_OFFSET_C 0x1c80
  221. # define RADEON_DST_TILE_LINEAR (0 << 30)
  222. # define RADEON_DST_TILE_MACRO (1 << 30)
  223. # define RADEON_DST_TILE_MICRO (2 << 30)
  224. # define RADEON_DST_TILE_BOTH (3 << 30)
  225. #define RADEON_SCRATCH_REG0 0x15e0
  226. #define RADEON_SCRATCH_REG1 0x15e4
  227. #define RADEON_SCRATCH_REG2 0x15e8
  228. #define RADEON_SCRATCH_REG3 0x15ec
  229. #define RADEON_SCRATCH_REG4 0x15f0
  230. #define RADEON_SCRATCH_REG5 0x15f4
  231. #define RADEON_SCRATCH_UMSK 0x0770
  232. #define RADEON_SCRATCH_ADDR 0x0774
  233. #define RADEON_HOST_PATH_CNTL 0x0130
  234. # define RADEON_HDP_SOFT_RESET (1 << 26)
  235. # define RADEON_HDP_WC_TIMEOUT_MASK (7 << 28)
  236. # define RADEON_HDP_WC_TIMEOUT_28BCLK (7 << 28)
  237. #define RADEON_ISYNC_CNTL 0x1724
  238. # define RADEON_ISYNC_ANY2D_IDLE3D (1 << 0)
  239. # define RADEON_ISYNC_ANY3D_IDLE2D (1 << 1)
  240. # define RADEON_ISYNC_TRIG2D_IDLE3D (1 << 2)
  241. # define RADEON_ISYNC_TRIG3D_IDLE2D (1 << 3)
  242. # define RADEON_ISYNC_WAIT_IDLEGUI (1 << 4)
  243. # define RADEON_ISYNC_CPSCRATCH_IDLEGUI (1 << 5)
  244. #define RADEON_MC_AGP_LOCATION 0x014c
  245. #define RADEON_MC_FB_LOCATION 0x0148
  246. #define RADEON_MCLK_CNTL 0x0012
  247. #define RADEON_PP_BORDER_COLOR_0 0x1d40
  248. #define RADEON_PP_BORDER_COLOR_1 0x1d44
  249. #define RADEON_PP_BORDER_COLOR_2 0x1d48
  250. #define RADEON_PP_CNTL 0x1c38
  251. # define RADEON_SCISSOR_ENABLE (1 <<  1)
  252. #define RADEON_PP_LUM_MATRIX 0x1d00
  253. #define RADEON_PP_MISC 0x1c14
  254. #define RADEON_PP_ROT_MATRIX_0 0x1d58
  255. #define RADEON_PP_TXFILTER_0 0x1c54
  256. #define RADEON_PP_TXFILTER_1 0x1c6c
  257. #define RADEON_PP_TXFILTER_2 0x1c84
  258. #define RADEON_RB2D_DSTCACHE_CTLSTAT 0x342c
  259. # define RADEON_RB2D_DC_FLUSH (3 << 0)
  260. # define RADEON_RB2D_DC_FREE (3 << 2)
  261. # define RADEON_RB2D_DC_FLUSH_ALL 0xf
  262. # define RADEON_RB2D_DC_BUSY (1 << 31)
  263. #define RADEON_RB3D_CNTL 0x1c3c
  264. # define RADEON_ALPHA_BLEND_ENABLE (1 << 0)
  265. # define RADEON_PLANE_MASK_ENABLE (1 << 1)
  266. # define RADEON_DITHER_ENABLE (1 << 2)
  267. # define RADEON_ROUND_ENABLE (1 << 3)
  268. # define RADEON_SCALE_DITHER_ENABLE (1 << 4)
  269. # define RADEON_DITHER_INIT (1 << 5)
  270. # define RADEON_ROP_ENABLE (1 << 6)
  271. # define RADEON_STENCIL_ENABLE (1 << 7)
  272. # define RADEON_Z_ENABLE (1 << 8)
  273. # define RADEON_DEPTH_XZ_OFFEST_ENABLE (1 << 9)
  274. # define RADEON_ZBLOCK8 (0 << 15)
  275. # define RADEON_ZBLOCK16 (1 << 15)
  276. #define RADEON_RB3D_DEPTHOFFSET 0x1c24
  277. #define RADEON_RB3D_PLANEMASK 0x1d84
  278. #define RADEON_RB3D_STENCILREFMASK 0x1d7c
  279. #define RADEON_RB3D_ZCACHE_MODE 0x3250
  280. #define RADEON_RB3D_ZCACHE_CTLSTAT 0x3254
  281. # define RADEON_RB3D_ZC_FLUSH (1 << 0)
  282. # define RADEON_RB3D_ZC_FREE (1 << 2)
  283. # define RADEON_RB3D_ZC_FLUSH_ALL 0x5
  284. # define RADEON_RB3D_ZC_BUSY (1 << 31)
  285. #define RADEON_RB3D_ZSTENCILCNTL 0x1c2c
  286. # define RADEON_Z_TEST_MASK (7 << 4)
  287. # define RADEON_Z_TEST_ALWAYS (7 << 4)
  288. # define RADEON_STENCIL_TEST_ALWAYS (7 << 12)
  289. # define RADEON_STENCIL_S_FAIL_KEEP (0 << 16)
  290. # define RADEON_STENCIL_ZPASS_KEEP (0 << 20)
  291. # define RADEON_STENCIL_ZFAIL_KEEP (0 << 20)
  292. # define RADEON_Z_WRITE_ENABLE (1 << 30)
  293. #define RADEON_RBBM_SOFT_RESET 0x00f0
  294. # define RADEON_SOFT_RESET_CP (1 <<  0)
  295. # define RADEON_SOFT_RESET_HI (1 <<  1)
  296. # define RADEON_SOFT_RESET_SE (1 <<  2)
  297. # define RADEON_SOFT_RESET_RE (1 <<  3)
  298. # define RADEON_SOFT_RESET_PP (1 <<  4)
  299. # define RADEON_SOFT_RESET_E2 (1 <<  5)
  300. # define RADEON_SOFT_RESET_RB (1 <<  6)
  301. # define RADEON_SOFT_RESET_HDP (1 <<  7)
  302. #define RADEON_RBBM_STATUS 0x0e40
  303. # define RADEON_RBBM_FIFOCNT_MASK 0x007f
  304. # define RADEON_RBBM_ACTIVE (1 << 31)
  305. #define RADEON_RE_LINE_PATTERN 0x1cd0
  306. #define RADEON_RE_MISC 0x26c4
  307. #define RADEON_RE_TOP_LEFT 0x26c0
  308. #define RADEON_RE_WIDTH_HEIGHT 0x1c44
  309. #define RADEON_RE_STIPPLE_ADDR 0x1cc8
  310. #define RADEON_RE_STIPPLE_DATA 0x1ccc
  311. #define RADEON_SCISSOR_TL_0 0x1cd8
  312. #define RADEON_SCISSOR_BR_0 0x1cdc
  313. #define RADEON_SCISSOR_TL_1 0x1ce0
  314. #define RADEON_SCISSOR_BR_1 0x1ce4
  315. #define RADEON_SCISSOR_TL_2 0x1ce8
  316. #define RADEON_SCISSOR_BR_2 0x1cec
  317. #define RADEON_SE_COORD_FMT 0x1c50
  318. #define RADEON_SE_CNTL 0x1c4c
  319. # define RADEON_FFACE_CULL_CW (0 << 0)
  320. # define RADEON_BFACE_SOLID (3 << 1)
  321. # define RADEON_FFACE_SOLID (3 << 3)
  322. # define RADEON_FLAT_SHADE_VTX_LAST (3 << 6)
  323. # define RADEON_DIFFUSE_SHADE_FLAT (1 << 8)
  324. # define RADEON_DIFFUSE_SHADE_GOURAUD (2 << 8)
  325. # define RADEON_ALPHA_SHADE_FLAT (1 << 10)
  326. # define RADEON_ALPHA_SHADE_GOURAUD (2 << 10)
  327. # define RADEON_SPECULAR_SHADE_FLAT (1 << 12)
  328. # define RADEON_SPECULAR_SHADE_GOURAUD (2 << 12)
  329. # define RADEON_FOG_SHADE_FLAT (1 << 14)
  330. # define RADEON_FOG_SHADE_GOURAUD (2 << 14)
  331. # define RADEON_VPORT_XY_XFORM_ENABLE (1 << 24)
  332. # define RADEON_VPORT_Z_XFORM_ENABLE (1 << 25)
  333. # define RADEON_VTX_PIX_CENTER_OGL (1 << 27)
  334. # define RADEON_ROUND_MODE_TRUNC (0 << 28)
  335. # define RADEON_ROUND_PREC_8TH_PIX (1 << 30)
  336. #define RADEON_SE_CNTL_STATUS 0x2140
  337. #define RADEON_SE_LINE_WIDTH 0x1db8
  338. #define RADEON_SE_VPORT_XSCALE 0x1d98
  339. #define RADEON_SURFACE_ACCESS_FLAGS 0x0bf8
  340. #define RADEON_SURFACE_ACCESS_CLR 0x0bfc
  341. #define RADEON_SURFACE_CNTL 0x0b00
  342. # define RADEON_SURF_TRANSLATION_DIS (1 << 8)
  343. # define RADEON_NONSURF_AP0_SWP_MASK (3 << 20)
  344. # define RADEON_NONSURF_AP0_SWP_LITTLE (0 << 20)
  345. # define RADEON_NONSURF_AP0_SWP_BIG16 (1 << 20)
  346. # define RADEON_NONSURF_AP0_SWP_BIG32 (2 << 20)
  347. # define RADEON_NONSURF_AP1_SWP_MASK (3 << 22)
  348. # define RADEON_NONSURF_AP1_SWP_LITTLE (0 << 22)
  349. # define RADEON_NONSURF_AP1_SWP_BIG16 (1 << 22)
  350. # define RADEON_NONSURF_AP1_SWP_BIG32 (2 << 22)
  351. #define RADEON_SURFACE0_INFO 0x0b0c
  352. # define RADEON_SURF_PITCHSEL_MASK (0x1ff << 0)
  353. # define RADEON_SURF_TILE_MODE_MASK (3 << 16)
  354. # define RADEON_SURF_TILE_MODE_MACRO (0 << 16)
  355. # define RADEON_SURF_TILE_MODE_MICRO (1 << 16)
  356. # define RADEON_SURF_TILE_MODE_32BIT_Z (2 << 16)
  357. # define RADEON_SURF_TILE_MODE_16BIT_Z (3 << 16)
  358. #define RADEON_SURFACE0_LOWER_BOUND 0x0b04
  359. #define RADEON_SURFACE0_UPPER_BOUND 0x0b08
  360. #define RADEON_SURFACE1_INFO 0x0b1c
  361. #define RADEON_SURFACE1_LOWER_BOUND 0x0b14
  362. #define RADEON_SURFACE1_UPPER_BOUND 0x0b18
  363. #define RADEON_SURFACE2_INFO 0x0b2c
  364. #define RADEON_SURFACE2_LOWER_BOUND 0x0b24
  365. #define RADEON_SURFACE2_UPPER_BOUND 0x0b28
  366. #define RADEON_SURFACE3_INFO 0x0b3c
  367. #define RADEON_SURFACE3_LOWER_BOUND 0x0b34
  368. #define RADEON_SURFACE3_UPPER_BOUND 0x0b38
  369. #define RADEON_SURFACE4_INFO 0x0b4c
  370. #define RADEON_SURFACE4_LOWER_BOUND 0x0b44
  371. #define RADEON_SURFACE4_UPPER_BOUND 0x0b48
  372. #define RADEON_SURFACE5_INFO 0x0b5c
  373. #define RADEON_SURFACE5_LOWER_BOUND 0x0b54
  374. #define RADEON_SURFACE5_UPPER_BOUND 0x0b58
  375. #define RADEON_SURFACE6_INFO 0x0b6c
  376. #define RADEON_SURFACE6_LOWER_BOUND 0x0b64
  377. #define RADEON_SURFACE6_UPPER_BOUND 0x0b68
  378. #define RADEON_SURFACE7_INFO 0x0b7c
  379. #define RADEON_SURFACE7_LOWER_BOUND 0x0b74
  380. #define RADEON_SURFACE7_UPPER_BOUND 0x0b78
  381. #define RADEON_SW_SEMAPHORE 0x013c
  382. #define RADEON_WAIT_UNTIL 0x1720
  383. # define RADEON_WAIT_CRTC_PFLIP (1 << 0)
  384. # define RADEON_WAIT_2D_IDLECLEAN (1 << 16)
  385. # define RADEON_WAIT_3D_IDLECLEAN (1 << 17)
  386. # define RADEON_WAIT_HOST_IDLECLEAN (1 << 18)
  387. #define RADEON_RB3D_ZMASKOFFSET 0x1c34
  388. #define RADEON_RB3D_ZSTENCILCNTL 0x1c2c
  389. # define RADEON_DEPTH_FORMAT_16BIT_INT_Z (0 << 0)
  390. # define RADEON_DEPTH_FORMAT_24BIT_INT_Z (2 << 0)
  391. /* CP registers */
  392. #define RADEON_CP_ME_RAM_ADDR 0x07d4
  393. #define RADEON_CP_ME_RAM_RADDR 0x07d8
  394. #define RADEON_CP_ME_RAM_DATAH 0x07dc
  395. #define RADEON_CP_ME_RAM_DATAL 0x07e0
  396. #define RADEON_CP_RB_BASE 0x0700
  397. #define RADEON_CP_RB_CNTL 0x0704
  398. #define RADEON_CP_RB_RPTR_ADDR 0x070c
  399. #define RADEON_CP_RB_RPTR 0x0710
  400. #define RADEON_CP_RB_WPTR 0x0714
  401. #define RADEON_CP_RB_WPTR_DELAY 0x0718
  402. # define RADEON_PRE_WRITE_TIMER_SHIFT 0
  403. # define RADEON_PRE_WRITE_LIMIT_SHIFT 23
  404. #define RADEON_CP_IB_BASE 0x0738
  405. #define RADEON_CP_CSQ_CNTL 0x0740
  406. # define RADEON_CSQ_CNT_PRIMARY_MASK (0xff << 0)
  407. # define RADEON_CSQ_PRIDIS_INDDIS (0 << 28)
  408. # define RADEON_CSQ_PRIPIO_INDDIS (1 << 28)
  409. # define RADEON_CSQ_PRIBM_INDDIS (2 << 28)
  410. # define RADEON_CSQ_PRIPIO_INDBM (3 << 28)
  411. # define RADEON_CSQ_PRIBM_INDBM (4 << 28)
  412. # define RADEON_CSQ_PRIPIO_INDPIO (15 << 28)
  413. #define RADEON_AIC_CNTL 0x01d0
  414. # define RADEON_PCIGART_TRANSLATE_EN (1 << 0)
  415. /* CP command packets */
  416. #define RADEON_CP_PACKET0 0x00000000
  417. # define RADEON_ONE_REG_WR (1 << 15)
  418. #define RADEON_CP_PACKET1 0x40000000
  419. #define RADEON_CP_PACKET2 0x80000000
  420. #define RADEON_CP_PACKET3 0xC0000000
  421. # define RADEON_3D_RNDR_GEN_INDX_PRIM 0x00002300
  422. # define RADEON_WAIT_FOR_IDLE 0x00002600
  423. # define RADEON_3D_DRAW_IMMD 0x00002900
  424. # define RADEON_3D_CLEAR_ZMASK 0x00003200
  425. # define RADEON_CNTL_HOSTDATA_BLT 0x00009400
  426. # define RADEON_CNTL_PAINT_MULTI 0x00009A00
  427. # define RADEON_CNTL_BITBLT_MULTI 0x00009B00
  428. #define RADEON_CP_PACKET_MASK 0xC0000000
  429. #define RADEON_CP_PACKET_COUNT_MASK 0x3fff0000
  430. #define RADEON_CP_PACKET0_REG_MASK 0x000007ff
  431. #define RADEON_CP_PACKET1_REG0_MASK 0x000007ff
  432. #define RADEON_CP_PACKET1_REG1_MASK 0x003ff800
  433. #define RADEON_VTX_Z_PRESENT (1 << 31)
  434. #define RADEON_PRIM_TYPE_NONE (0 << 0)
  435. #define RADEON_PRIM_TYPE_POINT (1 << 0)
  436. #define RADEON_PRIM_TYPE_LINE (2 << 0)
  437. #define RADEON_PRIM_TYPE_LINE_STRIP (3 << 0)
  438. #define RADEON_PRIM_TYPE_TRI_LIST (4 << 0)
  439. #define RADEON_PRIM_TYPE_TRI_FAN (5 << 0)
  440. #define RADEON_PRIM_TYPE_TRI_STRIP (6 << 0)
  441. #define RADEON_PRIM_TYPE_TRI_TYPE2 (7 << 0)
  442. #define RADEON_PRIM_TYPE_RECT_LIST (8 << 0)
  443. #define RADEON_PRIM_TYPE_3VRT_POINT_LIST (9 << 0)
  444. #define RADEON_PRIM_TYPE_3VRT_LINE_LIST (10 << 0)
  445. #define RADEON_PRIM_WALK_IND (1 << 4)
  446. #define RADEON_PRIM_WALK_LIST (2 << 4)
  447. #define RADEON_PRIM_WALK_RING (3 << 4)
  448. #define RADEON_COLOR_ORDER_BGRA (0 << 6)
  449. #define RADEON_COLOR_ORDER_RGBA (1 << 6)
  450. #define RADEON_MAOS_ENABLE (1 << 7)
  451. #define RADEON_VTX_FMT_R128_MODE (0 << 8)
  452. #define RADEON_VTX_FMT_RADEON_MODE (1 << 8)
  453. #define RADEON_NUM_VERTICES_SHIFT 16
  454. #define RADEON_COLOR_FORMAT_CI8 2
  455. #define RADEON_COLOR_FORMAT_ARGB1555 3
  456. #define RADEON_COLOR_FORMAT_RGB565 4
  457. #define RADEON_COLOR_FORMAT_ARGB8888 6
  458. #define RADEON_COLOR_FORMAT_RGB332 7
  459. #define RADEON_COLOR_FORMAT_RGB8 9
  460. #define RADEON_COLOR_FORMAT_ARGB4444 15
  461. #define RADEON_TXF_8BPP_I 0
  462. #define RADEON_TXF_16BPP_AI88 1
  463. #define RADEON_TXF_8BPP_RGB332 2
  464. #define RADEON_TXF_16BPP_ARGB1555 3
  465. #define RADEON_TXF_16BPP_RGB565 4
  466. #define RADEON_TXF_16BPP_ARGB4444 5
  467. #define RADEON_TXF_32BPP_ARGB8888 6
  468. #define RADEON_TXF_32BPP_RGBA8888 7
  469. /* Constants */
  470. #define RADEON_MAX_USEC_TIMEOUT 100000 /* 100 ms */
  471. #define RADEON_LAST_FRAME_REG RADEON_SCRATCH_REG0
  472. #define RADEON_LAST_DISPATCH_REG RADEON_SCRATCH_REG1
  473. #define RADEON_LAST_CLEAR_REG RADEON_SCRATCH_REG2
  474. #define RADEON_LAST_DISPATCH 1
  475. #define RADEON_MAX_VB_AGE 0x7fffffff
  476. #define RADEON_MAX_VB_VERTS (0xffff)
  477. #define RADEON_BASE(reg) ((u32)(dev_priv->mmio->handle))
  478. #define RADEON_ADDR(reg) (RADEON_BASE(reg) + reg)
  479. #define RADEON_DEREF(reg) *(__volatile__ u32 *)RADEON_ADDR(reg)
  480. #define RADEON_READ(reg) RADEON_DEREF(reg)
  481. #define RADEON_WRITE(reg,val) do { RADEON_DEREF(reg) = val; } while (0)
  482. #define RADEON_DEREF8(reg) *(__volatile__ u8 *)RADEON_ADDR(reg)
  483. #define RADEON_READ8(reg) RADEON_DEREF8(reg)
  484. #define RADEON_WRITE8(reg,val) do { RADEON_DEREF8(reg) = val; } while (0)
  485. #define RADEON_WRITE_PLL(addr,val)                                            
  486. do {                                                                          
  487. RADEON_WRITE8(RADEON_CLOCK_CNTL_INDEX,                                
  488.       ((addr) & 0x1f) | RADEON_PLL_WR_EN);                    
  489. RADEON_WRITE(RADEON_CLOCK_CNTL_DATA, (val));                          
  490. } while (0)
  491. extern int RADEON_READ_PLL(drm_device_t *dev, int addr);
  492. #define CP_PACKET0( reg, n )
  493. (RADEON_CP_PACKET0 | ((n) << 16) | ((reg) >> 2))
  494. #define CP_PACKET0_TABLE( reg, n )
  495. (RADEON_CP_PACKET0 | RADEON_ONE_REG_WR | ((n) << 16) | ((reg) >> 2))
  496. #define CP_PACKET1( reg0, reg1 )
  497. (RADEON_CP_PACKET1 | (((reg1) >> 2) << 15) | ((reg0) >> 2))
  498. #define CP_PACKET2()
  499. (RADEON_CP_PACKET2)
  500. #define CP_PACKET3( pkt, n )
  501. (RADEON_CP_PACKET3 | (pkt) | ((n) << 16))
  502. /* ================================================================
  503.  * Engine control helper macros
  504.  */
  505. #define RADEON_WAIT_UNTIL_2D_IDLE()
  506. do {
  507. OUT_RING( CP_PACKET0( RADEON_WAIT_UNTIL, 0 ) );
  508. OUT_RING( (RADEON_WAIT_2D_IDLECLEAN |
  509.    RADEON_WAIT_HOST_IDLECLEAN) );
  510. } while (0)
  511. #define RADEON_WAIT_UNTIL_3D_IDLE()
  512. do {
  513. OUT_RING( CP_PACKET0( RADEON_WAIT_UNTIL, 0 ) );
  514. OUT_RING( (RADEON_WAIT_3D_IDLECLEAN |
  515.    RADEON_WAIT_HOST_IDLECLEAN) );
  516. } while (0)
  517. #define RADEON_WAIT_UNTIL_IDLE()
  518. do {
  519. OUT_RING( CP_PACKET0( RADEON_WAIT_UNTIL, 0 ) );
  520. OUT_RING( (RADEON_WAIT_2D_IDLECLEAN |
  521.    RADEON_WAIT_3D_IDLECLEAN |
  522.    RADEON_WAIT_HOST_IDLECLEAN) );
  523. } while (0)
  524. #define RADEON_WAIT_UNTIL_PAGE_FLIPPED()
  525. do {
  526. OUT_RING( CP_PACKET0( RADEON_WAIT_UNTIL, 0 ) );
  527. OUT_RING( RADEON_WAIT_CRTC_PFLIP );
  528. } while (0)
  529. #define RADEON_FLUSH_CACHE()
  530. do {
  531. OUT_RING( CP_PACKET0( RADEON_RB2D_DSTCACHE_CTLSTAT, 0 ) );
  532. OUT_RING( RADEON_RB2D_DC_FLUSH );
  533. } while (0)
  534. #define RADEON_PURGE_CACHE()
  535. do {
  536. OUT_RING( CP_PACKET0( RADEON_RB2D_DSTCACHE_CTLSTAT, 0 ) );
  537. OUT_RING( RADEON_RB2D_DC_FLUSH_ALL );
  538. } while (0)
  539. #define RADEON_FLUSH_ZCACHE()
  540. do {
  541. OUT_RING( CP_PACKET0( RADEON_RB3D_ZCACHE_CTLSTAT, 0 ) );
  542. OUT_RING( RADEON_RB3D_ZC_FLUSH );
  543. } while (0)
  544. #define RADEON_PURGE_ZCACHE()
  545. do {
  546. OUT_RING( CP_PACKET0( RADEON_RB3D_ZCACHE_CTLSTAT, 0 ) );
  547. OUT_RING( RADEON_RB3D_ZC_FLUSH_ALL );
  548. } while (0)
  549. /* ================================================================
  550.  * Misc helper macros
  551.  */
  552. #define VB_AGE_CHECK_WITH_RET( dev_priv )
  553. do {
  554. drm_radeon_sarea_t *sarea_priv = dev_priv->sarea_priv;
  555. if ( sarea_priv->last_dispatch >= RADEON_MAX_VB_AGE ) {
  556. int __ret = radeon_do_cp_idle( dev_priv );
  557. if ( __ret < 0 ) return __ret;
  558. sarea_priv->last_dispatch = 0;
  559. radeon_freelist_reset( dev );
  560. }
  561. } while (0)
  562. #define RADEON_DISPATCH_AGE( age )
  563. do {
  564. OUT_RING( CP_PACKET0( RADEON_LAST_DISPATCH_REG, 0 ) );
  565. OUT_RING( age );
  566. } while (0)
  567. #define RADEON_FRAME_AGE( age )
  568. do {
  569. OUT_RING( CP_PACKET0( RADEON_LAST_FRAME_REG, 0 ) );
  570. OUT_RING( age );
  571. } while (0)
  572. #define RADEON_CLEAR_AGE( age )
  573. do {
  574. OUT_RING( CP_PACKET0( RADEON_LAST_CLEAR_REG, 0 ) );
  575. OUT_RING( age );
  576. } while (0)
  577. /* ================================================================
  578.  * Ring control
  579.  */
  580. #define radeon_flush_write_combine() mb()
  581. #define RADEON_VERBOSE 0
  582. #define RING_LOCALS int write; unsigned int mask; volatile u32 *ring;
  583. #define BEGIN_RING( n ) do {
  584. if ( RADEON_VERBOSE ) {
  585. DRM_INFO( "BEGIN_RING( %d ) in %sn",
  586.    n, __FUNCTION__ );
  587. }
  588. if ( dev_priv->ring.space < (n) * sizeof(u32) ) {
  589. radeon_wait_ring( dev_priv, (n) * sizeof(u32) );
  590. }
  591. dev_priv->ring.space -= (n) * sizeof(u32);
  592. ring = dev_priv->ring.start;
  593. write = dev_priv->ring.tail;
  594. mask = dev_priv->ring.tail_mask;
  595. } while (0)
  596. #define ADVANCE_RING() do {
  597. if ( RADEON_VERBOSE ) {
  598. DRM_INFO( "ADVANCE_RING() tail=0x%06x wr=0x%06xn",
  599.   write, dev_priv->ring.tail );
  600. }
  601. radeon_flush_write_combine();
  602. dev_priv->ring.tail = write;
  603. RADEON_WRITE( RADEON_CP_RB_WPTR, write );
  604. } while (0)
  605. #define OUT_RING( x ) do {
  606. if ( RADEON_VERBOSE ) {
  607. DRM_INFO( "   OUT_RING( 0x%08x ) at 0x%xn",
  608.    (unsigned int)(x), write );
  609. }
  610. ring[write++] = (x);
  611. write &= mask;
  612. } while (0)
  613. #define RADEON_PERFORMANCE_BOXES 0
  614. #endif /* __RADEON_DRV_H__ */