5c1a535d5072a34c62b9ab563e592e569d425acc
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / gpu / drm / i915 / i915_gem_stolen.c
1 /*
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
29 #include <drm/drmP.h>
30 #include <drm/i915_drm.h>
31 #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
45 static unsigned long i915_stolen_to_physical(struct drm_device *dev)
46 {
47         struct drm_i915_private *dev_priv = dev->dev_private;
48         struct pci_dev *pdev = dev_priv->bridge_dev;
49         struct resource *r;
50         u32 base;
51
52         /* On the machines I have tested the Graphics Base of Stolen Memory
53          * 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.
64          */
65         base = 0;
66         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) {
70                 /* 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 */
78                 pci_read_config_dword(pdev, 0xA4, &base);
79 #if 0
80         } else if (IS_GEN3(dev)) {
81                 u8 val;
82                 /* Stolen is immediately below Top of Low Usable DRAM */
83                 pci_read_config_byte(pdev, 0x9c, &val);
84                 base = val >> 3 << 27;
85                 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;
89 #endif
90         }
91
92         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
108         return base;
109 }
110
111 static int i915_setup_compression(struct drm_device *dev, int size)
112 {
113         struct drm_i915_private *dev_priv = dev->dev_private;
114         struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
115
116         /* 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);
122         if (compressed_fb)
123                 compressed_fb = drm_mm_get_block(compressed_fb, size, 4096);
124         if (!compressed_fb)
125                 goto err;
126
127         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 {
132                 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
140                 dev_priv->fbc.compressed_llb = compressed_llb;
141
142                 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         }
147
148         dev_priv->fbc.compressed_fb = compressed_fb;
149         dev_priv->fbc.size = size;
150
151         DRM_DEBUG_KMS("reserved %d bytes of contiguous stolen space for FBC\n",
152                       size);
153
154         return 0;
155
156 err_fb:
157         drm_mm_put_block(compressed_fb);
158 err:
159         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);
160         return -ENOSPC;
161 }
162
163 int i915_gem_stolen_setup_compression(struct drm_device *dev, int size)
164 {
165         struct drm_i915_private *dev_priv = dev->dev_private;
166
167         if (!drm_mm_initialized(&dev_priv->mm.stolen))
168                 return -ENODEV;
169
170         if (size < dev_priv->fbc.size)
171                 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
179 void i915_gem_stolen_cleanup_compression(struct drm_device *dev)
180 {
181         struct drm_i915_private *dev_priv = dev->dev_private;
182
183         if (dev_priv->fbc.size == 0)
184                 return;
185
186         if (dev_priv->fbc.compressed_fb)
187                 drm_mm_put_block(dev_priv->fbc.compressed_fb);
188
189         if (dev_priv->fbc.compressed_llb)
190                 drm_mm_put_block(dev_priv->fbc.compressed_llb);
191
192         dev_priv->fbc.size = 0;
193 }
194
195 void i915_gem_cleanup_stolen(struct drm_device *dev)
196 {
197         struct drm_i915_private *dev_priv = dev->dev_private;
198
199         if (!drm_mm_initialized(&dev_priv->mm.stolen))
200                 return;
201
202         i915_gem_stolen_cleanup_compression(dev);
203         drm_mm_takedown(&dev_priv->mm.stolen);
204 }
205
206 int i915_gem_init_stolen(struct drm_device *dev)
207 {
208         struct drm_i915_private *dev_priv = dev->dev_private;
209         int bios_reserved = 0;
210
211         dev_priv->mm.stolen_base = i915_stolen_to_physical(dev);
212         if (dev_priv->mm.stolen_base == 0)
213                 return 0;
214
215         DRM_DEBUG_KMS("found %zd bytes of stolen memory at %08lx\n",
216                       dev_priv->gtt.stolen_size, dev_priv->mm.stolen_base);
217
218         if (IS_VALLEYVIEW(dev))
219                 bios_reserved = 1024*1024; /* top 1M on VLV/BYT */
220
221         if (WARN_ON(bios_reserved > dev_priv->gtt.stolen_size))
222                 return 0;
223
224         /* Basic memrange allocator for stolen space */
225         drm_mm_init(&dev_priv->mm.stolen, 0, dev_priv->gtt.stolen_size -
226                     bios_reserved);
227
228         return 0;
229 }
230
231 static struct sg_table *
232 i915_pages_create_for_stolen(struct drm_device *dev,
233                              u32 offset, u32 size)
234 {
235         struct drm_i915_private *dev_priv = dev->dev_private;
236         struct sg_table *st;
237         struct scatterlist *sg;
238
239         DRM_DEBUG_DRIVER("offset=0x%x, size=%d\n", offset, size);
240         BUG_ON(offset > dev_priv->gtt.stolen_size - size);
241
242         /* We hide that we have no struct page backing our stolen object
243          * by wrapping the contiguous physical allocation with a fake
244          * dma mapping in a single scatterlist.
245          */
246
247         st = kmalloc(sizeof(*st), GFP_KERNEL);
248         if (st == NULL)
249                 return NULL;
250
251         if (sg_alloc_table(st, 1, GFP_KERNEL)) {
252                 kfree(st);
253                 return NULL;
254         }
255
256         sg = st->sgl;
257         sg->offset = offset;
258         sg->length = size;
259
260         sg_dma_address(sg) = (dma_addr_t)dev_priv->mm.stolen_base + offset;
261         sg_dma_len(sg) = size;
262
263         return st;
264 }
265
266 static int i915_gem_object_get_pages_stolen(struct drm_i915_gem_object *obj)
267 {
268         BUG();
269         return -EINVAL;
270 }
271
272 static void i915_gem_object_put_pages_stolen(struct drm_i915_gem_object *obj)
273 {
274         /* Should only be called during free */
275         sg_free_table(obj->pages);
276         kfree(obj->pages);
277 }
278
279 static const struct drm_i915_gem_object_ops i915_gem_object_stolen_ops = {
280         .get_pages = i915_gem_object_get_pages_stolen,
281         .put_pages = i915_gem_object_put_pages_stolen,
282 };
283
284 static struct drm_i915_gem_object *
285 _i915_gem_object_create_stolen(struct drm_device *dev,
286                                struct drm_mm_node *stolen)
287 {
288         struct drm_i915_gem_object *obj;
289
290         obj = i915_gem_object_alloc(dev);
291         if (obj == NULL)
292                 return NULL;
293
294         if (drm_gem_private_object_init(dev, &obj->base, stolen->size))
295                 goto cleanup;
296
297         i915_gem_object_init(obj, &i915_gem_object_stolen_ops);
298
299         obj->pages = i915_pages_create_for_stolen(dev,
300                                                   stolen->start, stolen->size);
301         if (obj->pages == NULL)
302                 goto cleanup;
303
304         obj->has_dma_mapping = true;
305         i915_gem_object_pin_pages(obj);
306         obj->stolen = stolen;
307
308         obj->base.write_domain = I915_GEM_DOMAIN_GTT;
309         obj->base.read_domains = I915_GEM_DOMAIN_GTT;
310         obj->cache_level = I915_CACHE_NONE;
311
312         return obj;
313
314 cleanup:
315         i915_gem_object_free(obj);
316         return NULL;
317 }
318
319 struct drm_i915_gem_object *
320 i915_gem_object_create_stolen(struct drm_device *dev, u32 size)
321 {
322         struct drm_i915_private *dev_priv = dev->dev_private;
323         struct drm_i915_gem_object *obj;
324         struct drm_mm_node *stolen;
325
326         if (!drm_mm_initialized(&dev_priv->mm.stolen))
327                 return NULL;
328
329         DRM_DEBUG_KMS("creating stolen object: size=%x\n", size);
330         if (size == 0)
331                 return NULL;
332
333         stolen = drm_mm_search_free(&dev_priv->mm.stolen, size, 4096, 0);
334         if (stolen)
335                 stolen = drm_mm_get_block(stolen, size, 4096);
336         if (stolen == NULL)
337                 return NULL;
338
339         obj = _i915_gem_object_create_stolen(dev, stolen);
340         if (obj)
341                 return obj;
342
343         drm_mm_put_block(stolen);
344         return NULL;
345 }
346
347 struct drm_i915_gem_object *
348 i915_gem_object_create_stolen_for_preallocated(struct drm_device *dev,
349                                                u32 stolen_offset,
350                                                u32 gtt_offset,
351                                                u32 size)
352 {
353         struct drm_i915_private *dev_priv = dev->dev_private;
354         struct drm_i915_gem_object *obj;
355         struct drm_mm_node *stolen;
356         int ret;
357
358         if (!drm_mm_initialized(&dev_priv->mm.stolen))
359                 return NULL;
360
361         DRM_DEBUG_KMS("creating preallocated stolen object: stolen_offset=%x, gtt_offset=%x, size=%x\n",
362                         stolen_offset, gtt_offset, size);
363
364         /* KISS and expect everything to be page-aligned */
365         BUG_ON(stolen_offset & 4095);
366         BUG_ON(size & 4095);
367
368         if (WARN_ON(size == 0))
369                 return NULL;
370
371         stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
372         if (!stolen)
373                 return NULL;
374
375         stolen->start = stolen_offset;
376         stolen->size = size;
377         ret = drm_mm_reserve_node(&dev_priv->mm.stolen, stolen);
378         if (ret) {
379                 DRM_DEBUG_KMS("failed to allocate stolen space\n");
380                 kfree(stolen);
381                 return NULL;
382         }
383
384         obj = _i915_gem_object_create_stolen(dev, stolen);
385         if (obj == NULL) {
386                 DRM_DEBUG_KMS("failed to allocate stolen object\n");
387                 drm_mm_put_block(stolen);
388                 return NULL;
389         }
390
391         /* Some objects just need physical mem from stolen space */
392         if (gtt_offset == I915_GTT_OFFSET_NONE)
393                 return obj;
394
395         /* To simplify the initialisation sequence between KMS and GTT,
396          * we allow construction of the stolen object prior to
397          * setting up the GTT space. The actual reservation will occur
398          * later.
399          */
400         obj->gtt_space.start = gtt_offset;
401         obj->gtt_space.size = size;
402         if (drm_mm_initialized(&dev_priv->mm.gtt_space)) {
403                 ret = drm_mm_reserve_node(&dev_priv->mm.gtt_space,
404                                           &obj->gtt_space);
405                 if (ret) {
406                         DRM_DEBUG_KMS("failed to allocate stolen GTT space\n");
407                         goto unref_out;
408                 }
409         }
410
411         obj->has_global_gtt_mapping = 1;
412
413         list_add_tail(&obj->global_list, &dev_priv->mm.bound_list);
414         list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
415
416         return obj;
417
418 unref_out:
419         drm_gem_object_unreference(&obj->base);
420         return NULL;
421 }
422
423 void
424 i915_gem_object_release_stolen(struct drm_i915_gem_object *obj)
425 {
426         if (obj->stolen) {
427                 drm_mm_put_block(obj->stolen);
428                 obj->stolen = NULL;
429         }
430 }