| /linux/drivers/media/platform/renesas/vsp1/ |
| H A D | vsp1_dl.c | 142 struct vsp1_device *vsp1; member 166 struct vsp1_device *vsp1; member 224 struct vsp1_device *vsp1; member 255 vsp1_dl_body_pool_create(struct vsp1_device *vsp1, unsigned int num_bodies, in vsp1_dl_body_pool_create() argument 266 pool->vsp1 = vsp1; in vsp1_dl_body_pool_create() 283 pool->mem = dma_alloc_wc(vsp1->bus_master, pool->size, &pool->dma, in vsp1_dl_body_pool_create() 321 dma_free_wc(pool->vsp1->bus_master, pool->size, pool->mem, in vsp1_dl_body_pool_destroy() 430 vsp1_dl_cmd_pool_create(struct vsp1_device *vsp1, enum vsp1_extcmd_type type, in vsp1_dl_cmd_pool_create() argument 441 pool->vsp1 = vsp1; in vsp1_dl_cmd_pool_create() 457 pool->mem = dma_alloc_wc(vsp1->bus_master, pool->size, &pool->dma, in vsp1_dl_cmd_pool_create() [all …]
|
| H A D | vsp1_video.c | 82 dev_dbg(video->vsp1->dev, in vsp1_video_verify_format() 125 info = vsp1_get_format_info(video->vsp1, pix->pixelformat); in __vsp1_video_try_format() 127 info = vsp1_get_format_info(video->vsp1, VSP1_VIDEO_DEF_FORMAT); in __vsp1_video_try_format() 271 struct vsp1_device *vsp1 = pipe->output->entity.vsp1; in vsp1_video_pipeline_run() local 308 dev_err(vsp1->dev, "Failed to obtain a dl list. Frame will be incomplete\n"); in vsp1_video_pipeline_run() 326 struct vsp1_device *vsp1 = pipe->output->entity.vsp1; in vsp1_video_pipeline_frame_end() local 337 for (i = 0; i < vsp1->info->rpf_count; ++i) { in vsp1_video_pipeline_frame_end() 371 ret = media_entity_enum_init(&ent_enum, &input->entity.vsp1->media_dev); in vsp1_video_pipeline_build_branch() 525 for (i = 0; i < video->vsp1->info->rpf_count; ++i) { in vsp1_video_pipeline_build() 596 struct media_device *mdev = &pipe->output->entity.vsp1->media_dev; in vsp1_video_pipeline_put() [all …]
|
| H A D | vsp1_video.h | 33 struct vsp1_device *vsp1; member 54 void vsp1_video_suspend(struct vsp1_device *vsp1); 55 void vsp1_video_resume(struct vsp1_device *vsp1); 57 struct vsp1_video *vsp1_video_create(struct vsp1_device *vsp1,
|
| H A D | vsp1_hgo.c | 28 return vsp1_read(hgo->histo.entity.vsp1, reg); in vsp1_hgo_read() 60 vsp1_write(hgo->histo.entity.vsp1, in vsp1_hgo_frame_end() 186 struct vsp1_hgo *vsp1_hgo_create(struct vsp1_device *vsp1) in vsp1_hgo_create() argument 191 hgo = devm_kzalloc(vsp1->dev, sizeof(*hgo), GFP_KERNEL); in vsp1_hgo_create() 196 ret = vsp1_histogram_init(vsp1, &hgo->histo, VSP1_ENTITY_HGO, "hgo", in vsp1_hgo_create() 207 vsp1->info->gen >= 3 ? 2 : 1); in vsp1_hgo_create() 210 if (vsp1->info->gen >= 3) in vsp1_hgo_create()
|
| H A D | vsp1_lif.c | 99 switch (entity->vsp1->version & VI6_IP_VERSION_MODEL_MASK) { in lif_configure_stream() 139 if (vsp1_feature(entity->vsp1, VSP1_HAS_NON_ZERO_LBA)) in lif_configure_stream() 153 struct vsp1_lif *vsp1_lif_create(struct vsp1_device *vsp1, unsigned int index) in vsp1_lif_create() argument 158 lif = devm_kzalloc(vsp1->dev, sizeof(*lif), GFP_KERNEL); in vsp1_lif_create() 171 ret = vsp1_entity_init(vsp1, &lif->entity, "lif", 2, &lif_ops, in vsp1_lif_create()
|
| H A D | vsp1_lut.c | 198 struct vsp1_lut *vsp1_lut_create(struct vsp1_device *vsp1) in vsp1_lut_create() argument 203 lut = devm_kzalloc(vsp1->dev, sizeof(*lut), GFP_KERNEL); in vsp1_lut_create() 212 ret = vsp1_entity_init(vsp1, &lut->entity, "lut", 2, &lut_ops, in vsp1_lut_create() 222 lut->pool = vsp1_dl_body_pool_create(vsp1, 3, LUT_SIZE, 0); in vsp1_lut_create() 233 dev_err(vsp1->dev, "lut: failed to initialize controls\n"); in vsp1_lut_create()
|
| H A D | vsp1_clu.c | 237 struct vsp1_clu *vsp1_clu_create(struct vsp1_device *vsp1) in vsp1_clu_create() argument 242 clu = devm_kzalloc(vsp1->dev, sizeof(*clu), GFP_KERNEL); in vsp1_clu_create() 251 ret = vsp1_entity_init(vsp1, &clu->entity, "clu", 2, &clu_ops, in vsp1_clu_create() 262 clu->pool = vsp1_dl_body_pool_create(clu->entity.vsp1, 3, CLU_SIZE + 1, in vsp1_clu_create() 275 dev_err(vsp1->dev, "clu: failed to initialize controls\n"); in vsp1_clu_create()
|
| H A D | vsp1_dl.h | 52 void vsp1_dlm_setup(struct vsp1_device *vsp1); 54 struct vsp1_dl_manager *vsp1_dlm_create(struct vsp1_device *vsp1, 69 vsp1_dl_body_pool_create(struct vsp1_device *vsp1, unsigned int num_bodies,
|
| H A D | vsp1_hgt.c | 28 return vsp1_read(hgt->histo.entity.vsp1, reg); in vsp1_hgt_read() 185 struct vsp1_hgt *vsp1_hgt_create(struct vsp1_device *vsp1) in vsp1_hgt_create() argument 190 hgt = devm_kzalloc(vsp1->dev, sizeof(*hgt), GFP_KERNEL); in vsp1_hgt_create() 195 ret = vsp1_histogram_init(vsp1, &hgt->histo, VSP1_ENTITY_HGT, "hgt", in vsp1_hgt_create()
|
| H A D | vsp1_uif.c | 31 return vsp1_read(uif->entity.vsp1, in vsp1_uif_read() 237 struct vsp1_uif *vsp1_uif_create(struct vsp1_device *vsp1, unsigned int index) in vsp1_uif_create() argument 243 uif = devm_kzalloc(vsp1->dev, sizeof(*uif), GFP_KERNEL); in vsp1_uif_create() 256 ret = vsp1_entity_init(vsp1, &uif->entity, name, 2, &uif_ops, in vsp1_uif_create()
|
| H A D | vsp1_rwpf.h | 79 struct vsp1_rwpf *vsp1_rpf_create(struct vsp1_device *vsp1, unsigned int index); 80 struct vsp1_rwpf *vsp1_wpf_create(struct vsp1_device *vsp1, unsigned int index);
|
| H A D | vsp1_lif.h | 31 struct vsp1_lif *vsp1_lif_create(struct vsp1_device *vsp1, unsigned int index);
|
| H A D | vsp1_hsit.h | 32 struct vsp1_hsit *vsp1_hsit_create(struct vsp1_device *vsp1, bool inverse);
|
| H A D | vsp1_sru.h | 36 struct vsp1_sru *vsp1_sru_create(struct vsp1_device *vsp1);
|
| H A D | vsp1_uif.h | 29 struct vsp1_uif *vsp1_uif_create(struct vsp1_device *vsp1, unsigned int index);
|
| H A D | vsp1_lut.h | 40 struct vsp1_lut *vsp1_lut_create(struct vsp1_device *vsp1);
|
| H A D | vsp1_uds.h | 32 struct vsp1_uds *vsp1_uds_create(struct vsp1_device *vsp1, unsigned int index);
|
| H A D | vsp1_hgt.h | 35 struct vsp1_hgt *vsp1_hgt_create(struct vsp1_device *vsp1);
|
| H A D | vsp1_clu.h | 43 struct vsp1_clu *vsp1_clu_create(struct vsp1_device *vsp1);
|
| H A D | vsp1_hgo.h | 38 struct vsp1_hgo *vsp1_hgo_create(struct vsp1_device *vsp1);
|
| H A D | vsp1_brx.h | 41 struct vsp1_brx *vsp1_brx_create(struct vsp1_device *vsp1,
|
| H A D | vsp1_histo.h | 64 int vsp1_histogram_init(struct vsp1_device *vsp1, struct vsp1_histogram *histo,
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | metafmt-vsp1-hgo.rst | 4 .. _v4l2-meta-fmt-vsp1-hgo:
|
| H A D | metafmt-vsp1-hgt.rst | 4 .. _v4l2-meta-fmt-vsp1-hgt:
|
| /linux/arch/arm/boot/dts/renesas/ |
| H A D | r8a7792.dtsi | 888 compatible = "renesas,vsp1"; 897 compatible = "renesas,vsp1"; 906 compatible = "renesas,vsp1";
|