]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/i915/tgl: Tigerlake only has global MOCS registers
authorMichel Thierry <michel.thierry@intel.com>
Tue, 30 Jul 2019 18:04:06 +0000 (11:04 -0700)
committerLucas De Marchi <lucas.demarchi@intel.com>
Wed, 31 Jul 2019 14:40:32 +0000 (07:40 -0700)
Until Icelake, each engine had its own set of 64 MOCS registers. In
order to simplify, Tigerlake moves to only 64 Global MOCS registers,
which are no longer part of the engine context. Since these registers
are now global, they also only need to be initialized once.

>From Gen12 onwards, MOCS must specify the target cache (3:2) and LRU
management (5:4) fields and cannot be programmed to 'use the value from
Private PAT', because these fields are no longer part of the PPAT. Also
cacheability control (1:0) field has changed, 00 no longer means 'use
controls from page table', but uncacheable (UC).

v2 (Lucas):
    - Move the changes to the fault registers to a separate commit - the
      old ones overlap with the range used by the new global MOCS
      (requested by Daniele)
v3 (Lucas):
    - Clarify comment about setting the unused entries to the same value
      of index 0, that is the invalid entry (requested by Daniele)
    - Move changes to DONE_REG and ERROR_GEN6 to a separate commit
      (requested by Daniele)

Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Signed-off-by: Michel Thierry <michel.thierry@intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Tomasz Lis <tomasz.lis@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190730180407.5993-5-lucas.demarchi@intel.com
drivers/gpu/drm/i915/gt/intel_mocs.c
drivers/gpu/drm/i915/gt/intel_mocs.h
drivers/gpu/drm/i915/i915_drv.h
drivers/gpu/drm/i915/i915_gem.c
drivers/gpu/drm/i915/i915_pci.c
drivers/gpu/drm/i915/i915_reg.h
drivers/gpu/drm/i915/intel_device_info.h

index d93301310dc7003ee6b5670125139b92fa0f80f6..764e47131c067c2735004f050f8ac1ab4ddcdd3e 100644 (file)
@@ -392,6 +392,10 @@ void intel_mocs_init_engine(struct intel_engine_cs *engine)
        unsigned int index;
        u32 unused_value;
 
+       /* Platforms with global MOCS do not need per-engine initialization. */
+       if (HAS_GLOBAL_MOCS_REGISTERS(gt->i915))
+               return;
+
        /* Called under a blanket forcewake */
        assert_forcewakes_active(uncore, FORCEWAKE_ALL);
 
@@ -416,6 +420,43 @@ void intel_mocs_init_engine(struct intel_engine_cs *engine)
                                      unused_value);
 }
 
