mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-04 13:24:22 -04:00
[media] s5p-csis: Add support for raw Bayer pixel formats
The MIPI CSIS device supports MIPI CSI-2 RAW8, RAW10, RAW12 data types. Add related media bus pixel format definitions. This doesn't cover all possible supported media bus pixel formats. Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
405f230c44
commit
e26991b49a
@@ -220,6 +220,18 @@ static const struct csis_pix_format s5pcsis_formats[] = {
|
||||
.code = V4L2_MBUS_FMT_S5C_UYVY_JPEG_1X8,
|
||||
.fmt_reg = S5PCSIS_CFG_FMT_USER(1),
|
||||
.data_alignment = 32,
|
||||
}, {
|
||||
.code = V4L2_MBUS_FMT_SGRBG8_1X8,
|
||||
.fmt_reg = S5PCSIS_CFG_FMT_RAW8,
|
||||
.data_alignment = 24,
|
||||
}, {
|
||||
.code = V4L2_MBUS_FMT_SGRBG10_1X10,
|
||||
.fmt_reg = S5PCSIS_CFG_FMT_RAW10,
|
||||
.data_alignment = 24,
|
||||
}, {
|
||||
.code = V4L2_MBUS_FMT_SGRBG12_1X12,
|
||||
.fmt_reg = S5PCSIS_CFG_FMT_RAW12,
|
||||
.data_alignment = 24,
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user