Home
last modified time | relevance | path

Searched refs:dst_info (Results 1 – 20 of 20) sorted by relevance

/OK3568_Linux_fs/buildroot/package/pixman/
H A D0006-HACK-pixman-Support-using-dma-fd-for-RGA-accel.patch32 dst_info.mmuFlag = 1;
33 - dst_info.virAddr = dest->bits.bits;
34 + dst_info.fd = pixman_image_get_dma_fd(dest);
35 + if (dst_info.fd < 0)
36 + dst_info.virAddr = dest->bits.bits;
H A D0005-pixman_image_composite32-Support-rockchip-RGA-2D-acc.patch196 + rga_info_t dst_info = { 0 };
241 + dst_info.mmuFlag = 1;
242 + dst_info.virAddr = dest->bits.bits;
311 + rga_set_rect (&dst_info.rect, dx, dy, dw, dh,
315 + if (c_RkRgaBlit (&src_info, &dst_info, NULL) < 0)
/OK3568_Linux_fs/external/gstreamer-rockchip/gst/rockchipmpp/
H A Dgstmpp.c226 gst_mpp_rga_do_convert (rga_info_t * src_info, rga_info_t * dst_info) in gst_mpp_rga_do_convert() argument
243 if (c_RkRgaBlit (src_info, dst_info, NULL) < 0) { in gst_mpp_rga_do_convert()
277 rga_info_t dst_info = { 0, }; in gst_mpp_rga_convert() local
282 if (!gst_mpp_rga_info_from_video_info (&dst_info, dst_vinfo)) in gst_mpp_rga_convert()
302 dst_info.fd = gst_dmabuf_memory_get_fd (out_mem); in gst_mpp_rga_convert()
308 ret = gst_mpp_rga_do_convert (&src_info, &dst_info); in gst_mpp_rga_convert()
319 rga_info_t dst_info = { 0, }; in gst_mpp_rga_convert_from_mpp_frame() local
324 if (!gst_mpp_rga_info_from_video_info (&dst_info, dst_vinfo)) in gst_mpp_rga_convert_from_mpp_frame()
327 dst_info.fd = gst_dmabuf_memory_get_fd (out_mem); in gst_mpp_rga_convert_from_mpp_frame()
333 return gst_mpp_rga_do_convert (&src_info, &dst_info); in gst_mpp_rga_convert_from_mpp_frame()
H A Dgstmppenc.c782 GstVideoInfo *dst_info = &self->info; in gst_mpp_enc_convert() local
815 GST_VIDEO_INFO_FORMAT (dst_info), in gst_mpp_enc_convert()
816 GST_VIDEO_INFO_WIDTH (dst_info), GST_VIDEO_INFO_HEIGHT (dst_info), in gst_mpp_enc_convert()
817 GST_VIDEO_INFO_N_PLANES (dst_info), dst_info->offset, dst_info->stride); in gst_mpp_enc_convert()
819 if (self->rotation || !gst_mpp_enc_video_info_matched (&src_info, dst_info)) in gst_mpp_enc_convert()
841 GST_VIDEO_INFO_SIZE (dst_info), NULL); in gst_mpp_enc_convert()
849 gst_mpp_rga_convert (inbuf, &src_info, out_mem, dst_info, in gst_mpp_enc_convert()
857 GST_VIDEO_INFO_FORMAT (&src_info) != GST_VIDEO_INFO_FORMAT (dst_info)) in gst_mpp_enc_convert()
861 if (gst_video_frame_map (&dst_frame, dst_info, outbuf, GST_MAP_WRITE)) { in gst_mpp_enc_convert()
/OK3568_Linux_fs/buildroot/package/qt5/qt5base/
H A D0018-HACK-qpaintengine_raster-Support-rga-in-fillRect-wit.patch208 + rga_info_t dst_info;
209 + memset(&dst_info, 0, sizeof(dst_info));
210 + dst_info.fd = -1;
211 + dst_info.virAddr = (void *)dst;
212 + dst_info.mmuFlag = 1;
213 + rga_set_rect(&dst_info.rect, dx, dy, width, height,
218 + return c_RkRgaBlit(&src_info, &dst_info, NULL) >= 0;
/OK3568_Linux_fs/kernel/drivers/dma/
H A Dste_dma40_ll.c53 l3 |= cfg->dst_info.psize << D40_MEM_LCSP3_DCFG_PSIZE_POS; in d40_log_cfg()
54 l3 |= d40_width_to_bits(cfg->dst_info.data_width) in d40_log_cfg()
89 if (cfg->dst_info.flow_ctrl == STEDMA40_NO_FLOW_CTRL) in d40_phy_cfg()
106 if (cfg->dst_info.psize != STEDMA40_PSIZE_PHY_1) { in d40_phy_cfg()
108 dst |= cfg->dst_info.psize << D40_SREG_CFG_PSIZE_POS; in d40_phy_cfg()
114 dst |= d40_width_to_bits(cfg->dst_info.data_width) in d40_phy_cfg()
125 if (cfg->dst_info.big_endian) in d40_phy_cfg()
H A Dste_dma40.c90 .dst_info.data_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
91 .dst_info.psize = STEDMA40_PSIZE_PHY_1,
92 .dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
104 .dst_info.data_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
105 .dst_info.psize = STEDMA40_PSIZE_LOG_1,
106 .dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
1397 return num_elt * d40c->dma_cfg.dst_info.data_width; in d40_residue()
1731 d40_psize_2_burst_size(is_log, conf->dst_info.psize) * in d40_validate_conf()
1732 conf->dst_info.data_width) { in d40_validate_conf()
2117 struct stedma40_half_channel_info *dst_info = &cfg->dst_info; in d40_prep_sg_log() local
[all …]
/OK3568_Linux_fs/kernel/drivers/media/platform/rockchip/rga/
H A Drga-hw.c168 union rga_dst_info dst_info; in rga_cmd_set_trans_info() local
190 dst_info.val = dest[(RGA_DST_INFO - RGA_MODE_BASE_REG) >> 2]; in rga_cmd_set_trans_info()
200 dst_info.data.format = ctx->out.fmt->hw_format; in rga_cmd_set_trans_info()
201 dst_info.data.swap = ctx->out.fmt->color_swap; in rga_cmd_set_trans_info()
224 dst_info.data.csc_mode = RGA_SRC_CSC_MODE_BT709_R0; in rga_cmd_set_trans_info()
227 dst_info.data.csc_mode = RGA_DST_CSC_MODE_BT601_R0; in rga_cmd_set_trans_info()
352 dest[(RGA_DST_INFO - RGA_MODE_BASE_REG) >> 2] = dst_info.val; in rga_cmd_set_trans_info()
/OK3568_Linux_fs/external/xserver/hw/xfree86/drivers/modesetting/
H A Dexa.c275 rga_info_t dst_info = {0}; in ms_exa_solid() local
283 if (!rga_prepare_info(pPixmap, &dst_info, x1, y1, x2 - x1, y2 - y1)) in ms_exa_solid()
286 dst_info.color = ctx->prepare_args.solid.fg; in ms_exa_solid()
293 dst_info.color |= 0xFF << 24; in ms_exa_solid()
295 dst_info.rect.format = RK_FORMAT_RGBA_8888; in ms_exa_solid()
297 if (c_RkRgaColorFill(&dst_info) < 0) in ms_exa_solid()
391 rga_info_t dst_info = {0}; in ms_exa_copy() local
401 if (!rga_prepare_info(pDstPixmap, &dst_info, dstX, dstY, width, height)) in ms_exa_copy()
419 if (c_RkRgaBlit(&src_info, &dst_info, NULL) < 0) in ms_exa_copy()
631 rga_info_t dst_info = {0}; in ms_exa_composite() local
[all …]
/OK3568_Linux_fs/kernel/sound/soc/ux500/
H A Dux500_pcm.c75 dma_cfg->dst_info.data_width = per_data_width; in ux500_pcm_request_chan()
78 dma_cfg->dst_info.data_width = mem_data_width; in ux500_pcm_request_chan()
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20/
H A D0008-video-converter-Support-rockchip-RGA-2D-accel.patch169 + rga_info_t dst_info = { 0 };
195 + if (!get_rga_info (dest, &dst_info, convert->out_x, convert->out_y,
201 + if (c_RkRgaBlit (&src_info, &dst_info, NULL) < 0) {
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22/
H A D0008-video-converter-Support-rockchip-RGA-2D-accel.patch169 + rga_info_t dst_info = { 0 };
195 + if (!get_rga_info (dest, &dst_info, convert->out_x, convert->out_y,
201 + if (c_RkRgaBlit (&src_info, &dst_info, NULL) < 0) {
/OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-base/
H A D0008-video-converter-Support-rockchip-RGA-2D-accel.patch169 + rga_info_t dst_info = { 0 };
195 + if (!get_rga_info (dest, &dst_info, convert->out_x, convert->out_y,
201 + if (c_RkRgaBlit (&src_info, &dst_info, NULL) < 0) {
/OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-good/
H A D0005-video-flip-Support-rockchip-RGA-2D-accel.patch179 + rga_info_t dst_info = { 0 };
204 + if (!get_rga_info (out_frame, &dst_info, 0, 0, dw, dh)) {
230 + if (c_RkRgaBlit (&src_info, &dst_info, NULL) < 0) {
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22/
H A D0005-video-flip-Support-rockchip-RGA-2D-accel.patch179 + rga_info_t dst_info = { 0 };
204 + if (!get_rga_info (out_frame, &dst_info, 0, 0, dw, dh)) {
230 + if (c_RkRgaBlit (&src_info, &dst_info, NULL) < 0) {
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.20/
H A D0005-video-flip-Support-rockchip-RGA-2D-accel.patch179 + rga_info_t dst_info = { 0 };
204 + if (!get_rga_info (out_frame, &dst_info, 0, 0, dw, dh)) {
230 + if (c_RkRgaBlit (&src_info, &dst_info, NULL) < 0) {
/OK3568_Linux_fs/kernel/include/linux/platform_data/
H A Ddma-ste-dma40.h115 struct stedma40_half_channel_info dst_info; member
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/
H A D0015-backend-drm-Support-mirror-mode.patch189 + rga_info_t dst_info = {0};
242 + dst_info.fd = dst_fd;
243 + dst_info.mmuFlag = 1;
245 + rga_set_rect(&dst_info.rect, 0, 0, dst->width, dst->height,
249 + ret = c_RkRgaBlit(&src_info, &dst_info, NULL);
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/
H A D0017-backend-drm-Support-mirror-mode.patch189 + rga_info_t dst_info = {0};
242 + dst_info.fd = dst_fd;
243 + dst_info.mmuFlag = 1;
245 + rga_set_rect(&dst_info.rect, 0, 0, dst->width, dst->height,
249 + ret = c_RkRgaBlit(&src_info, &dst_info, NULL);
/OK3568_Linux_fs/buildroot/package/weston/
H A D0017-backend-drm-Support-mirror-mode.patch191 + rga_info_t dst_info = {0};
244 + dst_info.fd = dst_fd;
245 + dst_info.mmuFlag = 1;
247 + rga_set_rect(&dst_info.rect, 0, 0, dst->width, dst->height,
251 + ret = c_RkRgaBlit(&src_info, &dst_info, NULL);