提交 bd5acddc 编写于 作者: D Dave Stevenson 提交者: Zheng Zengkai

media: i2c: ov5647: Use member names in mode tables

raspberrypi inclusion
category: feature
bugzilla: 50432

--------------------------------

To make adding new members to the mode structures easier, use
the member names in the initialisers.
Signed-off-by: NDave Stevenson <dave.stevenson@raspberrypi.com>
Signed-off-by: NFang Yafen <yafen@iscas.ac.cn>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 a32f790c
...@@ -592,7 +592,7 @@ static struct ov5647_mode supported_modes_8bit[] = { ...@@ -592,7 +592,7 @@ static struct ov5647_mode supported_modes_8bit[] = {
* Uncentred crop (top left quarter) from 2x2 binned 1296x972 image. * Uncentred crop (top left quarter) from 2x2 binned 1296x972 image.
*/ */
{ {
{ .format = {
.code = MEDIA_BUS_FMT_SBGGR8_1X8, .code = MEDIA_BUS_FMT_SBGGR8_1X8,
.colorspace = V4L2_COLORSPACE_SRGB, .colorspace = V4L2_COLORSPACE_SRGB,
.field = V4L2_FIELD_NONE, .field = V4L2_FIELD_NONE,
...@@ -608,8 +608,8 @@ static struct ov5647_mode supported_modes_8bit[] = { ...@@ -608,8 +608,8 @@ static struct ov5647_mode supported_modes_8bit[] = {
.pixel_rate = 77291670, .pixel_rate = 77291670,
.hts = 1896, .hts = 1896,
.vts_def = 0x3d8, .vts_def = 0x3d8,
ov5647_640x480_8bit, .reg_list = ov5647_640x480_8bit,
ARRAY_SIZE(ov5647_640x480_8bit) .num_regs = ARRAY_SIZE(ov5647_640x480_8bit)
}, },
}; };
...@@ -618,7 +618,7 @@ static struct ov5647_mode supported_modes_10bit[] = { ...@@ -618,7 +618,7 @@ static struct ov5647_mode supported_modes_10bit[] = {
* MODE 0: 2592x1944 full resolution full FOV 10-bit mode. * MODE 0: 2592x1944 full resolution full FOV 10-bit mode.
*/ */
{ {
{ .format = {
.code = MEDIA_BUS_FMT_SBGGR10_1X10, .code = MEDIA_BUS_FMT_SBGGR10_1X10,
.colorspace = V4L2_COLORSPACE_SRGB, .colorspace = V4L2_COLORSPACE_SRGB,
.field = V4L2_FIELD_NONE, .field = V4L2_FIELD_NONE,
...@@ -634,15 +634,15 @@ static struct ov5647_mode supported_modes_10bit[] = { ...@@ -634,15 +634,15 @@ static struct ov5647_mode supported_modes_10bit[] = {
.pixel_rate = 87500000, .pixel_rate = 87500000,
.hts = 2844, .hts = 2844,
.vts_def = 0x7b0, .vts_def = 0x7b0,
ov5647_2592x1944_10bit, .reg_list = ov5647_2592x1944_10bit,
ARRAY_SIZE(ov5647_2592x1944_10bit) .num_regs = ARRAY_SIZE(ov5647_2592x1944_10bit)
}, },
/* /*
* MODE 1: 1080p30 10-bit mode. * MODE 1: 1080p30 10-bit mode.
* Full resolution centre-cropped down to 1080p. * Full resolution centre-cropped down to 1080p.
*/ */
{ {
{ .format = {
.code = MEDIA_BUS_FMT_SBGGR10_1X10, .code = MEDIA_BUS_FMT_SBGGR10_1X10,
.colorspace = V4L2_COLORSPACE_SRGB, .colorspace = V4L2_COLORSPACE_SRGB,
.field = V4L2_FIELD_NONE, .field = V4L2_FIELD_NONE,
...@@ -658,14 +658,14 @@ static struct ov5647_mode supported_modes_10bit[] = { ...@@ -658,14 +658,14 @@ static struct ov5647_mode supported_modes_10bit[] = {
.pixel_rate = 81666700, .pixel_rate = 81666700,
.hts = 2416, .hts = 2416,
.vts_def = 0x450, .vts_def = 0x450,
ov5647_1080p30_10bit, .reg_list = ov5647_1080p30_10bit,
ARRAY_SIZE(ov5647_1080p30_10bit) .num_regs = ARRAY_SIZE(ov5647_1080p30_10bit)
}, },
/* /*
* MODE 2: 2x2 binned full FOV 10-bit mode. * MODE 2: 2x2 binned full FOV 10-bit mode.
*/ */
{ {
{ .format = {
.code = MEDIA_BUS_FMT_SBGGR10_1X10, .code = MEDIA_BUS_FMT_SBGGR10_1X10,
.colorspace = V4L2_COLORSPACE_SRGB, .colorspace = V4L2_COLORSPACE_SRGB,
.field = V4L2_FIELD_NONE, .field = V4L2_FIELD_NONE,
...@@ -681,15 +681,15 @@ static struct ov5647_mode supported_modes_10bit[] = { ...@@ -681,15 +681,15 @@ static struct ov5647_mode supported_modes_10bit[] = {
.pixel_rate = 81666700, .pixel_rate = 81666700,
.hts = 1896, .hts = 1896,
.vts_def = 0x59b, .vts_def = 0x59b,
ov5647_2x2binned_10bit, .reg_list = ov5647_2x2binned_10bit,
ARRAY_SIZE(ov5647_2x2binned_10bit) .num_regs = ARRAY_SIZE(ov5647_2x2binned_10bit)
}, },
/* /*
* MODE 3: 10-bit VGA full FOV mode 60fps. * MODE 3: 10-bit VGA full FOV mode 60fps.
* 2x2 binned and subsampled down to VGA. * 2x2 binned and subsampled down to VGA.
*/ */
{ {
{ .format = {
.code = MEDIA_BUS_FMT_SBGGR10_1X10, .code = MEDIA_BUS_FMT_SBGGR10_1X10,
.colorspace = V4L2_COLORSPACE_SRGB, .colorspace = V4L2_COLORSPACE_SRGB,
.field = V4L2_FIELD_NONE, .field = V4L2_FIELD_NONE,
...@@ -705,8 +705,8 @@ static struct ov5647_mode supported_modes_10bit[] = { ...@@ -705,8 +705,8 @@ static struct ov5647_mode supported_modes_10bit[] = {
.pixel_rate = 55000000, .pixel_rate = 55000000,
.hts = 1852, .hts = 1852,
.vts_def = 0x1f8, .vts_def = 0x1f8,
ov5647_640x480_10bit, .reg_list = ov5647_640x480_10bit,
ARRAY_SIZE(ov5647_640x480_10bit) .num_regs = ARRAY_SIZE(ov5647_640x480_10bit)
}, },
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册