/linux-6.14.4/drivers/gpu/drm/i915/display/ |
D | intel_overlay.c | 46 /* Limits for overlay size. According to intel doc, the real limits are: 56 /* overlay register definitions */ 119 /* overlay flip addr flag */ 130 /* memory bufferd overlay registers */ 233 alloc_request(struct intel_overlay *overlay, void (*fn)(struct intel_overlay *)) in alloc_request() argument 238 overlay->flip_complete = fn; in alloc_request() 240 rq = i915_request_create(overlay->context); in alloc_request() 244 err = i915_active_add_request(&overlay->last_flip, rq); in alloc_request() 253 /* overlay needs to be disable in OCMD reg */ 254 static int intel_overlay_on(struct intel_overlay *overlay) in intel_overlay_on() argument [all …]
|
/linux-6.14.4/drivers/gpu/drm/omapdrm/ |
D | omap_overlay.c | 14 * overlay funcs 24 * Find a free overlay with the required caps and supported fourcc 62 * Assign a new overlay to a plane with the required caps and supported fourcc 63 * If a plane need a new overlay, the previous one should have been released 69 u32 caps, u32 fourcc, struct omap_hw_overlay **overlay, in omap_overlay_assign() argument 82 *overlay = ovl; in omap_overlay_assign() 89 *overlay = NULL; in omap_overlay_assign() 108 * Release an overlay from a plane if the plane gets not visible or the plane 109 * need a new overlay if overlay caps changes. 113 void omap_overlay_release(struct drm_atomic_state *s, struct omap_hw_overlay *overlay) in omap_overlay_release() argument [all …]
|
D | omap_plane.c | 27 struct omap_hw_overlay *overlay; member 28 struct omap_hw_overlay *r_overlay; /* right overlay */ 83 /* Cleanup previously held overlay if needed */ in omap_plane_atomic_update() 84 if (old_omap_state->overlay) in omap_plane_atomic_update() 85 omap_overlay_update_state(priv, old_omap_state->overlay); in omap_plane_atomic_update() 89 if (!new_omap_state->overlay) { in omap_plane_atomic_update() 90 DBG("[PLANE:%d:%s] no overlay attached", plane->base.id, plane->name); in omap_plane_atomic_update() 94 ovl_id = new_omap_state->overlay->id; in omap_plane_atomic_update() 117 new_omap_state->overlay->name, info.width, info.height, in omap_plane_atomic_update() 127 * main overlay zorder + 1 in omap_plane_atomic_update() [all …]
|
/linux-6.14.4/drivers/of/ |
D | resolver.c | 41 static void adjust_overlay_phandles(struct device_node *overlay, in adjust_overlay_phandles() argument 49 if (overlay->phandle != 0 && overlay->phandle != OF_PHANDLE_ILLEGAL) in adjust_overlay_phandles() 50 overlay->phandle += phandle_delta; in adjust_overlay_phandles() 53 for_each_property_of_node(overlay, prop) { in adjust_overlay_phandles() 66 *(__be32 *)prop->value = cpu_to_be32(overlay->phandle); in adjust_overlay_phandles() 69 for_each_child_of_node(overlay, child) in adjust_overlay_phandles() 73 static int update_usages_of_a_phandle_reference(struct device_node *overlay, in update_usages_of_a_phandle_reference() argument 107 refnode = __of_find_node_by_full_path(of_node_get(overlay), node_path); in update_usages_of_a_phandle_reference() 142 * Subtree @local_fixups, which is overlay node __local_fixups__, 143 * mirrors the fragment node structure at the root of the overlay. [all …]
|
D | overlay.c | 9 #define pr_fmt(fmt) "OF: overlay: " fmt 27 * struct target - info about current target node as recursing through overlay 28 * @np: node where current level of overlay will be applied 32 * an overlay fragment, which is a devicetree subtree. Initially @np is a node 33 * in the live devicetree where the overlay subtree is targeted to be grafted 34 * into. When recursing to the next level of the overlay subtree, the target 35 * also recurses to the next level of the live devicetree, as long as overlay 36 * subtree node also exists in the live devicetree. When a node in the overlay 47 * struct fragment - info about fragment nodes in overlay expanded device tree 48 * @overlay: pointer to the __overlay__ node [all …]
|
D | unittest.c | 1836 * the respective unittest overlay contains a label that has the in update_node_properties() 1841 * overlay dts files with an odd prefix that is unlikely to be in update_node_properties() 2179 "Adding overlay 'overlay_gpio_01' failed\n"); in of_unittest_overlay_gpio() 2182 "Adding overlay 'overlay_gpio_02a' failed\n"); in of_unittest_overlay_gpio() 2185 "Adding overlay 'overlay_gpio_02b' failed\n"); in of_unittest_overlay_gpio() 2208 * apply overlay will result in in of_unittest_overlay_gpio() 2218 "Adding overlay 'overlay_gpio_03' failed\n"); in of_unittest_overlay_gpio() 2232 * apply the overlay will result in in of_unittest_overlay_gpio() 2242 "Adding overlay 'overlay_gpio_04a' failed\n"); in of_unittest_overlay_gpio() 2252 * apply the overlay will result in in of_unittest_overlay_gpio() [all …]
|
/linux-6.14.4/drivers/fpga/ |
D | of-fpga-region.c | 108 /* If overlay has a list of bridges, use it. */ in of_fpga_region_get_bridges() 109 br = of_parse_phandle(info->overlay, "fpga-bridges", 0); in of_fpga_region_get_bridges() 112 np = info->overlay; in of_fpga_region_get_bridges() 145 * @overlay: device node of the overlay 147 * If the overlay adds child FPGA regions, they are not allowed to have 152 static int child_regions_with_firmware(struct device_node *overlay) in child_regions_with_firmware() argument 158 of_node_get(overlay); in child_regions_with_firmware() 160 child_region = of_find_matching_node(overlay, fpga_region_of_match); in child_regions_with_firmware() 181 * of_fpga_region_parse_ov - parse and check overlay applied to region 184 * @overlay: overlay applied to the FPGA region [all …]
|
/linux-6.14.4/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_overlay.c | 46 * Overlay control 50 * Each stream is a single overlay. In Xv these are called ports. 239 * The caller must hold the overlay lock. 248 struct vmw_overlay *overlay = dev_priv->overlay_priv; in vmw_overlay_stop() local 249 struct vmw_stream *stream = &overlay->stream[stream_id]; in vmw_overlay_stop() 285 * The caller must hold the overlay lock. 296 struct vmw_overlay *overlay = dev_priv->overlay_priv; in vmw_overlay_update_stream() local 297 struct vmw_stream *stream = &overlay->stream[arg->stream_id]; in vmw_overlay_update_stream() 355 * Takes the overlay lock. 359 struct vmw_overlay *overlay = dev_priv->overlay_priv; in vmw_overlay_resume_all() local [all …]
|
/linux-6.14.4/Documentation/devicetree/ |
D | overlay-notes.rst | 4 Devicetree Overlay Notes 8 device tree overlay functionality residing in drivers/of/overlay.c and is a 14 A Devicetree's overlay purpose is to modify the kernel's live tree, and 41 The overlay bar.dts, 44 ---- bar.dts - overlay target location by label ---------------------------- 81 As a result of the overlay, a new device node (bar) has been created 86 will not be available to resolve the overlay node(s) to the proper location 88 location by label syntax is preferred because the overlay can be applied to 93 ---- bar.dts - overlay target location by explicit path -------------------- 106 Overlay in-kernel API [all …]
|
/linux-6.14.4/scripts/dtc/libfdt/ |
D | fdt_overlay.c | 16 * @fdto: pointer to the device tree overlay blob 17 * @fragment: node offset of the fragment in the overlay 20 * overlay fragment when that fragment uses a phandle (target 71 * overlay in fdt_overlay_target_offset() 90 * @node: Device tree overlay blob 124 * @fdto: Device tree overlay blob 129 * of a given node. This is mainly use as part of the overlay 130 * application process, when we want to update all the overlay 161 * overlay_adjust_local_phandles - Adjust the phandles of a whole overlay 162 * @fdto: Device tree overlay blob [all …]
|
/linux-6.14.4/Documentation/filesystems/ |
D | overlayfs.rst | 6 Overlay Filesystem 10 overlay-filesystem functionality in Linux (sometimes referred to as 11 union-filesystems). An overlay-filesystem tries to present a 16 Overlay objects 19 The overlay filesystem approach is 'hybrid', because the objects that 25 While directories will report an st_dev from the overlay-filesystem, 32 In the special case of all overlay layers on the same underlying 33 filesystem, all objects will report an st_dev from the overlay 35 make the overlay mount more compliant with filesystem scanners and 36 overlay objects will be distinguishable from the corresponding [all …]
|
/linux-6.14.4/include/video/ |
D | mmp_disp.h | 66 /* parameters used by path/overlay */ 67 /* overlay related para: win/addr */ 137 void (*set_fetch)(struct mmp_overlay *overlay, int fetch_id); 138 void (*set_onoff)(struct mmp_overlay *overlay, int status); 139 void (*set_win)(struct mmp_overlay *overlay, struct mmp_win *win); 140 int (*set_addr)(struct mmp_overlay *overlay, struct mmp_addr *addr); 143 /* overlay describes a z-order indexed slot in each path. */ 149 /* overlay info: private data */ 263 static inline void mmp_overlay_set_fetch(struct mmp_overlay *overlay, in mmp_overlay_set_fetch() argument 266 if (overlay) in mmp_overlay_set_fetch() [all …]
|
/linux-6.14.4/Documentation/userspace-api/media/v4l/ |
D | dev-osd.rst | 6 Video Output Overlay Interface 11 Some video output devices can overlay a framebuffer image onto the 12 outgoing video signal. Applications can set up such an overlay using 14 :ref:`Video Overlay <overlay>` interface. 29 Devices supporting the *Video Output Overlay* interface set the 38 Contrary to the *Video Overlay* interface the framebuffer is normally 103 for the video output overlay, or -1 if no device was found. */ 106 Overlay Window and Scaling 109 The overlay is controlled by source and target rectangles. The source 115 :ref:`Video Overlay <overlay>` interface. [all …]
|
D | dev-overlay.rst | 6 Video Overlay Interface 9 **Also known as Framebuffer Overlay or Previewing.** 11 Video overlay devices have the ability to genlock (TV-)video into the 19 Video overlay devices are accessed through the same character special 25 capturing. The overlay function is only available after calling 28 The driver may support simultaneous overlay and capturing using the 31 directed away from overlay to capture, or one field may be used for 32 overlay and the other for capture if the capture parameters permit this. 35 overlay. This must be supported by all drivers capable of simultaneous 36 capturing and overlay. Optionally these drivers may also permit [all …]
|
D | vidioc-g-fbuf.rst | 13 VIDIOC_G_FBUF - VIDIOC_S_FBUF - Get or set frame buffer overlay parameters 40 :ref:`Video Overlay <overlay>` or :ref:`Video Output Overlay <osd>` 41 (OSD). The type of overlay is implied by the device type (capture or 44 device must not support both kinds of overlay. 47 destructive overlay copies captured video images into the video memory 48 of a graphics card. A non-destructive overlay blends video images into a 52 Destructive overlay support has been removed: with modern GPUs and CPUs 60 To set the parameters for a *Video Output Overlay*, applications must 65 this structure, the driver prepares for the overlay and returns the 69 To set the parameters for a *Video Capture Overlay* [all …]
|
D | vidioc-overlay.rst | 13 VIDIOC_OVERLAY - Start or stop video overlay 34 This ioctl is part of the :ref:`video overlay <overlay>` I/O method. 35 Applications call :ref:`VIDIOC_OVERLAY` to start or stop the overlay. It 37 application to stop overlay, to one to start. 51 The overlay parameters have not been set up. See :ref:`overlay`
|
/linux-6.14.4/drivers/video/fbdev/mmp/hw/ |
D | mmp_ctrl.c | 48 static u32 fmt_to_reg(struct mmp_overlay *overlay, int pix_fmt) in fmt_to_reg() argument 52 vid = overlay_is_vid(overlay); in fmt_to_reg() 119 static void dmafetch_set_fmt(struct mmp_overlay *overlay) in dmafetch_set_fmt() argument 122 struct mmp_path *path = overlay->path; in dmafetch_set_fmt() 124 tmp &= ~dma_mask(overlay_is_vid(overlay)); in dmafetch_set_fmt() 125 tmp |= fmt_to_reg(overlay, overlay->win.pix_fmt); in dmafetch_set_fmt() 129 static void overlay_set_win(struct mmp_overlay *overlay, struct mmp_win *win) in overlay_set_win() argument 131 struct lcd_regs *regs = path_regs(overlay->path); in overlay_set_win() 134 memcpy(&overlay->win, win, sizeof(struct mmp_win)); in overlay_set_win() 136 mutex_lock(&overlay->access_ok); in overlay_set_win() [all …]
|
/linux-6.14.4/fs/overlayfs/ |
D | Kconfig | 3 tristate "Overlay filesystem support" 7 An overlay filesystem combines two filesystems - an 'upper' filesystem 19 If this config option is enabled then overlay filesystems will use 26 an overlay which has redirects on a kernel that doesn't support this 50 If this config option is enabled then overlay filesystems will use 60 That is, mounting an overlay which has an inodes index on a kernel 71 If this config option is enabled then overlay filesystems will use 72 the index directory to decode overlay NFS file handles by default. 78 directory. This full index is used to detect overlay filesystems 85 That is, mounting an overlay which has a full index on a kernel [all …]
|
D | export.c | 37 * to check if it will be possible to reconnect an overlay dentry from the real 38 * lower decoded dentry. This is done by following the overlay ancestry up to a 47 * The overlay dentry /a is NOT "layer 2 connectable", because if dir /a is 50 * in ovl_lookup_real_ancestor() will not be able to lookup a connected overlay 58 * a connected overlay dentry will be accomplished. 76 /* We can get overlay root from root of any layer */ in ovl_connectable_layer() 88 /* We can get upper/overlay path from indexed/lower dentry */ in ovl_connectable_layer() 157 * file handle. Overlay root dentry is a private case of non-indexed upper. 160 * different overlay object types: 172 * (*) Decoding a connected overlay dir from real lower dentry is not always [all …]
|
/linux-6.14.4/drivers/gpu/drm/ci/ |
D | lava-submit.sh | 16 mkdir -p results/job-rootfs-overlay/ 18 cp artifacts/ci-common/capture-devcoredump.sh results/job-rootfs-overlay/ 19 cp artifacts/ci-common/init-*.sh results/job-rootfs-overlay/ 20 cp artifacts/ci-common/intel-gpu-freq.sh results/job-rootfs-overlay/ 21 cp "$SCRIPTS_DIR"/setup-test-env.sh results/job-rootfs-overlay/ 26 artifacts/ci-common/generate-env.sh | tee results/job-rootfs-overlay/set-job-env-vars.sh 29 tar zcf job-rootfs-overlay.tar.gz -C results/job-rootfs-overlay/ . 30 ci-fairy s3cp --token-file "${S3_JWT_FILE}" job-rootfs-overlay.tar.gz "https://${JOB_ROOTFS_OVERLAY… 42 --job-rootfs-overlay-url "${FDO_HTTP_CACHE_URI:-}https://${JOB_ROOTFS_OVERLAY_PATH}" \
|
/linux-6.14.4/Documentation/ABI/testing/ |
D | sysfs-devices-platform-sh_mobile_lcdc_fb | 6 to overlay planes. 8 Stores the alpha blending value for the overlay. Values range 17 to overlay planes. 19 Selects the composition mode for the overlay. Possible values 30 to overlay planes. 32 Stores the x,y overlay position on the display in pixels. The 40 to overlay planes. 42 Stores the raster operation (ROP3) for the overlay. Values
|
/linux-6.14.4/drivers/gpu/drm/sun4i/ |
D | sun8i_ui_layer.c | 28 int overlay, struct drm_plane *plane) in sun8i_ui_layer_update_alpha() argument 44 SUN8I_MIXER_CHAN_UI_LAYER_ATTR(ch_base, overlay), in sun8i_ui_layer_update_alpha() 49 int overlay, struct drm_plane *plane, in sun8i_ui_layer_update_coord() argument 58 DRM_DEBUG_DRIVER("Updating UI channel %d overlay %d\n", in sun8i_ui_layer_update_coord() 59 channel, overlay); in sun8i_ui_layer_update_coord() 80 SUN8I_MIXER_CHAN_UI_LAYER_SIZE(ch_base, overlay), in sun8i_ui_layer_update_coord() 117 int overlay, struct drm_plane *plane) in sun8i_ui_layer_update_formats() argument 135 SUN8I_MIXER_CHAN_UI_LAYER_ATTR(ch_base, overlay), in sun8i_ui_layer_update_formats() 142 int overlay, struct drm_plane *plane) in sun8i_ui_layer_update_buffer() argument 169 SUN8I_MIXER_CHAN_UI_LAYER_PITCH(ch_base, overlay), in sun8i_ui_layer_update_buffer() [all …]
|
/linux-6.14.4/include/kunit/ |
D | of.h | 42 * @overlay_begin: start address of overlay to apply 43 * @overlay_end: end address of overlay to apply 48 * Similar to of_overlay_fdt_apply(), except the overlay is managed by the test 75 * @overlay_name: name of overlay to apply 77 * This macro is used to apply a device tree overlay built with the 79 * kernel image or KUnit test module. The overlay is automatically removed when 82 * Unit tests that need device tree nodes should compile an overlay file with 84 * load the overlay during their test. The @overlay_name matches the filename 85 * of the overlay without the dtbo filename extension. If CONFIG_OF_OVERLAY is
|
/linux-6.14.4/Documentation/arch/arm/omap/ |
D | dss.rst | 46 The DSS driver models OMAP's overlays, overlay managers and displays in a 48 modelling the hardware overlays, omapdss supports virtual overlays and overlay 132 - Overlay defines where the pixels are read from and where they go on the 133 screen. The overlay may be smaller than framebuffer, thus displaying only 134 part of the framebuffer. The position of the overlay may be changed if 135 the overlay is smaller than the display. 136 - Overlay manager combines the overlays in to one image and feeds them to 141 on all of the overlays. Note that in this case the overlay input sizes must be 143 framebuffer can be connected to any overlay. 145 An overlay can be connected to one overlay manager. Also DISPC overlays can be [all …]
|
/linux-6.14.4/scripts/dtc/ |
D | fdtoverlay.c | 26 " fdtoverlay <options> [<overlay.dtbo> [<overlay.dtbo>]]"; 43 static void *apply_one(char *base, const char *overlay, size_t *buf_len, in apply_one() argument 52 * both the base blob and the overlay in apply_one() 54 tmpo = xmalloc(fdt_totalsize(overlay)); in apply_one() 66 memcpy(tmpo, overlay, fdt_totalsize(overlay)); in apply_one() 116 /* read and keep track of the overlay blobs */ in do_fdtoverlay() 193 usage("missing overlay file(s)"); in main() 199 printf("overlay[%d] = %s\n", i, argv[i]); in main()
|