mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 14:11:20 +00:00
media: imx: imx7-mipi-csis: Expose correct YUV formats
The imx7-mipi-csis driver claims to support MEDIA_BUS_FMT_VYUY8_2X8 and MEDIA_BUS_FMT_YUYV8_2X8, but this is not correct. When receiving YUV 4:2:2 data on the CSI-2 bus, the output format is MEDIA_BUS_FMT_UYVY8_2X8. Fix this. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Rui Miguel Silva <rmfrfs@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
d9a7dd2f68
commit
0aa09e57b0
1 changed files with 1 additions and 5 deletions
|
@ -267,11 +267,7 @@ struct csis_pix_format {
|
||||||
static const struct csis_pix_format mipi_csis_formats[] = {
|
static const struct csis_pix_format mipi_csis_formats[] = {
|
||||||
/* YUV formats. */
|
/* YUV formats. */
|
||||||
{
|
{
|
||||||
.code = MEDIA_BUS_FMT_VYUY8_2X8,
|
.code = MEDIA_BUS_FMT_UYVY8_2X8,
|
||||||
.fmt_reg = MIPI_CSIS_ISPCFG_FMT_YCBCR422_8BIT,
|
|
||||||
.data_alignment = 16,
|
|
||||||
}, {
|
|
||||||
.code = MEDIA_BUS_FMT_YUYV8_2X8,
|
|
||||||
.fmt_reg = MIPI_CSIS_ISPCFG_FMT_YCBCR422_8BIT,
|
.fmt_reg = MIPI_CSIS_ISPCFG_FMT_YCBCR422_8BIT,
|
||||||
.data_alignment = 16,
|
.data_alignment = 16,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue