blob: b1d367dba347a118c3b221b32031c06f03a74782 [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
Ville Syrjälä0ad98c72015-10-08 12:08:20 +030033#define KB(x) ((x) * 1024)
34#define MB(x) (KB(x) * 1024)
35
Chris Wilson9797fbf2012-04-24 15:47:39 +010036/*
37 * The BIOS typically reserves some of the system's memory for the exclusive
38 * use of the integrated graphics. This memory is no longer available for
39 * use by the OS and so the user finds that his system has less memory
40 * available than he put in. We refer to this memory as stolen.
41 *
42 * The BIOS will allocate its framebuffer from the stolen memory. Our
43 * goal is try to reuse that object for our own fbcon which must always
44 * be available for panics. Anything else we can reuse the stolen memory
45 * for is a boon.
46 */
47
Paulo Zanonia9da5122015-09-14 15:19:57 -030048int i915_gem_stolen_insert_node_in_range(struct drm_i915_private *dev_priv,
49 struct drm_mm_node *node, u64 size,
50 unsigned alignment, u64 start, u64 end)
Paulo Zanonid713fd42015-07-02 19:25:07 -030051{
Paulo Zanoni92e97d22015-07-02 19:25:09 -030052 int ret;
53
Paulo Zanonid713fd42015-07-02 19:25:07 -030054 if (!drm_mm_initialized(&dev_priv->mm.stolen))
55 return -ENODEV;
56
Paulo Zanoni1ca36d42015-09-23 12:52:22 -030057 /* See the comment at the drm_mm_init() call for more about this check.
Mika Kuoppala6e4f10c2016-06-07 17:18:56 +030058 * WaSkipStolenMemoryFirstPage:bdw,chv,kbl (incomplete)
59 */
60 if (start < 4096 && (IS_GEN8(dev_priv) ||
61 IS_KBL_REVID(dev_priv, 0, KBL_REVID_A0)))
Paulo Zanoni1ca36d42015-09-23 12:52:22 -030062 start = 4096;
63
Paulo Zanoni92e97d22015-07-02 19:25:09 -030064 mutex_lock(&dev_priv->mm.stolen_lock);
Paulo Zanonia9da5122015-09-14 15:19:57 -030065 ret = drm_mm_insert_node_in_range(&dev_priv->mm.stolen, node, size,
66 alignment, start, end,
67 DRM_MM_SEARCH_DEFAULT);
Paulo Zanoni92e97d22015-07-02 19:25:09 -030068 mutex_unlock(&dev_priv->mm.stolen_lock);
69
70 return ret;
Paulo Zanonid713fd42015-07-02 19:25:07 -030071}
72
Paulo Zanonia9da5122015-09-14 15:19:57 -030073int i915_gem_stolen_insert_node(struct drm_i915_private *dev_priv,
74 struct drm_mm_node *node, u64 size,
75 unsigned alignment)
76{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +030077 struct i915_ggtt *ggtt = &dev_priv->ggtt;
78
Paulo Zanonia9da5122015-09-14 15:19:57 -030079 return i915_gem_stolen_insert_node_in_range(dev_priv, node, size,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +030080 alignment, 0,
81 ggtt->stolen_usable_size);
Paulo Zanonia9da5122015-09-14 15:19:57 -030082}
83
Paulo Zanonid713fd42015-07-02 19:25:07 -030084void i915_gem_stolen_remove_node(struct drm_i915_private *dev_priv,
85 struct drm_mm_node *node)
86{
Paulo Zanoni92e97d22015-07-02 19:25:09 -030087 mutex_lock(&dev_priv->mm.stolen_lock);
Paulo Zanonid713fd42015-07-02 19:25:07 -030088 drm_mm_remove_node(node);
Paulo Zanoni92e97d22015-07-02 19:25:09 -030089 mutex_unlock(&dev_priv->mm.stolen_lock);
Paulo Zanonid713fd42015-07-02 19:25:07 -030090}
91
Chris Wilsone12a2d52012-11-15 11:32:18 +000092static unsigned long i915_stolen_to_physical(struct drm_device *dev)
Chris Wilson9797fbf2012-04-24 15:47:39 +010093{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +030094 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +030095 struct pci_dev *pdev = dev_priv->drm.pdev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +030096 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsoneaba1b82013-07-04 12:28:35 +010097 struct resource *r;
Chris Wilson9797fbf2012-04-24 15:47:39 +010098 u32 base;
99
Chris Wilson17fec8a2013-07-04 00:23:33 +0100100 /* Almost universally we can find the Graphics Base of Stolen Memory
Joonas Lahtinene10fa552016-04-15 12:03:39 +0300101 * at register BSM (0x5c) in the igfx configuration space. On a few
102 * (desktop) machines this is also mirrored in the bridge device at
103 * different locations, or in the MCHBAR.
Chris Wilsone12a2d52012-11-15 11:32:18 +0000104 *
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300105 * On 865 we just check the TOUD register.
106 *
107 * On 830/845/85x the stolen memory base isn't available in any
108 * register. We need to calculate it as TOM-TSEG_SIZE-stolen_size.
109 *
Chris Wilson9797fbf2012-04-24 15:47:39 +0100110 */
Chris Wilsone12a2d52012-11-15 11:32:18 +0000111 base = 0;
Ville Syrjäläa9097be2016-10-31 22:37:20 +0200112 if (INTEL_GEN(dev_priv) >= 3) {
Joonas Lahtinene10fa552016-04-15 12:03:39 +0300113 u32 bsm;
114
David Weinehall52a05c32016-08-22 13:32:44 +0300115 pci_read_config_dword(pdev, INTEL_BSM, &bsm);
Joonas Lahtinene10fa552016-04-15 12:03:39 +0300116
Joonas Lahtinenc0dd3462016-04-22 13:29:26 +0300117 base = bsm & INTEL_BSM_MASK;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100118 } else if (IS_I865G(dev_priv)) {
Ville Syrjäläd721b022016-08-08 13:58:39 +0300119 u32 tseg_size = 0;
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300120 u16 toud = 0;
Ville Syrjäläd721b022016-08-08 13:58:39 +0300121 u8 tmp;
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300122
David Weinehall52a05c32016-08-22 13:32:44 +0300123 pci_bus_read_config_byte(pdev->bus, PCI_DEVFN(0, 0),
Ville Syrjäläd721b022016-08-08 13:58:39 +0300124 I845_ESMRAMC, &tmp);
125
126 if (tmp & TSEG_ENABLE) {
127 switch (tmp & I845_TSEG_SIZE_MASK) {
128 case I845_TSEG_SIZE_512K:
129 tseg_size = KB(512);
130 break;
131 case I845_TSEG_SIZE_1M:
132 tseg_size = MB(1);
133 break;
134 }
135 }
136
David Weinehall52a05c32016-08-22 13:32:44 +0300137 pci_bus_read_config_word(pdev->bus, PCI_DEVFN(0, 0),
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300138 I865_TOUD, &toud);
139
Ville Syrjäläd721b022016-08-08 13:58:39 +0300140 base = (toud << 16) + tseg_size;
Ville Syrjäläa9097be2016-10-31 22:37:20 +0200141 } else if (IS_I85X(dev_priv)) {
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300142 u32 tseg_size = 0;
143 u32 tom;
144 u8 tmp;
145
David Weinehall52a05c32016-08-22 13:32:44 +0300146 pci_bus_read_config_byte(pdev->bus, PCI_DEVFN(0, 0),
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300147 I85X_ESMRAMC, &tmp);
148
149 if (tmp & TSEG_ENABLE)
150 tseg_size = MB(1);
151
David Weinehall52a05c32016-08-22 13:32:44 +0300152 pci_bus_read_config_byte(pdev->bus, PCI_DEVFN(0, 1),
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300153 I85X_DRB3, &tmp);
154 tom = tmp * MB(32);
155
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300156 base = tom - tseg_size - ggtt->stolen_size;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100157 } else if (IS_845G(dev_priv)) {
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300158 u32 tseg_size = 0;
159 u32 tom;
160 u8 tmp;
161
David Weinehall52a05c32016-08-22 13:32:44 +0300162 pci_bus_read_config_byte(pdev->bus, PCI_DEVFN(0, 0),
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300163 I845_ESMRAMC, &tmp);
164
165 if (tmp & TSEG_ENABLE) {
166 switch (tmp & I845_TSEG_SIZE_MASK) {
167 case I845_TSEG_SIZE_512K:
168 tseg_size = KB(512);
169 break;
170 case I845_TSEG_SIZE_1M:
171 tseg_size = MB(1);
172 break;
173 }
174 }
175
David Weinehall52a05c32016-08-22 13:32:44 +0300176 pci_bus_read_config_byte(pdev->bus, PCI_DEVFN(0, 0),
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300177 I830_DRB3, &tmp);
178 tom = tmp * MB(32);
179
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300180 base = tom - tseg_size - ggtt->stolen_size;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100181 } else if (IS_I830(dev_priv)) {
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300182 u32 tseg_size = 0;
183 u32 tom;
184 u8 tmp;
185
David Weinehall52a05c32016-08-22 13:32:44 +0300186 pci_bus_read_config_byte(pdev->bus, PCI_DEVFN(0, 0),
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300187 I830_ESMRAMC, &tmp);
188
189 if (tmp & TSEG_ENABLE) {
190 if (tmp & I830_TSEG_SIZE_1M)
191 tseg_size = MB(1);
192 else
193 tseg_size = KB(512);
194 }
195
David Weinehall52a05c32016-08-22 13:32:44 +0300196 pci_bus_read_config_byte(pdev->bus, PCI_DEVFN(0, 0),
Ville Syrjälä0ad98c72015-10-08 12:08:20 +0300197 I830_DRB3, &tmp);
198 tom = tmp * MB(32);
199
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300200 base = tom - tseg_size - ggtt->stolen_size;
Chris Wilsone12a2d52012-11-15 11:32:18 +0000201 }
Chris Wilson9797fbf2012-04-24 15:47:39 +0100202
Chris Wilsoneaba1b82013-07-04 12:28:35 +0100203 if (base == 0)
204 return 0;
205
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300206 /* make sure we don't clobber the GTT if it's within stolen memory */
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +0100207 if (INTEL_GEN(dev_priv) <= 4 && !IS_G33(dev_priv) &&
208 !IS_G4X(dev_priv)) {
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300209 struct {
210 u32 start, end;
211 } stolen[2] = {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300212 { .start = base, .end = base + ggtt->stolen_size, },
213 { .start = base, .end = base + ggtt->stolen_size, },
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300214 };
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300215 u64 ggtt_start, ggtt_end;
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300216
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300217 ggtt_start = I915_READ(PGTBL_CTL);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100218 if (IS_GEN4(dev_priv))
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300219 ggtt_start = (ggtt_start & PGTBL_ADDRESS_LO_MASK) |
220 (ggtt_start & PGTBL_ADDRESS_HI_MASK) << 28;
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300221 else
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300222 ggtt_start &= PGTBL_ADDRESS_LO_MASK;
223 ggtt_end = ggtt_start + ggtt_total_entries(ggtt) * 4;
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300224
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300225 if (ggtt_start >= stolen[0].start && ggtt_start < stolen[0].end)
226 stolen[0].end = ggtt_start;
227 if (ggtt_end > stolen[1].start && ggtt_end <= stolen[1].end)
228 stolen[1].start = ggtt_end;
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300229
230 /* pick the larger of the two chunks */
231 if (stolen[0].end - stolen[0].start >
232 stolen[1].end - stolen[1].start) {
233 base = stolen[0].start;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300234 ggtt->stolen_size = stolen[0].end - stolen[0].start;
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300235 } else {
236 base = stolen[1].start;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300237 ggtt->stolen_size = stolen[1].end - stolen[1].start;
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300238 }
239
240 if (stolen[0].start != stolen[1].start ||
241 stolen[0].end != stolen[1].end) {
242 DRM_DEBUG_KMS("GTT within stolen memory at 0x%llx-0x%llx\n",
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300243 (unsigned long long)ggtt_start,
244 (unsigned long long)ggtt_end - 1);
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300245 DRM_DEBUG_KMS("Stolen memory adjusted to 0x%x-0x%x\n",
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300246 base, base + (u32)ggtt->stolen_size - 1);
Ville Syrjäläf1e1c212014-06-05 20:02:59 +0300247 }
248 }
249
250
Chris Wilsoneaba1b82013-07-04 12:28:35 +0100251 /* Verify that nothing else uses this physical address. Stolen
252 * memory should be reserved by the BIOS and hidden from the
253 * kernel. So if the region is already marked as busy, something
254 * is seriously wrong.
255 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300256 r = devm_request_mem_region(dev->dev, base, ggtt->stolen_size,
Chris Wilsoneaba1b82013-07-04 12:28:35 +0100257 "Graphics Stolen Memory");
258 if (r == NULL) {
Akash Goel3617dc92014-01-13 16:25:21 +0530259 /*
260 * One more attempt but this time requesting region from
261 * base + 1, as we have seen that this resolves the region
262 * conflict with the PCI Bus.
263 * This is a BIOS w/a: Some BIOS wrap stolen in the root
264 * PCI bus, but have an off-by-one error. Hence retry the
265 * reservation starting from 1 instead of 0.
266 */
267 r = devm_request_mem_region(dev->dev, base + 1,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300268 ggtt->stolen_size - 1,
Akash Goel3617dc92014-01-13 16:25:21 +0530269 "Graphics Stolen Memory");
Daniel Vetter0b6d24c2014-04-11 15:55:17 +0200270 /*
271 * GEN3 firmware likes to smash pci bridges into the stolen
272 * range. Apparently this works.
273 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100274 if (r == NULL && !IS_GEN3(dev_priv)) {
Akash Goel3617dc92014-01-13 16:25:21 +0530275 DRM_ERROR("conflict detected with stolen region: [0x%08x - 0x%08x]\n",
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300276 base, base + (uint32_t)ggtt->stolen_size);
Akash Goel3617dc92014-01-13 16:25:21 +0530277 base = 0;
278 }
Chris Wilsoneaba1b82013-07-04 12:28:35 +0100279 }
280
Chris Wilsone12a2d52012-11-15 11:32:18 +0000281 return base;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100282}
283
Chris Wilson9797fbf2012-04-24 15:47:39 +0100284void i915_gem_cleanup_stolen(struct drm_device *dev)
285{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100286 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100287
Daniel Vetter446f8d82013-07-02 10:48:31 +0200288 if (!drm_mm_initialized(&dev_priv->mm.stolen))
289 return;
290
Daniel Vetter4d7bb012012-12-18 15:24:37 +0100291 drm_mm_takedown(&dev_priv->mm.stolen);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100292}
293
Ville Syrjälä7d316ae2015-09-16 21:28:50 +0300294static void g4x_get_stolen_reserved(struct drm_i915_private *dev_priv,
295 unsigned long *base, unsigned long *size)
296{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300297 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ville Syrjälä7d316ae2015-09-16 21:28:50 +0300298 uint32_t reg_val = I915_READ(IS_GM45(dev_priv) ?
299 CTG_STOLEN_RESERVED :
300 ELK_STOLEN_RESERVED);
301 unsigned long stolen_top = dev_priv->mm.stolen_base +
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300302 ggtt->stolen_size;
Ville Syrjälä7d316ae2015-09-16 21:28:50 +0300303
304 *base = (reg_val & G4X_STOLEN_RESERVED_ADDR2_MASK) << 16;
305
306 WARN_ON((reg_val & G4X_STOLEN_RESERVED_ADDR1_MASK) < *base);
307
308 /* On these platforms, the register doesn't have a size field, so the
309 * size is the distance between the base and the top of the stolen
310 * memory. We also have the genuine case where base is zero and there's
311 * nothing reserved. */
312 if (*base == 0)
313 *size = 0;
314 else
315 *size = stolen_top - *base;
316}
317
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300318static void gen6_get_stolen_reserved(struct drm_i915_private *dev_priv,
319 unsigned long *base, unsigned long *size)
320{
321 uint32_t reg_val = I915_READ(GEN6_STOLEN_RESERVED);
322
323 *base = reg_val & GEN6_STOLEN_RESERVED_ADDR_MASK;
324
325 switch (reg_val & GEN6_STOLEN_RESERVED_SIZE_MASK) {
326 case GEN6_STOLEN_RESERVED_1M:
327 *size = 1024 * 1024;
328 break;
329 case GEN6_STOLEN_RESERVED_512K:
330 *size = 512 * 1024;
331 break;
332 case GEN6_STOLEN_RESERVED_256K:
333 *size = 256 * 1024;
334 break;
335 case GEN6_STOLEN_RESERVED_128K:
336 *size = 128 * 1024;
337 break;
338 default:
339 *size = 1024 * 1024;
340 MISSING_CASE(reg_val & GEN6_STOLEN_RESERVED_SIZE_MASK);
341 }
342}
343
344static void gen7_get_stolen_reserved(struct drm_i915_private *dev_priv,
345 unsigned long *base, unsigned long *size)
346{
347 uint32_t reg_val = I915_READ(GEN6_STOLEN_RESERVED);
348
349 *base = reg_val & GEN7_STOLEN_RESERVED_ADDR_MASK;
350
351 switch (reg_val & GEN7_STOLEN_RESERVED_SIZE_MASK) {
352 case GEN7_STOLEN_RESERVED_1M:
353 *size = 1024 * 1024;
354 break;
355 case GEN7_STOLEN_RESERVED_256K:
356 *size = 256 * 1024;
357 break;
358 default:
359 *size = 1024 * 1024;
360 MISSING_CASE(reg_val & GEN7_STOLEN_RESERVED_SIZE_MASK);
361 }
362}
363
364static void gen8_get_stolen_reserved(struct drm_i915_private *dev_priv,
365 unsigned long *base, unsigned long *size)
366{
367 uint32_t reg_val = I915_READ(GEN6_STOLEN_RESERVED);
368
369 *base = reg_val & GEN6_STOLEN_RESERVED_ADDR_MASK;
370
371 switch (reg_val & GEN8_STOLEN_RESERVED_SIZE_MASK) {
372 case GEN8_STOLEN_RESERVED_1M:
373 *size = 1024 * 1024;
374 break;
375 case GEN8_STOLEN_RESERVED_2M:
376 *size = 2 * 1024 * 1024;
377 break;
378 case GEN8_STOLEN_RESERVED_4M:
379 *size = 4 * 1024 * 1024;
380 break;
381 case GEN8_STOLEN_RESERVED_8M:
382 *size = 8 * 1024 * 1024;
383 break;
384 default:
385 *size = 8 * 1024 * 1024;
386 MISSING_CASE(reg_val & GEN8_STOLEN_RESERVED_SIZE_MASK);
387 }
388}
389
390static void bdw_get_stolen_reserved(struct drm_i915_private *dev_priv,
391 unsigned long *base, unsigned long *size)
392{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300393 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300394 uint32_t reg_val = I915_READ(GEN6_STOLEN_RESERVED);
395 unsigned long stolen_top;
396
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300397 stolen_top = dev_priv->mm.stolen_base + ggtt->stolen_size;
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300398
399 *base = reg_val & GEN6_STOLEN_RESERVED_ADDR_MASK;
400
401 /* On these platforms, the register doesn't have a size field, so the
402 * size is the distance between the base and the top of the stolen
403 * memory. We also have the genuine case where base is zero and there's
404 * nothing reserved. */
405 if (*base == 0)
406 *size = 0;
407 else
408 *size = stolen_top - *base;
409}
410
Chris Wilson9797fbf2012-04-24 15:47:39 +0100411int i915_gem_init_stolen(struct drm_device *dev)
412{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300413 struct drm_i915_private *dev_priv = to_i915(dev);
414 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ville Syrjäläd7884d62015-09-11 21:14:29 +0300415 unsigned long reserved_total, reserved_base = 0, reserved_size;
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300416 unsigned long stolen_top;
Chris Wilson9797fbf2012-04-24 15:47:39 +0100417
Paulo Zanoni92e97d22015-07-02 19:25:09 -0300418 mutex_init(&dev_priv->mm.stolen_lock);
419
Chris Wilson0f4706d2014-03-18 14:50:50 +0200420#ifdef CONFIG_INTEL_IOMMU
Daniel Vetterfcc9fe12014-03-26 23:42:53 +0100421 if (intel_iommu_gfx_mapped && INTEL_INFO(dev)->gen < 8) {
Chris Wilson0f4706d2014-03-18 14:50:50 +0200422 DRM_INFO("DMAR active, disabling use of stolen memory\n");
423 return 0;
424 }
425#endif
426
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300427 if (ggtt->stolen_size == 0)
Chris Wilson6644a4e2013-09-05 13:40:25 +0100428 return 0;
429
Chris Wilsone12a2d52012-11-15 11:32:18 +0000430 dev_priv->mm.stolen_base = i915_stolen_to_physical(dev);
431 if (dev_priv->mm.stolen_base == 0)
432 return 0;
433
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300434 stolen_top = dev_priv->mm.stolen_base + ggtt->stolen_size;
Chris Wilsone12a2d52012-11-15 11:32:18 +0000435
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300436 switch (INTEL_INFO(dev_priv)->gen) {
437 case 2:
438 case 3:
Ville Syrjälä7d316ae2015-09-16 21:28:50 +0300439 break;
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300440 case 4:
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +0100441 if (IS_G4X(dev_priv))
Ville Syrjälä7d316ae2015-09-16 21:28:50 +0300442 g4x_get_stolen_reserved(dev_priv, &reserved_base,
443 &reserved_size);
444 break;
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300445 case 5:
446 /* Assume the gen6 maximum for the older platforms. */
447 reserved_size = 1024 * 1024;
448 reserved_base = stolen_top - reserved_size;
449 break;
450 case 6:
451 gen6_get_stolen_reserved(dev_priv, &reserved_base,
452 &reserved_size);
453 break;
454 case 7:
455 gen7_get_stolen_reserved(dev_priv, &reserved_base,
456 &reserved_size);
457 break;
458 default:
Rodrigo Vivief11bdb2015-10-28 04:16:45 -0700459 if (IS_BROADWELL(dev_priv) ||
Tvrtko Ursulin08537232016-10-13 11:03:02 +0100460 IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300461 bdw_get_stolen_reserved(dev_priv, &reserved_base,
462 &reserved_size);
463 else
464 gen8_get_stolen_reserved(dev_priv, &reserved_base,
465 &reserved_size);
466 break;
Daniel Vetter40bae732014-09-11 13:28:08 +0200467 }
Jesse Barnesc9cddff2013-05-08 10:45:13 -0700468
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300469 /* It is possible for the reserved base to be zero, but the register
470 * field for size doesn't have a zero option. */
471 if (reserved_base == 0) {
472 reserved_size = 0;
473 reserved_base = stolen_top;
474 }
475
476 if (reserved_base < dev_priv->mm.stolen_base ||
477 reserved_base + reserved_size > stolen_top) {
478 DRM_DEBUG_KMS("Stolen reserved area [0x%08lx - 0x%08lx] outside stolen memory [0x%08lx - 0x%08lx]\n",
479 reserved_base, reserved_base + reserved_size,
480 dev_priv->mm.stolen_base, stolen_top);
Daniel Vetter897f9ed2013-07-09 14:44:27 +0200481 return 0;
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300482 }
483
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300484 ggtt->stolen_reserved_base = reserved_base;
485 ggtt->stolen_reserved_size = reserved_size;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +0530486
Paulo Zanoni3774eb52015-08-10 14:57:32 -0300487 /* It is possible for the reserved area to end before the end of stolen
488 * memory, so just consider the start. */
489 reserved_total = stolen_top - reserved_base;
490
Thierry Reding8e9d5972015-08-14 12:35:23 +0200491 DRM_DEBUG_KMS("Memory reserved for graphics device: %zuK, usable: %luK\n",
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300492 ggtt->stolen_size >> 10,
493 (ggtt->stolen_size - reserved_total) >> 10);
Daniel Vetter897f9ed2013-07-09 14:44:27 +0200494
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300495 ggtt->stolen_usable_size = ggtt->stolen_size - reserved_total;
Paulo Zanonia9da5122015-09-14 15:19:57 -0300496
Paulo Zanoni1ca36d42015-09-23 12:52:22 -0300497 /*
498 * Basic memrange allocator for stolen space.
499 *
500 * TODO: Notice that some platforms require us to not use the first page
501 * of the stolen memory but their BIOSes may still put the framebuffer
502 * on the first page. So we don't reserve this page for now because of
503 * that. Our current solution is to just prevent new nodes from being
504 * inserted on the first page - see the check we have at
505 * i915_gem_stolen_insert_node_in_range(). We may want to fix the fbcon
506 * problem later.
507 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300508 drm_mm_init(&dev_priv->mm.stolen, 0, ggtt->stolen_usable_size);
Chris Wilson9797fbf2012-04-24 15:47:39 +0100509
510 return 0;
511}
Chris Wilson0104fdb2012-11-15 11:32:26 +0000512
513static struct sg_table *
514i915_pages_create_for_stolen(struct drm_device *dev,
515 u32 offset, u32 size)
516{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300517 struct drm_i915_private *dev_priv = to_i915(dev);
518 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000519 struct sg_table *st;
520 struct scatterlist *sg;
521
522 DRM_DEBUG_DRIVER("offset=0x%x, size=%d\n", offset, size);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300523 BUG_ON(offset > ggtt->stolen_size - size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000524
525 /* We hide that we have no struct page backing our stolen object
526 * by wrapping the contiguous physical allocation with a fake
527 * dma mapping in a single scatterlist.
528 */
529
530 st = kmalloc(sizeof(*st), GFP_KERNEL);
531 if (st == NULL)
532 return NULL;
533
534 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
535 kfree(st);
536 return NULL;
537 }
538
539 sg = st->sgl;
Akash Goelec14ba42014-01-13 16:24:45 +0530540 sg->offset = 0;
Imre Deaked23abd2013-03-26 15:14:19 +0200541 sg->length = size;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000542
543 sg_dma_address(sg) = (dma_addr_t)dev_priv->mm.stolen_base + offset;
544 sg_dma_len(sg) = size;
545
546 return st;
547}
548
Chris Wilson03ac84f2016-10-28 13:58:36 +0100549static struct sg_table *
550i915_gem_object_get_pages_stolen(struct drm_i915_gem_object *obj)
Chris Wilson0104fdb2012-11-15 11:32:26 +0000551{
Chris Wilson03ac84f2016-10-28 13:58:36 +0100552 return i915_pages_create_for_stolen(obj->base.dev,
553 obj->stolen->start,
554 obj->stolen->size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000555}
556
Chris Wilson03ac84f2016-10-28 13:58:36 +0100557static void i915_gem_object_put_pages_stolen(struct drm_i915_gem_object *obj,
558 struct sg_table *pages)
Chris Wilson0104fdb2012-11-15 11:32:26 +0000559{
560 /* Should only be called during free */
Chris Wilson03ac84f2016-10-28 13:58:36 +0100561 sg_free_table(pages);
562 kfree(pages);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000563}
564
Chris Wilsonef0cf272014-06-06 10:22:54 +0100565static void
566i915_gem_object_release_stolen(struct drm_i915_gem_object *obj)
567{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100568 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Paulo Zanonid713fd42015-07-02 19:25:07 -0300569
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100570 __i915_gem_object_unpin_pages(obj);
571
Chris Wilsonef0cf272014-06-06 10:22:54 +0100572 if (obj->stolen) {
Paulo Zanonid713fd42015-07-02 19:25:07 -0300573 i915_gem_stolen_remove_node(dev_priv, obj->stolen);
Chris Wilsonef0cf272014-06-06 10:22:54 +0100574 kfree(obj->stolen);
575 obj->stolen = NULL;
576 }
577}
Chris Wilson0104fdb2012-11-15 11:32:26 +0000578static const struct drm_i915_gem_object_ops i915_gem_object_stolen_ops = {
579 .get_pages = i915_gem_object_get_pages_stolen,
580 .put_pages = i915_gem_object_put_pages_stolen,
Chris Wilsonef0cf272014-06-06 10:22:54 +0100581 .release = i915_gem_object_release_stolen,
Chris Wilson0104fdb2012-11-15 11:32:26 +0000582};
583
584static struct drm_i915_gem_object *
585_i915_gem_object_create_stolen(struct drm_device *dev,
586 struct drm_mm_node *stolen)
587{
588 struct drm_i915_gem_object *obj;
589
Chris Wilson42dcedd2012-11-15 11:32:30 +0000590 obj = i915_gem_object_alloc(dev);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000591 if (obj == NULL)
592 return NULL;
593
David Herrmann89c82332013-07-11 11:56:32 +0200594 drm_gem_private_object_init(dev, &obj->base, stolen->size);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000595 i915_gem_object_init(obj, &i915_gem_object_stolen_ops);
596
Chris Wilson0104fdb2012-11-15 11:32:26 +0000597 obj->stolen = stolen;
Chris Wilsond46f1c32013-08-08 14:41:06 +0100598 obj->base.read_domains = I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT;
599 obj->cache_level = HAS_LLC(dev) ? I915_CACHE_LLC : I915_CACHE_NONE;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000600
Chris Wilson03ac84f2016-10-28 13:58:36 +0100601 if (i915_gem_object_pin_pages(obj))
602 goto cleanup;
603
Chris Wilson0104fdb2012-11-15 11:32:26 +0000604 return obj;
605
606cleanup:
Chris Wilson42dcedd2012-11-15 11:32:30 +0000607 i915_gem_object_free(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000608 return NULL;
609}
610
611struct drm_i915_gem_object *
612i915_gem_object_create_stolen(struct drm_device *dev, u32 size)
613{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100614 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000615 struct drm_i915_gem_object *obj;
616 struct drm_mm_node *stolen;
David Herrmann06e78ed2013-07-27 16:21:27 +0200617 int ret;
Chris Wilson0104fdb2012-11-15 11:32:26 +0000618
Daniel Vetter446f8d82013-07-02 10:48:31 +0200619 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson0104fdb2012-11-15 11:32:26 +0000620 return NULL;
621
622 DRM_DEBUG_KMS("creating stolen object: size=%x\n", size);
623 if (size == 0)
624 return NULL;
625
David Herrmann06e78ed2013-07-27 16:21:27 +0200626 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
627 if (!stolen)
Chris Wilson0104fdb2012-11-15 11:32:26 +0000628 return NULL;
629
Paulo Zanonid713fd42015-07-02 19:25:07 -0300630 ret = i915_gem_stolen_insert_node(dev_priv, stolen, size, 4096);
David Herrmann06e78ed2013-07-27 16:21:27 +0200631 if (ret) {
632 kfree(stolen);
633 return NULL;
634 }
635
Chris Wilson0104fdb2012-11-15 11:32:26 +0000636 obj = _i915_gem_object_create_stolen(dev, stolen);
637 if (obj)
638 return obj;
639
Paulo Zanonid713fd42015-07-02 19:25:07 -0300640 i915_gem_stolen_remove_node(dev_priv, stolen);
David Herrmann06e78ed2013-07-27 16:21:27 +0200641 kfree(stolen);
Chris Wilson0104fdb2012-11-15 11:32:26 +0000642 return NULL;
643}
644
Chris Wilson866d12b2013-02-19 13:31:37 -0800645struct drm_i915_gem_object *
646i915_gem_object_create_stolen_for_preallocated(struct drm_device *dev,
647 u32 stolen_offset,
648 u32 gtt_offset,
649 u32 size)
650{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300651 struct drm_i915_private *dev_priv = to_i915(dev);
652 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson866d12b2013-02-19 13:31:37 -0800653 struct drm_i915_gem_object *obj;
654 struct drm_mm_node *stolen;
Ben Widawsky2f633152013-07-17 12:19:03 -0700655 struct i915_vma *vma;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700656 int ret;
Chris Wilson866d12b2013-02-19 13:31:37 -0800657
Daniel Vetter446f8d82013-07-02 10:48:31 +0200658 if (!drm_mm_initialized(&dev_priv->mm.stolen))
Chris Wilson866d12b2013-02-19 13:31:37 -0800659 return NULL;
660
Tvrtko Ursulin12c83d92016-02-11 10:27:29 +0000661 lockdep_assert_held(&dev->struct_mutex);
662
Chris Wilson866d12b2013-02-19 13:31:37 -0800663 DRM_DEBUG_KMS("creating preallocated stolen object: stolen_offset=%x, gtt_offset=%x, size=%x\n",
664 stolen_offset, gtt_offset, size);
665
666 /* KISS and expect everything to be page-aligned */
Daniel Vetterf37b5c22015-02-10 23:12:27 +0100667 if (WARN_ON(size == 0) || WARN_ON(size & 4095) ||
668 WARN_ON(stolen_offset & 4095))
Chris Wilson866d12b2013-02-19 13:31:37 -0800669 return NULL;
670
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700671 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL);
672 if (!stolen)
673 return NULL;
674
Ben Widawsky338710e2013-07-05 14:41:03 -0700675 stolen->start = stolen_offset;
676 stolen->size = size;
Paulo Zanoni92e97d22015-07-02 19:25:09 -0300677 mutex_lock(&dev_priv->mm.stolen_lock);
Ben Widawsky338710e2013-07-05 14:41:03 -0700678 ret = drm_mm_reserve_node(&dev_priv->mm.stolen, stolen);
Paulo Zanoni92e97d22015-07-02 19:25:09 -0300679 mutex_unlock(&dev_priv->mm.stolen_lock);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700680 if (ret) {
Chris Wilson866d12b2013-02-19 13:31:37 -0800681 DRM_DEBUG_KMS("failed to allocate stolen space\n");
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700682 kfree(stolen);
Chris Wilson866d12b2013-02-19 13:31:37 -0800683 return NULL;
684 }
685
686 obj = _i915_gem_object_create_stolen(dev, stolen);
687 if (obj == NULL) {
688 DRM_DEBUG_KMS("failed to allocate stolen object\n");
Paulo Zanonid713fd42015-07-02 19:25:07 -0300689 i915_gem_stolen_remove_node(dev_priv, stolen);
David Herrmann06e78ed2013-07-27 16:21:27 +0200690 kfree(stolen);
Chris Wilson866d12b2013-02-19 13:31:37 -0800691 return NULL;
692 }
693
Jesse Barnes3727d552013-05-08 10:45:14 -0700694 /* Some objects just need physical mem from stolen space */
Daniel Vetter190d6cd2013-07-04 13:06:28 +0200695 if (gtt_offset == I915_GTT_OFFSET_NONE)
Jesse Barnes3727d552013-05-08 10:45:14 -0700696 return obj;
697
Chris Wilson03ac84f2016-10-28 13:58:36 +0100698 ret = i915_gem_object_pin_pages(obj);
699 if (ret)
700 goto err;
701
Chris Wilson058d88c2016-08-15 10:49:06 +0100702 vma = i915_gem_obj_lookup_or_create_vma(obj, &ggtt->base, NULL);
Dan Carpenterdb473b32013-07-19 08:45:46 +0300703 if (IS_ERR(vma)) {
704 ret = PTR_ERR(vma);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100705 goto err_pages;
Ben Widawsky2f633152013-07-17 12:19:03 -0700706 }
707
Chris Wilson866d12b2013-02-19 13:31:37 -0800708 /* To simplify the initialisation sequence between KMS and GTT,
709 * we allow construction of the stolen object prior to
710 * setting up the GTT space. The actual reservation will occur
711 * later.
712 */
Ben Widawsky2f633152013-07-17 12:19:03 -0700713 vma->node.start = gtt_offset;
714 vma->node.size = size;
Chris Wilson7c4a7d62015-09-24 11:57:45 +0100715
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +0100716 ret = drm_mm_reserve_node(&ggtt->base.mm, &vma->node);
717 if (ret) {
718 DRM_DEBUG_KMS("failed to allocate stolen GTT space\n");
Chris Wilson03ac84f2016-10-28 13:58:36 +0100719 goto err_pages;
Ben Widawskyedd41a82013-07-05 14:41:05 -0700720 }
Chris Wilson866d12b2013-02-19 13:31:37 -0800721
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100722 vma->pages = obj->mm.pages;
Chris Wilson3272db52016-08-04 16:32:32 +0100723 vma->flags |= I915_VMA_GLOBAL_BIND;
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +0100724 __i915_vma_set_map_and_fenceable(vma);
Chris Wilson50e046b2016-08-04 07:52:46 +0100725 list_move_tail(&vma->vm_link, &ggtt->base.inactive_list);
Joonas Lahtinen56cea322016-11-02 12:16:04 +0200726 list_move_tail(&obj->global_link, &dev_priv->mm.bound_list);
Chris Wilson15717de2016-08-04 07:52:26 +0100727 obj->bind_count++;
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +0100728
Chris Wilson866d12b2013-02-19 13:31:37 -0800729 return obj;
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700730
Chris Wilson03ac84f2016-10-28 13:58:36 +0100731err_pages:
732 i915_gem_object_unpin_pages(obj);
Chris Wilson7c4a7d62015-09-24 11:57:45 +0100733err:
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100734 i915_gem_object_put(obj);
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700735 return NULL;
Chris Wilson866d12b2013-02-19 13:31:37 -0800736}