Hi HyunWoong, Thanks for catching those YUV order errors. On 12/13/2010 02:50 AM, Hyunwoong Kim wrote: > Some color formats are mismatched in s5p-fimc driver. > CICICTRL[1:0], order422_out, should be set 2b'00 not 2b'11 to use V4L2_PIX_FMT_YUYV. s/CICICTRL[1:0]/CIOCTRL[1:0] > Because in V4L2 standard V4L2_PIX_FMT_YUYV means "start + 0: Y'00 Cb00 Y'01 Cr00 Y'02 Cb01 Y'03 Cr01". > According to datasheet 2b'00 is right value for V4L2_PIX_FMT_YUYV. > > ================================================================ > bit | MSB LSB > ================================================================ > 00 | Cr1 Y3 Cb1 Y2 Cr0 Y1 Cb0 Y0 > ================================================================ > 01 | Cb1 Y3 Cr1 Y2 Cb0 Y1 Cr0 Y0 > ================================================================ > 10 | Y3 Cr1 Y2 Cb1 Y1 Cr0 Y0 Cb0 > ================================================================ > 11 | Y3 Cb1 Y2 Cr1 Y1 Cb0 Y0 Cr0 > ================================================================ > > V4L2_PIX_FMT_YVYU, V4L2_PIX_FMT_UYVY, V4L2_PIX_FMT_VYUY are also mismatched with datasheet. > MSCTRL[17:16], order2p_in, is also mismatched in V4L2_PIX_FMT_UYVY, V4L2_PIX_FMT_YVYU. > > Signed-off-by: Hyunwoong Kim <khw0178.kim@xxxxxxxxxxx> > Reviewed-by: Jonghun Han <jonghun.han@xxxxxxxxxxx> > --- > > I wonder why fimc_fmt struct has fourcc and color together as member of structure. > It seems that the meaning of color is the same as fourcc's meaning. struct fimc_fmt::color is a common denominator for v4l2_format and v4l2_mbus_format and it is also meant to simplify hardware configuration for the colour format groups. > > drivers/media/video/s5p-fimc/fimc-core.h | 12 ++++++------ > 1 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/drivers/media/video/s5p-fimc/fimc-core.h b/drivers/media/video/s5p-fimc/fimc-core.h > index a707060..4efc1a1 100644 > --- a/drivers/media/video/s5p-fimc/fimc-core.h > +++ b/drivers/media/video/s5p-fimc/fimc-core.h > @@ -96,15 +96,15 @@ enum fimc_color_fmt { > #define fimc_fmt_is_rgb(x) ((x) & 0x10) > > /* Y/Cb/Cr components order at DMA output for 1 plane YCbCr 4:2:2 formats. */ > -#define S5P_FIMC_OUT_CRYCBY S5P_CIOCTRL_ORDER422_CRYCBY > -#define S5P_FIMC_OUT_CBYCRY S5P_CIOCTRL_ORDER422_YCRYCB > -#define S5P_FIMC_OUT_YCRYCB S5P_CIOCTRL_ORDER422_CBYCRY > -#define S5P_FIMC_OUT_YCBYCR S5P_CIOCTRL_ORDER422_YCBYCR > +#define S5P_FIMC_OUT_CRYCBY S5P_CIOCTRL_ORDER422_YCBYCR > +#define S5P_FIMC_OUT_CBYCRY S5P_CIOCTRL_ORDER422_CBYCRY > +#define S5P_FIMC_OUT_YCRYCB S5P_CIOCTRL_ORDER422_YCRYCB > +#define S5P_FIMC_OUT_YCBYCR S5P_CIOCTRL_ORDER422_CRYCBY > > /* Input Y/Cb/Cr components order for 1 plane YCbCr 4:2:2 color formats. */ > #define S5P_FIMC_IN_CRYCBY S5P_MSCTRL_ORDER422_CRYCBY > -#define S5P_FIMC_IN_CBYCRY S5P_MSCTRL_ORDER422_YCRYCB > -#define S5P_FIMC_IN_YCRYCB S5P_MSCTRL_ORDER422_CBYCRY > +#define S5P_FIMC_IN_CBYCRY S5P_MSCTRL_ORDER422_CBYCRY > +#define S5P_FIMC_IN_YCRYCB S5P_MSCTRL_ORDER422_YCRYCB > #define S5P_FIMC_IN_YCBYCR S5P_MSCTRL_ORDER422_YCBYCR > > /* Cb/Cr chrominance components order for 2 plane Y/CbCr 4:2:2 formats. */ Could you instead remove all S5P_FIMC_IN_*, S5P_FIMC_OUT_* definitions from fimc-core.h and make corrections directly in function fimc_set_yuv_order? S5P_FIMC_IN_*/S5P_FIMC_OUT_* are now used only in fimc_set_yuv_order. Thanks, -- Sylwester Nawrocki Samsung Poland R&D Center -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html