blob: 9a1896c86dcd15aa9d7c3df04b261e87c3ea666e [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);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100115
Chris Wilson11be49e2012-11-15 11:32:20 +0000116 /* Try to over-allocate to reduce reallocations and fragmentation */
117 compressed_fb = drm_mm_search_free(&dev_priv->mm.stolen,
118 size <<= 1, 4096, 0);
119 if (!compressed_fb)
120 compressed_fb = drm_mm_search_free(&dev_priv->mm.stolen,
121 size >>= 1, 4096, 0);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100122 if (compressed_fb)
123 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
124 if (!compressed_fb)
125 goto err;
126
Chris Wilson11be49e2012-11-15 11:32:20 +0000127 if (HAS_PCH_SPLIT(dev))
128 I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
129 else if (IS_GM45(dev)) {
130 I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
131 } else {
Chris Wilson9797fbf2012-04-24 15:47:39 +0100132 compressed_llb = drm_mm_search_free(&dev_priv->mm.stolen,
133 4096, 4096, 0);
134 if (compressed_llb)
135 compressed_llb = drm_mm_get_block(compressed_llb,
136 4096, 4096);
137 if (!compressed_llb)
138 goto err_fb;
139
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700140 dev_priv->fbc.compressed_llb = compressed_llb;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100141
Chris Wilson11be49e2012-11-15 11:32:20 +0000142 I915_WRITE(FBC_CFB_BASE,
143 dev_priv->mm.stolen_base + compressed_fb->start);
144 I915_WRITE(FBC_LL_BASE,
145 dev_priv->mm.stolen_base + compressed_llb->start);
146 }
Chris Wilson9797fbf2012-04-24 15:47:39 +0100147
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700148 dev_priv->fbc.compressed_fb = compressed_fb;
149 dev_priv->fbc.size = size;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100150
Chris Wilson11be49e2012-11-15 11:32:20 +0000151 DRM_DEBUG_KMS("reserved %d bytes of contiguous stolen space for FBC\n",
152 size);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100153
Chris Wilson11be49e2012-11-15 11:32:20 +0000154 return 0;
155
Chris Wilson9797fbf2012-04-24 15:47:39 +0100156err_fb:
157 drm_mm_put_block(compressed_fb);
158err:
Chris Wilsond8241782013-04-27 12:44:16 +0100159 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 +0000160 return -ENOSPC;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100161}
162
Chris Wilson11be49e2012-11-15 11:32:20 +0000163int i915_gem_stolen_setup_compression(struct drm_device *dev, int size)
Chris Wilson9797fbf2012-04-24 15:47:39 +0100164{
165 struct drm_i915_private *dev_priv = dev->dev_private;
166
Chris Wilson11be49e2012-11-15 11:32:20 +0000167 if (dev_priv->mm.stolen_base == 0)
168 return -ENODEV;
169
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700170 if (size < dev_priv->fbc.size)
Chris Wilson11be49e2012-11-15 11:32:20 +0000171 return 0;
172
173 /* Release any current block */
174 i915_gem_stolen_cleanup_compression(dev);
175
176 return i915_setup_compression(dev, size);
177}
178
179void i915_gem_stolen_cleanup_compression(struct drm_device *dev)
180{
181 struct drm_i915_private *dev_priv = dev->dev_private;
182
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700183 if (dev_priv->fbc.size == 0)
Chris Wilson11be49e2012-11-15 11:32:20 +0000184 return;
185
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700186 if (dev_priv->fbc.compressed_fb)
187 drm_mm_put_block(dev_priv->fbc.compressed_fb);
Chris Wilson11be49e2012-11-15 11:32:20 +0000188
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700189 if (dev_priv->fbc.compressed_llb)
190 drm_mm_put_block(dev_priv->fbc.compressed_llb);
Chris Wilson11be49e2012-11-15 11:32:20 +0000191
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700192 dev_priv->fbc.size = 0;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100193}
194
195void i915_gem_cleanup_stolen(struct drm_device *dev)
196{
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100197 struct drm_i915_private *dev_priv = dev->dev_private;
198
Chris Wilson11be49e2012-11-15 11:32:20 +0000199 i915_gem_stolen_cleanup_compression(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100200 drm_mm_takedown(&dev_priv->mm.stolen);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100201}
202
203int i915_gem_init_stolen(struct drm_device *dev)
204{
205 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700206 int bios_reserved = 0;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100207
Chris Wilsone12a2d52012-11-15 11:32:18 +0000208 dev_priv->mm.stolen_base = i915_stolen_to_physical(dev);
209 if (dev_priv->mm.stolen_base == 0)
210 return 0;
211
Ben Widawskya54c0c22013-01-24 14:45:00 -0800212 DRM_DEBUG_KMS("found %zd bytes of stolen memory at %08lx\n",
213 dev_priv->gtt.stolen_size, dev_priv->mm.stolen_base);
Chris Wilsone12a2d52012-11-15 11:32:18 +0000214
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700215 if (IS_VALLEYVIEW(dev))
216 bios_reserved = 1024*1024; /* top 1M on VLV/BYT */
217
Daniel Vetter897f9ed2013-07-09 14:44:27 +0200218 if (WARN_ON(bios_reserved > dev_priv->gtt.stolen_size))
219 return 0;
220
Chris Wilson9797fbf2012-04-24 15:47:39 +0100221 /* Basic memrange allocator for stolen space */
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700222 drm_mm_init(&dev_priv->mm.stolen, 0, dev_priv->gtt.stolen_size -
223 bios_reserved);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100224
225 return 0;
226}
Chris Wilson0104fdb2012-11-15 11:32:26 +0000227
228static struct sg_table *
229i915_pages_create_for_stolen(struct drm_device *dev,
230 u32 offset, u32 size)
231{
232 struct drm_i915_private *dev_priv = dev->dev_private;
233 struct sg_table *st;
234 struct scatterlist *sg;
235
236 DRM_DEBUG_DRIVER("offset=0x%x, size=%d\n", offset, size);
Ben Widawskya54c0c22013-01-24 14:45:00 -0800237 BUG_ON(offset > dev_priv->gtt.stolen_size - size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000238
239 /* We hide that we have no struct page backing our stolen object
240 * by wrapping the contiguous physical allocation with a fake
241 * dma mapping in a single scatterlist.
242 */
243
244 st = kmalloc(sizeof(*st), GFP_KERNEL);
245 if (st == NULL)
246 return NULL;
247
248 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
249 kfree(st);
250 return NULL;
251 }
252
253 sg = st->sgl;
Imre Deaked23abd2013-03-26 15:14:19 +0200254 sg->offset = offset;
255 sg->length = size;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000256
257 sg_dma_address(sg) = (dma_addr_t)dev_priv->mm.stolen_base + offset;
258 sg_dma_len(sg) = size;
259
260 return st;
261}
262
263static int i915_gem_object_get_pages_stolen(struct drm_i915_gem_object *obj)
264{
265 BUG();
266 return -EINVAL;
267}
268
269static void i915_gem_object_put_pages_stolen(struct drm_i915_gem_object *obj)
270{
271 /* Should only be called during free */
272 sg_free_table(obj->pages);
273 kfree(obj->pages);
274}
275
276static const struct drm_i915_gem_object_ops i915_gem_object_stolen_ops = {
277 .get_pages = i915_gem_object_get_pages_stolen,
278 .put_pages = i915_gem_object_put_pages_stolen,
279};
280
281static struct drm_i915_gem_object *
282_i915_gem_object_create_stolen(struct drm_device *dev,
283 struct drm_mm_node *stolen)
284{
285 struct drm_i915_gem_object *obj;
286
Chris Wilson42dcedd2012-11-15 11:32:30 +0000287 obj = i915_gem_object_alloc(dev);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000288 if (obj == NULL)
289 return NULL;
290
291 if (drm_gem_private_object_init(dev, &obj->base, stolen->size))
292 goto cleanup;
293
294 i915_gem_object_init(obj, &i915_gem_object_stolen_ops);
295
296 obj->pages = i915_pages_create_for_stolen(dev,
297 stolen->start, stolen->size);
298 if (obj->pages == NULL)
299 goto cleanup;
300
301 obj->has_dma_mapping = true;
Ben Widawskydd53e1b2013-05-31 14:46:19 -0700302 i915_gem_object_pin_pages(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000303 obj->stolen = stolen;
304
305 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
306 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
307 obj->cache_level = I915_CACHE_NONE;
308
309 return obj;
310
311cleanup:
Chris Wilson42dcedd2012-11-15 11:32:30 +0000312 i915_gem_object_free(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000313 return NULL;
314}
315
316struct drm_i915_gem_object *
317i915_gem_object_create_stolen(struct drm_device *dev, u32 size)
318{
319 struct drm_i915_private *dev_priv = dev->dev_private;
320 struct drm_i915_gem_object *obj;
321 struct drm_mm_node *stolen;
322
323 if (dev_priv->mm.stolen_base == 0)
324 return NULL;
325
326 DRM_DEBUG_KMS("creating stolen object: size=%x\n", size);
327 if (size == 0)
328 return NULL;
329
330 stolen = drm_mm_search_free(&dev_priv->mm.stolen, size, 4096, 0);
331 if (stolen)
332 stolen = drm_mm_get_block(stolen, size, 4096);
333 if (stolen == NULL)
334 return NULL;
335
336 obj = _i915_gem_object_create_stolen(dev, stolen);
337 if (obj)
338 return obj;
339
340 drm_mm_put_block(stolen);
341 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 Widawsky5cef07e2013-07-16 16:50:08 -0700351 struct i915_address_space *vm = &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
357 if (dev_priv->mm.stolen_base == 0)
358 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");
386 drm_mm_put_block(stolen);
387 return NULL;
388 }
389
Jesse Barnes3727d552013-05-08 10:45:14 -0700390 /* Some objects just need physical mem from stolen space */
Daniel Vetter190d6cd2013-07-04 13:06:28 +0200391 if (gtt_offset == I915_GTT_OFFSET_NONE)
Jesse Barnes3727d552013-05-08 10:45:14 -0700392 return obj;
393
Ben Widawsky2f633152013-07-17 12:19:03 -0700394 vma = i915_gem_vma_create(obj, &dev_priv->gtt.base);
Dan Carpenterdb473b32013-07-19 08:45:46 +0300395 if (IS_ERR(vma)) {
396 ret = PTR_ERR(vma);
Ben Widawsky2f633152013-07-17 12:19:03 -0700397 goto err_out;
398 }
399
Chris Wilson866d12b2013-02-19 13:31:37 -0800400 /* To simplify the initialisation sequence between KMS and GTT,
401 * we allow construction of the stolen object prior to
402 * setting up the GTT space. The actual reservation will occur
403 * later.
404 */
Ben Widawsky2f633152013-07-17 12:19:03 -0700405 vma->node.start = gtt_offset;
406 vma->node.size = size;
Ben Widawsky93bd8642013-07-16 16:50:06 -0700407 if (drm_mm_initialized(&dev_priv->gtt.base.mm)) {
Ben Widawsky2f633152013-07-17 12:19:03 -0700408 ret = drm_mm_reserve_node(&dev_priv->gtt.base.mm, &vma->node);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700409 if (ret) {
Chris Wilson866d12b2013-02-19 13:31:37 -0800410 DRM_DEBUG_KMS("failed to allocate stolen GTT space\n");
Ben Widawsky2f633152013-07-17 12:19:03 -0700411 i915_gem_vma_destroy(vma);
Ben Widawskyf7f18182013-07-17 12:19:02 -0700412 goto err_out;
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 Widawsky5cef07e2013-07-16 16:50:08 -0700419 list_add_tail(&obj->mm_list, &vm->inactive_list);
Chris Wilson866d12b2013-02-19 13:31:37 -0800420
421 return obj;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700422
Ben Widawskyf7f18182013-07-17 12:19:02 -0700423err_out:
424 drm_mm_put_block(stolen);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700425 drm_gem_object_unreference(&obj->base);
426 return NULL;
Chris Wilson866d12b2013-02-19 13:31:37 -0800427}
428
Chris Wilson0104fdb2012-11-15 11:32:26 +0000429void
430i915_gem_object_release_stolen(struct drm_i915_gem_object *obj)
431{
432 if (obj->stolen) {
433 drm_mm_put_block(obj->stolen);
434 obj->stolen = NULL;
435 }
436}