Home
last modified time | relevance | path

Searched refs:place (Results 1 – 25 of 433) sorted by relevance

12345678910>>...18

/Linux-v5.15/arch/arm64/kernel/
Dmodule.c76 static u64 do_reloc(enum aarch64_reloc_op reloc_op, __le32 *place, u64 val) in do_reloc() argument
82 return val - (u64)place; in do_reloc()
84 return (val & ~0xfff) - ((u64)place & ~0xfff); in do_reloc()
93 static int reloc_data(enum aarch64_reloc_op op, void *place, u64 val, int len) in reloc_data() argument
95 s64 sval = do_reloc(op, place, val); in reloc_data()
111 *(s16 *)place = sval; in reloc_data()
127 *(s32 *)place = sval; in reloc_data()
143 *(s64 *)place = sval; in reloc_data()
157 static int reloc_insn_movw(enum aarch64_reloc_op op, __le32 *place, u64 val, in reloc_insn_movw() argument
162 u32 insn = le32_to_cpu(*place); in reloc_insn_movw()
[all …]
/Linux-v5.15/drivers/gpu/drm/vmwgfx/
Dvmwgfx_thp.c35 const struct ttm_place *place, in vmw_thp_insert_aligned() argument
45 place->fpfn, lpfn, mode); in vmw_thp_insert_aligned()
53 const struct ttm_place *place, in vmw_thp_get_node() argument
68 ttm_resource_init(bo, place, &node->base); in vmw_thp_get_node()
70 lpfn = place->lpfn; in vmw_thp_get_node()
75 if (place->flags & TTM_PL_FLAG_TOPDOWN) in vmw_thp_get_node()
83 align_pages, place, in vmw_thp_get_node()
93 align_pages, place, &node->base, in vmw_thp_get_node()
102 place->fpfn, lpfn, mode); in vmw_thp_get_node()
Dvmwgfx_gmrid_manager.c54 const struct ttm_place *place, in vmw_gmrid_man_get_node() argument
64 ttm_resource_init(bo, place, *res); in vmw_gmrid_man_get_node()
/Linux-v5.15/drivers/gpu/drm/ttm/
Dttm_bo.c572 const struct ttm_place *place) in ttm_bo_eviction_valuable() argument
581 if (place->fpfn >= (bo->resource->start + bo->resource->num_pages) || in ttm_bo_eviction_valuable()
582 (place->lpfn && place->lpfn <= bo->resource->start)) in ttm_bo_eviction_valuable()
601 const struct ttm_place *place, in ttm_bo_evict_swapout_allowable() argument
620 if (ret && place && !bo->bdev->funcs->eviction_valuable(bo, place)) { in ttm_bo_evict_swapout_allowable()
668 const struct ttm_place *place, in ttm_mem_evict_first() argument
682 if (!ttm_bo_evict_swapout_allowable(bo, ctx, place, in ttm_mem_evict_first()
776 const struct ttm_place *place, in ttm_bo_mem_force_space() argument
785 man = ttm_manager_type(bdev, place->mem_type); in ttm_bo_mem_force_space()
788 ret = ttm_resource_alloc(bo, place, mem); in ttm_bo_mem_force_space()
[all …]
Dttm_range_manager.c60 const struct ttm_place *place, in ttm_range_man_alloc() argument
70 lpfn = place->lpfn; in ttm_range_man_alloc()
79 if (place->flags & TTM_PL_FLAG_TOPDOWN) in ttm_range_man_alloc()
82 ttm_resource_init(bo, place, &node->base); in ttm_range_man_alloc()
88 place->fpfn, lpfn, mode); in ttm_range_man_alloc()
Dttm_resource.c33 const struct ttm_place *place, in ttm_resource_init() argument
38 res->mem_type = place->mem_type; in ttm_resource_init()
39 res->placement = place->flags; in ttm_resource_init()
48 const struct ttm_place *place, in ttm_resource_alloc() argument
52 ttm_manager_type(bo->bdev, place->mem_type); in ttm_resource_alloc()
54 return man->func->alloc(man, bo, place, res_ptr); in ttm_resource_alloc()
Dttm_sys_manager.c12 const struct ttm_place *place, in ttm_sys_man_alloc() argument
19 ttm_resource_init(bo, place, *res); in ttm_sys_man_alloc()
/Linux-v5.15/drivers/gpu/drm/amd/amdgpu/
Damdgpu_gtt_mgr.c127 const struct ttm_place *place, in amdgpu_gtt_mgr_new() argument
135 if (!(place->flags & TTM_PL_FLAG_TEMPORARY) && in amdgpu_gtt_mgr_new()
148 ttm_resource_init(tbo, place, &node->base.base); in amdgpu_gtt_mgr_new()
150 if (place->lpfn) { in amdgpu_gtt_mgr_new()
155 0, place->fpfn, place->lpfn, in amdgpu_gtt_mgr_new()
175 if (!(place->flags & TTM_PL_FLAG_TEMPORARY)) in amdgpu_gtt_mgr_new()
Damdgpu_preempt_mgr.c68 const struct ttm_place *place, in amdgpu_preempt_mgr_new() argument
77 ttm_resource_init(tbo, place, *res); in amdgpu_preempt_mgr_new()
Damdgpu_vram_mgr.c370 const struct ttm_place *place, in amdgpu_vram_mgr_new() argument
383 lpfn = place->lpfn; in amdgpu_vram_mgr_new()
398 if (place->flags & TTM_PL_FLAG_CONTIGUOUS) { in amdgpu_vram_mgr_new()
420 ttm_resource_init(tbo, place, &node->base); in amdgpu_vram_mgr_new()
423 if (place->flags & TTM_PL_FLAG_TOPDOWN) in amdgpu_vram_mgr_new()
440 alignment, 0, place->fpfn, in amdgpu_vram_mgr_new()
/Linux-v5.15/drivers/gpu/drm/i915/
Di915_ttm_buddy_manager.c32 const struct ttm_place *place, in i915_ttm_buddy_man_alloc() argument
44 GEM_BUG_ON(place->fpfn || place->lpfn); in i915_ttm_buddy_man_alloc()
50 ttm_resource_init(bo, place, &bman_res->base); in i915_ttm_buddy_man_alloc()
63 if (place->flags & TTM_PL_FLAG_CONTIGUOUS) { in i915_ttm_buddy_man_alloc()
Dintel_region_ttm.c165 struct ttm_place place = {}; in intel_region_ttm_resource_alloc() local
171 place.flags = flags; in intel_region_ttm_resource_alloc()
173 ret = man->func->alloc(man, &mock_bo, &place, &res); in intel_region_ttm_resource_alloc()
/Linux-v5.15/Documentation/hwmon/
Dk8temp.rst36 temp1_input temperature of Core 0 and "place" 0
37 temp2_input temperature of Core 0 and "place" 1
38 temp3_input temperature of Core 1 and "place" 0
39 temp4_input temperature of Core 1 and "place" 1
/Linux-v5.15/include/drm/ttm/
Dttm_resource.h72 const struct ttm_place *place,
263 const struct ttm_place *place,
266 const struct ttm_place *place,
/Linux-v5.15/arch/mips/include/asm/mach-ip27/
Dkernel-entry-init.h37 dsll t1, NASID_SHFT # Shift text nasid into place
43 dsll t1, 6 # Get pfn into place
44 dsll t2, 6 # Get pfn into place
/Linux-v5.15/drivers/gpu/drm/nouveau/
Dnouveau_ttm.c47 const struct ttm_place *place, in nouveau_vram_manager_new() argument
61 ttm_resource_init(bo, place, *res); in nouveau_vram_manager_new()
80 const struct ttm_place *place, in nouveau_gart_manager_new() argument
91 ttm_resource_init(bo, place, *res); in nouveau_gart_manager_new()
104 const struct ttm_place *place, in nv04_gart_manager_new() argument
117 ttm_resource_init(bo, place, *res); in nv04_gart_manager_new()
/Linux-v5.15/arch/arm64/include/asm/
Dmodule.h53 static inline bool is_forbidden_offset_for_adrp(void *place) in is_forbidden_offset_for_adrp() argument
57 ((u64)place & 0xfff) >= 0xff8; in is_forbidden_offset_for_adrp()
/Linux-v5.15/drivers/hwmon/
Dk8temp.c91 int core, place; in k8temp_read() local
96 place = channel & 1; in k8temp_read()
105 if (place) in k8temp_read()
/Linux-v5.15/drivers/gpu/drm/i915/gem/
Di915_gem_ttm.c132 struct ttm_place *place, in i915_ttm_place_from_region() argument
135 memset(place, 0, sizeof(*place)); in i915_ttm_place_from_region()
136 place->mem_type = intel_region_to_ttm_type(mr); in i915_ttm_place_from_region()
139 place->flags = TTM_PL_FLAG_CONTIGUOUS; in i915_ttm_place_from_region()
223 const struct ttm_place *place) in i915_ttm_eviction_valuable() argument
327 struct ttm_placement place = {}; in i915_ttm_purge() local
334 ret = ttm_bo_validate(bo, &place, &ctx); in i915_ttm_purge()
/Linux-v5.15/Documentation/usb/
Dmisc_usbsevseg.rst47 to set the nth decimal place calculate 10 ** n
50 For example, to set the 0th and 3rd decimal place
/Linux-v5.15/Documentation/ABI/testing/
Dsysfs-bus-usb-devices-usbsevseg42 To set the nth decimal place, give this field
45 to set the mth place (where m is not already set),
/Linux-v5.15/Documentation/powerpc/
Dkaslr-booke32.rst14 map or copy kernel to a proper place and relocate. Freescale Book-E
17 region, so we chose to copy the kernel to a proper place and restart to
/Linux-v5.15/tools/testing/selftests/rcutorture/bin/
Djitterstop.sh18 echo jitterstop.sh: Missing directory in which to place jittering file.
Djitterstart.sh27 echo jitterstart.sh: Missing directory in which to place jittering file.
/Linux-v5.15/arch/x86/realmode/rm/
Dtrampoline_64.S47 mov %cs, %ax # Code and data in the same place
91 mov %cs, %ax # Code and data in the same place

12345678910>>...18