gma500: Fix backlight crash
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / gma500 / accel_2d.c
blobbe9237184ab83a55ada02430f4908e123355cd05
1 /**************************************************************************
2 * Copyright (c) 2007-2011, Intel Corporation.
3 * All Rights Reserved.
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
12 * more details.
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>
27 #include <linux/mm.h>
28 #include <linux/tty.h>
29 #include <linux/slab.h>
30 #include <linux/delay.h>
31 #include <linux/fb.h>
32 #include <linux/init.h>
33 #include <linux/console.h>
35 #include <drm/drmP.h>
36 #include <drm/drm.h>
37 #include <drm/drm_crtc.h>
39 #include "psb_drv.h"
40 #include "psb_reg.h"
41 #include "framebuffer.h"
43 /**
44 * psb_spank - reset the 2D engine
45 * @dev_priv: our PSB DRM device
47 * Soft reset the graphics engine and then reload the necessary registers.
48 * We use this at initialisation time but it will become relevant for
49 * accelerated X later
51 void psb_spank(struct drm_psb_private *dev_priv)
53 PSB_WSGX32(_PSB_CS_RESET_BIF_RESET | _PSB_CS_RESET_DPM_RESET |
54 _PSB_CS_RESET_TA_RESET | _PSB_CS_RESET_USE_RESET |
55 _PSB_CS_RESET_ISP_RESET | _PSB_CS_RESET_TSP_RESET |
56 _PSB_CS_RESET_TWOD_RESET, PSB_CR_SOFT_RESET);
57 PSB_RSGX32(PSB_CR_SOFT_RESET);
59 msleep(1);
61 PSB_WSGX32(0, PSB_CR_SOFT_RESET);
62 wmb();
63 PSB_WSGX32(PSB_RSGX32(PSB_CR_BIF_CTRL) | _PSB_CB_CTRL_CLEAR_FAULT,
64 PSB_CR_BIF_CTRL);
65 wmb();
66 (void) PSB_RSGX32(PSB_CR_BIF_CTRL);
68 msleep(1);
69 PSB_WSGX32(PSB_RSGX32(PSB_CR_BIF_CTRL) & ~_PSB_CB_CTRL_CLEAR_FAULT,
70 PSB_CR_BIF_CTRL);
71 (void) PSB_RSGX32(PSB_CR_BIF_CTRL);
72 PSB_WSGX32(dev_priv->gtt.gatt_start, PSB_CR_BIF_TWOD_REQ_BASE);
75 /**
76 * psb2_2d_wait_available - wait for FIFO room
77 * @dev_priv: our DRM device
78 * @size: size (in dwords) of the command we want to issue
80 * Wait until there is room to load the FIFO with our data. If the
81 * device is not responding then reset it
83 static int psb_2d_wait_available(struct drm_psb_private *dev_priv,
84 unsigned size)
86 uint32_t avail = PSB_RSGX32(PSB_CR_2D_SOCIF);
87 unsigned long t = jiffies + HZ;
89 while (avail < size) {
90 avail = PSB_RSGX32(PSB_CR_2D_SOCIF);
91 if (time_after(jiffies, t)) {
92 psb_spank(dev_priv);
93 return -EIO;
96 return 0;
99 /**
100 * psb_2d_submit - submit a 2D command
101 * @dev_priv: our DRM device
102 * @cmdbuf: command to issue
103 * @size: length (in dwords)
105 * Issue one or more 2D commands to the accelerator. This needs to be
106 * serialized later when we add the GEM interfaces for acceleration
108 static int psbfb_2d_submit(struct drm_psb_private *dev_priv, uint32_t *cmdbuf,
109 unsigned size)
111 int ret = 0;
112 int i;
113 unsigned submit_size;
115 mutex_lock(&dev_priv->mutex_2d);
116 while (size > 0) {
117 submit_size = (size < 0x60) ? size : 0x60;
118 size -= submit_size;
119 ret = psb_2d_wait_available(dev_priv, submit_size);
120 if (ret)
121 break;
123 submit_size <<= 2;
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 mutex_unlock(&dev_priv->mutex_2d);
131 return ret;
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)
145 if (xdir < 0)
146 return (ydir < 0) ? PSB_2D_COPYORDER_BR2TL :
147 PSB_2D_COPYORDER_TR2BL;
148 else
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)
179 uint32_t blit_cmd;
180 uint32_t buffer[10];
181 uint32_t *buf;
182 uint32_t direction;
184 buf = buffer;
186 direction =
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) {
191 src_x += size_x - 1;
192 dst_x += size_x - 1;
194 if (direction == PSB_2D_COPYORDER_BR2TL ||
195 direction == PSB_2D_COPYORDER_BL2TR) {
196 src_y += size_y - 1;
197 dst_y += size_y - 1;
200 blit_cmd =
201 PSB_2D_BLIT_BH |
202 PSB_2D_ROT_NONE |
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;
208 *buf++ =
209 PSB_2D_DST_SURF_BH | dst_format | (dst_stride <<
210 PSB_2D_DST_STRIDE_SHIFT);
211 *buf++ = dst_offset;
212 *buf++ =
213 PSB_2D_SRC_SURF_BH | src_format | (src_stride <<
214 PSB_2D_SRC_STRIDE_SHIFT);
215 *buf++ = src_offset;
216 *buf++ =
217 PSB_2D_SRC_OFF_BH | (src_x << PSB_2D_SRCOFF_XSTART_SHIFT) |
218 (src_y << PSB_2D_SRCOFF_YSTART_SHIFT);
219 *buf++ = blit_cmd;
220 *buf++ =
221 (dst_x << PSB_2D_DST_XSTART_SHIFT) | (dst_y <<
222 PSB_2D_DST_YSTART_SHIFT);
223 *buf++ =
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;
246 uint32_t offset;
247 uint32_t stride;
248 uint32_t src_format;
249 uint32_t dst_format;
251 if (!fb)
252 return;
254 offset = psbfb->gtt->offset;
255 stride = fb->pitch;
257 switch (fb->depth) {
258 case 8:
259 src_format = PSB_2D_SRC_332RGB;
260 dst_format = PSB_2D_DST_332RGB;
261 break;
262 case 15:
263 src_format = PSB_2D_SRC_555RGB;
264 dst_format = PSB_2D_DST_555RGB;
265 break;
266 case 16:
267 src_format = PSB_2D_SRC_565RGB;
268 dst_format = PSB_2D_DST_565RGB;
269 break;
270 case 24:
271 case 32:
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;
275 break;
276 default:
277 /* software fallback */
278 cfb_copyarea(info, a);
279 return;
282 if (!gma_power_begin(dev, false)) {
283 cfb_copyarea(info, a);
284 return;
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);
290 gma_power_end(dev);
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))
305 return;
307 /* Avoid the 8 pixel erratum */
308 if (region->width == 8 || region->height == 8 ||
309 (info->flags & FBINFO_HWACCEL_DISABLED))
310 return 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 + DRM_HZ;
329 int busy = 0;
331 mutex_lock(&dev_priv->mutex_2d);
333 * First idle the 2D engine.
336 if ((PSB_RSGX32(PSB_CR_2D_SOCIF) == _PSB_C2_SOCIF_EMPTY) &&
337 ((PSB_RSGX32(PSB_CR_2D_BLIT_STATUS) & _PSB_C2B_STATUS_BUSY) == 0))
338 goto out;
340 do {
341 busy = (PSB_RSGX32(PSB_CR_2D_SOCIF) != _PSB_C2_SOCIF_EMPTY);
342 cpu_relax();
343 } while (busy && !time_after_eq(jiffies, _end));
345 if (busy)
346 busy = (PSB_RSGX32(PSB_CR_2D_SOCIF) != _PSB_C2_SOCIF_EMPTY);
347 if (busy)
348 goto out;
350 do {
351 busy = ((PSB_RSGX32(PSB_CR_2D_BLIT_STATUS) &
352 _PSB_C2B_STATUS_BUSY) != 0);
353 cpu_relax();
354 } while (busy && !time_after_eq(jiffies, _end));
355 if (busy)
356 busy = ((PSB_RSGX32(PSB_CR_2D_BLIT_STATUS) &
357 _PSB_C2B_STATUS_BUSY) != 0);
359 out:
360 mutex_unlock(&dev_priv->mutex_2d);
361 return (busy) ? -EBUSY : 0;
364 int psb_accel_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
366 struct drm_psb_private *dev_priv = dev->dev_private;
367 struct drm_psb_2d_op *op = data;
368 u32 *op_ptr = &op->cmd[0];
369 int i;
370 struct drm_gem_object *obj;
371 struct gtt_range *gtt;
372 int err = -EINVAL;
374 if (!dev_priv->ops->accel_2d)
375 return -EOPNOTSUPP;
376 if (op->size > PSB_2D_OP_BUFLEN)
377 return -EINVAL;
379 /* The GEM object being used. We need to support separate src/dst/etc
380 in the end but for now keep them all the same */
381 obj = drm_gem_object_lookup(dev, file, op->src);
382 if (obj == NULL)
383 return -ENOENT;
384 gtt = container_of(obj, struct gtt_range, gem);
386 if (psb_gtt_pin(gtt) < 0)
387 goto bad_2;
388 for (i = 0; i < op->size; i++, op_ptr++) {
389 u32 r = *op_ptr & 0xF0000000;
390 /* Fill in the GTT offsets for the command buffer */
391 if (r == PSB_2D_SRC_SURF_BH ||
392 r == PSB_2D_DST_SURF_BH ||
393 r == PSB_2D_MASK_SURF_BH ||
394 r == PSB_2D_PAT_SURF_BH) {
395 i++;
396 op_ptr++;
397 if (i == op->size)
398 goto bad;
399 if (*op_ptr)
400 goto bad;
401 *op_ptr = gtt->offset;
402 continue;
405 psbfb_2d_submit(dev_priv, op->cmd, op->size);
406 err = 0;
407 bad:
408 psb_gtt_unpin(gtt);
409 bad_2:
410 drm_gem_object_unreference(obj);
411 return err;