blob: 64d8fb3fd76441e7c85ece8a9e096667e43ca635 [file] [log] [blame]
Chris Wilson920cf412016-10-28 13:58:30 +01001/*
2 * Copyright © 2014-2016 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 */
24
25#include <drm/drmP.h>
26#include <drm/i915_drm.h>
27#include "i915_drv.h"
28
29#define QUIET (__GFP_NORETRY | __GFP_NOWARN)
30
31/* convert swiotlb segment size into sensible units (pages)! */
32#define IO_TLB_SEGPAGES (IO_TLB_SEGSIZE << IO_TLB_SHIFT >> PAGE_SHIFT)
33
34static void internal_free_pages(struct sg_table *st)
35{
36 struct scatterlist *sg;
37
Chris Wilson4703b042017-01-31 10:46:30 +000038 for (sg = st->sgl; sg; sg = __sg_next(sg)) {
39 if (sg_page(sg))
40 __free_pages(sg_page(sg), get_order(sg->length));
41 }
Chris Wilson920cf412016-10-28 13:58:30 +010042
43 sg_free_table(st);
44 kfree(st);
45}
46
Chris Wilson03ac84f2016-10-28 13:58:36 +010047static struct sg_table *
48i915_gem_object_get_pages_internal(struct drm_i915_gem_object *obj)
Chris Wilson920cf412016-10-28 13:58:30 +010049{
50 struct drm_i915_private *i915 = to_i915(obj->base.dev);
51 unsigned int npages = obj->base.size / PAGE_SIZE;
52 struct sg_table *st;
53 struct scatterlist *sg;
54 int max_order;
55 gfp_t gfp;
56
57 st = kmalloc(sizeof(*st), GFP_KERNEL);
58 if (!st)
Chris Wilson03ac84f2016-10-28 13:58:36 +010059 return ERR_PTR(-ENOMEM);
Chris Wilson920cf412016-10-28 13:58:30 +010060
61 if (sg_alloc_table(st, npages, GFP_KERNEL)) {
62 kfree(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +010063 return ERR_PTR(-ENOMEM);
Chris Wilson920cf412016-10-28 13:58:30 +010064 }
65
66 sg = st->sgl;
67 st->nents = 0;
68
69 max_order = MAX_ORDER;
70#ifdef CONFIG_SWIOTLB
71 if (swiotlb_nr_tbl()) /* minimum max swiotlb size is IO_TLB_SEGSIZE */
72 max_order = min(max_order, ilog2(IO_TLB_SEGPAGES));
73#endif
74
75 gfp = GFP_KERNEL | __GFP_HIGHMEM | __GFP_RECLAIMABLE;
Jani Nikulac0f86832016-12-07 12:13:04 +020076 if (IS_I965GM(i915) || IS_I965G(i915)) {
Chris Wilson920cf412016-10-28 13:58:30 +010077 /* 965gm cannot relocate objects above 4GiB. */
78 gfp &= ~__GFP_HIGHMEM;
79 gfp |= __GFP_DMA32;
80 }
81
82 do {
83 int order = min(fls(npages) - 1, max_order);
84 struct page *page;
85
86 do {
87 page = alloc_pages(gfp | (order ? QUIET : 0), order);
88 if (page)
89 break;
90 if (!order--)
91 goto err;
92
93 /* Limit subsequent allocations as well */
94 max_order = order;
95 } while (1);
96
97 sg_set_page(sg, page, PAGE_SIZE << order, 0);
98 st->nents++;
99
100 npages -= 1 << order;
101 if (!npages) {
102 sg_mark_end(sg);
103 break;
104 }
105
106 sg = __sg_next(sg);
107 } while (1);
Chris Wilson920cf412016-10-28 13:58:30 +0100108
Chris Wilson03ac84f2016-10-28 13:58:36 +0100109 if (i915_gem_gtt_prepare_pages(obj, st))
Chris Wilson920cf412016-10-28 13:58:30 +0100110 goto err;
Chris Wilson920cf412016-10-28 13:58:30 +0100111
112 /* Mark the pages as dontneed whilst they are still pinned. As soon
113 * as they are unpinned they are allowed to be reaped by the shrinker,
114 * and the caller is expected to repopulate - the contents of this
115 * object are only valid whilst active and pinned.
116 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100117 obj->mm.madv = I915_MADV_DONTNEED;
Chris Wilson03ac84f2016-10-28 13:58:36 +0100118 return st;
Chris Wilson920cf412016-10-28 13:58:30 +0100119
120err:
Chris Wilson4703b042017-01-31 10:46:30 +0000121 sg_set_page(sg, NULL, 0, 0);
Chris Wilson920cf412016-10-28 13:58:30 +0100122 sg_mark_end(sg);
123 internal_free_pages(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100124 return ERR_PTR(-ENOMEM);
Chris Wilson920cf412016-10-28 13:58:30 +0100125}
126
Chris Wilson03ac84f2016-10-28 13:58:36 +0100127static void i915_gem_object_put_pages_internal(struct drm_i915_gem_object *obj,
128 struct sg_table *pages)
Chris Wilson920cf412016-10-28 13:58:30 +0100129{
Chris Wilson03ac84f2016-10-28 13:58:36 +0100130 i915_gem_gtt_finish_pages(obj, pages);
131 internal_free_pages(pages);
Chris Wilson920cf412016-10-28 13:58:30 +0100132
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100133 obj->mm.dirty = false;
134 obj->mm.madv = I915_MADV_WILLNEED;
Chris Wilson920cf412016-10-28 13:58:30 +0100135}
136
137static const struct drm_i915_gem_object_ops i915_gem_object_internal_ops = {
Tvrtko Ursulin3599a912016-11-01 14:44:10 +0000138 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE |
139 I915_GEM_OBJECT_IS_SHRINKABLE,
Chris Wilson920cf412016-10-28 13:58:30 +0100140 .get_pages = i915_gem_object_get_pages_internal,
141 .put_pages = i915_gem_object_put_pages_internal,
142};
143
144/**
145 * Creates a new object that wraps some internal memory for private use.
146 * This object is not backed by swappable storage, and as such its contents
147 * are volatile and only valid whilst pinned. If the object is reaped by the
148 * shrinker, its pages and data will be discarded. Equally, it is not a full
149 * GEM object and so not valid for access from userspace. This makes it useful
150 * for hardware interfaces like ringbuffers (which are pinned from the time
151 * the request is written to the time the hardware stops accessing it), but
152 * not for contexts (which need to be preserved when not active for later
153 * reuse). Note that it is not cleared upon allocation.
154 */
155struct drm_i915_gem_object *
156i915_gem_object_create_internal(struct drm_i915_private *i915,
Chris Wilsonfcd46e52017-01-12 13:04:31 +0000157 phys_addr_t size)
Chris Wilson920cf412016-10-28 13:58:30 +0100158{
159 struct drm_i915_gem_object *obj;
160
Chris Wilsonfcd46e52017-01-12 13:04:31 +0000161 GEM_BUG_ON(!size);
Chris Wilsonbf6b2032017-01-16 14:52:42 +0000162 GEM_BUG_ON(!IS_ALIGNED(size, PAGE_SIZE));
Chris Wilsonfcd46e52017-01-12 13:04:31 +0000163
164 if (overflows_type(size, obj->base.size))
165 return ERR_PTR(-E2BIG);
166
Tvrtko Ursulin187685c2016-12-01 14:16:36 +0000167 obj = i915_gem_object_alloc(i915);
Chris Wilson920cf412016-10-28 13:58:30 +0100168 if (!obj)
169 return ERR_PTR(-ENOMEM);
170
171 drm_gem_private_object_init(&i915->drm, &obj->base, size);
172 i915_gem_object_init(obj, &i915_gem_object_internal_ops);
173
174 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
175 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
176 obj->cache_level = HAS_LLC(i915) ? I915_CACHE_LLC : I915_CACHE_NONE;
177
178 return obj;
179}