Commit 3c2eddc2 authored by Jani Nikula's avatar Jani Nikula

drm/i915/dram: use intel_uncore_*() functions for register access

The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().

Replace them with the corresponding uncore register accessors
intel_uncore_read(), intel_uncore_write(), intel_uncore_posting_read(),
intel_uncore_read_fw(), and intel_uncore_write_fw().

Rename dev_priv to i915 while at it.

No functional changes.
Reviewed-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200225111509.21879-2-jani.nikula@intel.com
parent d28ae3b2
...@@ -166,25 +166,27 @@ intel_is_dram_symmetric(const struct dram_channel_info *ch0, ...@@ -166,25 +166,27 @@ intel_is_dram_symmetric(const struct dram_channel_info *ch0,
} }
static int static int
skl_dram_get_channels_info(struct drm_i915_private *dev_priv) skl_dram_get_channels_info(struct drm_i915_private *i915)
{ {
struct dram_info *dram_info = &dev_priv->dram_info; struct dram_info *dram_info = &i915->dram_info;
struct dram_channel_info ch0 = {}, ch1 = {}; struct dram_channel_info ch0 = {}, ch1 = {};
u32 val; u32 val;
int ret; int ret;
val = I915_READ(SKL_MAD_DIMM_CH0_0_0_0_MCHBAR_MCMAIN); val = intel_uncore_read(&i915->uncore,
ret = skl_dram_get_channel_info(dev_priv, &ch0, 0, val); SKL_MAD_DIMM_CH0_0_0_0_MCHBAR_MCMAIN);
ret = skl_dram_get_channel_info(i915, &ch0, 0, val);
if (ret == 0) if (ret == 0)
dram_info->num_channels++; dram_info->num_channels++;
val = I915_READ(SKL_MAD_DIMM_CH1_0_0_0_MCHBAR_MCMAIN); val = intel_uncore_read(&i915->uncore,
ret = skl_dram_get_channel_info(dev_priv, &ch1, 1, val); SKL_MAD_DIMM_CH1_0_0_0_MCHBAR_MCMAIN);
ret = skl_dram_get_channel_info(i915, &ch1, 1, val);
if (ret == 0) if (ret == 0)
dram_info->num_channels++; dram_info->num_channels++;
if (dram_info->num_channels == 0) { if (dram_info->num_channels == 0) {
drm_info(&dev_priv->drm, "Number of memory channels is zero\n"); drm_info(&i915->drm, "Number of memory channels is zero\n");
return -EINVAL; return -EINVAL;
} }
...@@ -199,8 +201,7 @@ skl_dram_get_channels_info(struct drm_i915_private *dev_priv) ...@@ -199,8 +201,7 @@ skl_dram_get_channels_info(struct drm_i915_private *dev_priv)
dram_info->ranks = max(ch0.ranks, ch1.ranks); dram_info->ranks = max(ch0.ranks, ch1.ranks);
if (dram_info->ranks == 0) { if (dram_info->ranks == 0) {
drm_info(&dev_priv->drm, drm_info(&i915->drm, "couldn't get memory rank information\n");
"couldn't get memory rank information\n");
return -EINVAL; return -EINVAL;
} }
...@@ -208,18 +209,19 @@ skl_dram_get_channels_info(struct drm_i915_private *dev_priv) ...@@ -208,18 +209,19 @@ skl_dram_get_channels_info(struct drm_i915_private *dev_priv)
dram_info->symmetric_memory = intel_is_dram_symmetric(&ch0, &ch1); dram_info->symmetric_memory = intel_is_dram_symmetric(&ch0, &ch1);
drm_dbg_kms(&dev_priv->drm, "Memory configuration is symmetric? %s\n", drm_dbg_kms(&i915->drm, "Memory configuration is symmetric? %s\n",
yesno(dram_info->symmetric_memory)); yesno(dram_info->symmetric_memory));
return 0; return 0;
} }
static enum intel_dram_type static enum intel_dram_type
skl_get_dram_type(struct drm_i915_private *dev_priv) skl_get_dram_type(struct drm_i915_private *i915)
{ {
u32 val; u32 val;
val = I915_READ(SKL_MAD_INTER_CHANNEL_0_0_0_MCHBAR_MCMAIN); val = intel_uncore_read(&i915->uncore,
SKL_MAD_INTER_CHANNEL_0_0_0_MCHBAR_MCMAIN);
switch (val & SKL_DRAM_DDR_TYPE_MASK) { switch (val & SKL_DRAM_DDR_TYPE_MASK) {
case SKL_DRAM_DDR_TYPE_DDR3: case SKL_DRAM_DDR_TYPE_DDR3:
...@@ -237,21 +239,22 @@ skl_get_dram_type(struct drm_i915_private *dev_priv) ...@@ -237,21 +239,22 @@ skl_get_dram_type(struct drm_i915_private *dev_priv)
} }
static int static int
skl_get_dram_info(struct drm_i915_private *dev_priv) skl_get_dram_info(struct drm_i915_private *i915)
{ {
struct dram_info *dram_info = &dev_priv->dram_info; struct dram_info *dram_info = &i915->dram_info;
u32 mem_freq_khz, val; u32 mem_freq_khz, val;
int ret; int ret;
dram_info->type = skl_get_dram_type(dev_priv); dram_info->type = skl_get_dram_type(i915);
drm_dbg_kms(&dev_priv->drm, "DRAM type: %s\n", drm_dbg_kms(&i915->drm, "DRAM type: %s\n",
intel_dram_type_str(dram_info->type)); intel_dram_type_str(dram_info->type));
ret = skl_dram_get_channels_info(dev_priv); ret = skl_dram_get_channels_info(i915);
if (ret) if (ret)
return ret; return ret;
val = I915_READ(SKL_MC_BIOS_DATA_0_0_0_MCHBAR_PCU); val = intel_uncore_read(&i915->uncore,
SKL_MC_BIOS_DATA_0_0_0_MCHBAR_PCU);
mem_freq_khz = DIV_ROUND_UP((val & SKL_REQ_DATA_MASK) * mem_freq_khz = DIV_ROUND_UP((val & SKL_REQ_DATA_MASK) *
SKL_MEMORY_FREQ_MULTIPLIER_HZ, 1000); SKL_MEMORY_FREQ_MULTIPLIER_HZ, 1000);
...@@ -259,7 +262,7 @@ skl_get_dram_info(struct drm_i915_private *dev_priv) ...@@ -259,7 +262,7 @@ skl_get_dram_info(struct drm_i915_private *dev_priv)
mem_freq_khz * 8; mem_freq_khz * 8;
if (dram_info->bandwidth_kbps == 0) { if (dram_info->bandwidth_kbps == 0) {
drm_info(&dev_priv->drm, drm_info(&i915->drm,
"Couldn't get system memory bandwidth\n"); "Couldn't get system memory bandwidth\n");
return -EINVAL; return -EINVAL;
} }
...@@ -346,15 +349,15 @@ static void bxt_get_dimm_info(struct dram_dimm_info *dimm, u32 val) ...@@ -346,15 +349,15 @@ static void bxt_get_dimm_info(struct dram_dimm_info *dimm, u32 val)
dimm->size = bxt_get_dimm_size(val) * intel_dimm_num_devices(dimm) / 8; dimm->size = bxt_get_dimm_size(val) * intel_dimm_num_devices(dimm) / 8;
} }
static int bxt_get_dram_info(struct drm_i915_private *dev_priv) static int bxt_get_dram_info(struct drm_i915_private *i915)
{ {
struct dram_info *dram_info = &dev_priv->dram_info; struct dram_info *dram_info = &i915->dram_info;
u32 dram_channels; u32 dram_channels;
u32 mem_freq_khz, val; u32 mem_freq_khz, val;
u8 num_active_channels; u8 num_active_channels;
int i; int i;
val = I915_READ(BXT_P_CR_MC_BIOS_REQ_0_0_0); val = intel_uncore_read(&i915->uncore, BXT_P_CR_MC_BIOS_REQ_0_0_0);
mem_freq_khz = DIV_ROUND_UP((val & BXT_REQ_DATA_MASK) * mem_freq_khz = DIV_ROUND_UP((val & BXT_REQ_DATA_MASK) *
BXT_MEMORY_FREQ_MULTIPLIER_HZ, 1000); BXT_MEMORY_FREQ_MULTIPLIER_HZ, 1000);
...@@ -365,7 +368,7 @@ static int bxt_get_dram_info(struct drm_i915_private *dev_priv) ...@@ -365,7 +368,7 @@ static int bxt_get_dram_info(struct drm_i915_private *dev_priv)
dram_info->bandwidth_kbps = (mem_freq_khz * num_active_channels * 4); dram_info->bandwidth_kbps = (mem_freq_khz * num_active_channels * 4);
if (dram_info->bandwidth_kbps == 0) { if (dram_info->bandwidth_kbps == 0) {
drm_info(&dev_priv->drm, drm_info(&i915->drm,
"Couldn't get system memory bandwidth\n"); "Couldn't get system memory bandwidth\n");
return -EINVAL; return -EINVAL;
} }
...@@ -377,7 +380,7 @@ static int bxt_get_dram_info(struct drm_i915_private *dev_priv) ...@@ -377,7 +380,7 @@ static int bxt_get_dram_info(struct drm_i915_private *dev_priv)
struct dram_dimm_info dimm; struct dram_dimm_info dimm;
enum intel_dram_type type; enum intel_dram_type type;
val = I915_READ(BXT_D_CR_DRP0_DUNIT(i)); val = intel_uncore_read(&i915->uncore, BXT_D_CR_DRP0_DUNIT(i));
if (val == 0xFFFFFFFF) if (val == 0xFFFFFFFF)
continue; continue;
...@@ -386,11 +389,11 @@ static int bxt_get_dram_info(struct drm_i915_private *dev_priv) ...@@ -386,11 +389,11 @@ static int bxt_get_dram_info(struct drm_i915_private *dev_priv)
bxt_get_dimm_info(&dimm, val); bxt_get_dimm_info(&dimm, val);
type = bxt_get_dimm_type(val); type = bxt_get_dimm_type(val);
drm_WARN_ON(&dev_priv->drm, type != INTEL_DRAM_UNKNOWN && drm_WARN_ON(&i915->drm, type != INTEL_DRAM_UNKNOWN &&
dram_info->type != INTEL_DRAM_UNKNOWN && dram_info->type != INTEL_DRAM_UNKNOWN &&
dram_info->type != type); dram_info->type != type);
drm_dbg_kms(&dev_priv->drm, drm_dbg_kms(&i915->drm,
"CH%u DIMM size: %u GB, width: X%u, ranks: %u, type: %s\n", "CH%u DIMM size: %u GB, width: X%u, ranks: %u, type: %s\n",
i - BXT_D_CR_DRP0_DUNIT_START, i - BXT_D_CR_DRP0_DUNIT_START,
dimm.size, dimm.width, dimm.ranks, dimm.size, dimm.width, dimm.ranks,
...@@ -411,7 +414,7 @@ static int bxt_get_dram_info(struct drm_i915_private *dev_priv) ...@@ -411,7 +414,7 @@ static int bxt_get_dram_info(struct drm_i915_private *dev_priv)
} }
if (dram_info->type == INTEL_DRAM_UNKNOWN || dram_info->ranks == 0) { if (dram_info->type == INTEL_DRAM_UNKNOWN || dram_info->ranks == 0) {
drm_info(&dev_priv->drm, "couldn't get memory information\n"); drm_info(&i915->drm, "couldn't get memory information\n");
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment