Skip to content

Commit 2686ebf

Browse files
Navare, Manasi Drodrigovivi
authored andcommitted
drm/i915: Add support for Kabylake to function obtaining shared PLL
This adds support for KBL in the new function added in commit ID: commit <f169660ed4e57a03e6f6ed07fe192dbcb7687a0d> that returns a shared pll in case of DDI platforms. Signed-off-by: Manasi Navare <manasi.d.navare@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1473728663-14355-1-git-send-email-manasi.d.navare@intel.com
1 parent 82daaba commit 2686ebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/intel_ddi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2424,7 +2424,7 @@ intel_ddi_get_link_dpll(struct intel_dp *intel_dp, int clock)
24242424
pll->config = tmp_pll_config;
24252425
return NULL;
24262426
}
2427-
} else if (IS_SKYLAKE(dev_priv)) {
2427+
} else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
24282428
pll = skl_find_link_pll(dev_priv, clock);
24292429
} else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
24302430
pll = hsw_ddi_dp_get_dpll(encoder, clock);

0 commit comments

Comments
 (0)