3 * ATI Mach64 Hardware Acceleration
6 #include <linux/delay.h>
8 #include <video/mach64.h>
12 * Generic Mach64 routines
15 /* this is for DMA GUI engine! work in progress */
21 } BM_DESCRIPTOR_ENTRY
;
23 #define LAST_DESCRIPTOR (1 << 31)
24 #define SYSTEM_TO_FRAME_BUFFER 0
26 static u32
rotation24bpp(u32 dx
, u32 direction
)
29 if (direction
& DST_X_LEFT_TO_RIGHT
) {
30 rotation
= (dx
/ 4) % 6;
32 rotation
= ((dx
+ 2) / 4) % 6;
35 return ((rotation
<< 8) | DST_24_ROTATION_ENABLE
);
38 void aty_reset_engine(const struct atyfb_par
*par
)
41 aty_st_le32(GEN_TEST_CNTL
,
42 aty_ld_le32(GEN_TEST_CNTL
, par
) &
43 ~(GUI_ENGINE_ENABLE
| HWCURSOR_ENABLE
), par
);
45 aty_st_le32(GEN_TEST_CNTL
,
46 aty_ld_le32(GEN_TEST_CNTL
, par
) | GUI_ENGINE_ENABLE
, par
);
47 /* ensure engine is not locked up by clearing any FIFO or */
50 aty_ld_le32(BUS_CNTL
, par
) | BUS_HOST_ERR_ACK
| BUS_FIFO_ERR_ACK
, par
);
53 static void reset_GTC_3D_engine(const struct atyfb_par
*par
)
55 aty_st_le32(SCALE_3D_CNTL
, 0xc0, par
);
56 mdelay(GTC_3D_RESET_DELAY
);
57 aty_st_le32(SETUP_CNTL
, 0x00, par
);
58 mdelay(GTC_3D_RESET_DELAY
);
59 aty_st_le32(SCALE_3D_CNTL
, 0x00, par
);
60 mdelay(GTC_3D_RESET_DELAY
);
63 void aty_init_engine(struct atyfb_par
*par
, struct fb_info
*info
)
68 /* determine modal information from global mode structure */
69 pitch_value
= info
->fix
.line_length
/ (info
->var
.bits_per_pixel
/ 8);
70 vxres
= info
->var
.xres_virtual
;
72 if (info
->var
.bits_per_pixel
== 24) {
73 /* In 24 bpp, the engine is in 8 bpp - this requires that all */
74 /* horizontal coordinates and widths must be adjusted */
79 /* On GTC (RagePro), we need to reset the 3D engine before */
80 if (M64_HAS(RESET_3D
))
81 reset_GTC_3D_engine(par
);
83 /* Reset engine, enable, and clear any engine errors */
84 aty_reset_engine(par
);
85 /* Ensure that vga page pointers are set to zero - the upper */
86 /* page pointers are set to 1 to handle overflows in the */
88 aty_st_le32(MEM_VGA_WP_SEL
, 0x00010000, par
);
89 aty_st_le32(MEM_VGA_RP_SEL
, 0x00010000, par
);
91 /* ---- Setup standard engine context ---- */
93 /* All GUI registers here are FIFOed - therefore, wait for */
94 /* the appropriate number of empty FIFO entries */
95 wait_for_fifo(14, par
);
97 /* enable all registers to be loaded for context loads */
98 aty_st_le32(CONTEXT_MASK
, 0xFFFFFFFF, par
);
100 /* set destination pitch to modal pitch, set offset to zero */
101 aty_st_le32(DST_OFF_PITCH
, (pitch_value
/ 8) << 22, par
);
103 /* zero these registers (set them to a known state) */
104 aty_st_le32(DST_Y_X
, 0, par
);
105 aty_st_le32(DST_HEIGHT
, 0, par
);
106 aty_st_le32(DST_BRES_ERR
, 0, par
);
107 aty_st_le32(DST_BRES_INC
, 0, par
);
108 aty_st_le32(DST_BRES_DEC
, 0, par
);
110 /* set destination drawing attributes */
111 aty_st_le32(DST_CNTL
, DST_LAST_PEL
| DST_Y_TOP_TO_BOTTOM
|
112 DST_X_LEFT_TO_RIGHT
, par
);
114 /* set source pitch to modal pitch, set offset to zero */
115 aty_st_le32(SRC_OFF_PITCH
, (pitch_value
/ 8) << 22, par
);
117 /* set these registers to a known state */
118 aty_st_le32(SRC_Y_X
, 0, par
);
119 aty_st_le32(SRC_HEIGHT1_WIDTH1
, 1, par
);
120 aty_st_le32(SRC_Y_X_START
, 0, par
);
121 aty_st_le32(SRC_HEIGHT2_WIDTH2
, 1, par
);
123 /* set source pixel retrieving attributes */
124 aty_st_le32(SRC_CNTL
, SRC_LINE_X_LEFT_TO_RIGHT
, par
);
126 /* set host attributes */
127 wait_for_fifo(13, par
);
128 aty_st_le32(HOST_CNTL
, 0, par
);
130 /* set pattern attributes */
131 aty_st_le32(PAT_REG0
, 0, par
);
132 aty_st_le32(PAT_REG1
, 0, par
);
133 aty_st_le32(PAT_CNTL
, 0, par
);
135 /* set scissors to modal size */
136 aty_st_le32(SC_LEFT
, 0, par
);
137 aty_st_le32(SC_TOP
, 0, par
);
138 aty_st_le32(SC_BOTTOM
, par
->crtc
.vyres
- 1, par
);
139 aty_st_le32(SC_RIGHT
, vxres
- 1, par
);
141 /* set background color to minimum value (usually BLACK) */
142 aty_st_le32(DP_BKGD_CLR
, 0, par
);
144 /* set foreground color to maximum value (usually WHITE) */
145 aty_st_le32(DP_FRGD_CLR
, 0xFFFFFFFF, par
);
147 /* set write mask to effect all pixel bits */
148 aty_st_le32(DP_WRITE_MASK
, 0xFFFFFFFF, par
);
150 /* set foreground mix to overpaint and background mix to */
152 aty_st_le32(DP_MIX
, FRGD_MIX_S
| BKGD_MIX_D
, par
);
154 /* set primary source pixel channel to foreground color */
156 aty_st_le32(DP_SRC
, FRGD_SRC_FRGD_CLR
, par
);
158 /* set compare functionality to false (no-effect on */
160 wait_for_fifo(3, par
);
161 aty_st_le32(CLR_CMP_CLR
, 0, par
);
162 aty_st_le32(CLR_CMP_MASK
, 0xFFFFFFFF, par
);
163 aty_st_le32(CLR_CMP_CNTL
, 0, par
);
165 /* set pixel depth */
166 wait_for_fifo(2, par
);
167 aty_st_le32(DP_PIX_WIDTH
, par
->crtc
.dp_pix_width
, par
);
168 aty_st_le32(DP_CHAIN_MASK
, par
->crtc
.dp_chain_mask
, par
);
170 wait_for_fifo(5, par
);
171 aty_st_le32(SCALE_3D_CNTL
, 0, par
);
172 aty_st_le32(Z_CNTL
, 0, par
);
173 aty_st_le32(CRTC_INT_CNTL
, aty_ld_le32(CRTC_INT_CNTL
, par
) & ~0x20,
175 aty_st_le32(GUI_TRAJ_CNTL
, 0x100023, par
);
177 /* insure engine is idle before leaving */
182 * Accelerated functions
185 static inline void draw_rect(s16 x
, s16 y
, u16 width
, u16 height
,
186 struct atyfb_par
*par
)
188 /* perform rectangle fill */
189 wait_for_fifo(2, par
);
190 aty_st_le32(DST_Y_X
, (x
<< 16) | y
, par
);
191 aty_st_le32(DST_HEIGHT_WIDTH
, (width
<< 16) | height
, par
);
192 par
->blitter_may_be_busy
= 1;
195 void atyfb_copyarea(struct fb_info
*info
, const struct fb_copyarea
*area
)
197 struct atyfb_par
*par
= (struct atyfb_par
*) info
->par
;
198 u32 dy
= area
->dy
, sy
= area
->sy
, direction
= DST_LAST_PEL
;
199 u32 sx
= area
->sx
, dx
= area
->dx
, width
= area
->width
, rotation
= 0;
203 if (!area
->width
|| !area
->height
)
205 if (!par
->accel_flags
) {
206 cfb_copyarea(info
, area
);
210 if (info
->var
.bits_per_pixel
== 24) {
211 /* In 24 bpp, the engine is in 8 bpp - this requires that all */
212 /* horizontal coordinates and widths must be adjusted */
218 if (area
->sy
< area
->dy
) {
219 dy
+= area
->height
- 1;
220 sy
+= area
->height
- 1;
222 direction
|= DST_Y_TOP_TO_BOTTOM
;
228 direction
|= DST_X_LEFT_TO_RIGHT
;
230 if (info
->var
.bits_per_pixel
== 24) {
231 rotation
= rotation24bpp(dx
, direction
);
234 wait_for_fifo(4, par
);
235 aty_st_le32(DP_SRC
, FRGD_SRC_BLIT
, par
);
236 aty_st_le32(SRC_Y_X
, (sx
<< 16) | sy
, par
);
237 aty_st_le32(SRC_HEIGHT1_WIDTH1
, (width
<< 16) | area
->height
, par
);
238 aty_st_le32(DST_CNTL
, direction
| rotation
, par
);
239 draw_rect(dx
, dy
, width
, area
->height
, par
);
242 void atyfb_fillrect(struct fb_info
*info
, const struct fb_fillrect
*rect
)
244 struct atyfb_par
*par
= (struct atyfb_par
*) info
->par
;
245 u32 color
, dx
= rect
->dx
, width
= rect
->width
, rotation
= 0;
249 if (!rect
->width
|| !rect
->height
)
251 if (!par
->accel_flags
) {
252 cfb_fillrect(info
, rect
);
256 if (info
->fix
.visual
== FB_VISUAL_TRUECOLOR
||
257 info
->fix
.visual
== FB_VISUAL_DIRECTCOLOR
)
258 color
= ((u32
*)(info
->pseudo_palette
))[rect
->color
];
262 if (info
->var
.bits_per_pixel
== 24) {
263 /* In 24 bpp, the engine is in 8 bpp - this requires that all */
264 /* horizontal coordinates and widths must be adjusted */
267 rotation
= rotation24bpp(dx
, DST_X_LEFT_TO_RIGHT
);
270 wait_for_fifo(3, par
);
271 aty_st_le32(DP_FRGD_CLR
, color
, par
);
273 BKGD_SRC_BKGD_CLR
| FRGD_SRC_FRGD_CLR
| MONO_SRC_ONE
,
275 aty_st_le32(DST_CNTL
,
276 DST_LAST_PEL
| DST_Y_TOP_TO_BOTTOM
|
277 DST_X_LEFT_TO_RIGHT
| rotation
, par
);
278 draw_rect(dx
, rect
->dy
, width
, rect
->height
, par
);
281 void atyfb_imageblit(struct fb_info
*info
, const struct fb_image
*image
)
283 struct atyfb_par
*par
= (struct atyfb_par
*) info
->par
;
284 u32 src_bytes
, dx
= image
->dx
, dy
= image
->dy
, width
= image
->width
;
285 u32 pix_width_save
, pix_width
, host_cntl
, rotation
= 0, src
, mix
;
289 if (!image
->width
|| !image
->height
)
291 if (!par
->accel_flags
||
292 (image
->depth
!= 1 && info
->var
.bits_per_pixel
!= image
->depth
)) {
293 cfb_imageblit(info
, image
);
297 pix_width
= pix_width_save
= aty_ld_le32(DP_PIX_WIDTH
, par
);
298 host_cntl
= aty_ld_le32(HOST_CNTL
, par
) | HOST_BYTE_ALIGN
;
300 switch (image
->depth
) {
302 pix_width
&= ~(BYTE_ORDER_MASK
| HOST_MASK
);
303 pix_width
|= (BYTE_ORDER_MSB_TO_LSB
| HOST_1BPP
);
306 pix_width
&= ~(BYTE_ORDER_MASK
| HOST_MASK
);
307 pix_width
|= (BYTE_ORDER_MSB_TO_LSB
| HOST_4BPP
);
310 pix_width
&= ~HOST_MASK
;
311 pix_width
|= HOST_8BPP
;
314 pix_width
&= ~HOST_MASK
;
315 pix_width
|= HOST_15BPP
;
318 pix_width
&= ~HOST_MASK
;
319 pix_width
|= HOST_16BPP
;
322 pix_width
&= ~HOST_MASK
;
323 pix_width
|= HOST_24BPP
;
326 pix_width
&= ~HOST_MASK
;
327 pix_width
|= HOST_32BPP
;
331 if (info
->var
.bits_per_pixel
== 24) {
332 /* In 24 bpp, the engine is in 8 bpp - this requires that all */
333 /* horizontal coordinates and widths must be adjusted */
337 rotation
= rotation24bpp(dx
, DST_X_LEFT_TO_RIGHT
);
339 pix_width
&= ~DST_MASK
;
340 pix_width
|= DST_8BPP
;
343 * since Rage 3D IIc we have DP_HOST_TRIPLE_EN bit
344 * this hwaccelerated triple has an issue with not aligned data
346 if (M64_HAS(HW_TRIPLE
) && image
->width
% 8 == 0)
347 pix_width
|= DP_HOST_TRIPLE_EN
;
350 if (image
->depth
== 1) {
352 if (info
->fix
.visual
== FB_VISUAL_TRUECOLOR
||
353 info
->fix
.visual
== FB_VISUAL_DIRECTCOLOR
) {
354 fg
= ((u32
*)(info
->pseudo_palette
))[image
->fg_color
];
355 bg
= ((u32
*)(info
->pseudo_palette
))[image
->bg_color
];
357 fg
= image
->fg_color
;
358 bg
= image
->bg_color
;
361 wait_for_fifo(2, par
);
362 aty_st_le32(DP_BKGD_CLR
, bg
, par
);
363 aty_st_le32(DP_FRGD_CLR
, fg
, par
);
364 src
= MONO_SRC_HOST
| FRGD_SRC_FRGD_CLR
| BKGD_SRC_BKGD_CLR
;
365 mix
= FRGD_MIX_S
| BKGD_MIX_S
;
367 src
= MONO_SRC_ONE
| FRGD_SRC_HOST
;
368 mix
= FRGD_MIX_D_XOR_S
| BKGD_MIX_D
;
371 wait_for_fifo(6, par
);
372 aty_st_le32(DP_WRITE_MASK
, 0xFFFFFFFF, par
);
373 aty_st_le32(DP_PIX_WIDTH
, pix_width
, par
);
374 aty_st_le32(DP_MIX
, mix
, par
);
375 aty_st_le32(DP_SRC
, src
, par
);
376 aty_st_le32(HOST_CNTL
, host_cntl
, par
);
377 aty_st_le32(DST_CNTL
, DST_Y_TOP_TO_BOTTOM
| DST_X_LEFT_TO_RIGHT
| rotation
, par
);
379 draw_rect(dx
, dy
, width
, image
->height
, par
);
380 src_bytes
= (((image
->width
* image
->depth
) + 7) / 8) * image
->height
;
382 /* manual triple each pixel */
383 if (info
->var
.bits_per_pixel
== 24 && !(pix_width
& DP_HOST_TRIPLE_EN
)) {
384 int inbit
, outbit
, mult24
, byte_id_in_dword
, width
;
385 u8
*pbitmapin
= (u8
*)image
->data
, *pbitmapout
;
388 for (width
= image
->width
, inbit
= 7, mult24
= 0; src_bytes
; ) {
389 for (hostdword
= 0, pbitmapout
= (u8
*)&hostdword
, byte_id_in_dword
= 0;
390 byte_id_in_dword
< 4 && src_bytes
;
391 byte_id_in_dword
++, pbitmapout
++) {
392 for (outbit
= 7; outbit
>= 0; outbit
--) {
393 *pbitmapout
|= (((*pbitmapin
>> inbit
) & 1) << outbit
);
403 if (inbit
< 0 || width
== 0) {
409 width
= image
->width
;
415 wait_for_fifo(1, par
);
416 aty_st_le32(HOST_DATA0
, hostdword
, par
);
419 u32
*pbitmap
, dwords
= (src_bytes
+ 3) / 4;
420 for (pbitmap
= (u32
*)(image
->data
); dwords
; dwords
--, pbitmap
++) {
421 wait_for_fifo(1, par
);
422 aty_st_le32(HOST_DATA0
, le32_to_cpup(pbitmap
), par
);
426 /* restore pix_width */
427 wait_for_fifo(1, par
);
428 aty_st_le32(DP_PIX_WIDTH
, pix_width_save
, par
);