Skip to content

Commit cc4a6c5

Browse files
André Apitzschgregkh
authored andcommitted
media: i2c: imx214: Fix link frequency validation
[ Upstream commit acc2945 ] The driver defines IMX214_DEFAULT_LINK_FREQ 480000000, and then IMX214_DEFAULT_PIXEL_RATE ((IMX214_DEFAULT_LINK_FREQ * 8LL) / 10), which works out as 384MPix/s. (The 8 is 4 lanes and DDR.) Parsing the PLL registers with the defined 24MHz input. We're in single PLL mode, so MIPI frequency is directly linked to pixel rate. VTCK ends up being 1200MHz, and VTPXCK and OPPXCK both are 120MHz. Section 5.3 "Frame rate calculation formula" says "Pixel rate [pixels/s] = VTPXCK [MHz] * 4", so 120 * 4 = 480MPix/s, which basically agrees with my number above. 3.1.4. MIPI global timing setting says "Output bitrate = OPPXCK * reg 0x113[7:0]", so 120MHz * 10, or 1200Mbit/s. That would be a link frequency of 600MHz due to DDR. That also matches to 480MPix/s * 10bpp / 4 lanes / 2 for DDR. Keep the previous link frequency for backward compatibility. Acked-by: Ricardo Ribalda <ribalda@chromium.org> Signed-off-by: André Apitzsch <git@apitzsch.eu> Fixes: 4361905 ("media: imx214: Add imx214 camera sensor driver") Cc: stable@vger.kernel.org Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> [ changed dev_err() to dev_err_probe() for the final error case ] Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent f508fc3 commit cc4a6c5

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

drivers/media/i2c/imx214.c

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
#include <media/v4l2-subdev.h>
2121

2222
#define IMX214_DEFAULT_CLK_FREQ 24000000
23-
#define IMX214_DEFAULT_LINK_FREQ 480000000
23+
#define IMX214_DEFAULT_LINK_FREQ 600000000
24+
/* Keep wrong link frequency for backward compatibility */
25+
#define IMX214_DEFAULT_LINK_FREQ_LEGACY 480000000
2426
#define IMX214_DEFAULT_PIXEL_RATE ((IMX214_DEFAULT_LINK_FREQ * 8LL) / 10)
2527
#define IMX214_FPS 30
2628
#define IMX214_MBUS_CODE MEDIA_BUS_FMT_SRGGB10_1X10
@@ -892,17 +894,26 @@ static int imx214_parse_fwnode(struct device *dev)
892894
goto done;
893895
}
894896

895-
for (i = 0; i < bus_cfg.nr_of_link_frequencies; i++)
897+
if (bus_cfg.nr_of_link_frequencies != 1)
898+
dev_warn(dev, "Only one link-frequency supported, please review your DT. Continuing anyway\n");
899+
900+
for (i = 0; i < bus_cfg.nr_of_link_frequencies; i++) {
896901
if (bus_cfg.link_frequencies[i] == IMX214_DEFAULT_LINK_FREQ)
897902
break;
898-
899-
if (i == bus_cfg.nr_of_link_frequencies) {
900-
dev_err(dev, "link-frequencies %d not supported, Please review your DT\n",
901-
IMX214_DEFAULT_LINK_FREQ);
902-
ret = -EINVAL;
903-
goto done;
903+
if (bus_cfg.link_frequencies[i] ==
904+
IMX214_DEFAULT_LINK_FREQ_LEGACY) {
905+
dev_warn(dev,
906+
"link-frequencies %d not supported, please review your DT. Continuing anyway\n",
907+
IMX214_DEFAULT_LINK_FREQ);
908+
break;
909+
}
904910
}
905911

912+
if (i == bus_cfg.nr_of_link_frequencies)
913+
ret = dev_err_probe(dev, -EINVAL,
914+
"link-frequencies %d not supported, please review your DT\n",
915+
IMX214_DEFAULT_LINK_FREQ);
916+
906917
done:
907918
v4l2_fwnode_endpoint_free(&bus_cfg);
908919
fwnode_handle_put(endpoint);

0 commit comments

Comments
 (0)