Searched refs:pipeline (Results 1 - 8 of 8) sorted by relevance

/u-boot/drivers/video/sunxi/
H A Dsimplefb_common.h12 * Match a sunxi simplefb device node with a specified pipeline, and
16 * @pipeline: display pipeline
19 int sunxi_simplefb_fdt_match(void *blob, const char *pipeline);
H A Dsimplefb_common.c3 * Common code for Allwinner SimpleFB with pipeline.
12 int sunxi_simplefb_fdt_match(void *blob, const char *pipeline) argument
16 /* Find a prefilled simpefb node, matching out pipeline config */
21 ret = fdt_stringlist_search(blob, offset, "allwinner,pipeline",
22 pipeline);
H A Dsunxi_de2.c316 const char *pipeline = NULL; local
342 pipeline = "mixer0-lcd0-hdmi";
344 pipeline = "mixer1-lcd1-hdmi";
354 pipeline = "mixer0-lcd0";
358 if (!pipeline) {
366 offset = sunxi_simplefb_fdt_match(blob, pipeline);
H A Dsunxi_display.c1282 const char *pipeline = NULL; local
1307 pipeline = PIPELINE_PREFIX "de_be0-lcd0-hdmi";
1310 pipeline = PIPELINE_PREFIX "de_be0-lcd0";
1314 pipeline = PIPELINE_PREFIX "de_be0-lcd0-tve0";
1316 pipeline = PIPELINE_PREFIX "de_be0-lcd0";
1323 pipeline = PIPELINE_PREFIX "de_be0-lcd0-tve0";
1327 offset = sunxi_simplefb_fdt_match(blob, pipeline);
/u-boot/drivers/video/meson/
H A Dsimplefb_common.h12 * Match a meson simplefb device node with a specified pipeline, and
16 * @pipeline: display pipeline
19 int meson_simplefb_fdt_match(void *blob, const char *pipeline);
H A Dsimplefb_common.c3 * Common code for Amlogic SimpleFB with pipeline.
12 int meson_simplefb_fdt_match(void *blob, const char *pipeline) argument
16 /* Find a prefilled simpefb node, matching out pipeline config */
19 ret = fdt_stringlist_search(blob, offset, "amlogic,pipeline",
20 pipeline);
H A Dmeson_vpu.c153 const char *pipeline = NULL; local
158 pipeline = "vpu-cvbs";
160 pipeline = "vpu-hdmi";
162 offset = meson_simplefb_fdt_match(fdt, pipeline);
/u-boot/tools/u_boot_pylib/
H A Dcommand.py48 Perform a command pipeline, with optional input/output filenames.
55 infile: File to provide stdin to the pipeline
77 pipeline = list(pipe_list)
81 while pipeline:
82 cmd = pipeline.pop(0)
87 if pipeline or capture:

Completed in 76 milliseconds