3 /* the accelerated functions here are patterned after the
4 * "ACCEL_MMIO" ifdef branches in XFree86
8 #define FLUSH_CACHE_WORKAROUND 1
10 void radeon_fifo_update_and_wait(struct radeonfb_info *rinfo, int entries)
14 for (i=0; i<2000000; i++) {
15 rinfo->fifo_free = INREG(RBBM_STATUS) & 0x7f;
16 if (rinfo->fifo_free >= entries)
20 printk(KERN_ERR "radeonfb: FIFO Timeout !\n");
21 /* XXX Todo: attempt to reset the engine */
24 static inline void radeon_fifo_wait(struct radeonfb_info *rinfo, int entries)
26 if (entries <= rinfo->fifo_free)
27 rinfo->fifo_free -= entries;
29 radeon_fifo_update_and_wait(rinfo, entries);
32 static inline void radeonfb_set_creg(struct radeonfb_info *rinfo, u32 reg,
33 u32 *cache, u32 new_val)
35 if (new_val == *cache)
38 radeon_fifo_wait(rinfo, 1);
42 static void radeonfb_prim_fillrect(struct radeonfb_info *rinfo,
43 const struct fb_fillrect *region)
45 radeonfb_set_creg(rinfo, DP_GUI_MASTER_CNTL, &rinfo->dp_gui_mc_cache,
46 rinfo->dp_gui_mc_base | GMC_BRUSH_SOLID_COLOR | ROP3_P);
47 radeonfb_set_creg(rinfo, DP_CNTL, &rinfo->dp_cntl_cache,
48 DST_X_LEFT_TO_RIGHT | DST_Y_TOP_TO_BOTTOM);
49 radeonfb_set_creg(rinfo, DP_BRUSH_FRGD_CLR, &rinfo->dp_brush_fg_cache,
52 /* Ensure the dst cache is flushed and the engine idle before
53 * issuing the operation.
55 * This works around engine lockups on some cards
57 #if FLUSH_CACHE_WORKAROUND
58 radeon_fifo_wait(rinfo, 2);
59 OUTREG(DSTCACHE_CTLSTAT, RB2D_DC_FLUSH_ALL);
60 OUTREG(WAIT_UNTIL, (WAIT_2D_IDLECLEAN | WAIT_DMA_GUI_IDLE));
62 radeon_fifo_wait(rinfo, 2);
63 OUTREG(DST_Y_X, (region->dy << 16) | region->dx);
64 OUTREG(DST_WIDTH_HEIGHT, (region->width << 16) | region->height);
67 void radeonfb_fillrect(struct fb_info *info, const struct fb_fillrect *region)
69 struct radeonfb_info *rinfo = info->par;
70 struct fb_fillrect modded;
73 WARN_ON(rinfo->gfx_mode);
74 if (info->state != FBINFO_STATE_RUNNING || rinfo->gfx_mode)
76 if (info->flags & FBINFO_HWACCEL_DISABLED) {
77 cfb_fillrect(info, region);
81 vxres = info->var.xres_virtual;
82 vyres = info->var.yres_virtual;
84 memcpy(&modded, region, sizeof(struct fb_fillrect));
86 if(!modded.width || !modded.height ||
87 modded.dx >= vxres || modded.dy >= vyres)
90 if(modded.dx + modded.width > vxres) modded.width = vxres - modded.dx;
91 if(modded.dy + modded.height > vyres) modded.height = vyres - modded.dy;
93 if (info->fix.visual == FB_VISUAL_TRUECOLOR ||
94 info->fix.visual == FB_VISUAL_DIRECTCOLOR )
95 modded.color = ((u32 *) (info->pseudo_palette))[region->color];
97 radeonfb_prim_fillrect(rinfo, &modded);
100 static void radeonfb_prim_copyarea(struct radeonfb_info *rinfo,
101 const struct fb_copyarea *area)
104 u32 sx, sy, dx, dy, w, h;
106 w = area->width; h = area->height;
107 dx = area->dx; dy = area->dy;
108 sx = area->sx; sy = area->sy;
112 if ( xdir < 0 ) { sx += w-1; dx += w-1; }
113 if ( ydir < 0 ) { sy += h-1; dy += h-1; }
115 radeonfb_set_creg(rinfo, DP_GUI_MASTER_CNTL, &rinfo->dp_gui_mc_cache,
116 rinfo->dp_gui_mc_base |
118 GMC_SRC_DATATYPE_COLOR |
120 DP_SRC_SOURCE_MEMORY);
121 radeonfb_set_creg(rinfo, DP_CNTL, &rinfo->dp_cntl_cache,
122 (xdir>=0 ? DST_X_LEFT_TO_RIGHT : 0) |
123 (ydir>=0 ? DST_Y_TOP_TO_BOTTOM : 0));
125 #if FLUSH_CACHE_WORKAROUND
126 radeon_fifo_wait(rinfo, 2);
127 OUTREG(DSTCACHE_CTLSTAT, RB2D_DC_FLUSH_ALL);
128 OUTREG(WAIT_UNTIL, (WAIT_2D_IDLECLEAN | WAIT_DMA_GUI_IDLE));
130 radeon_fifo_wait(rinfo, 3);
131 OUTREG(SRC_Y_X, (sy << 16) | sx);
132 OUTREG(DST_Y_X, (dy << 16) | dx);
133 OUTREG(DST_HEIGHT_WIDTH, (h << 16) | w);
137 void radeonfb_copyarea(struct fb_info *info, const struct fb_copyarea *area)
139 struct radeonfb_info *rinfo = info->par;
140 struct fb_copyarea modded;
142 modded.sx = area->sx;
143 modded.sy = area->sy;
144 modded.dx = area->dx;
145 modded.dy = area->dy;
146 modded.width = area->width;
147 modded.height = area->height;
149 WARN_ON(rinfo->gfx_mode);
150 if (info->state != FBINFO_STATE_RUNNING || rinfo->gfx_mode)
152 if (info->flags & FBINFO_HWACCEL_DISABLED) {
153 cfb_copyarea(info, area);
157 vxres = info->var.xres_virtual;
158 vyres = info->var.yres_virtual;
160 if(!modded.width || !modded.height ||
161 modded.sx >= vxres || modded.sy >= vyres ||
162 modded.dx >= vxres || modded.dy >= vyres)
165 if(modded.sx + modded.width > vxres) modded.width = vxres - modded.sx;
166 if(modded.dx + modded.width > vxres) modded.width = vxres - modded.dx;
167 if(modded.sy + modded.height > vyres) modded.height = vyres - modded.sy;
168 if(modded.dy + modded.height > vyres) modded.height = vyres - modded.dy;
170 radeonfb_prim_copyarea(rinfo, &modded);
173 static void radeonfb_prim_imageblit(struct radeonfb_info *rinfo,
174 const struct fb_image *image,
180 radeonfb_set_creg(rinfo, DP_GUI_MASTER_CNTL, &rinfo->dp_gui_mc_cache,
181 rinfo->dp_gui_mc_base |
182 GMC_BRUSH_NONE | GMC_DST_CLIP_LEAVE |
183 GMC_SRC_DATATYPE_MONO_FG_BG |
185 GMC_BYTE_ORDER_MSB_TO_LSB |
186 DP_SRC_SOURCE_HOST_DATA);
187 radeonfb_set_creg(rinfo, DP_CNTL, &rinfo->dp_cntl_cache,
188 DST_X_LEFT_TO_RIGHT | DST_Y_TOP_TO_BOTTOM);
189 radeonfb_set_creg(rinfo, DP_SRC_FRGD_CLR, &rinfo->dp_src_fg_cache, fg);
190 radeonfb_set_creg(rinfo, DP_SRC_BKGD_CLR, &rinfo->dp_src_bg_cache, bg);
192 /* Ensure the dst cache is flushed and the engine idle before
193 * issuing the operation.
195 * This works around engine lockups on some cards
197 #if FLUSH_CACHE_WORKAROUND
198 radeon_fifo_wait(rinfo, 2);
199 OUTREG(DSTCACHE_CTLSTAT, RB2D_DC_FLUSH_ALL);
200 OUTREG(WAIT_UNTIL, (WAIT_2D_IDLECLEAN | WAIT_DMA_GUI_IDLE));
203 /* X here pads width to a multiple of 32 and uses the clipper to
204 * adjust the result. Is that really necessary ? Things seem to
205 * work ok for me without that and the doco doesn't seem to imply]
206 * there is such a restriction.
208 radeon_fifo_wait(rinfo, 4);
209 OUTREG(SC_TOP_LEFT, (image->dy << 16) | image->dx);
210 OUTREG(SC_BOTTOM_RIGHT, ((image->dy + image->height) << 16) |
211 (image->dx + image->width));
212 OUTREG(DST_Y_X, (image->dy << 16) | image->dx);
214 OUTREG(DST_HEIGHT_WIDTH, (image->height << 16) | ((image->width + 31) & ~31));
216 dwords = (image->width + 31) >> 5;
217 dwords *= image->height;
218 bits = (u32*)(image->data);
221 radeon_fifo_wait(rinfo, 8);
222 #if BITS_PER_LONG == 64
223 __raw_writeq(*((u64 *)(bits)), rinfo->mmio_base + HOST_DATA0);
224 __raw_writeq(*((u64 *)(bits+2)), rinfo->mmio_base + HOST_DATA2);
225 __raw_writeq(*((u64 *)(bits+4)), rinfo->mmio_base + HOST_DATA4);
226 __raw_writeq(*((u64 *)(bits+6)), rinfo->mmio_base + HOST_DATA6);
229 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA0);
230 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA1);
231 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA2);
232 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA3);
233 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA4);
234 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA5);
235 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA6);
236 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA7);
241 radeon_fifo_wait(rinfo, 1);
242 __raw_writel(*(bits++), rinfo->mmio_base + HOST_DATA0);
246 void radeonfb_imageblit(struct fb_info *info, const struct fb_image *image)
248 struct radeonfb_info *rinfo = info->par;
251 WARN_ON(rinfo->gfx_mode);
252 if (info->state != FBINFO_STATE_RUNNING || rinfo->gfx_mode)
255 if (!image->width || !image->height)
258 /* We only do 1 bpp color expansion for now */
260 (info->flags & FBINFO_HWACCEL_DISABLED) || image->depth != 1)
263 /* Fallback if running out of the screen. We may do clipping
265 if ((image->dx + image->width) > info->var.xres_virtual ||
266 (image->dy + image->height) > info->var.yres_virtual)
269 if (info->fix.visual == FB_VISUAL_TRUECOLOR ||
270 info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
271 fg = ((u32*)(info->pseudo_palette))[image->fg_color];
272 bg = ((u32*)(info->pseudo_palette))[image->bg_color];
274 fg = image->fg_color;
275 bg = image->bg_color;
278 radeonfb_prim_imageblit(rinfo, image, fg, bg);
282 radeon_engine_idle(rinfo);
284 cfb_imageblit(info, image);
287 int radeonfb_sync(struct fb_info *info)
289 struct radeonfb_info *rinfo = info->par;
291 if (info->state != FBINFO_STATE_RUNNING)
294 radeon_engine_idle(rinfo);
299 void radeonfb_engine_reset(struct radeonfb_info *rinfo)
301 u32 clock_cntl_index, mclk_cntl, rbbm_soft_reset;
304 radeon_engine_flush (rinfo);
306 clock_cntl_index = INREG(CLOCK_CNTL_INDEX);
307 mclk_cntl = INPLL(MCLK_CNTL);
309 OUTPLL(MCLK_CNTL, (mclk_cntl |
317 host_path_cntl = INREG(HOST_PATH_CNTL);
318 rbbm_soft_reset = INREG(RBBM_SOFT_RESET);
320 if (IS_R300_VARIANT(rinfo)) {
323 OUTREG(RBBM_SOFT_RESET, (rbbm_soft_reset |
327 INREG(RBBM_SOFT_RESET);
328 OUTREG(RBBM_SOFT_RESET, 0);
329 tmp = INREG(RB2D_DSTCACHE_MODE);
330 OUTREG(RB2D_DSTCACHE_MODE, tmp | (1 << 17)); /* FIXME */
332 OUTREG(RBBM_SOFT_RESET, rbbm_soft_reset |
340 INREG(RBBM_SOFT_RESET);
341 OUTREG(RBBM_SOFT_RESET, rbbm_soft_reset & (u32)
349 INREG(RBBM_SOFT_RESET);
352 OUTREG(HOST_PATH_CNTL, host_path_cntl | HDP_SOFT_RESET);
353 INREG(HOST_PATH_CNTL);
354 OUTREG(HOST_PATH_CNTL, host_path_cntl);
356 if (!IS_R300_VARIANT(rinfo))
357 OUTREG(RBBM_SOFT_RESET, rbbm_soft_reset);
359 OUTREG(CLOCK_CNTL_INDEX, clock_cntl_index);
360 OUTPLL(MCLK_CNTL, mclk_cntl);
363 void radeonfb_engine_init (struct radeonfb_info *rinfo)
367 /* disable 3D engine */
368 OUTREG(RB3D_CNTL, 0);
370 rinfo->fifo_free = 0;
371 radeonfb_engine_reset(rinfo);
373 radeon_fifo_wait(rinfo, 1);
374 if (IS_R300_VARIANT(rinfo)) {
375 OUTREG(RB2D_DSTCACHE_MODE, INREG(RB2D_DSTCACHE_MODE) |
376 RB2D_DC_AUTOFLUSH_ENABLE |
377 RB2D_DC_DC_DISABLE_IGNORE_PE);
379 /* This needs to be double checked with ATI. Latest X driver
380 * completely "forgets" to set this register on < r3xx, and
381 * we used to just write 0 there... I'll keep the 0 and update
382 * that when we have sorted things out on X side.
384 OUTREG(RB2D_DSTCACHE_MODE, 0);
387 radeon_fifo_wait(rinfo, 3);
388 /* We re-read MC_FB_LOCATION from card as it can have been
389 * modified by XFree drivers (ouch !)
391 rinfo->fb_local_base = INREG(MC_FB_LOCATION) << 16;
393 OUTREG(DEFAULT_PITCH_OFFSET, (rinfo->pitch << 0x16) |
394 (rinfo->fb_local_base >> 10));
395 OUTREG(DST_PITCH_OFFSET, (rinfo->pitch << 0x16) | (rinfo->fb_local_base >> 10));
396 OUTREG(SRC_PITCH_OFFSET, (rinfo->pitch << 0x16) | (rinfo->fb_local_base >> 10));
398 radeon_fifo_wait(rinfo, 1);
400 OUTREGP(DP_DATATYPE, HOST_BIG_ENDIAN_EN, ~HOST_BIG_ENDIAN_EN);
402 OUTREGP(DP_DATATYPE, 0, ~HOST_BIG_ENDIAN_EN);
404 radeon_fifo_wait(rinfo, 2);
405 OUTREG(DEFAULT_SC_TOP_LEFT, 0);
406 OUTREG(DEFAULT_SC_BOTTOM_RIGHT, (DEFAULT_SC_RIGHT_MAX |
407 DEFAULT_SC_BOTTOM_MAX));
409 /* set default DP_GUI_MASTER_CNTL */
410 temp = radeon_get_dstbpp(rinfo->depth);
411 rinfo->dp_gui_mc_base = ((temp << 8) | GMC_CLR_CMP_CNTL_DIS);
413 rinfo->dp_gui_mc_cache = rinfo->dp_gui_mc_base |
414 GMC_BRUSH_SOLID_COLOR |
415 GMC_SRC_DATATYPE_COLOR;
416 radeon_fifo_wait(rinfo, 1);
417 OUTREG(DP_GUI_MASTER_CNTL, rinfo->dp_gui_mc_cache);
420 /* clear line drawing regs */
421 radeon_fifo_wait(rinfo, 2);
422 OUTREG(DST_LINE_START, 0);
423 OUTREG(DST_LINE_END, 0);
425 /* set brush and source color regs */
426 rinfo->dp_brush_fg_cache = 0xffffffff;
427 rinfo->dp_brush_bg_cache = 0x00000000;
428 rinfo->dp_src_fg_cache = 0xffffffff;
429 rinfo->dp_src_bg_cache = 0x00000000;
430 radeon_fifo_wait(rinfo, 4);
431 OUTREG(DP_BRUSH_FRGD_CLR, rinfo->dp_brush_fg_cache);
432 OUTREG(DP_BRUSH_BKGD_CLR, rinfo->dp_brush_bg_cache);
433 OUTREG(DP_SRC_FRGD_CLR, rinfo->dp_src_fg_cache);
434 OUTREG(DP_SRC_BKGD_CLR, rinfo->dp_src_bg_cache);
436 /* Default direction */
437 rinfo->dp_cntl_cache = DST_X_LEFT_TO_RIGHT | DST_Y_TOP_TO_BOTTOM;
438 radeon_fifo_wait(rinfo, 1);
439 OUTREG(DP_CNTL, rinfo->dp_cntl_cache);
441 /* default write mask */
442 radeon_fifo_wait(rinfo, 1);
443 OUTREG(DP_WRITE_MSK, 0xffffffff);
445 /* Default to no swapping of host data */
446 radeon_fifo_wait(rinfo, 1);
447 OUTREG(RBBM_GUICNTL, RBBM_GUICNTL_HOST_DATA_SWAP_NONE);
449 /* Make sure it's settled */
450 radeon_engine_idle(rinfo);