blob: b902f2afc8e25275f1de78e54ec8ff20043aa88a [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;
Chris Wilsoneaba1b82013-07-04 12:28:35 +010048 struct resource *r;
Chris Wilson9797fbf2012-04-24 15:47:39 +010049 u32 base;
50
Chris Wilson17fec8a2013-07-04 00:23:33 +010051 /* Almost universally we can find the Graphics Base of Stolen Memory
52 * at offset 0x5c in the igfx configuration space. On a few (desktop)
53 * machines this is also mirrored in the bridge device at different
54 * locations, or in the MCHBAR. On gen2, the layout is again slightly
55 * different with the Graphics Segment immediately following Top of
56 * Memory (or Top of Usable DRAM). Note it appears that TOUD is only
57 * reported by 865g, so we just use the top of memory as determined
58 * by the e820 probe.
Chris Wilsone12a2d52012-11-15 11:32:18 +000059 *
Chris Wilson17fec8a2013-07-04 00:23:33 +010060 * XXX However gen2 requires an unavailable symbol.
Chris Wilson9797fbf2012-04-24 15:47:39 +010061 */
Chris Wilsone12a2d52012-11-15 11:32:18 +000062 base = 0;
Chris Wilson17fec8a2013-07-04 00:23:33 +010063 if (INTEL_INFO(dev)->gen >= 3) {
64 /* Read Graphics Base of Stolen Memory directly */
Jesse Barnesc9cddff2013-05-08 10:45:13 -070065 pci_read_config_dword(dev->pdev, 0x5c, &base);
66 base &= ~((1<<20) - 1);
Chris Wilson17fec8a2013-07-04 00:23:33 +010067 } else { /* GEN2 */
Chris Wilsone12a2d52012-11-15 11:32:18 +000068#if 0
Chris Wilsone12a2d52012-11-15 11:32:18 +000069 /* Stolen is immediately above Top of Memory */
70 base = max_low_pfn_mapped << PAGE_SHIFT;
Chris Wilson9797fbf2012-04-24 15:47:39 +010071#endif
Chris Wilsone12a2d52012-11-15 11:32:18 +000072 }
Chris Wilson9797fbf2012-04-24 15:47:39 +010073
Chris Wilsoneaba1b82013-07-04 12:28:35 +010074 if (base == 0)
75 return 0;
76
77 /* Verify that nothing else uses this physical address. Stolen
78 * memory should be reserved by the BIOS and hidden from the
79 * kernel. So if the region is already marked as busy, something
80 * is seriously wrong.
81 */
82 r = devm_request_mem_region(dev->dev, base, dev_priv->gtt.stolen_size,
83 "Graphics Stolen Memory");
84 if (r == NULL) {
85 DRM_ERROR("conflict detected with stolen region: [0x%08x - 0x%08x]\n",
86 base, base + (uint32_t)dev_priv->gtt.stolen_size);
87 base = 0;
88 }
89
Chris Wilsone12a2d52012-11-15 11:32:18 +000090 return base;
Chris Wilson9797fbf2012-04-24 15:47:39 +010091}
92
Chris Wilson11be49e2012-11-15 11:32:20 +000093static int i915_setup_compression(struct drm_device *dev, int size)
Chris Wilson9797fbf2012-04-24 15:47:39 +010094{
95 struct drm_i915_private *dev_priv = dev->dev_private;
96 struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
David Herrmann06e78ed2013-07-27 16:21:27 +020097 int ret;
98
99 compressed_fb = kzalloc(sizeof(*compressed_fb), GFP_KERNEL);
100 if (!compressed_fb)
101 goto err_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100102
Chris Wilson11be49e2012-11-15 11:32:20 +0000103 /* Try to over-allocate to reduce reallocations and fragmentation */
David Herrmann06e78ed2013-07-27 16:21:27 +0200104 ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_fb,
105 size <<= 1, 4096, DRM_MM_SEARCH_DEFAULT);
106 if (ret)
107 ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_fb,
108 size >>= 1, 4096,
109 DRM_MM_SEARCH_DEFAULT);
110 if (ret)
111 goto err_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100112
Chris Wilson11be49e2012-11-15 11:32:20 +0000113 if (HAS_PCH_SPLIT(dev))
114 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
115 else if (IS_GM45(dev)) {
116 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
117 } else {
David Herrmann06e78ed2013-07-27 16:21:27 +0200118 compressed_llb = kzalloc(sizeof(*compressed_llb), GFP_KERNEL);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100119 if (!compressed_llb)
120 goto err_fb;
121
David Herrmann06e78ed2013-07-27 16:21:27 +0200122 ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_llb,
123 4096, 4096, DRM_MM_SEARCH_DEFAULT);
124 if (ret)
125 goto err_fb;
126
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700127 dev_priv->fbc.compressed_llb = compressed_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100128
Chris Wilson11be49e2012-11-15 11:32:20 +0000129 I915_WRITE(FBC_CFB_BASE,
130 dev_priv->mm.stolen_base + compressed_fb->start);
131 I915_WRITE(FBC_LL_BASE,
132 dev_priv->mm.stolen_base + compressed_llb->start);
133 }
Chris Wilson9797fbf2012-04-24 15:47:39 +0100134
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700135 dev_priv->fbc.compressed_fb = compressed_fb;
136 dev_priv->fbc.size = size;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100137
Chris Wilson11be49e2012-11-15 11:32:20 +0000138 DRM_DEBUG_KMS("reserved %d bytes of contiguous stolen space for FBC\n",
139 size);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100140
Chris Wilson11be49e2012-11-15 11:32:20 +0000141 return 0;
142
Chris Wilson9797fbf2012-04-24 15:47:39 +0100143err_fb:
David Herrmann06e78ed2013-07-27 16:21:27 +0200144 kfree(compressed_llb);
145 drm_mm_remove_node(compressed_fb);
146err_llb:
147 kfree(compressed_fb);
Chris Wilsond8241782013-04-27 12:44:16 +0100148 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 +0000149 return -ENOSPC;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100150}
151
Chris Wilson11be49e2012-11-15 11:32:20 +0000152int i915_gem_stolen_setup_compression(struct drm_device *dev, int size)
Chris Wilson9797fbf2012-04-24 15:47:39 +0100153{
154 struct drm_i915_private *dev_priv = dev->dev_private;
155
Daniel Vetter446f8d82013-07-02 10:48:31 +0200156 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson11be49e2012-11-15 11:32:20 +0000157 return -ENODEV;
158
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700159 if (size < dev_priv->fbc.size)
Chris Wilson11be49e2012-11-15 11:32:20 +0000160 return 0;
161
162 /* Release any current block */
163 i915_gem_stolen_cleanup_compression(dev);
164
165 return i915_setup_compression(dev, size);
166}
167
168void i915_gem_stolen_cleanup_compression(struct drm_device *dev)
169{
170 struct drm_i915_private *dev_priv = dev->dev_private;
171
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700172 if (dev_priv->fbc.size == 0)
Chris Wilson11be49e2012-11-15 11:32:20 +0000173 return;
174
David Herrmann06e78ed2013-07-27 16:21:27 +0200175 if (dev_priv->fbc.compressed_fb) {
176 drm_mm_remove_node(dev_priv->fbc.compressed_fb);
177 kfree(dev_priv->fbc.compressed_fb);
178 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000179
David Herrmann06e78ed2013-07-27 16:21:27 +0200180 if (dev_priv->fbc.compressed_llb) {
181 drm_mm_remove_node(dev_priv->fbc.compressed_llb);
182 kfree(dev_priv->fbc.compressed_llb);
183 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000184
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700185 dev_priv->fbc.size = 0;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100186}
187
188void i915_gem_cleanup_stolen(struct drm_device *dev)
189{
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100190 struct drm_i915_private *dev_priv = dev->dev_private;
191
Daniel Vetter446f8d82013-07-02 10:48:31 +0200192 if (!drm_mm_initialized(&dev_priv->mm.stolen))
193 return;
194
Chris Wilson11be49e2012-11-15 11:32:20 +0000195 i915_gem_stolen_cleanup_compression(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100196 drm_mm_takedown(&dev_priv->mm.stolen);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100197}
198
199int i915_gem_init_stolen(struct drm_device *dev)
200{
201 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700202 int bios_reserved = 0;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100203
Chris Wilsone12a2d52012-11-15 11:32:18 +0000204 dev_priv->mm.stolen_base = i915_stolen_to_physical(dev);
205 if (dev_priv->mm.stolen_base == 0)
206 return 0;
207
Ben Widawskya54c0c22013-01-24 14:45:00 -0800208 DRM_DEBUG_KMS("found %zd bytes of stolen memory at %08lx\n",
209 dev_priv->gtt.stolen_size, dev_priv->mm.stolen_base);
Chris Wilsone12a2d52012-11-15 11:32:18 +0000210
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700211 if (IS_VALLEYVIEW(dev))
212 bios_reserved = 1024*1024; /* top 1M on VLV/BYT */
213
Daniel Vetter897f9ed2013-07-09 14:44:27 +0200214 if (WARN_ON(bios_reserved > dev_priv->gtt.stolen_size))
215 return 0;
216
Chris Wilson9797fbf2012-04-24 15:47:39 +0100217 /* Basic memrange allocator for stolen space */
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700218 drm_mm_init(&dev_priv->mm.stolen, 0, dev_priv->gtt.stolen_size -
219 bios_reserved);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100220
221 return 0;
222}
Chris Wilson0104fdb2012-11-15 11:32:26 +0000223
224static struct sg_table *
225i915_pages_create_for_stolen(struct drm_device *dev,
226 u32 offset, u32 size)
227{
228 struct drm_i915_private *dev_priv = dev->dev_private;
229 struct sg_table *st;
230 struct scatterlist *sg;
231
232 DRM_DEBUG_DRIVER("offset=0x%x, size=%d\n", offset, size);
Ben Widawskya54c0c22013-01-24 14:45:00 -0800233 BUG_ON(offset > dev_priv->gtt.stolen_size - size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000234
235 /* We hide that we have no struct page backing our stolen object
236 * by wrapping the contiguous physical allocation with a fake
237 * dma mapping in a single scatterlist.
238 */
239
240 st = kmalloc(sizeof(*st), GFP_KERNEL);
241 if (st == NULL)
242 return NULL;
243
244 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
245 kfree(st);
246 return NULL;
247 }
248
249 sg = st->sgl;
Imre Deaked23abd2013-03-26 15:14:19 +0200250 sg->offset = offset;
251 sg->length = size;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000252
253 sg_dma_address(sg) = (dma_addr_t)dev_priv->mm.stolen_base + offset;
254 sg_dma_len(sg) = size;
255
256 return st;
257}
258
259static int i915_gem_object_get_pages_stolen(struct drm_i915_gem_object *obj)
260{
261 BUG();
262 return -EINVAL;
263}
264
265static void i915_gem_object_put_pages_stolen(struct drm_i915_gem_object *obj)
266{
267 /* Should only be called during free */
268 sg_free_table(obj->pages);
269 kfree(obj->pages);
270}
271
272static const struct drm_i915_gem_object_ops i915_gem_object_stolen_ops = {
273 .get_pages = i915_gem_object_get_pages_stolen,
274 .put_pages = i915_gem_object_put_pages_stolen,
275};
276
277static struct drm_i915_gem_object *
278_i915_gem_object_create_stolen(struct drm_device *dev,
279 struct drm_mm_node *stolen)
280{
281 struct drm_i915_gem_object *obj;
282
Chris Wilson42dcedd2012-11-15 11:32:30 +0000283 obj = i915_gem_object_alloc(dev);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000284 if (obj == NULL)
285 return NULL;
286
David Herrmann89c82332013-07-11 11:56:32 +0200287 drm_gem_private_object_init(dev, &obj->base, stolen->size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000288 i915_gem_object_init(obj, &i915_gem_object_stolen_ops);
289
290 obj->pages = i915_pages_create_for_stolen(dev,
291 stolen->start, stolen->size);
292 if (obj->pages == NULL)
293 goto cleanup;
294
295 obj->has_dma_mapping = true;
Ben Widawskydd53e1b2013-05-31 14:46:19 -0700296 i915_gem_object_pin_pages(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000297 obj->stolen = stolen;
298
Chris Wilsond46f1c32013-08-08 14:41:06 +0100299 obj->base.read_domains = I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT;
300 obj->cache_level = HAS_LLC(dev) ? I915_CACHE_LLC : I915_CACHE_NONE;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000301
302 return obj;
303
304cleanup:
Chris Wilson42dcedd2012-11-15 11:32:30 +0000305 i915_gem_object_free(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000306 return NULL;
307}
308
309struct drm_i915_gem_object *
310i915_gem_object_create_stolen(struct drm_device *dev, u32 size)
311{
312 struct drm_i915_private *dev_priv = dev->dev_private;
313 struct drm_i915_gem_object *obj;
314 struct drm_mm_node *stolen;
David Herrmann06e78ed2013-07-27 16:21:27 +0200315 int ret;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000316
Daniel Vetter446f8d82013-07-02 10:48:31 +0200317 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson0104fdb2012-11-15 11:32:26 +0000318 return NULL;
319
320 DRM_DEBUG_KMS("creating stolen object: size=%x\n", size);
321 if (size == 0)
322 return NULL;
323
David Herrmann06e78ed2013-07-27 16:21:27 +0200324 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
325 if (!stolen)
Chris Wilson0104fdb2012-11-15 11:32:26 +0000326 return NULL;
327
David Herrmann06e78ed2013-07-27 16:21:27 +0200328 ret = drm_mm_insert_node(&dev_priv->mm.stolen, stolen, size,
329 4096, DRM_MM_SEARCH_DEFAULT);
330 if (ret) {
331 kfree(stolen);
332 return NULL;
333 }
334
Chris Wilson0104fdb2012-11-15 11:32:26 +0000335 obj = _i915_gem_object_create_stolen(dev, stolen);
336 if (obj)
337 return obj;
338
David Herrmann06e78ed2013-07-27 16:21:27 +0200339 drm_mm_remove_node(stolen);
340 kfree(stolen);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000341 return NULL;
342}
343
Chris Wilson866d12b2013-02-19 13:31:37 -0800344struct drm_i915_gem_object *
345i915_gem_object_create_stolen_for_preallocated(struct drm_device *dev,
346 u32 stolen_offset,
347 u32 gtt_offset,
348 u32 size)
349{
350 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky40d749802013-07-31 16:59:59 -0700351 struct i915_address_space *ggtt = &dev_priv->gtt.base;
Chris Wilson866d12b2013-02-19 13:31:37 -0800352 struct drm_i915_gem_object *obj;
353 struct drm_mm_node *stolen;
Ben Widawsky2f633152013-07-17 12:19:03 -0700354 struct i915_vma *vma;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700355 int ret;
Chris Wilson866d12b2013-02-19 13:31:37 -0800356
Daniel Vetter446f8d82013-07-02 10:48:31 +0200357 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson866d12b2013-02-19 13:31:37 -0800358 return NULL;
359
360 DRM_DEBUG_KMS("creating preallocated stolen object: stolen_offset=%x, gtt_offset=%x, size=%x\n",
361 stolen_offset, gtt_offset, size);
362
363 /* KISS and expect everything to be page-aligned */
364 BUG_ON(stolen_offset & 4095);
Chris Wilson866d12b2013-02-19 13:31:37 -0800365 BUG_ON(size & 4095);
366
367 if (WARN_ON(size == 0))
368 return NULL;
369
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700370 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
371 if (!stolen)
372 return NULL;
373
Ben Widawsky338710e2013-07-05 14:41:03 -0700374 stolen->start = stolen_offset;
375 stolen->size = size;
376 ret = drm_mm_reserve_node(&dev_priv->mm.stolen, stolen);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700377 if (ret) {
Chris Wilson866d12b2013-02-19 13:31:37 -0800378 DRM_DEBUG_KMS("failed to allocate stolen space\n");
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700379 kfree(stolen);
Chris Wilson866d12b2013-02-19 13:31:37 -0800380 return NULL;
381 }
382
383 obj = _i915_gem_object_create_stolen(dev, stolen);
384 if (obj == NULL) {
385 DRM_DEBUG_KMS("failed to allocate stolen object\n");
David Herrmann06e78ed2013-07-27 16:21:27 +0200386 drm_mm_remove_node(stolen);
387 kfree(stolen);
Chris Wilson866d12b2013-02-19 13:31:37 -0800388 return NULL;
389 }
390
Jesse Barnes3727d552013-05-08 10:45:14 -0700391 /* Some objects just need physical mem from stolen space */
Daniel Vetter190d6cd2013-07-04 13:06:28 +0200392 if (gtt_offset == I915_GTT_OFFSET_NONE)
Jesse Barnes3727d552013-05-08 10:45:14 -0700393 return obj;
394
Daniel Vettere656a6c2013-08-14 14:14:04 +0200395 vma = i915_gem_obj_lookup_or_create_vma(obj, ggtt);
Dan Carpenterdb473b32013-07-19 08:45:46 +0300396 if (IS_ERR(vma)) {
397 ret = PTR_ERR(vma);
Ben Widawsky2f633152013-07-17 12:19:03 -0700398 goto err_out;
399 }
400
Chris Wilson866d12b2013-02-19 13:31:37 -0800401 /* To simplify the initialisation sequence between KMS and GTT,
402 * we allow construction of the stolen object prior to
403 * setting up the GTT space. The actual reservation will occur
404 * later.
405 */
Ben Widawsky2f633152013-07-17 12:19:03 -0700406 vma->node.start = gtt_offset;
407 vma->node.size = size;
Ben Widawsky40d749802013-07-31 16:59:59 -0700408 if (drm_mm_initialized(&ggtt->mm)) {
409 ret = drm_mm_reserve_node(&ggtt->mm, &vma->node);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700410 if (ret) {
Chris Wilson866d12b2013-02-19 13:31:37 -0800411 DRM_DEBUG_KMS("failed to allocate stolen GTT space\n");
Daniel Vetter4a025e22013-08-14 10:01:32 +0200412 goto err_vma;
Chris Wilson866d12b2013-02-19 13:31:37 -0800413 }
Ben Widawskyedd41a82013-07-05 14:41:05 -0700414 }
Chris Wilson866d12b2013-02-19 13:31:37 -0800415
Chris Wilson866d12b2013-02-19 13:31:37 -0800416 obj->has_global_gtt_mapping = 1;
417
Ben Widawsky35c20a62013-05-31 11:28:48 -0700418 list_add_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -0700419 list_add_tail(&vma->mm_list, &ggtt->inactive_list);
Chris Wilson866d12b2013-02-19 13:31:37 -0800420
421 return obj;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700422
Daniel Vetter4a025e22013-08-14 10:01:32 +0200423err_vma:
424 i915_gem_vma_destroy(vma);
Ben Widawskyf7f18182013-07-17 12:19:02 -0700425err_out:
Dave Airlie32c913e2013-08-07 18:09:03 +1000426 drm_mm_remove_node(stolen);
427 kfree(stolen);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700428 drm_gem_object_unreference(&obj->base);
429 return NULL;
Chris Wilson866d12b2013-02-19 13:31:37 -0800430}
431
Chris Wilson0104fdb2012-11-15 11:32:26 +0000432void
433i915_gem_object_release_stolen(struct drm_i915_gem_object *obj)
434{
435 if (obj->stolen) {
David Herrmann06e78ed2013-07-27 16:21:27 +0200436 drm_mm_remove_node(obj->stolen);
437 kfree(obj->stolen);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000438 obj->stolen = NULL;
439 }
440}