Skip to content

Commit

Permalink
Fix broken HDMI output on rk3328
Browse files Browse the repository at this point in the history
Restore 'less than or equal' match of clocks that was lost in patch transition from 6.3 to 6.4:
ttps://github.com/armbian/build/blob/6d981baba68699b0c6ada476704556e11dd661bc/patch/kernel/archive/rockchip64-6.3/rk356x-vop2-support.patch#L333
https://github.com/armbian/build/blob/6d981baba68699b0c6ada476704556e11dd661bc/patch/kernel/archive/rockchip64-6.4/rk356x-vop2-support.patch#L333
  • Loading branch information
alex3d authored and paolosabatino committed Sep 22, 2023
1 parent 3dd634a commit b7af4a6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions patch/kernel/archive/rockchip64-6.5/rk356x-vop2-support.patch
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,15 @@ index 112699949db9..4f9fa4fd2629 100644
{ ~0UL, 0x0000, 0x0000, 0x0000}
};

@@ -257,7 +246,7 @@
struct rockchip_hdmi *hdmi = data;
const struct dw_hdmi_mpll_config *mpll_cfg = rockchip_mpll_cfg;
int pclk = mode->clock * 1000;
- bool exact_match = hdmi->plat_data->phy_force_vendor;
+ bool exact_match = false;
int i;

if (hdmi->ref_clk) {
--
Armbian

0 comments on commit b7af4a6

Please sign in to comment.