/linux-6.12.1/drivers/gpu/drm/msm/ |
D | msm_submitqueue.c | 55 for (i = 0; i < ARRAY_SIZE(ctx->entities); i++) { in __msm_file_private_destroy() 56 if (!ctx->entities[i]) in __msm_file_private_destroy() 59 drm_sched_entity_destroy(ctx->entities[i]); in __msm_file_private_destroy() 60 kfree(ctx->entities[i]); in __msm_file_private_destroy() 131 if (WARN_ON(idx >= ARRAY_SIZE(ctx->entities))) in get_sched_entity() 136 if (!ctx->entities[idx]) { in get_sched_entity() 141 entity = kzalloc(sizeof(*ctx->entities[idx]), GFP_KERNEL); in get_sched_entity() 150 ctx->entities[idx] = entity; in get_sched_entity() 155 return ctx->entities[idx]; in get_sched_entity()
|
/linux-6.12.1/drivers/media/platform/renesas/vsp1/ |
D | vsp1_drv.c | 106 list_for_each_entry(source, &vsp1->entities, list_dev) { in vsp1_create_sink_links() 147 list_for_each_entry(entity, &vsp1->entities, list_dev) { in vsp1_uapi_create_links() 225 list_for_each_entry_safe(entity, _entity, &vsp1->entities, list_dev) { in vsp1_destroy_entities() 282 list_add_tail(&vsp1->brs->entity.list_dev, &vsp1->entities); in vsp1_create_entities() 292 list_add_tail(&vsp1->bru->entity.list_dev, &vsp1->entities); in vsp1_create_entities() 302 list_add_tail(&vsp1->clu->entity.list_dev, &vsp1->entities); in vsp1_create_entities() 311 list_add_tail(&vsp1->hsi->entity.list_dev, &vsp1->entities); in vsp1_create_entities() 319 list_add_tail(&vsp1->hst->entity.list_dev, &vsp1->entities); in vsp1_create_entities() 329 &vsp1->entities); in vsp1_create_entities() 340 &vsp1->entities); in vsp1_create_entities() [all …]
|
D | vsp1_pipe.c | 279 list_for_each_entry(entity, &pipe->entities, list_pipe) in vsp1_pipeline_reset() 282 INIT_LIST_HEAD(&pipe->entities); in vsp1_pipeline_reset() 300 INIT_LIST_HEAD(&pipe->entities); in vsp1_pipeline_init() 313 list_for_each_entry(entity, &pipe->entities, list_pipe) { in __vsp1_pipeline_dump() 382 list_for_each_entry(entity, &pipe->entities, list_pipe) { in vsp1_pipeline_stop() 488 list_for_each_entry_reverse(entity, &pipe->entities, list_pipe) { in vsp1_pipeline_propagate_partition()
|
D | vsp1_drm.c | 318 &pipe->entities); in vsp1_du_pipeline_setup_brx() 427 list_add(&rpf->entity.list_pipe, &pipe->entities); in vsp1_du_pipeline_setup_inputs() 477 list_add_tail(&drm_pipe->uif->list_pipe, &pipe->entities); in vsp1_du_pipeline_setup_inputs() 564 list_for_each_entry_safe(entity, next, &pipe->entities, list_pipe) { in vsp1_du_pipeline_configure() 991 list_add_tail(&pipe->output->entity.list_pipe, &pipe->entities); in vsp1_drm_init() 994 list_add_tail(&pipe->lif->list_pipe, &pipe->entities); in vsp1_drm_init()
|
D | vsp1.h | 102 struct list_head entities; member
|
D | vsp1_pipe.h | 131 struct list_head entities; member
|
/linux-6.12.1/Documentation/networking/devlink/ |
D | devlink-reload.rst | 7 ``devlink-reload`` provides mechanism to reinit driver entities, applying 23 - Devlink driver entities re-initialization, including applying 24 new values to devlink entities which are used during driver 30 Other devlink entities may stay over the re-initialization: 35 The rest of the devlink entities have to be removed and readded. 81 # Run reload command for devlink driver entities re-initialization:
|
/linux-6.12.1/Documentation/userspace-api/media/mediactl/ |
D | media-controller-model.rst | 22 controls one or more entities in the graph. 25 interact with other entities. Data (not restricted to video) produced 31 pads, either on the same entity or on different entities. Data flows 38 entities form a single logical unit. For example this could represent the
|
D | media-funcs.rst | 18 media-ioc-enum-entities
|
D | media-ioc-g-topology.rst | 38 ``topology_version`` and the total number of entities, interfaces, pads 66 - Number of entities in the graph 74 - A pointer to a memory area where the entities array will be 76 the ioctl won't store the entities. It will just update
|
D | media-ioc-enum-entities.rst | 13 MEDIA_IOC_ENUM_ENTITIES - Enumerate entities and their properties 48 enumerate entities by calling MEDIA_IOC_ENUM_ENTITIES with increasing
|
/linux-6.12.1/Documentation/driver-api/media/ |
D | mc-core.rst | 18 modelled as an oriented graph of building blocks called entities connected 28 other entities. Data (not restricted to video) produced by an entity 33 on the same entity or on different entities. Data flows from a source 63 instances, although drivers can allocate entities directly. 68 Drivers register entities with a media device by calling 119 Associate two entities via their PADs. Each entity has a list that points 148 entities and links. 150 To iterate over all entities belonging to a media device, drivers can use 205 When starting streaming, drivers must notify all entities in the pipeline to 222 When stopping the stream, drivers must notify the entities with [all …]
|
/linux-6.12.1/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_ctx.c | 258 if (cmpxchg(&ctx->entities[hw_ip][ring], NULL, entity)) in amdgpu_ctx_init_entity() 421 spend = amdgpu_ctx_fini_entity(adev, ctx->entities[i][j]); in amdgpu_ctx_fini() 456 if (ctx->entities[hw_ip][ring] == NULL) { in amdgpu_ctx_get_entity() 462 ctx_entity = &ctx->entities[hw_ip][ring]->entity; in amdgpu_ctx_get_entity() 514 if (!ctx->entities[i][j]) in amdgpu_ctx_do_release() 517 drm_sched_entity_destroy(&ctx->entities[i][j]->entity); in amdgpu_ctx_do_release() 850 if (!ctx->entities[i][j]) in amdgpu_ctx_priority_override() 853 amdgpu_ctx_set_entity_priority(ctx, ctx->entities[i][j], in amdgpu_ctx_priority_override() 910 if (!ctx->entities[i][j]) in amdgpu_ctx_mgr_entity_flush() 913 entity = &ctx->entities[i][j]->entity; in amdgpu_ctx_mgr_entity_flush() [all …]
|
D | amdgpu_cs.h | 61 struct drm_sched_entity *entities[AMDGPU_CS_GANG_SIZE]; member
|
D | amdgpu_ctx.h | 52 struct amdgpu_ctx_entity *entities[AMDGPU_HW_IP_NUM][AMDGPU_MAX_ENTITY_NUM]; member
|
/linux-6.12.1/drivers/media/usb/uvc/ |
D | uvc_driver.c | 138 list_for_each_entry(entity, &dev->entities, list) { in uvc_entity_by_id() 152 entity = list_entry(&dev->entities, struct uvc_entity, list); in uvc_entity_by_reference() 154 list_for_each_entry_continue(entity, &dev->entities, list) { in uvc_entity_by_reference() 923 list_add_tail(&unit->list, &dev->entities); in uvc_parse_vendor_control() 1054 list_add_tail(&term->list, &dev->entities); in uvc_parse_standard_control() 1087 list_add_tail(&term->list, &dev->entities); in uvc_parse_standard_control() 1108 list_add_tail(&unit->list, &dev->entities); in uvc_parse_standard_control() 1137 list_add_tail(&unit->list, &dev->entities); in uvc_parse_standard_control() 1164 list_add_tail(&unit->list, &dev->entities); in uvc_parse_standard_control() 1306 list_add_tail(&unit->list, &dev->entities); in uvc_gpio_parse() [all …]
|
D | uvc_entity.c | 140 list_for_each_entry(entity, &chain->entities, chain) { in uvc_mc_register_entities() 150 list_for_each_entry(entity, &chain->entities, chain) { in uvc_mc_register_entities()
|
/linux-6.12.1/include/media/ |
D | media-device.h | 162 struct list_head entities; member 383 list_for_each_entry(entity, &(mdev)->entities, graph_obj.list)
|
/linux-6.12.1/Documentation/admin-guide/media/ |
D | rkisp1.rst | 63 Those entities are the DMA engines that write the frames to memory. 75 Those are resizer entities for the mainpath and the selfpath. Those entities 78 The resizers entities can only operate on YUV:4:2:2 format 89 connected to the sensor and on source pad 2 connected to the resizer entities. 200 Note that the resizer and capture entities will always report
|
/linux-6.12.1/drivers/gpu/drm/scheduler/ |
D | sched_main.c | 205 INIT_LIST_HEAD(&rq->entities); in drm_sched_rq_init() 228 list_add_tail(&entity->list, &rq->entities); in drm_sched_rq_add_entity() 283 list_for_each_entry_continue(entity, &rq->entities, list) { in drm_sched_rq_select_entity_rr() 301 list_for_each_entry(entity, &rq->entities, list) { in drm_sched_rq_select_entity_rr() 1348 list_for_each_entry(s_entity, &rq->entities, list) in drm_sched_fini() 1400 list_for_each_entry_safe(entity, tmp, &rq->entities, list) { in drm_sched_increase_karma() 1409 if (&entity->list != &rq->entities) in drm_sched_increase_karma()
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-platform-intel-wmi-sbl-fw-update | 6 Allow user space entities to trigger update of Slim
|
D | sysfs-firmware-opal-psr | 7 to shift/throttle power between different entities in
|
/linux-6.12.1/Documentation/driver-api/hte/ |
D | hte.rst | 65 The total number of entities requested from the given provider, 72 The total number of entities supported by the provider.
|
/linux-6.12.1/Documentation/virt/kvm/devices/ |
D | xics.rst | 33 Interrupt Control Presentation (ICP) entities, also called "servers", 36 The ICP entities are created by enabling the KVM_CAP_IRQ_ARCH
|
/linux-6.12.1/Documentation/networking/ |
D | skbuff.rst | 18 :c:member:`sk_buff.users` is a simple refcount allowing multiple entities
|