2 * Copyright (c) 2015 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions: *
10 * The above copyright notice and this permission notice (including the next
11 * paragraph) shall be included in all copies or substantial portions of the
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 #include "intel_engine.h"
27 #include "intel_mocs.h"
28 #include "intel_lrc.h"
29 #include "intel_ring.h"
31 /* structures required */
32 struct drm_i915_mocs_entry
{
38 struct drm_i915_mocs_table
{
40 unsigned int n_entries
;
41 const struct drm_i915_mocs_entry
*table
;
44 /* Defines for the tables (XXX_MOCS_0 - XXX_MOCS_63) */
45 #define _LE_CACHEABILITY(value) ((value) << 0)
46 #define _LE_TGT_CACHE(value) ((value) << 2)
47 #define LE_LRUM(value) ((value) << 4)
48 #define LE_AOM(value) ((value) << 6)
49 #define LE_RSC(value) ((value) << 7)
50 #define LE_SCC(value) ((value) << 8)
51 #define LE_PFM(value) ((value) << 11)
52 #define LE_SCF(value) ((value) << 14)
53 #define LE_COS(value) ((value) << 15)
54 #define LE_SSE(value) ((value) << 17)
56 /* Defines for the tables (LNCFMOCS0 - LNCFMOCS31) - two entries per word */
57 #define L3_ESC(value) ((value) << 0)
58 #define L3_SCC(value) ((value) << 1)
59 #define _L3_CACHEABILITY(value) ((value) << 4)
62 #define GEN9_NUM_MOCS_ENTRIES 62 /* 62 out of 64 - 63 & 64 are reserved. */
63 #define GEN11_NUM_MOCS_ENTRIES 64 /* 63-64 are reserved, but configured. */
65 /* (e)LLC caching options */
67 * Note: LE_0_PAGETABLE works only up to Gen11; for newer gens it means
70 #define LE_0_PAGETABLE _LE_CACHEABILITY(0)
71 #define LE_1_UC _LE_CACHEABILITY(1)
72 #define LE_2_WT _LE_CACHEABILITY(2)
73 #define LE_3_WB _LE_CACHEABILITY(3)
76 #define LE_TC_0_PAGETABLE _LE_TGT_CACHE(0)
77 #define LE_TC_1_LLC _LE_TGT_CACHE(1)
78 #define LE_TC_2_LLC_ELLC _LE_TGT_CACHE(2)
79 #define LE_TC_3_LLC_ELLC_ALT _LE_TGT_CACHE(3)
81 /* L3 caching options */
82 #define L3_0_DIRECT _L3_CACHEABILITY(0)
83 #define L3_1_UC _L3_CACHEABILITY(1)
84 #define L3_2_RESERVED _L3_CACHEABILITY(2)
85 #define L3_3_WB _L3_CACHEABILITY(3)
87 #define MOCS_ENTRY(__idx, __control_value, __l3cc_value) \
89 .control_value = __control_value, \
90 .l3cc_value = __l3cc_value, \
97 * These are the MOCS tables that are programmed across all the rings.
98 * The control value is programmed to all the rings that support the
99 * MOCS registers. While the l3cc_values are only programmed to the
100 * LNCFCMOCS0 - LNCFCMOCS32 registers.
102 * These tables are intended to be kept reasonably consistent across
103 * HW platforms, and for ICL+, be identical across OSes. To achieve
104 * that, for Icelake and above, list of entries is published as part
107 * Entries not part of the following tables are undefined as far as
108 * userspace is concerned and shouldn't be relied upon. For Gen < 12
109 * they will be initialized to PTE. Gen >= 12 onwards don't have a setting for
110 * PTE and will be initialized to an invalid value.
112 * The last two entries are reserved by the hardware. For ICL+ they
113 * should be initialized according to bspec and never used, for older
114 * platforms they should never be written to.
116 * NOTE: These tables are part of bspec and defined as part of hardware
117 * interface for ICL+. For older platforms, they are part of kernel
118 * ABI. It is expected that, for specific hardware platform, existing
119 * entries will remain constant and the table will only be updated by
120 * adding new entries, filling unused positions.
122 #define GEN9_MOCS_ENTRIES \
123 MOCS_ENTRY(I915_MOCS_UNCACHED, \
124 LE_1_UC | LE_TC_2_LLC_ELLC, \
126 MOCS_ENTRY(I915_MOCS_PTE, \
127 LE_0_PAGETABLE | LE_TC_2_LLC_ELLC | LE_LRUM(3), \
130 static const struct drm_i915_mocs_entry skl_mocs_table
[] = {
132 MOCS_ENTRY(I915_MOCS_CACHED
,
133 LE_3_WB
| LE_TC_2_LLC_ELLC
| LE_LRUM(3),
137 /* NOTE: the LE_TGT_CACHE is not used on Broxton */
138 static const struct drm_i915_mocs_entry broxton_mocs_table
[] = {
140 MOCS_ENTRY(I915_MOCS_CACHED
,
141 LE_1_UC
| LE_TC_2_LLC_ELLC
| LE_LRUM(3),
145 #define GEN11_MOCS_ENTRIES \
146 /* Entries 0 and 1 are defined per-platform */ \
147 /* Base - L3 + LLC */ \
149 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), \
151 /* Base - Uncached */ \
153 LE_1_UC | LE_TC_1_LLC, \
157 LE_1_UC | LE_TC_1_LLC, \
161 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), \
165 LE_3_WB | LE_TC_1_LLC | LE_LRUM(1), \
167 /* Age 0 - L3 + LLC */ \
169 LE_3_WB | LE_TC_1_LLC | LE_LRUM(1), \
171 /* Age: Don't Chg. - LLC */ \
173 LE_3_WB | LE_TC_1_LLC | LE_LRUM(2), \
175 /* Age: Don't Chg. - L3 + LLC */ \
177 LE_3_WB | LE_TC_1_LLC | LE_LRUM(2), \
181 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_AOM(1), \
183 /* No AOM - L3 + LLC */ \
185 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_AOM(1), \
187 /* No AOM; Age 0 - LLC */ \
189 LE_3_WB | LE_TC_1_LLC | LE_LRUM(1) | LE_AOM(1), \
191 /* No AOM; Age 0 - L3 + LLC */ \
193 LE_3_WB | LE_TC_1_LLC | LE_LRUM(1) | LE_AOM(1), \
195 /* No AOM; Age:DC - LLC */ \
197 LE_3_WB | LE_TC_1_LLC | LE_LRUM(2) | LE_AOM(1), \
199 /* No AOM; Age:DC - L3 + LLC */ \
201 LE_3_WB | LE_TC_1_LLC | LE_LRUM(2) | LE_AOM(1), \
203 /* Self-Snoop - L3 + LLC */ \
205 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SSE(3), \
207 /* Skip Caching - L3 + LLC(12.5%) */ \
209 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SCC(7), \
211 /* Skip Caching - L3 + LLC(25%) */ \
213 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SCC(3), \
215 /* Skip Caching - L3 + LLC(50%) */ \
217 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SCC(1), \
219 /* Skip Caching - L3 + LLC(75%) */ \
221 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_RSC(1) | LE_SCC(3), \
223 /* Skip Caching - L3 + LLC(87.5%) */ \
225 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_RSC(1) | LE_SCC(7), \
227 /* HW Reserved - SW program but never use */ \
229 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), \
231 /* HW Reserved - SW program but never use */ \
233 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), \
236 static const struct drm_i915_mocs_entry tgl_mocs_table
[] = {
237 /* Base - Error (Reserved for Non-Use) */
238 MOCS_ENTRY(0, 0x0, 0x0),
239 /* Base - Reserved */
240 MOCS_ENTRY(1, 0x0, 0x0),
244 /* Implicitly enable L1 - HDC:L1 + L3 + LLC */
246 LE_3_WB
| LE_TC_1_LLC
| LE_LRUM(3),
248 /* Implicitly enable L1 - HDC:L1 + L3 */
250 LE_1_UC
| LE_TC_1_LLC
,
252 /* Implicitly enable L1 - HDC:L1 + LLC */
254 LE_3_WB
| LE_TC_1_LLC
| LE_LRUM(3),
256 /* Implicitly enable L1 - HDC:L1 */
258 LE_1_UC
| LE_TC_1_LLC
,
260 /* HW Special Case (CCS) */
262 LE_3_WB
| LE_TC_1_LLC
| LE_LRUM(3),
264 /* HW Special Case (Displayable) */
266 LE_1_UC
| LE_TC_1_LLC
,
270 static const struct drm_i915_mocs_entry icl_mocs_table
[] = {
271 /* Base - Uncached (Deprecated) */
272 MOCS_ENTRY(I915_MOCS_UNCACHED
,
273 LE_1_UC
| LE_TC_1_LLC
,
275 /* Base - L3 + LeCC:PAT (Deprecated) */
276 MOCS_ENTRY(I915_MOCS_PTE
,
277 LE_0_PAGETABLE
| LE_TC_1_LLC
,
283 static bool get_mocs_settings(const struct drm_i915_private
*i915
,
284 struct drm_i915_mocs_table
*table
)
286 if (INTEL_GEN(i915
) >= 12) {
287 table
->size
= ARRAY_SIZE(tgl_mocs_table
);
288 table
->table
= tgl_mocs_table
;
289 table
->n_entries
= GEN11_NUM_MOCS_ENTRIES
;
290 } else if (IS_GEN(i915
, 11)) {
291 table
->size
= ARRAY_SIZE(icl_mocs_table
);
292 table
->table
= icl_mocs_table
;
293 table
->n_entries
= GEN11_NUM_MOCS_ENTRIES
;
294 } else if (IS_GEN9_BC(i915
) || IS_CANNONLAKE(i915
)) {
295 table
->size
= ARRAY_SIZE(skl_mocs_table
);
296 table
->n_entries
= GEN9_NUM_MOCS_ENTRIES
;
297 table
->table
= skl_mocs_table
;
298 } else if (IS_GEN9_LP(i915
)) {
299 table
->size
= ARRAY_SIZE(broxton_mocs_table
);
300 table
->n_entries
= GEN9_NUM_MOCS_ENTRIES
;
301 table
->table
= broxton_mocs_table
;
303 WARN_ONCE(INTEL_GEN(i915
) >= 9,
304 "Platform that should have a MOCS table does not.\n");
308 if (GEM_DEBUG_WARN_ON(table
->size
> table
->n_entries
))
311 /* WaDisableSkipCaching:skl,bxt,kbl,glk */
312 if (IS_GEN(i915
, 9)) {
315 for (i
= 0; i
< table
->size
; i
++)
316 if (GEM_DEBUG_WARN_ON(table
->table
[i
].l3cc_value
&
317 (L3_ESC(1) | L3_SCC(0x7))))
325 * Get control_value from MOCS entry taking into account when it's not used:
326 * I915_MOCS_PTE's value is returned in this case.
328 static u32
get_entry_control(const struct drm_i915_mocs_table
*table
,
331 if (index
< table
->size
&& table
->table
[index
].used
)
332 return table
->table
[index
].control_value
;
334 return table
->table
[I915_MOCS_PTE
].control_value
;
337 #define for_each_mocs(mocs, t, i) \
339 i < (t)->n_entries ? (mocs = get_entry_control((t), i)), 1 : 0;\
342 static void __init_mocs_table(struct intel_uncore
*uncore
,
343 const struct drm_i915_mocs_table
*table
,
349 for_each_mocs(mocs
, table
, i
)
350 intel_uncore_write_fw(uncore
, _MMIO(addr
+ i
* 4), mocs
);
353 static u32
mocs_offset(const struct intel_engine_cs
*engine
)
355 static const u32 offset
[] = {
356 [RCS0
] = __GEN9_RCS0_MOCS0
,
357 [VCS0
] = __GEN9_VCS0_MOCS0
,
358 [VCS1
] = __GEN9_VCS1_MOCS0
,
359 [VECS0
] = __GEN9_VECS0_MOCS0
,
360 [BCS0
] = __GEN9_BCS0_MOCS0
,
361 [VCS2
] = __GEN11_VCS2_MOCS0
,
364 GEM_BUG_ON(engine
->id
>= ARRAY_SIZE(offset
));
365 return offset
[engine
->id
];
368 static void init_mocs_table(struct intel_engine_cs
*engine
,
369 const struct drm_i915_mocs_table
*table
)
371 __init_mocs_table(engine
->uncore
, table
, mocs_offset(engine
));
375 * Get l3cc_value from MOCS entry taking into account when it's not used:
376 * I915_MOCS_PTE's value is returned in this case.
378 static u16
get_entry_l3cc(const struct drm_i915_mocs_table
*table
,
381 if (index
< table
->size
&& table
->table
[index
].used
)
382 return table
->table
[index
].l3cc_value
;
384 return table
->table
[I915_MOCS_PTE
].l3cc_value
;
387 static inline u32
l3cc_combine(u16 low
, u16 high
)
389 return low
| (u32
)high
<< 16;
392 #define for_each_l3cc(l3cc, t, i) \
394 i < ((t)->n_entries + 1) / 2 ? \
395 (l3cc = l3cc_combine(get_entry_l3cc((t), 2 * i), \
396 get_entry_l3cc((t), 2 * i + 1))), 1 : \
400 static void init_l3cc_table(struct intel_engine_cs
*engine
,
401 const struct drm_i915_mocs_table
*table
)
403 struct intel_uncore
*uncore
= engine
->uncore
;
407 for_each_l3cc(l3cc
, table
, i
)
408 intel_uncore_write_fw(uncore
, GEN9_LNCFCMOCS(i
), l3cc
);
411 void intel_mocs_init_engine(struct intel_engine_cs
*engine
)
413 struct drm_i915_mocs_table table
;
415 /* Called under a blanket forcewake */
416 assert_forcewakes_active(engine
->uncore
, FORCEWAKE_ALL
);
418 if (!get_mocs_settings(engine
->i915
, &table
))
421 /* Platforms with global MOCS do not need per-engine initialization. */
422 if (!HAS_GLOBAL_MOCS_REGISTERS(engine
->i915
))
423 init_mocs_table(engine
, &table
);
425 if (engine
->class == RENDER_CLASS
)
426 init_l3cc_table(engine
, &table
);
429 static u32
global_mocs_offset(void)
431 return i915_mmio_reg_offset(GEN12_GLOBAL_MOCS(0));
434 static void init_global_mocs(struct intel_gt
*gt
)
436 struct drm_i915_mocs_table table
;
439 * LLC and eDRAM control values are not applicable to dgfx
441 if (IS_DGFX(gt
->i915
))
444 if (!get_mocs_settings(gt
->i915
, &table
))
447 __init_mocs_table(gt
->uncore
, &table
, global_mocs_offset());
450 void intel_mocs_init(struct intel_gt
*gt
)
452 if (HAS_GLOBAL_MOCS_REGISTERS(gt
->i915
))
453 init_global_mocs(gt
);
456 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
457 #include "selftest_mocs.c"