|
@@ -452,6 +452,17 @@ ibx_get_dpll(struct intel_crtc *crtc, struct intel_crtc_state *crtc_state,
|
|
|
return pll;
|
|
|
}
|
|
|
|
|
|
+static void ibx_dump_hw_state(struct drm_i915_private *dev_priv,
|
|
|
+ struct intel_dpll_hw_state *hw_state)
|
|
|
+{
|
|
|
+ DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
|
|
|
+ "fp0: 0x%x, fp1: 0x%x\n",
|
|
|
+ hw_state->dpll,
|
|
|
+ hw_state->dpll_md,
|
|
|
+ hw_state->fp0,
|
|
|
+ hw_state->fp1);
|
|
|
+}
|
|
|
+
|
|
|
static const struct intel_shared_dpll_funcs ibx_pch_dpll_funcs = {
|
|
|
.prepare = ibx_pch_dpll_prepare,
|
|
|
.enable = ibx_pch_dpll_enable,
|
|
@@ -838,6 +849,13 @@ hsw_get_dpll(struct intel_crtc *crtc, struct intel_crtc_state *crtc_state,
|
|
|
return pll;
|
|
|
}
|
|
|
|
|
|
+static void hsw_dump_hw_state(struct drm_i915_private *dev_priv,
|
|
|
+ struct intel_dpll_hw_state *hw_state)
|
|
|
+{
|
|
|
+ DRM_DEBUG_KMS("dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
|
|
|
+ hw_state->wrpll, hw_state->spll);
|
|
|
+}
|
|
|
+
|
|
|
static const struct intel_shared_dpll_funcs hsw_ddi_wrpll_funcs = {
|
|
|
.enable = hsw_ddi_wrpll_enable,
|
|
|
.disable = hsw_ddi_wrpll_disable,
|
|
@@ -1393,6 +1411,16 @@ skl_get_dpll(struct intel_crtc *crtc, struct intel_crtc_state *crtc_state,
|
|
|
return pll;
|
|
|
}
|
|
|
|
|
|
+static void skl_dump_hw_state(struct drm_i915_private *dev_priv,
|
|
|
+ struct intel_dpll_hw_state *hw_state)
|
|
|
+{
|
|
|
+ DRM_DEBUG_KMS("dpll_hw_state: "
|
|
|
+ "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
|
|
|
+ hw_state->ctrl1,
|
|
|
+ hw_state->cfgcr1,
|
|
|
+ hw_state->cfgcr2);
|
|
|
+}
|
|
|
+
|
|
|
static const struct intel_shared_dpll_funcs skl_ddi_pll_funcs = {
|
|
|
.enable = skl_ddi_pll_enable,
|
|
|
.disable = skl_ddi_pll_disable,
|
|
@@ -1824,6 +1852,25 @@ bxt_get_dpll(struct intel_crtc *crtc,
|
|
|
return pll;
|
|
|
}
|
|
|
|
|
|
+static void bxt_dump_hw_state(struct drm_i915_private *dev_priv,
|
|
|
+ struct intel_dpll_hw_state *hw_state)
|
|
|
+{
|
|
|
+ DRM_DEBUG_KMS("dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
|
|
|
+ "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
|
|
|
+ "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
|
|
|
+ hw_state->ebb0,
|
|
|
+ hw_state->ebb4,
|
|
|
+ hw_state->pll0,
|
|
|
+ hw_state->pll1,
|
|
|
+ hw_state->pll2,
|
|
|
+ hw_state->pll3,
|
|
|
+ hw_state->pll6,
|
|
|
+ hw_state->pll8,
|
|
|
+ hw_state->pll9,
|
|
|
+ hw_state->pll10,
|
|
|
+ hw_state->pcsdw12);
|
|
|
+}
|
|
|
+
|
|
|
static const struct intel_shared_dpll_funcs bxt_ddi_pll_funcs = {
|
|
|
.enable = bxt_ddi_pll_enable,
|
|
|
.disable = bxt_ddi_pll_disable,
|
|
@@ -1864,6 +1911,9 @@ struct intel_dpll_mgr {
|
|
|
struct intel_shared_dpll *(*get_dpll)(struct intel_crtc *crtc,
|
|
|
struct intel_crtc_state *crtc_state,
|
|
|
struct intel_encoder *encoder);
|
|
|
+
|
|
|
+ void (*dump_hw_state)(struct drm_i915_private *dev_priv,
|
|
|
+ struct intel_dpll_hw_state *hw_state);
|
|
|
};
|
|
|
|
|
|
static const struct dpll_info pch_plls[] = {
|
|
@@ -1875,6 +1925,7 @@ static const struct dpll_info pch_plls[] = {
|
|
|
static const struct intel_dpll_mgr pch_pll_mgr = {
|
|
|
.dpll_info = pch_plls,
|
|
|
.get_dpll = ibx_get_dpll,
|
|
|
+ .dump_hw_state = ibx_dump_hw_state,
|
|
|
};
|
|
|
|
|
|
static const struct dpll_info hsw_plls[] = {
|
|
@@ -1890,6 +1941,7 @@ static const struct dpll_info hsw_plls[] = {
|
|
|
static const struct intel_dpll_mgr hsw_pll_mgr = {
|
|
|
.dpll_info = hsw_plls,
|
|
|
.get_dpll = hsw_get_dpll,
|
|
|
+ .dump_hw_state = hsw_dump_hw_state,
|
|
|
};
|
|
|
|
|
|
static const struct dpll_info skl_plls[] = {
|
|
@@ -1903,6 +1955,7 @@ static const struct dpll_info skl_plls[] = {
|
|
|
static const struct intel_dpll_mgr skl_pll_mgr = {
|
|
|
.dpll_info = skl_plls,
|
|
|
.get_dpll = skl_get_dpll,
|
|
|
+ .dump_hw_state = skl_dump_hw_state,
|
|
|
};
|
|
|
|
|
|
static const struct dpll_info bxt_plls[] = {
|
|
@@ -1915,6 +1968,7 @@ static const struct dpll_info bxt_plls[] = {
|
|
|
static const struct intel_dpll_mgr bxt_pll_mgr = {
|
|
|
.dpll_info = bxt_plls,
|
|
|
.get_dpll = bxt_get_dpll,
|
|
|
+ .dump_hw_state = bxt_dump_hw_state,
|
|
|
};
|
|
|
|
|
|
/**
|
|
@@ -2014,3 +2068,28 @@ void intel_release_shared_dpll(struct intel_shared_dpll *dpll,
|
|
|
shared_dpll_state = intel_atomic_get_shared_dpll_state(state);
|
|
|
shared_dpll_state[dpll->id].crtc_mask &= ~(1 << crtc->pipe);
|
|
|
}
|
|
|
+
|
|
|
+/**
|
|
|
+ * intel_shared_dpll_dump_hw_state - write hw_state to dmesg
|
|
|
+ * @dev_priv: i915 drm device
|
|
|
+ * @hw_state: hw state to be written to the log
|
|
|
+ *
|
|
|
+ * Write the relevant values in @hw_state to dmesg using DRM_DEBUG_KMS.
|
|
|
+ */
|
|
|
+void intel_dpll_dump_hw_state(struct drm_i915_private *dev_priv,
|
|
|
+ struct intel_dpll_hw_state *hw_state)
|
|
|
+{
|
|
|
+ if (dev_priv->dpll_mgr) {
|
|
|
+ dev_priv->dpll_mgr->dump_hw_state(dev_priv, hw_state);
|
|
|
+ } else {
|
|
|
+ /* fallback for platforms that don't use the shared dpll
|
|
|
+ * infrastructure
|
|
|
+ */
|
|
|
+ DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
|
|
|
+ "fp0: 0x%x, fp1: 0x%x\n",
|
|
|
+ hw_state->dpll,
|
|
|
+ hw_state->dpll_md,
|
|
|
+ hw_state->fp0,
|
|
|
+ hw_state->fp1);
|
|
|
+ }
|
|
|
+}
|