blob: 642fd36d7bf179b71a2664e91e1527fc65a33a9a [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) {
Akash Goel3617dc92014-01-13 16:25:21 +053085 /*
86 * One more attempt but this time requesting region from
87 * base + 1, as we have seen that this resolves the region
88 * conflict with the PCI Bus.
89 * This is a BIOS w/a: Some BIOS wrap stolen in the root
90 * PCI bus, but have an off-by-one error. Hence retry the
91 * reservation starting from 1 instead of 0.
92 */
93 r = devm_request_mem_region(dev->dev, base + 1,
94 dev_priv->gtt.stolen_size - 1,
95 "Graphics Stolen Memory");
96 if (r == NULL) {
97 DRM_ERROR("conflict detected with stolen region: [0x%08x - 0x%08x]\n",
98 base, base + (uint32_t)dev_priv->gtt.stolen_size);
99 base = 0;
100 }
Chris Wilsoneaba1b82013-07-04 12:28:35 +0100101 }
102
Chris Wilsone12a2d52012-11-15 11:32:18 +0000103 return base;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100104}
105
Chris Wilson11be49e2012-11-15 11:32:20 +0000106static int i915_setup_compression(struct drm_device *dev, int size)
Chris Wilson9797fbf2012-04-24 15:47:39 +0100107{
108 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyc4213882014-06-19 12:06:10 -0700109 struct drm_mm_node *uninitialized_var(compressed_llb);
David Herrmann06e78ed2013-07-27 16:21:27 +0200110 int ret;
111
Chris Wilson11be49e2012-11-15 11:32:20 +0000112 /* Try to over-allocate to reduce reallocations and fragmentation */
Ben Widawskyc4213882014-06-19 12:06:10 -0700113 ret = drm_mm_insert_node(&dev_priv->mm.stolen,
114 &dev_priv->fbc.compressed_fb,
David Herrmann06e78ed2013-07-27 16:21:27 +0200115 size <<= 1, 4096, DRM_MM_SEARCH_DEFAULT);
116 if (ret)
Ben Widawskyc4213882014-06-19 12:06:10 -0700117 ret = drm_mm_insert_node(&dev_priv->mm.stolen,
118 &dev_priv->fbc.compressed_fb,
David Herrmann06e78ed2013-07-27 16:21:27 +0200119 size >>= 1, 4096,
120 DRM_MM_SEARCH_DEFAULT);
121 if (ret)
122 goto err_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100123
Chris Wilson11be49e2012-11-15 11:32:20 +0000124 if (HAS_PCH_SPLIT(dev))
Ben Widawskyc4213882014-06-19 12:06:10 -0700125 I915_WRITE(ILK_DPFC_CB_BASE, dev_priv->fbc.compressed_fb.start);
Chris Wilson11be49e2012-11-15 11:32:20 +0000126 else if (IS_GM45(dev)) {
Ben Widawskyc4213882014-06-19 12:06:10 -0700127 I915_WRITE(DPFC_CB_BASE, dev_priv->fbc.compressed_fb.start);
Chris Wilson11be49e2012-11-15 11:32:20 +0000128 } else {
David Herrmann06e78ed2013-07-27 16:21:27 +0200129 compressed_llb = kzalloc(sizeof(*compressed_llb), GFP_KERNEL);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100130 if (!compressed_llb)
131 goto err_fb;
132
David Herrmann06e78ed2013-07-27 16:21:27 +0200133 ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_llb,
134 4096, 4096, DRM_MM_SEARCH_DEFAULT);
135 if (ret)
136 goto err_fb;
137
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700138 dev_priv->fbc.compressed_llb = compressed_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100139
Chris Wilson11be49e2012-11-15 11:32:20 +0000140 I915_WRITE(FBC_CFB_BASE,
Ben Widawskyc4213882014-06-19 12:06:10 -0700141 dev_priv->mm.stolen_base + dev_priv->fbc.compressed_fb.start);
Chris Wilson11be49e2012-11-15 11:32:20 +0000142 I915_WRITE(FBC_LL_BASE,
143 dev_priv->mm.stolen_base + compressed_llb->start);
144 }
Chris Wilson9797fbf2012-04-24 15:47:39 +0100145
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700146 dev_priv->fbc.size = size;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100147
Chris Wilson11be49e2012-11-15 11:32:20 +0000148 DRM_DEBUG_KMS("reserved %d bytes of contiguous stolen space for FBC\n",
149 size);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100150
Chris Wilson11be49e2012-11-15 11:32:20 +0000151 return 0;
152
Chris Wilson9797fbf2012-04-24 15:47:39 +0100153err_fb:
David Herrmann06e78ed2013-07-27 16:21:27 +0200154 kfree(compressed_llb);
Ben Widawskyc4213882014-06-19 12:06:10 -0700155 drm_mm_remove_node(&dev_priv->fbc.compressed_fb);
David Herrmann06e78ed2013-07-27 16:21:27 +0200156err_llb:
Chris Wilsond8241782013-04-27 12:44:16 +0100157 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 +0000158 return -ENOSPC;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100159}
160
Chris Wilson11be49e2012-11-15 11:32:20 +0000161int i915_gem_stolen_setup_compression(struct drm_device *dev, int size)
Chris Wilson9797fbf2012-04-24 15:47:39 +0100162{
163 struct drm_i915_private *dev_priv = dev->dev_private;
164
Daniel Vetter446f8d82013-07-02 10:48:31 +0200165 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson11be49e2012-11-15 11:32:20 +0000166 return -ENODEV;
167
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700168 if (size < dev_priv->fbc.size)
Chris Wilson11be49e2012-11-15 11:32:20 +0000169 return 0;
170
171 /* Release any current block */
172 i915_gem_stolen_cleanup_compression(dev);
173
174 return i915_setup_compression(dev, size);
175}
176
177void i915_gem_stolen_cleanup_compression(struct drm_device *dev)
178{
179 struct drm_i915_private *dev_priv = dev->dev_private;
180
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700181 if (dev_priv->fbc.size == 0)
Chris Wilson11be49e2012-11-15 11:32:20 +0000182 return;
183
Ben Widawskyc4213882014-06-19 12:06:10 -0700184 drm_mm_remove_node(&dev_priv->fbc.compressed_fb);
Chris Wilson11be49e2012-11-15 11:32:20 +0000185
David Herrmann06e78ed2013-07-27 16:21:27 +0200186 if (dev_priv->fbc.compressed_llb) {
187 drm_mm_remove_node(dev_priv->fbc.compressed_llb);
188 kfree(dev_priv->fbc.compressed_llb);
189 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000190
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700191 dev_priv->fbc.size = 0;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100192}
193
194void i915_gem_cleanup_stolen(struct drm_device *dev)
195{
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100196 struct drm_i915_private *dev_priv = dev->dev_private;
197
Daniel Vetter446f8d82013-07-02 10:48:31 +0200198 if (!drm_mm_initialized(&dev_priv->mm.stolen))
199 return;
200
Chris Wilson11be49e2012-11-15 11:32:20 +0000201 i915_gem_stolen_cleanup_compression(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100202 drm_mm_takedown(&dev_priv->mm.stolen);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100203}
204
205int i915_gem_init_stolen(struct drm_device *dev)
206{
207 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700208 int bios_reserved = 0;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100209
Chris Wilson0f4706d2014-03-18 14:50:50 +0200210#ifdef CONFIG_INTEL_IOMMU
Daniel Vetterfcc9fe12014-03-26 23:42:53 +0100211 if (intel_iommu_gfx_mapped && INTEL_INFO(dev)->gen < 8) {
Chris Wilson0f4706d2014-03-18 14:50:50 +0200212 DRM_INFO("DMAR active, disabling use of stolen memory\n");
213 return 0;
214 }
215#endif
216
Chris Wilson6644a4e2013-09-05 13:40:25 +0100217 if (dev_priv->gtt.stolen_size == 0)
218 return 0;
219
Chris Wilsone12a2d52012-11-15 11:32:18 +0000220 dev_priv->mm.stolen_base = i915_stolen_to_physical(dev);
221 if (dev_priv->mm.stolen_base == 0)
222 return 0;
223
Ben Widawskya54c0c22013-01-24 14:45:00 -0800224 DRM_DEBUG_KMS("found %zd bytes of stolen memory at %08lx\n",
225 dev_priv->gtt.stolen_size, dev_priv->mm.stolen_base);
Chris Wilsone12a2d52012-11-15 11:32:18 +0000226
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700227 if (IS_VALLEYVIEW(dev))
228 bios_reserved = 1024*1024; /* top 1M on VLV/BYT */
229
Daniel Vetter897f9ed2013-07-09 14:44:27 +0200230 if (WARN_ON(bios_reserved > dev_priv->gtt.stolen_size))
231 return 0;
232
Chris Wilson9797fbf2012-04-24 15:47:39 +0100233 /* Basic memrange allocator for stolen space */
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700234 drm_mm_init(&dev_priv->mm.stolen, 0, dev_priv->gtt.stolen_size -
235 bios_reserved);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100236
237 return 0;
238}
Chris Wilson0104fdb2012-11-15 11:32:26 +0000239
240static struct sg_table *
241i915_pages_create_for_stolen(struct drm_device *dev,
242 u32 offset, u32 size)
243{
244 struct drm_i915_private *dev_priv = dev->dev_private;
245 struct sg_table *st;
246 struct scatterlist *sg;
247
248 DRM_DEBUG_DRIVER("offset=0x%x, size=%d\n", offset, size);
Ben Widawskya54c0c22013-01-24 14:45:00 -0800249 BUG_ON(offset > dev_priv->gtt.stolen_size - size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000250
251 /* We hide that we have no struct page backing our stolen object
252 * by wrapping the contiguous physical allocation with a fake
253 * dma mapping in a single scatterlist.
254 */
255
256 st = kmalloc(sizeof(*st), GFP_KERNEL);
257 if (st == NULL)
258 return NULL;
259
260 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
261 kfree(st);
262 return NULL;
263 }
264
265 sg = st->sgl;
Akash Goelec14ba42014-01-13 16:24:45 +0530266 sg->offset = 0;
Imre Deaked23abd2013-03-26 15:14:19 +0200267 sg->length = size;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000268
269 sg_dma_address(sg) = (dma_addr_t)dev_priv->mm.stolen_base + offset;
270 sg_dma_len(sg) = size;
271
272 return st;
273}
274
275static int i915_gem_object_get_pages_stolen(struct drm_i915_gem_object *obj)
276{
277 BUG();
278 return -EINVAL;
279}
280
281static void i915_gem_object_put_pages_stolen(struct drm_i915_gem_object *obj)
282{
283 /* Should only be called during free */
284 sg_free_table(obj->pages);
285 kfree(obj->pages);
286}
287
Chris Wilsonef0cf272014-06-06 10:22:54 +0100288
289static void
290i915_gem_object_release_stolen(struct drm_i915_gem_object *obj)
291{
292 if (obj->stolen) {
293 drm_mm_remove_node(obj->stolen);
294 kfree(obj->stolen);
295 obj->stolen = NULL;
296 }
297}
Chris Wilson0104fdb2012-11-15 11:32:26 +0000298static const struct drm_i915_gem_object_ops i915_gem_object_stolen_ops = {
299 .get_pages = i915_gem_object_get_pages_stolen,
300 .put_pages = i915_gem_object_put_pages_stolen,
Chris Wilsonef0cf272014-06-06 10:22:54 +0100301 .release = i915_gem_object_release_stolen,
Chris Wilson0104fdb2012-11-15 11:32:26 +0000302};
303
304static struct drm_i915_gem_object *
305_i915_gem_object_create_stolen(struct drm_device *dev,
306 struct drm_mm_node *stolen)
307{
308 struct drm_i915_gem_object *obj;
309
Chris Wilson42dcedd2012-11-15 11:32:30 +0000310 obj = i915_gem_object_alloc(dev);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000311 if (obj == NULL)
312 return NULL;
313
David Herrmann89c82332013-07-11 11:56:32 +0200314 drm_gem_private_object_init(dev, &obj->base, stolen->size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000315 i915_gem_object_init(obj, &i915_gem_object_stolen_ops);
316
317 obj->pages = i915_pages_create_for_stolen(dev,
318 stolen->start, stolen->size);
319 if (obj->pages == NULL)
320 goto cleanup;
321
322 obj->has_dma_mapping = true;
Ben Widawskydd53e1b2013-05-31 14:46:19 -0700323 i915_gem_object_pin_pages(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000324 obj->stolen = stolen;
325
Chris Wilsond46f1c32013-08-08 14:41:06 +0100326 obj->base.read_domains = I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT;
327 obj->cache_level = HAS_LLC(dev) ? I915_CACHE_LLC : I915_CACHE_NONE;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000328
329 return obj;
330
331cleanup:
Chris Wilson42dcedd2012-11-15 11:32:30 +0000332 i915_gem_object_free(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000333 return NULL;
334}
335
336struct drm_i915_gem_object *
337i915_gem_object_create_stolen(struct drm_device *dev, u32 size)
338{
339 struct drm_i915_private *dev_priv = dev->dev_private;
340 struct drm_i915_gem_object *obj;
341 struct drm_mm_node *stolen;
David Herrmann06e78ed2013-07-27 16:21:27 +0200342 int ret;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000343
Daniel Vetter446f8d82013-07-02 10:48:31 +0200344 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson0104fdb2012-11-15 11:32:26 +0000345 return NULL;
346
347 DRM_DEBUG_KMS("creating stolen object: size=%x\n", size);
348 if (size == 0)
349 return NULL;
350
David Herrmann06e78ed2013-07-27 16:21:27 +0200351 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
352 if (!stolen)
Chris Wilson0104fdb2012-11-15 11:32:26 +0000353 return NULL;
354
David Herrmann06e78ed2013-07-27 16:21:27 +0200355 ret = drm_mm_insert_node(&dev_priv->mm.stolen, stolen, size,
356 4096, DRM_MM_SEARCH_DEFAULT);
357 if (ret) {
358 kfree(stolen);
359 return NULL;
360 }
361
Chris Wilson0104fdb2012-11-15 11:32:26 +0000362 obj = _i915_gem_object_create_stolen(dev, stolen);
363 if (obj)
364 return obj;
365
David Herrmann06e78ed2013-07-27 16:21:27 +0200366 drm_mm_remove_node(stolen);
367 kfree(stolen);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000368 return NULL;
369}
370
Chris Wilson866d12b2013-02-19 13:31:37 -0800371struct drm_i915_gem_object *
372i915_gem_object_create_stolen_for_preallocated(struct drm_device *dev,
373 u32 stolen_offset,
374 u32 gtt_offset,
375 u32 size)
376{
377 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky40d749802013-07-31 16:59:59 -0700378 struct i915_address_space *ggtt = &dev_priv->gtt.base;
Chris Wilson866d12b2013-02-19 13:31:37 -0800379 struct drm_i915_gem_object *obj;
380 struct drm_mm_node *stolen;
Ben Widawsky2f633152013-07-17 12:19:03 -0700381 struct i915_vma *vma;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700382 int ret;
Chris Wilson866d12b2013-02-19 13:31:37 -0800383
Daniel Vetter446f8d82013-07-02 10:48:31 +0200384 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson866d12b2013-02-19 13:31:37 -0800385 return NULL;
386
387 DRM_DEBUG_KMS("creating preallocated stolen object: stolen_offset=%x, gtt_offset=%x, size=%x\n",
388 stolen_offset, gtt_offset, size);
389
390 /* KISS and expect everything to be page-aligned */
391 BUG_ON(stolen_offset & 4095);
Chris Wilson866d12b2013-02-19 13:31:37 -0800392 BUG_ON(size & 4095);
393
394 if (WARN_ON(size == 0))
395 return NULL;
396
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700397 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
398 if (!stolen)
399 return NULL;
400
Ben Widawsky338710e2013-07-05 14:41:03 -0700401 stolen->start = stolen_offset;
402 stolen->size = size;
403 ret = drm_mm_reserve_node(&dev_priv->mm.stolen, stolen);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700404 if (ret) {
Chris Wilson866d12b2013-02-19 13:31:37 -0800405 DRM_DEBUG_KMS("failed to allocate stolen space\n");
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700406 kfree(stolen);
Chris Wilson866d12b2013-02-19 13:31:37 -0800407 return NULL;
408 }
409
410 obj = _i915_gem_object_create_stolen(dev, stolen);
411 if (obj == NULL) {
412 DRM_DEBUG_KMS("failed to allocate stolen object\n");
David Herrmann06e78ed2013-07-27 16:21:27 +0200413 drm_mm_remove_node(stolen);
414 kfree(stolen);
Chris Wilson866d12b2013-02-19 13:31:37 -0800415 return NULL;
416 }
417
Jesse Barnes3727d552013-05-08 10:45:14 -0700418 /* Some objects just need physical mem from stolen space */
Daniel Vetter190d6cd2013-07-04 13:06:28 +0200419 if (gtt_offset == I915_GTT_OFFSET_NONE)
Jesse Barnes3727d552013-05-08 10:45:14 -0700420 return obj;
421
Daniel Vettere656a6c2013-08-14 14:14:04 +0200422 vma = i915_gem_obj_lookup_or_create_vma(obj, ggtt);
Dan Carpenterdb473b32013-07-19 08:45:46 +0300423 if (IS_ERR(vma)) {
424 ret = PTR_ERR(vma);
Ben Widawsky2f633152013-07-17 12:19:03 -0700425 goto err_out;
426 }
427
Chris Wilson866d12b2013-02-19 13:31:37 -0800428 /* To simplify the initialisation sequence between KMS and GTT,
429 * we allow construction of the stolen object prior to
430 * setting up the GTT space. The actual reservation will occur
431 * later.
432 */
Ben Widawsky2f633152013-07-17 12:19:03 -0700433 vma->node.start = gtt_offset;
434 vma->node.size = size;
Ben Widawsky40d749802013-07-31 16:59:59 -0700435 if (drm_mm_initialized(&ggtt->mm)) {
436 ret = drm_mm_reserve_node(&ggtt->mm, &vma->node);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700437 if (ret) {
Chris Wilson866d12b2013-02-19 13:31:37 -0800438 DRM_DEBUG_KMS("failed to allocate stolen GTT space\n");
Daniel Vetter4a025e22013-08-14 10:01:32 +0200439 goto err_vma;
Chris Wilson866d12b2013-02-19 13:31:37 -0800440 }
Ben Widawskyedd41a82013-07-05 14:41:05 -0700441 }
Chris Wilson866d12b2013-02-19 13:31:37 -0800442
Chris Wilson866d12b2013-02-19 13:31:37 -0800443 obj->has_global_gtt_mapping = 1;
444
Ben Widawsky35c20a62013-05-31 11:28:48 -0700445 list_add_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -0700446 list_add_tail(&vma->mm_list, &ggtt->inactive_list);
Daniel Vetterd8ccba82013-12-17 23:42:11 +0100447 i915_gem_object_pin_pages(obj);
Chris Wilson866d12b2013-02-19 13:31:37 -0800448
449 return obj;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700450
Daniel Vetter4a025e22013-08-14 10:01:32 +0200451err_vma:
452 i915_gem_vma_destroy(vma);
Ben Widawskyf7f18182013-07-17 12:19:02 -0700453err_out:
Dave Airlie32c913e2013-08-07 18:09:03 +1000454 drm_mm_remove_node(stolen);
455 kfree(stolen);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700456 drm_gem_object_unreference(&obj->base);
457 return NULL;
Chris Wilson866d12b2013-02-19 13:31:37 -0800458}