Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* i915_dma.c -- DMA support for the I915 -*- linux-c -*- |
| 2 | */ |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 3 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas. |
| 5 | * All Rights Reserved. |
Dave Airlie | bc54fd1 | 2005-06-23 22:46:46 +1000 | [diff] [blame] | 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 8 | * copy of this software and associated documentation files (the |
| 9 | * "Software"), to deal in the Software without restriction, including |
| 10 | * without limitation the rights to use, copy, modify, merge, publish, |
| 11 | * distribute, sub license, and/or sell copies of the Software, and to |
| 12 | * permit persons to whom the Software is furnished to do so, subject to |
| 13 | * the following conditions: |
| 14 | * |
| 15 | * The above copyright notice and this permission notice (including the |
| 16 | * next paragraph) shall be included in all copies or substantial portions |
| 17 | * of the Software. |
| 18 | * |
| 19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 20 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 21 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. |
| 22 | * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR |
| 23 | * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| 24 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| 25 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 26 | * |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 27 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | #include "drmP.h" |
| 30 | #include "drm.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 31 | #include "drm_crtc_helper.h" |
Dave Airlie | 785b93e | 2009-08-28 15:46:53 +1000 | [diff] [blame] | 32 | #include "drm_fb_helper.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 33 | #include "intel_drv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "i915_drm.h" |
| 35 | #include "i915_drv.h" |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 36 | #include "i915_trace.h" |
Eric Anholt | 63ee41d | 2010-12-20 18:40:06 -0800 | [diff] [blame] | 37 | #include "../../../platform/x86/intel_ips.h" |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 38 | #include <linux/pci.h> |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 39 | #include <linux/vgaarb.h> |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 40 | #include <linux/acpi.h> |
| 41 | #include <linux/pnp.h> |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 42 | #include <linux/vga_switcheroo.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 43 | #include <linux/slab.h> |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 44 | #include <acpi/video.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Chris Wilson | 4cbf74c | 2011-02-25 22:26:23 +0000 | [diff] [blame] | 46 | static void i915_write_hws_pga(struct drm_device *dev) |
| 47 | { |
| 48 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 49 | u32 addr; |
| 50 | |
| 51 | addr = dev_priv->status_page_dmah->busaddr; |
| 52 | if (INTEL_INFO(dev)->gen >= 4) |
| 53 | addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0; |
| 54 | I915_WRITE(HWS_PGA, addr); |
| 55 | } |
| 56 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 57 | /** |
| 58 | * Sets up the hardware status page for devices that need a physical address |
| 59 | * in the register. |
| 60 | */ |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 61 | static int i915_init_phys_hws(struct drm_device *dev) |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 62 | { |
| 63 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 64 | struct intel_ring_buffer *ring = LP_RING(dev_priv); |
| 65 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 66 | /* Program Hardware Status Page */ |
| 67 | dev_priv->status_page_dmah = |
Zhenyu Wang | e6be8d9 | 2010-01-05 11:25:05 +0800 | [diff] [blame] | 68 | drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE); |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 69 | |
| 70 | if (!dev_priv->status_page_dmah) { |
| 71 | DRM_ERROR("Can not allocate hardware status page\n"); |
| 72 | return -ENOMEM; |
| 73 | } |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 74 | ring->status_page.page_addr = |
| 75 | (void __force __iomem *)dev_priv->status_page_dmah->vaddr; |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 76 | |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 77 | memset_io(ring->status_page.page_addr, 0, PAGE_SIZE); |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 78 | |
Chris Wilson | 4cbf74c | 2011-02-25 22:26:23 +0000 | [diff] [blame] | 79 | i915_write_hws_pga(dev); |
Zhenyu Wang | 9b974cc | 2010-01-05 11:25:06 +0800 | [diff] [blame] | 80 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 81 | DRM_DEBUG_DRIVER("Enabled hardware status page\n"); |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 82 | return 0; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Frees the hardware status page, whether it's a physical address or a virtual |
| 87 | * address set up by the X Server. |
| 88 | */ |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 89 | static void i915_free_hws(struct drm_device *dev) |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 90 | { |
| 91 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 92 | struct intel_ring_buffer *ring = LP_RING(dev_priv); |
| 93 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 94 | if (dev_priv->status_page_dmah) { |
| 95 | drm_pci_free(dev, dev_priv->status_page_dmah); |
| 96 | dev_priv->status_page_dmah = NULL; |
| 97 | } |
| 98 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 99 | if (ring->status_page.gfx_addr) { |
| 100 | ring->status_page.gfx_addr = 0; |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 101 | drm_core_ioremapfree(&dev_priv->hws_map, dev); |
| 102 | } |
| 103 | |
| 104 | /* Need to rewrite hardware status page */ |
| 105 | I915_WRITE(HWS_PGA, 0x1ffff000); |
| 106 | } |
| 107 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 108 | void i915_kernel_lost_context(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
| 110 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 111 | struct drm_i915_master_private *master_priv; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 112 | struct intel_ring_buffer *ring = LP_RING(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 114 | /* |
| 115 | * We should never lose context on the ring with modesetting |
| 116 | * as we don't expose it to userspace |
| 117 | */ |
| 118 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 119 | return; |
| 120 | |
Chris Wilson | 8168bd4 | 2010-11-11 17:54:52 +0000 | [diff] [blame] | 121 | ring->head = I915_READ_HEAD(ring) & HEAD_ADDR; |
| 122 | ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | ring->space = ring->head - (ring->tail + 8); |
| 124 | if (ring->space < 0) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 125 | ring->space += ring->size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 127 | if (!dev->primary->master) |
| 128 | return; |
| 129 | |
| 130 | master_priv = dev->primary->master->driver_priv; |
| 131 | if (ring->head == ring->tail && master_priv->sarea_priv) |
| 132 | master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 135 | static int i915_dma_cleanup(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 137 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 138 | int i; |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* Make sure interrupts are disabled here because the uninstall ioctl |
| 141 | * may not have been called from userspace and after dev_private |
| 142 | * is freed, it's too late. |
| 143 | */ |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 144 | if (dev->irq_enabled) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 145 | drm_irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
Dan Carpenter | ee0c6bf | 2010-06-23 13:19:55 +0200 | [diff] [blame] | 147 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 148 | for (i = 0; i < I915_NUM_RINGS; i++) |
| 149 | intel_cleanup_ring_buffer(&dev_priv->ring[i]); |
Dan Carpenter | ee0c6bf | 2010-06-23 13:19:55 +0200 | [diff] [blame] | 150 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 152 | /* Clear the HWS virtual address at teardown */ |
| 153 | if (I915_NEED_GFX_HWS(dev)) |
| 154 | i915_free_hws(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | return 0; |
| 157 | } |
| 158 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 159 | 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] | 160 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 161 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 162 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 163 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Dave Airlie | 3a03ac1 | 2009-01-11 09:03:49 +1000 | [diff] [blame] | 165 | master_priv->sarea = drm_getsarea(dev); |
| 166 | if (master_priv->sarea) { |
| 167 | master_priv->sarea_priv = (drm_i915_sarea_t *) |
| 168 | ((u8 *)master_priv->sarea->handle + init->sarea_priv_offset); |
| 169 | } else { |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 170 | DRM_DEBUG_DRIVER("sarea not found assuming DRI2 userspace\n"); |
Dave Airlie | 3a03ac1 | 2009-01-11 09:03:49 +1000 | [diff] [blame] | 171 | } |
| 172 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 173 | if (init->ring_size != 0) { |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 174 | if (LP_RING(dev_priv)->obj != NULL) { |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 175 | i915_dma_cleanup(dev); |
| 176 | DRM_ERROR("Client tried to initialize ringbuffer in " |
| 177 | "GEM mode\n"); |
| 178 | return -EINVAL; |
| 179 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 181 | ret = intel_render_ring_init_dri(dev, |
| 182 | init->ring_start, |
| 183 | init->ring_size); |
| 184 | if (ret) { |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 185 | i915_dma_cleanup(dev); |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 186 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 187 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
| 189 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 190 | dev_priv->cpp = init->cpp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | dev_priv->back_offset = init->back_offset; |
| 192 | dev_priv->front_offset = init->front_offset; |
| 193 | dev_priv->current_page = 0; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 194 | if (master_priv->sarea_priv) |
| 195 | master_priv->sarea_priv->pf_current_page = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | /* Allow hardware batchbuffers unless told otherwise. |
| 198 | */ |
| 199 | dev_priv->allow_batchbuffer = 1; |
| 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | return 0; |
| 202 | } |
| 203 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 204 | static int i915_dma_resume(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { |
| 206 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 207 | struct intel_ring_buffer *ring = LP_RING(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 209 | DRM_DEBUG_DRIVER("%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 211 | if (ring->map.handle == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | DRM_ERROR("can not ioremap virtual address for" |
| 213 | " ring buffer\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 214 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | /* Program Hardware Status Page */ |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 218 | if (!ring->status_page.page_addr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | DRM_ERROR("Can not find hardware status page\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 220 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 222 | DRM_DEBUG_DRIVER("hw status page @ %p\n", |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 223 | ring->status_page.page_addr); |
| 224 | if (ring->status_page.gfx_addr != 0) |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 225 | intel_ring_setup_status_page(ring); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 226 | else |
Chris Wilson | 4cbf74c | 2011-02-25 22:26:23 +0000 | [diff] [blame] | 227 | i915_write_hws_pga(dev); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 228 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 229 | DRM_DEBUG_DRIVER("Enabled hardware status page\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | return 0; |
| 232 | } |
| 233 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 234 | static int i915_dma_init(struct drm_device *dev, void *data, |
| 235 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 237 | drm_i915_init_t *init = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | int retcode = 0; |
| 239 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 240 | switch (init->func) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | case I915_INIT_DMA: |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 242 | retcode = i915_initialize(dev, init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | break; |
| 244 | case I915_CLEANUP_DMA: |
| 245 | retcode = i915_dma_cleanup(dev); |
| 246 | break; |
| 247 | case I915_RESUME_DMA: |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 248 | retcode = i915_dma_resume(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | break; |
| 250 | default: |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 251 | retcode = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | break; |
| 253 | } |
| 254 | |
| 255 | return retcode; |
| 256 | } |
| 257 | |
| 258 | /* Implement basically the same security restrictions as hardware does |
| 259 | * for MI_BATCH_NON_SECURE. These can be made stricter at any time. |
| 260 | * |
| 261 | * Most of the calculations below involve calculating the size of a |
| 262 | * particular instruction. It's important to get the size right as |
| 263 | * that tells us where the next instruction to check is. Any illegal |
| 264 | * instruction detected will be given a size of zero, which is a |
| 265 | * signal to abort the rest of the buffer. |
| 266 | */ |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 267 | static int validate_cmd(int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | { |
| 269 | switch (((cmd >> 29) & 0x7)) { |
| 270 | case 0x0: |
| 271 | switch ((cmd >> 23) & 0x3f) { |
| 272 | case 0x0: |
| 273 | return 1; /* MI_NOOP */ |
| 274 | case 0x4: |
| 275 | return 1; /* MI_FLUSH */ |
| 276 | default: |
| 277 | return 0; /* disallow everything else */ |
| 278 | } |
| 279 | break; |
| 280 | case 0x1: |
| 281 | return 0; /* reserved */ |
| 282 | case 0x2: |
| 283 | return (cmd & 0xff) + 2; /* 2d commands */ |
| 284 | case 0x3: |
| 285 | if (((cmd >> 24) & 0x1f) <= 0x18) |
| 286 | return 1; |
| 287 | |
| 288 | switch ((cmd >> 24) & 0x1f) { |
| 289 | case 0x1c: |
| 290 | return 1; |
| 291 | case 0x1d: |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 292 | switch ((cmd >> 16) & 0xff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | case 0x3: |
| 294 | return (cmd & 0x1f) + 2; |
| 295 | case 0x4: |
| 296 | return (cmd & 0xf) + 2; |
| 297 | default: |
| 298 | return (cmd & 0xffff) + 2; |
| 299 | } |
| 300 | case 0x1e: |
| 301 | if (cmd & (1 << 23)) |
| 302 | return (cmd & 0xffff) + 1; |
| 303 | else |
| 304 | return 1; |
| 305 | case 0x1f: |
| 306 | if ((cmd & (1 << 23)) == 0) /* inline vertices */ |
| 307 | return (cmd & 0x1ffff) + 2; |
| 308 | else if (cmd & (1 << 17)) /* indirect random */ |
| 309 | if ((cmd & 0xffff) == 0) |
| 310 | return 0; /* unknown length, too hard */ |
| 311 | else |
| 312 | return (((cmd & 0xffff) + 1) / 2) + 1; |
| 313 | else |
| 314 | return 2; /* indirect sequential */ |
| 315 | default: |
| 316 | return 0; |
| 317 | } |
| 318 | default: |
| 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | return 0; |
| 323 | } |
| 324 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 325 | 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] | 326 | { |
| 327 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 328 | int i, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 330 | if ((dwords+1) * sizeof(int) >= LP_RING(dev_priv)->size - 8) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 331 | return -EINVAL; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | for (i = 0; i < dwords;) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 334 | int sz = validate_cmd(buffer[i]); |
| 335 | if (sz == 0 || i + sz > dwords) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 336 | return -EINVAL; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 337 | i += sz; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 340 | ret = BEGIN_LP_RING((dwords+1)&~1); |
| 341 | if (ret) |
| 342 | return ret; |
| 343 | |
| 344 | for (i = 0; i < dwords; i++) |
| 345 | OUT_RING(buffer[i]); |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 346 | if (dwords & 1) |
| 347 | OUT_RING(0); |
| 348 | |
| 349 | ADVANCE_LP_RING(); |
| 350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | return 0; |
| 352 | } |
| 353 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 354 | int |
| 355 | i915_emit_box(struct drm_device *dev, |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 356 | struct drm_clip_rect *box, |
| 357 | int DR1, int DR4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 359 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 360 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 362 | if (box->y2 <= box->y1 || box->x2 <= box->x1 || |
| 363 | box->y2 <= 0 || box->x2 <= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | DRM_ERROR("Bad box %d,%d..%d,%d\n", |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 365 | box->x1, box->y1, box->x2, box->y2); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 366 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } |
| 368 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 369 | if (INTEL_INFO(dev)->gen >= 4) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 370 | ret = BEGIN_LP_RING(4); |
| 371 | if (ret) |
| 372 | return ret; |
| 373 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 374 | OUT_RING(GFX_OP_DRAWRECT_INFO_I965); |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 375 | OUT_RING((box->x1 & 0xffff) | (box->y1 << 16)); |
| 376 | OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16)); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 377 | OUT_RING(DR4); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 378 | } else { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 379 | ret = BEGIN_LP_RING(6); |
| 380 | if (ret) |
| 381 | return ret; |
| 382 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 383 | OUT_RING(GFX_OP_DRAWRECT_INFO); |
| 384 | OUT_RING(DR1); |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 385 | OUT_RING((box->x1 & 0xffff) | (box->y1 << 16)); |
| 386 | OUT_RING(((box->x2 - 1) & 0xffff) | ((box->y2 - 1) << 16)); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 387 | OUT_RING(DR4); |
| 388 | OUT_RING(0); |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 389 | } |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 390 | ADVANCE_LP_RING(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
| 392 | return 0; |
| 393 | } |
| 394 | |
Alan Hourihane | c29b669 | 2006-08-12 16:29:24 +1000 | [diff] [blame] | 395 | /* XXX: Emitting the counter should really be moved to part of the IRQ |
| 396 | * emit. For now, do it in both places: |
| 397 | */ |
| 398 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 399 | static void i915_emit_breadcrumb(struct drm_device *dev) |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 400 | { |
| 401 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 402 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 403 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 404 | dev_priv->counter++; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 405 | if (dev_priv->counter > 0x7FFFFFFFUL) |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 406 | dev_priv->counter = 0; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 407 | if (master_priv->sarea_priv) |
| 408 | master_priv->sarea_priv->last_enqueue = dev_priv->counter; |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 409 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 410 | if (BEGIN_LP_RING(4) == 0) { |
| 411 | OUT_RING(MI_STORE_DWORD_INDEX); |
| 412 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
| 413 | OUT_RING(dev_priv->counter); |
| 414 | OUT_RING(0); |
| 415 | ADVANCE_LP_RING(); |
| 416 | } |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 417 | } |
| 418 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 419 | static int i915_dispatch_cmdbuffer(struct drm_device * dev, |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 420 | drm_i915_cmdbuffer_t *cmd, |
| 421 | struct drm_clip_rect *cliprects, |
| 422 | void *cmdbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | { |
| 424 | int nbox = cmd->num_cliprects; |
| 425 | int i = 0, count, ret; |
| 426 | |
| 427 | if (cmd->sz & 0x3) { |
| 428 | DRM_ERROR("alignment"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 429 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | i915_kernel_lost_context(dev); |
| 433 | |
| 434 | count = nbox ? nbox : 1; |
| 435 | |
| 436 | for (i = 0; i < count; i++) { |
| 437 | if (i < nbox) { |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 438 | ret = i915_emit_box(dev, &cliprects[i], |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | cmd->DR1, cmd->DR4); |
| 440 | if (ret) |
| 441 | return ret; |
| 442 | } |
| 443 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 444 | ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | if (ret) |
| 446 | return ret; |
| 447 | } |
| 448 | |
Dave Airlie | de227f5 | 2006-01-25 15:31:43 +1100 | [diff] [blame] | 449 | i915_emit_breadcrumb(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | return 0; |
| 451 | } |
| 452 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 453 | static int i915_dispatch_batchbuffer(struct drm_device * dev, |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 454 | drm_i915_batchbuffer_t * batch, |
| 455 | struct drm_clip_rect *cliprects) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 457 | struct drm_i915_private *dev_priv = dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | int nbox = batch->num_cliprects; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 459 | int i, count, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
| 461 | if ((batch->start | batch->used) & 0x7) { |
| 462 | DRM_ERROR("alignment"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 463 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | i915_kernel_lost_context(dev); |
| 467 | |
| 468 | count = nbox ? nbox : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | for (i = 0; i < count; i++) { |
| 470 | if (i < nbox) { |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 471 | ret = i915_emit_box(dev, &cliprects[i], |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 472 | batch->DR1, batch->DR4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | if (ret) |
| 474 | return ret; |
| 475 | } |
| 476 | |
Keith Packard | 0790d5e | 2008-07-30 12:28:47 -0700 | [diff] [blame] | 477 | if (!IS_I830(dev) && !IS_845G(dev)) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 478 | ret = BEGIN_LP_RING(2); |
| 479 | if (ret) |
| 480 | return ret; |
| 481 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 482 | if (INTEL_INFO(dev)->gen >= 4) { |
Dave Airlie | 21f1628 | 2007-08-07 09:09:51 +1000 | [diff] [blame] | 483 | OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965); |
| 484 | OUT_RING(batch->start); |
| 485 | } else { |
| 486 | OUT_RING(MI_BATCH_BUFFER_START | (2 << 6)); |
| 487 | OUT_RING(batch->start | MI_BATCH_NON_SECURE); |
| 488 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | } else { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 490 | ret = BEGIN_LP_RING(4); |
| 491 | if (ret) |
| 492 | return ret; |
| 493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | OUT_RING(MI_BATCH_BUFFER); |
| 495 | OUT_RING(batch->start | MI_BATCH_NON_SECURE); |
| 496 | OUT_RING(batch->start + batch->used - 4); |
| 497 | OUT_RING(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 499 | ADVANCE_LP_RING(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Zou Nan hai | 1cafd34 | 2010-06-25 13:40:24 +0800 | [diff] [blame] | 502 | |
Chris Wilson | f00a3dd | 2010-10-21 14:57:17 +0100 | [diff] [blame] | 503 | if (IS_G4X(dev) || IS_GEN5(dev)) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 504 | if (BEGIN_LP_RING(2) == 0) { |
| 505 | OUT_RING(MI_FLUSH | MI_NO_WRITE_FLUSH | MI_INVALIDATE_ISP); |
| 506 | OUT_RING(MI_NOOP); |
| 507 | ADVANCE_LP_RING(); |
| 508 | } |
Zou Nan hai | 1cafd34 | 2010-06-25 13:40:24 +0800 | [diff] [blame] | 509 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 511 | i915_emit_breadcrumb(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | return 0; |
| 513 | } |
| 514 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 515 | static int i915_dispatch_flip(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | { |
| 517 | drm_i915_private_t *dev_priv = dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 518 | struct drm_i915_master_private *master_priv = |
| 519 | dev->primary->master->driver_priv; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 520 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 522 | if (!master_priv->sarea_priv) |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 523 | return -EINVAL; |
| 524 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 525 | DRM_DEBUG_DRIVER("%s: page=%d pfCurrentPage=%d\n", |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 526 | __func__, |
| 527 | dev_priv->current_page, |
| 528 | master_priv->sarea_priv->pf_current_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 530 | i915_kernel_lost_context(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 532 | ret = BEGIN_LP_RING(10); |
| 533 | if (ret) |
| 534 | return ret; |
| 535 | |
Jesse Barnes | 585fb11 | 2008-07-29 11:54:06 -0700 | [diff] [blame] | 536 | OUT_RING(MI_FLUSH | MI_READ_FLUSH); |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 537 | OUT_RING(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 539 | OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP); |
| 540 | OUT_RING(0); |
| 541 | if (dev_priv->current_page == 0) { |
| 542 | OUT_RING(dev_priv->back_offset); |
| 543 | dev_priv->current_page = 1; |
| 544 | } else { |
| 545 | OUT_RING(dev_priv->front_offset); |
| 546 | dev_priv->current_page = 0; |
| 547 | } |
| 548 | OUT_RING(0); |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 549 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 550 | OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP); |
| 551 | OUT_RING(0); |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 552 | |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 553 | ADVANCE_LP_RING(); |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 554 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 555 | master_priv->sarea_priv->last_enqueue = dev_priv->counter++; |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 556 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 557 | if (BEGIN_LP_RING(4) == 0) { |
| 558 | OUT_RING(MI_STORE_DWORD_INDEX); |
| 559 | OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
| 560 | OUT_RING(dev_priv->counter); |
| 561 | OUT_RING(0); |
| 562 | ADVANCE_LP_RING(); |
| 563 | } |
Jesse Barnes | ac741ab | 2008-04-22 16:03:07 +1000 | [diff] [blame] | 564 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 565 | master_priv->sarea_priv->pf_current_page = dev_priv->current_page; |
Dave Airlie | af6061a | 2008-05-07 12:15:39 +1000 | [diff] [blame] | 566 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 569 | static int i915_quiescent(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 571 | struct intel_ring_buffer *ring = LP_RING(dev->dev_private); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | i915_kernel_lost_context(dev); |
Ben Widawsky | 96f298a | 2011-03-19 18:14:27 -0700 | [diff] [blame^] | 574 | return intel_wait_ring_idle(ring); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | } |
| 576 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 577 | static int i915_flush_ioctl(struct drm_device *dev, void *data, |
| 578 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | { |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 580 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 582 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
| 583 | |
| 584 | mutex_lock(&dev->struct_mutex); |
| 585 | ret = i915_quiescent(dev); |
| 586 | mutex_unlock(&dev->struct_mutex); |
| 587 | |
| 588 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | } |
| 590 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 591 | static int i915_batchbuffer(struct drm_device *dev, void *data, |
| 592 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 595 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *) |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 597 | master_priv->sarea_priv; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 598 | drm_i915_batchbuffer_t *batch = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | int ret; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 600 | struct drm_clip_rect *cliprects = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | if (!dev_priv->allow_batchbuffer) { |
| 603 | DRM_ERROR("Batchbuffer ioctl disabled\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 604 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
| 606 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 607 | DRM_DEBUG_DRIVER("i915 batchbuffer, start %x used %d cliprects %d\n", |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 608 | batch->start, batch->used, batch->num_cliprects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 610 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 612 | if (batch->num_cliprects < 0) |
| 613 | return -EINVAL; |
| 614 | |
| 615 | if (batch->num_cliprects) { |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 616 | cliprects = kcalloc(batch->num_cliprects, |
| 617 | sizeof(struct drm_clip_rect), |
| 618 | GFP_KERNEL); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 619 | if (cliprects == NULL) |
| 620 | return -ENOMEM; |
| 621 | |
| 622 | ret = copy_from_user(cliprects, batch->cliprects, |
| 623 | batch->num_cliprects * |
| 624 | sizeof(struct drm_clip_rect)); |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 625 | if (ret != 0) { |
| 626 | ret = -EFAULT; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 627 | goto fail_free; |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 628 | } |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 629 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 631 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 632 | ret = i915_dispatch_batchbuffer(dev, batch, cliprects); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 633 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 635 | if (sarea_priv) |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 636 | sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 637 | |
| 638 | fail_free: |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 639 | kfree(cliprects); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | return ret; |
| 642 | } |
| 643 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 644 | static int i915_cmdbuffer(struct drm_device *dev, void *data, |
| 645 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 648 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *) |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 650 | master_priv->sarea_priv; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 651 | drm_i915_cmdbuffer_t *cmdbuf = data; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 652 | struct drm_clip_rect *cliprects = NULL; |
| 653 | void *batch_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | int ret; |
| 655 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 656 | DRM_DEBUG_DRIVER("i915 cmdbuffer, buf %p sz %d cliprects %d\n", |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 657 | cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 659 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 661 | if (cmdbuf->num_cliprects < 0) |
| 662 | return -EINVAL; |
| 663 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 664 | batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 665 | if (batch_data == NULL) |
| 666 | return -ENOMEM; |
| 667 | |
| 668 | ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz); |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 669 | if (ret != 0) { |
| 670 | ret = -EFAULT; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 671 | goto fail_batch_free; |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 672 | } |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 673 | |
| 674 | if (cmdbuf->num_cliprects) { |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 675 | cliprects = kcalloc(cmdbuf->num_cliprects, |
| 676 | sizeof(struct drm_clip_rect), GFP_KERNEL); |
Owain Ainsworth | a40e8d3 | 2010-02-09 14:25:55 +0000 | [diff] [blame] | 677 | if (cliprects == NULL) { |
| 678 | ret = -ENOMEM; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 679 | goto fail_batch_free; |
Owain Ainsworth | a40e8d3 | 2010-02-09 14:25:55 +0000 | [diff] [blame] | 680 | } |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 681 | |
| 682 | ret = copy_from_user(cliprects, cmdbuf->cliprects, |
| 683 | cmdbuf->num_cliprects * |
| 684 | sizeof(struct drm_clip_rect)); |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 685 | if (ret != 0) { |
| 686 | ret = -EFAULT; |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 687 | goto fail_clip_free; |
Dan Carpenter | 9927a40 | 2010-06-19 15:12:51 +0200 | [diff] [blame] | 688 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | } |
| 690 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 691 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 692 | ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data); |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 693 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | if (ret) { |
| 695 | DRM_ERROR("i915_dispatch_cmdbuffer failed\n"); |
Chris Wright | 355d7f3 | 2009-04-17 01:18:55 +0000 | [diff] [blame] | 696 | goto fail_clip_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Kristian Høgsberg | c99b058 | 2008-08-20 11:20:13 -0400 | [diff] [blame] | 699 | if (sarea_priv) |
Keith Packard | 0baf823 | 2008-11-08 11:44:14 +1000 | [diff] [blame] | 700 | sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 701 | |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 702 | fail_clip_free: |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 703 | kfree(cliprects); |
Chris Wright | 355d7f3 | 2009-04-17 01:18:55 +0000 | [diff] [blame] | 704 | fail_batch_free: |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 705 | kfree(batch_data); |
Eric Anholt | 201361a | 2009-03-11 12:30:04 -0700 | [diff] [blame] | 706 | |
| 707 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | } |
| 709 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 710 | static int i915_flip_bufs(struct drm_device *dev, void *data, |
| 711 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | { |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 713 | int ret; |
| 714 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 715 | DRM_DEBUG_DRIVER("%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 717 | RING_LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
Eric Anholt | 546b097 | 2008-09-01 16:45:29 -0700 | [diff] [blame] | 719 | mutex_lock(&dev->struct_mutex); |
| 720 | ret = i915_dispatch_flip(dev); |
| 721 | mutex_unlock(&dev->struct_mutex); |
| 722 | |
| 723 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | } |
| 725 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 726 | static int i915_getparam(struct drm_device *dev, void *data, |
| 727 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 730 | drm_i915_getparam_t *param = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | int value; |
| 732 | |
| 733 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 734 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 735 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | } |
| 737 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 738 | switch (param->param) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | case I915_PARAM_IRQ_ACTIVE: |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 740 | value = dev->pdev->irq ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | break; |
| 742 | case I915_PARAM_ALLOW_BATCHBUFFER: |
| 743 | value = dev_priv->allow_batchbuffer ? 1 : 0; |
| 744 | break; |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 745 | case I915_PARAM_LAST_DISPATCH: |
| 746 | value = READ_BREADCRUMB(dev_priv); |
| 747 | break; |
Kristian Høgsberg | ed4c9c4 | 2008-08-20 11:08:52 -0400 | [diff] [blame] | 748 | case I915_PARAM_CHIPSET_ID: |
| 749 | value = dev->pci_device; |
| 750 | break; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 751 | case I915_PARAM_HAS_GEM: |
Dave Airlie | ac5c4e7 | 2008-12-19 15:38:34 +1000 | [diff] [blame] | 752 | value = dev_priv->has_gem; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 753 | break; |
Jesse Barnes | 0f973f2 | 2009-01-26 17:10:45 -0800 | [diff] [blame] | 754 | case I915_PARAM_NUM_FENCES_AVAIL: |
| 755 | value = dev_priv->num_fence_regs - dev_priv->fence_reg_start; |
| 756 | break; |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 757 | case I915_PARAM_HAS_OVERLAY: |
| 758 | value = dev_priv->overlay ? 1 : 0; |
| 759 | break; |
Jesse Barnes | e9560f7 | 2009-11-19 10:49:07 -0800 | [diff] [blame] | 760 | case I915_PARAM_HAS_PAGEFLIPPING: |
| 761 | value = 1; |
| 762 | break; |
Jesse Barnes | 76446ca | 2009-12-17 22:05:42 -0500 | [diff] [blame] | 763 | case I915_PARAM_HAS_EXECBUF2: |
| 764 | /* depends on GEM */ |
| 765 | value = dev_priv->has_gem; |
| 766 | break; |
Zou Nan hai | e3a815f | 2010-05-31 13:58:47 +0800 | [diff] [blame] | 767 | case I915_PARAM_HAS_BSD: |
| 768 | value = HAS_BSD(dev); |
| 769 | break; |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 770 | case I915_PARAM_HAS_BLT: |
| 771 | value = HAS_BLT(dev); |
| 772 | break; |
Chris Wilson | a00b10c | 2010-09-24 21:15:47 +0100 | [diff] [blame] | 773 | case I915_PARAM_HAS_RELAXED_FENCING: |
| 774 | value = 1; |
| 775 | break; |
Daniel Vetter | bbf0c6b | 2010-12-05 11:30:40 +0100 | [diff] [blame] | 776 | case I915_PARAM_HAS_COHERENT_RINGS: |
| 777 | value = 1; |
| 778 | break; |
Chris Wilson | 72bfa19 | 2010-12-19 11:42:05 +0000 | [diff] [blame] | 779 | case I915_PARAM_HAS_EXEC_CONSTANTS: |
| 780 | value = INTEL_INFO(dev)->gen >= 4; |
| 781 | break; |
Chris Wilson | 271d81b | 2011-03-01 15:24:41 +0000 | [diff] [blame] | 782 | case I915_PARAM_HAS_RELAXED_DELTA: |
| 783 | value = 1; |
| 784 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | default: |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 786 | DRM_DEBUG_DRIVER("Unknown parameter %d\n", |
Jesse Barnes | 76446ca | 2009-12-17 22:05:42 -0500 | [diff] [blame] | 787 | param->param); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 788 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | } |
| 790 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 791 | if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | DRM_ERROR("DRM_COPY_TO_USER failed\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 793 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | } |
| 795 | |
| 796 | return 0; |
| 797 | } |
| 798 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 799 | static int i915_setparam(struct drm_device *dev, void *data, |
| 800 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 803 | drm_i915_setparam_t *param = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | |
| 805 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 806 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 807 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | } |
| 809 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 810 | switch (param->param) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | case I915_SETPARAM_USE_MI_BATCHBUFFER_START: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | break; |
| 813 | case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 814 | dev_priv->tex_lru_log_granularity = param->value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | break; |
| 816 | case I915_SETPARAM_ALLOW_BATCHBUFFER: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 817 | dev_priv->allow_batchbuffer = param->value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | break; |
Jesse Barnes | 0f973f2 | 2009-01-26 17:10:45 -0800 | [diff] [blame] | 819 | case I915_SETPARAM_NUM_USED_FENCES: |
| 820 | if (param->value > dev_priv->num_fence_regs || |
| 821 | param->value < 0) |
| 822 | return -EINVAL; |
| 823 | /* Userspace can use first N regs */ |
| 824 | dev_priv->fence_reg_start = param->value; |
| 825 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | default: |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 827 | DRM_DEBUG_DRIVER("unknown parameter %d\n", |
yakui_zhao | be25ed9 | 2009-06-02 14:13:55 +0800 | [diff] [blame] | 828 | param->param); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 829 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | } |
| 831 | |
| 832 | return 0; |
| 833 | } |
| 834 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 835 | static int i915_set_status_page(struct drm_device *dev, void *data, |
| 836 | struct drm_file *file_priv) |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 837 | { |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 838 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 839 | drm_i915_hws_addr_t *hws = data; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 840 | struct intel_ring_buffer *ring = LP_RING(dev_priv); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 841 | |
Zhenyu Wang | b39d50e | 2008-02-19 20:59:09 +1000 | [diff] [blame] | 842 | if (!I915_NEED_GFX_HWS(dev)) |
| 843 | return -EINVAL; |
| 844 | |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 845 | if (!dev_priv) { |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 846 | DRM_ERROR("called with no initialization\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 847 | return -EINVAL; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 848 | } |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 849 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 850 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 851 | WARN(1, "tried to set status page when mode setting active\n"); |
| 852 | return 0; |
| 853 | } |
| 854 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 855 | 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] | 856 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 857 | ring->status_page.gfx_addr = hws->addr & (0x1ffff<<12); |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 858 | |
Eric Anholt | 8b40958 | 2007-11-22 16:40:37 +1000 | [diff] [blame] | 859 | dev_priv->hws_map.offset = dev->agp->base + hws->addr; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 860 | dev_priv->hws_map.size = 4*1024; |
| 861 | dev_priv->hws_map.type = 0; |
| 862 | dev_priv->hws_map.flags = 0; |
| 863 | dev_priv->hws_map.mtrr = 0; |
| 864 | |
Dave Airlie | dd0910b | 2009-02-25 14:49:21 +1000 | [diff] [blame] | 865 | drm_core_ioremap_wc(&dev_priv->hws_map, dev); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 866 | if (dev_priv->hws_map.handle == NULL) { |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 867 | i915_dma_cleanup(dev); |
Eric Anholt | e20f9c6 | 2010-05-26 14:51:06 -0700 | [diff] [blame] | 868 | ring->status_page.gfx_addr = 0; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 869 | DRM_ERROR("can not ioremap virtual address for" |
| 870 | " G33 hw status page\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 871 | return -ENOMEM; |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 872 | } |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 873 | ring->status_page.page_addr = |
| 874 | (void __force __iomem *)dev_priv->hws_map.handle; |
| 875 | memset_io(ring->status_page.page_addr, 0, PAGE_SIZE); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 876 | I915_WRITE(HWS_PGA, ring->status_page.gfx_addr); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 877 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 878 | 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] | 879 | ring->status_page.gfx_addr); |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 880 | DRM_DEBUG_DRIVER("load hws at %p\n", |
Eric Anholt | e20f9c6 | 2010-05-26 14:51:06 -0700 | [diff] [blame] | 881 | ring->status_page.page_addr); |
Wang Zhenyu | dc7a931 | 2007-06-10 15:58:19 +1000 | [diff] [blame] | 882 | return 0; |
| 883 | } |
| 884 | |
Dave Airlie | ec2a4c3 | 2009-08-04 11:43:41 +1000 | [diff] [blame] | 885 | static int i915_get_bridge_dev(struct drm_device *dev) |
| 886 | { |
| 887 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 888 | |
| 889 | dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0)); |
| 890 | if (!dev_priv->bridge_dev) { |
| 891 | DRM_ERROR("bridge device not found\n"); |
| 892 | return -1; |
| 893 | } |
| 894 | return 0; |
| 895 | } |
| 896 | |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 897 | #define MCHBAR_I915 0x44 |
| 898 | #define MCHBAR_I965 0x48 |
| 899 | #define MCHBAR_SIZE (4*4096) |
| 900 | |
| 901 | #define DEVEN_REG 0x54 |
| 902 | #define DEVEN_MCHBAR_EN (1 << 28) |
| 903 | |
| 904 | /* Allocate space for the MCH regs if needed, return nonzero on error */ |
| 905 | static int |
| 906 | intel_alloc_mchbar_resource(struct drm_device *dev) |
| 907 | { |
| 908 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 909 | int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 910 | u32 temp_lo, temp_hi = 0; |
| 911 | u64 mchbar_addr; |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 912 | int ret; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 913 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 914 | if (INTEL_INFO(dev)->gen >= 4) |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 915 | pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi); |
| 916 | pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo); |
| 917 | mchbar_addr = ((u64)temp_hi << 32) | temp_lo; |
| 918 | |
| 919 | /* If ACPI doesn't have it, assume we need to allocate it ourselves */ |
| 920 | #ifdef CONFIG_PNP |
| 921 | if (mchbar_addr && |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 922 | pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE)) |
| 923 | return 0; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 924 | #endif |
| 925 | |
| 926 | /* Get some space for it */ |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 927 | dev_priv->mch_res.name = "i915 MCHBAR"; |
| 928 | dev_priv->mch_res.flags = IORESOURCE_MEM; |
| 929 | ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus, |
| 930 | &dev_priv->mch_res, |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 931 | MCHBAR_SIZE, MCHBAR_SIZE, |
| 932 | PCIBIOS_MIN_MEM, |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 933 | 0, pcibios_align_resource, |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 934 | dev_priv->bridge_dev); |
| 935 | if (ret) { |
| 936 | DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret); |
| 937 | dev_priv->mch_res.start = 0; |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 938 | return ret; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 939 | } |
| 940 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 941 | if (INTEL_INFO(dev)->gen >= 4) |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 942 | pci_write_config_dword(dev_priv->bridge_dev, reg + 4, |
| 943 | upper_32_bits(dev_priv->mch_res.start)); |
| 944 | |
| 945 | pci_write_config_dword(dev_priv->bridge_dev, reg, |
| 946 | lower_32_bits(dev_priv->mch_res.start)); |
Chris Wilson | a25c25c | 2010-08-20 14:36:45 +0100 | [diff] [blame] | 947 | return 0; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 948 | } |
| 949 | |
| 950 | /* Setup MCHBAR if possible, return true if we should disable it again */ |
| 951 | static void |
| 952 | intel_setup_mchbar(struct drm_device *dev) |
| 953 | { |
| 954 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 955 | int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 956 | u32 temp; |
| 957 | bool enabled; |
| 958 | |
| 959 | dev_priv->mchbar_need_disable = false; |
| 960 | |
| 961 | if (IS_I915G(dev) || IS_I915GM(dev)) { |
| 962 | pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp); |
| 963 | enabled = !!(temp & DEVEN_MCHBAR_EN); |
| 964 | } else { |
| 965 | pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp); |
| 966 | enabled = temp & 1; |
| 967 | } |
| 968 | |
| 969 | /* If it's already enabled, don't have to do anything */ |
| 970 | if (enabled) |
| 971 | return; |
| 972 | |
| 973 | if (intel_alloc_mchbar_resource(dev)) |
| 974 | return; |
| 975 | |
| 976 | dev_priv->mchbar_need_disable = true; |
| 977 | |
| 978 | /* Space is allocated or reserved, so enable it. */ |
| 979 | if (IS_I915G(dev) || IS_I915GM(dev)) { |
| 980 | pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, |
| 981 | temp | DEVEN_MCHBAR_EN); |
| 982 | } else { |
| 983 | pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp); |
| 984 | pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1); |
| 985 | } |
| 986 | } |
| 987 | |
| 988 | static void |
| 989 | intel_teardown_mchbar(struct drm_device *dev) |
| 990 | { |
| 991 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 992 | int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915; |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 993 | u32 temp; |
| 994 | |
| 995 | if (dev_priv->mchbar_need_disable) { |
| 996 | if (IS_I915G(dev) || IS_I915GM(dev)) { |
| 997 | pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp); |
| 998 | temp &= ~DEVEN_MCHBAR_EN; |
| 999 | pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp); |
| 1000 | } else { |
| 1001 | pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp); |
| 1002 | temp &= ~1; |
| 1003 | pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp); |
| 1004 | } |
| 1005 | } |
| 1006 | |
| 1007 | if (dev_priv->mch_res.start) |
| 1008 | release_resource(&dev_priv->mch_res); |
| 1009 | } |
| 1010 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1011 | #define PTE_ADDRESS_MASK 0xfffff000 |
| 1012 | #define PTE_ADDRESS_MASK_HIGH 0x000000f0 /* i915+ */ |
| 1013 | #define PTE_MAPPING_TYPE_UNCACHED (0 << 1) |
| 1014 | #define PTE_MAPPING_TYPE_DCACHE (1 << 1) /* i830 only */ |
| 1015 | #define PTE_MAPPING_TYPE_CACHED (3 << 1) |
| 1016 | #define PTE_MAPPING_TYPE_MASK (3 << 1) |
| 1017 | #define PTE_VALID (1 << 0) |
| 1018 | |
| 1019 | /** |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1020 | * i915_stolen_to_phys - take an offset into stolen memory and turn it into |
| 1021 | * a physical one |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1022 | * @dev: drm device |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1023 | * @offset: address to translate |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1024 | * |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1025 | * Some chip functions require allocations from stolen space and need the |
| 1026 | * physical address of the memory in question. |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1027 | */ |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1028 | static unsigned long i915_stolen_to_phys(struct drm_device *dev, u32 offset) |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1029 | { |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1030 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1031 | struct pci_dev *pdev = dev_priv->bridge_dev; |
| 1032 | u32 base; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1033 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1034 | #if 0 |
| 1035 | /* On the machines I have tested the Graphics Base of Stolen Memory |
| 1036 | * is unreliable, so compute the base by subtracting the stolen memory |
| 1037 | * from the Top of Low Usable DRAM which is where the BIOS places |
| 1038 | * the graphics stolen memory. |
| 1039 | */ |
| 1040 | if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) { |
| 1041 | /* top 32bits are reserved = 0 */ |
| 1042 | pci_read_config_dword(pdev, 0xA4, &base); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1043 | } else { |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1044 | /* XXX presume 8xx is the same as i915 */ |
| 1045 | pci_bus_read_config_dword(pdev->bus, 2, 0x5C, &base); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1046 | } |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1047 | #else |
| 1048 | if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) { |
| 1049 | u16 val; |
| 1050 | pci_read_config_word(pdev, 0xb0, &val); |
| 1051 | base = val >> 4 << 20; |
| 1052 | } else { |
| 1053 | u8 val; |
| 1054 | pci_read_config_byte(pdev, 0x9c, &val); |
| 1055 | base = val >> 3 << 27; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1056 | } |
Chris Wilson | c64f7ba | 2010-11-23 14:24:24 +0000 | [diff] [blame] | 1057 | base -= dev_priv->mm.gtt->stolen_size; |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1058 | #endif |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1059 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1060 | return base + offset; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | static void i915_warn_stolen(struct drm_device *dev) |
| 1064 | { |
| 1065 | DRM_ERROR("not enough stolen space for compressed buffer, disabling\n"); |
| 1066 | DRM_ERROR("hint: you may be able to increase stolen memory size in the BIOS to avoid this\n"); |
| 1067 | } |
| 1068 | |
| 1069 | static void i915_setup_compression(struct drm_device *dev, int size) |
| 1070 | { |
| 1071 | struct drm_i915_private *dev_priv = dev->dev_private; |
Prarit Bhargava | 132b6aa | 2010-05-27 13:37:56 -0400 | [diff] [blame] | 1072 | struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb); |
Andrew Morton | 29bd0ae | 2009-11-17 14:08:52 -0800 | [diff] [blame] | 1073 | unsigned long cfb_base; |
| 1074 | unsigned long ll_base = 0; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1075 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1076 | compressed_fb = drm_mm_search_free(&dev_priv->mm.stolen, size, 4096, 0); |
| 1077 | if (compressed_fb) |
| 1078 | compressed_fb = drm_mm_get_block(compressed_fb, size, 4096); |
| 1079 | if (!compressed_fb) |
| 1080 | goto err; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1081 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1082 | cfb_base = i915_stolen_to_phys(dev, compressed_fb->start); |
| 1083 | if (!cfb_base) |
| 1084 | goto err_fb; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1085 | |
Yuanhan Liu | 9c04f01 | 2010-12-15 15:42:32 +0800 | [diff] [blame] | 1086 | if (!(IS_GM45(dev) || HAS_PCH_SPLIT(dev))) { |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1087 | compressed_llb = drm_mm_search_free(&dev_priv->mm.stolen, |
| 1088 | 4096, 4096, 0); |
| 1089 | if (compressed_llb) |
| 1090 | compressed_llb = drm_mm_get_block(compressed_llb, |
| 1091 | 4096, 4096); |
| 1092 | if (!compressed_llb) |
| 1093 | goto err_fb; |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1094 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1095 | ll_base = i915_stolen_to_phys(dev, compressed_llb->start); |
| 1096 | if (!ll_base) |
| 1097 | goto err_llb; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1098 | } |
| 1099 | |
| 1100 | dev_priv->cfb_size = size; |
| 1101 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1102 | intel_disable_fbc(dev); |
Jesse Barnes | 20bf377 | 2010-04-21 11:39:22 -0700 | [diff] [blame] | 1103 | dev_priv->compressed_fb = compressed_fb; |
Yuanhan Liu | 9c04f01 | 2010-12-15 15:42:32 +0800 | [diff] [blame] | 1104 | if (HAS_PCH_SPLIT(dev)) |
Zhao Yakui | b52eb4d | 2010-06-12 14:32:27 +0800 | [diff] [blame] | 1105 | I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start); |
| 1106 | else if (IS_GM45(dev)) { |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1107 | I915_WRITE(DPFC_CB_BASE, compressed_fb->start); |
| 1108 | } else { |
Jesse Barnes | 74dff28 | 2009-09-14 15:39:40 -0700 | [diff] [blame] | 1109 | I915_WRITE(FBC_CFB_BASE, cfb_base); |
| 1110 | I915_WRITE(FBC_LL_BASE, ll_base); |
Jesse Barnes | 20bf377 | 2010-04-21 11:39:22 -0700 | [diff] [blame] | 1111 | dev_priv->compressed_llb = compressed_llb; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1114 | DRM_DEBUG_KMS("FBC base 0x%08lx, ll base 0x%08lx, size %dM\n", |
| 1115 | cfb_base, ll_base, size >> 20); |
| 1116 | return; |
| 1117 | |
| 1118 | err_llb: |
| 1119 | drm_mm_put_block(compressed_llb); |
| 1120 | err_fb: |
| 1121 | drm_mm_put_block(compressed_fb); |
| 1122 | err: |
| 1123 | dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL; |
| 1124 | i915_warn_stolen(dev); |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1125 | } |
| 1126 | |
Jesse Barnes | 20bf377 | 2010-04-21 11:39:22 -0700 | [diff] [blame] | 1127 | static void i915_cleanup_compression(struct drm_device *dev) |
| 1128 | { |
| 1129 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1130 | |
| 1131 | drm_mm_put_block(dev_priv->compressed_fb); |
Jesse Barnes | aebf0da | 2010-07-22 08:12:20 -0700 | [diff] [blame] | 1132 | if (dev_priv->compressed_llb) |
Jesse Barnes | 20bf377 | 2010-04-21 11:39:22 -0700 | [diff] [blame] | 1133 | drm_mm_put_block(dev_priv->compressed_llb); |
| 1134 | } |
| 1135 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 1136 | /* true = enable decode, false = disable decoder */ |
| 1137 | static unsigned int i915_vga_set_decode(void *cookie, bool state) |
| 1138 | { |
| 1139 | struct drm_device *dev = cookie; |
| 1140 | |
| 1141 | intel_modeset_vga_set_state(dev, state); |
| 1142 | if (state) |
| 1143 | return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | |
| 1144 | VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; |
| 1145 | else |
| 1146 | return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; |
| 1147 | } |
| 1148 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1149 | static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state) |
| 1150 | { |
| 1151 | struct drm_device *dev = pci_get_drvdata(pdev); |
| 1152 | pm_message_t pmm = { .event = PM_EVENT_SUSPEND }; |
| 1153 | if (state == VGA_SWITCHEROO_ON) { |
Dave Airlie | fbf8176 | 2010-06-01 09:09:06 +1000 | [diff] [blame] | 1154 | printk(KERN_INFO "i915: switched on\n"); |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 1155 | dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1156 | /* i915 resume handler doesn't set to D0 */ |
| 1157 | pci_set_power_state(dev->pdev, PCI_D0); |
| 1158 | i915_resume(dev); |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 1159 | dev->switch_power_state = DRM_SWITCH_POWER_ON; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1160 | } else { |
| 1161 | printk(KERN_ERR "i915: switched off\n"); |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 1162 | dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1163 | i915_suspend(dev, pmm); |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 1164 | dev->switch_power_state = DRM_SWITCH_POWER_OFF; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | static bool i915_switcheroo_can_switch(struct pci_dev *pdev) |
| 1169 | { |
| 1170 | struct drm_device *dev = pci_get_drvdata(pdev); |
| 1171 | bool can_switch; |
| 1172 | |
| 1173 | spin_lock(&dev->count_lock); |
| 1174 | can_switch = (dev->open_count == 0); |
| 1175 | spin_unlock(&dev->count_lock); |
| 1176 | return can_switch; |
| 1177 | } |
| 1178 | |
Daniel Vetter | 5398463 | 2010-09-22 23:44:24 +0200 | [diff] [blame] | 1179 | static int i915_load_modeset_init(struct drm_device *dev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1180 | { |
| 1181 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 5398463 | 2010-09-22 23:44:24 +0200 | [diff] [blame] | 1182 | unsigned long prealloc_size, gtt_size, mappable_size; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1183 | int ret = 0; |
| 1184 | |
Chris Wilson | c64f7ba | 2010-11-23 14:24:24 +0000 | [diff] [blame] | 1185 | prealloc_size = dev_priv->mm.gtt->stolen_size; |
Daniel Vetter | 5398463 | 2010-09-22 23:44:24 +0200 | [diff] [blame] | 1186 | gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT; |
| 1187 | mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT; |
Daniel Vetter | 5398463 | 2010-09-22 23:44:24 +0200 | [diff] [blame] | 1188 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1189 | /* Basic memrange allocator for stolen space */ |
| 1190 | drm_mm_init(&dev_priv->mm.stolen, 0, prealloc_size); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1191 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1192 | /* Let GEM Manage all of the aperture. |
Eric Anholt | 13f4c43 | 2009-05-12 15:27:36 -0700 | [diff] [blame] | 1193 | * |
| 1194 | * However, leave one page at the end still bound to the scratch page. |
| 1195 | * There are a number of places where the hardware apparently |
| 1196 | * prefetches past the end of the object, and we've seen multiple |
| 1197 | * hangs with the GPU head pointer stuck in a batchbuffer bound |
| 1198 | * at the last page of the aperture. One page should be enough to |
| 1199 | * keep any prefetching inside of the aperture. |
| 1200 | */ |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1201 | i915_gem_do_init(dev, 0, mappable_size, gtt_size - PAGE_SIZE); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1202 | |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 1203 | mutex_lock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1204 | ret = i915_gem_init_ringbuffer(dev); |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 1205 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1206 | if (ret) |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 1207 | goto out; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1208 | |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1209 | /* Try to set up FBC with a reasonable compressed buffer size */ |
Shaohua Li | 9216d44 | 2009-10-10 15:20:55 +0800 | [diff] [blame] | 1210 | if (I915_HAS_FBC(dev) && i915_powersave) { |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1211 | int cfb_size; |
| 1212 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1213 | /* Leave 1M for line length buffer & misc. */ |
| 1214 | |
| 1215 | /* Try to get a 32M buffer... */ |
| 1216 | if (prealloc_size > (36*1024*1024)) |
| 1217 | cfb_size = 32*1024*1024; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 1218 | else /* fall back to 7/8 of the stolen space */ |
| 1219 | cfb_size = prealloc_size * 7 / 8; |
| 1220 | i915_setup_compression(dev, cfb_size); |
| 1221 | } |
| 1222 | |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1223 | /* Allow hardware batchbuffers unless told otherwise. */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1224 | dev_priv->allow_batchbuffer = 1; |
| 1225 | |
Bryan Freed | 6d139a8 | 2010-10-14 09:14:51 +0100 | [diff] [blame] | 1226 | ret = intel_parse_bios(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1227 | if (ret) |
| 1228 | DRM_INFO("failed to find VBIOS tables\n"); |
| 1229 | |
Chris Wilson | 934f992 | 2011-01-20 13:09:12 +0000 | [diff] [blame] | 1230 | /* If we have > 1 VGA cards, then we need to arbitrate access |
| 1231 | * to the common VGA resources. |
| 1232 | * |
| 1233 | * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA), |
| 1234 | * then we do not take part in VGA arbitration and the |
| 1235 | * vga_client_register() fails with -ENODEV. |
| 1236 | */ |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 1237 | ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode); |
Chris Wilson | 934f992 | 2011-01-20 13:09:12 +0000 | [diff] [blame] | 1238 | if (ret && ret != -ENODEV) |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 1239 | goto cleanup_ringbuffer; |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 1240 | |
Jesse Barnes | 723bfd7 | 2010-10-07 16:01:13 -0700 | [diff] [blame] | 1241 | intel_register_dsm_handler(); |
| 1242 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1243 | ret = vga_switcheroo_register_client(dev->pdev, |
| 1244 | i915_switcheroo_set_state, |
Dave Airlie | 8d608aa | 2010-12-07 08:57:57 +1000 | [diff] [blame] | 1245 | NULL, |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1246 | i915_switcheroo_can_switch); |
| 1247 | if (ret) |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 1248 | goto cleanup_vga_client; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 1249 | |
Jesse Barnes | 1afe3e9 | 2010-03-26 10:35:20 -0700 | [diff] [blame] | 1250 | /* IIR "flip pending" bit means done if this bit is set */ |
| 1251 | if (IS_GEN3(dev) && (I915_READ(ECOSKPD) & ECO_FLIP_DONE)) |
| 1252 | dev_priv->flip_pending_is_done = true; |
| 1253 | |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 1254 | intel_modeset_init(dev); |
| 1255 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1256 | ret = drm_irq_install(dev); |
| 1257 | if (ret) |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 1258 | goto cleanup_vga_switcheroo; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1259 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1260 | /* Always safe in the mode setting case. */ |
| 1261 | /* FIXME: do pre/post-mode set stuff in core KMS code */ |
| 1262 | dev->vblank_disable_allowed = 1; |
| 1263 | |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 1264 | ret = intel_fbdev_init(dev); |
| 1265 | if (ret) |
| 1266 | goto cleanup_irq; |
| 1267 | |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 1268 | drm_kms_helper_poll_init(dev); |
Chris Wilson | 87acb0a | 2010-10-19 10:13:00 +0100 | [diff] [blame] | 1269 | |
| 1270 | /* We're off and running w/KMS */ |
| 1271 | dev_priv->mm.suspended = 0; |
| 1272 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1273 | return 0; |
| 1274 | |
Chris Wilson | 5a79395 | 2010-06-06 10:50:03 +0100 | [diff] [blame] | 1275 | cleanup_irq: |
| 1276 | drm_irq_uninstall(dev); |
| 1277 | cleanup_vga_switcheroo: |
| 1278 | vga_switcheroo_unregister_client(dev->pdev); |
| 1279 | cleanup_vga_client: |
| 1280 | vga_client_register(dev->pdev, NULL, NULL, NULL); |
| 1281 | cleanup_ringbuffer: |
Eric Anholt | 2109953 | 2009-11-09 14:57:34 -0800 | [diff] [blame] | 1282 | mutex_lock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1283 | i915_gem_cleanup_ringbuffer(dev); |
Eric Anholt | 2109953 | 2009-11-09 14:57:34 -0800 | [diff] [blame] | 1284 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1285 | out: |
| 1286 | return ret; |
| 1287 | } |
| 1288 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1289 | int i915_master_create(struct drm_device *dev, struct drm_master *master) |
| 1290 | { |
| 1291 | struct drm_i915_master_private *master_priv; |
| 1292 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 1293 | master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1294 | if (!master_priv) |
| 1295 | return -ENOMEM; |
| 1296 | |
| 1297 | master->driver_priv = master_priv; |
| 1298 | return 0; |
| 1299 | } |
| 1300 | |
| 1301 | void i915_master_destroy(struct drm_device *dev, struct drm_master *master) |
| 1302 | { |
| 1303 | struct drm_i915_master_private *master_priv = master->driver_priv; |
| 1304 | |
| 1305 | if (!master_priv) |
| 1306 | return; |
| 1307 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 1308 | kfree(master_priv); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 1309 | |
| 1310 | master->driver_priv = NULL; |
| 1311 | } |
| 1312 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1313 | static void i915_pineview_get_mem_freq(struct drm_device *dev) |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 1314 | { |
| 1315 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1316 | u32 tmp; |
| 1317 | |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 1318 | tmp = I915_READ(CLKCFG); |
| 1319 | |
| 1320 | switch (tmp & CLKCFG_FSB_MASK) { |
| 1321 | case CLKCFG_FSB_533: |
| 1322 | dev_priv->fsb_freq = 533; /* 133*4 */ |
| 1323 | break; |
| 1324 | case CLKCFG_FSB_800: |
| 1325 | dev_priv->fsb_freq = 800; /* 200*4 */ |
| 1326 | break; |
| 1327 | case CLKCFG_FSB_667: |
| 1328 | dev_priv->fsb_freq = 667; /* 167*4 */ |
| 1329 | break; |
| 1330 | case CLKCFG_FSB_400: |
| 1331 | dev_priv->fsb_freq = 400; /* 100*4 */ |
| 1332 | break; |
| 1333 | } |
| 1334 | |
| 1335 | switch (tmp & CLKCFG_MEM_MASK) { |
| 1336 | case CLKCFG_MEM_533: |
| 1337 | dev_priv->mem_freq = 533; |
| 1338 | break; |
| 1339 | case CLKCFG_MEM_667: |
| 1340 | dev_priv->mem_freq = 667; |
| 1341 | break; |
| 1342 | case CLKCFG_MEM_800: |
| 1343 | dev_priv->mem_freq = 800; |
| 1344 | break; |
| 1345 | } |
Li Peng | 9553426 | 2010-05-18 18:58:44 +0800 | [diff] [blame] | 1346 | |
| 1347 | /* detect pineview DDR3 setting */ |
| 1348 | tmp = I915_READ(CSHRDDR3CTL); |
| 1349 | dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0; |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 1350 | } |
| 1351 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1352 | static void i915_ironlake_get_mem_freq(struct drm_device *dev) |
| 1353 | { |
| 1354 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1355 | u16 ddrpll, csipll; |
| 1356 | |
| 1357 | ddrpll = I915_READ16(DDRMPLL1); |
| 1358 | csipll = I915_READ16(CSIPLL0); |
| 1359 | |
| 1360 | switch (ddrpll & 0xff) { |
| 1361 | case 0xc: |
| 1362 | dev_priv->mem_freq = 800; |
| 1363 | break; |
| 1364 | case 0x10: |
| 1365 | dev_priv->mem_freq = 1066; |
| 1366 | break; |
| 1367 | case 0x14: |
| 1368 | dev_priv->mem_freq = 1333; |
| 1369 | break; |
| 1370 | case 0x18: |
| 1371 | dev_priv->mem_freq = 1600; |
| 1372 | break; |
| 1373 | default: |
| 1374 | DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n", |
| 1375 | ddrpll & 0xff); |
| 1376 | dev_priv->mem_freq = 0; |
| 1377 | break; |
| 1378 | } |
| 1379 | |
| 1380 | dev_priv->r_t = dev_priv->mem_freq; |
| 1381 | |
| 1382 | switch (csipll & 0x3ff) { |
| 1383 | case 0x00c: |
| 1384 | dev_priv->fsb_freq = 3200; |
| 1385 | break; |
| 1386 | case 0x00e: |
| 1387 | dev_priv->fsb_freq = 3733; |
| 1388 | break; |
| 1389 | case 0x010: |
| 1390 | dev_priv->fsb_freq = 4266; |
| 1391 | break; |
| 1392 | case 0x012: |
| 1393 | dev_priv->fsb_freq = 4800; |
| 1394 | break; |
| 1395 | case 0x014: |
| 1396 | dev_priv->fsb_freq = 5333; |
| 1397 | break; |
| 1398 | case 0x016: |
| 1399 | dev_priv->fsb_freq = 5866; |
| 1400 | break; |
| 1401 | case 0x018: |
| 1402 | dev_priv->fsb_freq = 6400; |
| 1403 | break; |
| 1404 | default: |
| 1405 | DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n", |
| 1406 | csipll & 0x3ff); |
| 1407 | dev_priv->fsb_freq = 0; |
| 1408 | break; |
| 1409 | } |
| 1410 | |
| 1411 | if (dev_priv->fsb_freq == 3200) { |
| 1412 | dev_priv->c_m = 0; |
| 1413 | } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) { |
| 1414 | dev_priv->c_m = 1; |
| 1415 | } else { |
| 1416 | dev_priv->c_m = 2; |
| 1417 | } |
| 1418 | } |
| 1419 | |
Chris Wilson | faa60c4 | 2010-11-23 13:50:14 +0000 | [diff] [blame] | 1420 | static const struct cparams { |
| 1421 | u16 i; |
| 1422 | u16 t; |
| 1423 | u16 m; |
| 1424 | u16 c; |
| 1425 | } cparams[] = { |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1426 | { 1, 1333, 301, 28664 }, |
| 1427 | { 1, 1066, 294, 24460 }, |
| 1428 | { 1, 800, 294, 25192 }, |
| 1429 | { 0, 1333, 276, 27605 }, |
| 1430 | { 0, 1066, 276, 27605 }, |
| 1431 | { 0, 800, 231, 23784 }, |
| 1432 | }; |
| 1433 | |
| 1434 | unsigned long i915_chipset_val(struct drm_i915_private *dev_priv) |
| 1435 | { |
| 1436 | u64 total_count, diff, ret; |
| 1437 | u32 count1, count2, count3, m = 0, c = 0; |
| 1438 | unsigned long now = jiffies_to_msecs(jiffies), diff1; |
| 1439 | int i; |
| 1440 | |
| 1441 | diff1 = now - dev_priv->last_time1; |
| 1442 | |
| 1443 | count1 = I915_READ(DMIEC); |
| 1444 | count2 = I915_READ(DDREC); |
| 1445 | count3 = I915_READ(CSIEC); |
| 1446 | |
| 1447 | total_count = count1 + count2 + count3; |
| 1448 | |
| 1449 | /* FIXME: handle per-counter overflow */ |
| 1450 | if (total_count < dev_priv->last_count1) { |
| 1451 | diff = ~0UL - dev_priv->last_count1; |
| 1452 | diff += total_count; |
| 1453 | } else { |
| 1454 | diff = total_count - dev_priv->last_count1; |
| 1455 | } |
| 1456 | |
| 1457 | for (i = 0; i < ARRAY_SIZE(cparams); i++) { |
| 1458 | if (cparams[i].i == dev_priv->c_m && |
| 1459 | cparams[i].t == dev_priv->r_t) { |
| 1460 | m = cparams[i].m; |
| 1461 | c = cparams[i].c; |
| 1462 | break; |
| 1463 | } |
| 1464 | } |
| 1465 | |
Jesse Barnes | d270ae3 | 2010-09-27 10:35:44 -0700 | [diff] [blame] | 1466 | diff = div_u64(diff, diff1); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1467 | ret = ((m * diff) + c); |
Jesse Barnes | d270ae3 | 2010-09-27 10:35:44 -0700 | [diff] [blame] | 1468 | ret = div_u64(ret, 10); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1469 | |
| 1470 | dev_priv->last_count1 = total_count; |
| 1471 | dev_priv->last_time1 = now; |
| 1472 | |
| 1473 | return ret; |
| 1474 | } |
| 1475 | |
| 1476 | unsigned long i915_mch_val(struct drm_i915_private *dev_priv) |
| 1477 | { |
| 1478 | unsigned long m, x, b; |
| 1479 | u32 tsfs; |
| 1480 | |
| 1481 | tsfs = I915_READ(TSFS); |
| 1482 | |
| 1483 | m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT); |
| 1484 | x = I915_READ8(TR1); |
| 1485 | |
| 1486 | b = tsfs & TSFS_INTR_MASK; |
| 1487 | |
| 1488 | return ((m * x) / 127) - b; |
| 1489 | } |
| 1490 | |
Chris Wilson | faa60c4 | 2010-11-23 13:50:14 +0000 | [diff] [blame] | 1491 | static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid) |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1492 | { |
Chris Wilson | faa60c4 | 2010-11-23 13:50:14 +0000 | [diff] [blame] | 1493 | static const struct v_table { |
| 1494 | u16 vd; /* in .1 mil */ |
| 1495 | u16 vm; /* in .1 mil */ |
| 1496 | } v_table[] = { |
| 1497 | { 0, 0, }, |
| 1498 | { 375, 0, }, |
| 1499 | { 500, 0, }, |
| 1500 | { 625, 0, }, |
| 1501 | { 750, 0, }, |
| 1502 | { 875, 0, }, |
| 1503 | { 1000, 0, }, |
| 1504 | { 1125, 0, }, |
| 1505 | { 4125, 3000, }, |
| 1506 | { 4125, 3000, }, |
| 1507 | { 4125, 3000, }, |
| 1508 | { 4125, 3000, }, |
| 1509 | { 4125, 3000, }, |
| 1510 | { 4125, 3000, }, |
| 1511 | { 4125, 3000, }, |
| 1512 | { 4125, 3000, }, |
| 1513 | { 4125, 3000, }, |
| 1514 | { 4125, 3000, }, |
| 1515 | { 4125, 3000, }, |
| 1516 | { 4125, 3000, }, |
| 1517 | { 4125, 3000, }, |
| 1518 | { 4125, 3000, }, |
| 1519 | { 4125, 3000, }, |
| 1520 | { 4125, 3000, }, |
| 1521 | { 4125, 3000, }, |
| 1522 | { 4125, 3000, }, |
| 1523 | { 4125, 3000, }, |
| 1524 | { 4125, 3000, }, |
| 1525 | { 4125, 3000, }, |
| 1526 | { 4125, 3000, }, |
| 1527 | { 4125, 3000, }, |
| 1528 | { 4125, 3000, }, |
| 1529 | { 4250, 3125, }, |
| 1530 | { 4375, 3250, }, |
| 1531 | { 4500, 3375, }, |
| 1532 | { 4625, 3500, }, |
| 1533 | { 4750, 3625, }, |
| 1534 | { 4875, 3750, }, |
| 1535 | { 5000, 3875, }, |
| 1536 | { 5125, 4000, }, |
| 1537 | { 5250, 4125, }, |
| 1538 | { 5375, 4250, }, |
| 1539 | { 5500, 4375, }, |
| 1540 | { 5625, 4500, }, |
| 1541 | { 5750, 4625, }, |
| 1542 | { 5875, 4750, }, |
| 1543 | { 6000, 4875, }, |
| 1544 | { 6125, 5000, }, |
| 1545 | { 6250, 5125, }, |
| 1546 | { 6375, 5250, }, |
| 1547 | { 6500, 5375, }, |
| 1548 | { 6625, 5500, }, |
| 1549 | { 6750, 5625, }, |
| 1550 | { 6875, 5750, }, |
| 1551 | { 7000, 5875, }, |
| 1552 | { 7125, 6000, }, |
| 1553 | { 7250, 6125, }, |
| 1554 | { 7375, 6250, }, |
| 1555 | { 7500, 6375, }, |
| 1556 | { 7625, 6500, }, |
| 1557 | { 7750, 6625, }, |
| 1558 | { 7875, 6750, }, |
| 1559 | { 8000, 6875, }, |
| 1560 | { 8125, 7000, }, |
| 1561 | { 8250, 7125, }, |
| 1562 | { 8375, 7250, }, |
| 1563 | { 8500, 7375, }, |
| 1564 | { 8625, 7500, }, |
| 1565 | { 8750, 7625, }, |
| 1566 | { 8875, 7750, }, |
| 1567 | { 9000, 7875, }, |
| 1568 | { 9125, 8000, }, |
| 1569 | { 9250, 8125, }, |
| 1570 | { 9375, 8250, }, |
| 1571 | { 9500, 8375, }, |
| 1572 | { 9625, 8500, }, |
| 1573 | { 9750, 8625, }, |
| 1574 | { 9875, 8750, }, |
| 1575 | { 10000, 8875, }, |
| 1576 | { 10125, 9000, }, |
| 1577 | { 10250, 9125, }, |
| 1578 | { 10375, 9250, }, |
| 1579 | { 10500, 9375, }, |
| 1580 | { 10625, 9500, }, |
| 1581 | { 10750, 9625, }, |
| 1582 | { 10875, 9750, }, |
| 1583 | { 11000, 9875, }, |
| 1584 | { 11125, 10000, }, |
| 1585 | { 11250, 10125, }, |
| 1586 | { 11375, 10250, }, |
| 1587 | { 11500, 10375, }, |
| 1588 | { 11625, 10500, }, |
| 1589 | { 11750, 10625, }, |
| 1590 | { 11875, 10750, }, |
| 1591 | { 12000, 10875, }, |
| 1592 | { 12125, 11000, }, |
| 1593 | { 12250, 11125, }, |
| 1594 | { 12375, 11250, }, |
| 1595 | { 12500, 11375, }, |
| 1596 | { 12625, 11500, }, |
| 1597 | { 12750, 11625, }, |
| 1598 | { 12875, 11750, }, |
| 1599 | { 13000, 11875, }, |
| 1600 | { 13125, 12000, }, |
| 1601 | { 13250, 12125, }, |
| 1602 | { 13375, 12250, }, |
| 1603 | { 13500, 12375, }, |
| 1604 | { 13625, 12500, }, |
| 1605 | { 13750, 12625, }, |
| 1606 | { 13875, 12750, }, |
| 1607 | { 14000, 12875, }, |
| 1608 | { 14125, 13000, }, |
| 1609 | { 14250, 13125, }, |
| 1610 | { 14375, 13250, }, |
| 1611 | { 14500, 13375, }, |
| 1612 | { 14625, 13500, }, |
| 1613 | { 14750, 13625, }, |
| 1614 | { 14875, 13750, }, |
| 1615 | { 15000, 13875, }, |
| 1616 | { 15125, 14000, }, |
| 1617 | { 15250, 14125, }, |
| 1618 | { 15375, 14250, }, |
| 1619 | { 15500, 14375, }, |
| 1620 | { 15625, 14500, }, |
| 1621 | { 15750, 14625, }, |
| 1622 | { 15875, 14750, }, |
| 1623 | { 16000, 14875, }, |
| 1624 | { 16125, 15000, }, |
| 1625 | }; |
| 1626 | if (dev_priv->info->is_mobile) |
| 1627 | return v_table[pxvid].vm; |
| 1628 | else |
| 1629 | return v_table[pxvid].vd; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1630 | } |
| 1631 | |
| 1632 | void i915_update_gfx_val(struct drm_i915_private *dev_priv) |
| 1633 | { |
| 1634 | struct timespec now, diff1; |
| 1635 | u64 diff; |
| 1636 | unsigned long diffms; |
| 1637 | u32 count; |
| 1638 | |
| 1639 | getrawmonotonic(&now); |
| 1640 | diff1 = timespec_sub(now, dev_priv->last_time2); |
| 1641 | |
| 1642 | /* Don't divide by 0 */ |
| 1643 | diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000; |
| 1644 | if (!diffms) |
| 1645 | return; |
| 1646 | |
| 1647 | count = I915_READ(GFXEC); |
| 1648 | |
| 1649 | if (count < dev_priv->last_count2) { |
| 1650 | diff = ~0UL - dev_priv->last_count2; |
| 1651 | diff += count; |
| 1652 | } else { |
| 1653 | diff = count - dev_priv->last_count2; |
| 1654 | } |
| 1655 | |
| 1656 | dev_priv->last_count2 = count; |
| 1657 | dev_priv->last_time2 = now; |
| 1658 | |
| 1659 | /* More magic constants... */ |
| 1660 | diff = diff * 1181; |
Jesse Barnes | d270ae3 | 2010-09-27 10:35:44 -0700 | [diff] [blame] | 1661 | diff = div_u64(diff, diffms * 10); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1662 | dev_priv->gfx_power = diff; |
| 1663 | } |
| 1664 | |
| 1665 | unsigned long i915_gfx_val(struct drm_i915_private *dev_priv) |
| 1666 | { |
| 1667 | unsigned long t, corr, state1, corr2, state2; |
| 1668 | u32 pxvid, ext_v; |
| 1669 | |
| 1670 | pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->cur_delay * 4)); |
| 1671 | pxvid = (pxvid >> 24) & 0x7f; |
| 1672 | ext_v = pvid_to_extvid(dev_priv, pxvid); |
| 1673 | |
| 1674 | state1 = ext_v; |
| 1675 | |
| 1676 | t = i915_mch_val(dev_priv); |
| 1677 | |
| 1678 | /* Revel in the empirically derived constants */ |
| 1679 | |
| 1680 | /* Correction factor in 1/100000 units */ |
| 1681 | if (t > 80) |
| 1682 | corr = ((t * 2349) + 135940); |
| 1683 | else if (t >= 50) |
| 1684 | corr = ((t * 964) + 29317); |
| 1685 | else /* < 50 */ |
| 1686 | corr = ((t * 301) + 1004); |
| 1687 | |
| 1688 | corr = corr * ((150142 * state1) / 10000 - 78642); |
| 1689 | corr /= 100000; |
| 1690 | corr2 = (corr * dev_priv->corr); |
| 1691 | |
| 1692 | state2 = (corr2 * state1) / 10000; |
| 1693 | state2 /= 100; /* convert to mW */ |
| 1694 | |
| 1695 | i915_update_gfx_val(dev_priv); |
| 1696 | |
| 1697 | return dev_priv->gfx_power + state2; |
| 1698 | } |
| 1699 | |
| 1700 | /* Global for IPS driver to get at the current i915 device */ |
| 1701 | static struct drm_i915_private *i915_mch_dev; |
| 1702 | /* |
| 1703 | * Lock protecting IPS related data structures |
| 1704 | * - i915_mch_dev |
| 1705 | * - dev_priv->max_delay |
| 1706 | * - dev_priv->min_delay |
| 1707 | * - dev_priv->fmax |
| 1708 | * - dev_priv->gpu_busy |
| 1709 | */ |
Chris Wilson | 995b6762 | 2010-08-20 13:23:26 +0100 | [diff] [blame] | 1710 | static DEFINE_SPINLOCK(mchdev_lock); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1711 | |
| 1712 | /** |
| 1713 | * i915_read_mch_val - return value for IPS use |
| 1714 | * |
| 1715 | * Calculate and return a value for the IPS driver to use when deciding whether |
| 1716 | * we have thermal and power headroom to increase CPU or GPU power budget. |
| 1717 | */ |
| 1718 | unsigned long i915_read_mch_val(void) |
| 1719 | { |
| 1720 | struct drm_i915_private *dev_priv; |
| 1721 | unsigned long chipset_val, graphics_val, ret = 0; |
| 1722 | |
| 1723 | spin_lock(&mchdev_lock); |
| 1724 | if (!i915_mch_dev) |
| 1725 | goto out_unlock; |
| 1726 | dev_priv = i915_mch_dev; |
| 1727 | |
| 1728 | chipset_val = i915_chipset_val(dev_priv); |
| 1729 | graphics_val = i915_gfx_val(dev_priv); |
| 1730 | |
| 1731 | ret = chipset_val + graphics_val; |
| 1732 | |
| 1733 | out_unlock: |
| 1734 | spin_unlock(&mchdev_lock); |
| 1735 | |
| 1736 | return ret; |
| 1737 | } |
| 1738 | EXPORT_SYMBOL_GPL(i915_read_mch_val); |
| 1739 | |
| 1740 | /** |
| 1741 | * i915_gpu_raise - raise GPU frequency limit |
| 1742 | * |
| 1743 | * Raise the limit; IPS indicates we have thermal headroom. |
| 1744 | */ |
| 1745 | bool i915_gpu_raise(void) |
| 1746 | { |
| 1747 | struct drm_i915_private *dev_priv; |
| 1748 | bool ret = true; |
| 1749 | |
| 1750 | spin_lock(&mchdev_lock); |
| 1751 | if (!i915_mch_dev) { |
| 1752 | ret = false; |
| 1753 | goto out_unlock; |
| 1754 | } |
| 1755 | dev_priv = i915_mch_dev; |
| 1756 | |
| 1757 | if (dev_priv->max_delay > dev_priv->fmax) |
| 1758 | dev_priv->max_delay--; |
| 1759 | |
| 1760 | out_unlock: |
| 1761 | spin_unlock(&mchdev_lock); |
| 1762 | |
| 1763 | return ret; |
| 1764 | } |
| 1765 | EXPORT_SYMBOL_GPL(i915_gpu_raise); |
| 1766 | |
| 1767 | /** |
| 1768 | * i915_gpu_lower - lower GPU frequency limit |
| 1769 | * |
| 1770 | * IPS indicates we're close to a thermal limit, so throttle back the GPU |
| 1771 | * frequency maximum. |
| 1772 | */ |
| 1773 | bool i915_gpu_lower(void) |
| 1774 | { |
| 1775 | struct drm_i915_private *dev_priv; |
| 1776 | bool ret = true; |
| 1777 | |
| 1778 | spin_lock(&mchdev_lock); |
| 1779 | if (!i915_mch_dev) { |
| 1780 | ret = false; |
| 1781 | goto out_unlock; |
| 1782 | } |
| 1783 | dev_priv = i915_mch_dev; |
| 1784 | |
| 1785 | if (dev_priv->max_delay < dev_priv->min_delay) |
| 1786 | dev_priv->max_delay++; |
| 1787 | |
| 1788 | out_unlock: |
| 1789 | spin_unlock(&mchdev_lock); |
| 1790 | |
| 1791 | return ret; |
| 1792 | } |
| 1793 | EXPORT_SYMBOL_GPL(i915_gpu_lower); |
| 1794 | |
| 1795 | /** |
| 1796 | * i915_gpu_busy - indicate GPU business to IPS |
| 1797 | * |
| 1798 | * Tell the IPS driver whether or not the GPU is busy. |
| 1799 | */ |
| 1800 | bool i915_gpu_busy(void) |
| 1801 | { |
| 1802 | struct drm_i915_private *dev_priv; |
| 1803 | bool ret = false; |
| 1804 | |
| 1805 | spin_lock(&mchdev_lock); |
| 1806 | if (!i915_mch_dev) |
| 1807 | goto out_unlock; |
| 1808 | dev_priv = i915_mch_dev; |
| 1809 | |
| 1810 | ret = dev_priv->busy; |
| 1811 | |
| 1812 | out_unlock: |
| 1813 | spin_unlock(&mchdev_lock); |
| 1814 | |
| 1815 | return ret; |
| 1816 | } |
| 1817 | EXPORT_SYMBOL_GPL(i915_gpu_busy); |
| 1818 | |
| 1819 | /** |
| 1820 | * i915_gpu_turbo_disable - disable graphics turbo |
| 1821 | * |
| 1822 | * Disable graphics turbo by resetting the max frequency and setting the |
| 1823 | * current frequency to the default. |
| 1824 | */ |
| 1825 | bool i915_gpu_turbo_disable(void) |
| 1826 | { |
| 1827 | struct drm_i915_private *dev_priv; |
| 1828 | bool ret = true; |
| 1829 | |
| 1830 | spin_lock(&mchdev_lock); |
| 1831 | if (!i915_mch_dev) { |
| 1832 | ret = false; |
| 1833 | goto out_unlock; |
| 1834 | } |
| 1835 | dev_priv = i915_mch_dev; |
| 1836 | |
| 1837 | dev_priv->max_delay = dev_priv->fstart; |
| 1838 | |
| 1839 | if (!ironlake_set_drps(dev_priv->dev, dev_priv->fstart)) |
| 1840 | ret = false; |
| 1841 | |
| 1842 | out_unlock: |
| 1843 | spin_unlock(&mchdev_lock); |
| 1844 | |
| 1845 | return ret; |
| 1846 | } |
| 1847 | EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable); |
| 1848 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1849 | /** |
Eric Anholt | 63ee41d | 2010-12-20 18:40:06 -0800 | [diff] [blame] | 1850 | * Tells the intel_ips driver that the i915 driver is now loaded, if |
| 1851 | * IPS got loaded first. |
| 1852 | * |
| 1853 | * This awkward dance is so that neither module has to depend on the |
| 1854 | * other in order for IPS to do the appropriate communication of |
| 1855 | * GPU turbo limits to i915. |
| 1856 | */ |
| 1857 | static void |
| 1858 | ips_ping_for_i915_load(void) |
| 1859 | { |
| 1860 | void (*link)(void); |
| 1861 | |
| 1862 | link = symbol_get(ips_link_to_i915_driver); |
| 1863 | if (link) { |
| 1864 | link(); |
| 1865 | symbol_put(ips_link_to_i915_driver); |
| 1866 | } |
| 1867 | } |
| 1868 | |
| 1869 | /** |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1870 | * i915_driver_load - setup chip and create an initial config |
| 1871 | * @dev: DRM device |
| 1872 | * @flags: startup flags |
| 1873 | * |
| 1874 | * The driver load routine has to do several things: |
| 1875 | * - drive output discovery via intel_modeset_init() |
| 1876 | * - initialize the memory manager |
| 1877 | * - allocate initial config memory |
| 1878 | * - setup the DRM framebuffer with the allocated memory |
| 1879 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 1880 | int i915_driver_load(struct drm_device *dev, unsigned long flags) |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 1881 | { |
Luca Tettamanti | ea059a1 | 2010-04-08 21:41:59 +0200 | [diff] [blame] | 1882 | struct drm_i915_private *dev_priv; |
Kristian Høgsberg | cfdf1fa | 2009-12-16 15:16:16 -0500 | [diff] [blame] | 1883 | int ret = 0, mmio_bar; |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 1884 | uint32_t agp_size; |
| 1885 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 1886 | /* i915 has 4 more counters */ |
| 1887 | dev->counters += 4; |
| 1888 | dev->types[6] = _DRM_STAT_IRQ; |
| 1889 | dev->types[7] = _DRM_STAT_PRIMARY; |
| 1890 | dev->types[8] = _DRM_STAT_SECONDARY; |
| 1891 | dev->types[9] = _DRM_STAT_DMA; |
| 1892 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 1893 | dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1894 | if (dev_priv == NULL) |
| 1895 | return -ENOMEM; |
| 1896 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1897 | dev->dev_private = (void *)dev_priv; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1898 | dev_priv->dev = dev; |
Kristian Høgsberg | cfdf1fa | 2009-12-16 15:16:16 -0500 | [diff] [blame] | 1899 | dev_priv->info = (struct intel_device_info *) flags; |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 1900 | |
Dave Airlie | ec2a4c3 | 2009-08-04 11:43:41 +1000 | [diff] [blame] | 1901 | if (i915_get_bridge_dev(dev)) { |
| 1902 | ret = -EIO; |
| 1903 | goto free_priv; |
| 1904 | } |
| 1905 | |
Daniel Vetter | 9f82d23 | 2010-08-30 21:25:23 +0200 | [diff] [blame] | 1906 | /* overlay on gen2 is broken and can't address above 1G */ |
| 1907 | if (IS_GEN2(dev)) |
| 1908 | dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30)); |
| 1909 | |
Jan Niehusmann | 6927faf | 2011-03-01 23:24:16 +0100 | [diff] [blame] | 1910 | /* 965GM sometimes incorrectly writes to hardware status page (HWS) |
| 1911 | * using 32bit addressing, overwriting memory if HWS is located |
| 1912 | * above 4GB. |
| 1913 | * |
| 1914 | * The documentation also mentions an issue with undefined |
| 1915 | * behaviour if any general state is accessed within a page above 4GB, |
| 1916 | * which also needs to be handled carefully. |
| 1917 | */ |
| 1918 | if (IS_BROADWATER(dev) || IS_CRESTLINE(dev)) |
| 1919 | dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32)); |
| 1920 | |
Chris Wilson | b4ce0f8 | 2010-10-28 11:26:06 +0100 | [diff] [blame] | 1921 | mmio_bar = IS_GEN2(dev) ? 1 : 0; |
| 1922 | dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, 0); |
| 1923 | if (!dev_priv->regs) { |
| 1924 | DRM_ERROR("failed to map registers\n"); |
| 1925 | ret = -EIO; |
| 1926 | goto put_bridge; |
| 1927 | } |
| 1928 | |
Chris Wilson | 71e9339 | 2010-10-27 18:46:52 +0100 | [diff] [blame] | 1929 | dev_priv->mm.gtt = intel_gtt_get(); |
| 1930 | if (!dev_priv->mm.gtt) { |
| 1931 | DRM_ERROR("Failed to initialize GTT\n"); |
| 1932 | ret = -ENODEV; |
| 1933 | goto out_iomapfree; |
| 1934 | } |
| 1935 | |
Chris Wilson | 71e9339 | 2010-10-27 18:46:52 +0100 | [diff] [blame] | 1936 | agp_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT; |
| 1937 | |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1938 | dev_priv->mm.gtt_mapping = |
Chris Wilson | 71e9339 | 2010-10-27 18:46:52 +0100 | [diff] [blame] | 1939 | io_mapping_create_wc(dev->agp->base, agp_size); |
Venkatesh Pallipadi | 6644107d | 2009-02-24 17:35:11 -0800 | [diff] [blame] | 1940 | if (dev_priv->mm.gtt_mapping == NULL) { |
| 1941 | ret = -EIO; |
| 1942 | goto out_rmmap; |
| 1943 | } |
| 1944 | |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1945 | /* Set up a WC MTRR for non-PAT systems. This is more common than |
| 1946 | * one would think, because the kernel disables PAT on first |
| 1947 | * generation Core chips because WC PAT gets overridden by a UC |
| 1948 | * MTRR if present. Even if a UC MTRR isn't present. |
| 1949 | */ |
| 1950 | dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base, |
Chris Wilson | 71e9339 | 2010-10-27 18:46:52 +0100 | [diff] [blame] | 1951 | agp_size, |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1952 | MTRR_TYPE_WRCOMB, 1); |
| 1953 | if (dev_priv->mm.gtt_mtrr < 0) { |
Eric Anholt | 040aefa | 2009-03-10 12:31:12 -0700 | [diff] [blame] | 1954 | DRM_INFO("MTRR allocation failed. Graphics " |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 1955 | "performance may suffer.\n"); |
| 1956 | } |
| 1957 | |
Chris Wilson | e642abb | 2010-09-09 12:46:34 +0100 | [diff] [blame] | 1958 | /* The i915 workqueue is primarily used for batched retirement of |
| 1959 | * requests (and thus managing bo) once the task has been completed |
| 1960 | * by the GPU. i915_gem_retire_requests() is called directly when we |
| 1961 | * need high-priority retirement, such as waiting for an explicit |
| 1962 | * bo. |
| 1963 | * |
| 1964 | * It is also used for periodic low-priority events, such as |
Eric Anholt | df9c204 | 2010-11-18 09:31:12 +0800 | [diff] [blame] | 1965 | * idle-timers and recording error state. |
Chris Wilson | e642abb | 2010-09-09 12:46:34 +0100 | [diff] [blame] | 1966 | * |
| 1967 | * All tasks on the workqueue are expected to acquire the dev mutex |
| 1968 | * so there is no point in running more than one instance of the |
| 1969 | * workqueue at any time: max_active = 1 and NON_REENTRANT. |
| 1970 | */ |
| 1971 | dev_priv->wq = alloc_workqueue("i915", |
| 1972 | WQ_UNBOUND | WQ_NON_REENTRANT, |
| 1973 | 1); |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 1974 | if (dev_priv->wq == NULL) { |
| 1975 | DRM_ERROR("Failed to create our workqueue.\n"); |
| 1976 | ret = -ENOMEM; |
| 1977 | goto out_iomapfree; |
| 1978 | } |
| 1979 | |
Dave Airlie | ac5c4e7 | 2008-12-19 15:38:34 +1000 | [diff] [blame] | 1980 | /* enable GEM by default */ |
| 1981 | dev_priv->has_gem = 1; |
Dave Airlie | ac5c4e7 | 2008-12-19 15:38:34 +1000 | [diff] [blame] | 1982 | |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 1983 | dev->driver->get_vblank_counter = i915_get_vblank_counter; |
Jesse Barnes | 42c2798 | 2009-05-05 13:13:16 -0700 | [diff] [blame] | 1984 | dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */ |
Chris Wilson | f00a3dd | 2010-10-21 14:57:17 +0100 | [diff] [blame] | 1985 | if (IS_G4X(dev) || IS_GEN5(dev) || IS_GEN6(dev)) { |
Jesse Barnes | 42c2798 | 2009-05-05 13:13:16 -0700 | [diff] [blame] | 1986 | dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */ |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 1987 | dev->driver->get_vblank_counter = gm45_get_vblank_counter; |
Jesse Barnes | 42c2798 | 2009-05-05 13:13:16 -0700 | [diff] [blame] | 1988 | } |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 1989 | |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1990 | /* Try to make sure MCHBAR is enabled before poking at it */ |
| 1991 | intel_setup_mchbar(dev); |
Chris Wilson | f899fc6 | 2010-07-20 15:44:45 -0700 | [diff] [blame] | 1992 | intel_setup_gmbus(dev); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1993 | intel_opregion_setup(dev); |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 1994 | |
Bryan Freed | 6d139a8 | 2010-10-14 09:14:51 +0100 | [diff] [blame] | 1995 | /* Make sure the bios did its job and set up vital registers */ |
| 1996 | intel_setup_bios(dev); |
| 1997 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1998 | i915_gem_load(dev); |
| 1999 | |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 2000 | /* Init HWS */ |
| 2001 | if (!I915_NEED_GFX_HWS(dev)) { |
| 2002 | ret = i915_init_phys_hws(dev); |
Chris Wilson | 56e2ea3 | 2010-11-08 17:10:29 +0000 | [diff] [blame] | 2003 | if (ret) |
| 2004 | goto out_gem_unload; |
Keith Packard | 398c9cb | 2008-07-30 13:03:43 -0700 | [diff] [blame] | 2005 | } |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 2006 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 2007 | if (IS_PINEVIEW(dev)) |
| 2008 | i915_pineview_get_mem_freq(dev); |
Chris Wilson | f00a3dd | 2010-10-21 14:57:17 +0100 | [diff] [blame] | 2009 | else if (IS_GEN5(dev)) |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 2010 | i915_ironlake_get_mem_freq(dev); |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 2011 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 2012 | /* On the 945G/GM, the chipset reports the MSI capability on the |
| 2013 | * integrated graphics even though the support isn't actually there |
| 2014 | * according to the published specs. It doesn't appear to function |
| 2015 | * correctly in testing on 945G. |
| 2016 | * This may be a side effect of MSI having been made available for PEG |
| 2017 | * and the registers being closely associated. |
Keith Packard | d1ed629 | 2008-10-17 00:44:42 -0700 | [diff] [blame] | 2018 | * |
| 2019 | * According to chipset errata, on the 965GM, MSI interrupts may |
Keith Packard | b60678a | 2008-12-08 11:12:28 -0800 | [diff] [blame] | 2020 | * be lost or delayed, but we use them anyways to avoid |
| 2021 | * stuck interrupts on some machines. |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 2022 | */ |
Keith Packard | b60678a | 2008-12-08 11:12:28 -0800 | [diff] [blame] | 2023 | if (!IS_I945G(dev) && !IS_I945GM(dev)) |
Eric Anholt | d3e74d0 | 2008-11-03 14:46:17 -0800 | [diff] [blame] | 2024 | pci_enable_msi(dev->pdev); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 2025 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2026 | spin_lock_init(&dev_priv->irq_lock); |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 2027 | spin_lock_init(&dev_priv->error_lock); |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 2028 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2029 | if (IS_MOBILE(dev) || !IS_GEN2(dev)) |
| 2030 | dev_priv->num_pipe = 2; |
| 2031 | else |
| 2032 | dev_priv->num_pipe = 1; |
| 2033 | |
| 2034 | ret = drm_vblank_init(dev, dev_priv->num_pipe); |
Chris Wilson | 56e2ea3 | 2010-11-08 17:10:29 +0000 | [diff] [blame] | 2035 | if (ret) |
| 2036 | goto out_gem_unload; |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame] | 2037 | |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 2038 | /* Start out suspended */ |
| 2039 | dev_priv->mm.suspended = 1; |
| 2040 | |
Zhenyu Wang | 3bad078 | 2010-04-07 16:15:53 +0800 | [diff] [blame] | 2041 | intel_detect_pch(dev); |
| 2042 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2043 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Daniel Vetter | 5398463 | 2010-09-22 23:44:24 +0200 | [diff] [blame] | 2044 | ret = i915_load_modeset_init(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2045 | if (ret < 0) { |
| 2046 | DRM_ERROR("failed to init modeset\n"); |
Chris Wilson | 56e2ea3 | 2010-11-08 17:10:29 +0000 | [diff] [blame] | 2047 | goto out_gem_unload; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2048 | } |
| 2049 | } |
| 2050 | |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2051 | /* Must be done after probing outputs */ |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 2052 | intel_opregion_init(dev); |
| 2053 | acpi_video_register(); |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2054 | |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 2055 | setup_timer(&dev_priv->hangcheck_timer, i915_hangcheck_elapsed, |
| 2056 | (unsigned long) dev); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 2057 | |
| 2058 | spin_lock(&mchdev_lock); |
| 2059 | i915_mch_dev = dev_priv; |
| 2060 | dev_priv->mchdev_lock = &mchdev_lock; |
| 2061 | spin_unlock(&mchdev_lock); |
| 2062 | |
Eric Anholt | 63ee41d | 2010-12-20 18:40:06 -0800 | [diff] [blame] | 2063 | ips_ping_for_i915_load(); |
| 2064 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2065 | return 0; |
| 2066 | |
Chris Wilson | 56e2ea3 | 2010-11-08 17:10:29 +0000 | [diff] [blame] | 2067 | out_gem_unload: |
| 2068 | if (dev->pdev->msi_enabled) |
| 2069 | pci_disable_msi(dev->pdev); |
| 2070 | |
| 2071 | intel_teardown_gmbus(dev); |
| 2072 | intel_teardown_mchbar(dev); |
Eric Anholt | 9c9fe1f | 2009-08-03 16:09:16 -0700 | [diff] [blame] | 2073 | destroy_workqueue(dev_priv->wq); |
Venkatesh Pallipadi | 6644107d | 2009-02-24 17:35:11 -0800 | [diff] [blame] | 2074 | out_iomapfree: |
| 2075 | io_mapping_free(dev_priv->mm.gtt_mapping); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2076 | out_rmmap: |
Chris Wilson | 6dda569 | 2010-10-29 21:02:18 +0100 | [diff] [blame] | 2077 | pci_iounmap(dev->pdev, dev_priv->regs); |
Dave Airlie | ec2a4c3 | 2009-08-04 11:43:41 +1000 | [diff] [blame] | 2078 | put_bridge: |
| 2079 | pci_dev_put(dev_priv->bridge_dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2080 | free_priv: |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 2081 | kfree(dev_priv); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 2082 | return ret; |
| 2083 | } |
| 2084 | |
| 2085 | int i915_driver_unload(struct drm_device *dev) |
| 2086 | { |
| 2087 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | c911fc1 | 2010-08-20 21:23:20 +0200 | [diff] [blame] | 2088 | int ret; |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 2089 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 2090 | spin_lock(&mchdev_lock); |
| 2091 | i915_mch_dev = NULL; |
| 2092 | spin_unlock(&mchdev_lock); |
| 2093 | |
Chris Wilson | 17250b7 | 2010-10-28 12:51:39 +0100 | [diff] [blame] | 2094 | if (dev_priv->mm.inactive_shrinker.shrink) |
| 2095 | unregister_shrinker(&dev_priv->mm.inactive_shrinker); |
| 2096 | |
Daniel Vetter | c911fc1 | 2010-08-20 21:23:20 +0200 | [diff] [blame] | 2097 | mutex_lock(&dev->struct_mutex); |
| 2098 | ret = i915_gpu_idle(dev); |
| 2099 | if (ret) |
| 2100 | DRM_ERROR("failed to idle hardware: %d\n", ret); |
| 2101 | mutex_unlock(&dev->struct_mutex); |
| 2102 | |
Daniel Vetter | 75ef9da | 2010-08-21 00:25:16 +0200 | [diff] [blame] | 2103 | /* Cancel the retire work handler, which should be idle now. */ |
| 2104 | cancel_delayed_work_sync(&dev_priv->mm.retire_work); |
| 2105 | |
Eric Anholt | ab657db1 | 2009-01-23 12:57:47 -0800 | [diff] [blame] | 2106 | io_mapping_free(dev_priv->mm.gtt_mapping); |
| 2107 | if (dev_priv->mm.gtt_mtrr >= 0) { |
| 2108 | mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base, |
| 2109 | dev->agp->agp_info.aper_size * 1024 * 1024); |
| 2110 | dev_priv->mm.gtt_mtrr = -1; |
| 2111 | } |
| 2112 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 2113 | acpi_video_unregister(); |
| 2114 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2115 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Chris Wilson | 7b4f399 | 2010-10-04 15:33:04 +0100 | [diff] [blame] | 2116 | intel_fbdev_fini(dev); |
Jesse Barnes | 3d8620c | 2010-03-26 11:07:21 -0700 | [diff] [blame] | 2117 | intel_modeset_cleanup(dev); |
| 2118 | |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 2119 | /* |
| 2120 | * free the memory space allocated for the child device |
| 2121 | * config parsed from VBT |
| 2122 | */ |
| 2123 | if (dev_priv->child_dev && dev_priv->child_dev_num) { |
| 2124 | kfree(dev_priv->child_dev); |
| 2125 | dev_priv->child_dev = NULL; |
| 2126 | dev_priv->child_dev_num = 0; |
| 2127 | } |
Daniel Vetter | 6c0d9350 | 2010-08-20 18:26:46 +0200 | [diff] [blame] | 2128 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 2129 | vga_switcheroo_unregister_client(dev->pdev); |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 2130 | vga_client_register(dev->pdev, NULL, NULL, NULL); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2131 | } |
| 2132 | |
Daniel Vetter | a8b4899 | 2010-08-20 21:25:11 +0200 | [diff] [blame] | 2133 | /* Free error state after interrupts are fully disabled. */ |
Daniel Vetter | bc0c7f1 | 2010-08-20 18:18:48 +0200 | [diff] [blame] | 2134 | del_timer_sync(&dev_priv->hangcheck_timer); |
| 2135 | cancel_work_sync(&dev_priv->error_work); |
Daniel Vetter | a8b4899 | 2010-08-20 21:25:11 +0200 | [diff] [blame] | 2136 | i915_destroy_error_state(dev); |
Daniel Vetter | bc0c7f1 | 2010-08-20 18:18:48 +0200 | [diff] [blame] | 2137 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 2138 | if (dev->pdev->msi_enabled) |
| 2139 | pci_disable_msi(dev->pdev); |
| 2140 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 2141 | intel_opregion_fini(dev); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 2142 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2143 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 2144 | /* Flush any outstanding unpin_work. */ |
| 2145 | flush_workqueue(dev_priv->wq); |
| 2146 | |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 2147 | i915_gem_free_all_phys_object(dev); |
| 2148 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2149 | mutex_lock(&dev->struct_mutex); |
| 2150 | i915_gem_cleanup_ringbuffer(dev); |
| 2151 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 20bf377 | 2010-04-21 11:39:22 -0700 | [diff] [blame] | 2152 | if (I915_HAS_FBC(dev) && i915_powersave) |
| 2153 | i915_cleanup_compression(dev); |
Chris Wilson | fe669bf | 2010-11-23 12:09:30 +0000 | [diff] [blame] | 2154 | drm_mm_takedown(&dev_priv->mm.stolen); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 2155 | |
| 2156 | intel_cleanup_overlay(dev); |
Keith Packard | c2873e9 | 2010-10-07 09:20:12 +0100 | [diff] [blame] | 2157 | |
| 2158 | if (!I915_NEED_GFX_HWS(dev)) |
| 2159 | i915_free_hws(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2160 | } |
| 2161 | |
Daniel Vetter | 701394c | 2010-10-10 18:54:08 +0100 | [diff] [blame] | 2162 | if (dev_priv->regs != NULL) |
Chris Wilson | 6dda569 | 2010-10-29 21:02:18 +0100 | [diff] [blame] | 2163 | pci_iounmap(dev->pdev, dev_priv->regs); |
Daniel Vetter | 701394c | 2010-10-10 18:54:08 +0100 | [diff] [blame] | 2164 | |
Chris Wilson | f899fc6 | 2010-07-20 15:44:45 -0700 | [diff] [blame] | 2165 | intel_teardown_gmbus(dev); |
Zhenyu Wang | c4804411 | 2009-12-17 14:48:43 +0800 | [diff] [blame] | 2166 | intel_teardown_mchbar(dev); |
| 2167 | |
Daniel Vetter | bc0c7f1 | 2010-08-20 18:18:48 +0200 | [diff] [blame] | 2168 | destroy_workqueue(dev_priv->wq); |
| 2169 | |
Dave Airlie | ec2a4c3 | 2009-08-04 11:43:41 +1000 | [diff] [blame] | 2170 | pci_dev_put(dev_priv->bridge_dev); |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 2171 | kfree(dev->dev_private); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 2172 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 2173 | return 0; |
| 2174 | } |
| 2175 | |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 2176 | int i915_driver_open(struct drm_device *dev, struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2177 | { |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 2178 | struct drm_i915_file_private *file_priv; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2179 | |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 2180 | DRM_DEBUG_DRIVER("\n"); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 2181 | file_priv = kmalloc(sizeof(*file_priv), GFP_KERNEL); |
| 2182 | if (!file_priv) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2183 | return -ENOMEM; |
| 2184 | |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 2185 | file->driver_priv = file_priv; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2186 | |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 2187 | spin_lock_init(&file_priv->mm.lock); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 2188 | INIT_LIST_HEAD(&file_priv->mm.request_list); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2189 | |
| 2190 | return 0; |
| 2191 | } |
| 2192 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2193 | /** |
| 2194 | * i915_driver_lastclose - clean up after all DRM clients have exited |
| 2195 | * @dev: DRM device |
| 2196 | * |
| 2197 | * Take care of cleaning up after all DRM clients have exited. In the |
| 2198 | * mode setting case, we want to restore the kernel's initial mode (just |
| 2199 | * in case the last client left us in a bad state). |
| 2200 | * |
| 2201 | * Additionally, in the non-mode setting case, we'll tear down the AGP |
| 2202 | * and DMA structures, since the kernel won't be using them, and clea |
| 2203 | * up any GEM state. |
| 2204 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 2205 | void i915_driver_lastclose(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 2207 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 2208 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2209 | if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) { |
Dave Airlie | e8e7a2b | 2011-04-21 22:18:32 +0100 | [diff] [blame] | 2210 | intel_fb_restore_mode(dev); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 2211 | vga_switcheroo_process_delayed_switch(); |
Dave Airlie | 144a75f | 2008-03-30 07:53:58 +1000 | [diff] [blame] | 2212 | return; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2213 | } |
Dave Airlie | 144a75f | 2008-03-30 07:53:58 +1000 | [diff] [blame] | 2214 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2215 | i915_gem_lastclose(dev); |
| 2216 | |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 2217 | if (dev_priv->agp_heap) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 2218 | i915_mem_takedown(&(dev_priv->agp_heap)); |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 2219 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 2220 | i915_dma_cleanup(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | } |
| 2222 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 2223 | void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | { |
Jesse Barnes | ba8bbcf | 2007-11-22 14:14:14 +1000 | [diff] [blame] | 2225 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 2226 | i915_gem_release(dev, file_priv); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 2227 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 2228 | i915_mem_release(dev, file_priv, dev_priv->agp_heap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | } |
| 2230 | |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 2231 | void i915_driver_postclose(struct drm_device *dev, struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2232 | { |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 2233 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2234 | |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 2235 | kfree(file_priv); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2236 | } |
| 2237 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 2238 | struct drm_ioctl_desc i915_ioctls[] = { |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 2239 | DRM_IOCTL_DEF_DRV(I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 2240 | DRM_IOCTL_DEF_DRV(I915_FLUSH, i915_flush_ioctl, DRM_AUTH), |
| 2241 | DRM_IOCTL_DEF_DRV(I915_FLIP, i915_flip_bufs, DRM_AUTH), |
| 2242 | DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH), |
| 2243 | DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH), |
| 2244 | DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH), |
| 2245 | DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH), |
| 2246 | DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 2247 | DRM_IOCTL_DEF_DRV(I915_ALLOC, i915_mem_alloc, DRM_AUTH), |
| 2248 | DRM_IOCTL_DEF_DRV(I915_FREE, i915_mem_free, DRM_AUTH), |
| 2249 | DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 2250 | DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH), |
| 2251 | DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 2252 | DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 2253 | DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, i915_vblank_pipe_get, DRM_AUTH), |
| 2254 | DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH), |
| 2255 | DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 2256 | DRM_IOCTL_DEF_DRV(I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED), |
| 2257 | DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED), |
| 2258 | DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED), |
| 2259 | DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED), |
| 2260 | DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED), |
| 2261 | DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED), |
| 2262 | DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED), |
| 2263 | DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED), |
| 2264 | DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED), |
| 2265 | DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED), |
| 2266 | DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED), |
| 2267 | DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED), |
| 2268 | DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED), |
| 2269 | DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED), |
| 2270 | DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED), |
| 2271 | DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED), |
| 2272 | DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED), |
| 2273 | DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED), |
| 2274 | DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED), |
| 2275 | DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED), |
| 2276 | DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED), |
| 2277 | DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED), |
| 2278 | DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED), |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 2279 | }; |
| 2280 | |
| 2281 | int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls); |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 2282 | |
| 2283 | /** |
| 2284 | * Determine if the device really is AGP or not. |
| 2285 | * |
| 2286 | * All Intel graphics chipsets are treated as AGP, even if they are really |
| 2287 | * PCI-e. |
| 2288 | * |
| 2289 | * \param dev The device to be tested. |
| 2290 | * |
| 2291 | * \returns |
| 2292 | * A value of 1 is always retured to indictate every i9x5 is AGP. |
| 2293 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 2294 | int i915_driver_device_is_agp(struct drm_device * dev) |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 2295 | { |
| 2296 | return 1; |
| 2297 | } |