mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-25 00:52:45 -04:00
drm/i915: constify the dpll clock vtable
Most the dpll vtable into read-only memory. Reviewed-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/0414a27317de3f335a8453a29486b746aa6862e7.1632869550.git.jani.nikula@intel.com
This commit is contained in:
@@ -1365,25 +1365,57 @@ static int i8xx_crtc_compute_clock(struct intel_crtc_state *crtc_state)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct intel_dpll_funcs hsw_dpll_funcs = {
|
||||
.crtc_compute_clock = hsw_crtc_compute_clock,
|
||||
};
|
||||
|
||||
static const struct intel_dpll_funcs ilk_dpll_funcs = {
|
||||
.crtc_compute_clock = ilk_crtc_compute_clock,
|
||||
};
|
||||
|
||||
static const struct intel_dpll_funcs chv_dpll_funcs = {
|
||||
.crtc_compute_clock = chv_crtc_compute_clock,
|
||||
};
|
||||
|
||||
static const struct intel_dpll_funcs vlv_dpll_funcs = {
|
||||
.crtc_compute_clock = vlv_crtc_compute_clock,
|
||||
};
|
||||
|
||||
static const struct intel_dpll_funcs g4x_dpll_funcs = {
|
||||
.crtc_compute_clock = g4x_crtc_compute_clock,
|
||||
};
|
||||
|
||||
static const struct intel_dpll_funcs pnv_dpll_funcs = {
|
||||
.crtc_compute_clock = pnv_crtc_compute_clock,
|
||||
};
|
||||
|
||||
static const struct intel_dpll_funcs i9xx_dpll_funcs = {
|
||||
.crtc_compute_clock = i9xx_crtc_compute_clock,
|
||||
};
|
||||
|
||||
static const struct intel_dpll_funcs i8xx_dpll_funcs = {
|
||||
.crtc_compute_clock = i8xx_crtc_compute_clock,
|
||||
};
|
||||
|
||||
void
|
||||
intel_dpll_init_clock_hook(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (DISPLAY_VER(dev_priv) >= 9 || HAS_DDI(dev_priv))
|
||||
dev_priv->dpll_funcs.crtc_compute_clock = hsw_crtc_compute_clock;
|
||||
dev_priv->dpll_funcs = &hsw_dpll_funcs;
|
||||
else if (HAS_PCH_SPLIT(dev_priv))
|
||||
dev_priv->dpll_funcs.crtc_compute_clock = ilk_crtc_compute_clock;
|
||||
dev_priv->dpll_funcs = &ilk_dpll_funcs;
|
||||
else if (IS_CHERRYVIEW(dev_priv))
|
||||
dev_priv->dpll_funcs.crtc_compute_clock = chv_crtc_compute_clock;
|
||||
dev_priv->dpll_funcs = &chv_dpll_funcs;
|
||||
else if (IS_VALLEYVIEW(dev_priv))
|
||||
dev_priv->dpll_funcs.crtc_compute_clock = vlv_crtc_compute_clock;
|
||||
dev_priv->dpll_funcs = &vlv_dpll_funcs;
|
||||
else if (IS_G4X(dev_priv))
|
||||
dev_priv->dpll_funcs.crtc_compute_clock = g4x_crtc_compute_clock;
|
||||
dev_priv->dpll_funcs = &g4x_dpll_funcs;
|
||||
else if (IS_PINEVIEW(dev_priv))
|
||||
dev_priv->dpll_funcs.crtc_compute_clock = pnv_crtc_compute_clock;
|
||||
dev_priv->dpll_funcs = &pnv_dpll_funcs;
|
||||
else if (DISPLAY_VER(dev_priv) != 2)
|
||||
dev_priv->dpll_funcs.crtc_compute_clock = i9xx_crtc_compute_clock;
|
||||
dev_priv->dpll_funcs = &i9xx_dpll_funcs;
|
||||
else
|
||||
dev_priv->dpll_funcs.crtc_compute_clock = i8xx_crtc_compute_clock;
|
||||
dev_priv->dpll_funcs = &i8xx_dpll_funcs;
|
||||
}
|
||||
|
||||
static bool i9xx_has_pps(struct drm_i915_private *dev_priv)
|
||||
|
||||
Reference in New Issue
Block a user