aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>2016-09-15 15:08:09 -0400
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-09-19 14:02:22 -0400
commitc9f49607f133615ac5efe7e10722c2952659c0ec (patch)
treec945f5abc8a0f53ce9e42848406da11dabdada8d
parent225c2926d85bd2f9aebd5a122fa14a44b74d2594 (diff)
[media] v4l: vsp1: Disable VYUY on Gen3
The VYUY format isn't supported on Gen3 hardware, disable it. Gen2 hardware supports VYUY in practice even though the documentation doesn't advertise it, so keep it for Gen2 devices. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r--drivers/media/platform/vsp1/vsp1_drm.c2
-rw-r--r--drivers/media/platform/vsp1/vsp1_pipe.c8
-rw-r--r--drivers/media/platform/vsp1/vsp1_pipe.h3
-rw-r--r--drivers/media/platform/vsp1/vsp1_video.c4
4 files changed, 12 insertions, 5 deletions
diff --git a/drivers/media/platform/vsp1/vsp1_drm.c b/drivers/media/platform/vsp1/vsp1_drm.c
index 832286975e71..54795b5e5a8a 100644
--- a/drivers/media/platform/vsp1/vsp1_drm.c
+++ b/drivers/media/platform/vsp1/vsp1_drm.c
@@ -286,7 +286,7 @@ int vsp1_du_atomic_update(struct device *dev, unsigned int rpf_index,
286 /* Store the format, stride, memory buffer address, crop and compose 286 /* Store the format, stride, memory buffer address, crop and compose
287 * rectangles and Z-order position and for the input. 287 * rectangles and Z-order position and for the input.
288 */ 288 */
289 fmtinfo = vsp1_get_format_info(cfg->pixelformat); 289 fmtinfo = vsp1_get_format_info(vsp1, cfg->pixelformat);
290 if (!fmtinfo) { 290 if (!fmtinfo) {
291 dev_dbg(vsp1->dev, "Unsupport pixel format %08x for RPF\n", 291 dev_dbg(vsp1->dev, "Unsupport pixel format %08x for RPF\n",
292 cfg->pixelformat); 292 cfg->pixelformat);
diff --git a/drivers/media/platform/vsp1/vsp1_pipe.c b/drivers/media/platform/vsp1/vsp1_pipe.c
index 474de82165d8..78b6184f91ce 100644
--- a/drivers/media/platform/vsp1/vsp1_pipe.c
+++ b/drivers/media/platform/vsp1/vsp1_pipe.c
@@ -138,15 +138,21 @@ static const struct vsp1_format_info vsp1_video_formats[] = {
138 138
139/* 139/*
140 * vsp1_get_format_info - Retrieve format information for a 4CC 140 * vsp1_get_format_info - Retrieve format information for a 4CC
141 * @vsp1: the VSP1 device
141 * @fourcc: the format 4CC 142 * @fourcc: the format 4CC
142 * 143 *
143 * Return a pointer to the format information structure corresponding to the 144 * Return a pointer to the format information structure corresponding to the
144 * given V4L2 format 4CC, or NULL if no corresponding format can be found. 145 * given V4L2 format 4CC, or NULL if no corresponding format can be found.
145 */ 146 */
146const struct vsp1_format_info *vsp1_get_format_info(u32 fourcc) 147const struct vsp1_format_info *vsp1_get_format_info(struct vsp1_device *vsp1,
148 u32 fourcc)
147{ 149{
148 unsigned int i; 150 unsigned int i;
149 151
152 /* Special case, the VYUY format is supported on Gen2 only. */
153 if (vsp1->info->gen != 2 && fourcc == V4L2_PIX_FMT_VYUY)
154 return NULL;
155
150 for (i = 0; i < ARRAY_SIZE(vsp1_video_formats); ++i) { 156 for (i = 0; i < ARRAY_SIZE(vsp1_video_formats); ++i) {
151 const struct vsp1_format_info *info = &vsp1_video_formats[i]; 157 const struct vsp1_format_info *info = &vsp1_video_formats[i];
152 158
diff --git a/drivers/media/platform/vsp1/vsp1_pipe.h b/drivers/media/platform/vsp1/vsp1_pipe.h
index f15b697ad999..ac4ad2655551 100644
--- a/drivers/media/platform/vsp1/vsp1_pipe.h
+++ b/drivers/media/platform/vsp1/vsp1_pipe.h
@@ -130,6 +130,7 @@ void vsp1_pipeline_propagate_alpha(struct vsp1_pipeline *pipe,
130void vsp1_pipelines_suspend(struct vsp1_device *vsp1); 130void vsp1_pipelines_suspend(struct vsp1_device *vsp1);
131void vsp1_pipelines_resume(struct vsp1_device *vsp1); 131void vsp1_pipelines_resume(struct vsp1_device *vsp1);
132 132
133const struct vsp1_format_info *vsp1_get_format_info(u32 fourcc); 133const struct vsp1_format_info *vsp1_get_format_info(struct vsp1_device *vsp1,
134 u32 fourcc);
134 135
135#endif /* __VSP1_PIPE_H__ */ 136#endif /* __VSP1_PIPE_H__ */
diff --git a/drivers/media/platform/vsp1/vsp1_video.c b/drivers/media/platform/vsp1/vsp1_video.c
index 15d08cb50bd1..e773d3d30df2 100644
--- a/drivers/media/platform/vsp1/vsp1_video.c
+++ b/drivers/media/platform/vsp1/vsp1_video.c
@@ -117,9 +117,9 @@ static int __vsp1_video_try_format(struct vsp1_video *video,
117 /* Retrieve format information and select the default format if the 117 /* Retrieve format information and select the default format if the
118 * requested format isn't supported. 118 * requested format isn't supported.
119 */ 119 */
120 info = vsp1_get_format_info(pix->pixelformat); 120 info = vsp1_get_format_info(video->vsp1, pix->pixelformat);
121 if (info == NULL) 121 if (info == NULL)
122 info = vsp1_get_format_info(VSP1_VIDEO_DEF_FORMAT); 122 info = vsp1_get_format_info(video->vsp1, VSP1_VIDEO_DEF_FORMAT);
123 123
124 pix->pixelformat = info->fourcc; 124 pix->pixelformat = info->fourcc;
125 pix->colorspace = V4L2_COLORSPACE_SRGB; 125 pix->colorspace = V4L2_COLORSPACE_SRGB;