/src/sys/dev/pci/ |
agp_i810var.h | 40 uint32_t stolen; /* pages of stolen graphics memory */ member in struct:agp_i810_softc
|
agp_i810var.h | 40 uint32_t stolen; /* pages of stolen graphics memory */ member in struct:agp_i810_softc
|
agp_i810.c | 850 isc->stolen = (512 - 132) * 1024 / 4096; 853 isc->stolen = (1024 - 132) * 1024 / 4096; 856 isc->stolen = (8192 - 132) * 1024 / 4096; 859 isc->stolen = 0; 866 if (isc->stolen > 0) { 868 "detected %dk stolen memory\n", 869 isc->stolen * 4); 881 u_int32_t gtt_size, stolen; /* XXX kilobytes */ local in function:agp_i810_init 889 /* Stolen memory is set up at the beginning of the aperture by 981 * XXX If I'm reading the datasheets right, this stolen [all...] |
agp_i810.c | 850 isc->stolen = (512 - 132) * 1024 / 4096; 853 isc->stolen = (1024 - 132) * 1024 / 4096; 856 isc->stolen = (8192 - 132) * 1024 / 4096; 859 isc->stolen = 0; 866 if (isc->stolen > 0) { 868 "detected %dk stolen memory\n", 869 isc->stolen * 4); 881 u_int32_t gtt_size, stolen; /* XXX kilobytes */ local in function:agp_i810_init 889 /* Stolen memory is set up at the beginning of the aperture by 981 * XXX If I'm reading the datasheets right, this stolen [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
i915_gem_stolen.c | 28 * available than he put in. We refer to this memory as stolen. 30 * The BIOS will allocate its framebuffer from the stolen memory. Our 32 * be available for panics. Anything else we can reuse the stolen memory 42 if (!drm_mm_initialized(&i915->mm.stolen)) 50 ret = drm_mm_insert_node_in_range(&i915->mm.stolen, node, 86 * end of stolen. With that assumption we could simplify this. 89 /* Make sure we don't clobber the GTT if it's within stolen memory */ 92 struct resource stolen[2] = {*dsm, *dsm}; local in function:i915_adjust_stolen 107 if (ggtt_res.start >= stolen[0].start && ggtt_res.start < stolen[0].end 634 struct drm_mm_node *stolen = fetch_and_zero(&obj->stolen); local in function:i915_gem_object_release_stolen 692 struct drm_mm_node *stolen; local in function:_i915_gem_object_create_stolen 772 struct drm_mm_node *stolen; local in function:i915_gem_object_create_stolen_for_preallocated [all...] |
i915_gem_stolen.c | 28 * available than he put in. We refer to this memory as stolen. 30 * The BIOS will allocate its framebuffer from the stolen memory. Our 32 * be available for panics. Anything else we can reuse the stolen memory 42 if (!drm_mm_initialized(&i915->mm.stolen)) 50 ret = drm_mm_insert_node_in_range(&i915->mm.stolen, node, 86 * end of stolen. With that assumption we could simplify this. 89 /* Make sure we don't clobber the GTT if it's within stolen memory */ 92 struct resource stolen[2] = {*dsm, *dsm}; local in function:i915_adjust_stolen 107 if (ggtt_res.start >= stolen[0].start && ggtt_res.start < stolen[0].end 634 struct drm_mm_node *stolen = fetch_and_zero(&obj->stolen); local in function:i915_gem_object_release_stolen 692 struct drm_mm_node *stolen; local in function:_i915_gem_object_create_stolen 772 struct drm_mm_node *stolen; local in function:i915_gem_object_create_stolen_for_preallocated [all...] |
i915_gem_object_types.h | 130 /** Stolen memory for this object, instead of being backed by shmem. */ 131 struct drm_mm_node *stolen; member in struct:drm_i915_gem_object
|
i915_gem_object_types.h | 130 /** Stolen memory for this object, instead of being backed by shmem. */ 131 struct drm_mm_node *stolen; member in struct:drm_i915_gem_object
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/ |
fb.h | 130 u64 stolen; member in struct:nvkm_ram
|
fb.h | 130 u64 stolen; member in struct:nvkm_ram
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_drv.h | 563 /** Memory allocator for GTT stolen memory */ 564 struct drm_mm stolen; member in struct:i915_gem_mm 565 /** Protects the usage of the GTT stolen memory allocator. This is 916 * Data Stolen Memory - aka "i915 stolen memory" gives us the start and 917 * end of stolen which we can optionally use to create GEM objects 918 * backed by stolen memory. Note that stolen_usable_size tells us 924 * Reseved portion of Data Stolen Memory 929 * Stolen memory is segmented in hardware with different portions 934 * avoid the first page! The upper end of stolen memory is reserved fo [all...] |
i915_drv.h | 563 /** Memory allocator for GTT stolen memory */ 564 struct drm_mm stolen; member in struct:i915_gem_mm 565 /** Protects the usage of the GTT stolen memory allocator. This is 916 * Data Stolen Memory - aka "i915 stolen memory" gives us the start and 917 * end of stolen which we can optionally use to create GEM objects 918 * backed by stolen memory. Note that stolen_usable_size tells us 924 * Reseved portion of Data Stolen Memory 929 * Stolen memory is segmented in hardware with different portions 934 * avoid the first page! The upper end of stolen memory is reserved fo [all...] |