Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* i915_dma.c -- DMA support for the I915 -*- linux-c -*- |
| 2 | */ |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 3 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas. |
| 5 | * All Rights Reserved. |
Dave Airlie | bc54fd1 | 2005-06-23 22:46:46 +1000 | [diff] [blame] | 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 8 | * copy of this software and associated documentation files (the |
| 9 | * "Software"), to deal in the Software without restriction, including |
| 10 | * without limitation the rights to use, copy, modify, merge, publish, |
| 11 | * distribute, sub license, and/or sell copies of the Software, and to |
| 12 | * permit persons to whom the Software is furnished to do so, subject to |
| 13 | * the following conditions: |
| 14 | * |
| 15 | * The above copyright notice and this permission notice (including the |
| 16 | * next paragraph) shall be included in all copies or substantial portions |
| 17 | * of the Software. |
| 18 | * |
| 19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 20 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 21 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. |
| 22 | * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR |
| 23 | * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| 24 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| 25 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 26 | * |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 27 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | #include "drmP.h" |
| 30 | #include "drm.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 31 | #include "drm_crtc_helper.h" |
| 32 | #include "intel_drv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "i915_drm.h" |
| 34 | #include "i915_drv.h" |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* Really want an OS-independent resettable timer. Would like to have |
| 37 | * this loop run for (eg) 3 sec, but have the timer reset every time |
| 38 | * the head pointer changes, so that EBUSY only happens if the ring |
| 39 | * actually stalls for (eg) 3 seconds. |
| 40 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 41 | int i915_wait_ring(struct drm_device * dev, int n, const char *caller) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
| 43 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 44 | drm_i915_ring_buffer_t *ring = &(dev_priv->ring); |
Keith Packard | d3a6d44 | 2008-07-30 12:21:20 -0700 | [diff] [blame] | 45 | u32 acthd_reg = IS_I965G(dev) ? ACTHD_I965 : ACTHD; |
| 46 | u32 last_acthd = I915_READ(acthd_reg); |
| 47 | u32 acthd; |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 48 | u32 last_head = I915_READ(PRB0_HEAD) & HEAD_ADDR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | int i; |
| 50 | |
Keith Packard | d3a6d44 | 2008-07-30 12:21:20 -0700 | [diff] [blame] | 51 | for (i = 0; i < 100000; i++) { |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 52 | ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR; |
Keith Packard | d3a6d44 | 2008-07-30 12:21:20 -0700 | [diff] [blame] | 53 | acthd = I915_READ(acthd_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | ring->space = ring->head - (ring->tail + 8); |
| 55 | if (ring->space < 0) |
| 56 | ring->space += ring->Size; |
| 57 | if (ring->space >= n) |
| 58 | return 0; |
| 59 | |
Chris Wilson | 98787c0 | 2009-03-06 23:27:52 +0000 | [diff] [blame] | 60 | if (dev->primary->master) { |
| 61 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
| 62 | if (master_priv->sarea_priv) |
| 63 | master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT; |
| 64 | } |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | if (ring->head != last_head) |
| 68 | i = 0; |
Keith Packard | d3a6d44 | 2008-07-30 12:21:20 -0700 | [diff] [blame] | 69 | if (acthd != last_acthd) |
| 70 | i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | last_head = ring->head; |
Keith Packard | d3a6d44 | 2008-07-30 12:21:20 -0700 | [diff] [blame] | 73 | last_acthd = acthd; |
| 74 | msleep_interruptible(10); |
| 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
| 77 | |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 78 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 81 | /** |
| 82 | * Sets up the hardware status page for devices that need a physical address |
| 83 | * in the register. |
| 84 | */ |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 85 | static int i915_init_phys_hws(struct drm_device *dev) |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 86 | { |
| 87 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 88 | /* Program Hardware Status Page */ |
| 89 | dev_priv->status_page_dmah = |
| 90 | drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE, 0xffffffff); |
| 91 | |
| 92 | if (!dev_priv->status_page_dmah) { |
| 93 | DRM_ERROR("Can not allocate hardware status page\n"); |
| 94 | return -ENOMEM; |
| 95 | } |
| 96 | dev_priv->hw_status_page = dev_priv->status_page_dmah->vaddr; |
| 97 | dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr; |
| 98 | |
| 99 | memset(dev_priv->hw_status_page, 0, PAGE_SIZE); |
| 100 | |
| 101 | I915_WRITE(HWS_PGA, dev_priv->dma_status_page); |
| 102 | DRM_DEBUG("Enabled hardware status page\n"); |
| 103 | return 0; |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Frees the hardware status page, whether it's a physical address or a virtual |
| 108 | * address set up by the X Server. |
| 109 | */ |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 110 | static void i915_free_hws(struct drm_device *dev) |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 111 | { |
| 112 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 113 | if (dev_priv->status_page_dmah) { |
| 114 | drm_pci_free(dev, dev_priv->status_page_dmah); |
| 115 | dev_priv->status_page_dmah = NULL; |
| 116 | } |
| 117 | |
| 118 | if (dev_priv->status_gfx_addr) { |
| 119 | dev_priv->status_gfx_addr = 0; |
| 120 | drm_core_ioremapfree(&dev_priv->hws_map, dev); |
| 121 | } |
| 122 | |
| 123 | /* Need to rewrite hardware status page */ |
| 124 | I915_WRITE(HWS_PGA, 0x1ffff000); |
| 125 | } |
| 126 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 127 | void i915_kernel_lost_context(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { |
| 129 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 130 | struct drm_i915_master_private *master_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | drm_i915_ring_buffer_t *ring = &(dev_priv->ring); |
| 132 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 133 | /* |
| 134 | * We should never lose context on the ring with modesetting |
| 135 | * as we don't expose it to userspace |
| 136 | */ |
| 137 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 138 | return; |
| 139 | |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 140 | ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR; |
| 141 | ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | ring->space = ring->head - (ring->tail + 8); |
| 143 | if (ring->space < 0) |
| 144 | ring->space += ring->Size; |
| 145 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 146 | if (!dev->primary->master) |
| 147 | return; |
| 148 | |
| 149 | master_priv = dev->primary->master->driver_priv; |
| 150 | if (ring->head == ring->tail && master_priv->sarea_priv) |
| 151 | master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 154 | static int i915_dma_cleanup(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 156 | drm_i915_private_t *dev_priv = dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | /* Make sure interrupts are disabled here because the uninstall ioctl |
| 158 | * may not have been called from userspace and after dev_private |
| 159 | * is freed, it's too late. |
| 160 | */ |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 161 | if (dev->irq_enabled) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 162 | drm_irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 164 | if (dev_priv->ring.virtual_start) { |
| 165 | drm_core_ioremapfree(&dev_priv->ring.map, dev); |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 166 | dev_priv->ring.virtual_start = NULL; |
| 167 | dev_priv->ring.map.handle = NULL; |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 168 | dev_priv->ring.map.size = 0; |
| 169 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 171 | /* Clear the HWS virtual address at teardown */ |
| 172 | if (I915_NEED_GFX_HWS(dev)) |
| 173 | i915_free_hws(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 178 | static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 180 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 181 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Dave Airlie | 3a03ac1 | 2009-01-11 09:03:49 +1000 | [diff] [blame] | 183 | master_priv->sarea = drm_getsarea(dev); |
| 184 | if (master_priv->sarea) { |
| 185 | master_priv->sarea_priv = (drm_i915_sarea_t *) |
| 186 | ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset); |
| 187 | } else { |
| 188 | DRM_DEBUG("sarea not found assuming DRI2 userspace\n"); |
| 189 | } |
| 190 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 191 | if (init->ring_size != 0) { |
| 192 | if (dev_priv->ring.ring_obj != NULL) { |
| 193 | i915_dma_cleanup(dev); |
| 194 | DRM_ERROR("Client tried to initialize ringbuffer in " |
| 195 | "GEM mode\n"); |
| 196 | return -EINVAL; |
| 197 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 199 | dev_priv->ring.Size = init->ring_size; |
| 200 | dev_priv->ring.tail_mask = dev_priv->ring.Size - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 202 | dev_priv->ring.map.offset = init->ring_start; |
| 203 | dev_priv->ring.map.size = init->ring_size; |
| 204 | dev_priv->ring.map.type = 0; |
| 205 | dev_priv->ring.map.flags = 0; |
| 206 | dev_priv->ring.map.mtrr = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Jesse Barnes | 6fb8858 | 2009-02-23 10:08:21 +1000 | [diff] [blame] | 208 | drm_core_ioremap_wc(&dev_priv->ring.map, dev); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 209 | |
| 210 | if (dev_priv->ring.map.handle == NULL) { |
| 211 | i915_dma_cleanup(dev); |
| 212 | DRM_ERROR("can not ioremap virtual address for" |
| 213 | " ring buffer\n"); |
| 214 | return -ENOMEM; |
| 215 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | dev_priv->ring.virtual_start = dev_priv->ring.map.handle; |
| 219 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 220 | dev_priv->cpp = init->cpp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | dev_priv->back_offset = init->back_offset; |
| 222 | dev_priv->front_offset = init->front_offset; |
| 223 | dev_priv->current_page = 0; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 224 | if (master_priv->sarea_priv) |
| 225 | master_priv->sarea_priv->pf_current_page = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | /* Allow hardware batchbuffers unless told otherwise. |
| 228 | */ |
| 229 | dev_priv->allow_batchbuffer = 1; |
| 230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | return 0; |
| 232 | } |
| 233 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 234 | static int i915_dma_resume(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | { |
| 236 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 237 | |
Harvey Harrison | bf9d892 | 2008-04-30 00:55:10 -0700 | [diff] [blame] | 238 | DRM_DEBUG("%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | if (dev_priv->ring.map.handle == NULL) { |
| 241 | DRM_ERROR("can not ioremap virtual address for" |
| 242 | " ring buffer\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 243 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | /* Program Hardware Status Page */ |
| 247 | if (!dev_priv->hw_status_page) { |
| 248 | DRM_ERROR("Can not find hardware status page\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 249 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page); |
| 252 | |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 253 | if (dev_priv->status_gfx_addr != 0) |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 254 | I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 255 | else |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 256 | I915_WRITE(HWS_PGA, dev_priv->dma_status_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | DRM_DEBUG("Enabled hardware status page\n"); |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 262 | static int i915_dma_init(struct drm_device *dev, void *data, |
| 263 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 265 | drm_i915_init_t *init = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | int retcode = 0; |
| 267 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 268 | switch (init->func) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | case I915_INIT_DMA: |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 270 | retcode = i915_initialize(dev, init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | break; |
| 272 | case I915_CLEANUP_DMA: |
| 273 | retcode = i915_dma_cleanup(dev); |
| 274 | break; |
| 275 | case I915_RESUME_DMA: |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 276 | retcode = i915_dma_resume(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | break; |
| 278 | default: |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 279 | retcode = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | break; |
| 281 | } |
| 282 | |
| 283 | return retcode; |
| 284 | } |
| 285 | |
| 286 | /* Implement basically the same security restrictions as hardware does |
| 287 | * for MI_BATCH_NON_SECURE. These can be made stricter at any time. |
| 288 | * |
| 289 | * Most of the calculations below involve calculating the size of a |
| 290 | * particular instruction. It's important to get the size right as |
| 291 | * that tells us where the next instruction to check is. Any illegal |
| 292 | * instruction detected will be given a size of zero, which is a |
| 293 | * signal to abort the rest of the buffer. |
| 294 | */ |
| 295 | static int do_validate_cmd(int cmd) |
| 296 | { |
| 297 | switch (((cmd >> 29) & 0x7)) { |
| 298 | case 0x0: |
| 299 | switch ((cmd >> 23) & 0x3f) { |
| 300 | case 0x0: |
| 301 | return 1; /* MI_NOOP */ |
| 302 | case 0x4: |
| 303 | return 1; /* MI_FLUSH */ |
| 304 | default: |
| 305 | return 0; /* disallow everything else */ |
| 306 | } |
| 307 | break; |
| 308 | case 0x1: |
| 309 | return 0; /* reserved */ |
| 310 | case 0x2: |
| 311 | return (cmd & 0xff) + 2; /* 2d commands */ |
| 312 | case 0x3: |
| 313 | if (((cmd >> 24) & 0x1f) <= 0x18) |
| 314 | return 1; |
| 315 | |
| 316 | switch ((cmd >> 24) & 0x1f) { |
| 317 | case 0x1c: |
| 318 | return 1; |
| 319 | case 0x1d: |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 320 | switch ((cmd >> 16) & 0xff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | case 0x3: |
| 322 | return (cmd & 0x1f) + 2; |
| 323 | case 0x4: |
| 324 | return (cmd & 0xf) + 2; |
| 325 | default: |
| 326 | return (cmd & 0xffff) + 2; |
| 327 | } |
| 328 | case 0x1e: |
| 329 | if (cmd & (1 << 23)) |
| 330 | return (cmd & 0xffff) + 1; |
| 331 | else |
| 332 | return 1; |
| 333 | case 0x1f: |
| 334 | if ((cmd & (1 << 23)) == 0) /* inline vertices */ |
| 335 | return (cmd & 0x1ffff) + 2; |
| 336 | else if (cmd & (1 << 17)) /* indirect random */ |
| 337 | if ((cmd & 0xffff) == 0) |
| 338 | return 0; /* unknown length, too hard */ |
| 339 | else |
| 340 | return (((cmd & 0xffff) + 1) / 2) + 1; |
| 341 | else |
| 342 | return 2; /* indirect sequential */ |
| 343 | default: |
| 344 | return 0; |
| 345 | } |
| 346 | default: |
| 347 | return 0; |
| 348 | } |
| 349 | |
| 350 | return 0; |
| 351 | } |
| 352 | |
| 353 | static int validate_cmd(int cmd) |
| 354 | { |
| 355 | int ret = do_validate_cmd(cmd); |
| 356 | |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 357 | /* printk("validate_cmd( %x ): %d\n", cmd, ret); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
| 359 | return ret; |
| 360 | } |
| 361 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 362 | static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
| 364 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 365 | int i; |
| 366 | RING_LOCALS; |
| 367 | |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 368 | if ((dwords+1) * sizeof(int) >= dev_priv->ring.Size - 8) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 369 | return -EINVAL; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 370 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 371 | BEGIN_LP_RING((dwords+1)&~1); |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | for (i = 0; i < dwords;) { |
| 374 | int cmd, sz; |
| 375 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 376 | cmd = buffer[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 379 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | OUT_RING(cmd); |
| 382 | |
| 383 | while (++i, --sz) { |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 384 | OUT_RING(buffer[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 388 | if (dwords & 1) |
| 389 | OUT_RING(0); |
| 390 | |
| 391 | ADVANCE_LP_RING(); |
| 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | return 0; |
| 394 | } |
| 395 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 396 | int |
| 397 | i915_emit_box(struct drm_device *dev, |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 398 | struct drm_clip_rect *boxes, |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 399 | int i, int DR1, int DR4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | { |
| 401 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 402 | struct drm_clip_rect box = boxes[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | RING_LOCALS; |
| 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) { |
| 406 | DRM_ERROR("Bad box %d,%d..%d,%d\n", |
| 407 | box.x1, box.y1, box.x2, box.y2); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 408 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 411 | if (IS_I965G(dev)) { |
| 412 | BEGIN_LP_RING(4); |
| 413 | OUT_RING(GFX_OP_DRAWRECT_INFO_I965); |
| 414 | OUT_RING((box.x1 & 0xffff) | (box.y1 << 16)); |
Andrew Morton | 78eca43 | 2006-08-16 09:15:51 +1000 | [diff] [blame] | 415 | OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16)); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 416 | OUT_RING(DR4); |
| 417 | ADVANCE_LP_RING(); |
| 418 | } else { |
| 419 | BEGIN_LP_RING(6); |
| 420 | OUT_RING(GFX_OP_DRAWRECT_INFO); |
| 421 | OUT_RING(DR1); |
| 422 | OUT_RING((box.x1 & 0xffff) | (box.y1 << 16)); |
| 423 | OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16)); |
| 424 | OUT_RING(DR4); |
| 425 | OUT_RING(0); |
| 426 | ADVANCE_LP_RING(); |
| 427 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 432 | /* XXX: Emitting the counter should really be moved to part of the IRQ |
| 433 | * emit. For now, do it in both places: |
| 434 | */ |
| 435 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 436 | static void i915_emit_breadcrumb(struct drm_device *dev) |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 437 | { |
| 438 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 439 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 440 | RING_LOCALS; |
| 441 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 442 | dev_priv->counter++; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 443 | if (dev_priv->counter > 0x7FFFFFFFUL) |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 444 | dev_priv->counter = 0; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 445 | if (master_priv->sarea_priv) |
| 446 | master_priv->sarea_priv->last_enqueue = dev_priv->counter; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 447 | |
| 448 | BEGIN_LP_RING(4); |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 449 | OUT_RING(MI_STORE_DWORD_INDEX); |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 450 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 451 | OUT_RING(dev_priv->counter); |
| 452 | OUT_RING(0); |
| 453 | ADVANCE_LP_RING(); |
| 454 | } |
| 455 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 456 | static int i915_dispatch_cmdbuffer(struct drm_device * dev, |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 457 | drm_i915_cmdbuffer_t *cmd, |
| 458 | struct drm_clip_rect *cliprects, |
| 459 | void *cmdbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | { |
| 461 | int nbox = cmd->num_cliprects; |
| 462 | int i = 0, count, ret; |
| 463 | |
| 464 | if (cmd->sz & 0x3) { |
| 465 | DRM_ERROR("alignment"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 466 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | i915_kernel_lost_context(dev); |
| 470 | |
| 471 | count = nbox ? nbox : 1; |
| 472 | |
| 473 | for (i = 0; i < count; i++) { |
| 474 | if (i < nbox) { |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 475 | ret = i915_emit_box(dev, cliprects, i, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | cmd->DR1, cmd->DR4); |
| 477 | if (ret) |
| 478 | return ret; |
| 479 | } |
| 480 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 481 | ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | if (ret) |
| 483 | return ret; |
| 484 | } |
| 485 | |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 486 | i915_emit_breadcrumb(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | return 0; |
| 488 | } |
| 489 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 490 | static int i915_dispatch_batchbuffer(struct drm_device * dev, |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 491 | drm_i915_batchbuffer_t * batch, |
| 492 | struct drm_clip_rect *cliprects) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | { |
| 494 | drm_i915_private_t *dev_priv = dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | int nbox = batch->num_cliprects; |
| 496 | int i = 0, count; |
| 497 | RING_LOCALS; |
| 498 | |
| 499 | if ((batch->start | batch->used) & 0x7) { |
| 500 | DRM_ERROR("alignment"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 501 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | i915_kernel_lost_context(dev); |
| 505 | |
| 506 | count = nbox ? nbox : 1; |
| 507 | |
| 508 | for (i = 0; i < count; i++) { |
| 509 | if (i < nbox) { |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 510 | int ret = i915_emit_box(dev, cliprects, i, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | batch->DR1, batch->DR4); |
| 512 | if (ret) |
| 513 | return ret; |
| 514 | } |
| 515 | |
Keith Packard | 0790d5e | 2008-07-30 12:28:47 -0700 | [diff] [blame] | 516 | if (!IS_I830(dev) && !IS_845G(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | BEGIN_LP_RING(2); |
Dave Airlie | 21f1628 | 2007-08-07 09:09:51 +1000 | [diff] [blame] | 518 | if (IS_I965G(dev)) { |
| 519 | OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965); |
| 520 | OUT_RING(batch->start); |
| 521 | } else { |
| 522 | OUT_RING(MI_BATCH_BUFFER_START | (2 << 6)); |
| 523 | OUT_RING(batch->start | MI_BATCH_NON_SECURE); |
| 524 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | ADVANCE_LP_RING(); |
| 526 | } else { |
| 527 | BEGIN_LP_RING(4); |
| 528 | OUT_RING(MI_BATCH_BUFFER); |
| 529 | OUT_RING(batch->start | MI_BATCH_NON_SECURE); |
| 530 | OUT_RING(batch->start + batch->used - 4); |
| 531 | OUT_RING(0); |
| 532 | ADVANCE_LP_RING(); |
| 533 | } |
| 534 | } |
| 535 | |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 536 | i915_emit_breadcrumb(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | |
| 538 | return 0; |
| 539 | } |
| 540 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 541 | static int i915_dispatch_flip(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { |
| 543 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 544 | struct drm_i915_master_private *master_priv = |
| 545 | dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | RING_LOCALS; |
| 547 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 548 | if (!master_priv->sarea_priv) |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 549 | return -EINVAL; |
| 550 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 551 | DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n", |
Harvey Harrison | 80a914d | 2008-10-15 22:01:25 -0700 | [diff] [blame] | 552 | __func__, |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 553 | dev_priv->current_page, |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 554 | master_priv->sarea_priv->pf_current_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 556 | i915_kernel_lost_context(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 558 | BEGIN_LP_RING(2); |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 559 | OUT_RING(MI_FLUSH | MI_READ_FLUSH); |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 560 | OUT_RING(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | ADVANCE_LP_RING(); |
| 562 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 563 | BEGIN_LP_RING(6); |
| 564 | OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP); |
| 565 | OUT_RING(0); |
| 566 | if (dev_priv->current_page == 0) { |
| 567 | OUT_RING(dev_priv->back_offset); |
| 568 | dev_priv->current_page = 1; |
| 569 | } else { |
| 570 | OUT_RING(dev_priv->front_offset); |
| 571 | dev_priv->current_page = 0; |
| 572 | } |
| 573 | OUT_RING(0); |
| 574 | ADVANCE_LP_RING(); |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 575 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 576 | BEGIN_LP_RING(2); |
| 577 | OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP); |
| 578 | OUT_RING(0); |
| 579 | ADVANCE_LP_RING(); |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 580 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 581 | master_priv->sarea_priv->last_enqueue = dev_priv->counter++; |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 582 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 583 | BEGIN_LP_RING(4); |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 584 | OUT_RING(MI_STORE_DWORD_INDEX); |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 585 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 586 | OUT_RING(dev_priv->counter); |
| 587 | OUT_RING(0); |
| 588 | ADVANCE_LP_RING(); |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 589 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 590 | master_priv->sarea_priv->pf_current_page = dev_priv->current_page; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 591 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | } |
| 593 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 594 | static int i915_quiescent(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | { |
| 596 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 597 | |
| 598 | i915_kernel_lost_context(dev); |
Harvey Harrison | bf9d892 | 2008-04-30 00:55:10 -0700 | [diff] [blame] | 599 | return i915_wait_ring(dev, dev_priv->ring.Size - 8, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } |
| 601 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 602 | static int i915_flush_ioctl(struct drm_device *dev, void *data, |
| 603 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 605 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 607 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
| 608 | |
| 609 | mutex_lock(&dev->struct_mutex); |
| 610 | ret = i915_quiescent(dev); |
| 611 | mutex_unlock(&dev->struct_mutex); |
| 612 | |
| 613 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } |
| 615 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 616 | static int i915_batchbuffer(struct drm_device *dev, void *data, |
| 617 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 620 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *) |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 622 | master_priv->sarea_priv; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 623 | drm_i915_batchbuffer_t *batch = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | int ret; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 625 | struct drm_clip_rect *cliprects = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | |
| 627 | if (!dev_priv->allow_batchbuffer) { |
| 628 | DRM_ERROR("Batchbuffer ioctl disabled\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 629 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } |
| 631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | DRM_DEBUG("i915 batchbuffer, start %x used %d cliprects %d\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 633 | batch->start, batch->used, batch->num_cliprects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 635 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 637 | if (batch->num_cliprects < 0) |
| 638 | return -EINVAL; |
| 639 | |
| 640 | if (batch->num_cliprects) { |
| 641 | cliprects = drm_calloc(batch->num_cliprects, |
| 642 | sizeof(struct drm_clip_rect), |
| 643 | DRM_MEM_DRIVER); |
| 644 | if (cliprects == NULL) |
| 645 | return -ENOMEM; |
| 646 | |
| 647 | ret = copy_from_user(cliprects, batch->cliprects, |
| 648 | batch->num_cliprects * |
| 649 | sizeof(struct drm_clip_rect)); |
| 650 | if (ret != 0) |
| 651 | goto fail_free; |
| 652 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 654 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 655 | ret = i915_dispatch_batchbuffer(dev, batch, cliprects); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 656 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 658 | if (sarea_priv) |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 659 | sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 660 | |
| 661 | fail_free: |
| 662 | drm_free(cliprects, |
| 663 | batch->num_cliprects * sizeof(struct drm_clip_rect), |
| 664 | DRM_MEM_DRIVER); |
| 665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | return ret; |
| 667 | } |
| 668 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 669 | static int i915_cmdbuffer(struct drm_device *dev, void *data, |
| 670 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 673 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *) |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 675 | master_priv->sarea_priv; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 676 | drm_i915_cmdbuffer_t *cmdbuf = data; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 677 | struct drm_clip_rect *cliprects = NULL; |
| 678 | void *batch_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | int ret; |
| 680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | DRM_DEBUG("i915 cmdbuffer, buf %p sz %d cliprects %d\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 682 | cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 684 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 686 | if (cmdbuf->num_cliprects < 0) |
| 687 | return -EINVAL; |
| 688 | |
| 689 | batch_data = drm_alloc(cmdbuf->sz, DRM_MEM_DRIVER); |
| 690 | if (batch_data == NULL) |
| 691 | return -ENOMEM; |
| 692 | |
| 693 | ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz); |
| 694 | if (ret != 0) |
| 695 | goto fail_batch_free; |
| 696 | |
| 697 | if (cmdbuf->num_cliprects) { |
| 698 | cliprects = drm_calloc(cmdbuf->num_cliprects, |
| 699 | sizeof(struct drm_clip_rect), |
| 700 | DRM_MEM_DRIVER); |
| 701 | if (cliprects == NULL) |
| 702 | goto fail_batch_free; |
| 703 | |
| 704 | ret = copy_from_user(cliprects, cmdbuf->cliprects, |
| 705 | cmdbuf->num_cliprects * |
| 706 | sizeof(struct drm_clip_rect)); |
| 707 | if (ret != 0) |
| 708 | goto fail_clip_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } |
| 710 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 711 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 712 | ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 713 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | if (ret) { |
| 715 | DRM_ERROR("i915_dispatch_cmdbuffer failed\n"); |
Chris Wright | 355d7f3 | 2009-04-17 01:18:55 +0000 | [diff] [blame] | 716 | goto fail_clip_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | } |
| 718 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 719 | if (sarea_priv) |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 720 | sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 721 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 722 | fail_clip_free: |
| 723 | drm_free(cliprects, |
| 724 | cmdbuf->num_cliprects * sizeof(struct drm_clip_rect), |
| 725 | DRM_MEM_DRIVER); |
Chris Wright | 355d7f3 | 2009-04-17 01:18:55 +0000 | [diff] [blame] | 726 | fail_batch_free: |
| 727 | drm_free(batch_data, cmdbuf->sz, DRM_MEM_DRIVER); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 728 | |
| 729 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | } |
| 731 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 732 | static int i915_flip_bufs(struct drm_device *dev, void *data, |
| 733 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | { |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 735 | int ret; |
| 736 | |
Harvey Harrison | 80a914d | 2008-10-15 22:01:25 -0700 | [diff] [blame] | 737 | DRM_DEBUG("%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 739 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 741 | mutex_lock(&dev->struct_mutex); |
| 742 | ret = i915_dispatch_flip(dev); |
| 743 | mutex_unlock(&dev->struct_mutex); |
| 744 | |
| 745 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | } |
| 747 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 748 | static int i915_getparam(struct drm_device *dev, void *data, |
| 749 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 752 | drm_i915_getparam_t *param = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | int value; |
| 754 | |
| 755 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 756 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 757 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | } |
| 759 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 760 | switch (param->param) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | case I915_PARAM_IRQ_ACTIVE: |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 762 | value = dev->pdev->irq ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | break; |
| 764 | case I915_PARAM_ALLOW_BATCHBUFFER: |
| 765 | value = dev_priv->allow_batchbuffer ? 1 : 0; |
| 766 | break; |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 767 | case I915_PARAM_LAST_DISPATCH: |
| 768 | value = READ_BREADCRUMB(dev_priv); |
| 769 | break; |
Kristian Høgsberg | ed4c9c4 | 2008-08-20 11:08:52 -0400 | [diff] [blame] | 770 | case I915_PARAM_CHIPSET_ID: |
| 771 | value = dev->pci_device; |
| 772 | break; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 773 | case I915_PARAM_HAS_GEM: |
Dave Airlie | ac5c4e7 | 2008-12-19 15:38:34 +1000 | [diff] [blame] | 774 | value = dev_priv->has_gem; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 775 | break; |
Jesse Barnes | 0f973f2 | 2009-01-26 17:10:45 -0800 | [diff] [blame] | 776 | case I915_PARAM_NUM_FENCES_AVAIL: |
| 777 | value = dev_priv->num_fence_regs - dev_priv->fence_reg_start; |
| 778 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | default: |
Eric Anholt | 122ee2a | 2009-02-03 12:10:21 -0800 | [diff] [blame] | 780 | DRM_DEBUG("Unknown parameter %d\n", param->param); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 781 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | } |
| 783 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 784 | if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | DRM_ERROR("DRM_COPY_TO_USER failed\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 786 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | return 0; |
| 790 | } |
| 791 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 792 | static int i915_setparam(struct drm_device *dev, void *data, |
| 793 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 796 | drm_i915_setparam_t *param = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
| 798 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 799 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 800 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | } |
| 802 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 803 | switch (param->param) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | case I915_SETPARAM_USE_MI_BATCHBUFFER_START: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | break; |
| 806 | case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 807 | dev_priv->tex_lru_log_granularity = param->value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | break; |
| 809 | case I915_SETPARAM_ALLOW_BATCHBUFFER: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 810 | dev_priv->allow_batchbuffer = param->value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | break; |
Jesse Barnes | 0f973f2 | 2009-01-26 17:10:45 -0800 | [diff] [blame] | 812 | case I915_SETPARAM_NUM_USED_FENCES: |
| 813 | if (param->value > dev_priv->num_fence_regs || |
| 814 | param->value < 0) |
| 815 | return -EINVAL; |
| 816 | /* Userspace can use first N regs */ |
| 817 | dev_priv->fence_reg_start = param->value; |
| 818 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | default: |
Eric Anholt | 122ee2a | 2009-02-03 12:10:21 -0800 | [diff] [blame] | 820 | DRM_DEBUG("unknown parameter %d\n", param->param); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 821 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | return 0; |
| 825 | } |
| 826 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 827 | static int i915_set_status_page(struct drm_device *dev, void *data, |
| 828 | struct drm_file *file_priv) |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 829 | { |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 830 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 831 | drm_i915_hws_addr_t *hws = data; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 832 | |
Zhenyu Wang | b39d50e | 2008-02-19 20:59:09 +1000 | [diff] [blame] | 833 | if (!I915_NEED_GFX_HWS(dev)) |
| 834 | return -EINVAL; |
| 835 | |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 836 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 837 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 838 | return -EINVAL; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 839 | } |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 840 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 841 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 842 | WARN(1, "tried to set status page when mode setting active\n"); |
| 843 | return 0; |
| 844 | } |
| 845 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 846 | printk(KERN_DEBUG "set status page addr 0x%08x\n", (u32)hws->addr); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 847 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 848 | dev_priv->status_gfx_addr = hws->addr & (0x1ffff<<12); |
| 849 | |
Eric Anholt | 8b40958 | 2007-11-22 16:40:37 +1000 | [diff] [blame] | 850 | dev_priv->hws_map.offset = dev->agp->base + hws->addr; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 851 | dev_priv->hws_map.size = 4*1024; |
| 852 | dev_priv->hws_map.type = 0; |
| 853 | dev_priv->hws_map.flags = 0; |
| 854 | dev_priv->hws_map.mtrr = 0; |
| 855 | |
Dave Airlie | dd0910b | 2009-02-25 14:49:21 +1000 | [diff] [blame] | 856 | drm_core_ioremap_wc(&dev_priv->hws_map, dev); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 857 | if (dev_priv->hws_map.handle == NULL) { |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 858 | i915_dma_cleanup(dev); |
| 859 | dev_priv->status_gfx_addr = 0; |
| 860 | DRM_ERROR("can not ioremap virtual address for" |
| 861 | " G33 hw status page\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 862 | return -ENOMEM; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 863 | } |
| 864 | dev_priv->hw_status_page = dev_priv->hws_map.handle; |
| 865 | |
| 866 | memset(dev_priv->hw_status_page, 0, PAGE_SIZE); |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 867 | I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr); |
| 868 | DRM_DEBUG("load hws HWS_PGA with gfx mem 0x%x\n", |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 869 | dev_priv->status_gfx_addr); |
| 870 | DRM_DEBUG("load hws at %p\n", dev_priv->hw_status_page); |
| 871 | return 0; |
| 872 | } |
| 873 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 874 | /** |
| 875 | * i915_probe_agp - get AGP bootup configuration |
| 876 | * @pdev: PCI device |
| 877 | * @aperture_size: returns AGP aperture configured size |
| 878 | * @preallocated_size: returns size of BIOS preallocated AGP space |
| 879 | * |
| 880 | * Since Intel integrated graphics are UMA, the BIOS has to set aside |
| 881 | * some RAM for the framebuffer at early boot. This code figures out |
| 882 | * how much was set aside so we can use it for our own purposes. |
| 883 | */ |
Hannes Eder | b358d0a | 2008-12-18 21:18:47 +0100 | [diff] [blame] | 884 | static int i915_probe_agp(struct drm_device *dev, unsigned long *aperture_size, |
| 885 | unsigned long *preallocated_size) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 886 | { |
| 887 | struct pci_dev *bridge_dev; |
| 888 | u16 tmp = 0; |
| 889 | unsigned long overhead; |
Eric Anholt | 241fa85 | 2009-01-02 18:05:51 -0800 | [diff] [blame] | 890 | unsigned long stolen; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 891 | |
| 892 | bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0)); |
| 893 | if (!bridge_dev) { |
| 894 | DRM_ERROR("bridge device not found\n"); |
| 895 | return -1; |
| 896 | } |
| 897 | |
| 898 | /* Get the fb aperture size and "stolen" memory amount. */ |
| 899 | pci_read_config_word(bridge_dev, INTEL_GMCH_CTRL, &tmp); |
| 900 | pci_dev_put(bridge_dev); |
| 901 | |
| 902 | *aperture_size = 1024 * 1024; |
| 903 | *preallocated_size = 1024 * 1024; |
| 904 | |
Eric Anholt | 60fd99e | 2008-12-03 22:50:02 -0800 | [diff] [blame] | 905 | switch (dev->pdev->device) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 906 | case PCI_DEVICE_ID_INTEL_82830_CGC: |
| 907 | case PCI_DEVICE_ID_INTEL_82845G_IG: |
| 908 | case PCI_DEVICE_ID_INTEL_82855GM_IG: |
| 909 | case PCI_DEVICE_ID_INTEL_82865_IG: |
| 910 | if ((tmp & INTEL_GMCH_MEM_MASK) == INTEL_GMCH_MEM_64M) |
| 911 | *aperture_size *= 64; |
| 912 | else |
| 913 | *aperture_size *= 128; |
| 914 | break; |
| 915 | default: |
| 916 | /* 9xx supports large sizes, just look at the length */ |
Eric Anholt | 60fd99e | 2008-12-03 22:50:02 -0800 | [diff] [blame] | 917 | *aperture_size = pci_resource_len(dev->pdev, 2); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 918 | break; |
| 919 | } |
| 920 | |
| 921 | /* |
| 922 | * Some of the preallocated space is taken by the GTT |
| 923 | * and popup. GTT is 1K per MB of aperture size, and popup is 4K. |
| 924 | */ |
Shaohua Li | 4a8df45 | 2009-03-13 16:22:33 +0800 | [diff] [blame] | 925 | if (IS_G4X(dev) || IS_IGD(dev)) |
Eric Anholt | 60fd99e | 2008-12-03 22:50:02 -0800 | [diff] [blame] | 926 | overhead = 4096; |
| 927 | else |
| 928 | overhead = (*aperture_size / 1024) + 4096; |
| 929 | |
Eric Anholt | 241fa85 | 2009-01-02 18:05:51 -0800 | [diff] [blame] | 930 | switch (tmp & INTEL_GMCH_GMS_MASK) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 931 | case INTEL_855_GMCH_GMS_DISABLED: |
| 932 | DRM_ERROR("video memory is disabled\n"); |
| 933 | return -1; |
Eric Anholt | 241fa85 | 2009-01-02 18:05:51 -0800 | [diff] [blame] | 934 | case INTEL_855_GMCH_GMS_STOLEN_1M: |
| 935 | stolen = 1 * 1024 * 1024; |
| 936 | break; |
| 937 | case INTEL_855_GMCH_GMS_STOLEN_4M: |
| 938 | stolen = 4 * 1024 * 1024; |
| 939 | break; |
| 940 | case INTEL_855_GMCH_GMS_STOLEN_8M: |
| 941 | stolen = 8 * 1024 * 1024; |
| 942 | break; |
| 943 | case INTEL_855_GMCH_GMS_STOLEN_16M: |
| 944 | stolen = 16 * 1024 * 1024; |
| 945 | break; |
| 946 | case INTEL_855_GMCH_GMS_STOLEN_32M: |
| 947 | stolen = 32 * 1024 * 1024; |
| 948 | break; |
| 949 | case INTEL_915G_GMCH_GMS_STOLEN_48M: |
| 950 | stolen = 48 * 1024 * 1024; |
| 951 | break; |
| 952 | case INTEL_915G_GMCH_GMS_STOLEN_64M: |
| 953 | stolen = 64 * 1024 * 1024; |
| 954 | break; |
| 955 | case INTEL_GMCH_GMS_STOLEN_128M: |
| 956 | stolen = 128 * 1024 * 1024; |
| 957 | break; |
| 958 | case INTEL_GMCH_GMS_STOLEN_256M: |
| 959 | stolen = 256 * 1024 * 1024; |
| 960 | break; |
| 961 | case INTEL_GMCH_GMS_STOLEN_96M: |
| 962 | stolen = 96 * 1024 * 1024; |
| 963 | break; |
| 964 | case INTEL_GMCH_GMS_STOLEN_160M: |
| 965 | stolen = 160 * 1024 * 1024; |
| 966 | break; |
| 967 | case INTEL_GMCH_GMS_STOLEN_224M: |
| 968 | stolen = 224 * 1024 * 1024; |
| 969 | break; |
| 970 | case INTEL_GMCH_GMS_STOLEN_352M: |
| 971 | stolen = 352 * 1024 * 1024; |
| 972 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 973 | default: |
| 974 | DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n", |
Eric Anholt | 241fa85 | 2009-01-02 18:05:51 -0800 | [diff] [blame] | 975 | tmp & INTEL_GMCH_GMS_MASK); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 976 | return -1; |
| 977 | } |
Eric Anholt | 241fa85 | 2009-01-02 18:05:51 -0800 | [diff] [blame] | 978 | *preallocated_size = stolen - overhead; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 979 | |
| 980 | return 0; |
| 981 | } |
| 982 | |
| 983 | static int i915_load_modeset_init(struct drm_device *dev) |
| 984 | { |
| 985 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 986 | unsigned long agp_size, prealloc_size; |
| 987 | int fb_bar = IS_I9XX(dev) ? 2 : 0; |
| 988 | int ret = 0; |
| 989 | |
Dave Airlie | aa59662 | 2008-12-29 16:35:02 +1000 | [diff] [blame] | 990 | dev->devname = kstrdup(DRIVER_NAME, GFP_KERNEL); |
| 991 | if (!dev->devname) { |
| 992 | ret = -ENOMEM; |
| 993 | goto out; |
| 994 | } |
| 995 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 996 | dev->mode_config.fb_base = drm_get_resource_start(dev, fb_bar) & |
| 997 | 0xff000000; |
| 998 | |
Jesse Barnes | 2906f02 | 2009-01-20 19:10:54 -0800 | [diff] [blame] | 999 | if (IS_MOBILE(dev) || IS_I9XX(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1000 | dev_priv->cursor_needs_physical = true; |
| 1001 | else |
| 1002 | dev_priv->cursor_needs_physical = false; |
| 1003 | |
Jesse Barnes | 2906f02 | 2009-01-20 19:10:54 -0800 | [diff] [blame] | 1004 | if (IS_I965G(dev) || IS_G33(dev)) |
| 1005 | dev_priv->cursor_needs_physical = false; |
| 1006 | |
Dave Airlie | aa59662 | 2008-12-29 16:35:02 +1000 | [diff] [blame] | 1007 | ret = i915_probe_agp(dev, &agp_size, &prealloc_size); |
| 1008 | if (ret) |
| 1009 | goto kfree_devname; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1010 | |
| 1011 | /* Basic memrange allocator for stolen space (aka vram) */ |
| 1012 | drm_mm_init(&dev_priv->vram, 0, prealloc_size); |
| 1013 | |
Eric Anholt | 13f4c43 | 2009-05-12 15:27:36 -0700 | [diff] [blame] | 1014 | /* Let GEM Manage from end of prealloc space to end of aperture. |
| 1015 | * |
| 1016 | * However, leave one page at the end still bound to the scratch page. |
| 1017 | * There are a number of places where the hardware apparently |
| 1018 | * prefetches past the end of the object, and we've seen multiple |
| 1019 | * hangs with the GPU head pointer stuck in a batchbuffer bound |
| 1020 | * at the last page of the aperture. One page should be enough to |
| 1021 | * keep any prefetching inside of the aperture. |
| 1022 | */ |
| 1023 | i915_gem_do_init(dev, prealloc_size, agp_size - 4096); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1024 | |
| 1025 | ret = i915_gem_init_ringbuffer(dev); |
| 1026 | if (ret) |
Dave Airlie | aa59662 | 2008-12-29 16:35:02 +1000 | [diff] [blame] | 1027 | goto kfree_devname; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1028 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1029 | /* Allow hardware batchbuffers unless told otherwise. |
| 1030 | */ |
| 1031 | dev_priv->allow_batchbuffer = 1; |
| 1032 | |
| 1033 | ret = intel_init_bios(dev); |
| 1034 | if (ret) |
| 1035 | DRM_INFO("failed to find VBIOS tables\n"); |
| 1036 | |
| 1037 | ret = drm_irq_install(dev); |
| 1038 | if (ret) |
| 1039 | goto destroy_ringbuffer; |
| 1040 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1041 | /* Always safe in the mode setting case. */ |
| 1042 | /* FIXME: do pre/post-mode set stuff in core KMS code */ |
| 1043 | dev->vblank_disable_allowed = 1; |
| 1044 | |
| 1045 | /* |
| 1046 | * Initialize the hardware status page IRQ location. |
| 1047 | */ |
| 1048 | |
| 1049 | I915_WRITE(INSTPM, (1 << 5) | (1 << 21)); |
| 1050 | |
| 1051 | intel_modeset_init(dev); |
| 1052 | |
Jesse Barnes | 7a1fb5d | 2009-03-27 13:05:19 -0700 | [diff] [blame] | 1053 | drm_helper_initial_config(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1054 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1055 | return 0; |
| 1056 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1057 | destroy_ringbuffer: |
| 1058 | i915_gem_cleanup_ringbuffer(dev); |
Dave Airlie | aa59662 | 2008-12-29 16:35:02 +1000 | [diff] [blame] | 1059 | kfree_devname: |
| 1060 | kfree(dev->devname); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1061 | out: |
| 1062 | return ret; |
| 1063 | } |
| 1064 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1065 | int i915_master_create(struct drm_device *dev, struct drm_master *master) |
| 1066 | { |
| 1067 | struct drm_i915_master_private *master_priv; |
| 1068 | |
| 1069 | master_priv = drm_calloc(1, sizeof(*master_priv), DRM_MEM_DRIVER); |
| 1070 | if (!master_priv) |
| 1071 | return -ENOMEM; |
| 1072 | |
| 1073 | master->driver_priv = master_priv; |
| 1074 | return 0; |
| 1075 | } |
| 1076 | |
| 1077 | void i915_master_destroy(struct drm_device *dev, struct drm_master *master) |
| 1078 | { |
| 1079 | struct drm_i915_master_private *master_priv = master->driver_priv; |
| 1080 | |
| 1081 | if (!master_priv) |
| 1082 | return; |
| 1083 | |
| 1084 | drm_free(master_priv, sizeof(*master_priv), DRM_MEM_DRIVER); |
| 1085 | |
| 1086 | master->driver_priv = NULL; |
| 1087 | } |
| 1088 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1089 | /** |
| 1090 | * i915_driver_load - setup chip and create an initial config |
| 1091 | * @dev: DRM device |
| 1092 | * @flags: startup flags |
| 1093 | * |
| 1094 | * The driver load routine has to do several things: |
| 1095 | * - drive output discovery via intel_modeset_init() |
| 1096 | * - initialize the memory manager |
| 1097 | * - allocate initial config memory |
| 1098 | * - setup the DRM framebuffer with the allocated memory |
| 1099 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1100 | int i915_driver_load(struct drm_device *dev, unsigned long flags) |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 1101 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1102 | struct drm_i915_private *dev_priv = dev->dev_private; |
Benjamin Herrenschmidt | d883f7f | 2009-02-02 16:55:45 +1100 | [diff] [blame] | 1103 | resource_size_t base, size; |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1104 | int ret = 0, mmio_bar = IS_I9XX(dev) ? 0 : 1; |
| 1105 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 1106 | /* i915 has 4 more counters */ |
| 1107 | dev->counters += 4; |
| 1108 | dev->types[6] = _DRM_STAT_IRQ; |
| 1109 | dev->types[7] = _DRM_STAT_PRIMARY; |
| 1110 | dev->types[8] = _DRM_STAT_SECONDARY; |
| 1111 | dev->types[9] = _DRM_STAT_DMA; |
| 1112 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1113 | dev_priv = drm_alloc(sizeof(drm_i915_private_t), DRM_MEM_DRIVER); |
| 1114 | if (dev_priv == NULL) |
| 1115 | return -ENOMEM; |
| 1116 | |
| 1117 | memset(dev_priv, 0, sizeof(drm_i915_private_t)); |
| 1118 | |
| 1119 | dev->dev_private = (void *)dev_priv; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1120 | dev_priv->dev = dev; |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1121 | |
| 1122 | /* Add register map (needed for suspend/resume) */ |
| 1123 | base = drm_get_resource_start(dev, mmio_bar); |
| 1124 | size = drm_get_resource_len(dev, mmio_bar); |
| 1125 | |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 1126 | dev_priv->regs = ioremap(base, size); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1127 | if (!dev_priv->regs) { |
| 1128 | DRM_ERROR("failed to map registers\n"); |
| 1129 | ret = -EIO; |
| 1130 | goto free_priv; |
| 1131 | } |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1132 | |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1133 | dev_priv->mm.gtt_mapping = |
| 1134 | io_mapping_create_wc(dev->agp->base, |
| 1135 | dev->agp->agp_info.aper_size * 1024*1024); |
Venkatesh Pallipadi | 6644107d | 2009-02-24 17:35:11 -0800 | [diff] [blame] | 1136 | if (dev_priv->mm.gtt_mapping == NULL) { |
| 1137 | ret = -EIO; |
| 1138 | goto out_rmmap; |
| 1139 | } |
| 1140 | |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1141 | /* Set up a WC MTRR for non-PAT systems. This is more common than |
| 1142 | * one would think, because the kernel disables PAT on first |
| 1143 | * generation Core chips because WC PAT gets overridden by a UC |
| 1144 | * MTRR if present. Even if a UC MTRR isn't present. |
| 1145 | */ |
| 1146 | dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base, |
| 1147 | dev->agp->agp_info.aper_size * |
| 1148 | 1024 * 1024, |
| 1149 | MTRR_TYPE_WRCOMB, 1); |
| 1150 | if (dev_priv->mm.gtt_mtrr < 0) { |
Eric Anholt | 040aefa | 2009-03-10 12:31:12 -0700 | [diff] [blame] | 1151 | DRM_INFO("MTRR allocation failed. Graphics " |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1152 | "performance may suffer.\n"); |
| 1153 | } |
| 1154 | |
Dave Airlie | ac5c4e7 | 2008-12-19 15:38:34 +1000 | [diff] [blame] | 1155 | #ifdef CONFIG_HIGHMEM64G |
| 1156 | /* don't enable GEM on PAE - needs agp + set_memory_* interface fixes */ |
| 1157 | dev_priv->has_gem = 0; |
| 1158 | #else |
| 1159 | /* enable GEM by default */ |
| 1160 | dev_priv->has_gem = 1; |
| 1161 | #endif |
| 1162 | |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 1163 | dev->driver->get_vblank_counter = i915_get_vblank_counter; |
| 1164 | if (IS_GM45(dev)) |
| 1165 | dev->driver->get_vblank_counter = gm45_get_vblank_counter; |
| 1166 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1167 | i915_gem_load(dev); |
| 1168 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 1169 | /* Init HWS */ |
| 1170 | if (!I915_NEED_GFX_HWS(dev)) { |
| 1171 | ret = i915_init_phys_hws(dev); |
| 1172 | if (ret != 0) |
Venkatesh Pallipadi | 6644107d | 2009-02-24 17:35:11 -0800 | [diff] [blame] | 1173 | goto out_iomapfree; |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 1174 | } |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1175 | |
| 1176 | /* On the 945G/GM, the chipset reports the MSI capability on the |
| 1177 | * integrated graphics even though the support isn't actually there |
| 1178 | * according to the published specs. It doesn't appear to function |
| 1179 | * correctly in testing on 945G. |
| 1180 | * This may be a side effect of MSI having been made available for PEG |
| 1181 | * and the registers being closely associated. |
Keith Packard | d1ed629 | 2008-10-17 00:44:42 -0700 | [diff] [blame] | 1182 | * |
| 1183 | * According to chipset errata, on the 965GM, MSI interrupts may |
Keith Packard | b60678a | 2008-12-08 11:12:28 -0800 | [diff] [blame] | 1184 | * be lost or delayed, but we use them anyways to avoid |
| 1185 | * stuck interrupts on some machines. |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1186 | */ |
Keith Packard | b60678a | 2008-12-08 11:12:28 -0800 | [diff] [blame] | 1187 | if (!IS_I945G(dev) && !IS_I945GM(dev)) |
Eric Anholt | d3e74d0 | 2008-11-03 14:46:17 -0800 | [diff] [blame] | 1188 | pci_enable_msi(dev->pdev); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1189 | |
| 1190 | spin_lock_init(&dev_priv->user_irq_lock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1191 | dev_priv->user_irq_refcount = 0; |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1192 | |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame] | 1193 | ret = drm_vblank_init(dev, I915_NUM_PIPE); |
| 1194 | |
| 1195 | if (ret) { |
| 1196 | (void) i915_driver_unload(dev); |
| 1197 | return ret; |
| 1198 | } |
| 1199 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1200 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 1201 | ret = i915_load_modeset_init(dev); |
| 1202 | if (ret < 0) { |
| 1203 | DRM_ERROR("failed to init modeset\n"); |
| 1204 | goto out_rmmap; |
| 1205 | } |
| 1206 | } |
| 1207 | |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 1208 | /* Must be done after probing outputs */ |
| 1209 | intel_opregion_init(dev, 0); |
| 1210 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1211 | return 0; |
| 1212 | |
Venkatesh Pallipadi | 6644107d | 2009-02-24 17:35:11 -0800 | [diff] [blame] | 1213 | out_iomapfree: |
| 1214 | io_mapping_free(dev_priv->mm.gtt_mapping); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1215 | out_rmmap: |
| 1216 | iounmap(dev_priv->regs); |
| 1217 | free_priv: |
| 1218 | drm_free(dev_priv, sizeof(struct drm_i915_private), DRM_MEM_DRIVER); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1219 | return ret; |
| 1220 | } |
| 1221 | |
| 1222 | int i915_driver_unload(struct drm_device *dev) |
| 1223 | { |
| 1224 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1225 | |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1226 | io_mapping_free(dev_priv->mm.gtt_mapping); |
| 1227 | if (dev_priv->mm.gtt_mtrr >= 0) { |
| 1228 | mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base, |
| 1229 | dev->agp->agp_info.aper_size * 1024 * 1024); |
| 1230 | dev_priv->mm.gtt_mtrr = -1; |
| 1231 | } |
| 1232 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1233 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1234 | drm_irq_uninstall(dev); |
| 1235 | } |
| 1236 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1237 | if (dev->pdev->msi_enabled) |
| 1238 | pci_disable_msi(dev->pdev); |
| 1239 | |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 1240 | if (dev_priv->regs != NULL) |
| 1241 | iounmap(dev_priv->regs); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1242 | |
Matthew Garrett | 3b1c1c1 | 2009-04-01 19:52:29 +0100 | [diff] [blame] | 1243 | intel_opregion_free(dev, 0); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 1244 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1245 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 1246 | intel_modeset_cleanup(dev); |
| 1247 | |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 1248 | i915_gem_free_all_phys_object(dev); |
| 1249 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1250 | mutex_lock(&dev->struct_mutex); |
| 1251 | i915_gem_cleanup_ringbuffer(dev); |
| 1252 | mutex_unlock(&dev->struct_mutex); |
| 1253 | drm_mm_takedown(&dev_priv->vram); |
| 1254 | i915_gem_lastclose(dev); |
| 1255 | } |
| 1256 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1257 | drm_free(dev->dev_private, sizeof(drm_i915_private_t), |
| 1258 | DRM_MEM_DRIVER); |
| 1259 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 1260 | return 0; |
| 1261 | } |
| 1262 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1263 | int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv) |
| 1264 | { |
| 1265 | struct drm_i915_file_private *i915_file_priv; |
| 1266 | |
| 1267 | DRM_DEBUG("\n"); |
| 1268 | i915_file_priv = (struct drm_i915_file_private *) |
| 1269 | drm_alloc(sizeof(*i915_file_priv), DRM_MEM_FILES); |
| 1270 | |
| 1271 | if (!i915_file_priv) |
| 1272 | return -ENOMEM; |
| 1273 | |
| 1274 | file_priv->driver_priv = i915_file_priv; |
| 1275 | |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame^] | 1276 | INIT_LIST_HEAD(&i915_file_priv->mm.request_list); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1277 | |
| 1278 | return 0; |
| 1279 | } |
| 1280 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1281 | /** |
| 1282 | * i915_driver_lastclose - clean up after all DRM clients have exited |
| 1283 | * @dev: DRM device |
| 1284 | * |
| 1285 | * Take care of cleaning up after all DRM clients have exited. In the |
| 1286 | * mode setting case, we want to restore the kernel's initial mode (just |
| 1287 | * in case the last client left us in a bad state). |
| 1288 | * |
| 1289 | * Additionally, in the non-mode setting case, we'll tear down the AGP |
| 1290 | * and DMA structures, since the kernel won't be using them, and clea |
| 1291 | * up any GEM state. |
| 1292 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1293 | void i915_driver_lastclose(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1295 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1296 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1297 | if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 1298 | intelfb_restore(); |
Dave Airlie | 144a75f | 2008-03-30 07:53:58 +1000 | [diff] [blame] | 1299 | return; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1300 | } |
Dave Airlie | 144a75f | 2008-03-30 07:53:58 +1000 | [diff] [blame] | 1301 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1302 | i915_gem_lastclose(dev); |
| 1303 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1304 | if (dev_priv->agp_heap) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1305 | i915_mem_takedown(&(dev_priv->agp_heap)); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1306 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1307 | i915_dma_cleanup(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | } |
| 1309 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1310 | void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1312 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame^] | 1313 | i915_gem_release(dev, file_priv); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1314 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 1315 | i915_mem_release(dev, file_priv, dev_priv->agp_heap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | } |
| 1317 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1318 | void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv) |
| 1319 | { |
| 1320 | struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv; |
| 1321 | |
| 1322 | drm_free(i915_file_priv, sizeof(*i915_file_priv), DRM_MEM_FILES); |
| 1323 | } |
| 1324 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1325 | struct drm_ioctl_desc i915_ioctls[] = { |
| 1326 | DRM_IOCTL_DEF(DRM_I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 1327 | DRM_IOCTL_DEF(DRM_I915_FLUSH, i915_flush_ioctl, DRM_AUTH), |
| 1328 | DRM_IOCTL_DEF(DRM_I915_FLIP, i915_flip_bufs, DRM_AUTH), |
| 1329 | DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH), |
| 1330 | DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH), |
| 1331 | DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH), |
| 1332 | DRM_IOCTL_DEF(DRM_I915_GETPARAM, i915_getparam, DRM_AUTH), |
| 1333 | DRM_IOCTL_DEF(DRM_I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 1334 | DRM_IOCTL_DEF(DRM_I915_ALLOC, i915_mem_alloc, DRM_AUTH), |
| 1335 | DRM_IOCTL_DEF(DRM_I915_FREE, i915_mem_free, DRM_AUTH), |
| 1336 | DRM_IOCTL_DEF(DRM_I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 1337 | DRM_IOCTL_DEF(DRM_I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH), |
| 1338 | DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ), |
| 1339 | DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ), |
| 1340 | DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH ), |
| 1341 | DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH), |
Matthias Hopf | 4b40893 | 2008-10-18 07:18:05 +1000 | [diff] [blame] | 1342 | DRM_IOCTL_DEF(DRM_I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
Dave Airlie | 2bdf00b | 2008-10-07 13:40:10 +1000 | [diff] [blame] | 1343 | DRM_IOCTL_DEF(DRM_I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1344 | DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH), |
| 1345 | DRM_IOCTL_DEF(DRM_I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY), |
| 1346 | DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY), |
| 1347 | DRM_IOCTL_DEF(DRM_I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH), |
| 1348 | DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH), |
Dave Airlie | 2bdf00b | 2008-10-07 13:40:10 +1000 | [diff] [blame] | 1349 | DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 1350 | DRM_IOCTL_DEF(DRM_I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1351 | DRM_IOCTL_DEF(DRM_I915_GEM_CREATE, i915_gem_create_ioctl, 0), |
| 1352 | DRM_IOCTL_DEF(DRM_I915_GEM_PREAD, i915_gem_pread_ioctl, 0), |
| 1353 | DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE, i915_gem_pwrite_ioctl, 0), |
| 1354 | DRM_IOCTL_DEF(DRM_I915_GEM_MMAP, i915_gem_mmap_ioctl, 0), |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1355 | DRM_IOCTL_DEF(DRM_I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, 0), |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1356 | DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, 0), |
| 1357 | DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, 0), |
| 1358 | DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING, i915_gem_set_tiling, 0), |
| 1359 | DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING, i915_gem_get_tiling, 0), |
Eric Anholt | 5a125c3 | 2008-10-22 21:40:13 -0700 | [diff] [blame] | 1360 | DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, 0), |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 1361 | DRM_IOCTL_DEF(DRM_I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, 0), |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 1362 | }; |
| 1363 | |
| 1364 | int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls); |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 1365 | |
| 1366 | /** |
| 1367 | * Determine if the device really is AGP or not. |
| 1368 | * |
| 1369 | * All Intel graphics chipsets are treated as AGP, even if they are really |
| 1370 | * PCI-e. |
| 1371 | * |
| 1372 | * \param dev The device to be tested. |
| 1373 | * |
| 1374 | * \returns |
| 1375 | * A value of 1 is always retured to indictate every i9x5 is AGP. |
| 1376 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1377 | int i915_driver_device_is_agp(struct drm_device * dev) |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 1378 | { |
| 1379 | return 1; |
| 1380 | } |