| .. | .. |
|---|
| 67 | 67 | * struct vsp1_entity_operations - Entity operations |
|---|
| 68 | 68 | * @destroy: Destroy the entity. |
|---|
| 69 | 69 | * @configure_stream: Setup the hardware parameters for the stream which do |
|---|
| 70 | | - * not vary between frames (pipeline, formats). |
|---|
| 70 | + * not vary between frames (pipeline, formats). Note that |
|---|
| 71 | + * the vsp1_dl_list argument is only valid for display |
|---|
| 72 | + * pipeline and will be NULL for mem-to-mem pipelines. |
|---|
| 71 | 73 | * @configure_frame: Configure the runtime parameters for each frame. |
|---|
| 72 | 74 | * @configure_partition: Configure partition specific parameters. |
|---|
| 73 | 75 | * @max_width: Return the max supported width of data that the entity can |
|---|
| .. | .. |
|---|
| 78 | 80 | struct vsp1_entity_operations { |
|---|
| 79 | 81 | void (*destroy)(struct vsp1_entity *); |
|---|
| 80 | 82 | void (*configure_stream)(struct vsp1_entity *, struct vsp1_pipeline *, |
|---|
| 81 | | - struct vsp1_dl_body *); |
|---|
| 83 | + struct vsp1_dl_list *, struct vsp1_dl_body *); |
|---|
| 82 | 84 | void (*configure_frame)(struct vsp1_entity *, struct vsp1_pipeline *, |
|---|
| 83 | 85 | struct vsp1_dl_list *, struct vsp1_dl_body *); |
|---|
| 84 | 86 | void (*configure_partition)(struct vsp1_entity *, |
|---|
| .. | .. |
|---|
| 155 | 157 | |
|---|
| 156 | 158 | void vsp1_entity_configure_stream(struct vsp1_entity *entity, |
|---|
| 157 | 159 | struct vsp1_pipeline *pipe, |
|---|
| 160 | + struct vsp1_dl_list *dl, |
|---|
| 158 | 161 | struct vsp1_dl_body *dlb); |
|---|
| 159 | 162 | |
|---|
| 160 | 163 | void vsp1_entity_configure_frame(struct vsp1_entity *entity, |
|---|