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 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 29 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 30 | |
Jesse Barnes | d1d7067 | 2014-05-28 14:39:03 -0700 | [diff] [blame] | 31 | #include <linux/async.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 32 | #include <drm/drmP.h> |
| 33 | #include <drm/drm_crtc_helper.h> |
| 34 | #include <drm/drm_fb_helper.h> |
Daniel Vetter | 4f03b1f | 2014-09-10 12:43:49 +0200 | [diff] [blame] | 35 | #include <drm/drm_legacy.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 36 | #include "intel_drv.h" |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 37 | #include <drm/i915_drm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "i915_drv.h" |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 39 | #include "i915_trace.h" |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 40 | #include <linux/pci.h> |
Daniel Vetter | a4de052 | 2014-06-05 16:20:46 +0200 | [diff] [blame] | 41 | #include <linux/console.h> |
| 42 | #include <linux/vt.h> |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 43 | #include <linux/vgaarb.h> |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 44 | #include <linux/acpi.h> |
| 45 | #include <linux/pnp.h> |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 46 | #include <linux/vga_switcheroo.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 47 | #include <linux/slab.h> |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 48 | #include <acpi/video.h> |
Paulo Zanoni | 8a18745 | 2013-12-06 20:32:13 -0200 | [diff] [blame] | 49 | #include <linux/pm.h> |
| 50 | #include <linux/pm_runtime.h> |
Imre Deak | 4bdc729 | 2014-05-20 19:47:20 +0300 | [diff] [blame] | 51 | #include <linux/oom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Daniel Vetter | 09422b2 | 2012-04-26 23:28:10 +0200 | [diff] [blame] | 53 | #define LP_RING(d) (&((struct drm_i915_private *)(d))->ring[RCS]) |
| 54 | |
| 55 | #define BEGIN_LP_RING(n) \ |
| 56 | intel_ring_begin(LP_RING(dev_priv), (n)) |
| 57 | |
| 58 | #define OUT_RING(x) \ |
| 59 | intel_ring_emit(LP_RING(dev_priv), x) |
| 60 | |
| 61 | #define ADVANCE_LP_RING() \ |
Chris Wilson | 0924673 | 2013-08-10 22:16:32 +0100 | [diff] [blame] | 62 | __intel_ring_advance(LP_RING(dev_priv)) |
Daniel Vetter | 09422b2 | 2012-04-26 23:28:10 +0200 | [diff] [blame] | 63 | |
| 64 | /** |
| 65 | * Lock test for when it's just for synchronization of ring access. |
| 66 | * |
| 67 | * In that case, we don't need to do it when GEM is initialized as nobody else |
| 68 | * has access to the ring. |
| 69 | */ |
| 70 | #define RING_LOCK_TEST_WITH_RETURN(dev, file) do { \ |
Oscar Mateo | ee1b1e5 | 2014-05-22 14:13:35 +0100 | [diff] [blame] | 71 | if (LP_RING(dev->dev_private)->buffer->obj == NULL) \ |
Daniel Vetter | 09422b2 | 2012-04-26 23:28:10 +0200 | [diff] [blame] | 72 | LOCK_TEST_WITH_RETURN(dev, file); \ |
| 73 | } while (0) |
| 74 | |
Daniel Vetter | 316d388 | 2012-04-26 23:28:15 +0200 | [diff] [blame] | 75 | static inline u32 |
| 76 | intel_read_legacy_status_page(struct drm_i915_private *dev_priv, int reg) |
| 77 | { |
| 78 | if (I915_NEED_GFX_HWS(dev_priv->dev)) |
| 79 | return ioread32(dev_priv->dri1.gfx_hws_cpu_addr + reg); |
| 80 | else |
| 81 | return intel_read_status_page(LP_RING(dev_priv), reg); |
| 82 | } |
| 83 | |
| 84 | #define READ_HWSP(dev_priv, reg) intel_read_legacy_status_page(dev_priv, reg) |
Daniel Vetter | 09422b2 | 2012-04-26 23:28:10 +0200 | [diff] [blame] | 85 | #define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX) |
| 86 | #define I915_BREADCRUMB_INDEX 0x21 |
| 87 | |
Daniel Vetter | d05c617 | 2012-04-26 23:28:09 +0200 | [diff] [blame] | 88 | void i915_update_dri1_breadcrumb(struct drm_device *dev) |
| 89 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 90 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | d05c617 | 2012-04-26 23:28:09 +0200 | [diff] [blame] | 91 | struct drm_i915_master_private *master_priv; |
| 92 | |
Daniel Vetter | 6c719fa | 2013-12-10 13:20:59 +0100 | [diff] [blame] | 93 | /* |
| 94 | * The dri breadcrumb update races against the drm master disappearing. |
| 95 | * Instead of trying to fix this (this is by far not the only ums issue) |
| 96 | * just don't do the update in kms mode. |
| 97 | */ |
| 98 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 99 | return; |
| 100 | |
Daniel Vetter | d05c617 | 2012-04-26 23:28:09 +0200 | [diff] [blame] | 101 | if (dev->primary->master) { |
| 102 | master_priv = dev->primary->master->driver_priv; |
| 103 | if (master_priv->sarea_priv) |
| 104 | master_priv->sarea_priv->last_dispatch = |
| 105 | READ_BREADCRUMB(dev_priv); |
| 106 | } |
| 107 | } |
| 108 | |
Chris Wilson | 4cbf74c | 2011-02-25 22:26:23 +0000 | [diff] [blame] | 109 | static void i915_write_hws_pga(struct drm_device *dev) |
| 110 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 111 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 4cbf74c | 2011-02-25 22:26:23 +0000 | [diff] [blame] | 112 | u32 addr; |
| 113 | |
| 114 | addr = dev_priv->status_page_dmah->busaddr; |
| 115 | if (INTEL_INFO(dev)->gen >= 4) |
| 116 | addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0; |
| 117 | I915_WRITE(HWS_PGA, addr); |
| 118 | } |
| 119 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 120 | /** |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 121 | * Frees the hardware status page, whether it's a physical address or a virtual |
| 122 | * address set up by the X Server. |
| 123 | */ |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 124 | static void i915_free_hws(struct drm_device *dev) |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 125 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 126 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 127 | struct intel_engine_cs *ring = LP_RING(dev_priv); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 128 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 129 | if (dev_priv->status_page_dmah) { |
| 130 | drm_pci_free(dev, dev_priv->status_page_dmah); |
| 131 | dev_priv->status_page_dmah = NULL; |
| 132 | } |
| 133 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 134 | if (ring->status_page.gfx_addr) { |
| 135 | ring->status_page.gfx_addr = 0; |
Daniel Vetter | 316d388 | 2012-04-26 23:28:15 +0200 | [diff] [blame] | 136 | iounmap(dev_priv->dri1.gfx_hws_cpu_addr); |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | /* Need to rewrite hardware status page */ |
| 140 | I915_WRITE(HWS_PGA, 0x1ffff000); |
| 141 | } |
| 142 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 143 | void i915_kernel_lost_context(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 145 | struct drm_i915_private *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 146 | struct drm_i915_master_private *master_priv; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 147 | struct intel_engine_cs *ring = LP_RING(dev_priv); |
Oscar Mateo | 93b0a4e | 2014-05-22 14:13:36 +0100 | [diff] [blame] | 148 | struct intel_ringbuffer *ringbuf = ring->buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 150 | /* |
| 151 | * We should never lose context on the ring with modesetting |
| 152 | * as we don't expose it to userspace |
| 153 | */ |
| 154 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 155 | return; |
| 156 | |
Oscar Mateo | 93b0a4e | 2014-05-22 14:13:36 +0100 | [diff] [blame] | 157 | ringbuf->head = I915_READ_HEAD(ring) & HEAD_ADDR; |
| 158 | ringbuf->tail = I915_READ_TAIL(ring) & TAIL_ADDR; |
| 159 | ringbuf->space = ringbuf->head - (ringbuf->tail + I915_RING_FREE_SPACE); |
| 160 | if (ringbuf->space < 0) |
| 161 | ringbuf->space += ringbuf->size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 163 | if (!dev->primary->master) |
| 164 | return; |
| 165 | |
| 166 | master_priv = dev->primary->master->driver_priv; |
Oscar Mateo | 93b0a4e | 2014-05-22 14:13:36 +0100 | [diff] [blame] | 167 | if (ringbuf->head == ringbuf->tail && master_priv->sarea_priv) |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 168 | master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 171 | static int i915_dma_cleanup(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 173 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 174 | int i; |
| 175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | /* Make sure interrupts are disabled here because the uninstall ioctl |
| 177 | * may not have been called from userspace and after dev_private |
| 178 | * is freed, it's too late. |
| 179 | */ |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 180 | if (dev->irq_enabled) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 181 | drm_irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Dan Carpenter | ee0c6bf | 2010-06-23 13:19:55 +0200 | [diff] [blame] | 183 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 184 | for (i = 0; i < I915_NUM_RINGS; i++) |
| 185 | intel_cleanup_ring_buffer(&dev_priv->ring[i]); |
Dan Carpenter | ee0c6bf | 2010-06-23 13:19:55 +0200 | [diff] [blame] | 186 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 188 | /* Clear the HWS virtual address at teardown */ |
| 189 | if (I915_NEED_GFX_HWS(dev)) |
| 190 | i915_free_hws(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 195 | 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] | 196 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 197 | struct drm_i915_private *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 198 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 199 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
David Herrmann | 9fc5cde | 2014-08-29 12:12:28 +0200 | [diff] [blame] | 201 | master_priv->sarea = drm_legacy_getsarea(dev); |
Dave Airlie | 3a03ac1 | 2009-01-11 09:03:49 +1000 | [diff] [blame] | 202 | if (master_priv->sarea) { |
| 203 | master_priv->sarea_priv = (drm_i915_sarea_t *) |
| 204 | ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset); |
| 205 | } else { |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 206 | DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n"); |
Dave Airlie | 3a03ac1 | 2009-01-11 09:03:49 +1000 | [diff] [blame] | 207 | } |
| 208 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 209 | if (init->ring_size != 0) { |
Oscar Mateo | ee1b1e5 | 2014-05-22 14:13:35 +0100 | [diff] [blame] | 210 | if (LP_RING(dev_priv)->buffer->obj != NULL) { |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 211 | i915_dma_cleanup(dev); |
| 212 | DRM_ERROR("Client tried to initialize ringbuffer in " |
| 213 | "GEM mode\n"); |
| 214 | return -EINVAL; |
| 215 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 217 | ret = intel_render_ring_init_dri(dev, |
| 218 | init->ring_start, |
| 219 | init->ring_size); |
| 220 | if (ret) { |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 221 | i915_dma_cleanup(dev); |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 222 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 223 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
| 225 | |
Daniel Vetter | 5d985ac | 2012-08-12 19:27:13 +0200 | [diff] [blame] | 226 | dev_priv->dri1.cpp = init->cpp; |
| 227 | dev_priv->dri1.back_offset = init->back_offset; |
| 228 | dev_priv->dri1.front_offset = init->front_offset; |
| 229 | dev_priv->dri1.current_page = 0; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 230 | if (master_priv->sarea_priv) |
| 231 | master_priv->sarea_priv->pf_current_page = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* Allow hardware batchbuffers unless told otherwise. |
| 234 | */ |
Daniel Vetter | 8781342 | 2012-05-02 11:49:32 +0200 | [diff] [blame] | 235 | dev_priv->dri1.allow_batchbuffer = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return 0; |
| 238 | } |
| 239 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 240 | static int i915_dma_resume(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 242 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 243 | struct intel_engine_cs *ring = LP_RING(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 245 | DRM_DEBUG_DRIVER("%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
Oscar Mateo | ee1b1e5 | 2014-05-22 14:13:35 +0100 | [diff] [blame] | 247 | if (ring->buffer->virtual_start == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | DRM_ERROR("can not ioremap virtual address for" |
| 249 | " ring buffer\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 250 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | /* Program Hardware Status Page */ |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 254 | if (!ring->status_page.page_addr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | DRM_ERROR("Can not find hardware status page\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 256 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 258 | DRM_DEBUG_DRIVER("hw status page @ %p\n", |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 259 | ring->status_page.page_addr); |
| 260 | if (ring->status_page.gfx_addr != 0) |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 261 | intel_ring_setup_status_page(ring); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 262 | else |
Chris Wilson | 4cbf74c | 2011-02-25 22:26:23 +0000 | [diff] [blame] | 263 | i915_write_hws_pga(dev); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 264 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 265 | DRM_DEBUG_DRIVER("Enabled hardware status page\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | return 0; |
| 268 | } |
| 269 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 270 | static int i915_dma_init(struct drm_device *dev, void *data, |
| 271 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 273 | drm_i915_init_t *init = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | int retcode = 0; |
| 275 | |
Daniel Vetter | cd9d4e9 | 2012-04-24 08:29:42 +0200 | [diff] [blame] | 276 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 277 | return -ENODEV; |
| 278 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 279 | switch (init->func) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | case I915_INIT_DMA: |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 281 | retcode = i915_initialize(dev, init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | break; |
| 283 | case I915_CLEANUP_DMA: |
| 284 | retcode = i915_dma_cleanup(dev); |
| 285 | break; |
| 286 | case I915_RESUME_DMA: |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 287 | retcode = i915_dma_resume(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | break; |
| 289 | default: |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 290 | retcode = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | break; |
| 292 | } |
| 293 | |
| 294 | return retcode; |
| 295 | } |
| 296 | |
| 297 | /* Implement basically the same security restrictions as hardware does |
| 298 | * for MI_BATCH_NON_SECURE. These can be made stricter at any time. |
| 299 | * |
| 300 | * Most of the calculations below involve calculating the size of a |
| 301 | * particular instruction. It's important to get the size right as |
| 302 | * that tells us where the next instruction to check is. Any illegal |
| 303 | * instruction detected will be given a size of zero, which is a |
| 304 | * signal to abort the rest of the buffer. |
| 305 | */ |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 306 | static int validate_cmd(int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { |
| 308 | switch (((cmd >> 29) & 0x7)) { |
| 309 | case 0x0: |
| 310 | switch ((cmd >> 23) & 0x3f) { |
| 311 | case 0x0: |
| 312 | return 1; /* MI_NOOP */ |
| 313 | case 0x4: |
| 314 | return 1; /* MI_FLUSH */ |
| 315 | default: |
| 316 | return 0; /* disallow everything else */ |
| 317 | } |
| 318 | break; |
| 319 | case 0x1: |
| 320 | return 0; /* reserved */ |
| 321 | case 0x2: |
| 322 | return (cmd & 0xff) + 2; /* 2d commands */ |
| 323 | case 0x3: |
| 324 | if (((cmd >> 24) & 0x1f) <= 0x18) |
| 325 | return 1; |
| 326 | |
| 327 | switch ((cmd >> 24) & 0x1f) { |
| 328 | case 0x1c: |
| 329 | return 1; |
| 330 | case 0x1d: |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 331 | switch ((cmd >> 16) & 0xff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | case 0x3: |
| 333 | return (cmd & 0x1f) + 2; |
| 334 | case 0x4: |
| 335 | return (cmd & 0xf) + 2; |
| 336 | default: |
| 337 | return (cmd & 0xffff) + 2; |
| 338 | } |
| 339 | case 0x1e: |
| 340 | if (cmd & (1 << 23)) |
| 341 | return (cmd & 0xffff) + 1; |
| 342 | else |
| 343 | return 1; |
| 344 | case 0x1f: |
| 345 | if ((cmd & (1 << 23)) == 0) /* inline vertices */ |
| 346 | return (cmd & 0x1ffff) + 2; |
| 347 | else if (cmd & (1 << 17)) /* indirect random */ |
| 348 | if ((cmd & 0xffff) == 0) |
| 349 | return 0; /* unknown length, too hard */ |
| 350 | else |
| 351 | return (((cmd & 0xffff) + 1) / 2) + 1; |
| 352 | else |
| 353 | return 2; /* indirect sequential */ |
| 354 | default: |
| 355 | return 0; |
| 356 | } |
| 357 | default: |
| 358 | return 0; |
| 359 | } |
| 360 | |
| 361 | return 0; |
| 362 | } |
| 363 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 364 | 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] | 365 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 366 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 367 | int i, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Oscar Mateo | ee1b1e5 | 2014-05-22 14:13:35 +0100 | [diff] [blame] | 369 | if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->buffer->size - 8) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 370 | return -EINVAL; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 371 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | for (i = 0; i < dwords;) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 373 | int sz = validate_cmd(buffer[i]); |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 374 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 375 | if (sz == 0 || i + sz > dwords) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 376 | return -EINVAL; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 377 | i += sz; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 380 | ret = BEGIN_LP_RING((dwords+1)&~1); |
| 381 | if (ret) |
| 382 | return ret; |
| 383 | |
| 384 | for (i = 0; i < dwords; i++) |
| 385 | OUT_RING(buffer[i]); |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 386 | if (dwords & 1) |
| 387 | OUT_RING(0); |
| 388 | |
| 389 | ADVANCE_LP_RING(); |
| 390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | return 0; |
| 392 | } |
| 393 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 394 | int |
| 395 | i915_emit_box(struct drm_device *dev, |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 396 | struct drm_clip_rect *box, |
| 397 | int DR1, int DR4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 399 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 400 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 402 | if (box->y2 <= box->y1 || box->x2 <= box->x1 || |
| 403 | box->y2 <= 0 || box->x2 <= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | DRM_ERROR("Bad box %d,%d..%d,%d\n", |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 405 | box->x1, box->y1, box->x2, box->y2); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 406 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 409 | if (INTEL_INFO(dev)->gen >= 4) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 410 | ret = BEGIN_LP_RING(4); |
| 411 | if (ret) |
| 412 | return ret; |
| 413 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 414 | OUT_RING(GFX_OP_DRAWRECT_INFO_I965); |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 415 | OUT_RING((box->x1 & 0xffff) | (box->y1 << 16)); |
| 416 | OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16)); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 417 | OUT_RING(DR4); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 418 | } else { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 419 | ret = BEGIN_LP_RING(6); |
| 420 | if (ret) |
| 421 | return ret; |
| 422 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 423 | OUT_RING(GFX_OP_DRAWRECT_INFO); |
| 424 | OUT_RING(DR1); |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 425 | OUT_RING((box->x1 & 0xffff) | (box->y1 << 16)); |
| 426 | OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16)); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 427 | OUT_RING(DR4); |
| 428 | OUT_RING(0); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 429 | } |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 430 | ADVANCE_LP_RING(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
| 432 | return 0; |
| 433 | } |
| 434 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 435 | /* XXX: Emitting the counter should really be moved to part of the IRQ |
| 436 | * emit. For now, do it in both places: |
| 437 | */ |
| 438 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 439 | static void i915_emit_breadcrumb(struct drm_device *dev) |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 440 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 441 | struct drm_i915_private *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 442 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 443 | |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 444 | dev_priv->dri1.counter++; |
| 445 | if (dev_priv->dri1.counter > 0x7FFFFFFFUL) |
| 446 | dev_priv->dri1.counter = 0; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 447 | if (master_priv->sarea_priv) |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 448 | master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 449 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 450 | if (BEGIN_LP_RING(4) == 0) { |
| 451 | OUT_RING(MI_STORE_DWORD_INDEX); |
| 452 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 453 | OUT_RING(dev_priv->dri1.counter); |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 454 | OUT_RING(0); |
| 455 | ADVANCE_LP_RING(); |
| 456 | } |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 457 | } |
| 458 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 459 | static int i915_dispatch_cmdbuffer(struct drm_device *dev, |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 460 | drm_i915_cmdbuffer_t *cmd, |
| 461 | struct drm_clip_rect *cliprects, |
| 462 | void *cmdbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | { |
| 464 | int nbox = cmd->num_cliprects; |
| 465 | int i = 0, count, ret; |
| 466 | |
| 467 | if (cmd->sz & 0x3) { |
| 468 | DRM_ERROR("alignment"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 469 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | i915_kernel_lost_context(dev); |
| 473 | |
| 474 | count = nbox ? nbox : 1; |
| 475 | |
| 476 | for (i = 0; i < count; i++) { |
| 477 | if (i < nbox) { |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 478 | ret = i915_emit_box(dev, &cliprects[i], |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | cmd->DR1, cmd->DR4); |
| 480 | if (ret) |
| 481 | return ret; |
| 482 | } |
| 483 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 484 | ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | if (ret) |
| 486 | return ret; |
| 487 | } |
| 488 | |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 489 | i915_emit_breadcrumb(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | return 0; |
| 491 | } |
| 492 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 493 | static int i915_dispatch_batchbuffer(struct drm_device *dev, |
| 494 | drm_i915_batchbuffer_t *batch, |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 495 | struct drm_clip_rect *cliprects) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 497 | struct drm_i915_private *dev_priv = dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | int nbox = batch->num_cliprects; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 499 | int i, count, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
| 501 | if ((batch->start | batch->used) & 0x7) { |
| 502 | DRM_ERROR("alignment"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 503 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | i915_kernel_lost_context(dev); |
| 507 | |
| 508 | count = nbox ? nbox : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | for (i = 0; i < count; i++) { |
| 510 | if (i < nbox) { |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 511 | ret = i915_emit_box(dev, &cliprects[i], |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 512 | batch->DR1, batch->DR4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | if (ret) |
| 514 | return ret; |
| 515 | } |
| 516 | |
Keith Packard | 0790d5e | 2008-07-30 12:28:47 -0700 | [diff] [blame] | 517 | if (!IS_I830(dev) && !IS_845G(dev)) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 518 | ret = BEGIN_LP_RING(2); |
| 519 | if (ret) |
| 520 | return ret; |
| 521 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 522 | if (INTEL_INFO(dev)->gen >= 4) { |
Dave Airlie | 21f1628 | 2007-08-07 09:09:51 +1000 | [diff] [blame] | 523 | OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965); |
| 524 | OUT_RING(batch->start); |
| 525 | } else { |
| 526 | OUT_RING(MI_BATCH_BUFFER_START | (2 << 6)); |
| 527 | OUT_RING(batch->start | MI_BATCH_NON_SECURE); |
| 528 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | } else { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 530 | ret = BEGIN_LP_RING(4); |
| 531 | if (ret) |
| 532 | return ret; |
| 533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | OUT_RING(MI_BATCH_BUFFER); |
| 535 | OUT_RING(batch->start | MI_BATCH_NON_SECURE); |
| 536 | OUT_RING(batch->start + batch->used - 4); |
| 537 | OUT_RING(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 539 | ADVANCE_LP_RING(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
| 541 | |
Zou Nan hai | 1cafd34 | 2010-06-25 13:40:24 +0800 | [diff] [blame] | 542 | |
Chris Wilson | f00a3dd | 2010-10-21 14:57:17 +0100 | [diff] [blame] | 543 | if (IS_G4X(dev) || IS_GEN5(dev)) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 544 | if (BEGIN_LP_RING(2) == 0) { |
| 545 | OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP); |
| 546 | OUT_RING(MI_NOOP); |
| 547 | ADVANCE_LP_RING(); |
| 548 | } |
Zou Nan hai | 1cafd34 | 2010-06-25 13:40:24 +0800 | [diff] [blame] | 549 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 551 | i915_emit_breadcrumb(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | return 0; |
| 553 | } |
| 554 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 555 | static int i915_dispatch_flip(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 557 | struct drm_i915_private *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 558 | struct drm_i915_master_private *master_priv = |
| 559 | dev->primary->master->driver_priv; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 560 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 562 | if (!master_priv->sarea_priv) |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 563 | return -EINVAL; |
| 564 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 565 | DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n", |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 566 | __func__, |
Daniel Vetter | 5d985ac | 2012-08-12 19:27:13 +0200 | [diff] [blame] | 567 | dev_priv->dri1.current_page, |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 568 | master_priv->sarea_priv->pf_current_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 570 | i915_kernel_lost_context(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 572 | ret = BEGIN_LP_RING(10); |
| 573 | if (ret) |
| 574 | return ret; |
| 575 | |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 576 | OUT_RING(MI_FLUSH | MI_READ_FLUSH); |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 577 | OUT_RING(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 579 | OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP); |
| 580 | OUT_RING(0); |
Daniel Vetter | 5d985ac | 2012-08-12 19:27:13 +0200 | [diff] [blame] | 581 | if (dev_priv->dri1.current_page == 0) { |
| 582 | OUT_RING(dev_priv->dri1.back_offset); |
| 583 | dev_priv->dri1.current_page = 1; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 584 | } else { |
Daniel Vetter | 5d985ac | 2012-08-12 19:27:13 +0200 | [diff] [blame] | 585 | OUT_RING(dev_priv->dri1.front_offset); |
| 586 | dev_priv->dri1.current_page = 0; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 587 | } |
| 588 | OUT_RING(0); |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 589 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 590 | OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP); |
| 591 | OUT_RING(0); |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 592 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 593 | ADVANCE_LP_RING(); |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 594 | |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 595 | master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter++; |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 596 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 597 | if (BEGIN_LP_RING(4) == 0) { |
| 598 | OUT_RING(MI_STORE_DWORD_INDEX); |
| 599 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 600 | OUT_RING(dev_priv->dri1.counter); |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 601 | OUT_RING(0); |
| 602 | ADVANCE_LP_RING(); |
| 603 | } |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 604 | |
Daniel Vetter | 5d985ac | 2012-08-12 19:27:13 +0200 | [diff] [blame] | 605 | master_priv->sarea_priv->pf_current_page = dev_priv->dri1.current_page; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 606 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 609 | static int i915_quiescent(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | i915_kernel_lost_context(dev); |
Chris Wilson | 3e96050 | 2012-11-27 16:22:54 +0000 | [diff] [blame] | 612 | return intel_ring_idle(LP_RING(dev->dev_private)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | } |
| 614 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 615 | static int i915_flush_ioctl(struct drm_device *dev, void *data, |
| 616 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | { |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 618 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | |
Daniel Vetter | cd9d4e9 | 2012-04-24 08:29:42 +0200 | [diff] [blame] | 620 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 621 | return -ENODEV; |
| 622 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 623 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
| 624 | |
| 625 | mutex_lock(&dev->struct_mutex); |
| 626 | ret = i915_quiescent(dev); |
| 627 | mutex_unlock(&dev->struct_mutex); |
| 628 | |
| 629 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } |
| 631 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 632 | static int i915_batchbuffer(struct drm_device *dev, void *data, |
| 633 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 635 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 4d10cc0 | 2014-02-12 23:50:06 +0100 | [diff] [blame] | 636 | struct drm_i915_master_private *master_priv; |
| 637 | drm_i915_sarea_t *sarea_priv; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 638 | drm_i915_batchbuffer_t *batch = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | int ret; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 640 | struct drm_clip_rect *cliprects = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
Daniel Vetter | cd9d4e9 | 2012-04-24 08:29:42 +0200 | [diff] [blame] | 642 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 643 | return -ENODEV; |
| 644 | |
Daniel Vetter | 4d10cc0 | 2014-02-12 23:50:06 +0100 | [diff] [blame] | 645 | master_priv = dev->primary->master->driver_priv; |
| 646 | sarea_priv = (drm_i915_sarea_t *) master_priv->sarea_priv; |
| 647 | |
Daniel Vetter | 8781342 | 2012-05-02 11:49:32 +0200 | [diff] [blame] | 648 | if (!dev_priv->dri1.allow_batchbuffer) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | DRM_ERROR("Batchbuffer ioctl disabled\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 650 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | } |
| 652 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 653 | DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n", |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 654 | batch->start, batch->used, batch->num_cliprects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 656 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 658 | if (batch->num_cliprects < 0) |
| 659 | return -EINVAL; |
| 660 | |
| 661 | if (batch->num_cliprects) { |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 662 | cliprects = kcalloc(batch->num_cliprects, |
Daniel Vetter | b14c567 | 2013-09-19 12:18:32 +0200 | [diff] [blame] | 663 | sizeof(*cliprects), |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 664 | GFP_KERNEL); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 665 | if (cliprects == NULL) |
| 666 | return -ENOMEM; |
| 667 | |
| 668 | ret = copy_from_user(cliprects, batch->cliprects, |
| 669 | batch->num_cliprects * |
| 670 | sizeof(struct drm_clip_rect)); |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 671 | if (ret != 0) { |
| 672 | ret = -EFAULT; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 673 | goto fail_free; |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 674 | } |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 675 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 677 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 678 | ret = i915_dispatch_batchbuffer(dev, batch, cliprects); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 679 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 681 | if (sarea_priv) |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 682 | sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 683 | |
| 684 | fail_free: |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 685 | kfree(cliprects); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | return ret; |
| 688 | } |
| 689 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 690 | static int i915_cmdbuffer(struct drm_device *dev, void *data, |
| 691 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 693 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 4d10cc0 | 2014-02-12 23:50:06 +0100 | [diff] [blame] | 694 | struct drm_i915_master_private *master_priv; |
| 695 | drm_i915_sarea_t *sarea_priv; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 696 | drm_i915_cmdbuffer_t *cmdbuf = data; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 697 | struct drm_clip_rect *cliprects = NULL; |
| 698 | void *batch_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | int ret; |
| 700 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 701 | DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n", |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 702 | cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
Daniel Vetter | cd9d4e9 | 2012-04-24 08:29:42 +0200 | [diff] [blame] | 704 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 705 | return -ENODEV; |
| 706 | |
Daniel Vetter | 4d10cc0 | 2014-02-12 23:50:06 +0100 | [diff] [blame] | 707 | master_priv = dev->primary->master->driver_priv; |
| 708 | sarea_priv = (drm_i915_sarea_t *) master_priv->sarea_priv; |
| 709 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 710 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 712 | if (cmdbuf->num_cliprects < 0) |
| 713 | return -EINVAL; |
| 714 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 715 | batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 716 | if (batch_data == NULL) |
| 717 | return -ENOMEM; |
| 718 | |
| 719 | ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz); |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 720 | if (ret != 0) { |
| 721 | ret = -EFAULT; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 722 | goto fail_batch_free; |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 723 | } |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 724 | |
| 725 | if (cmdbuf->num_cliprects) { |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 726 | cliprects = kcalloc(cmdbuf->num_cliprects, |
Daniel Vetter | b14c567 | 2013-09-19 12:18:32 +0200 | [diff] [blame] | 727 | sizeof(*cliprects), GFP_KERNEL); |
Owain Ainsworth | a40e8d3 | 2010-02-09 14:25:55 +0000 | [diff] [blame] | 728 | if (cliprects == NULL) { |
| 729 | ret = -ENOMEM; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 730 | goto fail_batch_free; |
Owain Ainsworth | a40e8d3 | 2010-02-09 14:25:55 +0000 | [diff] [blame] | 731 | } |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 732 | |
| 733 | ret = copy_from_user(cliprects, cmdbuf->cliprects, |
| 734 | cmdbuf->num_cliprects * |
| 735 | sizeof(struct drm_clip_rect)); |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 736 | if (ret != 0) { |
| 737 | ret = -EFAULT; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 738 | goto fail_clip_free; |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 739 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | } |
| 741 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 742 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 743 | ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 744 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | if (ret) { |
| 746 | DRM_ERROR("i915_dispatch_cmdbuffer failed\n"); |
Chris Wright | 355d7f3 | 2009-04-17 01:18:55 +0000 | [diff] [blame] | 747 | goto fail_clip_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | } |
| 749 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 750 | if (sarea_priv) |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 751 | sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 752 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 753 | fail_clip_free: |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 754 | kfree(cliprects); |
Chris Wright | 355d7f3 | 2009-04-17 01:18:55 +0000 | [diff] [blame] | 755 | fail_batch_free: |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 756 | kfree(batch_data); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 757 | |
| 758 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | } |
| 760 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 761 | static int i915_emit_irq(struct drm_device *dev) |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 762 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 763 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 764 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
| 765 | |
| 766 | i915_kernel_lost_context(dev); |
| 767 | |
| 768 | DRM_DEBUG_DRIVER("\n"); |
| 769 | |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 770 | dev_priv->dri1.counter++; |
| 771 | if (dev_priv->dri1.counter > 0x7FFFFFFFUL) |
| 772 | dev_priv->dri1.counter = 1; |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 773 | if (master_priv->sarea_priv) |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 774 | master_priv->sarea_priv->last_enqueue = dev_priv->dri1.counter; |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 775 | |
| 776 | if (BEGIN_LP_RING(4) == 0) { |
| 777 | OUT_RING(MI_STORE_DWORD_INDEX); |
| 778 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 779 | OUT_RING(dev_priv->dri1.counter); |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 780 | OUT_RING(MI_USER_INTERRUPT); |
| 781 | ADVANCE_LP_RING(); |
| 782 | } |
| 783 | |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 784 | return dev_priv->dri1.counter; |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 785 | } |
| 786 | |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 787 | static int i915_wait_irq(struct drm_device *dev, int irq_nr) |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 788 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 789 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 790 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
| 791 | int ret = 0; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 792 | struct intel_engine_cs *ring = LP_RING(dev_priv); |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 793 | |
| 794 | DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr, |
| 795 | READ_BREADCRUMB(dev_priv)); |
| 796 | |
| 797 | if (READ_BREADCRUMB(dev_priv) >= irq_nr) { |
| 798 | if (master_priv->sarea_priv) |
| 799 | master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
| 800 | return 0; |
| 801 | } |
| 802 | |
| 803 | if (master_priv->sarea_priv) |
| 804 | master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT; |
| 805 | |
| 806 | if (ring->irq_get(ring)) { |
Daniel Vetter | bfd8303 | 2013-12-11 11:34:41 +0100 | [diff] [blame] | 807 | DRM_WAIT_ON(ret, ring->irq_queue, 3 * HZ, |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 808 | READ_BREADCRUMB(dev_priv) >= irq_nr); |
| 809 | ring->irq_put(ring); |
| 810 | } else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000)) |
| 811 | ret = -EBUSY; |
| 812 | |
| 813 | if (ret == -EBUSY) { |
| 814 | DRM_ERROR("EBUSY -- rec: %d emitted: %d\n", |
Daniel Vetter | 231f42a | 2012-11-02 19:55:05 +0100 | [diff] [blame] | 815 | READ_BREADCRUMB(dev_priv), (int)dev_priv->dri1.counter); |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | return ret; |
| 819 | } |
| 820 | |
| 821 | /* Needs the lock as it touches the ring. |
| 822 | */ |
| 823 | static int i915_irq_emit(struct drm_device *dev, void *data, |
| 824 | struct drm_file *file_priv) |
| 825 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 826 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 827 | drm_i915_irq_emit_t *emit = data; |
| 828 | int result; |
| 829 | |
| 830 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 831 | return -ENODEV; |
| 832 | |
Oscar Mateo | ee1b1e5 | 2014-05-22 14:13:35 +0100 | [diff] [blame] | 833 | if (!dev_priv || !LP_RING(dev_priv)->buffer->virtual_start) { |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 834 | DRM_ERROR("called with no initialization\n"); |
| 835 | return -EINVAL; |
| 836 | } |
| 837 | |
| 838 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
| 839 | |
| 840 | mutex_lock(&dev->struct_mutex); |
| 841 | result = i915_emit_irq(dev); |
| 842 | mutex_unlock(&dev->struct_mutex); |
| 843 | |
Daniel Vetter | 1d6ac18 | 2013-12-11 11:34:44 +0100 | [diff] [blame] | 844 | if (copy_to_user(emit->irq_seq, &result, sizeof(int))) { |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 845 | DRM_ERROR("copy_to_user\n"); |
| 846 | return -EFAULT; |
| 847 | } |
| 848 | |
| 849 | return 0; |
| 850 | } |
| 851 | |
| 852 | /* Doesn't need the hardware lock. |
| 853 | */ |
| 854 | static int i915_irq_wait(struct drm_device *dev, void *data, |
| 855 | struct drm_file *file_priv) |
| 856 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 857 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9488867 | 2012-04-26 23:28:08 +0200 | [diff] [blame] | 858 | drm_i915_irq_wait_t *irqwait = data; |
| 859 | |
| 860 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 861 | return -ENODEV; |
| 862 | |
| 863 | if (!dev_priv) { |
| 864 | DRM_ERROR("called with no initialization\n"); |
| 865 | return -EINVAL; |
| 866 | } |
| 867 | |
| 868 | return i915_wait_irq(dev, irqwait->irq_seq); |
| 869 | } |
| 870 | |
Daniel Vetter | d1c1edb | 2012-04-26 23:28:01 +0200 | [diff] [blame] | 871 | static int i915_vblank_pipe_get(struct drm_device *dev, void *data, |
| 872 | struct drm_file *file_priv) |
| 873 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 874 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | d1c1edb | 2012-04-26 23:28:01 +0200 | [diff] [blame] | 875 | drm_i915_vblank_pipe_t *pipe = data; |
| 876 | |
| 877 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 878 | return -ENODEV; |
| 879 | |
| 880 | if (!dev_priv) { |
| 881 | DRM_ERROR("called with no initialization\n"); |
| 882 | return -EINVAL; |
| 883 | } |
| 884 | |
| 885 | pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B; |
| 886 | |
| 887 | return 0; |
| 888 | } |
| 889 | |
| 890 | /** |
| 891 | * Schedule buffer swap at given vertical blank. |
| 892 | */ |
| 893 | static int i915_vblank_swap(struct drm_device *dev, void *data, |
| 894 | struct drm_file *file_priv) |
| 895 | { |
| 896 | /* The delayed swap mechanism was fundamentally racy, and has been |
| 897 | * removed. The model was that the client requested a delayed flip/swap |
| 898 | * from the kernel, then waited for vblank before continuing to perform |
| 899 | * rendering. The problem was that the kernel might wake the client |
| 900 | * up before it dispatched the vblank swap (since the lock has to be |
| 901 | * held while touching the ringbuffer), in which case the client would |
| 902 | * clear and start the next frame before the swap occurred, and |
| 903 | * flicker would occur in addition to likely missing the vblank. |
| 904 | * |
| 905 | * In the absence of this ioctl, userland falls back to a correct path |
| 906 | * of waiting for a vblank, then dispatching the swap on its own. |
| 907 | * Context switching to userland and back is plenty fast enough for |
| 908 | * meeting the requirements of vblank swapping. |
| 909 | */ |
| 910 | return -EINVAL; |
| 911 | } |
| 912 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 913 | static int i915_flip_bufs(struct drm_device *dev, void *data, |
| 914 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | { |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 916 | int ret; |
| 917 | |
Daniel Vetter | cd9d4e9 | 2012-04-24 08:29:42 +0200 | [diff] [blame] | 918 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 919 | return -ENODEV; |
| 920 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 921 | DRM_DEBUG_DRIVER("%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 923 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 925 | mutex_lock(&dev->struct_mutex); |
| 926 | ret = i915_dispatch_flip(dev); |
| 927 | mutex_unlock(&dev->struct_mutex); |
| 928 | |
| 929 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | } |
| 931 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 932 | static int i915_getparam(struct drm_device *dev, void *data, |
| 933 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 935 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 936 | drm_i915_getparam_t *param = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | int value; |
| 938 | |
| 939 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 940 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 941 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | } |
| 943 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 944 | switch (param->param) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | case I915_PARAM_IRQ_ACTIVE: |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 946 | value = dev->pdev->irq ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | break; |
| 948 | case I915_PARAM_ALLOW_BATCHBUFFER: |
Daniel Vetter | 8781342 | 2012-05-02 11:49:32 +0200 | [diff] [blame] | 949 | value = dev_priv->dri1.allow_batchbuffer ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | break; |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 951 | case I915_PARAM_LAST_DISPATCH: |
| 952 | value = READ_BREADCRUMB(dev_priv); |
| 953 | break; |
Kristian Høgsberg | ed4c9c4 | 2008-08-20 11:08:52 -0400 | [diff] [blame] | 954 | case I915_PARAM_CHIPSET_ID: |
Ville Syrjälä | ffbab09b | 2013-10-04 14:53:40 +0300 | [diff] [blame] | 955 | value = dev->pdev->device; |
Kristian Høgsberg | ed4c9c4 | 2008-08-20 11:08:52 -0400 | [diff] [blame] | 956 | break; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 957 | case I915_PARAM_HAS_GEM: |
Daniel Vetter | 2e895b1 | 2012-04-23 16:50:51 +0200 | [diff] [blame] | 958 | value = 1; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 959 | break; |
Jesse Barnes | 0f973f2 | 2009-01-26 17:10:45 -0800 | [diff] [blame] | 960 | case I915_PARAM_NUM_FENCES_AVAIL: |
| 961 | value = dev_priv->num_fence_regs - dev_priv->fence_reg_start; |
| 962 | break; |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 963 | case I915_PARAM_HAS_OVERLAY: |
| 964 | value = dev_priv->overlay ? 1 : 0; |
| 965 | break; |
Jesse Barnes | e9560f7 | 2009-11-19 10:49:07 -0800 | [diff] [blame] | 966 | case I915_PARAM_HAS_PAGEFLIPPING: |
| 967 | value = 1; |
| 968 | break; |
Jesse Barnes | 76446ca | 2009-12-17 22:05:42 -0500 | [diff] [blame] | 969 | case I915_PARAM_HAS_EXECBUF2: |
| 970 | /* depends on GEM */ |
Daniel Vetter | 2e895b1 | 2012-04-23 16:50:51 +0200 | [diff] [blame] | 971 | value = 1; |
Jesse Barnes | 76446ca | 2009-12-17 22:05:42 -0500 | [diff] [blame] | 972 | break; |
Zou Nan hai | e3a815f | 2010-05-31 13:58:47 +0800 | [diff] [blame] | 973 | case I915_PARAM_HAS_BSD: |
Chris Wilson | edc912f | 2012-05-11 14:29:32 +0100 | [diff] [blame] | 974 | value = intel_ring_initialized(&dev_priv->ring[VCS]); |
Zou Nan hai | e3a815f | 2010-05-31 13:58:47 +0800 | [diff] [blame] | 975 | break; |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 976 | case I915_PARAM_HAS_BLT: |
Chris Wilson | edc912f | 2012-05-11 14:29:32 +0100 | [diff] [blame] | 977 | value = intel_ring_initialized(&dev_priv->ring[BCS]); |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 978 | break; |
Xiang, Haihao | a1f2cc7 | 2013-05-28 19:22:34 -0700 | [diff] [blame] | 979 | case I915_PARAM_HAS_VEBOX: |
| 980 | value = intel_ring_initialized(&dev_priv->ring[VECS]); |
| 981 | break; |
Chris Wilson | a00b10c | 2010-09-24 21:15:47 +0100 | [diff] [blame] | 982 | case I915_PARAM_HAS_RELAXED_FENCING: |
| 983 | value = 1; |
| 984 | break; |
Daniel Vetter | bbf0c6b | 2010-12-05 11:30:40 +0100 | [diff] [blame] | 985 | case I915_PARAM_HAS_COHERENT_RINGS: |
| 986 | value = 1; |
| 987 | break; |
Chris Wilson | 72bfa19 | 2010-12-19 11:42:05 +0000 | [diff] [blame] | 988 | case I915_PARAM_HAS_EXEC_CONSTANTS: |
| 989 | value = INTEL_INFO(dev)->gen >= 4; |
| 990 | break; |
Chris Wilson | 271d81b | 2011-03-01 15:24:41 +0000 | [diff] [blame] | 991 | case I915_PARAM_HAS_RELAXED_DELTA: |
| 992 | value = 1; |
| 993 | break; |
Eric Anholt | ae662d3 | 2012-01-03 09:23:29 -0800 | [diff] [blame] | 994 | case I915_PARAM_HAS_GEN7_SOL_RESET: |
| 995 | value = 1; |
| 996 | break; |
Eugeni Dodonov | 3d29b84 | 2012-01-17 14:43:53 -0200 | [diff] [blame] | 997 | case I915_PARAM_HAS_LLC: |
| 998 | value = HAS_LLC(dev); |
| 999 | break; |
Chris Wilson | 651d794 | 2013-08-08 14:41:10 +0100 | [diff] [blame] | 1000 | case I915_PARAM_HAS_WT: |
| 1001 | value = HAS_WT(dev); |
| 1002 | break; |
Daniel Vetter | 777ee96 | 2012-02-15 23:50:25 +0100 | [diff] [blame] | 1003 | case I915_PARAM_HAS_ALIASING_PPGTT: |
Daniel Vetter | 896ab1a | 2014-08-06 15:04:51 +0200 | [diff] [blame] | 1004 | value = USES_PPGTT(dev); |
Daniel Vetter | 777ee96 | 2012-02-15 23:50:25 +0100 | [diff] [blame] | 1005 | break; |
Ben Widawsky | 172cf15 | 2012-06-05 15:24:25 -0700 | [diff] [blame] | 1006 | case I915_PARAM_HAS_WAIT_TIMEOUT: |
| 1007 | value = 1; |
| 1008 | break; |
Chris Wilson | 2fedbff | 2012-08-08 10:23:22 +0100 | [diff] [blame] | 1009 | case I915_PARAM_HAS_SEMAPHORES: |
| 1010 | value = i915_semaphore_is_enabled(dev); |
| 1011 | break; |
Dave Airlie | ec6f1bb | 2012-08-16 10:15:34 +1000 | [diff] [blame] | 1012 | case I915_PARAM_HAS_PRIME_VMAP_FLUSH: |
| 1013 | value = 1; |
| 1014 | break; |
Chris Wilson | d7d4eed | 2012-10-17 12:09:54 +0100 | [diff] [blame] | 1015 | case I915_PARAM_HAS_SECURE_BATCHES: |
| 1016 | value = capable(CAP_SYS_ADMIN); |
| 1017 | break; |
Daniel Vetter | b45305f | 2012-12-17 16:21:27 +0100 | [diff] [blame] | 1018 | case I915_PARAM_HAS_PINNED_BATCHES: |
| 1019 | value = 1; |
| 1020 | break; |
Daniel Vetter | ed5982e | 2013-01-17 22:23:36 +0100 | [diff] [blame] | 1021 | case I915_PARAM_HAS_EXEC_NO_RELOC: |
| 1022 | value = 1; |
| 1023 | break; |
Chris Wilson | eef90cc | 2013-01-08 10:53:17 +0000 | [diff] [blame] | 1024 | case I915_PARAM_HAS_EXEC_HANDLE_LUT: |
| 1025 | value = 1; |
| 1026 | break; |
Brad Volkin | d728c8e | 2014-02-18 10:15:56 -0800 | [diff] [blame] | 1027 | case I915_PARAM_CMD_PARSER_VERSION: |
| 1028 | value = i915_cmd_parser_get_version(); |
| 1029 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | default: |
Ben Widawsky | e29c32d | 2013-05-31 11:28:45 -0700 | [diff] [blame] | 1031 | DRM_DEBUG("Unknown parameter %d\n", param->param); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1032 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | } |
| 1034 | |
Daniel Vetter | 1d6ac18 | 2013-12-11 11:34:44 +0100 | [diff] [blame] | 1035 | if (copy_to_user(param->value, &value, sizeof(int))) { |
| 1036 | DRM_ERROR("copy_to_user failed\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1037 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | } |
| 1039 | |
| 1040 | return 0; |
| 1041 | } |
| 1042 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1043 | static int i915_setparam(struct drm_device *dev, void *data, |
| 1044 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 1046 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1047 | drm_i915_setparam_t *param = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
| 1049 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1050 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1051 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | } |
| 1053 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1054 | switch (param->param) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | case I915_SETPARAM_USE_MI_BATCHBUFFER_START: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | break; |
| 1057 | case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | break; |
| 1059 | case I915_SETPARAM_ALLOW_BATCHBUFFER: |
Daniel Vetter | 8781342 | 2012-05-02 11:49:32 +0200 | [diff] [blame] | 1060 | dev_priv->dri1.allow_batchbuffer = param->value ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | break; |
Jesse Barnes | 0f973f2 | 2009-01-26 17:10:45 -0800 | [diff] [blame] | 1062 | case I915_SETPARAM_NUM_USED_FENCES: |
| 1063 | if (param->value > dev_priv->num_fence_regs || |
| 1064 | param->value < 0) |
| 1065 | return -EINVAL; |
| 1066 | /* Userspace can use first N regs */ |
| 1067 | dev_priv->fence_reg_start = param->value; |
| 1068 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | default: |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 1070 | DRM_DEBUG_DRIVER("unknown parameter %d\n", |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 1071 | param->param); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1072 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
| 1075 | return 0; |
| 1076 | } |
| 1077 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1078 | static int i915_set_status_page(struct drm_device *dev, void *data, |
| 1079 | struct drm_file *file_priv) |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1080 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 1081 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1082 | drm_i915_hws_addr_t *hws = data; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 1083 | struct intel_engine_cs *ring; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1084 | |
Daniel Vetter | cd9d4e9 | 2012-04-24 08:29:42 +0200 | [diff] [blame] | 1085 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 1086 | return -ENODEV; |
| 1087 | |
Zhenyu Wang | b39d50e | 2008-02-19 20:59:09 +1000 | [diff] [blame] | 1088 | if (!I915_NEED_GFX_HWS(dev)) |
| 1089 | return -EINVAL; |
| 1090 | |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1091 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1092 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1093 | return -EINVAL; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1094 | } |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1095 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1096 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 1097 | WARN(1, "tried to set status page when mode setting active\n"); |
| 1098 | return 0; |
| 1099 | } |
| 1100 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 1101 | DRM_DEBUG_DRIVER("set status page addr 0x%08x\n", (u32)hws->addr); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1102 | |
Mika Kuoppala | 4f1ba0f | 2012-11-12 14:20:19 +0200 | [diff] [blame] | 1103 | ring = LP_RING(dev_priv); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1104 | ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12); |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1105 | |
Daniel Vetter | dd2757f | 2012-06-07 15:55:57 +0200 | [diff] [blame] | 1106 | dev_priv->dri1.gfx_hws_cpu_addr = |
Ben Widawsky | 5d4545a | 2013-01-17 12:45:15 -0800 | [diff] [blame] | 1107 | ioremap_wc(dev_priv->gtt.mappable_base + hws->addr, 4096); |
Daniel Vetter | 316d388 | 2012-04-26 23:28:15 +0200 | [diff] [blame] | 1108 | if (dev_priv->dri1.gfx_hws_cpu_addr == NULL) { |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1109 | i915_dma_cleanup(dev); |
Eric Anholt | e20f9c6 | 2010-05-26 14:51:06 -0700 | [diff] [blame] | 1110 | ring->status_page.gfx_addr = 0; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1111 | DRM_ERROR("can not ioremap virtual address for" |
| 1112 | " G33 hw status page\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1113 | return -ENOMEM; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1114 | } |
Daniel Vetter | 316d388 | 2012-04-26 23:28:15 +0200 | [diff] [blame] | 1115 | |
| 1116 | memset_io(dev_priv->dri1.gfx_hws_cpu_addr, 0, PAGE_SIZE); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1117 | I915_WRITE(HWS_PGA, ring->status_page.gfx_addr); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1118 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 1119 | DRM_DEBUG_DRIVER("load hws HWS_PGA with gfx mem 0x%x\n", |
Eric Anholt | e20f9c6 | 2010-05-26 14:51:06 -0700 | [diff] [blame] | 1120 | ring->status_page.gfx_addr); |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 1121 | DRM_DEBUG_DRIVER("load hws at %p\n", |
Eric Anholt | e20f9c6 | 2010-05-26 14:51:06 -0700 | [diff] [blame] | 1122 | ring->status_page.page_addr); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 1123 | return 0; |
| 1124 | } |
| 1125 | |
Dave Airlie | ec2a4c3 | 2009-08-04 11:43:41 +1000 | [diff] [blame] | 1126 | static int i915_get_bridge_dev(struct drm_device *dev) |
| 1127 | { |
| 1128 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1129 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1130 | dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0)); |
Dave Airlie | ec2a4c3 | 2009-08-04 11:43:41 +1000 | [diff] [blame] | 1131 | if (!dev_priv->bridge_dev) { |
| 1132 | DRM_ERROR("bridge device not found\n"); |
| 1133 | return -1; |
| 1134 | } |
| 1135 | return 0; |
| 1136 | } |
| 1137 | |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1138 | #define MCHBAR_I915 0x44 |
| 1139 | #define MCHBAR_I965 0x48 |
| 1140 | #define MCHBAR_SIZE (4*4096) |
| 1141 | |
| 1142 | #define DEVEN_REG 0x54 |
| 1143 | #define DEVEN_MCHBAR_EN (1 << 28) |
| 1144 | |
| 1145 | /* Allocate space for the MCH regs if needed, return nonzero on error */ |
| 1146 | static int |
| 1147 | intel_alloc_mchbar_resource(struct drm_device *dev) |
| 1148 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 1149 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1150 | int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1151 | u32 temp_lo, temp_hi = 0; |
| 1152 | u64 mchbar_addr; |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 1153 | int ret; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1154 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1155 | if (INTEL_INFO(dev)->gen >= 4) |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1156 | pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi); |
| 1157 | pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo); |
| 1158 | mchbar_addr = ((u64)temp_hi << 32) | temp_lo; |
| 1159 | |
| 1160 | /* If ACPI doesn't have it, assume we need to allocate it ourselves */ |
| 1161 | #ifdef CONFIG_PNP |
| 1162 | if (mchbar_addr && |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 1163 | pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE)) |
| 1164 | return 0; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1165 | #endif |
| 1166 | |
| 1167 | /* Get some space for it */ |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 1168 | dev_priv->mch_res.name = "i915 MCHBAR"; |
| 1169 | dev_priv->mch_res.flags = IORESOURCE_MEM; |
| 1170 | ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus, |
| 1171 | &dev_priv->mch_res, |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1172 | MCHBAR_SIZE, MCHBAR_SIZE, |
| 1173 | PCIBIOS_MIN_MEM, |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 1174 | 0, pcibios_align_resource, |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1175 | dev_priv->bridge_dev); |
| 1176 | if (ret) { |
| 1177 | DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret); |
| 1178 | dev_priv->mch_res.start = 0; |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 1179 | return ret; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1180 | } |
| 1181 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1182 | if (INTEL_INFO(dev)->gen >= 4) |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1183 | pci_write_config_dword(dev_priv->bridge_dev, reg + 4, |
| 1184 | upper_32_bits(dev_priv->mch_res.start)); |
| 1185 | |
| 1186 | pci_write_config_dword(dev_priv->bridge_dev, reg, |
| 1187 | lower_32_bits(dev_priv->mch_res.start)); |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 1188 | return 0; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1189 | } |
| 1190 | |
| 1191 | /* Setup MCHBAR if possible, return true if we should disable it again */ |
| 1192 | static void |
| 1193 | intel_setup_mchbar(struct drm_device *dev) |
| 1194 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 1195 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1196 | int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1197 | u32 temp; |
| 1198 | bool enabled; |
| 1199 | |
Jesse Barnes | 11ea8b7 | 2014-03-03 14:27:57 -0800 | [diff] [blame] | 1200 | if (IS_VALLEYVIEW(dev)) |
| 1201 | return; |
| 1202 | |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1203 | dev_priv->mchbar_need_disable = false; |
| 1204 | |
| 1205 | if (IS_I915G(dev) || IS_I915GM(dev)) { |
| 1206 | pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp); |
| 1207 | enabled = !!(temp & DEVEN_MCHBAR_EN); |
| 1208 | } else { |
| 1209 | pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp); |
| 1210 | enabled = temp & 1; |
| 1211 | } |
| 1212 | |
| 1213 | /* If it's already enabled, don't have to do anything */ |
| 1214 | if (enabled) |
| 1215 | return; |
| 1216 | |
| 1217 | if (intel_alloc_mchbar_resource(dev)) |
| 1218 | return; |
| 1219 | |
| 1220 | dev_priv->mchbar_need_disable = true; |
| 1221 | |
| 1222 | /* Space is allocated or reserved, so enable it. */ |
| 1223 | if (IS_I915G(dev) || IS_I915GM(dev)) { |
| 1224 | pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, |
| 1225 | temp | DEVEN_MCHBAR_EN); |
| 1226 | } else { |
| 1227 | pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp); |
| 1228 | pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1); |
| 1229 | } |
| 1230 | } |
| 1231 | |
| 1232 | static void |
| 1233 | intel_teardown_mchbar(struct drm_device *dev) |
| 1234 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 1235 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1236 | int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1237 | u32 temp; |
| 1238 | |
| 1239 | if (dev_priv->mchbar_need_disable) { |
| 1240 | if (IS_I915G(dev) || IS_I915GM(dev)) { |
| 1241 | pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp); |
| 1242 | temp &= ~DEVEN_MCHBAR_EN; |
| 1243 | pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp); |
| 1244 | } else { |
| 1245 | pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp); |
| 1246 | temp &= ~1; |
| 1247 | pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp); |
| 1248 | } |
| 1249 | } |
| 1250 | |
| 1251 | if (dev_priv->mch_res.start) |
| 1252 | release_resource(&dev_priv->mch_res); |
| 1253 | } |
| 1254 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 1255 | /* true = enable decode, false = disable decoder */ |
| 1256 | static unsigned int i915_vga_set_decode(void *cookie, bool state) |
| 1257 | { |
| 1258 | struct drm_device *dev = cookie; |
| 1259 | |
| 1260 | intel_modeset_vga_set_state(dev, state); |
| 1261 | if (state) |
| 1262 | return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | |
| 1263 | VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; |
| 1264 | else |
| 1265 | return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; |
| 1266 | } |
| 1267 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1268 | static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state) |
| 1269 | { |
| 1270 | struct drm_device *dev = pci_get_drvdata(pdev); |
| 1271 | pm_message_t pmm = { .event = PM_EVENT_SUSPEND }; |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 1272 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1273 | if (state == VGA_SWITCHEROO_ON) { |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1274 | pr_info("switched on\n"); |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 1275 | dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1276 | /* i915 resume handler doesn't set to D0 */ |
| 1277 | pci_set_power_state(dev->pdev, PCI_D0); |
| 1278 | i915_resume(dev); |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 1279 | dev->switch_power_state = DRM_SWITCH_POWER_ON; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1280 | } else { |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 1281 | pr_err("switched off\n"); |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 1282 | dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1283 | i915_suspend(dev, pmm); |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 1284 | dev->switch_power_state = DRM_SWITCH_POWER_OFF; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1285 | } |
| 1286 | } |
| 1287 | |
| 1288 | static bool i915_switcheroo_can_switch(struct pci_dev *pdev) |
| 1289 | { |
| 1290 | struct drm_device *dev = pci_get_drvdata(pdev); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1291 | |
Daniel Vetter | fc8fd40 | 2013-11-03 20:46:34 +0100 | [diff] [blame] | 1292 | /* |
| 1293 | * FIXME: open_count is protected by drm_global_mutex but that would lead to |
| 1294 | * locking inversion with the driver load path. And the access here is |
| 1295 | * completely racy anyway. So don't bother with locking for now. |
| 1296 | */ |
| 1297 | return dev->open_count == 0; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1298 | } |
| 1299 | |
Takashi Iwai | 26ec685 | 2012-05-11 07:51:17 +0200 | [diff] [blame] | 1300 | static const struct vga_switcheroo_client_ops i915_switcheroo_ops = { |
| 1301 | .set_gpu_state = i915_switcheroo_set_state, |
| 1302 | .reprobe = NULL, |
| 1303 | .can_switch = i915_switcheroo_can_switch, |
| 1304 | }; |
| 1305 | |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 1306 | static int i915_load_modeset_init(struct drm_device *dev) |
| 1307 | { |
| 1308 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1309 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1310 | |
Bryan Freed | 6d139a8 | 2010-10-14 09:14:51 +0100 | [diff] [blame] | 1311 | ret = intel_parse_bios(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1312 | if (ret) |
| 1313 | DRM_INFO("failed to find VBIOS tables\n"); |
| 1314 | |
Chris Wilson | 934f992 | 2011-01-20 13:09:12 +0000 | [diff] [blame] | 1315 | /* If we have > 1 VGA cards, then we need to arbitrate access |
| 1316 | * to the common VGA resources. |
| 1317 | * |
| 1318 | * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA), |
| 1319 | * then we do not take part in VGA arbitration and the |
| 1320 | * vga_client_register() fails with -ENODEV. |
| 1321 | */ |
Dave Airlie | ebff5fa9 | 2013-10-11 15:12:04 +1000 | [diff] [blame] | 1322 | ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode); |
| 1323 | if (ret && ret != -ENODEV) |
| 1324 | goto out; |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 1325 | |
Jesse Barnes | 723bfd7 | 2010-10-07 16:01:13 -0700 | [diff] [blame] | 1326 | intel_register_dsm_handler(); |
| 1327 | |
Dave Airlie | 0d69704 | 2012-09-10 12:28:36 +1000 | [diff] [blame] | 1328 | ret = vga_switcheroo_register_client(dev->pdev, &i915_switcheroo_ops, false); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1329 | if (ret) |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 1330 | goto cleanup_vga_client; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1331 | |
Chris Wilson | 9797fbf | 2012-04-24 15:47:39 +0100 | [diff] [blame] | 1332 | /* Initialise stolen first so that we may reserve preallocated |
| 1333 | * objects for the BIOS to KMS transition. |
| 1334 | */ |
| 1335 | ret = i915_gem_init_stolen(dev); |
| 1336 | if (ret) |
| 1337 | goto cleanup_vga_switcheroo; |
| 1338 | |
Imre Deak | e13192f | 2014-02-18 00:02:15 +0200 | [diff] [blame] | 1339 | intel_power_domains_init_hw(dev_priv); |
| 1340 | |
Daniel Vetter | 4868b45 | 2014-08-27 10:11:34 +0200 | [diff] [blame] | 1341 | /* |
| 1342 | * We enable some interrupt sources in our postinstall hooks, so mark |
| 1343 | * interrupts as enabled _before_ actually enabling them to avoid |
| 1344 | * special cases in our ordering checks. |
| 1345 | */ |
| 1346 | dev_priv->pm._irqs_disabled = false; |
| 1347 | |
Daniel Vetter | bb0f1b5 | 2013-11-03 21:09:27 +0100 | [diff] [blame] | 1348 | ret = drm_irq_install(dev, dev->pdev->irq); |
Daniel Vetter | 52d7ece | 2012-12-01 21:03:22 +0100 | [diff] [blame] | 1349 | if (ret) |
| 1350 | goto cleanup_gem_stolen; |
| 1351 | |
| 1352 | /* Important: The output setup functions called by modeset_init need |
| 1353 | * working irqs for e.g. gmbus and dp aux transfers. */ |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 1354 | intel_modeset_init(dev); |
| 1355 | |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 1356 | ret = i915_gem_init(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1357 | if (ret) |
Imre Deak | 713028b | 2014-04-25 17:28:00 +0300 | [diff] [blame] | 1358 | goto cleanup_irq; |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 1359 | |
Daniel Vetter | 52d7ece | 2012-12-01 21:03:22 +0100 | [diff] [blame] | 1360 | intel_modeset_gem_init(dev); |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 1361 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1362 | /* Always safe in the mode setting case. */ |
| 1363 | /* FIXME: do pre/post-mode set stuff in core KMS code */ |
Ville Syrjälä | ba0bf12 | 2013-10-04 14:53:33 +0300 | [diff] [blame] | 1364 | dev->vblank_disable_allowed = true; |
Imre Deak | 713028b | 2014-04-25 17:28:00 +0300 | [diff] [blame] | 1365 | if (INTEL_INFO(dev)->num_pipes == 0) |
Ben Widawsky | e3c7475 | 2013-04-05 13:12:39 -0700 | [diff] [blame] | 1366 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1367 | |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 1368 | ret = intel_fbdev_init(dev); |
| 1369 | if (ret) |
Daniel Vetter | 52d7ece | 2012-12-01 21:03:22 +0100 | [diff] [blame] | 1370 | goto cleanup_gem; |
| 1371 | |
| 1372 | /* Only enable hotplug handling once the fbdev is fully set up. */ |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 1373 | intel_hpd_init(dev); |
| 1374 | |
| 1375 | /* |
| 1376 | * Some ports require correctly set-up hpd registers for detection to |
| 1377 | * work properly (leading to ghost connected connector status), e.g. VGA |
| 1378 | * on gm45. Hence we can only set up the initial fbdev config after hpd |
| 1379 | * irqs are fully enabled. Now we should scan for the initial config |
| 1380 | * only once hotplug handling is enabled, but due to screwed-up locking |
| 1381 | * around kms/fbdev init we can't protect the fdbev initial config |
| 1382 | * scanning against hotplug events. Hence do this first and ignore the |
| 1383 | * tiny window where we will loose hotplug notifactions. |
| 1384 | */ |
Jesse Barnes | d1d7067 | 2014-05-28 14:39:03 -0700 | [diff] [blame] | 1385 | async_schedule(intel_fbdev_initial_config, dev_priv); |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 1386 | |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 1387 | drm_kms_helper_poll_init(dev); |
Chris Wilson | 87acb0a | 2010-10-19 10:13:00 +0100 | [diff] [blame] | 1388 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1389 | return 0; |
| 1390 | |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 1391 | cleanup_gem: |
| 1392 | mutex_lock(&dev->struct_mutex); |
| 1393 | i915_gem_cleanup_ringbuffer(dev); |
Ben Widawsky | 55d2328 | 2013-05-25 12:26:39 -0700 | [diff] [blame] | 1394 | i915_gem_context_fini(dev); |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 1395 | mutex_unlock(&dev->struct_mutex); |
Imre Deak | 713028b | 2014-04-25 17:28:00 +0300 | [diff] [blame] | 1396 | cleanup_irq: |
Daniel Vetter | 52d7ece | 2012-12-01 21:03:22 +0100 | [diff] [blame] | 1397 | drm_irq_uninstall(dev); |
Chris Wilson | 9797fbf | 2012-04-24 15:47:39 +0100 | [diff] [blame] | 1398 | cleanup_gem_stolen: |
| 1399 | i915_gem_cleanup_stolen(dev); |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 1400 | cleanup_vga_switcheroo: |
| 1401 | vga_switcheroo_unregister_client(dev->pdev); |
| 1402 | cleanup_vga_client: |
| 1403 | vga_client_register(dev->pdev, NULL, NULL, NULL); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1404 | out: |
| 1405 | return ret; |
| 1406 | } |
| 1407 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1408 | int i915_master_create(struct drm_device *dev, struct drm_master *master) |
| 1409 | { |
| 1410 | struct drm_i915_master_private *master_priv; |
| 1411 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 1412 | master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1413 | if (!master_priv) |
| 1414 | return -ENOMEM; |
| 1415 | |
| 1416 | master->driver_priv = master_priv; |
| 1417 | return 0; |
| 1418 | } |
| 1419 | |
| 1420 | void i915_master_destroy(struct drm_device *dev, struct drm_master *master) |
| 1421 | { |
| 1422 | struct drm_i915_master_private *master_priv = master->driver_priv; |
| 1423 | |
| 1424 | if (!master_priv) |
| 1425 | return; |
| 1426 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 1427 | kfree(master_priv); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1428 | |
| 1429 | master->driver_priv = NULL; |
| 1430 | } |
| 1431 | |
Daniel Vetter | 243eaf3 | 2013-12-17 10:00:54 +0100 | [diff] [blame] | 1432 | #if IS_ENABLED(CONFIG_FB) |
Chris Wilson | f96de58 | 2013-12-16 15:57:40 +0000 | [diff] [blame] | 1433 | static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv) |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1434 | { |
| 1435 | struct apertures_struct *ap; |
| 1436 | struct pci_dev *pdev = dev_priv->dev->pdev; |
| 1437 | bool primary; |
Chris Wilson | f96de58 | 2013-12-16 15:57:40 +0000 | [diff] [blame] | 1438 | int ret; |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1439 | |
| 1440 | ap = alloc_apertures(1); |
| 1441 | if (!ap) |
Chris Wilson | f96de58 | 2013-12-16 15:57:40 +0000 | [diff] [blame] | 1442 | return -ENOMEM; |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1443 | |
Ben Widawsky | dabb7a9 | 2013-01-17 12:45:16 -0800 | [diff] [blame] | 1444 | ap->ranges[0].base = dev_priv->gtt.mappable_base; |
Ben Widawsky | f64e292 | 2013-05-25 12:26:36 -0700 | [diff] [blame] | 1445 | ap->ranges[0].size = dev_priv->gtt.mappable_end; |
Ben Widawsky | 93d1879 | 2013-01-17 12:45:17 -0800 | [diff] [blame] | 1446 | |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1447 | primary = |
| 1448 | pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW; |
| 1449 | |
Chris Wilson | f96de58 | 2013-12-16 15:57:40 +0000 | [diff] [blame] | 1450 | ret = remove_conflicting_framebuffers(ap, "inteldrmfb", primary); |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1451 | |
| 1452 | kfree(ap); |
Chris Wilson | f96de58 | 2013-12-16 15:57:40 +0000 | [diff] [blame] | 1453 | |
| 1454 | return ret; |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1455 | } |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1456 | #else |
Chris Wilson | f96de58 | 2013-12-16 15:57:40 +0000 | [diff] [blame] | 1457 | static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv) |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1458 | { |
Chris Wilson | f96de58 | 2013-12-16 15:57:40 +0000 | [diff] [blame] | 1459 | return 0; |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1460 | } |
| 1461 | #endif |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1462 | |
Daniel Vetter | a4de052 | 2014-06-05 16:20:46 +0200 | [diff] [blame] | 1463 | #if !defined(CONFIG_VGA_CONSOLE) |
| 1464 | static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv) |
| 1465 | { |
| 1466 | return 0; |
| 1467 | } |
| 1468 | #elif !defined(CONFIG_DUMMY_CONSOLE) |
| 1469 | static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv) |
| 1470 | { |
| 1471 | return -ENODEV; |
| 1472 | } |
| 1473 | #else |
| 1474 | static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv) |
| 1475 | { |
Daniel Vetter | 1bb9e63 | 2014-07-08 10:02:43 +0200 | [diff] [blame] | 1476 | int ret = 0; |
Daniel Vetter | a4de052 | 2014-06-05 16:20:46 +0200 | [diff] [blame] | 1477 | |
| 1478 | DRM_INFO("Replacing VGA console driver\n"); |
| 1479 | |
| 1480 | console_lock(); |
Daniel Vetter | 1bb9e63 | 2014-07-08 10:02:43 +0200 | [diff] [blame] | 1481 | if (con_is_bound(&vga_con)) |
| 1482 | ret = do_take_over_console(&dummy_con, 0, MAX_NR_CONSOLES - 1, 1); |
Daniel Vetter | a4de052 | 2014-06-05 16:20:46 +0200 | [diff] [blame] | 1483 | if (ret == 0) { |
| 1484 | ret = do_unregister_con_driver(&vga_con); |
| 1485 | |
| 1486 | /* Ignore "already unregistered". */ |
| 1487 | if (ret == -ENODEV) |
| 1488 | ret = 0; |
| 1489 | } |
| 1490 | console_unlock(); |
| 1491 | |
| 1492 | return ret; |
| 1493 | } |
| 1494 | #endif |
| 1495 | |
Daniel Vetter | c96ea64 | 2012-08-08 22:01:51 +0200 | [diff] [blame] | 1496 | static void i915_dump_device_info(struct drm_i915_private *dev_priv) |
| 1497 | { |
Damien Lespiau | 5c969aa | 2014-02-07 19:12:48 +0000 | [diff] [blame] | 1498 | const struct intel_device_info *info = &dev_priv->info; |
Daniel Vetter | c96ea64 | 2012-08-08 22:01:51 +0200 | [diff] [blame] | 1499 | |
Damien Lespiau | e2a5800 | 2013-04-23 16:38:34 +0100 | [diff] [blame] | 1500 | #define PRINT_S(name) "%s" |
| 1501 | #define SEP_EMPTY |
Damien Lespiau | 79fc46d | 2013-04-23 16:37:17 +0100 | [diff] [blame] | 1502 | #define PRINT_FLAG(name) info->name ? #name "," : "" |
| 1503 | #define SEP_COMMA , |
Ville Syrjälä | 19c656a | 2014-06-13 15:39:56 +0300 | [diff] [blame] | 1504 | DRM_DEBUG_DRIVER("i915 device info: gen=%i, pciid=0x%04x rev=0x%02x flags=" |
Damien Lespiau | e2a5800 | 2013-04-23 16:38:34 +0100 | [diff] [blame] | 1505 | DEV_INFO_FOR_EACH_FLAG(PRINT_S, SEP_EMPTY), |
Daniel Vetter | c96ea64 | 2012-08-08 22:01:51 +0200 | [diff] [blame] | 1506 | info->gen, |
| 1507 | dev_priv->dev->pdev->device, |
Ville Syrjälä | 19c656a | 2014-06-13 15:39:56 +0300 | [diff] [blame] | 1508 | dev_priv->dev->pdev->revision, |
Damien Lespiau | 79fc46d | 2013-04-23 16:37:17 +0100 | [diff] [blame] | 1509 | DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_COMMA)); |
Damien Lespiau | e2a5800 | 2013-04-23 16:38:34 +0100 | [diff] [blame] | 1510 | #undef PRINT_S |
| 1511 | #undef SEP_EMPTY |
Damien Lespiau | 79fc46d | 2013-04-23 16:37:17 +0100 | [diff] [blame] | 1512 | #undef PRINT_FLAG |
| 1513 | #undef SEP_COMMA |
Daniel Vetter | c96ea64 | 2012-08-08 22:01:51 +0200 | [diff] [blame] | 1514 | } |
| 1515 | |
Damien Lespiau | 22d3fd46 | 2014-02-07 19:12:49 +0000 | [diff] [blame] | 1516 | /* |
| 1517 | * Determine various intel_device_info fields at runtime. |
| 1518 | * |
| 1519 | * Use it when either: |
| 1520 | * - it's judged too laborious to fill n static structures with the limit |
| 1521 | * when a simple if statement does the job, |
| 1522 | * - run-time checks (eg read fuse/strap registers) are needed. |
Damien Lespiau | 658ac4c | 2014-02-10 17:19:45 +0000 | [diff] [blame] | 1523 | * |
| 1524 | * This function needs to be called: |
| 1525 | * - after the MMIO has been setup as we are reading registers, |
| 1526 | * - after the PCH has been detected, |
| 1527 | * - before the first usage of the fields it can tweak. |
Damien Lespiau | 22d3fd46 | 2014-02-07 19:12:49 +0000 | [diff] [blame] | 1528 | */ |
| 1529 | static void intel_device_info_runtime_init(struct drm_device *dev) |
| 1530 | { |
Damien Lespiau | 658ac4c | 2014-02-10 17:19:45 +0000 | [diff] [blame] | 1531 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 22d3fd46 | 2014-02-07 19:12:49 +0000 | [diff] [blame] | 1532 | struct intel_device_info *info; |
Damien Lespiau | d615a16 | 2014-03-03 17:31:48 +0000 | [diff] [blame] | 1533 | enum pipe pipe; |
Damien Lespiau | 22d3fd46 | 2014-02-07 19:12:49 +0000 | [diff] [blame] | 1534 | |
Damien Lespiau | 658ac4c | 2014-02-10 17:19:45 +0000 | [diff] [blame] | 1535 | info = (struct intel_device_info *)&dev_priv->info; |
Damien Lespiau | 22d3fd46 | 2014-02-07 19:12:49 +0000 | [diff] [blame] | 1536 | |
Damien Lespiau | 22d3fd46 | 2014-02-07 19:12:49 +0000 | [diff] [blame] | 1537 | if (IS_VALLEYVIEW(dev)) |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1538 | for_each_pipe(dev_priv, pipe) |
Damien Lespiau | d615a16 | 2014-03-03 17:31:48 +0000 | [diff] [blame] | 1539 | info->num_sprites[pipe] = 2; |
| 1540 | else |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1541 | for_each_pipe(dev_priv, pipe) |
Damien Lespiau | d615a16 | 2014-03-03 17:31:48 +0000 | [diff] [blame] | 1542 | info->num_sprites[pipe] = 1; |
Damien Lespiau | 658ac4c | 2014-02-10 17:19:45 +0000 | [diff] [blame] | 1543 | |
Damien Lespiau | a0bae57 | 2014-02-10 17:20:55 +0000 | [diff] [blame] | 1544 | if (i915.disable_display) { |
| 1545 | DRM_INFO("Display disabled (module parameter)\n"); |
| 1546 | info->num_pipes = 0; |
| 1547 | } else if (info->num_pipes > 0 && |
| 1548 | (INTEL_INFO(dev)->gen == 7 || INTEL_INFO(dev)->gen == 8) && |
| 1549 | !IS_VALLEYVIEW(dev)) { |
Damien Lespiau | 658ac4c | 2014-02-10 17:19:45 +0000 | [diff] [blame] | 1550 | u32 fuse_strap = I915_READ(FUSE_STRAP); |
| 1551 | u32 sfuse_strap = I915_READ(SFUSE_STRAP); |
| 1552 | |
| 1553 | /* |
| 1554 | * SFUSE_STRAP is supposed to have a bit signalling the display |
| 1555 | * is fused off. Unfortunately it seems that, at least in |
| 1556 | * certain cases, fused off display means that PCH display |
| 1557 | * reads don't land anywhere. In that case, we read 0s. |
| 1558 | * |
| 1559 | * On CPT/PPT, we can detect this case as SFUSE_STRAP_FUSE_LOCK |
| 1560 | * should be set when taking over after the firmware. |
| 1561 | */ |
| 1562 | if (fuse_strap & ILK_INTERNAL_DISPLAY_DISABLE || |
| 1563 | sfuse_strap & SFUSE_STRAP_DISPLAY_DISABLED || |
| 1564 | (dev_priv->pch_type == PCH_CPT && |
| 1565 | !(sfuse_strap & SFUSE_STRAP_FUSE_LOCK))) { |
| 1566 | DRM_INFO("Display fused off, disabling\n"); |
| 1567 | info->num_pipes = 0; |
| 1568 | } |
| 1569 | } |
Damien Lespiau | 22d3fd46 | 2014-02-07 19:12:49 +0000 | [diff] [blame] | 1570 | } |
| 1571 | |
Eric Anholt | 63ee41d | 2010-12-20 18:40:06 -0800 | [diff] [blame] | 1572 | /** |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1573 | * i915_driver_load - setup chip and create an initial config |
| 1574 | * @dev: DRM device |
| 1575 | * @flags: startup flags |
| 1576 | * |
| 1577 | * The driver load routine has to do several things: |
| 1578 | * - drive output discovery via intel_modeset_init() |
| 1579 | * - initialize the memory manager |
| 1580 | * - allocate initial config memory |
| 1581 | * - setup the DRM framebuffer with the allocated memory |
| 1582 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1583 | int i915_driver_load(struct drm_device *dev, unsigned long flags) |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 1584 | { |
Luca Tettamanti | ea059a1 | 2010-04-08 21:41:59 +0200 | [diff] [blame] | 1585 | struct drm_i915_private *dev_priv; |
Damien Lespiau | 5c969aa | 2014-02-07 19:12:48 +0000 | [diff] [blame] | 1586 | struct intel_device_info *info, *device_info; |
Chris Wilson | 934d608 | 2012-09-14 11:57:46 +0100 | [diff] [blame] | 1587 | int ret = 0, mmio_bar, mmio_size; |
Daniel Vetter | 9021f28 | 2012-03-26 09:45:41 +0200 | [diff] [blame] | 1588 | uint32_t aperture_size; |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1589 | |
Daniel Vetter | 26394d9 | 2012-03-26 21:33:18 +0200 | [diff] [blame] | 1590 | info = (struct intel_device_info *) flags; |
| 1591 | |
| 1592 | /* Refuse to load on gen6+ without kms enabled. */ |
Jani Nikula | e147acc | 2013-10-10 15:25:37 +0300 | [diff] [blame] | 1593 | if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 1594 | DRM_INFO("Your hardware requires kernel modesetting (KMS)\n"); |
| 1595 | DRM_INFO("See CONFIG_DRM_I915_KMS, nomodeset, and i915.modeset parameters\n"); |
Daniel Vetter | 26394d9 | 2012-03-26 21:33:18 +0200 | [diff] [blame] | 1596 | return -ENODEV; |
Jani Nikula | e147acc | 2013-10-10 15:25:37 +0300 | [diff] [blame] | 1597 | } |
Daniel Vetter | 26394d9 | 2012-03-26 21:33:18 +0200 | [diff] [blame] | 1598 | |
Daniel Vetter | 24986ee | 2013-12-11 11:34:33 +0100 | [diff] [blame] | 1599 | /* UMS needs agp support. */ |
| 1600 | if (!drm_core_check_feature(dev, DRIVER_MODESET) && !dev->agp) |
| 1601 | return -EINVAL; |
| 1602 | |
Daniel Vetter | b14c567 | 2013-09-19 12:18:32 +0200 | [diff] [blame] | 1603 | dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1604 | if (dev_priv == NULL) |
| 1605 | return -ENOMEM; |
| 1606 | |
Damien Lespiau | 755f68f | 2014-07-10 14:52:43 +0100 | [diff] [blame] | 1607 | dev->dev_private = dev_priv; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1608 | dev_priv->dev = dev; |
Damien Lespiau | 5c969aa | 2014-02-07 19:12:48 +0000 | [diff] [blame] | 1609 | |
Chris Wilson | 87f1f46 | 2014-08-09 19:18:42 +0100 | [diff] [blame] | 1610 | /* Setup the write-once "constant" device info */ |
Damien Lespiau | 5c969aa | 2014-02-07 19:12:48 +0000 | [diff] [blame] | 1611 | device_info = (struct intel_device_info *)&dev_priv->info; |
Chris Wilson | 87f1f46 | 2014-08-09 19:18:42 +0100 | [diff] [blame] | 1612 | memcpy(device_info, info, sizeof(dev_priv->info)); |
| 1613 | device_info->device_id = dev->pdev->device; |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1614 | |
Konstantin Khlebnikov | 7dcd267 | 2013-07-17 10:22:58 +0400 | [diff] [blame] | 1615 | spin_lock_init(&dev_priv->irq_lock); |
| 1616 | spin_lock_init(&dev_priv->gpu_error.lock); |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1617 | spin_lock_init(&dev_priv->backlight_lock); |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1618 | spin_lock_init(&dev_priv->uncore.lock); |
Daniel Vetter | c20e835 | 2013-07-24 22:40:23 +0200 | [diff] [blame] | 1619 | spin_lock_init(&dev_priv->mm.object_stat_lock); |
Sourab Gupta | 84c33a6 | 2014-06-02 16:47:17 +0530 | [diff] [blame] | 1620 | spin_lock_init(&dev_priv->mmio_flip_lock); |
Konstantin Khlebnikov | 7dcd267 | 2013-07-17 10:22:58 +0400 | [diff] [blame] | 1621 | mutex_init(&dev_priv->dpio_lock); |
Konstantin Khlebnikov | 7dcd267 | 2013-07-17 10:22:58 +0400 | [diff] [blame] | 1622 | mutex_init(&dev_priv->modeset_restore_lock); |
| 1623 | |
Daniel Vetter | f742a55 | 2013-12-06 10:17:53 +0100 | [diff] [blame] | 1624 | intel_pm_setup(dev); |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 1625 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1626 | intel_display_crc_init(dev); |
| 1627 | |
Daniel Vetter | c96ea64 | 2012-08-08 22:01:51 +0200 | [diff] [blame] | 1628 | i915_dump_device_info(dev_priv); |
| 1629 | |
Paulo Zanoni | ed1c9e2 | 2013-08-12 14:34:08 -0300 | [diff] [blame] | 1630 | /* Not all pre-production machines fall into this category, only the |
| 1631 | * very first ones. Almost everything should work, except for maybe |
| 1632 | * suspend/resume. And we don't implement workarounds that affect only |
| 1633 | * pre-production machines. */ |
| 1634 | if (IS_HSW_EARLY_SDV(dev)) |
| 1635 | DRM_INFO("This is an early pre-production Haswell machine. " |
| 1636 | "It may not be fully functional.\n"); |
| 1637 | |
Dave Airlie | ec2a4c3 | 2009-08-04 11:43:41 +1000 | [diff] [blame] | 1638 | if (i915_get_bridge_dev(dev)) { |
| 1639 | ret = -EIO; |
| 1640 | goto free_priv; |
| 1641 | } |
| 1642 | |
Ben Widawsky | 1e1bd0f | 2013-04-08 18:43:49 -0700 | [diff] [blame] | 1643 | mmio_bar = IS_GEN2(dev) ? 1 : 0; |
| 1644 | /* Before gen4, the registers and the GTT are behind different BARs. |
| 1645 | * However, from gen4 onwards, the registers and the GTT are shared |
| 1646 | * in the same BAR, so we want to restrict this ioremap from |
| 1647 | * clobbering the GTT which we want ioremap_wc instead. Fortunately, |
| 1648 | * the register BAR remains the same size for all the earlier |
| 1649 | * generations up to Ironlake. |
| 1650 | */ |
| 1651 | if (info->gen < 5) |
| 1652 | mmio_size = 512*1024; |
| 1653 | else |
| 1654 | mmio_size = 2*1024*1024; |
| 1655 | |
| 1656 | dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, mmio_size); |
| 1657 | if (!dev_priv->regs) { |
| 1658 | DRM_ERROR("failed to map registers\n"); |
| 1659 | ret = -EIO; |
| 1660 | goto put_bridge; |
| 1661 | } |
| 1662 | |
Ben Widawsky | c3d685a | 2013-10-08 16:31:03 -0700 | [diff] [blame] | 1663 | /* This must be called before any calls to HAS_PCH_* */ |
| 1664 | intel_detect_pch(dev); |
| 1665 | |
| 1666 | intel_uncore_init(dev); |
| 1667 | |
Ben Widawsky | e76e9ae | 2012-11-04 09:21:27 -0800 | [diff] [blame] | 1668 | ret = i915_gem_gtt_init(dev); |
| 1669 | if (ret) |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1670 | goto out_regs; |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1671 | |
Daniel Vetter | a4de052 | 2014-06-05 16:20:46 +0200 | [diff] [blame] | 1672 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 1673 | ret = i915_kick_out_vgacon(dev_priv); |
| 1674 | if (ret) { |
| 1675 | DRM_ERROR("failed to remove conflicting VGA console\n"); |
| 1676 | goto out_gtt; |
| 1677 | } |
| 1678 | |
Chris Wilson | f96de58 | 2013-12-16 15:57:40 +0000 | [diff] [blame] | 1679 | ret = i915_kick_out_firmware_fb(dev_priv); |
| 1680 | if (ret) { |
| 1681 | DRM_ERROR("failed to remove conflicting framebuffer drivers\n"); |
| 1682 | goto out_gtt; |
| 1683 | } |
Daniel Vetter | a4de052 | 2014-06-05 16:20:46 +0200 | [diff] [blame] | 1684 | } |
Daniel Vetter | e188719 | 2012-06-12 11:28:17 +0200 | [diff] [blame] | 1685 | |
Dave Airlie | 466e69b | 2011-12-19 11:15:29 +0000 | [diff] [blame] | 1686 | pci_set_master(dev->pdev); |
| 1687 | |
Daniel Vetter | 9f82d23 | 2010-08-30 21:25:23 +0200 | [diff] [blame] | 1688 | /* overlay on gen2 is broken and can't address above 1G */ |
| 1689 | if (IS_GEN2(dev)) |
| 1690 | dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30)); |
| 1691 | |
Jan Niehusmann | 6927faf | 2011-03-01 23:24:16 +0100 | [diff] [blame] | 1692 | /* 965GM sometimes incorrectly writes to hardware status page (HWS) |
| 1693 | * using 32bit addressing, overwriting memory if HWS is located |
| 1694 | * above 4GB. |
| 1695 | * |
| 1696 | * The documentation also mentions an issue with undefined |
| 1697 | * behaviour if any general state is accessed within a page above 4GB, |
| 1698 | * which also needs to be handled carefully. |
| 1699 | */ |
| 1700 | if (IS_BROADWATER(dev) || IS_CRESTLINE(dev)) |
| 1701 | dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32)); |
| 1702 | |
Ben Widawsky | 93d1879 | 2013-01-17 12:45:17 -0800 | [diff] [blame] | 1703 | aperture_size = dev_priv->gtt.mappable_end; |
Chris Wilson | 71e9339 | 2010-10-27 18:46:52 +0100 | [diff] [blame] | 1704 | |
Ben Widawsky | 5d4545a | 2013-01-17 12:45:15 -0800 | [diff] [blame] | 1705 | dev_priv->gtt.mappable = |
| 1706 | io_mapping_create_wc(dev_priv->gtt.mappable_base, |
Daniel Vetter | dd2757f | 2012-06-07 15:55:57 +0200 | [diff] [blame] | 1707 | aperture_size); |
Ben Widawsky | 5d4545a | 2013-01-17 12:45:15 -0800 | [diff] [blame] | 1708 | if (dev_priv->gtt.mappable == NULL) { |
Venkatesh Pallipadi | 6644107 | 2009-02-24 17:35:11 -0800 | [diff] [blame] | 1709 | ret = -EIO; |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1710 | goto out_gtt; |
Venkatesh Pallipadi | 6644107 | 2009-02-24 17:35:11 -0800 | [diff] [blame] | 1711 | } |
| 1712 | |
Ben Widawsky | 911bdf0 | 2013-06-27 16:30:23 -0700 | [diff] [blame] | 1713 | dev_priv->gtt.mtrr = arch_phys_wc_add(dev_priv->gtt.mappable_base, |
| 1714 | aperture_size); |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1715 | |
Chris Wilson | e642abb | 2010-09-09 12:46:34 +0100 | [diff] [blame] | 1716 | /* The i915 workqueue is primarily used for batched retirement of |
| 1717 | * requests (and thus managing bo) once the task has been completed |
| 1718 | * by the GPU. i915_gem_retire_requests() is called directly when we |
| 1719 | * need high-priority retirement, such as waiting for an explicit |
| 1720 | * bo. |
| 1721 | * |
| 1722 | * It is also used for periodic low-priority events, such as |
Eric Anholt | df9c204 | 2010-11-18 09:31:12 +0800 | [diff] [blame] | 1723 | * idle-timers and recording error state. |
Chris Wilson | e642abb | 2010-09-09 12:46:34 +0100 | [diff] [blame] | 1724 | * |
| 1725 | * All tasks on the workqueue are expected to acquire the dev mutex |
| 1726 | * so there is no point in running more than one instance of the |
Tejun Heo | 5362186 | 2012-08-22 16:40:57 -0700 | [diff] [blame] | 1727 | * workqueue at any time. Use an ordered one. |
Chris Wilson | e642abb | 2010-09-09 12:46:34 +0100 | [diff] [blame] | 1728 | */ |
Tejun Heo | 5362186 | 2012-08-22 16:40:57 -0700 | [diff] [blame] | 1729 | dev_priv->wq = alloc_ordered_workqueue("i915", 0); |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 1730 | if (dev_priv->wq == NULL) { |
| 1731 | DRM_ERROR("Failed to create our workqueue.\n"); |
| 1732 | ret = -ENOMEM; |
Keith Packard | a7b85d2 | 2011-07-10 13:12:17 -0700 | [diff] [blame] | 1733 | goto out_mtrrfree; |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 1734 | } |
| 1735 | |
Dave Airlie | 0e32b39 | 2014-05-02 14:02:48 +1000 | [diff] [blame] | 1736 | dev_priv->dp_wq = alloc_ordered_workqueue("i915-dp", 0); |
| 1737 | if (dev_priv->dp_wq == NULL) { |
| 1738 | DRM_ERROR("Failed to create our dp workqueue.\n"); |
| 1739 | ret = -ENOMEM; |
| 1740 | goto out_freewq; |
| 1741 | } |
| 1742 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 1743 | intel_irq_init(dev); |
Ben Widawsky | 78511f2 | 2013-10-04 21:22:49 -0700 | [diff] [blame] | 1744 | intel_uncore_sanitize(dev); |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 1745 | |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1746 | /* Try to make sure MCHBAR is enabled before poking at it */ |
| 1747 | intel_setup_mchbar(dev); |
Chris Wilson | f899fc6 | 2010-07-20 15:44:45 -0700 | [diff] [blame] | 1748 | intel_setup_gmbus(dev); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1749 | intel_opregion_setup(dev); |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1750 | |
Bryan Freed | 6d139a8 | 2010-10-14 09:14:51 +0100 | [diff] [blame] | 1751 | intel_setup_bios(dev); |
| 1752 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1753 | i915_gem_load(dev); |
| 1754 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1755 | /* On the 945G/GM, the chipset reports the MSI capability on the |
| 1756 | * integrated graphics even though the support isn't actually there |
| 1757 | * according to the published specs. It doesn't appear to function |
| 1758 | * correctly in testing on 945G. |
| 1759 | * This may be a side effect of MSI having been made available for PEG |
| 1760 | * and the registers being closely associated. |
Keith Packard | d1ed629 | 2008-10-17 00:44:42 -0700 | [diff] [blame] | 1761 | * |
| 1762 | * According to chipset errata, on the 965GM, MSI interrupts may |
Keith Packard | b60678a | 2008-12-08 11:12:28 -0800 | [diff] [blame] | 1763 | * be lost or delayed, but we use them anyways to avoid |
| 1764 | * stuck interrupts on some machines. |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1765 | */ |
Keith Packard | b60678a | 2008-12-08 11:12:28 -0800 | [diff] [blame] | 1766 | if (!IS_I945G(dev) && !IS_I945GM(dev)) |
Eric Anholt | d3e74d0 | 2008-11-03 14:46:17 -0800 | [diff] [blame] | 1767 | pci_enable_msi(dev->pdev); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1768 | |
Damien Lespiau | 22d3fd46 | 2014-02-07 19:12:49 +0000 | [diff] [blame] | 1769 | intel_device_info_runtime_init(dev); |
Jesse Barnes | 7f1f385 | 2013-04-02 11:22:20 -0700 | [diff] [blame] | 1770 | |
Ben Widawsky | e3c7475 | 2013-04-05 13:12:39 -0700 | [diff] [blame] | 1771 | if (INTEL_INFO(dev)->num_pipes) { |
| 1772 | ret = drm_vblank_init(dev, INTEL_INFO(dev)->num_pipes); |
| 1773 | if (ret) |
| 1774 | goto out_gem_unload; |
| 1775 | } |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame] | 1776 | |
Imre Deak | da7e29b | 2014-02-18 00:02:02 +0200 | [diff] [blame] | 1777 | intel_power_domains_init(dev_priv); |
Wang Xingchao | a38911a | 2013-05-30 22:07:11 +0800 | [diff] [blame] | 1778 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1779 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Daniel Vetter | 5398463 | 2010-09-22 23:44:24 +0200 | [diff] [blame] | 1780 | ret = i915_load_modeset_init(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1781 | if (ret < 0) { |
| 1782 | DRM_ERROR("failed to init modeset\n"); |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1783 | goto out_power_well; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1784 | } |
Daniel Vetter | db1b76c | 2013-07-09 16:51:37 +0200 | [diff] [blame] | 1785 | } else { |
| 1786 | /* Start out suspended in ums mode. */ |
| 1787 | dev_priv->ums.mm_suspended = 1; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1788 | } |
| 1789 | |
Ben Widawsky | 0136db58 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 1790 | i915_setup_sysfs(dev); |
| 1791 | |
Ben Widawsky | e3c7475 | 2013-04-05 13:12:39 -0700 | [diff] [blame] | 1792 | if (INTEL_INFO(dev)->num_pipes) { |
| 1793 | /* Must be done after probing outputs */ |
| 1794 | intel_opregion_init(dev); |
Rafael J. Wysocki | 8e5c2b7 | 2013-07-25 21:43:39 +0200 | [diff] [blame] | 1795 | acpi_video_register(); |
Ben Widawsky | e3c7475 | 2013-04-05 13:12:39 -0700 | [diff] [blame] | 1796 | } |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 1797 | |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 1798 | if (IS_GEN5(dev)) |
| 1799 | intel_gpu_ips_init(dev_priv); |
Eric Anholt | 63ee41d | 2010-12-20 18:40:06 -0800 | [diff] [blame] | 1800 | |
Paulo Zanoni | 8a18745 | 2013-12-06 20:32:13 -0200 | [diff] [blame] | 1801 | intel_init_runtime_pm(dev_priv); |
| 1802 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1803 | return 0; |
| 1804 | |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1805 | out_power_well: |
Imre Deak | da7e29b | 2014-02-18 00:02:02 +0200 | [diff] [blame] | 1806 | intel_power_domains_remove(dev_priv); |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1807 | drm_vblank_cleanup(dev); |
Chris Wilson | 56e2ea3 | 2010-11-08 17:10:29 +0000 | [diff] [blame] | 1808 | out_gem_unload: |
Imre Deak | 4bdc729 | 2014-05-20 19:47:20 +0300 | [diff] [blame] | 1809 | WARN_ON(unregister_oom_notifier(&dev_priv->mm.oom_notifier)); |
| 1810 | unregister_shrinker(&dev_priv->mm.shrinker); |
Keith Packard | a7b85d2 | 2011-07-10 13:12:17 -0700 | [diff] [blame] | 1811 | |
Chris Wilson | 56e2ea3 | 2010-11-08 17:10:29 +0000 | [diff] [blame] | 1812 | if (dev->pdev->msi_enabled) |
| 1813 | pci_disable_msi(dev->pdev); |
| 1814 | |
| 1815 | intel_teardown_gmbus(dev); |
| 1816 | intel_teardown_mchbar(dev); |
Stanislaw Gruszka | 22accca | 2014-01-25 10:13:37 +0100 | [diff] [blame] | 1817 | pm_qos_remove_request(&dev_priv->pm_qos); |
Dave Airlie | 0e32b39 | 2014-05-02 14:02:48 +1000 | [diff] [blame] | 1818 | destroy_workqueue(dev_priv->dp_wq); |
| 1819 | out_freewq: |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 1820 | destroy_workqueue(dev_priv->wq); |
Keith Packard | a7b85d2 | 2011-07-10 13:12:17 -0700 | [diff] [blame] | 1821 | out_mtrrfree: |
Ben Widawsky | 911bdf0 | 2013-06-27 16:30:23 -0700 | [diff] [blame] | 1822 | arch_phys_wc_del(dev_priv->gtt.mtrr); |
Ben Widawsky | 5d4545a | 2013-01-17 12:45:15 -0800 | [diff] [blame] | 1823 | io_mapping_free(dev_priv->gtt.mappable); |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1824 | out_gtt: |
Daniel Vetter | 90d0a0e | 2014-08-06 15:04:56 +0200 | [diff] [blame] | 1825 | i915_global_gtt_cleanup(dev); |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1826 | out_regs: |
Ben Widawsky | c3d685a | 2013-10-08 16:31:03 -0700 | [diff] [blame] | 1827 | intel_uncore_fini(dev); |
Chris Wilson | 6dda569 | 2010-10-29 21:02:18 +0100 | [diff] [blame] | 1828 | pci_iounmap(dev->pdev, dev_priv->regs); |
Dave Airlie | ec2a4c3 | 2009-08-04 11:43:41 +1000 | [diff] [blame] | 1829 | put_bridge: |
| 1830 | pci_dev_put(dev_priv->bridge_dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1831 | free_priv: |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1832 | if (dev_priv->slab) |
| 1833 | kmem_cache_destroy(dev_priv->slab); |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 1834 | kfree(dev_priv); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1835 | return ret; |
| 1836 | } |
| 1837 | |
| 1838 | int i915_driver_unload(struct drm_device *dev) |
| 1839 | { |
| 1840 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | c911fc1 | 2010-08-20 21:23:20 +0200 | [diff] [blame] | 1841 | int ret; |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1842 | |
Chris Wilson | ce58c32 | 2013-12-02 11:26:07 -0200 | [diff] [blame] | 1843 | ret = i915_gem_suspend(dev); |
| 1844 | if (ret) { |
| 1845 | DRM_ERROR("failed to idle hardware: %d\n", ret); |
| 1846 | return ret; |
| 1847 | } |
| 1848 | |
Paulo Zanoni | 8a18745 | 2013-12-06 20:32:13 -0200 | [diff] [blame] | 1849 | intel_fini_runtime_pm(dev_priv); |
| 1850 | |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 1851 | intel_gpu_ips_teardown(); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1852 | |
Imre Deak | 1c2256d | 2013-11-25 17:15:34 +0200 | [diff] [blame] | 1853 | /* The i915.ko module is still not prepared to be loaded when |
| 1854 | * the power well is not enabled, so just enable it in case |
| 1855 | * we're going to unload/reload. */ |
Imre Deak | da7e29b | 2014-02-18 00:02:02 +0200 | [diff] [blame] | 1856 | intel_display_set_init_power(dev_priv, true); |
| 1857 | intel_power_domains_remove(dev_priv); |
Wang Xingchao | a38911a | 2013-05-30 22:07:11 +0800 | [diff] [blame] | 1858 | |
Ben Widawsky | 0136db58 | 2012-04-10 21:17:01 -0700 | [diff] [blame] | 1859 | i915_teardown_sysfs(dev); |
| 1860 | |
Imre Deak | 4bdc729 | 2014-05-20 19:47:20 +0300 | [diff] [blame] | 1861 | WARN_ON(unregister_oom_notifier(&dev_priv->mm.oom_notifier)); |
| 1862 | unregister_shrinker(&dev_priv->mm.shrinker); |
Chris Wilson | 17250b7 | 2010-10-28 12:51:39 +0100 | [diff] [blame] | 1863 | |
Ben Widawsky | 5d4545a | 2013-01-17 12:45:15 -0800 | [diff] [blame] | 1864 | io_mapping_free(dev_priv->gtt.mappable); |
Ben Widawsky | 911bdf0 | 2013-06-27 16:30:23 -0700 | [diff] [blame] | 1865 | arch_phys_wc_del(dev_priv->gtt.mtrr); |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1866 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1867 | acpi_video_unregister(); |
| 1868 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1869 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Chris Wilson | 7b4f399 | 2010-10-04 15:33:04 +0100 | [diff] [blame] | 1870 | intel_fbdev_fini(dev); |
Jesse Barnes | 3d8620c | 2010-03-26 11:07:21 -0700 | [diff] [blame] | 1871 | intel_modeset_cleanup(dev); |
| 1872 | |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1873 | /* |
| 1874 | * free the memory space allocated for the child device |
| 1875 | * config parsed from VBT |
| 1876 | */ |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 1877 | if (dev_priv->vbt.child_dev && dev_priv->vbt.child_dev_num) { |
| 1878 | kfree(dev_priv->vbt.child_dev); |
| 1879 | dev_priv->vbt.child_dev = NULL; |
| 1880 | dev_priv->vbt.child_dev_num = 0; |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1881 | } |
Daniel Vetter | 6c0d9350 | 2010-08-20 18:26:46 +0200 | [diff] [blame] | 1882 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1883 | vga_switcheroo_unregister_client(dev->pdev); |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 1884 | vga_client_register(dev->pdev, NULL, NULL, NULL); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1885 | } |
| 1886 | |
Daniel Vetter | a8b4899 | 2010-08-20 21:25:11 +0200 | [diff] [blame] | 1887 | /* Free error state after interrupts are fully disabled. */ |
Daniel Vetter | 99584db | 2012-11-14 17:14:04 +0100 | [diff] [blame] | 1888 | del_timer_sync(&dev_priv->gpu_error.hangcheck_timer); |
| 1889 | cancel_work_sync(&dev_priv->gpu_error.work); |
Daniel Vetter | a8b4899 | 2010-08-20 21:25:11 +0200 | [diff] [blame] | 1890 | i915_destroy_error_state(dev); |
Daniel Vetter | bc0c7f1 | 2010-08-20 18:18:48 +0200 | [diff] [blame] | 1891 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 1892 | if (dev->pdev->msi_enabled) |
| 1893 | pci_disable_msi(dev->pdev); |
| 1894 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1895 | intel_opregion_fini(dev); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 1896 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1897 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 1898 | /* Flush any outstanding unpin_work. */ |
| 1899 | flush_workqueue(dev_priv->wq); |
| 1900 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1901 | mutex_lock(&dev->struct_mutex); |
| 1902 | i915_gem_cleanup_ringbuffer(dev); |
Daniel Vetter | 55a6662 | 2012-06-19 21:55:32 +0200 | [diff] [blame] | 1903 | i915_gem_context_fini(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1904 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 9797fbf | 2012-04-24 15:47:39 +0100 | [diff] [blame] | 1905 | i915_gem_cleanup_stolen(dev); |
Keith Packard | c2873e9 | 2010-10-07 09:20:12 +0100 | [diff] [blame] | 1906 | |
| 1907 | if (!I915_NEED_GFX_HWS(dev)) |
| 1908 | i915_free_hws(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1909 | } |
| 1910 | |
Chris Wilson | cbb47d1 | 2013-09-23 17:33:20 -0300 | [diff] [blame] | 1911 | drm_vblank_cleanup(dev); |
| 1912 | |
Chris Wilson | f899fc6 | 2010-07-20 15:44:45 -0700 | [diff] [blame] | 1913 | intel_teardown_gmbus(dev); |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1914 | intel_teardown_mchbar(dev); |
| 1915 | |
Dave Airlie | 0e32b39 | 2014-05-02 14:02:48 +1000 | [diff] [blame] | 1916 | destroy_workqueue(dev_priv->dp_wq); |
Daniel Vetter | bc0c7f1 | 2010-08-20 18:18:48 +0200 | [diff] [blame] | 1917 | destroy_workqueue(dev_priv->wq); |
Daniel Vetter | 9ee32fea | 2012-12-01 13:53:48 +0100 | [diff] [blame] | 1918 | pm_qos_remove_request(&dev_priv->pm_qos); |
Daniel Vetter | bc0c7f1 | 2010-08-20 18:18:48 +0200 | [diff] [blame] | 1919 | |
Daniel Vetter | 90d0a0e | 2014-08-06 15:04:56 +0200 | [diff] [blame] | 1920 | i915_global_gtt_cleanup(dev); |
Imre Deak | 6640aab | 2013-05-22 17:47:13 +0300 | [diff] [blame] | 1921 | |
Chris Wilson | aec347a | 2013-08-26 13:46:09 +0100 | [diff] [blame] | 1922 | intel_uncore_fini(dev); |
| 1923 | if (dev_priv->regs != NULL) |
| 1924 | pci_iounmap(dev->pdev, dev_priv->regs); |
| 1925 | |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 1926 | if (dev_priv->slab) |
| 1927 | kmem_cache_destroy(dev_priv->slab); |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 1928 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1929 | pci_dev_put(dev_priv->bridge_dev); |
Daniel Vetter | 2206e6a | 2014-05-13 22:21:59 +0200 | [diff] [blame] | 1930 | kfree(dev_priv); |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 1931 | |
| 1932 | return 0; |
| 1933 | } |
| 1934 | |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 1935 | int i915_driver_open(struct drm_device *dev, struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1936 | { |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 1937 | int ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1938 | |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 1939 | ret = i915_gem_open(dev, file); |
| 1940 | if (ret) |
| 1941 | return ret; |
Ben Widawsky | 254f965 | 2012-06-04 14:42:42 -0700 | [diff] [blame] | 1942 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1943 | return 0; |
| 1944 | } |
| 1945 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1946 | /** |
| 1947 | * i915_driver_lastclose - clean up after all DRM clients have exited |
| 1948 | * @dev: DRM device |
| 1949 | * |
| 1950 | * Take care of cleaning up after all DRM clients have exited. In the |
| 1951 | * mode setting case, we want to restore the kernel's initial mode (just |
| 1952 | * in case the last client left us in a bad state). |
| 1953 | * |
Daniel Vetter | 9021f28 | 2012-03-26 09:45:41 +0200 | [diff] [blame] | 1954 | * Additionally, in the non-mode setting case, we'll tear down the GTT |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1955 | * and DMA structures, since the kernel won't be using them, and clea |
| 1956 | * up any GEM state. |
| 1957 | */ |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 1958 | void i915_driver_lastclose(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | { |
Jani Nikula | 4c8a4be | 2014-03-31 14:27:15 +0300 | [diff] [blame] | 1960 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1961 | |
Daniel Vetter | e8aeaee | 2012-07-21 16:47:09 +0200 | [diff] [blame] | 1962 | /* On gen6+ we refuse to init without kms enabled, but then the drm core |
| 1963 | * goes right around and calls lastclose. Check for this and don't clean |
| 1964 | * up anything. */ |
| 1965 | if (!dev_priv) |
| 1966 | return; |
| 1967 | |
| 1968 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Daniel Vetter | 0632fef | 2013-10-08 17:44:49 +0200 | [diff] [blame] | 1969 | intel_fbdev_restore_mode(dev); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1970 | vga_switcheroo_process_delayed_switch(); |
Dave Airlie | 144a75f | 2008-03-30 07:53:58 +1000 | [diff] [blame] | 1971 | return; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1972 | } |
Dave Airlie | 144a75f | 2008-03-30 07:53:58 +1000 | [diff] [blame] | 1973 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1974 | i915_gem_lastclose(dev); |
| 1975 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1976 | i915_dma_cleanup(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | } |
| 1978 | |
John Harrison | 2885f6a | 2014-06-26 18:23:52 +0100 | [diff] [blame] | 1979 | void i915_driver_preclose(struct drm_device *dev, struct drm_file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | { |
Chris Wilson | 0d1430a | 2013-12-04 14:52:06 +0000 | [diff] [blame] | 1981 | mutex_lock(&dev->struct_mutex); |
John Harrison | 2885f6a | 2014-06-26 18:23:52 +0100 | [diff] [blame] | 1982 | i915_gem_context_close(dev, file); |
| 1983 | i915_gem_release(dev, file); |
Chris Wilson | 0d1430a | 2013-12-04 14:52:06 +0000 | [diff] [blame] | 1984 | mutex_unlock(&dev->struct_mutex); |
Ville Syrjälä | e2fcdaa | 2014-08-06 14:02:51 +0300 | [diff] [blame] | 1985 | |
| 1986 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 1987 | intel_modeset_preclose(dev, file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | } |
| 1989 | |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 1990 | void i915_driver_postclose(struct drm_device *dev, struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1991 | { |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 1992 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1993 | |
Zhao Yakui | a8ebba7 | 2014-04-17 10:37:40 +0800 | [diff] [blame] | 1994 | if (file_priv && file_priv->bsd_ring) |
| 1995 | file_priv->bsd_ring = NULL; |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 1996 | kfree(file_priv); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1997 | } |
| 1998 | |
Rob Clark | baa7094 | 2013-08-02 13:27:49 -0400 | [diff] [blame] | 1999 | const struct drm_ioctl_desc i915_ioctls[] = { |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2000 | DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 2001 | DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH), |
| 2002 | DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH), |
| 2003 | DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH), |
| 2004 | DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH), |
| 2005 | DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH), |
Kristian Høgsberg | 10ba501 | 2013-08-25 18:29:01 +0200 | [diff] [blame] | 2006 | DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH|DRM_RENDER_ALLOW), |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2007 | DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
Daniel Vetter | b2c606f | 2012-01-17 12:50:12 +0100 | [diff] [blame] | 2008 | DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH), |
| 2009 | DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH), |
| 2010 | DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2011 | DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH), |
Daniel Vetter | b2c606f | 2012-01-17 12:50:12 +0100 | [diff] [blame] | 2012 | DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
Daniel Vetter | d1c1edb | 2012-04-26 23:28:01 +0200 | [diff] [blame] | 2013 | DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2014 | DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH), |
| 2015 | DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH), |
| 2016 | DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 2017 | DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED), |
| 2018 | DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED), |
Kristian Høgsberg | 10ba501 | 2013-08-25 18:29:01 +0200 | [diff] [blame] | 2019 | DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW), |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2020 | DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED), |
| 2021 | DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED), |
Kristian Høgsberg | 10ba501 | 2013-08-25 18:29:01 +0200 | [diff] [blame] | 2022 | DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2023 | DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2024 | DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2025 | DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW), |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2026 | DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED), |
| 2027 | DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED), |
Kristian Høgsberg | 10ba501 | 2013-08-25 18:29:01 +0200 | [diff] [blame] | 2028 | DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2029 | DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2030 | DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2031 | DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2032 | DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2033 | DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2034 | DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2035 | DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2036 | DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2037 | DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2038 | DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED), |
Kristian Høgsberg | 10ba501 | 2013-08-25 18:29:01 +0200 | [diff] [blame] | 2039 | DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2040 | DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED), |
| 2041 | DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED), |
Jesse Barnes | 8ea3086 | 2012-01-03 08:05:39 -0800 | [diff] [blame] | 2042 | DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED), |
| 2043 | DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, intel_sprite_get_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED), |
Kristian Høgsberg | 10ba501 | 2013-08-25 18:29:01 +0200 | [diff] [blame] | 2044 | DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2045 | DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE, i915_gem_context_create_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2046 | DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
| 2047 | DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
Mika Kuoppala | b635991 | 2013-10-30 15:44:16 +0200 | [diff] [blame] | 2048 | DRM_IOCTL_DEF_DRV(I915_GET_RESET_STATS, i915_get_reset_stats_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 2049 | DRM_IOCTL_DEF_DRV(I915_GEM_USERPTR, i915_gem_userptr_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW), |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 2050 | }; |
| 2051 | |
Damien Lespiau | f95aeb1 | 2014-06-09 14:39:49 +0100 | [diff] [blame] | 2052 | int i915_max_ioctl = ARRAY_SIZE(i915_ioctls); |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 2053 | |
Daniel Vetter | 9021f28 | 2012-03-26 09:45:41 +0200 | [diff] [blame] | 2054 | /* |
| 2055 | * This is really ugly: Because old userspace abused the linux agp interface to |
| 2056 | * manage the gtt, we need to claim that all intel devices are agp. For |
| 2057 | * otherwise the drm core refuses to initialize the agp support code. |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 2058 | */ |
Robin Schroer | 1a5036b | 2014-06-02 16:59:39 +0200 | [diff] [blame] | 2059 | int i915_driver_device_is_agp(struct drm_device *dev) |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 2060 | { |
| 2061 | return 1; |
| 2062 | } |