Message ID | 20191021210532.1590-1-aford173@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ARM: dts: logicpd-torpedo-37xx-devkit: Increase camera pixel clock | expand |
* Adam Ford <aford173@gmail.com> [191021 14:06]: > The default settings used on the baseboard are good for the > OMAP3530 and are compatible with the DM3730. However, the > DM3730 has a faster L3 clock which means the camera pixel clock > can also be pushed faster as well. > > This patch increase the Pixel clock to 90MHz which is the > maximum the current ISP driver permits for an L3 clock > of 200MHz. Thanks applying into omap-for-v5.5/dt. Tony
diff --git a/arch/arm/boot/dts/logicpd-torpedo-37xx-devkit.dts b/arch/arm/boot/dts/logicpd-torpedo-37xx-devkit.dts index 18c27e85051f..fc33c76498b3 100644 --- a/arch/arm/boot/dts/logicpd-torpedo-37xx-devkit.dts +++ b/arch/arm/boot/dts/logicpd-torpedo-37xx-devkit.dts @@ -50,6 +50,11 @@ }; }; +/* The DM3730 has a faster L3 than OMAP35, so increase pixel clock */ +&mt9p031_out { + pixel-clock-frequency = <90000000>; +}; + &omap3_pmx_core { mmc3_pins: pinmux_mm3_pins { pinctrl-single,pins = <
The default settings used on the baseboard are good for the OMAP3530 and are compatible with the DM3730. However, the DM3730 has a faster L3 clock which means the camera pixel clock can also be pushed faster as well. This patch increase the Pixel clock to 90MHz which is the maximum the current ISP driver permits for an L3 clock of 200MHz. Signed-off-by: Adam Ford <aford173@gmail.com>