Home
last modified time | relevance | path

Searched refs:vimc (Results 1 – 15 of 15) sorted by relevance

/linux-5.19.10/drivers/media/test-drivers/vimc/
Dvimc-core.c124 static void vimc_rm_links(struct vimc_device *vimc) in vimc_rm_links() argument
128 for (i = 0; i < vimc->pipe_cfg->num_ents; i++) in vimc_rm_links()
129 media_entity_remove_links(vimc->ent_devs[i]->ent); in vimc_rm_links()
132 static int vimc_create_links(struct vimc_device *vimc) in vimc_create_links() argument
138 for (i = 0; i < vimc->pipe_cfg->num_links; i++) { in vimc_create_links()
139 const struct vimc_ent_link *link = &vimc->pipe_cfg->links[i]; in vimc_create_links()
142 vimc->ent_devs[link->src_ent]; in vimc_create_links()
144 vimc->ent_devs[link->sink_ent]; in vimc_create_links()
156 vimc_rm_links(vimc); in vimc_create_links()
160 static void vimc_release_subdevs(struct vimc_device *vimc) in vimc_release_subdevs() argument
[all …]
DMakefile2 vimc-y := vimc-core.o vimc-common.o vimc-streamer.o vimc-capture.o \
3 vimc-debayer.o vimc-scaler.o vimc-sensor.o
5 obj-$(CONFIG_VIDEO_VIMC) += vimc.o
Dvimc-capture.c397 static struct vimc_ent_device *vimc_cap_add(struct vimc_device *vimc, in vimc_cap_add() argument
400 struct v4l2_device *v4l2_dev = &vimc->v4l2_dev; in vimc_cap_add()
442 dev_err(vimc->mdev.dev, "%s: vb2 queue init failed (err=%d)\n", in vimc_cap_add()
462 vcap->ved.dev = vimc->mdev.dev; in vimc_cap_add()
482 dev_err(vimc->mdev.dev, "%s: video register failed (err=%d)\n", in vimc_cap_add()
Dvimc-scaler.c403 static struct vimc_ent_device *vimc_sca_add(struct vimc_device *vimc, in vimc_sca_add() argument
406 struct v4l2_device *v4l2_dev = &vimc->v4l2_dev; in vimc_sca_add()
429 vsca->ved.dev = vimc->mdev.dev; in vimc_sca_add()
Dvimc-sensor.c380 static struct vimc_ent_device *vimc_sen_add(struct vimc_device *vimc, in vimc_sen_add() argument
383 struct v4l2_device *v4l2_dev = &vimc->v4l2_dev; in vimc_sen_add()
432 vsen->ved.dev = vimc->mdev.dev; in vimc_sen_add()
Dvimc-common.h143 struct vimc_ent_device *(*add)(struct vimc_device *vimc,
Dvimc-debayer.c562 static struct vimc_ent_device *vimc_deb_add(struct vimc_device *vimc, in vimc_deb_add() argument
565 struct v4l2_device *v4l2_dev = &vimc->v4l2_dev; in vimc_deb_add()
596 vdeb->ved.dev = vimc->mdev.dev; in vimc_deb_add()
/linux-5.19.10/Documentation/admin-guide/media/
Dvimc.rst3 The Virtual Media Controller Driver (vimc)
6 The vimc driver emulates complex video hardware using the V4L2 API and the Media
12 The topology is hardcoded, although you could modify it in vimc-core and
17 .. kernel-figure:: vimc.dot
21 Media pipeline graph on vimc
31 ``v4l2-ctl`` that can be used to configure the vimc configuration. This sequence
36 media-ctl -d platform:vimc -V '"Sensor A":0[fmt:SBGGR8_1X8/640x480]'
37 media-ctl -d platform:vimc -V '"Debayer A":0[fmt:SBGGR8_1X8/640x480]'
38 media-ctl -d platform:vimc -V '"Sensor B":0[fmt:SBGGR8_1X8/640x480]'
39 media-ctl -d platform:vimc -V '"Debayer B":0[fmt:SBGGR8_1X8/640x480]'
[all …]
Dv4l-drivers.rst33 vimc
Dmisc-cardlist.rst26 vimc Virtual Media Controller Driver (VIMC)
/linux-5.19.10/Documentation/driver-api/media/drivers/
Dvimc-devel.rst3 The Virtual Media Controller Driver (vimc)
9 vimc-streamer
12 .. kernel-doc:: drivers/media/test-drivers/vimc/vimc-streamer.h
15 .. kernel-doc:: drivers/media/test-drivers/vimc/vimc-streamer.c
Dindex.rst28 vimc-devel
/linux-5.19.10/drivers/media/test-drivers/
DMakefile13 obj-$(CONFIG_VIDEO_VIMC) += vimc/
DKconfig21 source "drivers/media/test-drivers/vimc/Kconfig"
/linux-5.19.10/
DMAINTAINERS21142 F: drivers/media/test-drivers/vimc/*