+/**
+ * intel_mocs_init_global() - program the global mocs registers
+ * gt:      pointer to struct intel_gt
+ *
+ * This function initializes the MOCS global registers.
+ */
+void intel_mocs_init_global(struct intel_gt *gt)
+{
+       struct intel_uncore *uncore = gt->uncore;
+       struct drm_i915_mocs_table table;
+       unsigned int index;
+
+       if (!HAS_GLOBAL_MOCS_REGISTERS(gt->i915))
+               return;
+
+       if (!get_mocs_settings(gt, &table))
+               return;
+
+       if (GEM_DEBUG_WARN_ON(table.size > table.n_entries))
+               return;
+
+       for (index = 0; index < table.size; index++)
+               intel_uncore_write(uncore,
+                                  GEN12_GLOBAL_MOCS(index),
+                                  table.table[index].control_value);
+
+       /*
+        * Ok, now set the unused entries to the invalid entry (index 0). These
+        * entries are officially undefined and no contract for the contents and
+        * settings is given for these entries.
+        */
+       for (; index < table.n_entries; index++)
+               intel_uncore_write(uncore,
+                                  GEN12_GLOBAL_MOCS(index),
+                                  table.table[0].control_value);
+}
+
 /**
  * emit_mocs_control_table() - emit the mocs control table
  * @rq:        Request to set up the MOCS table for.
@@ -619,7 +660,8 @@ int intel_mocs_emit(struct i915_request *rq)
        struct drm_i915_mocs_table t;
        int ret;
 
-       if (rq->engine->class != RENDER_CLASS)
+       if (HAS_GLOBAL_MOCS_REGISTERS(rq->i915) ||
+           rq->engine->class != RENDER_CLASS)
                return 0;
 
        if (get_mocs_settings(rq->engine->gt, &t)) {
index 8e20ca8bb34c2988824288b07bb484a24be1a192..d5d3558caf4e885afd1e6367fb8957379b9e0519 100644 (file)
@@ -54,6 +54,7 @@ struct intel_engine_cs;
 struct intel_gt;
 
 void intel_mocs_init_l3cc_table(struct intel_gt *gt);
+void intel_mocs_init_global(struct intel_gt *gt);
 void intel_mocs_init_engine(struct intel_engine_cs *engine);
 
 int intel_mocs_emit(struct i915_request *rq);
index fca7b6ce378da98a5db24d6184d07af608ebe126..3ee11b27ad9151d525edd01b92ddf8accfe7add4 100644 (file)
@@ -2280,6 +2280,8 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
 
 #define HAS_POOLED_EU(dev_priv)        (INTEL_INFO(dev_priv)->has_pooled_eu)
 
+#define HAS_GLOBAL_MOCS_REGISTERS(dev_priv)    (INTEL_INFO(dev_priv)->has_global_mocs)
+
 #define INTEL_PCH_DEVICE_ID_MASK               0xff80
 #define INTEL_PCH_IBX_DEVICE_ID_TYPE           0x3b00
 #define INTEL_PCH_CPT_DEVICE_ID_TYPE           0x1c00
index f681152d27faa1e88169ea9536b0da89e21c223e..295702ab99e1e0e95578ca22f619d793b823fc73 100644 (file)
@@ -1247,6 +1247,7 @@ int i915_gem_init_hw(struct drm_i915_private *i915)
                goto out;
        }
 
+       intel_mocs_init_global(gt);
        intel_mocs_init_l3cc_table(gt);
 
        intel_engines_set_scheduler_caps(i915);
index bd9211b3d76e90c0efb7ff868d32297162cf4f8d..a7e1cde4a6d9dd121a8bfd475a493e8c4b9cd2a9 100644 (file)
@@ -783,7 +783,8 @@ static const struct intel_device_info intel_elkhartlake_info = {
                [TRANSCODER_D] = TRANSCODER_D_OFFSET, \
                [TRANSCODER_DSI_0] = TRANSCODER_DSI0_OFFSET, \
                [TRANSCODER_DSI_1] = TRANSCODER_DSI1_OFFSET, \
-       }
+       }, \
+       .has_global_mocs = 1
 
 static const struct intel_device_info intel_tigerlake_12_info = {
        GEN12_FEATURES,
index 80e98ec99410ada7480223a194576233958a4e19..c5187a58d3c9cbb96ad13f441e7fa5c1558ad949 100644 (file)
@@ -11253,6 +11253,8 @@ enum skl_power_gate {
 #define   PMFLUSH_GAPL3UNBLOCK         (1 << 21)
 #define   PMFLUSHDONE_LNEBLK           (1 << 22)
 
+#define GEN12_GLOBAL_MOCS(i)   _MMIO(0x4000 + (i) * 4) /* Global MOCS regs */
+
 /* gamt regs */
 #define GEN8_L3_LRA_1_GPGPU _MMIO(0x4dd4)
 #define   GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_BDW  0x67F1427F /* max/min for LRA1/2 */
index 4f58e8d71b67a8d6b53dbb2499504ada08fbc286..92e0c2e0954c5495ef4d724cdca8e293d0a61bf7 100644 (file)
@@ -112,6 +112,7 @@ enum intel_ppgtt_type {
        func(gpu_reset_clobbers_display); \
        func(has_reset_engine); \
        func(has_fpga_dbg); \
+       func(has_global_mocs); \
        func(has_gt_uc); \
        func(has_l3_dpf); \
        func(has_llc); \