Tool/software:
Hi,
I'm trying to integrate my camera driver to the AM625 board. However there seems to be an issue. In the datasheet it says that Camera Serial interface (CSI-Rx)
Support for 1,2,3 or 4 data lane mode up to
1.5Gbps
However when I try to set link-frequencies as:
```
link-frequencies = /bits/ 64 <1500000000>;
```
The csi-rx driver gives me error as follows:
```
[ 29.567988] cdns-csi2rx 30101000.csi-bridge: link_freq = 1500000000
[ 29.579231] cdns-csi2rx 30101000.csi-bridge: Failed to configure external DPHY: -95
```
I lower the link_freq value till 1200000000, which it seems that this value is the maximum I can set. However, this value simply not suits me as our camera outputs 1920x1280 30fps UYVY data. Is there any way that I can set link frequency as 1.5gbps or is it simply not possible ?
Thanks.