blob: a3d1a125b5e0d5dba6f0a214d58e4e2d83dd11d4 [file] [log] [blame]
Chris Wilson9797fbf2012-04-24 15:47:39 +01001/*
2 * Copyright © 2008-2012 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 * Chris Wilson <chris@chris-wilson.co.uk>
26 *
27 */
28
David Howells760285e2012-10-02 18:01:07 +010029#include <drm/drmP.h>
30#include <drm/i915_drm.h>
Chris Wilson9797fbf2012-04-24 15:47:39 +010031#include "i915_drv.h"
32
33/*
34 * The BIOS typically reserves some of the system's memory for the exclusive
35 * use of the integrated graphics. This memory is no longer available for
36 * use by the OS and so the user finds that his system has less memory
37 * available than he put in. We refer to this memory as stolen.
38 *
39 * The BIOS will allocate its framebuffer from the stolen memory. Our
40 * goal is try to reuse that object for our own fbcon which must always
41 * be available for panics. Anything else we can reuse the stolen memory
42 * for is a boon.
43 */
44
Chris Wilsone12a2d52012-11-15 11:32:18 +000045static unsigned long i915_stolen_to_physical(struct drm_device *dev)
Chris Wilson9797fbf2012-04-24 15:47:39 +010046{
47 struct drm_i915_private *dev_priv = dev->dev_private;
48 struct pci_dev *pdev = dev_priv->bridge_dev;
Chris Wilsoneaba1b82013-07-04 12:28:35 +010049 struct resource *r;
Chris Wilson9797fbf2012-04-24 15:47:39 +010050 u32 base;
51
Chris Wilson9797fbf2012-04-24 15:47:39 +010052 /* On the machines I have tested the Graphics Base of Stolen Memory
Chris Wilsone12a2d52012-11-15 11:32:18 +000053 * is unreliable, so on those compute the base by subtracting the
54 * stolen memory from the Top of Low Usable DRAM which is where the
55 * BIOS places the graphics stolen memory.
56 *
57 * On gen2, the layout is slightly different with the Graphics Segment
58 * immediately following Top of Memory (or Top of Usable DRAM). Note
59 * it appears that TOUD is only reported by 865g, so we just use the
60 * top of memory as determined by the e820 probe.
61 *
62 * XXX gen2 requires an unavailable symbol and 945gm fails with
63 * its value of TOLUD.
Chris Wilson9797fbf2012-04-24 15:47:39 +010064 */
Chris Wilsone12a2d52012-11-15 11:32:18 +000065 base = 0;
Jesse Barnesc9cddff2013-05-08 10:45:13 -070066 if (IS_VALLEYVIEW(dev)) {
67 pci_read_config_dword(dev->pdev, 0x5c, &base);
68 base &= ~((1<<20) - 1);
69 } else if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsone12a2d52012-11-15 11:32:18 +000070 /* Read Base Data of Stolen Memory Register (BDSM) directly.
71 * Note that there is also a MCHBAR miror at 0x1080c0 or
72 * we could use device 2:0x5c instead.
73 */
74 pci_read_config_dword(pdev, 0xB0, &base);
75 base &= ~4095; /* lower bits used for locking register */
76 } else if (INTEL_INFO(dev)->gen > 3 || IS_G33(dev)) {
77 /* Read Graphics Base of Stolen Memory directly */
Chris Wilson9797fbf2012-04-24 15:47:39 +010078 pci_read_config_dword(pdev, 0xA4, &base);
Chris Wilsone12a2d52012-11-15 11:32:18 +000079#if 0
80 } else if (IS_GEN3(dev)) {
Chris Wilson9797fbf2012-04-24 15:47:39 +010081 u8 val;
Chris Wilsone12a2d52012-11-15 11:32:18 +000082 /* Stolen is immediately below Top of Low Usable DRAM */
Chris Wilson9797fbf2012-04-24 15:47:39 +010083 pci_read_config_byte(pdev, 0x9c, &val);
84 base = val >> 3 << 27;
Chris Wilsone12a2d52012-11-15 11:32:18 +000085 base -= dev_priv->mm.gtt->stolen_size;
86 } else {
87 /* Stolen is immediately above Top of Memory */
88 base = max_low_pfn_mapped << PAGE_SHIFT;
Chris Wilson9797fbf2012-04-24 15:47:39 +010089#endif
Chris Wilsone12a2d52012-11-15 11:32:18 +000090 }
Chris Wilson9797fbf2012-04-24 15:47:39 +010091
Chris Wilsoneaba1b82013-07-04 12:28:35 +010092 if (base == 0)
93 return 0;
94
95 /* Verify that nothing else uses this physical address. Stolen
96 * memory should be reserved by the BIOS and hidden from the
97 * kernel. So if the region is already marked as busy, something
98 * is seriously wrong.
99 */
100 r = devm_request_mem_region(dev->dev, base, dev_priv->gtt.stolen_size,
101 "Graphics Stolen Memory");
102 if (r == NULL) {
103 DRM_ERROR("conflict detected with stolen region: [0x%08x - 0x%08x]\n",
104 base, base + (uint32_t)dev_priv->gtt.stolen_size);
105 base = 0;
106 }
107
Chris Wilsone12a2d52012-11-15 11:32:18 +0000108 return base;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100109}
110
Chris Wilson11be49e2012-11-15 11:32:20 +0000111static int i915_setup_compression(struct drm_device *dev, int size)
Chris Wilson9797fbf2012-04-24 15:47:39 +0100112{
113 struct drm_i915_private *dev_priv = dev->dev_private;
114 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
David Herrmann06e78ed2013-07-27 16:21:27 +0200115 int ret;
116
117 compressed_fb = kzalloc(sizeof(*compressed_fb), GFP_KERNEL);
118 if (!compressed_fb)
119 goto err_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100120
Chris Wilson11be49e2012-11-15 11:32:20 +0000121 /* Try to over-allocate to reduce reallocations and fragmentation */
David Herrmann06e78ed2013-07-27 16:21:27 +0200122 ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_fb,
123 size <<= 1, 4096, DRM_MM_SEARCH_DEFAULT);
124 if (ret)
125 ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_fb,
126 size >>= 1, 4096,
127 DRM_MM_SEARCH_DEFAULT);
128 if (ret)
129 goto err_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100130
Chris Wilson11be49e2012-11-15 11:32:20 +0000131 if (HAS_PCH_SPLIT(dev))
132 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
133 else if (IS_GM45(dev)) {
134 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
135 } else {
David Herrmann06e78ed2013-07-27 16:21:27 +0200136 compressed_llb = kzalloc(sizeof(*compressed_llb), GFP_KERNEL);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100137 if (!compressed_llb)
138 goto err_fb;
139
David Herrmann06e78ed2013-07-27 16:21:27 +0200140 ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_llb,
141 4096, 4096, DRM_MM_SEARCH_DEFAULT);
142 if (ret)
143 goto err_fb;
144
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700145 dev_priv->fbc.compressed_llb = compressed_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100146
Chris Wilson11be49e2012-11-15 11:32:20 +0000147 I915_WRITE(FBC_CFB_BASE,
148 dev_priv->mm.stolen_base + compressed_fb->start);
149 I915_WRITE(FBC_LL_BASE,
150 dev_priv->mm.stolen_base + compressed_llb->start);
151 }
Chris Wilson9797fbf2012-04-24 15:47:39 +0100152
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700153 dev_priv->fbc.compressed_fb = compressed_fb;
154 dev_priv->fbc.size = size;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100155
Chris Wilson11be49e2012-11-15 11:32:20 +0000156 DRM_DEBUG_KMS("reserved %d bytes of contiguous stolen space for FBC\n",
157 size);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100158
Chris Wilson11be49e2012-11-15 11:32:20 +0000159 return 0;
160
Chris Wilson9797fbf2012-04-24 15:47:39 +0100161err_fb:
David Herrmann06e78ed2013-07-27 16:21:27 +0200162 kfree(compressed_llb);
163 drm_mm_remove_node(compressed_fb);
164err_llb:
165 kfree(compressed_fb);
Chris Wilsond8241782013-04-27 12:44:16 +0100166 pr_info_once("drm: not enough stolen space for compressed buffer (need %d more bytes), disabling. Hint: you may be able to increase stolen memory size in the BIOS to avoid this.\n", size);
Chris Wilson11be49e2012-11-15 11:32:20 +0000167 return -ENOSPC;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100168}
169
Chris Wilson11be49e2012-11-15 11:32:20 +0000170int i915_gem_stolen_setup_compression(struct drm_device *dev, int size)
Chris Wilson9797fbf2012-04-24 15:47:39 +0100171{
172 struct drm_i915_private *dev_priv = dev->dev_private;
173
Daniel Vetter446f8d82013-07-02 10:48:31 +0200174 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson11be49e2012-11-15 11:32:20 +0000175 return -ENODEV;
176
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700177 if (size < dev_priv->fbc.size)
Chris Wilson11be49e2012-11-15 11:32:20 +0000178 return 0;
179
180 /* Release any current block */
181 i915_gem_stolen_cleanup_compression(dev);
182
183 return i915_setup_compression(dev, size);
184}
185
186void i915_gem_stolen_cleanup_compression(struct drm_device *dev)
187{
188 struct drm_i915_private *dev_priv = dev->dev_private;
189
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700190 if (dev_priv->fbc.size == 0)
Chris Wilson11be49e2012-11-15 11:32:20 +0000191 return;
192
David Herrmann06e78ed2013-07-27 16:21:27 +0200193 if (dev_priv->fbc.compressed_fb) {
194 drm_mm_remove_node(dev_priv->fbc.compressed_fb);
195 kfree(dev_priv->fbc.compressed_fb);
196 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000197
David Herrmann06e78ed2013-07-27 16:21:27 +0200198 if (dev_priv->fbc.compressed_llb) {
199 drm_mm_remove_node(dev_priv->fbc.compressed_llb);
200 kfree(dev_priv->fbc.compressed_llb);
201 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000202
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700203 dev_priv->fbc.size = 0;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100204}
205
206void i915_gem_cleanup_stolen(struct drm_device *dev)
207{
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100208 struct drm_i915_private *dev_priv = dev->dev_private;
209
Daniel Vetter446f8d82013-07-02 10:48:31 +0200210 if (!drm_mm_initialized(&dev_priv->mm.stolen))
211 return;
212
Chris Wilson11be49e2012-11-15 11:32:20 +0000213 i915_gem_stolen_cleanup_compression(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100214 drm_mm_takedown(&dev_priv->mm.stolen);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100215}
216
217int i915_gem_init_stolen(struct drm_device *dev)
218{
219 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700220 int bios_reserved = 0;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100221
Chris Wilsone12a2d52012-11-15 11:32:18 +0000222 dev_priv->mm.stolen_base = i915_stolen_to_physical(dev);
223 if (dev_priv->mm.stolen_base == 0)
224 return 0;
225
Ben Widawskya54c0c22013-01-24 14:45:00 -0800226 DRM_DEBUG_KMS("found %zd bytes of stolen memory at %08lx\n",
227 dev_priv->gtt.stolen_size, dev_priv->mm.stolen_base);
Chris Wilsone12a2d52012-11-15 11:32:18 +0000228
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700229 if (IS_VALLEYVIEW(dev))
230 bios_reserved = 1024*1024; /* top 1M on VLV/BYT */
231
Daniel Vetter897f9ed2013-07-09 14:44:27 +0200232 if (WARN_ON(bios_reserved > dev_priv->gtt.stolen_size))
233 return 0;
234
Chris Wilson9797fbf2012-04-24 15:47:39 +0100235 /* Basic memrange allocator for stolen space */
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700236 drm_mm_init(&dev_priv->mm.stolen, 0, dev_priv->gtt.stolen_size -
237 bios_reserved);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100238
239 return 0;
240}
Chris Wilson0104fdb2012-11-15 11:32:26 +0000241
242static struct sg_table *
243i915_pages_create_for_stolen(struct drm_device *dev,
244 u32 offset, u32 size)
245{
246 struct drm_i915_private *dev_priv = dev->dev_private;
247 struct sg_table *st;
248 struct scatterlist *sg;
249
250 DRM_DEBUG_DRIVER("offset=0x%x, size=%d\n", offset, size);
Ben Widawskya54c0c22013-01-24 14:45:00 -0800251 BUG_ON(offset > dev_priv->gtt.stolen_size - size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000252
253 /* We hide that we have no struct page backing our stolen object
254 * by wrapping the contiguous physical allocation with a fake
255 * dma mapping in a single scatterlist.
256 */
257
258 st = kmalloc(sizeof(*st), GFP_KERNEL);
259 if (st == NULL)
260 return NULL;
261
262 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
263 kfree(st);
264 return NULL;
265 }
266
267 sg = st->sgl;
Imre Deaked23abd2013-03-26 15:14:19 +0200268 sg->offset = offset;
269 sg->length = size;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000270
271 sg_dma_address(sg) = (dma_addr_t)dev_priv->mm.stolen_base + offset;
272 sg_dma_len(sg) = size;
273
274 return st;
275}
276
277static int i915_gem_object_get_pages_stolen(struct drm_i915_gem_object *obj)
278{
279 BUG();
280 return -EINVAL;
281}
282
283static void i915_gem_object_put_pages_stolen(struct drm_i915_gem_object *obj)
284{
285 /* Should only be called during free */
286 sg_free_table(obj->pages);
287 kfree(obj->pages);
288}
289
290static const struct drm_i915_gem_object_ops i915_gem_object_stolen_ops = {
291 .get_pages = i915_gem_object_get_pages_stolen,
292 .put_pages = i915_gem_object_put_pages_stolen,
293};
294
295static struct drm_i915_gem_object *
296_i915_gem_object_create_stolen(struct drm_device *dev,
297 struct drm_mm_node *stolen)
298{
299 struct drm_i915_gem_object *obj;
300
Chris Wilson42dcedd2012-11-15 11:32:30 +0000301 obj = i915_gem_object_alloc(dev);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000302 if (obj == NULL)
303 return NULL;
304
David Herrmann89c82332013-07-11 11:56:32 +0200305 drm_gem_private_object_init(dev, &obj->base, stolen->size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000306 i915_gem_object_init(obj, &i915_gem_object_stolen_ops);
307
308 obj->pages = i915_pages_create_for_stolen(dev,
309 stolen->start, stolen->size);
310 if (obj->pages == NULL)
311 goto cleanup;
312
313 obj->has_dma_mapping = true;
Ben Widawskydd53e1b2013-05-31 14:46:19 -0700314 i915_gem_object_pin_pages(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000315 obj->stolen = stolen;
316
317 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
318 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
319 obj->cache_level = I915_CACHE_NONE;
320
321 return obj;
322
323cleanup:
Chris Wilson42dcedd2012-11-15 11:32:30 +0000324 i915_gem_object_free(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000325 return NULL;
326}
327
328struct drm_i915_gem_object *
329i915_gem_object_create_stolen(struct drm_device *dev, u32 size)
330{
331 struct drm_i915_private *dev_priv = dev->dev_private;
332 struct drm_i915_gem_object *obj;
333 struct drm_mm_node *stolen;
David Herrmann06e78ed2013-07-27 16:21:27 +0200334 int ret;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000335
Daniel Vetter446f8d82013-07-02 10:48:31 +0200336 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson0104fdb2012-11-15 11:32:26 +0000337 return NULL;
338
339 DRM_DEBUG_KMS("creating stolen object: size=%x\n", size);
340 if (size == 0)
341 return NULL;
342
David Herrmann06e78ed2013-07-27 16:21:27 +0200343 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
344 if (!stolen)
Chris Wilson0104fdb2012-11-15 11:32:26 +0000345 return NULL;
346
David Herrmann06e78ed2013-07-27 16:21:27 +0200347 ret = drm_mm_insert_node(&dev_priv->mm.stolen, stolen, size,
348 4096, DRM_MM_SEARCH_DEFAULT);
349 if (ret) {
350 kfree(stolen);
351 return NULL;
352 }
353
Chris Wilson0104fdb2012-11-15 11:32:26 +0000354 obj = _i915_gem_object_create_stolen(dev, stolen);
355 if (obj)
356 return obj;
357
David Herrmann06e78ed2013-07-27 16:21:27 +0200358 drm_mm_remove_node(stolen);
359 kfree(stolen);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000360 return NULL;
361}
362
Chris Wilson866d12b2013-02-19 13:31:37 -0800363struct drm_i915_gem_object *
364i915_gem_object_create_stolen_for_preallocated(struct drm_device *dev,
365 u32 stolen_offset,
366 u32 gtt_offset,
367 u32 size)
368{
369 struct drm_i915_private *dev_priv = dev->dev_private;
370 struct drm_i915_gem_object *obj;
371 struct drm_mm_node *stolen;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700372 int ret;
Chris Wilson866d12b2013-02-19 13:31:37 -0800373
Daniel Vetter446f8d82013-07-02 10:48:31 +0200374 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson866d12b2013-02-19 13:31:37 -0800375 return NULL;
376
377 DRM_DEBUG_KMS("creating preallocated stolen object: stolen_offset=%x, gtt_offset=%x, size=%x\n",
378 stolen_offset, gtt_offset, size);
379
380 /* KISS and expect everything to be page-aligned */
381 BUG_ON(stolen_offset & 4095);
Chris Wilson866d12b2013-02-19 13:31:37 -0800382 BUG_ON(size & 4095);
383
384 if (WARN_ON(size == 0))
385 return NULL;
386
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700387 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
388 if (!stolen)
389 return NULL;
390
Ben Widawsky338710e2013-07-05 14:41:03 -0700391 stolen->start = stolen_offset;
392 stolen->size = size;
393 ret = drm_mm_reserve_node(&dev_priv->mm.stolen, stolen);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700394 if (ret) {
Chris Wilson866d12b2013-02-19 13:31:37 -0800395 DRM_DEBUG_KMS("failed to allocate stolen space\n");
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700396 kfree(stolen);
Chris Wilson866d12b2013-02-19 13:31:37 -0800397 return NULL;
398 }
399
400 obj = _i915_gem_object_create_stolen(dev, stolen);
401 if (obj == NULL) {
402 DRM_DEBUG_KMS("failed to allocate stolen object\n");
David Herrmann06e78ed2013-07-27 16:21:27 +0200403 drm_mm_remove_node(stolen);
404 kfree(stolen);
Chris Wilson866d12b2013-02-19 13:31:37 -0800405 return NULL;
406 }
407
Jesse Barnes3727d552013-05-08 10:45:14 -0700408 /* Some objects just need physical mem from stolen space */
Daniel Vetter190d6cd2013-07-04 13:06:28 +0200409 if (gtt_offset == I915_GTT_OFFSET_NONE)
Jesse Barnes3727d552013-05-08 10:45:14 -0700410 return obj;
411
Chris Wilson866d12b2013-02-19 13:31:37 -0800412 /* To simplify the initialisation sequence between KMS and GTT,
413 * we allow construction of the stolen object prior to
414 * setting up the GTT space. The actual reservation will occur
415 * later.
416 */
Ben Widawskyc6cfb322013-07-05 14:41:06 -0700417 obj->gtt_space.start = gtt_offset;
418 obj->gtt_space.size = size;
Chris Wilson866d12b2013-02-19 13:31:37 -0800419 if (drm_mm_initialized(&dev_priv->mm.gtt_space)) {
Ben Widawsky338710e2013-07-05 14:41:03 -0700420 ret = drm_mm_reserve_node(&dev_priv->mm.gtt_space,
Ben Widawskyc6cfb322013-07-05 14:41:06 -0700421 &obj->gtt_space);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700422 if (ret) {
Chris Wilson866d12b2013-02-19 13:31:37 -0800423 DRM_DEBUG_KMS("failed to allocate stolen GTT space\n");
Ben Widawskyc6cfb322013-07-05 14:41:06 -0700424 goto unref_out;
Chris Wilson866d12b2013-02-19 13:31:37 -0800425 }
Ben Widawskyedd41a82013-07-05 14:41:05 -0700426 }
Chris Wilson866d12b2013-02-19 13:31:37 -0800427
Chris Wilson866d12b2013-02-19 13:31:37 -0800428 obj->has_global_gtt_mapping = 1;
429
Ben Widawsky35c20a62013-05-31 11:28:48 -0700430 list_add_tail(&obj->global_list, &dev_priv->mm.bound_list);
Chris Wilson866d12b2013-02-19 13:31:37 -0800431 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
432
433 return obj;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700434
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700435unref_out:
436 drm_gem_object_unreference(&obj->base);
437 return NULL;
Chris Wilson866d12b2013-02-19 13:31:37 -0800438}
439
Chris Wilson0104fdb2012-11-15 11:32:26 +0000440void
441i915_gem_object_release_stolen(struct drm_i915_gem_object *obj)
442{
443 if (obj->stolen) {
David Herrmann06e78ed2013-07-27 16:21:27 +0200444 drm_mm_remove_node(obj->stolen);
445 kfree(obj->stolen);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000446 obj->stolen = NULL;
447 }
448}