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 u32 base; 49 50 /* Almost universally we can find the Graphics Base of Stolen Memory 51 * at offset 0x5c in the igfx configuration space. On a few (desktop) 52 * machines this is also mirrored in the bridge device at different 53 * locations, or in the MCHBAR. On gen2, the layout is again slightly 54 * different with the Graphics Segment immediately following Top of 55 * Memory (or Top of Usable DRAM). Note it appears that TOUD is only 56 * reported by 865g, so we just use the top of memory as determined 57 * by the e820 probe. 58 * 59 * XXX However gen2 requires an unavailable symbol. 60 */ 61 base = 0; 62 if (INTEL_INFO(dev)->gen >= 3) { 63 /* Read Graphics Base of Stolen Memory directly */ 64 pci_read_config_dword(dev->pdev, 0x5c, &base); 65 base &= ~((1<<20) - 1); 66 } else { /* GEN2 */ 67 #if 0 68 /* Stolen is immediately above Top of Memory */ 69 base = max_low_pfn_mapped << PAGE_SHIFT; 70 #endif 71 } 72 73 if (base == 0) 74 return 0; 75 76 /* make sure we don't clobber the GTT if it's within stolen memory */ 77 if (INTEL_INFO(dev)->gen <= 4 && !IS_G33(dev) && !IS_G4X(dev)) { 78 struct { 79 u32 start, end; 80 } stolen[2] = { 81 { .start = base, .end = base + dev_priv->gtt.stolen_size, }, 82 { .start = base, .end = base + dev_priv->gtt.stolen_size, }, 83 }; 84 u64 gtt_start, gtt_end; 85 86 gtt_start = I915_READ(PGTBL_CTL); 87 if (IS_GEN4(dev)) 88 gtt_start = (gtt_start & PGTBL_ADDRESS_LO_MASK) | 89 (gtt_start & PGTBL_ADDRESS_HI_MASK) << 28; 90 else 91 gtt_start &= PGTBL_ADDRESS_LO_MASK; 92 gtt_end = gtt_start + gtt_total_entries(dev_priv->gtt) * 4; 93 94 if (gtt_start >= stolen[0].start && gtt_start < stolen[0].end) 95 stolen[0].end = gtt_start; 96 if (gtt_end > stolen[1].start && gtt_end <= stolen[1].end) 97 stolen[1].start = gtt_end; 98 99 /* pick the larger of the two chunks */ 100 if (stolen[0].end - stolen[0].start > 101 stolen[1].end - stolen[1].start) { 102 base = stolen[0].start; 103 dev_priv->gtt.stolen_size = stolen[0].end - stolen[0].start; 104 } else { 105 base = stolen[1].start; 106 dev_priv->gtt.stolen_size = stolen[1].end - stolen[1].start; 107 } 108 109 if (stolen[0].start != stolen[1].start || 110 stolen[0].end != stolen[1].end) { 111 DRM_DEBUG_KMS("GTT within stolen memory at 0x%llx-0x%llx\n", 112 (unsigned long long) gtt_start, 113 (unsigned long long) gtt_end - 1); 114 DRM_DEBUG_KMS("Stolen memory adjusted to 0x%x-0x%x\n", 115 base, base + (u32) dev_priv->gtt.stolen_size - 1); 116 } 117 } 118 119 120 /* Verify that nothing else uses this physical address. Stolen 121 * memory should be reserved by the BIOS and hidden from the 122 * kernel. So if the region is already marked as busy, something 123 * is seriously wrong. 124 */ 125 #if 0 126 r = devm_request_mem_region(dev->dev, base, dev_priv->gtt.stolen_size, 127 "Graphics Stolen Memory"); 128 if (r == NULL) { 129 /* 130 * One more attempt but this time requesting region from 131 * base + 1, as we have seen that this resolves the region 132 * conflict with the PCI Bus. 133 * This is a BIOS w/a: Some BIOS wrap stolen in the root 134 * PCI bus, but have an off-by-one error. Hence retry the 135 * reservation starting from 1 instead of 0. 136 */ 137 r = devm_request_mem_region(dev->dev, base + 1, 138 dev_priv->gtt.stolen_size - 1, 139 "Graphics Stolen Memory"); 140 if (r == NULL) { 141 DRM_ERROR("conflict detected with stolen region: [0x%08x - 0x%08x]\n", 142 base, base + (uint32_t)dev_priv->gtt.stolen_size); 143 base = 0; 144 } 145 } 146 #endif 147 148 return base; 149 } 150 151 static int find_compression_threshold(struct drm_device *dev, 152 struct drm_mm_node *node, 153 int size, 154 int fb_cpp) 155 { 156 struct drm_i915_private *dev_priv = dev->dev_private; 157 int compression_threshold = 1; 158 int ret; 159 160 /* HACK: This code depends on what we will do in *_enable_fbc. If that 161 * code changes, this code needs to change as well. 162 * 163 * The enable_fbc code will attempt to use one of our 2 compression 164 * thresholds, therefore, in that case, we only have 1 resort. 165 */ 166 167 /* Try to over-allocate to reduce reallocations and fragmentation. */ 168 ret = drm_mm_insert_node(&dev_priv->mm.stolen, node, 169 size <<= 1, 4096, DRM_MM_SEARCH_DEFAULT); 170 if (ret == 0) 171 return compression_threshold; 172 173 again: 174 /* HW's ability to limit the CFB is 1:4 */ 175 if (compression_threshold > 4 || 176 (fb_cpp == 2 && compression_threshold == 2)) 177 return 0; 178 179 ret = drm_mm_insert_node(&dev_priv->mm.stolen, node, 180 size >>= 1, 4096, 181 DRM_MM_SEARCH_DEFAULT); 182 if (ret && INTEL_INFO(dev)->gen <= 4) { 183 return 0; 184 } else if (ret) { 185 compression_threshold <<= 1; 186 goto again; 187 } else { 188 return compression_threshold; 189 } 190 } 191 192 static int i915_setup_compression(struct drm_device *dev, int size, int fb_cpp) 193 { 194 struct drm_i915_private *dev_priv = dev->dev_private; 195 struct drm_mm_node *compressed_llb; 196 int ret; 197 198 ret = find_compression_threshold(dev, &dev_priv->fbc.compressed_fb, 199 size, fb_cpp); 200 if (!ret) 201 goto err_llb; 202 else if (ret > 1) { 203 DRM_INFO("Reducing the compressed framebuffer size. This may lead to less power savings than a non-reduced-size. Try to increase stolen memory size if available in BIOS.\n"); 204 205 } 206 207 dev_priv->fbc.threshold = ret; 208 209 if (HAS_PCH_SPLIT(dev)) 210 I915_WRITE(ILK_DPFC_CB_BASE, dev_priv->fbc.compressed_fb.start); 211 else if (IS_GM45(dev)) { 212 I915_WRITE(DPFC_CB_BASE, dev_priv->fbc.compressed_fb.start); 213 } else { 214 compressed_llb = kzalloc(sizeof(*compressed_llb), GFP_KERNEL); 215 if (!compressed_llb) 216 goto err_fb; 217 218 ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_llb, 219 4096, 4096, DRM_MM_SEARCH_DEFAULT); 220 if (ret) 221 goto err_fb; 222 223 dev_priv->fbc.compressed_llb = compressed_llb; 224 225 I915_WRITE(FBC_CFB_BASE, 226 dev_priv->mm.stolen_base + dev_priv->fbc.compressed_fb.start); 227 I915_WRITE(FBC_LL_BASE, 228 dev_priv->mm.stolen_base + compressed_llb->start); 229 } 230 231 dev_priv->fbc.size = size / dev_priv->fbc.threshold; 232 233 DRM_DEBUG_KMS("reserved %d bytes of contiguous stolen space for FBC\n", 234 size); 235 236 return 0; 237 238 err_fb: 239 kfree(compressed_llb); 240 drm_mm_remove_node(&dev_priv->fbc.compressed_fb); 241 err_llb: 242 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); 243 return -ENOSPC; 244 } 245 246 int i915_gem_stolen_setup_compression(struct drm_device *dev, int size, int fb_cpp) 247 { 248 struct drm_i915_private *dev_priv = dev->dev_private; 249 250 if (!drm_mm_initialized(&dev_priv->mm.stolen)) 251 return -ENODEV; 252 253 if (size < dev_priv->fbc.size) 254 return 0; 255 256 /* Release any current block */ 257 i915_gem_stolen_cleanup_compression(dev); 258 259 return i915_setup_compression(dev, size, fb_cpp); 260 } 261 262 void i915_gem_stolen_cleanup_compression(struct drm_device *dev) 263 { 264 struct drm_i915_private *dev_priv = dev->dev_private; 265 266 if (dev_priv->fbc.size == 0) 267 return; 268 269 drm_mm_remove_node(&dev_priv->fbc.compressed_fb); 270 271 if (dev_priv->fbc.compressed_llb) { 272 drm_mm_remove_node(dev_priv->fbc.compressed_llb); 273 kfree(dev_priv->fbc.compressed_llb); 274 } 275 276 dev_priv->fbc.size = 0; 277 } 278 279 void i915_gem_cleanup_stolen(struct drm_device *dev) 280 { 281 struct drm_i915_private *dev_priv = dev->dev_private; 282 283 if (!drm_mm_initialized(&dev_priv->mm.stolen)) 284 return; 285 286 i915_gem_stolen_cleanup_compression(dev); 287 drm_mm_takedown(&dev_priv->mm.stolen); 288 } 289 290 int i915_gem_init_stolen(struct drm_device *dev) 291 { 292 struct drm_i915_private *dev_priv = dev->dev_private; 293 u32 tmp; 294 int bios_reserved = 0; 295 296 #ifdef CONFIG_INTEL_IOMMU 297 if (intel_iommu_gfx_mapped && INTEL_INFO(dev)->gen < 8) { 298 DRM_INFO("DMAR active, disabling use of stolen memory\n"); 299 return 0; 300 } 301 #endif 302 303 if (dev_priv->gtt.stolen_size == 0) 304 return 0; 305 306 dev_priv->mm.stolen_base = i915_stolen_to_physical(dev); 307 if (dev_priv->mm.stolen_base == 0) 308 return 0; 309 310 DRM_DEBUG_KMS("found %zd bytes of stolen memory at %08lx\n", 311 dev_priv->gtt.stolen_size, dev_priv->mm.stolen_base); 312 313 if (INTEL_INFO(dev)->gen >= 8) { 314 tmp = I915_READ(GEN7_BIOS_RESERVED); 315 tmp >>= GEN8_BIOS_RESERVED_SHIFT; 316 tmp &= GEN8_BIOS_RESERVED_MASK; 317 bios_reserved = (1024*1024) << tmp; 318 } else if (IS_GEN7(dev)) { 319 tmp = I915_READ(GEN7_BIOS_RESERVED); 320 bios_reserved = tmp & GEN7_BIOS_RESERVED_256K ? 321 256*1024 : 1024*1024; 322 } 323 324 if (WARN_ON(bios_reserved > dev_priv->gtt.stolen_size)) 325 return 0; 326 327 /* Basic memrange allocator for stolen space */ 328 drm_mm_init(&dev_priv->mm.stolen, 0, dev_priv->gtt.stolen_size - 329 bios_reserved); 330 331 return 0; 332 } 333 334 #if 0 335 static struct sg_table * 336 i915_pages_create_for_stolen(struct drm_device *dev, 337 u32 offset, u32 size) 338 { 339 struct drm_i915_private *dev_priv = dev->dev_private; 340 struct sg_table *st; 341 struct scatterlist *sg; 342 343 DRM_DEBUG_DRIVER("offset=0x%x, size=%d\n", offset, size); 344 BUG_ON(offset > dev_priv->gtt.stolen_size - size); 345 346 /* We hide that we have no struct page backing our stolen object 347 * by wrapping the contiguous physical allocation with a fake 348 * dma mapping in a single scatterlist. 349 */ 350 351 st = kmalloc(sizeof(*st), GFP_KERNEL); 352 if (st == NULL) 353 return NULL; 354 355 if (sg_alloc_table(st, 1, GFP_KERNEL)) { 356 kfree(st); 357 return NULL; 358 } 359 360 sg = st->sgl; 361 sg->offset = 0; 362 sg->length = size; 363 364 sg_dma_address(sg) = (dma_addr_t)dev_priv->mm.stolen_base + offset; 365 sg_dma_len(sg) = size; 366 367 return st; 368 } 369 #endif 370 371 static int i915_gem_object_get_pages_stolen(struct drm_i915_gem_object *obj) 372 { 373 BUG(); 374 return -EINVAL; 375 } 376 377 static void i915_gem_object_put_pages_stolen(struct drm_i915_gem_object *obj) 378 { 379 #if 0 380 /* Should only be called during free */ 381 sg_free_table(obj->pages); 382 kfree(obj->pages); 383 #else 384 BUG(); 385 #endif 386 } 387 388 389 static void 390 i915_gem_object_release_stolen(struct drm_i915_gem_object *obj) 391 { 392 if (obj->stolen) { 393 drm_mm_remove_node(obj->stolen); 394 kfree(obj->stolen); 395 obj->stolen = NULL; 396 } 397 } 398 static const struct drm_i915_gem_object_ops i915_gem_object_stolen_ops = { 399 .get_pages = i915_gem_object_get_pages_stolen, 400 .put_pages = i915_gem_object_put_pages_stolen, 401 .release = i915_gem_object_release_stolen, 402 }; 403 404 static struct drm_i915_gem_object * 405 _i915_gem_object_create_stolen(struct drm_device *dev, 406 struct drm_mm_node *stolen) 407 { 408 struct drm_i915_gem_object *obj; 409 410 #if 0 411 obj = i915_gem_object_alloc(dev); 412 #else 413 obj = NULL; 414 #endif 415 if (obj == NULL) 416 return NULL; 417 418 drm_gem_private_object_init(dev, &obj->base, stolen->size); 419 i915_gem_object_init(obj, &i915_gem_object_stolen_ops); 420 421 #if 0 422 obj->pages = i915_pages_create_for_stolen(dev, 423 stolen->start, stolen->size); 424 #else 425 obj->pages = NULL; 426 #endif 427 if (obj->pages == NULL) 428 goto cleanup; 429 430 obj->has_dma_mapping = true; 431 i915_gem_object_pin_pages(obj); 432 obj->stolen = stolen; 433 434 obj->base.read_domains = I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT; 435 obj->cache_level = HAS_LLC(dev) ? I915_CACHE_LLC : I915_CACHE_NONE; 436 437 return obj; 438 439 cleanup: 440 i915_gem_object_free(obj); 441 return NULL; 442 } 443 444 struct drm_i915_gem_object * 445 i915_gem_object_create_stolen(struct drm_device *dev, u32 size) 446 { 447 struct drm_i915_private *dev_priv = dev->dev_private; 448 struct drm_i915_gem_object *obj; 449 struct drm_mm_node *stolen; 450 int ret; 451 452 if (!drm_mm_initialized(&dev_priv->mm.stolen)) 453 return NULL; 454 455 DRM_DEBUG_KMS("creating stolen object: size=%x\n", size); 456 if (size == 0) 457 return NULL; 458 459 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL); 460 if (!stolen) 461 return NULL; 462 463 ret = drm_mm_insert_node(&dev_priv->mm.stolen, stolen, size, 464 4096, DRM_MM_SEARCH_DEFAULT); 465 if (ret) { 466 kfree(stolen); 467 return NULL; 468 } 469 470 obj = _i915_gem_object_create_stolen(dev, stolen); 471 if (obj) 472 return obj; 473 474 drm_mm_remove_node(stolen); 475 kfree(stolen); 476 return NULL; 477 } 478 479 struct drm_i915_gem_object * 480 i915_gem_object_create_stolen_for_preallocated(struct drm_device *dev, 481 u32 stolen_offset, 482 u32 gtt_offset, 483 u32 size) 484 { 485 struct drm_i915_private *dev_priv = dev->dev_private; 486 struct i915_address_space *ggtt = &dev_priv->gtt.base; 487 struct drm_i915_gem_object *obj; 488 struct drm_mm_node *stolen; 489 struct i915_vma *vma; 490 int ret; 491 492 if (!drm_mm_initialized(&dev_priv->mm.stolen)) 493 return NULL; 494 495 DRM_DEBUG_KMS("creating preallocated stolen object: stolen_offset=%x, gtt_offset=%x, size=%x\n", 496 stolen_offset, gtt_offset, size); 497 498 /* KISS and expect everything to be page-aligned */ 499 BUG_ON(stolen_offset & 4095); 500 BUG_ON(size & 4095); 501 502 if (WARN_ON(size == 0)) 503 return NULL; 504 505 stolen = kzalloc(sizeof(*stolen), GFP_KERNEL); 506 if (!stolen) 507 return NULL; 508 509 stolen->start = stolen_offset; 510 stolen->size = size; 511 ret = drm_mm_reserve_node(&dev_priv->mm.stolen, stolen); 512 if (ret) { 513 DRM_DEBUG_KMS("failed to allocate stolen space\n"); 514 kfree(stolen); 515 return NULL; 516 } 517 518 obj = _i915_gem_object_create_stolen(dev, stolen); 519 if (obj == NULL) { 520 DRM_DEBUG_KMS("failed to allocate stolen object\n"); 521 drm_mm_remove_node(stolen); 522 kfree(stolen); 523 return NULL; 524 } 525 526 /* Some objects just need physical mem from stolen space */ 527 if (gtt_offset == I915_GTT_OFFSET_NONE) 528 return obj; 529 530 vma = i915_gem_obj_lookup_or_create_vma(obj, ggtt); 531 if (IS_ERR(vma)) { 532 ret = PTR_ERR(vma); 533 goto err_out; 534 } 535 536 /* To simplify the initialisation sequence between KMS and GTT, 537 * we allow construction of the stolen object prior to 538 * setting up the GTT space. The actual reservation will occur 539 * later. 540 */ 541 vma->node.start = gtt_offset; 542 vma->node.size = size; 543 if (drm_mm_initialized(&ggtt->mm)) { 544 ret = drm_mm_reserve_node(&ggtt->mm, &vma->node); 545 if (ret) { 546 DRM_DEBUG_KMS("failed to allocate stolen GTT space\n"); 547 goto err_vma; 548 } 549 } 550 551 obj->has_global_gtt_mapping = 1; 552 553 list_add_tail(&obj->global_list, &dev_priv->mm.bound_list); 554 list_add_tail(&vma->mm_list, &ggtt->inactive_list); 555 i915_gem_object_pin_pages(obj); 556 557 return obj; 558 559 err_vma: 560 i915_gem_vma_destroy(vma); 561 err_out: 562 drm_mm_remove_node(stolen); 563 kfree(stolen); 564 drm_gem_object_unreference(&obj->base); 565 return NULL; 566 } 567