1 /**************************************************************************
2 * Copyright (c) 2007-2011, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 * Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
19 * develop this driver.
21 **************************************************************************/
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/errno.h>
26 #include <linux/string.h>
28 #include <linux/tty.h>
29 #include <linux/slab.h>
30 #include <linux/delay.h>
31 #include <linux/init.h>
32 #include <linux/console.h>
36 #include <drm/drm_crtc.h>
40 #include "framebuffer.h"
43 * psb_spank - reset the 2D engine
44 * @dev_priv: our PSB DRM device
46 * Soft reset the graphics engine and then reload the necessary registers.
47 * We use this at initialisation time but it will become relevant for
50 void psb_spank(struct drm_psb_private
*dev_priv
)
52 PSB_WSGX32(_PSB_CS_RESET_BIF_RESET
| _PSB_CS_RESET_DPM_RESET
|
53 _PSB_CS_RESET_TA_RESET
| _PSB_CS_RESET_USE_RESET
|
54 _PSB_CS_RESET_ISP_RESET
| _PSB_CS_RESET_TSP_RESET
|
55 _PSB_CS_RESET_TWOD_RESET
, PSB_CR_SOFT_RESET
);
56 PSB_RSGX32(PSB_CR_SOFT_RESET
);
60 PSB_WSGX32(0, PSB_CR_SOFT_RESET
);
62 PSB_WSGX32(PSB_RSGX32(PSB_CR_BIF_CTRL
) | _PSB_CB_CTRL_CLEAR_FAULT
,
65 (void) PSB_RSGX32(PSB_CR_BIF_CTRL
);
68 PSB_WSGX32(PSB_RSGX32(PSB_CR_BIF_CTRL
) & ~_PSB_CB_CTRL_CLEAR_FAULT
,
70 (void) PSB_RSGX32(PSB_CR_BIF_CTRL
);
71 PSB_WSGX32(dev_priv
->gtt
.gatt_start
, PSB_CR_BIF_TWOD_REQ_BASE
);
75 * psb2_2d_wait_available - wait for FIFO room
76 * @dev_priv: our DRM device
77 * @size: size (in dwords) of the command we want to issue
79 * Wait until there is room to load the FIFO with our data. If the
80 * device is not responding then reset it
82 static int psb_2d_wait_available(struct drm_psb_private
*dev_priv
,
85 uint32_t avail
= PSB_RSGX32(PSB_CR_2D_SOCIF
);
86 unsigned long t
= jiffies
+ HZ
;
88 while (avail
< size
) {
89 avail
= PSB_RSGX32(PSB_CR_2D_SOCIF
);
90 if (time_after(jiffies
, t
)) {
99 * psb_2d_submit - submit a 2D command
100 * @dev_priv: our DRM device
101 * @cmdbuf: command to issue
102 * @size: length (in dwords)
104 * Issue one or more 2D commands to the accelerator. This needs to be
105 * serialized later when we add the GEM interfaces for acceleration
107 static int psbfb_2d_submit(struct drm_psb_private
*dev_priv
, uint32_t *cmdbuf
,
112 unsigned submit_size
;
115 spin_lock_irqsave(&dev_priv
->lock_2d
, flags
);
117 submit_size
= (size
< 0x60) ? size
: 0x60;
119 ret
= psb_2d_wait_available(dev_priv
, submit_size
);
125 for (i
= 0; i
< submit_size
; i
+= 4)
126 PSB_WSGX32(*cmdbuf
++, PSB_SGX_2D_SLAVE_PORT
+ i
);
128 (void)PSB_RSGX32(PSB_SGX_2D_SLAVE_PORT
+ i
- 4);
130 spin_unlock_irqrestore(&dev_priv
->lock_2d
, flags
);
136 * psb_accel_2d_copy_direction - compute blit order
137 * @xdir: X direction of move
138 * @ydir: Y direction of move
140 * Compute the correct order setings to ensure that an overlapping blit
141 * correctly copies all the pixels.
143 static u32
psb_accel_2d_copy_direction(int xdir
, int ydir
)
146 return (ydir
< 0) ? PSB_2D_COPYORDER_BR2TL
:
147 PSB_2D_COPYORDER_TR2BL
;
149 return (ydir
< 0) ? PSB_2D_COPYORDER_BL2TR
:
150 PSB_2D_COPYORDER_TL2BR
;
154 * psb_accel_2d_copy - accelerated 2D copy
155 * @dev_priv: our DRM device
156 * @src_offset in bytes
157 * @src_stride in bytes
158 * @src_format psb 2D format defines
159 * @dst_offset in bytes
160 * @dst_stride in bytes
161 * @dst_format psb 2D format defines
162 * @src_x offset in pixels
163 * @src_y offset in pixels
164 * @dst_x offset in pixels
165 * @dst_y offset in pixels
166 * @size_x of the copied area
167 * @size_y of the copied area
169 * Format and issue a 2D accelerated copy command.
171 static int psb_accel_2d_copy(struct drm_psb_private
*dev_priv
,
172 uint32_t src_offset
, uint32_t src_stride
,
173 uint32_t src_format
, uint32_t dst_offset
,
174 uint32_t dst_stride
, uint32_t dst_format
,
175 uint16_t src_x
, uint16_t src_y
,
176 uint16_t dst_x
, uint16_t dst_y
,
177 uint16_t size_x
, uint16_t size_y
)
187 psb_accel_2d_copy_direction(src_x
- dst_x
, src_y
- dst_y
);
189 if (direction
== PSB_2D_COPYORDER_BR2TL
||
190 direction
== PSB_2D_COPYORDER_TR2BL
) {
194 if (direction
== PSB_2D_COPYORDER_BR2TL
||
195 direction
== PSB_2D_COPYORDER_BL2TR
) {
203 PSB_2D_DSTCK_DISABLE
|
204 PSB_2D_SRCCK_DISABLE
|
205 PSB_2D_USE_PAT
| PSB_2D_ROP3_SRCCOPY
| direction
;
207 *buf
++ = PSB_2D_FENCE_BH
;
209 PSB_2D_DST_SURF_BH
| dst_format
| (dst_stride
<<
210 PSB_2D_DST_STRIDE_SHIFT
);
213 PSB_2D_SRC_SURF_BH
| src_format
| (src_stride
<<
214 PSB_2D_SRC_STRIDE_SHIFT
);
217 PSB_2D_SRC_OFF_BH
| (src_x
<< PSB_2D_SRCOFF_XSTART_SHIFT
) |
218 (src_y
<< PSB_2D_SRCOFF_YSTART_SHIFT
);
221 (dst_x
<< PSB_2D_DST_XSTART_SHIFT
) | (dst_y
<<
222 PSB_2D_DST_YSTART_SHIFT
);
224 (size_x
<< PSB_2D_DST_XSIZE_SHIFT
) | (size_y
<<
225 PSB_2D_DST_YSIZE_SHIFT
);
226 *buf
++ = PSB_2D_FLUSH_BH
;
228 return psbfb_2d_submit(dev_priv
, buffer
, buf
- buffer
);
232 * psbfb_copyarea_accel - copyarea acceleration for /dev/fb
233 * @info: our framebuffer
234 * @a: copyarea parameters from the framebuffer core
236 * Perform a 2D copy via the accelerator
238 static void psbfb_copyarea_accel(struct fb_info
*info
,
239 const struct fb_copyarea
*a
)
241 struct psb_fbdev
*fbdev
= info
->par
;
242 struct psb_framebuffer
*psbfb
= &fbdev
->pfb
;
243 struct drm_device
*dev
= psbfb
->base
.dev
;
244 struct drm_framebuffer
*fb
= fbdev
->psb_fb_helper
.fb
;
245 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
254 offset
= to_gtt_range(fb
->obj
[0])->offset
;
255 stride
= fb
->pitches
[0];
257 switch (fb
->format
->depth
) {
259 src_format
= PSB_2D_SRC_332RGB
;
260 dst_format
= PSB_2D_DST_332RGB
;
263 src_format
= PSB_2D_SRC_555RGB
;
264 dst_format
= PSB_2D_DST_555RGB
;
267 src_format
= PSB_2D_SRC_565RGB
;
268 dst_format
= PSB_2D_DST_565RGB
;
272 /* this is wrong but since we don't do blending its okay */
273 src_format
= PSB_2D_SRC_8888ARGB
;
274 dst_format
= PSB_2D_DST_8888ARGB
;
277 /* software fallback */
278 drm_fb_helper_cfb_copyarea(info
, a
);
282 if (!gma_power_begin(dev
, false)) {
283 drm_fb_helper_cfb_copyarea(info
, a
);
286 psb_accel_2d_copy(dev_priv
,
287 offset
, stride
, src_format
,
288 offset
, stride
, dst_format
,
289 a
->sx
, a
->sy
, a
->dx
, a
->dy
, a
->width
, a
->height
);
294 * psbfb_copyarea - 2D copy interface
295 * @info: our framebuffer
296 * @region: region to copy
298 * Copy an area of the framebuffer console either by the accelerator
299 * or directly using the cfb helpers according to the request
301 void psbfb_copyarea(struct fb_info
*info
,
302 const struct fb_copyarea
*region
)
304 if (unlikely(info
->state
!= FBINFO_STATE_RUNNING
))
307 /* Avoid the 8 pixel erratum */
308 if (region
->width
== 8 || region
->height
== 8 ||
309 (info
->flags
& FBINFO_HWACCEL_DISABLED
))
310 return drm_fb_helper_cfb_copyarea(info
, region
);
312 psbfb_copyarea_accel(info
, region
);
316 * psbfb_sync - synchronize 2D
317 * @info: our framebuffer
319 * Wait for the 2D engine to quiesce so that we can do CPU
320 * access to the framebuffer again
322 int psbfb_sync(struct fb_info
*info
)
324 struct psb_fbdev
*fbdev
= info
->par
;
325 struct psb_framebuffer
*psbfb
= &fbdev
->pfb
;
326 struct drm_device
*dev
= psbfb
->base
.dev
;
327 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
328 unsigned long _end
= jiffies
+ HZ
;
332 spin_lock_irqsave(&dev_priv
->lock_2d
, flags
);
334 * First idle the 2D engine.
337 if ((PSB_RSGX32(PSB_CR_2D_SOCIF
) == _PSB_C2_SOCIF_EMPTY
) &&
338 ((PSB_RSGX32(PSB_CR_2D_BLIT_STATUS
) & _PSB_C2B_STATUS_BUSY
) == 0))
342 busy
= (PSB_RSGX32(PSB_CR_2D_SOCIF
) != _PSB_C2_SOCIF_EMPTY
);
344 } while (busy
&& !time_after_eq(jiffies
, _end
));
347 busy
= (PSB_RSGX32(PSB_CR_2D_SOCIF
) != _PSB_C2_SOCIF_EMPTY
);
352 busy
= ((PSB_RSGX32(PSB_CR_2D_BLIT_STATUS
) &
353 _PSB_C2B_STATUS_BUSY
) != 0);
355 } while (busy
&& !time_after_eq(jiffies
, _end
));
357 busy
= ((PSB_RSGX32(PSB_CR_2D_BLIT_STATUS
) &
358 _PSB_C2B_STATUS_BUSY
) != 0);
361 spin_unlock_irqrestore(&dev_priv
->lock_2d
, flags
);
362 return (busy
) ? -EBUSY
: 0;