Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/jk/spufs into...
[deliverable/linux.git] / drivers / video / aty / radeon_accel.c
CommitLineData
1da177e4
LT
1#include "radeonfb.h"
2
3/* the accelerated functions here are patterned after the
4 * "ACCEL_MMIO" ifdef branches in XFree86
5 * --dte
6 */
7
8static void radeon_fixup_offset(struct radeonfb_info *rinfo)
9{
10 u32 local_base;
11
12 /* *** Ugly workaround *** */
13 /*
14 * On some platforms, the video memory is mapped at 0 in radeon chip space
15 * (like PPCs) by the firmware. X will always move it up so that it's seen
16 * by the chip to be at the same address as the PCI BAR.
17 * That means that when switching back from X, there is a mismatch between
18 * the offsets programmed into the engine. This means that potentially,
19 * accel operations done before radeonfb has a chance to re-init the engine
20 * will have incorrect offsets, and potentially trash system memory !
21 *
22 * The correct fix is for fbcon to never call any accel op before the engine
23 * has properly been re-initialized (by a call to set_var), but this is a
24 * complex fix. This workaround in the meantime, called before every accel
25 * operation, makes sure the offsets are in sync.
26 */
27
28 radeon_fifo_wait (1);
29 local_base = INREG(MC_FB_LOCATION) << 16;
30 if (local_base == rinfo->fb_local_base)
31 return;
32
33 rinfo->fb_local_base = local_base;
34
35 radeon_fifo_wait (3);
36 OUTREG(DEFAULT_PITCH_OFFSET, (rinfo->pitch << 0x16) |
37 (rinfo->fb_local_base >> 10));
38 OUTREG(DST_PITCH_OFFSET, (rinfo->pitch << 0x16) | (rinfo->fb_local_base >> 10));
39 OUTREG(SRC_PITCH_OFFSET, (rinfo->pitch << 0x16) | (rinfo->fb_local_base >> 10));
40}
41
42static void radeonfb_prim_fillrect(struct radeonfb_info *rinfo,
43 const struct fb_fillrect *region)
44{
45 radeon_fifo_wait(4);
46
47 OUTREG(DP_GUI_MASTER_CNTL,
48 rinfo->dp_gui_master_cntl /* contains, like GMC_DST_32BPP */
49 | GMC_BRUSH_SOLID_COLOR
50 | ROP3_P);
51 if (radeon_get_dstbpp(rinfo->depth) != DST_8BPP)
52 OUTREG(DP_BRUSH_FRGD_CLR, rinfo->pseudo_palette[region->color]);
53 else
54 OUTREG(DP_BRUSH_FRGD_CLR, region->color);
55 OUTREG(DP_WRITE_MSK, 0xffffffff);
56 OUTREG(DP_CNTL, (DST_X_LEFT_TO_RIGHT | DST_Y_TOP_TO_BOTTOM));
57
969830b2
DM
58 radeon_fifo_wait(2);
59 OUTREG(DSTCACHE_CTLSTAT, RB2D_DC_FLUSH_ALL);
60 OUTREG(WAIT_UNTIL, (WAIT_2D_IDLECLEAN | WAIT_DMA_GUI_IDLE));
61
1da177e4
LT
62 radeon_fifo_wait(2);
63 OUTREG(DST_Y_X, (region->dy << 16) | region->dx);
64 OUTREG(DST_WIDTH_HEIGHT, (region->width << 16) | region->height);
65}
66
67void radeonfb_fillrect(struct fb_info *info, const struct fb_fillrect *region)
68{
69 struct radeonfb_info *rinfo = info->par;
70 struct fb_fillrect modded;
71 int vxres, vyres;
72
73 if (info->state != FBINFO_STATE_RUNNING)
74 return;
75 if (info->flags & FBINFO_HWACCEL_DISABLED) {
76 cfb_fillrect(info, region);
77 return;
78 }
79
80 radeon_fixup_offset(rinfo);
81
82 vxres = info->var.xres_virtual;
83 vyres = info->var.yres_virtual;
84
85 memcpy(&modded, region, sizeof(struct fb_fillrect));
86
87 if(!modded.width || !modded.height ||
88 modded.dx >= vxres || modded.dy >= vyres)
89 return;
90
91 if(modded.dx + modded.width > vxres) modded.width = vxres - modded.dx;
92 if(modded.dy + modded.height > vyres) modded.height = vyres - modded.dy;
93
94 radeonfb_prim_fillrect(rinfo, &modded);
95}
96
97static void radeonfb_prim_copyarea(struct radeonfb_info *rinfo,
98 const struct fb_copyarea *area)
99{
100 int xdir, ydir;
101 u32 sx, sy, dx, dy, w, h;
102
103 w = area->width; h = area->height;
104 dx = area->dx; dy = area->dy;
105 sx = area->sx; sy = area->sy;
106 xdir = sx - dx;
107 ydir = sy - dy;
108
109 if ( xdir < 0 ) { sx += w-1; dx += w-1; }
110 if ( ydir < 0 ) { sy += h-1; dy += h-1; }
111
112 radeon_fifo_wait(3);
113 OUTREG(DP_GUI_MASTER_CNTL,
114 rinfo->dp_gui_master_cntl /* i.e. GMC_DST_32BPP */
115 | GMC_BRUSH_NONE
116 | GMC_SRC_DSTCOLOR
117 | ROP3_S
118 | DP_SRC_SOURCE_MEMORY );
119 OUTREG(DP_WRITE_MSK, 0xffffffff);
120 OUTREG(DP_CNTL, (xdir>=0 ? DST_X_LEFT_TO_RIGHT : 0)
121 | (ydir>=0 ? DST_Y_TOP_TO_BOTTOM : 0));
122
969830b2
DM
123 radeon_fifo_wait(2);
124 OUTREG(DSTCACHE_CTLSTAT, RB2D_DC_FLUSH_ALL);
125 OUTREG(WAIT_UNTIL, (WAIT_2D_IDLECLEAN | WAIT_DMA_GUI_IDLE));
126
1da177e4
LT
127 radeon_fifo_wait(3);
128 OUTREG(SRC_Y_X, (sy << 16) | sx);
129 OUTREG(DST_Y_X, (dy << 16) | dx);
130 OUTREG(DST_HEIGHT_WIDTH, (h << 16) | w);
131}
132
133
134void radeonfb_copyarea(struct fb_info *info, const struct fb_copyarea *area)
135{
136 struct radeonfb_info *rinfo = info->par;
137 struct fb_copyarea modded;
138 u32 vxres, vyres;
139 modded.sx = area->sx;
140 modded.sy = area->sy;
141 modded.dx = area->dx;
142 modded.dy = area->dy;
143 modded.width = area->width;
144 modded.height = area->height;
145
146 if (info->state != FBINFO_STATE_RUNNING)
147 return;
148 if (info->flags & FBINFO_HWACCEL_DISABLED) {
149 cfb_copyarea(info, area);
150 return;
151 }
152
153 radeon_fixup_offset(rinfo);
154
155 vxres = info->var.xres_virtual;
156 vyres = info->var.yres_virtual;
157
158 if(!modded.width || !modded.height ||
159 modded.sx >= vxres || modded.sy >= vyres ||
160 modded.dx >= vxres || modded.dy >= vyres)
161 return;
162
163 if(modded.sx + modded.width > vxres) modded.width = vxres - modded.sx;
164 if(modded.dx + modded.width > vxres) modded.width = vxres - modded.dx;
165 if(modded.sy + modded.height > vyres) modded.height = vyres - modded.sy;
166 if(modded.dy + modded.height > vyres) modded.height = vyres - modded.dy;
167
168 radeonfb_prim_copyarea(rinfo, &modded);
169}
170
171void radeonfb_imageblit(struct fb_info *info, const struct fb_image *image)
172{
173 struct radeonfb_info *rinfo = info->par;
174
175 if (info->state != FBINFO_STATE_RUNNING)
176 return;
177 radeon_engine_idle();
178
179 cfb_imageblit(info, image);
180}
181
182int radeonfb_sync(struct fb_info *info)
183{
184 struct radeonfb_info *rinfo = info->par;
185
186 if (info->state != FBINFO_STATE_RUNNING)
187 return 0;
188 radeon_engine_idle();
189
190 return 0;
191}
192
193void radeonfb_engine_reset(struct radeonfb_info *rinfo)
194{
195 u32 clock_cntl_index, mclk_cntl, rbbm_soft_reset;
196 u32 host_path_cntl;
197
198 radeon_engine_flush (rinfo);
199
200 clock_cntl_index = INREG(CLOCK_CNTL_INDEX);
201 mclk_cntl = INPLL(MCLK_CNTL);
202
203 OUTPLL(MCLK_CNTL, (mclk_cntl |
204 FORCEON_MCLKA |
205 FORCEON_MCLKB |
206 FORCEON_YCLKA |
207 FORCEON_YCLKB |
208 FORCEON_MC |
209 FORCEON_AIC));
210
211 host_path_cntl = INREG(HOST_PATH_CNTL);
212 rbbm_soft_reset = INREG(RBBM_SOFT_RESET);
213
214 if (rinfo->family == CHIP_FAMILY_R300 ||
215 rinfo->family == CHIP_FAMILY_R350 ||
216 rinfo->family == CHIP_FAMILY_RV350) {
217 u32 tmp;
218
219 OUTREG(RBBM_SOFT_RESET, (rbbm_soft_reset |
220 SOFT_RESET_CP |
221 SOFT_RESET_HI |
222 SOFT_RESET_E2));
223 INREG(RBBM_SOFT_RESET);
224 OUTREG(RBBM_SOFT_RESET, 0);
225 tmp = INREG(RB2D_DSTCACHE_MODE);
226 OUTREG(RB2D_DSTCACHE_MODE, tmp | (1 << 17)); /* FIXME */
227 } else {
228 OUTREG(RBBM_SOFT_RESET, rbbm_soft_reset |
229 SOFT_RESET_CP |
230 SOFT_RESET_HI |
231 SOFT_RESET_SE |
232 SOFT_RESET_RE |
233 SOFT_RESET_PP |
234 SOFT_RESET_E2 |
235 SOFT_RESET_RB);
236 INREG(RBBM_SOFT_RESET);
237 OUTREG(RBBM_SOFT_RESET, rbbm_soft_reset & (u32)
238 ~(SOFT_RESET_CP |
239 SOFT_RESET_HI |
240 SOFT_RESET_SE |
241 SOFT_RESET_RE |
242 SOFT_RESET_PP |
243 SOFT_RESET_E2 |
244 SOFT_RESET_RB));
245 INREG(RBBM_SOFT_RESET);
246 }
247
248 OUTREG(HOST_PATH_CNTL, host_path_cntl | HDP_SOFT_RESET);
249 INREG(HOST_PATH_CNTL);
250 OUTREG(HOST_PATH_CNTL, host_path_cntl);
251
efc49181
DM
252 if (rinfo->family != CHIP_FAMILY_R300 &&
253 rinfo->family != CHIP_FAMILY_R350 &&
1da177e4
LT
254 rinfo->family != CHIP_FAMILY_RV350)
255 OUTREG(RBBM_SOFT_RESET, rbbm_soft_reset);
256
257 OUTREG(CLOCK_CNTL_INDEX, clock_cntl_index);
258 OUTPLL(MCLK_CNTL, mclk_cntl);
259}
260
261void radeonfb_engine_init (struct radeonfb_info *rinfo)
262{
263 unsigned long temp;
264
265 /* disable 3D engine */
266 OUTREG(RB3D_CNTL, 0);
267
268 radeonfb_engine_reset(rinfo);
269
270 radeon_fifo_wait (1);
271 if ((rinfo->family != CHIP_FAMILY_R300) &&
272 (rinfo->family != CHIP_FAMILY_R350) &&
273 (rinfo->family != CHIP_FAMILY_RV350))
274 OUTREG(RB2D_DSTCACHE_MODE, 0);
275
276 radeon_fifo_wait (3);
277 /* We re-read MC_FB_LOCATION from card as it can have been
278 * modified by XFree drivers (ouch !)
279 */
280 rinfo->fb_local_base = INREG(MC_FB_LOCATION) << 16;
281
282 OUTREG(DEFAULT_PITCH_OFFSET, (rinfo->pitch << 0x16) |
283 (rinfo->fb_local_base >> 10));
284 OUTREG(DST_PITCH_OFFSET, (rinfo->pitch << 0x16) | (rinfo->fb_local_base >> 10));
285 OUTREG(SRC_PITCH_OFFSET, (rinfo->pitch << 0x16) | (rinfo->fb_local_base >> 10));
286
287 radeon_fifo_wait (1);
288#if defined(__BIG_ENDIAN)
289 OUTREGP(DP_DATATYPE, HOST_BIG_ENDIAN_EN, ~HOST_BIG_ENDIAN_EN);
290#else
291 OUTREGP(DP_DATATYPE, 0, ~HOST_BIG_ENDIAN_EN);
292#endif
293 radeon_fifo_wait (2);
294 OUTREG(DEFAULT_SC_TOP_LEFT, 0);
295 OUTREG(DEFAULT_SC_BOTTOM_RIGHT, (DEFAULT_SC_RIGHT_MAX |
296 DEFAULT_SC_BOTTOM_MAX));
297
298 temp = radeon_get_dstbpp(rinfo->depth);
299 rinfo->dp_gui_master_cntl = ((temp << 8) | GMC_CLR_CMP_CNTL_DIS);
300
301 radeon_fifo_wait (1);
302 OUTREG(DP_GUI_MASTER_CNTL, (rinfo->dp_gui_master_cntl |
303 GMC_BRUSH_SOLID_COLOR |
304 GMC_SRC_DATATYPE_COLOR));
305
306 radeon_fifo_wait (7);
307
308 /* clear line drawing regs */
309 OUTREG(DST_LINE_START, 0);
310 OUTREG(DST_LINE_END, 0);
311
312 /* set brush color regs */
313 OUTREG(DP_BRUSH_FRGD_CLR, 0xffffffff);
314 OUTREG(DP_BRUSH_BKGD_CLR, 0x00000000);
315
316 /* set source color regs */
317 OUTREG(DP_SRC_FRGD_CLR, 0xffffffff);
318 OUTREG(DP_SRC_BKGD_CLR, 0x00000000);
319
320 /* default write mask */
321 OUTREG(DP_WRITE_MSK, 0xffffffff);
322
323 radeon_engine_idle ();
324}
This page took 0.359608 seconds and 5 git commands to generate.