radeon_drv.h 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404
  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. * Kevin E. Martin <martin@valinux.com>
  28. * Gareth Hughes <gareth@valinux.com>
  29. */
  30. #ifndef __RADEON_DRV_H__
  31. #define __RADEON_DRV_H__
  32. /* General customization:
  33. */
  34. #define DRIVER_AUTHOR "Gareth Hughes, Keith Whitwell, others."
  35. #define DRIVER_NAME "radeon"
  36. #define DRIVER_DESC "ATI Radeon"
  37. #define DRIVER_DATE "20080528"
  38. /* Interface history:
  39. *
  40. * 1.1 - ??
  41. * 1.2 - Add vertex2 ioctl (keith)
  42. * - Add stencil capability to clear ioctl (gareth, keith)
  43. * - Increase MAX_TEXTURE_LEVELS (brian)
  44. * 1.3 - Add cmdbuf ioctl (keith)
  45. * - Add support for new radeon packets (keith)
  46. * - Add getparam ioctl (keith)
  47. * - Add flip-buffers ioctl, deprecate fullscreen foo (keith).
  48. * 1.4 - Add scratch registers to get_param ioctl.
  49. * 1.5 - Add r200 packets to cmdbuf ioctl
  50. * - Add r200 function to init ioctl
  51. * - Add 'scalar2' instruction to cmdbuf
  52. * 1.6 - Add static GART memory manager
  53. * Add irq handler (won't be turned on unless X server knows to)
  54. * Add irq ioctls and irq_active getparam.
  55. * Add wait command for cmdbuf ioctl
  56. * Add GART offset query for getparam
  57. * 1.7 - Add support for cube map registers: R200_PP_CUBIC_FACES_[0..5]
  58. * and R200_PP_CUBIC_OFFSET_F1_[0..5].
  59. * Added packets R200_EMIT_PP_CUBIC_FACES_[0..5] and
  60. * R200_EMIT_PP_CUBIC_OFFSETS_[0..5]. (brian)
  61. * 1.8 - Remove need to call cleanup ioctls on last client exit (keith)
  62. * Add 'GET' queries for starting additional clients on different VT's.
  63. * 1.9 - Add DRM_IOCTL_RADEON_CP_RESUME ioctl.
  64. * Add texture rectangle support for r100.
  65. * 1.10- Add SETPARAM ioctl; first parameter to set is FB_LOCATION, which
  66. * clients use to tell the DRM where they think the framebuffer is
  67. * located in the card's address space
  68. * 1.11- Add packet R200_EMIT_RB3D_BLENDCOLOR to support GL_EXT_blend_color
  69. * and GL_EXT_blend_[func|equation]_separate on r200
  70. * 1.12- Add R300 CP microcode support - this just loads the CP on r300
  71. * (No 3D support yet - just microcode loading).
  72. * 1.13- Add packet R200_EMIT_TCL_POINT_SPRITE_CNTL for ARB_point_parameters
  73. * - Add hyperz support, add hyperz flags to clear ioctl.
  74. * 1.14- Add support for color tiling
  75. * - Add R100/R200 surface allocation/free support
  76. * 1.15- Add support for texture micro tiling
  77. * - Add support for r100 cube maps
  78. * 1.16- Add R200_EMIT_PP_TRI_PERF_CNTL packet to support brilinear
  79. * texture filtering on r200
  80. * 1.17- Add initial support for R300 (3D).
  81. * 1.18- Add support for GL_ATI_fragment_shader, new packets
  82. * R200_EMIT_PP_AFS_0/1, R200_EMIT_PP_TXCTLALL_0-5 (replaces
  83. * R200_EMIT_PP_TXFILTER_0-5, 2 more regs) and R200_EMIT_ATF_TFACTOR
  84. * (replaces R200_EMIT_TFACTOR_0 (8 consts instead of 6)
  85. * 1.19- Add support for gart table in FB memory and PCIE r300
  86. * 1.20- Add support for r300 texrect
  87. * 1.21- Add support for card type getparam
  88. * 1.22- Add support for texture cache flushes (R300_TX_CNTL)
  89. * 1.23- Add new radeon memory map work from benh
  90. * 1.24- Add general-purpose packet for manipulating scratch registers (r300)
  91. * 1.25- Add support for r200 vertex programs (R200_EMIT_VAP_PVS_CNTL,
  92. * new packet type)
  93. * 1.26- Add support for variable size PCI(E) gart aperture
  94. * 1.27- Add support for IGP GART
  95. * 1.28- Add support for VBL on CRTC2
  96. * 1.29- R500 3D cmd buffer support
  97. */
  98. #define DRIVER_MAJOR 1
  99. #define DRIVER_MINOR 29
  100. #define DRIVER_PATCHLEVEL 0
  101. /*
  102. * Radeon chip families
  103. */
  104. enum radeon_family {
  105. CHIP_R100,
  106. CHIP_RV100,
  107. CHIP_RS100,
  108. CHIP_RV200,
  109. CHIP_RS200,
  110. CHIP_R200,
  111. CHIP_RV250,
  112. CHIP_RS300,
  113. CHIP_RV280,
  114. CHIP_R300,
  115. CHIP_R350,
  116. CHIP_RV350,
  117. CHIP_RV380,
  118. CHIP_R420,
  119. CHIP_RV410,
  120. CHIP_RS480,
  121. CHIP_RS690,
  122. CHIP_RV515,
  123. CHIP_R520,
  124. CHIP_RV530,
  125. CHIP_RV560,
  126. CHIP_RV570,
  127. CHIP_R580,
  128. CHIP_LAST,
  129. };
  130. enum radeon_cp_microcode_version {
  131. UCODE_R100,
  132. UCODE_R200,
  133. UCODE_R300,
  134. };
  135. /*
  136. * Chip flags
  137. */
  138. enum radeon_chip_flags {
  139. RADEON_FAMILY_MASK = 0x0000ffffUL,
  140. RADEON_FLAGS_MASK = 0xffff0000UL,
  141. RADEON_IS_MOBILITY = 0x00010000UL,
  142. RADEON_IS_IGP = 0x00020000UL,
  143. RADEON_SINGLE_CRTC = 0x00040000UL,
  144. RADEON_IS_AGP = 0x00080000UL,
  145. RADEON_HAS_HIERZ = 0x00100000UL,
  146. RADEON_IS_PCIE = 0x00200000UL,
  147. RADEON_NEW_MEMMAP = 0x00400000UL,
  148. RADEON_IS_PCI = 0x00800000UL,
  149. RADEON_IS_IGPGART = 0x01000000UL,
  150. };
  151. #define GET_RING_HEAD(dev_priv) (dev_priv->writeback_works ? \
  152. DRM_READ32( (dev_priv)->ring_rptr, 0 ) : RADEON_READ(RADEON_CP_RB_RPTR))
  153. #define SET_RING_HEAD(dev_priv,val) DRM_WRITE32( (dev_priv)->ring_rptr, 0, (val) )
  154. typedef struct drm_radeon_freelist {
  155. unsigned int age;
  156. struct drm_buf *buf;
  157. struct drm_radeon_freelist *next;
  158. struct drm_radeon_freelist *prev;
  159. } drm_radeon_freelist_t;
  160. typedef struct drm_radeon_ring_buffer {
  161. u32 *start;
  162. u32 *end;
  163. int size;
  164. int size_l2qw;
  165. int rptr_update; /* Double Words */
  166. int rptr_update_l2qw; /* log2 Quad Words */
  167. int fetch_size; /* Double Words */
  168. int fetch_size_l2ow; /* log2 Oct Words */
  169. u32 tail;
  170. u32 tail_mask;
  171. int space;
  172. int high_mark;
  173. } drm_radeon_ring_buffer_t;
  174. typedef struct drm_radeon_depth_clear_t {
  175. u32 rb3d_cntl;
  176. u32 rb3d_zstencilcntl;
  177. u32 se_cntl;
  178. } drm_radeon_depth_clear_t;
  179. struct drm_radeon_driver_file_fields {
  180. int64_t radeon_fb_delta;
  181. };
  182. struct mem_block {
  183. struct mem_block *next;
  184. struct mem_block *prev;
  185. int start;
  186. int size;
  187. struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
  188. };
  189. struct radeon_surface {
  190. int refcount;
  191. u32 lower;
  192. u32 upper;
  193. u32 flags;
  194. };
  195. struct radeon_virt_surface {
  196. int surface_index;
  197. u32 lower;
  198. u32 upper;
  199. u32 flags;
  200. struct drm_file *file_priv;
  201. };
  202. typedef struct drm_radeon_private {
  203. drm_radeon_ring_buffer_t ring;
  204. drm_radeon_sarea_t *sarea_priv;
  205. u32 fb_location;
  206. u32 fb_size;
  207. int new_memmap;
  208. int gart_size;
  209. u32 gart_vm_start;
  210. unsigned long gart_buffers_offset;
  211. int cp_mode;
  212. int cp_running;
  213. drm_radeon_freelist_t *head;
  214. drm_radeon_freelist_t *tail;
  215. int last_buf;
  216. volatile u32 *scratch;
  217. int writeback_works;
  218. int usec_timeout;
  219. int microcode_version;
  220. struct {
  221. u32 boxes;
  222. int freelist_timeouts;
  223. int freelist_loops;
  224. int requested_bufs;
  225. int last_frame_reads;
  226. int last_clear_reads;
  227. int clears;
  228. int texture_uploads;
  229. } stats;
  230. int do_boxes;
  231. int page_flipping;
  232. u32 color_fmt;
  233. unsigned int front_offset;
  234. unsigned int front_pitch;
  235. unsigned int back_offset;
  236. unsigned int back_pitch;
  237. u32 depth_fmt;
  238. unsigned int depth_offset;
  239. unsigned int depth_pitch;
  240. u32 front_pitch_offset;
  241. u32 back_pitch_offset;
  242. u32 depth_pitch_offset;
  243. drm_radeon_depth_clear_t depth_clear;
  244. unsigned long ring_offset;
  245. unsigned long ring_rptr_offset;
  246. unsigned long buffers_offset;
  247. unsigned long gart_textures_offset;
  248. drm_local_map_t *sarea;
  249. drm_local_map_t *mmio;
  250. drm_local_map_t *cp_ring;
  251. drm_local_map_t *ring_rptr;
  252. drm_local_map_t *gart_textures;
  253. struct mem_block *gart_heap;
  254. struct mem_block *fb_heap;
  255. /* SW interrupt */
  256. wait_queue_head_t swi_queue;
  257. atomic_t swi_emitted;
  258. int vblank_crtc;
  259. uint32_t irq_enable_reg;
  260. int irq_enabled;
  261. uint32_t r500_disp_irq_reg;
  262. struct radeon_surface surfaces[RADEON_MAX_SURFACES];
  263. struct radeon_virt_surface virt_surfaces[2 * RADEON_MAX_SURFACES];
  264. unsigned long pcigart_offset;
  265. unsigned int pcigart_offset_set;
  266. struct drm_ati_pcigart_info gart_info;
  267. u32 scratch_ages[5];
  268. /* starting from here on, data is preserved accross an open */
  269. uint32_t flags; /* see radeon_chip_flags */
  270. unsigned long fb_aper_offset;
  271. int num_gb_pipes;
  272. } drm_radeon_private_t;
  273. typedef struct drm_radeon_buf_priv {
  274. u32 age;
  275. } drm_radeon_buf_priv_t;
  276. typedef struct drm_radeon_kcmd_buffer {
  277. int bufsz;
  278. char *buf;
  279. int nbox;
  280. struct drm_clip_rect __user *boxes;
  281. } drm_radeon_kcmd_buffer_t;
  282. extern int radeon_no_wb;
  283. extern struct drm_ioctl_desc radeon_ioctls[];
  284. extern int radeon_max_ioctl;
  285. /* Check whether the given hardware address is inside the framebuffer or the
  286. * GART area.
  287. */
  288. static __inline__ int radeon_check_offset(drm_radeon_private_t *dev_priv,
  289. u64 off)
  290. {
  291. u32 fb_start = dev_priv->fb_location;
  292. u32 fb_end = fb_start + dev_priv->fb_size - 1;
  293. u32 gart_start = dev_priv->gart_vm_start;
  294. u32 gart_end = gart_start + dev_priv->gart_size - 1;
  295. return ((off >= fb_start && off <= fb_end) ||
  296. (off >= gart_start && off <= gart_end));
  297. }
  298. /* radeon_cp.c */
  299. extern int radeon_cp_init(struct drm_device *dev, void *data, struct drm_file *file_priv);
  300. extern int radeon_cp_start(struct drm_device *dev, void *data, struct drm_file *file_priv);
  301. extern int radeon_cp_stop(struct drm_device *dev, void *data, struct drm_file *file_priv);
  302. extern int radeon_cp_reset(struct drm_device *dev, void *data, struct drm_file *file_priv);
  303. extern int radeon_cp_idle(struct drm_device *dev, void *data, struct drm_file *file_priv);
  304. extern int radeon_cp_resume(struct drm_device *dev, void *data, struct drm_file *file_priv);
  305. extern int radeon_engine_reset(struct drm_device *dev, void *data, struct drm_file *file_priv);
  306. extern int radeon_fullscreen(struct drm_device *dev, void *data, struct drm_file *file_priv);
  307. extern int radeon_cp_buffers(struct drm_device *dev, void *data, struct drm_file *file_priv);
  308. extern u32 radeon_read_fb_location(drm_radeon_private_t *dev_priv);
  309. extern void radeon_freelist_reset(struct drm_device * dev);
  310. extern struct drm_buf *radeon_freelist_get(struct drm_device * dev);
  311. extern int radeon_wait_ring(drm_radeon_private_t * dev_priv, int n);
  312. extern int radeon_do_cp_idle(drm_radeon_private_t * dev_priv);
  313. extern int radeon_driver_preinit(struct drm_device *dev, unsigned long flags);
  314. extern int radeon_presetup(struct drm_device *dev);
  315. extern int radeon_driver_postcleanup(struct drm_device *dev);
  316. extern int radeon_mem_alloc(struct drm_device *dev, void *data, struct drm_file *file_priv);
  317. extern int radeon_mem_free(struct drm_device *dev, void *data, struct drm_file *file_priv);
  318. extern int radeon_mem_init_heap(struct drm_device *dev, void *data, struct drm_file *file_priv);
  319. extern void radeon_mem_takedown(struct mem_block **heap);
  320. extern void radeon_mem_release(struct drm_file *file_priv,
  321. struct mem_block *heap);
  322. /* radeon_irq.c */
  323. extern int radeon_irq_emit(struct drm_device *dev, void *data, struct drm_file *file_priv);
  324. extern int radeon_irq_wait(struct drm_device *dev, void *data, struct drm_file *file_priv);
  325. extern void radeon_do_release(struct drm_device * dev);
  326. extern int radeon_driver_vblank_wait(struct drm_device * dev,
  327. unsigned int *sequence);
  328. extern int radeon_driver_vblank_wait2(struct drm_device * dev,
  329. unsigned int *sequence);
  330. extern irqreturn_t radeon_driver_irq_handler(DRM_IRQ_ARGS);
  331. extern void radeon_driver_irq_preinstall(struct drm_device * dev);
  332. extern void radeon_driver_irq_postinstall(struct drm_device * dev);
  333. extern void radeon_driver_irq_uninstall(struct drm_device * dev);
  334. extern int radeon_vblank_crtc_get(struct drm_device *dev);
  335. extern int radeon_vblank_crtc_set(struct drm_device *dev, int64_t value);
  336. extern int radeon_driver_load(struct drm_device *dev, unsigned long flags);
  337. extern int radeon_driver_unload(struct drm_device *dev);
  338. extern int radeon_driver_firstopen(struct drm_device *dev);
  339. extern void radeon_driver_preclose(struct drm_device * dev, struct drm_file *file_priv);
  340. extern void radeon_driver_postclose(struct drm_device * dev, struct drm_file * filp);
  341. extern void radeon_driver_lastclose(struct drm_device * dev);
  342. extern int radeon_driver_open(struct drm_device * dev, struct drm_file * filp_priv);
  343. extern long radeon_compat_ioctl(struct file *filp, unsigned int cmd,
  344. unsigned long arg);
  345. /* r300_cmdbuf.c */
  346. extern void r300_init_reg_flags(struct drm_device *dev);
  347. extern int r300_do_cp_cmdbuf(struct drm_device * dev,
  348. struct drm_file *file_priv,
  349. drm_radeon_kcmd_buffer_t * cmdbuf);
  350. /* Flags for stats.boxes
  351. */
  352. #define RADEON_BOX_DMA_IDLE 0x1
  353. #define RADEON_BOX_RING_FULL 0x2
  354. #define RADEON_BOX_FLIP 0x4
  355. #define RADEON_BOX_WAIT_IDLE 0x8
  356. #define RADEON_BOX_TEXTURE_LOAD 0x10
  357. /* Register definitions, register access macros and drmAddMap constants
  358. * for Radeon kernel driver.
  359. */
  360. #define RADEON_AGP_COMMAND 0x0f60
  361. #define RADEON_AGP_COMMAND_PCI_CONFIG 0x0060 /* offset in PCI config */
  362. # define RADEON_AGP_ENABLE (1<<8)
  363. #define RADEON_AUX_SCISSOR_CNTL 0x26f0
  364. # define RADEON_EXCLUSIVE_SCISSOR_0 (1 << 24)
  365. # define RADEON_EXCLUSIVE_SCISSOR_1 (1 << 25)
  366. # define RADEON_EXCLUSIVE_SCISSOR_2 (1 << 26)
  367. # define RADEON_SCISSOR_0_ENABLE (1 << 28)
  368. # define RADEON_SCISSOR_1_ENABLE (1 << 29)
  369. # define RADEON_SCISSOR_2_ENABLE (1 << 30)
  370. #define RADEON_BUS_CNTL 0x0030
  371. # define RADEON_BUS_MASTER_DIS (1 << 6)
  372. #define RADEON_CLOCK_CNTL_DATA 0x000c
  373. # define RADEON_PLL_WR_EN (1 << 7)
  374. #define RADEON_CLOCK_CNTL_INDEX 0x0008
  375. #define RADEON_CONFIG_APER_SIZE 0x0108
  376. #define RADEON_CONFIG_MEMSIZE 0x00f8
  377. #define RADEON_CRTC_OFFSET 0x0224
  378. #define RADEON_CRTC_OFFSET_CNTL 0x0228
  379. # define RADEON_CRTC_TILE_EN (1 << 15)
  380. # define RADEON_CRTC_OFFSET_FLIP_CNTL (1 << 16)
  381. #define RADEON_CRTC2_OFFSET 0x0324
  382. #define RADEON_CRTC2_OFFSET_CNTL 0x0328
  383. #define RADEON_PCIE_INDEX 0x0030
  384. #define RADEON_PCIE_DATA 0x0034
  385. #define RADEON_PCIE_TX_GART_CNTL 0x10
  386. # define RADEON_PCIE_TX_GART_EN (1 << 0)
  387. # define RADEON_PCIE_TX_GART_UNMAPPED_ACCESS_PASS_THRU (0 << 1)
  388. # define RADEON_PCIE_TX_GART_UNMAPPED_ACCESS_CLAMP_LO (1 << 1)
  389. # define RADEON_PCIE_TX_GART_UNMAPPED_ACCESS_DISCARD (3 << 1)
  390. # define RADEON_PCIE_TX_GART_MODE_32_128_CACHE (0 << 3)
  391. # define RADEON_PCIE_TX_GART_MODE_8_4_128_CACHE (1 << 3)
  392. # define RADEON_PCIE_TX_GART_CHK_RW_VALID_EN (1 << 5)
  393. # define RADEON_PCIE_TX_GART_INVALIDATE_TLB (1 << 8)
  394. #define RADEON_PCIE_TX_DISCARD_RD_ADDR_LO 0x11
  395. #define RADEON_PCIE_TX_DISCARD_RD_ADDR_HI 0x12
  396. #define RADEON_PCIE_TX_GART_BASE 0x13
  397. #define RADEON_PCIE_TX_GART_START_LO 0x14
  398. #define RADEON_PCIE_TX_GART_START_HI 0x15
  399. #define RADEON_PCIE_TX_GART_END_LO 0x16
  400. #define RADEON_PCIE_TX_GART_END_HI 0x17
  401. #define RS480_NB_MC_INDEX 0x168
  402. # define RS480_NB_MC_IND_WR_EN (1 << 8)
  403. #define RS480_NB_MC_DATA 0x16c
  404. #define RS690_MC_INDEX 0x78
  405. # define RS690_MC_INDEX_MASK 0x1ff
  406. # define RS690_MC_INDEX_WR_EN (1 << 9)
  407. # define RS690_MC_INDEX_WR_ACK 0x7f
  408. #define RS690_MC_DATA 0x7c
  409. /* MC indirect registers */
  410. #define RS480_MC_MISC_CNTL 0x18
  411. # define RS480_DISABLE_GTW (1 << 1)
  412. /* switch between MCIND GART and MM GART registers. 0 = mmgart, 1 = mcind gart */
  413. # define RS480_GART_INDEX_REG_EN (1 << 12)
  414. # define RS690_BLOCK_GFX_D3_EN (1 << 14)
  415. #define RS480_K8_FB_LOCATION 0x1e
  416. #define RS480_GART_FEATURE_ID 0x2b
  417. # define RS480_HANG_EN (1 << 11)
  418. # define RS480_TLB_ENABLE (1 << 18)
  419. # define RS480_P2P_ENABLE (1 << 19)
  420. # define RS480_GTW_LAC_EN (1 << 25)
  421. # define RS480_2LEVEL_GART (0 << 30)
  422. # define RS480_1LEVEL_GART (1 << 30)
  423. # define RS480_PDC_EN (1 << 31)
  424. #define RS480_GART_BASE 0x2c
  425. #define RS480_GART_CACHE_CNTRL 0x2e
  426. # define RS480_GART_CACHE_INVALIDATE (1 << 0) /* wait for it to clear */
  427. #define RS480_AGP_ADDRESS_SPACE_SIZE 0x38
  428. # define RS480_GART_EN (1 << 0)
  429. # define RS480_VA_SIZE_32MB (0 << 1)
  430. # define RS480_VA_SIZE_64MB (1 << 1)
  431. # define RS480_VA_SIZE_128MB (2 << 1)
  432. # define RS480_VA_SIZE_256MB (3 << 1)
  433. # define RS480_VA_SIZE_512MB (4 << 1)
  434. # define RS480_VA_SIZE_1GB (5 << 1)
  435. # define RS480_VA_SIZE_2GB (6 << 1)
  436. #define RS480_AGP_MODE_CNTL 0x39
  437. # define RS480_POST_GART_Q_SIZE (1 << 18)
  438. # define RS480_NONGART_SNOOP (1 << 19)
  439. # define RS480_AGP_RD_BUF_SIZE (1 << 20)
  440. # define RS480_REQ_TYPE_SNOOP_SHIFT 22
  441. # define RS480_REQ_TYPE_SNOOP_MASK 0x3
  442. # define RS480_REQ_TYPE_SNOOP_DIS (1 << 24)
  443. #define RS480_MC_MISC_UMA_CNTL 0x5f
  444. #define RS480_MC_MCLK_CNTL 0x7a
  445. #define RS480_MC_UMA_DUALCH_CNTL 0x86
  446. #define RS690_MC_FB_LOCATION 0x100
  447. #define RS690_MC_AGP_LOCATION 0x101
  448. #define RS690_MC_AGP_BASE 0x102
  449. #define RS690_MC_AGP_BASE_2 0x103
  450. #define R520_MC_IND_INDEX 0x70
  451. #define R520_MC_IND_WR_EN (1 << 24)
  452. #define R520_MC_IND_DATA 0x74
  453. #define RV515_MC_FB_LOCATION 0x01
  454. #define RV515_MC_AGP_LOCATION 0x02
  455. #define RV515_MC_AGP_BASE 0x03
  456. #define RV515_MC_AGP_BASE_2 0x04
  457. #define R520_MC_FB_LOCATION 0x04
  458. #define R520_MC_AGP_LOCATION 0x05
  459. #define R520_MC_AGP_BASE 0x06
  460. #define R520_MC_AGP_BASE_2 0x07
  461. #define RADEON_MPP_TB_CONFIG 0x01c0
  462. #define RADEON_MEM_CNTL 0x0140
  463. #define RADEON_MEM_SDRAM_MODE_REG 0x0158
  464. #define RADEON_AGP_BASE_2 0x015c /* r200+ only */
  465. #define RS480_AGP_BASE_2 0x0164
  466. #define RADEON_AGP_BASE 0x0170
  467. /* pipe config regs */
  468. #define R400_GB_PIPE_SELECT 0x402c
  469. #define R500_DYN_SCLK_PWMEM_PIPE 0x000d /* PLL */
  470. #define R500_SU_REG_DEST 0x42c8
  471. #define R300_GB_TILE_CONFIG 0x4018
  472. # define R300_ENABLE_TILING (1 << 0)
  473. # define R300_PIPE_COUNT_RV350 (0 << 1)
  474. # define R300_PIPE_COUNT_R300 (3 << 1)
  475. # define R300_PIPE_COUNT_R420_3P (6 << 1)
  476. # define R300_PIPE_COUNT_R420 (7 << 1)
  477. # define R300_TILE_SIZE_8 (0 << 4)
  478. # define R300_TILE_SIZE_16 (1 << 4)
  479. # define R300_TILE_SIZE_32 (2 << 4)
  480. # define R300_SUBPIXEL_1_12 (0 << 16)
  481. # define R300_SUBPIXEL_1_16 (1 << 16)
  482. #define R300_DST_PIPE_CONFIG 0x170c
  483. # define R300_PIPE_AUTO_CONFIG (1 << 31)
  484. #define R300_RB2D_DSTCACHE_MODE 0x3428
  485. # define R300_DC_AUTOFLUSH_ENABLE (1 << 8)
  486. # define R300_DC_DC_DISABLE_IGNORE_PE (1 << 17)
  487. #define RADEON_RB3D_COLOROFFSET 0x1c40
  488. #define RADEON_RB3D_COLORPITCH 0x1c48
  489. #define RADEON_SRC_X_Y 0x1590
  490. #define RADEON_DP_GUI_MASTER_CNTL 0x146c
  491. # define RADEON_GMC_SRC_PITCH_OFFSET_CNTL (1 << 0)
  492. # define RADEON_GMC_DST_PITCH_OFFSET_CNTL (1 << 1)
  493. # define RADEON_GMC_BRUSH_SOLID_COLOR (13 << 4)
  494. # define RADEON_GMC_BRUSH_NONE (15 << 4)
  495. # define RADEON_GMC_DST_16BPP (4 << 8)
  496. # define RADEON_GMC_DST_24BPP (5 << 8)
  497. # define RADEON_GMC_DST_32BPP (6 << 8)
  498. # define RADEON_GMC_DST_DATATYPE_SHIFT 8
  499. # define RADEON_GMC_SRC_DATATYPE_COLOR (3 << 12)
  500. # define RADEON_DP_SRC_SOURCE_MEMORY (2 << 24)
  501. # define RADEON_DP_SRC_SOURCE_HOST_DATA (3 << 24)
  502. # define RADEON_GMC_CLR_CMP_CNTL_DIS (1 << 28)
  503. # define RADEON_GMC_WR_MSK_DIS (1 << 30)
  504. # define RADEON_ROP3_S 0x00cc0000
  505. # define RADEON_ROP3_P 0x00f00000
  506. #define RADEON_DP_WRITE_MASK 0x16cc
  507. #define RADEON_SRC_PITCH_OFFSET 0x1428
  508. #define RADEON_DST_PITCH_OFFSET 0x142c
  509. #define RADEON_DST_PITCH_OFFSET_C 0x1c80
  510. # define RADEON_DST_TILE_LINEAR (0 << 30)
  511. # define RADEON_DST_TILE_MACRO (1 << 30)
  512. # define RADEON_DST_TILE_MICRO (2 << 30)
  513. # define RADEON_DST_TILE_BOTH (3 << 30)
  514. #define RADEON_SCRATCH_REG0 0x15e0
  515. #define RADEON_SCRATCH_REG1 0x15e4
  516. #define RADEON_SCRATCH_REG2 0x15e8
  517. #define RADEON_SCRATCH_REG3 0x15ec
  518. #define RADEON_SCRATCH_REG4 0x15f0
  519. #define RADEON_SCRATCH_REG5 0x15f4
  520. #define RADEON_SCRATCH_UMSK 0x0770
  521. #define RADEON_SCRATCH_ADDR 0x0774
  522. #define RADEON_SCRATCHOFF( x ) (RADEON_SCRATCH_REG_OFFSET + 4*(x))
  523. #define GET_SCRATCH( x ) (dev_priv->writeback_works \
  524. ? DRM_READ32( dev_priv->ring_rptr, RADEON_SCRATCHOFF(x) ) \
  525. : RADEON_READ( RADEON_SCRATCH_REG0 + 4*(x) ) )
  526. #define RADEON_GEN_INT_CNTL 0x0040
  527. # define RADEON_CRTC_VBLANK_MASK (1 << 0)
  528. # define RADEON_CRTC2_VBLANK_MASK (1 << 9)
  529. # define RADEON_GUI_IDLE_INT_ENABLE (1 << 19)
  530. # define RADEON_SW_INT_ENABLE (1 << 25)
  531. #define RADEON_GEN_INT_STATUS 0x0044
  532. # define RADEON_CRTC_VBLANK_STAT (1 << 0)
  533. # define RADEON_CRTC_VBLANK_STAT_ACK (1 << 0)
  534. # define RADEON_CRTC2_VBLANK_STAT (1 << 9)
  535. # define RADEON_CRTC2_VBLANK_STAT_ACK (1 << 9)
  536. # define RADEON_GUI_IDLE_INT_TEST_ACK (1 << 19)
  537. # define RADEON_SW_INT_TEST (1 << 25)
  538. # define RADEON_SW_INT_TEST_ACK (1 << 25)
  539. # define RADEON_SW_INT_FIRE (1 << 26)
  540. #define RADEON_HOST_PATH_CNTL 0x0130
  541. # define RADEON_HDP_SOFT_RESET (1 << 26)
  542. # define RADEON_HDP_WC_TIMEOUT_MASK (7 << 28)
  543. # define RADEON_HDP_WC_TIMEOUT_28BCLK (7 << 28)
  544. #define RADEON_ISYNC_CNTL 0x1724
  545. # define RADEON_ISYNC_ANY2D_IDLE3D (1 << 0)
  546. # define RADEON_ISYNC_ANY3D_IDLE2D (1 << 1)
  547. # define RADEON_ISYNC_TRIG2D_IDLE3D (1 << 2)
  548. # define RADEON_ISYNC_TRIG3D_IDLE2D (1 << 3)
  549. # define RADEON_ISYNC_WAIT_IDLEGUI (1 << 4)
  550. # define RADEON_ISYNC_CPSCRATCH_IDLEGUI (1 << 5)
  551. #define RADEON_RBBM_GUICNTL 0x172c
  552. # define RADEON_HOST_DATA_SWAP_NONE (0 << 0)
  553. # define RADEON_HOST_DATA_SWAP_16BIT (1 << 0)
  554. # define RADEON_HOST_DATA_SWAP_32BIT (2 << 0)
  555. # define RADEON_HOST_DATA_SWAP_HDW (3 << 0)
  556. #define RADEON_MC_AGP_LOCATION 0x014c
  557. #define RADEON_MC_FB_LOCATION 0x0148
  558. #define RADEON_MCLK_CNTL 0x0012
  559. # define RADEON_FORCEON_MCLKA (1 << 16)
  560. # define RADEON_FORCEON_MCLKB (1 << 17)
  561. # define RADEON_FORCEON_YCLKA (1 << 18)
  562. # define RADEON_FORCEON_YCLKB (1 << 19)
  563. # define RADEON_FORCEON_MC (1 << 20)
  564. # define RADEON_FORCEON_AIC (1 << 21)
  565. #define RADEON_PP_BORDER_COLOR_0 0x1d40
  566. #define RADEON_PP_BORDER_COLOR_1 0x1d44
  567. #define RADEON_PP_BORDER_COLOR_2 0x1d48
  568. #define RADEON_PP_CNTL 0x1c38
  569. # define RADEON_SCISSOR_ENABLE (1 << 1)
  570. #define RADEON_PP_LUM_MATRIX 0x1d00
  571. #define RADEON_PP_MISC 0x1c14
  572. #define RADEON_PP_ROT_MATRIX_0 0x1d58
  573. #define RADEON_PP_TXFILTER_0 0x1c54
  574. #define RADEON_PP_TXOFFSET_0 0x1c5c
  575. #define RADEON_PP_TXFILTER_1 0x1c6c
  576. #define RADEON_PP_TXFILTER_2 0x1c84
  577. #define RADEON_RB2D_DSTCACHE_CTLSTAT 0x342c
  578. # define RADEON_RB2D_DC_FLUSH (3 << 0)
  579. # define RADEON_RB2D_DC_FREE (3 << 2)
  580. # define RADEON_RB2D_DC_FLUSH_ALL 0xf
  581. # define RADEON_RB2D_DC_BUSY (1 << 31)
  582. #define RADEON_RB3D_CNTL 0x1c3c
  583. # define RADEON_ALPHA_BLEND_ENABLE (1 << 0)
  584. # define RADEON_PLANE_MASK_ENABLE (1 << 1)
  585. # define RADEON_DITHER_ENABLE (1 << 2)
  586. # define RADEON_ROUND_ENABLE (1 << 3)
  587. # define RADEON_SCALE_DITHER_ENABLE (1 << 4)
  588. # define RADEON_DITHER_INIT (1 << 5)
  589. # define RADEON_ROP_ENABLE (1 << 6)
  590. # define RADEON_STENCIL_ENABLE (1 << 7)
  591. # define RADEON_Z_ENABLE (1 << 8)
  592. # define RADEON_ZBLOCK16 (1 << 15)
  593. #define RADEON_RB3D_DEPTHOFFSET 0x1c24
  594. #define RADEON_RB3D_DEPTHCLEARVALUE 0x3230
  595. #define RADEON_RB3D_DEPTHPITCH 0x1c28
  596. #define RADEON_RB3D_PLANEMASK 0x1d84
  597. #define RADEON_RB3D_STENCILREFMASK 0x1d7c
  598. #define RADEON_RB3D_ZCACHE_MODE 0x3250
  599. #define RADEON_RB3D_ZCACHE_CTLSTAT 0x3254
  600. # define RADEON_RB3D_ZC_FLUSH (1 << 0)
  601. # define RADEON_RB3D_ZC_FREE (1 << 2)
  602. # define RADEON_RB3D_ZC_FLUSH_ALL 0x5
  603. # define RADEON_RB3D_ZC_BUSY (1 << 31)
  604. #define R300_ZB_ZCACHE_CTLSTAT 0x4f18
  605. # define R300_ZC_FLUSH (1 << 0)
  606. # define R300_ZC_FREE (1 << 1)
  607. # define R300_ZC_FLUSH_ALL 0x3
  608. # define R300_ZC_BUSY (1 << 31)
  609. #define RADEON_RB3D_DSTCACHE_CTLSTAT 0x325c
  610. # define RADEON_RB3D_DC_FLUSH (3 << 0)
  611. # define RADEON_RB3D_DC_FREE (3 << 2)
  612. # define RADEON_RB3D_DC_FLUSH_ALL 0xf
  613. # define RADEON_RB3D_DC_BUSY (1 << 31)
  614. #define R300_RB3D_DSTCACHE_CTLSTAT 0x4e4c
  615. # define R300_RB3D_DC_FINISH (1 << 4)
  616. #define RADEON_RB3D_ZSTENCILCNTL 0x1c2c
  617. # define RADEON_Z_TEST_MASK (7 << 4)
  618. # define RADEON_Z_TEST_ALWAYS (7 << 4)
  619. # define RADEON_Z_HIERARCHY_ENABLE (1 << 8)
  620. # define RADEON_STENCIL_TEST_ALWAYS (7 << 12)
  621. # define RADEON_STENCIL_S_FAIL_REPLACE (2 << 16)
  622. # define RADEON_STENCIL_ZPASS_REPLACE (2 << 20)
  623. # define RADEON_STENCIL_ZFAIL_REPLACE (2 << 24)
  624. # define RADEON_Z_COMPRESSION_ENABLE (1 << 28)
  625. # define RADEON_FORCE_Z_DIRTY (1 << 29)
  626. # define RADEON_Z_WRITE_ENABLE (1 << 30)
  627. # define RADEON_Z_DECOMPRESSION_ENABLE (1 << 31)
  628. #define RADEON_RBBM_SOFT_RESET 0x00f0
  629. # define RADEON_SOFT_RESET_CP (1 << 0)
  630. # define RADEON_SOFT_RESET_HI (1 << 1)
  631. # define RADEON_SOFT_RESET_SE (1 << 2)
  632. # define RADEON_SOFT_RESET_RE (1 << 3)
  633. # define RADEON_SOFT_RESET_PP (1 << 4)
  634. # define RADEON_SOFT_RESET_E2 (1 << 5)
  635. # define RADEON_SOFT_RESET_RB (1 << 6)
  636. # define RADEON_SOFT_RESET_HDP (1 << 7)
  637. /*
  638. * 6:0 Available slots in the FIFO
  639. * 8 Host Interface active
  640. * 9 CP request active
  641. * 10 FIFO request active
  642. * 11 Host Interface retry active
  643. * 12 CP retry active
  644. * 13 FIFO retry active
  645. * 14 FIFO pipeline busy
  646. * 15 Event engine busy
  647. * 16 CP command stream busy
  648. * 17 2D engine busy
  649. * 18 2D portion of render backend busy
  650. * 20 3D setup engine busy
  651. * 26 GA engine busy
  652. * 27 CBA 2D engine busy
  653. * 31 2D engine busy or 3D engine busy or FIFO not empty or CP busy or
  654. * command stream queue not empty or Ring Buffer not empty
  655. */
  656. #define RADEON_RBBM_STATUS 0x0e40
  657. /* Same as the previous RADEON_RBBM_STATUS; this is a mirror of that register. */
  658. /* #define RADEON_RBBM_STATUS 0x1740 */
  659. /* bits 6:0 are dword slots available in the cmd fifo */
  660. # define RADEON_RBBM_FIFOCNT_MASK 0x007f
  661. # define RADEON_HIRQ_ON_RBB (1 << 8)
  662. # define RADEON_CPRQ_ON_RBB (1 << 9)
  663. # define RADEON_CFRQ_ON_RBB (1 << 10)
  664. # define RADEON_HIRQ_IN_RTBUF (1 << 11)
  665. # define RADEON_CPRQ_IN_RTBUF (1 << 12)
  666. # define RADEON_CFRQ_IN_RTBUF (1 << 13)
  667. # define RADEON_PIPE_BUSY (1 << 14)
  668. # define RADEON_ENG_EV_BUSY (1 << 15)
  669. # define RADEON_CP_CMDSTRM_BUSY (1 << 16)
  670. # define RADEON_E2_BUSY (1 << 17)
  671. # define RADEON_RB2D_BUSY (1 << 18)
  672. # define RADEON_RB3D_BUSY (1 << 19) /* not used on r300 */
  673. # define RADEON_VAP_BUSY (1 << 20)
  674. # define RADEON_RE_BUSY (1 << 21) /* not used on r300 */
  675. # define RADEON_TAM_BUSY (1 << 22) /* not used on r300 */
  676. # define RADEON_TDM_BUSY (1 << 23) /* not used on r300 */
  677. # define RADEON_PB_BUSY (1 << 24) /* not used on r300 */
  678. # define RADEON_TIM_BUSY (1 << 25) /* not used on r300 */
  679. # define RADEON_GA_BUSY (1 << 26)
  680. # define RADEON_CBA2D_BUSY (1 << 27)
  681. # define RADEON_RBBM_ACTIVE (1 << 31)
  682. #define RADEON_RE_LINE_PATTERN 0x1cd0
  683. #define RADEON_RE_MISC 0x26c4
  684. #define RADEON_RE_TOP_LEFT 0x26c0
  685. #define RADEON_RE_WIDTH_HEIGHT 0x1c44
  686. #define RADEON_RE_STIPPLE_ADDR 0x1cc8
  687. #define RADEON_RE_STIPPLE_DATA 0x1ccc
  688. #define RADEON_SCISSOR_TL_0 0x1cd8
  689. #define RADEON_SCISSOR_BR_0 0x1cdc
  690. #define RADEON_SCISSOR_TL_1 0x1ce0
  691. #define RADEON_SCISSOR_BR_1 0x1ce4
  692. #define RADEON_SCISSOR_TL_2 0x1ce8
  693. #define RADEON_SCISSOR_BR_2 0x1cec
  694. #define RADEON_SE_COORD_FMT 0x1c50
  695. #define RADEON_SE_CNTL 0x1c4c
  696. # define RADEON_FFACE_CULL_CW (0 << 0)
  697. # define RADEON_BFACE_SOLID (3 << 1)
  698. # define RADEON_FFACE_SOLID (3 << 3)
  699. # define RADEON_FLAT_SHADE_VTX_LAST (3 << 6)
  700. # define RADEON_DIFFUSE_SHADE_FLAT (1 << 8)
  701. # define RADEON_DIFFUSE_SHADE_GOURAUD (2 << 8)
  702. # define RADEON_ALPHA_SHADE_FLAT (1 << 10)
  703. # define RADEON_ALPHA_SHADE_GOURAUD (2 << 10)
  704. # define RADEON_SPECULAR_SHADE_FLAT (1 << 12)
  705. # define RADEON_SPECULAR_SHADE_GOURAUD (2 << 12)
  706. # define RADEON_FOG_SHADE_FLAT (1 << 14)
  707. # define RADEON_FOG_SHADE_GOURAUD (2 << 14)
  708. # define RADEON_VPORT_XY_XFORM_ENABLE (1 << 24)
  709. # define RADEON_VPORT_Z_XFORM_ENABLE (1 << 25)
  710. # define RADEON_VTX_PIX_CENTER_OGL (1 << 27)
  711. # define RADEON_ROUND_MODE_TRUNC (0 << 28)
  712. # define RADEON_ROUND_PREC_8TH_PIX (1 << 30)
  713. #define RADEON_SE_CNTL_STATUS 0x2140
  714. #define RADEON_SE_LINE_WIDTH 0x1db8
  715. #define RADEON_SE_VPORT_XSCALE 0x1d98
  716. #define RADEON_SE_ZBIAS_FACTOR 0x1db0
  717. #define RADEON_SE_TCL_MATERIAL_EMMISSIVE_RED 0x2210
  718. #define RADEON_SE_TCL_OUTPUT_VTX_FMT 0x2254
  719. #define RADEON_SE_TCL_VECTOR_INDX_REG 0x2200
  720. # define RADEON_VEC_INDX_OCTWORD_STRIDE_SHIFT 16
  721. # define RADEON_VEC_INDX_DWORD_COUNT_SHIFT 28
  722. #define RADEON_SE_TCL_VECTOR_DATA_REG 0x2204
  723. #define RADEON_SE_TCL_SCALAR_INDX_REG 0x2208
  724. # define RADEON_SCAL_INDX_DWORD_STRIDE_SHIFT 16
  725. #define RADEON_SE_TCL_SCALAR_DATA_REG 0x220C
  726. #define RADEON_SURFACE_ACCESS_FLAGS 0x0bf8
  727. #define RADEON_SURFACE_ACCESS_CLR 0x0bfc
  728. #define RADEON_SURFACE_CNTL 0x0b00
  729. # define RADEON_SURF_TRANSLATION_DIS (1 << 8)
  730. # define RADEON_NONSURF_AP0_SWP_MASK (3 << 20)
  731. # define RADEON_NONSURF_AP0_SWP_LITTLE (0 << 20)
  732. # define RADEON_NONSURF_AP0_SWP_BIG16 (1 << 20)
  733. # define RADEON_NONSURF_AP0_SWP_BIG32 (2 << 20)
  734. # define RADEON_NONSURF_AP1_SWP_MASK (3 << 22)
  735. # define RADEON_NONSURF_AP1_SWP_LITTLE (0 << 22)
  736. # define RADEON_NONSURF_AP1_SWP_BIG16 (1 << 22)
  737. # define RADEON_NONSURF_AP1_SWP_BIG32 (2 << 22)
  738. #define RADEON_SURFACE0_INFO 0x0b0c
  739. # define RADEON_SURF_PITCHSEL_MASK (0x1ff << 0)
  740. # define RADEON_SURF_TILE_MODE_MASK (3 << 16)
  741. # define RADEON_SURF_TILE_MODE_MACRO (0 << 16)
  742. # define RADEON_SURF_TILE_MODE_MICRO (1 << 16)
  743. # define RADEON_SURF_TILE_MODE_32BIT_Z (2 << 16)
  744. # define RADEON_SURF_TILE_MODE_16BIT_Z (3 << 16)
  745. #define RADEON_SURFACE0_LOWER_BOUND 0x0b04
  746. #define RADEON_SURFACE0_UPPER_BOUND 0x0b08
  747. # define RADEON_SURF_ADDRESS_FIXED_MASK (0x3ff << 0)
  748. #define RADEON_SURFACE1_INFO 0x0b1c
  749. #define RADEON_SURFACE1_LOWER_BOUND 0x0b14
  750. #define RADEON_SURFACE1_UPPER_BOUND 0x0b18
  751. #define RADEON_SURFACE2_INFO 0x0b2c
  752. #define RADEON_SURFACE2_LOWER_BOUND 0x0b24
  753. #define RADEON_SURFACE2_UPPER_BOUND 0x0b28
  754. #define RADEON_SURFACE3_INFO 0x0b3c
  755. #define RADEON_SURFACE3_LOWER_BOUND 0x0b34
  756. #define RADEON_SURFACE3_UPPER_BOUND 0x0b38
  757. #define RADEON_SURFACE4_INFO 0x0b4c
  758. #define RADEON_SURFACE4_LOWER_BOUND 0x0b44
  759. #define RADEON_SURFACE4_UPPER_BOUND 0x0b48
  760. #define RADEON_SURFACE5_INFO 0x0b5c
  761. #define RADEON_SURFACE5_LOWER_BOUND 0x0b54
  762. #define RADEON_SURFACE5_UPPER_BOUND 0x0b58
  763. #define RADEON_SURFACE6_INFO 0x0b6c
  764. #define RADEON_SURFACE6_LOWER_BOUND 0x0b64
  765. #define RADEON_SURFACE6_UPPER_BOUND 0x0b68
  766. #define RADEON_SURFACE7_INFO 0x0b7c
  767. #define RADEON_SURFACE7_LOWER_BOUND 0x0b74
  768. #define RADEON_SURFACE7_UPPER_BOUND 0x0b78
  769. #define RADEON_SW_SEMAPHORE 0x013c
  770. #define RADEON_WAIT_UNTIL 0x1720
  771. # define RADEON_WAIT_CRTC_PFLIP (1 << 0)
  772. # define RADEON_WAIT_2D_IDLE (1 << 14)
  773. # define RADEON_WAIT_3D_IDLE (1 << 15)
  774. # define RADEON_WAIT_2D_IDLECLEAN (1 << 16)
  775. # define RADEON_WAIT_3D_IDLECLEAN (1 << 17)
  776. # define RADEON_WAIT_HOST_IDLECLEAN (1 << 18)
  777. #define RADEON_RB3D_ZMASKOFFSET 0x3234
  778. #define RADEON_RB3D_ZSTENCILCNTL 0x1c2c
  779. # define RADEON_DEPTH_FORMAT_16BIT_INT_Z (0 << 0)
  780. # define RADEON_DEPTH_FORMAT_24BIT_INT_Z (2 << 0)
  781. /* CP registers */
  782. #define RADEON_CP_ME_RAM_ADDR 0x07d4
  783. #define RADEON_CP_ME_RAM_RADDR 0x07d8
  784. #define RADEON_CP_ME_RAM_DATAH 0x07dc
  785. #define RADEON_CP_ME_RAM_DATAL 0x07e0
  786. #define RADEON_CP_RB_BASE 0x0700
  787. #define RADEON_CP_RB_CNTL 0x0704
  788. # define RADEON_BUF_SWAP_32BIT (2 << 16)
  789. # define RADEON_RB_NO_UPDATE (1 << 27)
  790. #define RADEON_CP_RB_RPTR_ADDR 0x070c
  791. #define RADEON_CP_RB_RPTR 0x0710
  792. #define RADEON_CP_RB_WPTR 0x0714
  793. #define RADEON_CP_RB_WPTR_DELAY 0x0718
  794. # define RADEON_PRE_WRITE_TIMER_SHIFT 0
  795. # define RADEON_PRE_WRITE_LIMIT_SHIFT 23
  796. #define RADEON_CP_IB_BASE 0x0738
  797. #define RADEON_CP_CSQ_CNTL 0x0740
  798. # define RADEON_CSQ_CNT_PRIMARY_MASK (0xff << 0)
  799. # define RADEON_CSQ_PRIDIS_INDDIS (0 << 28)
  800. # define RADEON_CSQ_PRIPIO_INDDIS (1 << 28)
  801. # define RADEON_CSQ_PRIBM_INDDIS (2 << 28)
  802. # define RADEON_CSQ_PRIPIO_INDBM (3 << 28)
  803. # define RADEON_CSQ_PRIBM_INDBM (4 << 28)
  804. # define RADEON_CSQ_PRIPIO_INDPIO (15 << 28)
  805. #define RADEON_AIC_CNTL 0x01d0
  806. # define RADEON_PCIGART_TRANSLATE_EN (1 << 0)
  807. #define RADEON_AIC_STAT 0x01d4
  808. #define RADEON_AIC_PT_BASE 0x01d8
  809. #define RADEON_AIC_LO_ADDR 0x01dc
  810. #define RADEON_AIC_HI_ADDR 0x01e0
  811. #define RADEON_AIC_TLB_ADDR 0x01e4
  812. #define RADEON_AIC_TLB_DATA 0x01e8
  813. /* CP command packets */
  814. #define RADEON_CP_PACKET0 0x00000000
  815. # define RADEON_ONE_REG_WR (1 << 15)
  816. #define RADEON_CP_PACKET1 0x40000000
  817. #define RADEON_CP_PACKET2 0x80000000
  818. #define RADEON_CP_PACKET3 0xC0000000
  819. # define RADEON_CP_NOP 0x00001000
  820. # define RADEON_CP_NEXT_CHAR 0x00001900
  821. # define RADEON_CP_PLY_NEXTSCAN 0x00001D00
  822. # define RADEON_CP_SET_SCISSORS 0x00001E00
  823. /* GEN_INDX_PRIM is unsupported starting with R300 */
  824. # define RADEON_3D_RNDR_GEN_INDX_PRIM 0x00002300
  825. # define RADEON_WAIT_FOR_IDLE 0x00002600
  826. # define RADEON_3D_DRAW_VBUF 0x00002800
  827. # define RADEON_3D_DRAW_IMMD 0x00002900
  828. # define RADEON_3D_DRAW_INDX 0x00002A00
  829. # define RADEON_CP_LOAD_PALETTE 0x00002C00
  830. # define RADEON_3D_LOAD_VBPNTR 0x00002F00
  831. # define RADEON_MPEG_IDCT_MACROBLOCK 0x00003000
  832. # define RADEON_MPEG_IDCT_MACROBLOCK_REV 0x00003100
  833. # define RADEON_3D_CLEAR_ZMASK 0x00003200
  834. # define RADEON_CP_INDX_BUFFER 0x00003300
  835. # define RADEON_CP_3D_DRAW_VBUF_2 0x00003400
  836. # define RADEON_CP_3D_DRAW_IMMD_2 0x00003500
  837. # define RADEON_CP_3D_DRAW_INDX_2 0x00003600
  838. # define RADEON_3D_CLEAR_HIZ 0x00003700
  839. # define RADEON_CP_3D_CLEAR_CMASK 0x00003802
  840. # define RADEON_CNTL_HOSTDATA_BLT 0x00009400
  841. # define RADEON_CNTL_PAINT_MULTI 0x00009A00
  842. # define RADEON_CNTL_BITBLT_MULTI 0x00009B00
  843. # define RADEON_CNTL_SET_SCISSORS 0xC0001E00
  844. #define RADEON_CP_PACKET_MASK 0xC0000000
  845. #define RADEON_CP_PACKET_COUNT_MASK 0x3fff0000
  846. #define RADEON_CP_PACKET0_REG_MASK 0x000007ff
  847. #define RADEON_CP_PACKET1_REG0_MASK 0x000007ff
  848. #define RADEON_CP_PACKET1_REG1_MASK 0x003ff800
  849. #define RADEON_VTX_Z_PRESENT (1 << 31)
  850. #define RADEON_VTX_PKCOLOR_PRESENT (1 << 3)
  851. #define RADEON_PRIM_TYPE_NONE (0 << 0)
  852. #define RADEON_PRIM_TYPE_POINT (1 << 0)
  853. #define RADEON_PRIM_TYPE_LINE (2 << 0)
  854. #define RADEON_PRIM_TYPE_LINE_STRIP (3 << 0)
  855. #define RADEON_PRIM_TYPE_TRI_LIST (4 << 0)
  856. #define RADEON_PRIM_TYPE_TRI_FAN (5 << 0)
  857. #define RADEON_PRIM_TYPE_TRI_STRIP (6 << 0)
  858. #define RADEON_PRIM_TYPE_TRI_TYPE2 (7 << 0)
  859. #define RADEON_PRIM_TYPE_RECT_LIST (8 << 0)
  860. #define RADEON_PRIM_TYPE_3VRT_POINT_LIST (9 << 0)
  861. #define RADEON_PRIM_TYPE_3VRT_LINE_LIST (10 << 0)
  862. #define RADEON_PRIM_TYPE_MASK 0xf
  863. #define RADEON_PRIM_WALK_IND (1 << 4)
  864. #define RADEON_PRIM_WALK_LIST (2 << 4)
  865. #define RADEON_PRIM_WALK_RING (3 << 4)
  866. #define RADEON_COLOR_ORDER_BGRA (0 << 6)
  867. #define RADEON_COLOR_ORDER_RGBA (1 << 6)
  868. #define RADEON_MAOS_ENABLE (1 << 7)
  869. #define RADEON_VTX_FMT_R128_MODE (0 << 8)
  870. #define RADEON_VTX_FMT_RADEON_MODE (1 << 8)
  871. #define RADEON_NUM_VERTICES_SHIFT 16
  872. #define RADEON_COLOR_FORMAT_CI8 2
  873. #define RADEON_COLOR_FORMAT_ARGB1555 3
  874. #define RADEON_COLOR_FORMAT_RGB565 4
  875. #define RADEON_COLOR_FORMAT_ARGB8888 6
  876. #define RADEON_COLOR_FORMAT_RGB332 7
  877. #define RADEON_COLOR_FORMAT_RGB8 9
  878. #define RADEON_COLOR_FORMAT_ARGB4444 15
  879. #define RADEON_TXFORMAT_I8 0
  880. #define RADEON_TXFORMAT_AI88 1
  881. #define RADEON_TXFORMAT_RGB332 2
  882. #define RADEON_TXFORMAT_ARGB1555 3
  883. #define RADEON_TXFORMAT_RGB565 4
  884. #define RADEON_TXFORMAT_ARGB4444 5
  885. #define RADEON_TXFORMAT_ARGB8888 6
  886. #define RADEON_TXFORMAT_RGBA8888 7
  887. #define RADEON_TXFORMAT_Y8 8
  888. #define RADEON_TXFORMAT_VYUY422 10
  889. #define RADEON_TXFORMAT_YVYU422 11
  890. #define RADEON_TXFORMAT_DXT1 12
  891. #define RADEON_TXFORMAT_DXT23 14
  892. #define RADEON_TXFORMAT_DXT45 15
  893. #define R200_PP_TXCBLEND_0 0x2f00
  894. #define R200_PP_TXCBLEND_1 0x2f10
  895. #define R200_PP_TXCBLEND_2 0x2f20
  896. #define R200_PP_TXCBLEND_3 0x2f30
  897. #define R200_PP_TXCBLEND_4 0x2f40
  898. #define R200_PP_TXCBLEND_5 0x2f50
  899. #define R200_PP_TXCBLEND_6 0x2f60
  900. #define R200_PP_TXCBLEND_7 0x2f70
  901. #define R200_SE_TCL_LIGHT_MODEL_CTL_0 0x2268
  902. #define R200_PP_TFACTOR_0 0x2ee0
  903. #define R200_SE_VTX_FMT_0 0x2088
  904. #define R200_SE_VAP_CNTL 0x2080
  905. #define R200_SE_TCL_MATRIX_SEL_0 0x2230
  906. #define R200_SE_TCL_TEX_PROC_CTL_2 0x22a8
  907. #define R200_SE_TCL_UCP_VERT_BLEND_CTL 0x22c0
  908. #define R200_PP_TXFILTER_5 0x2ca0
  909. #define R200_PP_TXFILTER_4 0x2c80
  910. #define R200_PP_TXFILTER_3 0x2c60
  911. #define R200_PP_TXFILTER_2 0x2c40
  912. #define R200_PP_TXFILTER_1 0x2c20
  913. #define R200_PP_TXFILTER_0 0x2c00
  914. #define R200_PP_TXOFFSET_5 0x2d78
  915. #define R200_PP_TXOFFSET_4 0x2d60
  916. #define R200_PP_TXOFFSET_3 0x2d48
  917. #define R200_PP_TXOFFSET_2 0x2d30
  918. #define R200_PP_TXOFFSET_1 0x2d18
  919. #define R200_PP_TXOFFSET_0 0x2d00
  920. #define R200_PP_CUBIC_FACES_0 0x2c18
  921. #define R200_PP_CUBIC_FACES_1 0x2c38
  922. #define R200_PP_CUBIC_FACES_2 0x2c58
  923. #define R200_PP_CUBIC_FACES_3 0x2c78
  924. #define R200_PP_CUBIC_FACES_4 0x2c98
  925. #define R200_PP_CUBIC_FACES_5 0x2cb8
  926. #define R200_PP_CUBIC_OFFSET_F1_0 0x2d04
  927. #define R200_PP_CUBIC_OFFSET_F2_0 0x2d08
  928. #define R200_PP_CUBIC_OFFSET_F3_0 0x2d0c
  929. #define R200_PP_CUBIC_OFFSET_F4_0 0x2d10
  930. #define R200_PP_CUBIC_OFFSET_F5_0 0x2d14
  931. #define R200_PP_CUBIC_OFFSET_F1_1 0x2d1c
  932. #define R200_PP_CUBIC_OFFSET_F2_1 0x2d20
  933. #define R200_PP_CUBIC_OFFSET_F3_1 0x2d24
  934. #define R200_PP_CUBIC_OFFSET_F4_1 0x2d28
  935. #define R200_PP_CUBIC_OFFSET_F5_1 0x2d2c
  936. #define R200_PP_CUBIC_OFFSET_F1_2 0x2d34
  937. #define R200_PP_CUBIC_OFFSET_F2_2 0x2d38
  938. #define R200_PP_CUBIC_OFFSET_F3_2 0x2d3c
  939. #define R200_PP_CUBIC_OFFSET_F4_2 0x2d40
  940. #define R200_PP_CUBIC_OFFSET_F5_2 0x2d44
  941. #define R200_PP_CUBIC_OFFSET_F1_3 0x2d4c
  942. #define R200_PP_CUBIC_OFFSET_F2_3 0x2d50
  943. #define R200_PP_CUBIC_OFFSET_F3_3 0x2d54
  944. #define R200_PP_CUBIC_OFFSET_F4_3 0x2d58
  945. #define R200_PP_CUBIC_OFFSET_F5_3 0x2d5c
  946. #define R200_PP_CUBIC_OFFSET_F1_4 0x2d64
  947. #define R200_PP_CUBIC_OFFSET_F2_4 0x2d68
  948. #define R200_PP_CUBIC_OFFSET_F3_4 0x2d6c
  949. #define R200_PP_CUBIC_OFFSET_F4_4 0x2d70
  950. #define R200_PP_CUBIC_OFFSET_F5_4 0x2d74
  951. #define R200_PP_CUBIC_OFFSET_F1_5 0x2d7c
  952. #define R200_PP_CUBIC_OFFSET_F2_5 0x2d80
  953. #define R200_PP_CUBIC_OFFSET_F3_5 0x2d84
  954. #define R200_PP_CUBIC_OFFSET_F4_5 0x2d88
  955. #define R200_PP_CUBIC_OFFSET_F5_5 0x2d8c
  956. #define R200_RE_AUX_SCISSOR_CNTL 0x26f0
  957. #define R200_SE_VTE_CNTL 0x20b0
  958. #define R200_SE_TCL_OUTPUT_VTX_COMP_SEL 0x2250
  959. #define R200_PP_TAM_DEBUG3 0x2d9c
  960. #define R200_PP_CNTL_X 0x2cc4
  961. #define R200_SE_VAP_CNTL_STATUS 0x2140
  962. #define R200_RE_SCISSOR_TL_0 0x1cd8
  963. #define R200_RE_SCISSOR_TL_1 0x1ce0
  964. #define R200_RE_SCISSOR_TL_2 0x1ce8
  965. #define R200_RB3D_DEPTHXY_OFFSET 0x1d60
  966. #define R200_RE_AUX_SCISSOR_CNTL 0x26f0
  967. #define R200_SE_VTX_STATE_CNTL 0x2180
  968. #define R200_RE_POINTSIZE 0x2648
  969. #define R200_SE_TCL_INPUT_VTX_VECTOR_ADDR_0 0x2254
  970. #define RADEON_PP_TEX_SIZE_0 0x1d04 /* NPOT */
  971. #define RADEON_PP_TEX_SIZE_1 0x1d0c
  972. #define RADEON_PP_TEX_SIZE_2 0x1d14
  973. #define RADEON_PP_CUBIC_FACES_0 0x1d24
  974. #define RADEON_PP_CUBIC_FACES_1 0x1d28
  975. #define RADEON_PP_CUBIC_FACES_2 0x1d2c
  976. #define RADEON_PP_CUBIC_OFFSET_T0_0 0x1dd0 /* bits [31:5] */
  977. #define RADEON_PP_CUBIC_OFFSET_T1_0 0x1e00
  978. #define RADEON_PP_CUBIC_OFFSET_T2_0 0x1e14
  979. #define RADEON_SE_TCL_STATE_FLUSH 0x2284
  980. #define SE_VAP_CNTL__TCL_ENA_MASK 0x00000001
  981. #define SE_VAP_CNTL__FORCE_W_TO_ONE_MASK 0x00010000
  982. #define SE_VAP_CNTL__VF_MAX_VTX_NUM__SHIFT 0x00000012
  983. #define SE_VTE_CNTL__VTX_XY_FMT_MASK 0x00000100
  984. #define SE_VTE_CNTL__VTX_Z_FMT_MASK 0x00000200
  985. #define SE_VTX_FMT_0__VTX_Z0_PRESENT_MASK 0x00000001
  986. #define SE_VTX_FMT_0__VTX_W0_PRESENT_MASK 0x00000002
  987. #define SE_VTX_FMT_0__VTX_COLOR_0_FMT__SHIFT 0x0000000b
  988. #define R200_3D_DRAW_IMMD_2 0xC0003500
  989. #define R200_SE_VTX_FMT_1 0x208c
  990. #define R200_RE_CNTL 0x1c50
  991. #define R200_RB3D_BLENDCOLOR 0x3218
  992. #define R200_SE_TCL_POINT_SPRITE_CNTL 0x22c4
  993. #define R200_PP_TRI_PERF 0x2cf8
  994. #define R200_PP_AFS_0 0x2f80
  995. #define R200_PP_AFS_1 0x2f00 /* same as txcblend_0 */
  996. #define R200_VAP_PVS_CNTL_1 0x22D0
  997. #define R500_D1CRTC_STATUS 0x609c
  998. #define R500_D2CRTC_STATUS 0x689c
  999. #define R500_CRTC_V_BLANK (1<<0)
  1000. #define R500_D1CRTC_FRAME_COUNT 0x60a4
  1001. #define R500_D2CRTC_FRAME_COUNT 0x68a4
  1002. #define R500_D1MODE_V_COUNTER 0x6530
  1003. #define R500_D2MODE_V_COUNTER 0x6d30
  1004. #define R500_D1MODE_VBLANK_STATUS 0x6534
  1005. #define R500_D2MODE_VBLANK_STATUS 0x6d34
  1006. #define R500_VBLANK_OCCURED (1<<0)
  1007. #define R500_VBLANK_ACK (1<<4)
  1008. #define R500_VBLANK_STAT (1<<12)
  1009. #define R500_VBLANK_INT (1<<16)
  1010. #define R500_DxMODE_INT_MASK 0x6540
  1011. #define R500_D1MODE_INT_MASK (1<<0)
  1012. #define R500_D2MODE_INT_MASK (1<<8)
  1013. #define R500_DISP_INTERRUPT_STATUS 0x7edc
  1014. #define R500_D1_VBLANK_INTERRUPT (1 << 4)
  1015. #define R500_D2_VBLANK_INTERRUPT (1 << 5)
  1016. /* Constants */
  1017. #define RADEON_MAX_USEC_TIMEOUT 100000 /* 100 ms */
  1018. #define RADEON_LAST_FRAME_REG RADEON_SCRATCH_REG0
  1019. #define RADEON_LAST_DISPATCH_REG RADEON_SCRATCH_REG1
  1020. #define RADEON_LAST_CLEAR_REG RADEON_SCRATCH_REG2
  1021. #define RADEON_LAST_SWI_REG RADEON_SCRATCH_REG3
  1022. #define RADEON_LAST_DISPATCH 1
  1023. #define RADEON_MAX_VB_AGE 0x7fffffff
  1024. #define RADEON_MAX_VB_VERTS (0xffff)
  1025. #define RADEON_RING_HIGH_MARK 128
  1026. #define RADEON_PCIGART_TABLE_SIZE (32*1024)
  1027. #define RADEON_READ(reg) DRM_READ32( dev_priv->mmio, (reg) )
  1028. #define RADEON_WRITE(reg,val) DRM_WRITE32( dev_priv->mmio, (reg), (val) )
  1029. #define RADEON_READ8(reg) DRM_READ8( dev_priv->mmio, (reg) )
  1030. #define RADEON_WRITE8(reg,val) DRM_WRITE8( dev_priv->mmio, (reg), (val) )
  1031. #define RADEON_WRITE_PLL(addr, val) \
  1032. do { \
  1033. RADEON_WRITE8(RADEON_CLOCK_CNTL_INDEX, \
  1034. ((addr) & 0x1f) | RADEON_PLL_WR_EN ); \
  1035. RADEON_WRITE(RADEON_CLOCK_CNTL_DATA, (val)); \
  1036. } while (0)
  1037. #define RADEON_WRITE_PCIE(addr, val) \
  1038. do { \
  1039. RADEON_WRITE8(RADEON_PCIE_INDEX, \
  1040. ((addr) & 0xff)); \
  1041. RADEON_WRITE(RADEON_PCIE_DATA, (val)); \
  1042. } while (0)
  1043. #define R500_WRITE_MCIND(addr, val) \
  1044. do { \
  1045. RADEON_WRITE(R520_MC_IND_INDEX, 0xff0000 | ((addr) & 0xff)); \
  1046. RADEON_WRITE(R520_MC_IND_DATA, (val)); \
  1047. RADEON_WRITE(R520_MC_IND_INDEX, 0); \
  1048. } while (0)
  1049. #define RS480_WRITE_MCIND(addr, val) \
  1050. do { \
  1051. RADEON_WRITE(RS480_NB_MC_INDEX, \
  1052. ((addr) & 0xff) | RS480_NB_MC_IND_WR_EN); \
  1053. RADEON_WRITE(RS480_NB_MC_DATA, (val)); \
  1054. RADEON_WRITE(RS480_NB_MC_INDEX, 0xff); \
  1055. } while (0)
  1056. #define RS690_WRITE_MCIND(addr, val) \
  1057. do { \
  1058. RADEON_WRITE(RS690_MC_INDEX, RS690_MC_INDEX_WR_EN | ((addr) & RS690_MC_INDEX_MASK)); \
  1059. RADEON_WRITE(RS690_MC_DATA, val); \
  1060. RADEON_WRITE(RS690_MC_INDEX, RS690_MC_INDEX_WR_ACK); \
  1061. } while (0)
  1062. #define IGP_WRITE_MCIND(addr, val) \
  1063. do { \
  1064. if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) \
  1065. RS690_WRITE_MCIND(addr, val); \
  1066. else \
  1067. RS480_WRITE_MCIND(addr, val); \
  1068. } while (0)
  1069. #define CP_PACKET0( reg, n ) \
  1070. (RADEON_CP_PACKET0 | ((n) << 16) | ((reg) >> 2))
  1071. #define CP_PACKET0_TABLE( reg, n ) \
  1072. (RADEON_CP_PACKET0 | RADEON_ONE_REG_WR | ((n) << 16) | ((reg) >> 2))
  1073. #define CP_PACKET1( reg0, reg1 ) \
  1074. (RADEON_CP_PACKET1 | (((reg1) >> 2) << 15) | ((reg0) >> 2))
  1075. #define CP_PACKET2() \
  1076. (RADEON_CP_PACKET2)
  1077. #define CP_PACKET3( pkt, n ) \
  1078. (RADEON_CP_PACKET3 | (pkt) | ((n) << 16))
  1079. /* ================================================================
  1080. * Engine control helper macros
  1081. */
  1082. #define RADEON_WAIT_UNTIL_2D_IDLE() do { \
  1083. OUT_RING( CP_PACKET0( RADEON_WAIT_UNTIL, 0 ) ); \
  1084. OUT_RING( (RADEON_WAIT_2D_IDLECLEAN | \
  1085. RADEON_WAIT_HOST_IDLECLEAN) ); \
  1086. } while (0)
  1087. #define RADEON_WAIT_UNTIL_3D_IDLE() do { \
  1088. OUT_RING( CP_PACKET0( RADEON_WAIT_UNTIL, 0 ) ); \
  1089. OUT_RING( (RADEON_WAIT_3D_IDLECLEAN | \
  1090. RADEON_WAIT_HOST_IDLECLEAN) ); \
  1091. } while (0)
  1092. #define RADEON_WAIT_UNTIL_IDLE() do { \
  1093. OUT_RING( CP_PACKET0( RADEON_WAIT_UNTIL, 0 ) ); \
  1094. OUT_RING( (RADEON_WAIT_2D_IDLECLEAN | \
  1095. RADEON_WAIT_3D_IDLECLEAN | \
  1096. RADEON_WAIT_HOST_IDLECLEAN) ); \
  1097. } while (0)
  1098. #define RADEON_WAIT_UNTIL_PAGE_FLIPPED() do { \
  1099. OUT_RING( CP_PACKET0( RADEON_WAIT_UNTIL, 0 ) ); \
  1100. OUT_RING( RADEON_WAIT_CRTC_PFLIP ); \
  1101. } while (0)
  1102. #define RADEON_FLUSH_CACHE() do { \
  1103. if ((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV280) { \
  1104. OUT_RING(CP_PACKET0(RADEON_RB3D_DSTCACHE_CTLSTAT, 0)); \
  1105. OUT_RING(RADEON_RB3D_DC_FLUSH); \
  1106. } else { \
  1107. OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); \
  1108. OUT_RING(RADEON_RB3D_DC_FLUSH); \
  1109. } \
  1110. } while (0)
  1111. #define RADEON_PURGE_CACHE() do { \
  1112. if ((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV280) { \
  1113. OUT_RING(CP_PACKET0(RADEON_RB3D_DSTCACHE_CTLSTAT, 0)); \
  1114. OUT_RING(RADEON_RB3D_DC_FLUSH_ALL); \
  1115. } else { \
  1116. OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); \
  1117. OUT_RING(RADEON_RB3D_DC_FLUSH_ALL); \
  1118. } \
  1119. } while (0)
  1120. #define RADEON_FLUSH_ZCACHE() do { \
  1121. if ((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV280) { \
  1122. OUT_RING(CP_PACKET0(RADEON_RB3D_ZCACHE_CTLSTAT, 0)); \
  1123. OUT_RING(RADEON_RB3D_ZC_FLUSH); \
  1124. } else { \
  1125. OUT_RING(CP_PACKET0(R300_ZB_ZCACHE_CTLSTAT, 0)); \
  1126. OUT_RING(R300_ZC_FLUSH); \
  1127. } \
  1128. } while (0)
  1129. #define RADEON_PURGE_ZCACHE() do { \
  1130. if ((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV280) { \
  1131. OUT_RING(CP_PACKET0(RADEON_RB3D_ZCACHE_CTLSTAT, 0)); \
  1132. OUT_RING(RADEON_RB3D_ZC_FLUSH_ALL); \
  1133. } else { \
  1134. OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); \
  1135. OUT_RING(R300_ZC_FLUSH_ALL); \
  1136. } \
  1137. } while (0)
  1138. /* ================================================================
  1139. * Misc helper macros
  1140. */
  1141. /* Perfbox functionality only.
  1142. */
  1143. #define RING_SPACE_TEST_WITH_RETURN( dev_priv ) \
  1144. do { \
  1145. if (!(dev_priv->stats.boxes & RADEON_BOX_DMA_IDLE)) { \
  1146. u32 head = GET_RING_HEAD( dev_priv ); \
  1147. if (head == dev_priv->ring.tail) \
  1148. dev_priv->stats.boxes |= RADEON_BOX_DMA_IDLE; \
  1149. } \
  1150. } while (0)
  1151. #define VB_AGE_TEST_WITH_RETURN( dev_priv ) \
  1152. do { \
  1153. drm_radeon_sarea_t *sarea_priv = dev_priv->sarea_priv; \
  1154. if ( sarea_priv->last_dispatch >= RADEON_MAX_VB_AGE ) { \
  1155. int __ret = radeon_do_cp_idle( dev_priv ); \
  1156. if ( __ret ) return __ret; \
  1157. sarea_priv->last_dispatch = 0; \
  1158. radeon_freelist_reset( dev ); \
  1159. } \
  1160. } while (0)
  1161. #define RADEON_DISPATCH_AGE( age ) do { \
  1162. OUT_RING( CP_PACKET0( RADEON_LAST_DISPATCH_REG, 0 ) ); \
  1163. OUT_RING( age ); \
  1164. } while (0)
  1165. #define RADEON_FRAME_AGE( age ) do { \
  1166. OUT_RING( CP_PACKET0( RADEON_LAST_FRAME_REG, 0 ) ); \
  1167. OUT_RING( age ); \
  1168. } while (0)
  1169. #define RADEON_CLEAR_AGE( age ) do { \
  1170. OUT_RING( CP_PACKET0( RADEON_LAST_CLEAR_REG, 0 ) ); \
  1171. OUT_RING( age ); \
  1172. } while (0)
  1173. /* ================================================================
  1174. * Ring control
  1175. */
  1176. #define RADEON_VERBOSE 0
  1177. #define RING_LOCALS int write, _nr; unsigned int mask; u32 *ring;
  1178. #define BEGIN_RING( n ) do { \
  1179. if ( RADEON_VERBOSE ) { \
  1180. DRM_INFO( "BEGIN_RING( %d )\n", (n)); \
  1181. } \
  1182. if ( dev_priv->ring.space <= (n) * sizeof(u32) ) { \
  1183. COMMIT_RING(); \
  1184. radeon_wait_ring( dev_priv, (n) * sizeof(u32) ); \
  1185. } \
  1186. _nr = n; dev_priv->ring.space -= (n) * sizeof(u32); \
  1187. ring = dev_priv->ring.start; \
  1188. write = dev_priv->ring.tail; \
  1189. mask = dev_priv->ring.tail_mask; \
  1190. } while (0)
  1191. #define ADVANCE_RING() do { \
  1192. if ( RADEON_VERBOSE ) { \
  1193. DRM_INFO( "ADVANCE_RING() wr=0x%06x tail=0x%06x\n", \
  1194. write, dev_priv->ring.tail ); \
  1195. } \
  1196. if (((dev_priv->ring.tail + _nr) & mask) != write) { \
  1197. DRM_ERROR( \
  1198. "ADVANCE_RING(): mismatch: nr: %x write: %x line: %d\n", \
  1199. ((dev_priv->ring.tail + _nr) & mask), \
  1200. write, __LINE__); \
  1201. } else \
  1202. dev_priv->ring.tail = write; \
  1203. } while (0)
  1204. #define COMMIT_RING() do { \
  1205. /* Flush writes to ring */ \
  1206. DRM_MEMORYBARRIER(); \
  1207. GET_RING_HEAD( dev_priv ); \
  1208. RADEON_WRITE( RADEON_CP_RB_WPTR, dev_priv->ring.tail ); \
  1209. /* read from PCI bus to ensure correct posting */ \
  1210. RADEON_READ( RADEON_CP_RB_RPTR ); \
  1211. } while (0)
  1212. #define OUT_RING( x ) do { \
  1213. if ( RADEON_VERBOSE ) { \
  1214. DRM_INFO( " OUT_RING( 0x%08x ) at 0x%x\n", \
  1215. (unsigned int)(x), write ); \
  1216. } \
  1217. ring[write++] = (x); \
  1218. write &= mask; \
  1219. } while (0)
  1220. #define OUT_RING_REG( reg, val ) do { \
  1221. OUT_RING( CP_PACKET0( reg, 0 ) ); \
  1222. OUT_RING( val ); \
  1223. } while (0)
  1224. #define OUT_RING_TABLE( tab, sz ) do { \
  1225. int _size = (sz); \
  1226. int *_tab = (int *)(tab); \
  1227. \
  1228. if (write + _size > mask) { \
  1229. int _i = (mask+1) - write; \
  1230. _size -= _i; \
  1231. while (_i > 0 ) { \
  1232. *(int *)(ring + write) = *_tab++; \
  1233. write++; \
  1234. _i--; \
  1235. } \
  1236. write = 0; \
  1237. _tab += _i; \
  1238. } \
  1239. while (_size > 0) { \
  1240. *(ring + write) = *_tab++; \
  1241. write++; \
  1242. _size--; \
  1243. } \
  1244. write &= mask; \
  1245. } while (0)
  1246. #endif /* __RADEON_DRV_H__ */