/linux-4.4.14/drivers/gpu/drm/i915/ |
D | i915_gem_stolen.c | 54 if (!drm_mm_initialized(&dev_priv->mm.stolen)) in i915_gem_stolen_insert_node_in_range() 63 ret = drm_mm_insert_node_in_range(&dev_priv->mm.stolen, node, size, in i915_gem_stolen_insert_node_in_range() 191 } stolen[2] = { in i915_stolen_to_physical() local 205 if (gtt_start >= stolen[0].start && gtt_start < stolen[0].end) in i915_stolen_to_physical() 206 stolen[0].end = gtt_start; in i915_stolen_to_physical() 207 if (gtt_end > stolen[1].start && gtt_end <= stolen[1].end) in i915_stolen_to_physical() 208 stolen[1].start = gtt_end; in i915_stolen_to_physical() 211 if (stolen[0].end - stolen[0].start > in i915_stolen_to_physical() 212 stolen[1].end - stolen[1].start) { in i915_stolen_to_physical() 213 base = stolen[0].start; in i915_stolen_to_physical() [all …]
|
D | i915_debugfs.c | 176 if (obj->stolen) in describe_obj() 177 seq_printf(m, " (stolen: %08llx)", obj->stolen->start); in describe_obj() 256 if (a->stolen->start < b->stolen->start) in obj_rank_by_stolen() 258 if (a->stolen->start > b->stolen->start) in obj_rank_by_stolen() 270 LIST_HEAD(stolen); in i915_gem_stolen_list_info() 279 if (obj->stolen == NULL) in i915_gem_stolen_list_info() 282 list_add(&obj->obj_exec_link, &stolen); in i915_gem_stolen_list_info() 289 if (obj->stolen == NULL) in i915_gem_stolen_list_info() 292 list_add(&obj->obj_exec_link, &stolen); in i915_gem_stolen_list_info() 297 list_sort(NULL, &stolen, obj_rank_by_stolen); in i915_gem_stolen_list_info() [all …]
|
D | intel_fbdev.c | 267 if (ifbdev->fb->obj->stolen && !prealloc) in intelfb_create() 770 if (state == FBINFO_STATE_RUNNING && ifbdev->fb->obj->stolen) in intel_fbdev_set_suspend()
|
D | i915_gem_gtt.c | 2956 size_t *stolen, in gen8_gmch_probe() argument 2975 *stolen = gen9_get_stolen_size(snb_gmch_ctl); in gen8_gmch_probe() 2978 *stolen = chv_get_stolen_size(snb_gmch_ctl); in gen8_gmch_probe() 2981 *stolen = gen8_get_stolen_size(snb_gmch_ctl); in gen8_gmch_probe() 3004 size_t *stolen, in gen6_gmch_probe() argument 3029 *stolen = gen6_get_stolen_size(snb_gmch_ctl); in gen6_gmch_probe() 3055 size_t *stolen, in i915_gmch_probe() argument 3068 intel_gtt_get(gtt_total, stolen, mappable_base, mappable_end); in i915_gmch_probe()
|
D | i915_gem_gtt.h | 362 size_t *stolen, phys_addr_t *mappable_base,
|
D | i915_drv.h | 1261 struct drm_mm stolen; member 2046 struct drm_mm_node *stolen; member
|
D | i915_gpu_error.c | 623 if (src->stolen) { in i915_error_object_create()
|
D | i915_gem.c | 3577 if (obj->stolen || obj->phys_handle) in i915_gem_clflush_object() 4505 if (obj->stolen) in i915_gem_free_object()
|
D | intel_pm.c | 5222 dev_priv->vlv_pctx->stolen->start); in valleyview_check_pctx() 5296 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start; in valleyview_setup_pctx()
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | time.c | 210 u64 stolen = 0; in scan_dispatch_log() local 233 stolen += tb_delta; in scan_dispatch_log() 241 return stolen; in scan_dispatch_log() 273 u64 stolen = 0; in calculate_stolen_time() local 276 stolen = scan_dispatch_log(stop_tb); in calculate_stolen_time() 277 get_paca()->system_time -= stolen; in calculate_stolen_time() 280 stolen += get_paca()->stolen_time; in calculate_stolen_time() 282 return stolen; in calculate_stolen_time() 298 u64 *sys_scaled, u64 *stolen) in vtime_delta() argument 312 *stolen = calculate_stolen_time(now); in vtime_delta() [all …]
|
/linux-4.4.14/arch/x86/xen/ |
D | time.c | 119 s64 runnable, offline, stolen; in do_stolen_accounting() local 136 stolen = runnable + offline + __this_cpu_read(xen_residual_stolen); in do_stolen_accounting() 138 if (stolen < 0) in do_stolen_accounting() 139 stolen = 0; in do_stolen_accounting() 141 ticks = iter_div_u64_rem(stolen, NS_PER_TICK, &stolen); in do_stolen_accounting() 142 __this_cpu_write(xen_residual_stolen, stolen); in do_stolen_accounting()
|
/linux-4.4.14/drivers/gpu/drm/gma500/ |
D | gtt.c | 97 WARN_ON(r->stolen); /* refcount these maybe ? */ in psb_gtt_insert() 140 WARN_ON(r->stolen); in psb_gtt_remove() 177 if (!r->stolen && !r->in_gart) in psb_gtt_roll() 253 if (gt->in_gart == 0 && gt->stolen == 0) { in psb_gtt_pin() 303 if (gt->in_gart == 0 && gt->stolen == 0) { in psb_gtt_unpin() 355 gt->stolen = backed; in psb_gtt_alloc_range() 385 WARN_ON(gt->in_gart && !gt->stolen); in psb_gtt_free_range()
|
D | gem.h | 20 u64 size, u32 *handlep, int stolen, u32 align);
|
D | gem.c | 99 u32 *handlep, int stolen, u32 align) in psb_gem_create() argument 211 if (r->stolen) in psb_gem_fault()
|
D | gtt.h | 49 bool stolen; /* Backed from stolen RAM */ member
|
D | framebuffer.c | 469 if (backing->stolen) in psbfb_create()
|
/linux-4.4.14/arch/powerpc/mm/ |
D | mmu_context_nohash.c | 276 goto stolen; in switch_mmu_context() 283 goto stolen; in switch_mmu_context() 293 stolen: in switch_mmu_context()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ |
D | nv50.c | 87 if (ram->stolen) { in nv50_vm_map() 88 phys += ram->stolen; in nv50_vm_map()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | rammcp77.c | 81 ram->base.stolen = base; in mcp77_ram_new()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
D | fb.h | 123 u64 stolen; member
|
/linux-4.4.14/fs/reiserfs/ |
D | procfs.c | 219 SFPF(stolen), in show_bitmap()
|
D | bitmap.c | 228 PROC_INFO_INC(s, scan_bitmap.stolen); in scan_bitmap_block()
|
D | reiserfs.h | 489 stat_cnt_t stolen; member
|
/linux-4.4.14/Documentation/accounting/ |
D | taskstats-struct.txt | 119 * On some architectures, value will adjust for cpu time stolen
|
/linux-4.4.14/Documentation/power/ |
D | swsusp.txt | 290 encrypted and protected are retrieved and stolen from the swap device. 297 inaccessible so they can't be stolen later on. The only thing that 305 suspend image to prevent sensitive data from being stolen after
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-net | 20 2: stolen from another device
|
/linux-4.4.14/arch/powerpc/kvm/ |
D | book3s_hv.c | 575 unsigned long stolen; in kvmppc_create_dtl_entry() local 583 stolen = core_stolen - vcpu->arch.stolen_logged; in kvmppc_create_dtl_entry() 586 stolen += vcpu->arch.busy_stolen; in kvmppc_create_dtl_entry() 595 dt->enqueue_to_dispatch_time = cpu_to_be32(stolen); in kvmppc_create_dtl_entry()
|
/linux-4.4.14/Documentation/locking/ |
D | rt-mutex-design.txt | 623 would add itself back when it realizes that it had the ownership stolen 660 or if the task is a pending owner and had its mutex stolen. If the "task" 696 and on signal and timeout, will exit the loop, or if we had the mutex stolen
|
/linux-4.4.14/arch/arm/crypto/ |
D | aesbs-core.S_shipped | 2480 @ calculate one round of extra tweak for the stolen ciphertext
|
/linux-4.4.14/init/ |
D | Kconfig | 361 this also enables accounting of stolen time on logically-partitioned
|