/Linux-v6.6/drivers/gpu/drm/i915/gem/selftests/ |
D | mock_context.c | 32 INIT_LIST_HEAD(&ctx->stale.engines); in mock_context() 52 RCU_INIT_POINTER(ctx->engines, e); in mock_context() 113 struct i915_gem_engines *engines; in live_context_for_engine() local 118 engines = alloc_engines(1); in live_context_for_engine() 119 if (!engines) in live_context_for_engine() 124 __free_engines(engines, 0); in live_context_for_engine() 130 __free_engines(engines, 0); in live_context_for_engine() 135 engines->engines[0] = ce; in live_context_for_engine() 136 engines->num_engines = 1; in live_context_for_engine() 140 engines = rcu_replace_pointer(ctx->engines, engines, 1); in live_context_for_engine() [all …]
|
/Linux-v6.6/drivers/gpu/drm/i915/gt/ |
D | selftest_rc6.c | 163 struct intel_engine_cs *engine, **engines; in randomised_engines() local 173 engines = kmalloc_array(n, sizeof(*engines), GFP_KERNEL); in randomised_engines() 174 if (!engines) in randomised_engines() 179 engines[n++] = engine; in randomised_engines() 181 i915_prandom_shuffle(engines, sizeof(*engines), n, prng); in randomised_engines() 184 return engines; in randomised_engines() 190 struct intel_engine_cs **engines; in live_rc6_ctx_wa() local 199 engines = randomised_engines(gt, &prng, &count); in live_rc6_ctx_wa() 200 if (!engines) in live_rc6_ctx_wa() 204 struct intel_engine_cs *engine = engines[n]; in live_rc6_ctx_wa() [all …]
|
D | intel_engine_user.c | 80 struct list_head *engines) in sort_engines() argument 88 list_add((struct list_head *)&engine->uabi_node, engines); in sort_engines() 90 list_sort(NULL, engines, engine_cmp); in sort_engines() 208 LIST_HEAD(engines); in intel_engines_driver_register() 210 sort_engines(i915, &engines); in intel_engines_driver_register() 214 list_for_each_safe(it, next, &engines) { in intel_engines_driver_register()
|
D | intel_engine.h | 293 intel_engine_create_parallel(struct intel_engine_cs **engines, in intel_engine_create_parallel() argument 297 GEM_BUG_ON(!engines[0]->cops->create_parallel); in intel_engine_create_parallel() 298 return engines[0]->cops->create_parallel(engines, num_engines, width); in intel_engine_create_parallel()
|
D | intel_gt_engines_debugfs.c | 27 DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(engines);
|
/Linux-v6.6/drivers/gpu/drm/i915/gem/ |
D | i915_gem_context.c | 393 struct i915_gem_proto_engine *engines; member 422 if (set->engines[idx].type != I915_GEM_ENGINE_TYPE_INVALID) { in set_proto_ctx_engines_balance() 449 if (copy_from_user(&ci, &ext->engines[n], sizeof(ci))) { in set_proto_ctx_engines_balance() 467 set->engines[idx].type = I915_GEM_ENGINE_TYPE_PHYSICAL; in set_proto_ctx_engines_balance() 468 set->engines[idx].engine = siblings[0]; in set_proto_ctx_engines_balance() 471 set->engines[idx].type = I915_GEM_ENGINE_TYPE_BALANCED; in set_proto_ctx_engines_balance() 472 set->engines[idx].num_siblings = num_siblings; in set_proto_ctx_engines_balance() 473 set->engines[idx].siblings = siblings; in set_proto_ctx_engines_balance() 514 if (set->engines[idx].type == I915_GEM_ENGINE_TYPE_INVALID) { in set_proto_ctx_engines_bond() 519 if (set->engines[idx].type != I915_GEM_ENGINE_TYPE_PHYSICAL) { in set_proto_ctx_engines_bond() [all …]
|
D | i915_gem_context.h | 186 return rcu_dereference_protected(ctx->engines, in i915_gem_context_engines() 211 struct i915_gem_engines *e = rcu_dereference(ctx->engines); in i915_gem_context_get_engine() 214 else if (likely(idx < e->num_engines && e->engines[idx])) in i915_gem_context_get_engine() 215 ce = intel_context_get(e->engines[idx]); in i915_gem_context_get_engine() 225 struct i915_gem_engines *engines) in i915_gem_engines_iter_init() argument 227 it->engines = engines; in i915_gem_engines_iter_init() 234 #define for_each_gem_engine(ce, engines, it) \ argument 235 for (i915_gem_engines_iter_init(&(it), (engines)); \
|
D | i915_gem_context_types.h | 55 struct intel_context *engines[]; member 66 const struct i915_gem_engines *engines; member 253 struct i915_gem_engines __rcu *engines; member 415 struct list_head engines; member
|
/Linux-v6.6/drivers/crypto/marvell/cesa/ |
D | cesa.c | 377 struct mv_cesa_engine *engine = &cesa->engines[idx]; in mv_cesa_get_sram() 422 struct mv_cesa_engine *engine = &cesa->engines[idx]; in mv_cesa_put_sram() 439 struct mv_cesa_engine *engines; in mv_cesa_probe() local 470 cesa->engines = devm_kcalloc(dev, caps->nengines, sizeof(*engines), in mv_cesa_probe() 472 if (!cesa->engines) in mv_cesa_probe() 490 struct mv_cesa_engine *engine = &cesa->engines[i]; in mv_cesa_probe() 574 clk_disable_unprepare(cesa->engines[i].zclk); in mv_cesa_probe() 575 clk_disable_unprepare(cesa->engines[i].clk); in mv_cesa_probe() 577 if (cesa->engines[i].irq > 0) in mv_cesa_probe() 578 irq_set_affinity_hint(cesa->engines[i].irq, NULL); in mv_cesa_probe() [all …]
|
/Linux-v6.6/Documentation/devicetree/bindings/fsi/ |
D | fsi.txt | 5 engines within those slaves. However, we have a facility to match devicetree 6 nodes to probed engines. This allows for fsi engines to expose non-probeable 16 represent the FSI slaves and their slave engines. As a basic outline: 41 adding subordinate device tree nodes as children of FSI engines. 79 Each slave provides an address-space, under which the engines are accessible. 91 FSI engines (devices) 116 additional engines, but they don't necessarily need to be describe in the
|
/Linux-v6.6/drivers/gpu/drm/i915/gt/uc/ |
D | selftest_guc_multi_lrc.c | 13 static void logical_sort(struct intel_engine_cs **engines, int num_engines) in logical_sort() argument 20 if (engines[j]->logical_mask & BIT(i)) { in logical_sort() 21 sorted[i] = engines[j]; in logical_sort() 26 memcpy(*engines, *sorted, in logical_sort()
|
/Linux-v6.6/Documentation/netlabel/ |
D | introduction.rst | 15 is composed of three main components, the protocol engines, the communication 21 The protocol engines are responsible for both applying and retrieving the 25 refrain from calling the protocol engines directly, instead they should use 45 independent interface to the underlying NetLabel protocol engines. In addition
|
/Linux-v6.6/Documentation/ABI/testing/ |
D | sysfs-bus-hsi | 8 engines (APE) with cellular modem engines (CMT) in cellular
|
/Linux-v6.6/drivers/gpu/drm/omapdrm/ |
D | omap_dmm_tiler.c | 290 if (dmm->engines[i].async) in omap_dmm_irq_handler() 291 release_engine(&dmm->engines[i]); in omap_dmm_irq_handler() 293 complete(&dmm->engines[i].compl); in omap_dmm_irq_handler() 751 kfree(omap_dmm->engines); in omap_dmm_remove() 886 omap_dmm->engines = kcalloc(omap_dmm->num_engines, in omap_dmm_probe() 887 sizeof(*omap_dmm->engines), GFP_KERNEL); in omap_dmm_probe() 888 if (!omap_dmm->engines) { in omap_dmm_probe() 894 omap_dmm->engines[i].id = i; in omap_dmm_probe() 895 omap_dmm->engines[i].dmm = omap_dmm; in omap_dmm_probe() 896 omap_dmm->engines[i].refill_va = omap_dmm->refill_va + in omap_dmm_probe() [all …]
|
/Linux-v6.6/drivers/gpu/drm/nouveau/nvif/ |
D | fifo.c | 64 device->runlist[i].engines = a->v.runlist[i].data; in nvif_fifo_runlists() 82 if (device->runlist[i].engines & engine) in nvif_fifo_runlist()
|
/Linux-v6.6/include/uapi/drm/ |
D | i915_drm.h | 2304 struct i915_engine_class_instance engines[]; member 2313 struct i915_engine_class_instance engines[N__]; \ 2342 struct i915_engine_class_instance engines[]; member 2352 struct i915_engine_class_instance engines[N__]; \ 2469 struct i915_engine_class_instance engines[]; member 2481 struct i915_engine_class_instance engines[N__]; \ 2544 struct i915_engine_class_instance engines[]; member 2549 struct i915_engine_class_instance engines[N__]; \ 3330 struct drm_i915_engine_info engines[]; member
|
/Linux-v6.6/tools/include/uapi/drm/ |
D | i915_drm.h | 2304 struct i915_engine_class_instance engines[]; member 2313 struct i915_engine_class_instance engines[N__]; \ 2342 struct i915_engine_class_instance engines[]; member 2352 struct i915_engine_class_instance engines[N__]; \ 2469 struct i915_engine_class_instance engines[]; member 2481 struct i915_engine_class_instance engines[N__]; \ 2544 struct i915_engine_class_instance engines[]; member 2549 struct i915_engine_class_instance engines[N__]; \ 3330 struct drm_i915_engine_info engines[]; member
|
/Linux-v6.6/drivers/gpu/drm/i915/ |
D | Kconfig.profile | 45 The driver sends a periodic heartbeat down all active engines to 70 certain platforms and certain engines which will be reflected in the 74 int "Preempt timeout for compute engines (ms, jiffy granularity)" 89 certain platforms and certain engines which will be reflected in the
|
/Linux-v6.6/Documentation/devicetree/bindings/powerpc/4xx/ |
D | ppc440spe-adma.txt | 5 for DMA engines and Memory Queue Module node. The latter is used 40 for both DMA engines>.
|
/Linux-v6.6/drivers/dma/idxd/ |
D | device.c | 669 engine = idxd->engines[i]; in idxd_engines_clear_state() 852 iowrite64(group->grpcfg.engines, idxd->reg_base + grpcfg_offset); in idxd_group_config_write() 1030 int i, engines = 0; in idxd_engines_setup() local 1036 group->grpcfg.engines = 0; in idxd_engines_setup() 1040 eng = idxd->engines[i]; in idxd_engines_setup() 1046 group->grpcfg.engines |= BIT(eng->id); in idxd_engines_setup() 1047 engines++; in idxd_engines_setup() 1050 if (!engines) in idxd_engines_setup() 1190 group->grpcfg.engines = ioread64(idxd->reg_base + grpcfg_offset); in idxd_group_load_config() 1192 grpcfg_offset, group->grpcfg.engines); in idxd_group_load_config() [all …]
|
D | init.c | 231 idxd->engines = kcalloc_node(idxd->max_engines, sizeof(struct idxd_engine *), in idxd_setup_engines() 233 if (!idxd->engines) in idxd_setup_engines() 257 idxd->engines[i] = engine; in idxd_setup_engines() 264 engine = idxd->engines[i]; in idxd_setup_engines() 336 put_device(engine_confdev(idxd->engines[i])); in idxd_cleanup_internals() 407 put_device(engine_confdev(idxd->engines[i])); in idxd_setup_internals()
|
/Linux-v6.6/drivers/hsi/ |
D | Kconfig | 10 application engines and cellular modems.
|
/Linux-v6.6/drivers/gpu/drm/amd/display/dc/dce60/ |
D | dce60_resource.c | 823 if (pool->base.engines[i] != NULL) in dce60_resource_destruct() 824 dce110_engine_destroy(&pool->base.engines[i]); in dce60_resource_destruct() 1074 pool->base.engines[i] = dce60_aux_engine_create(ctx, i); in dce60_construct() 1075 if (pool->base.engines[i] == NULL) { in dce60_construct() 1272 pool->base.engines[i] = dce60_aux_engine_create(ctx, i); in dce61_construct() 1273 if (pool->base.engines[i] == NULL) { in dce61_construct() 1466 pool->base.engines[i] = dce60_aux_engine_create(ctx, i); in dce64_construct() 1467 if (pool->base.engines[i] == NULL) { in dce64_construct()
|
/Linux-v6.6/drivers/gpu/drm/amd/display/dc/dce80/ |
D | dce80_resource.c | 830 if (pool->base.engines[i] != NULL) in dce80_resource_destruct() 831 dce110_engine_destroy(&pool->base.engines[i]); in dce80_resource_destruct() 1088 pool->base.engines[i] = dce80_aux_engine_create(ctx, i); in dce80_construct() 1089 if (pool->base.engines[i] == NULL) { in dce80_construct() 1288 pool->base.engines[i] = dce80_aux_engine_create(ctx, i); in dce81_construct() 1289 if (pool->base.engines[i] == NULL) { in dce81_construct() 1485 pool->base.engines[i] = dce80_aux_engine_create(ctx, i); in dce83_construct() 1486 if (pool->base.engines[i] == NULL) { in dce83_construct()
|
/Linux-v6.6/Documentation/powerpc/ |
D | vas-api.rst | 14 unit comprises of one or more hardware engines or co-processor types 62 access to all GZIP engines in the system. The only valid operations on 79 engines (typically, one per P9 chip) there is just one 130 "Discovery of available VAS engines" section below. 168 that the application can use to copy/paste its CRB to the hardware engines. 190 Discovery of available VAS engines
|