1// SPDX-License-Identifier: MIT
2/*
3 * Copyright © 2015 Intel Corporation
4 */
5
6#include "i915_drv.h"
7
8#include "intel_engine.h"
9#include "intel_gt.h"
10#include "intel_gt_mcr.h"
11#include "intel_gt_regs.h"
12#include "intel_mocs.h"
13#include "intel_ring.h"
14
15/* structures required */
16struct drm_i915_mocs_entry {
17 u32 control_value;
18 u16 l3cc_value;
19 u16 used;
20};
21
22struct drm_i915_mocs_table {
23 unsigned int size;
24 unsigned int n_entries;
25 const struct drm_i915_mocs_entry *table;
26 u8 uc_index;
27 u8 wb_index; /* Only used on HAS_L3_CCS_READ() platforms */
28 u8 unused_entries_index;
29};
30
31/* Defines for the tables (XXX_MOCS_0 - XXX_MOCS_63) */
32#define _LE_CACHEABILITY(value) ((value) << 0)
33#define _LE_TGT_CACHE(value) ((value) << 2)
34#define LE_LRUM(value) ((value) << 4)
35#define LE_AOM(value) ((value) << 6)
36#define LE_RSC(value) ((value) << 7)
37#define LE_SCC(value) ((value) << 8)
38#define LE_PFM(value) ((value) << 11)
39#define LE_SCF(value) ((value) << 14)
40#define LE_COS(value) ((value) << 15)
41#define LE_SSE(value) ((value) << 17)
42
43/* Defines for the tables (GLOB_MOCS_0 - GLOB_MOCS_16) */
44#define _L4_CACHEABILITY(value) ((value) << 2)
45#define IG_PAT(value) ((value) << 8)
46
47/* Defines for the tables (LNCFMOCS0 - LNCFMOCS31) - two entries per word */
48#define L3_ESC(value) ((value) << 0)
49#define L3_SCC(value) ((value) << 1)
50#define _L3_CACHEABILITY(value) ((value) << 4)
51#define L3_GLBGO(value) ((value) << 6)
52#define L3_LKUP(value) ((value) << 7)
53
54/* Helper defines */
55#define GEN9_NUM_MOCS_ENTRIES 64 /* 63-64 are reserved, but configured. */
56#define MTL_NUM_MOCS_ENTRIES 16
57
58/* (e)LLC caching options */
59/*
60 * Note: LE_0_PAGETABLE works only up to Gen11; for newer gens it means
61 * the same as LE_UC
62 */
63#define LE_0_PAGETABLE _LE_CACHEABILITY(0)
64#define LE_1_UC _LE_CACHEABILITY(1)
65#define LE_2_WT _LE_CACHEABILITY(2)
66#define LE_3_WB _LE_CACHEABILITY(3)
67
68/* Target cache */
69#define LE_TC_0_PAGETABLE _LE_TGT_CACHE(0)
70#define LE_TC_1_LLC _LE_TGT_CACHE(1)
71#define LE_TC_2_LLC_ELLC _LE_TGT_CACHE(2)
72#define LE_TC_3_LLC_ELLC_ALT _LE_TGT_CACHE(3)
73
74/* L3 caching options */
75#define L3_0_DIRECT _L3_CACHEABILITY(0)
76#define L3_1_UC _L3_CACHEABILITY(1)
77#define L3_2_RESERVED _L3_CACHEABILITY(2)
78#define L3_3_WB _L3_CACHEABILITY(3)
79
80/* L4 caching options */
81#define L4_0_WB _L4_CACHEABILITY(0)
82#define L4_1_WT _L4_CACHEABILITY(1)
83#define L4_2_RESERVED _L4_CACHEABILITY(2)
84#define L4_3_UC _L4_CACHEABILITY(3)
85
86#define MOCS_ENTRY(__idx, __control_value, __l3cc_value) \
87 [__idx] = { \
88 .control_value = __control_value, \
89 .l3cc_value = __l3cc_value, \
90 .used = 1, \
91 }
92
93/*
94 * MOCS tables
95 *
96 * These are the MOCS tables that are programmed across all the rings.
97 * The control value is programmed to all the rings that support the
98 * MOCS registers. While the l3cc_values are only programmed to the
99 * LNCFCMOCS0 - LNCFCMOCS32 registers.
100 *
101 * These tables are intended to be kept reasonably consistent across
102 * HW platforms, and for ICL+, be identical across OSes. To achieve
103 * that, for Icelake and above, list of entries is published as part
104 * of bspec.
105 *
106 * Entries not part of the following tables are undefined as far as
107 * userspace is concerned and shouldn't be relied upon. For Gen < 12
108 * they will be initialized to PTE. Gen >= 12 don't have a setting for
109 * PTE and those platforms except TGL/RKL will be initialized L3 WB to
110 * catch accidental use of reserved and unused mocs indexes.
111 *
112 * The last few 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.
115 *
116 * NOTE1: 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.
121 *
122 * NOTE2: For GEN >= 12 except TGL and RKL, reserved and unspecified MOCS
123 * indices have been set to L3 WB. These reserved entries should never
124 * be used, they may be changed to low performant variants with better
125 * coherency in the future if more entries are needed.
126 * For TGL/RKL, all the unspecified MOCS indexes are mapped to L3 UC.
127 */
128#define GEN9_MOCS_ENTRIES \
129 MOCS_ENTRY(I915_MOCS_UNCACHED, \
130 LE_1_UC | LE_TC_2_LLC_ELLC, \
131 L3_1_UC), \
132 MOCS_ENTRY(I915_MOCS_PTE, \
133 LE_0_PAGETABLE | LE_TC_0_PAGETABLE | LE_LRUM(3), \
134 L3_3_WB)
135
136static const struct drm_i915_mocs_entry skl_mocs_table[] = {
137 GEN9_MOCS_ENTRIES,
138 MOCS_ENTRY(I915_MOCS_CACHED,
139 LE_3_WB | LE_TC_2_LLC_ELLC | LE_LRUM(3),
140 L3_3_WB),
141
142 /*
143 * mocs:63
144 * - used by the L3 for all of its evictions.
145 * Thus it is expected to allow LLC cacheability to enable coherent
146 * flows to be maintained.
147 * - used to force L3 uncachable cycles.
148 * Thus it is expected to make the surface L3 uncacheable.
149 */
150 MOCS_ENTRY(63,
151 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3),
152 L3_1_UC)
153};
154
155/* NOTE: the LE_TGT_CACHE is not used on Broxton */
156static const struct drm_i915_mocs_entry broxton_mocs_table[] = {
157 GEN9_MOCS_ENTRIES,
158 MOCS_ENTRY(I915_MOCS_CACHED,
159 LE_1_UC | LE_TC_2_LLC_ELLC | LE_LRUM(3),
160 L3_3_WB)
161};
162
163#define GEN11_MOCS_ENTRIES \
164 /* Entries 0 and 1 are defined per-platform */ \
165 /* Base - L3 + LLC */ \
166 MOCS_ENTRY(2, \
167 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), \
168 L3_3_WB), \
169 /* Base - Uncached */ \
170 MOCS_ENTRY(3, \
171 LE_1_UC | LE_TC_1_LLC, \
172 L3_1_UC), \
173 /* Base - L3 */ \
174 MOCS_ENTRY(4, \
175 LE_1_UC | LE_TC_1_LLC, \
176 L3_3_WB), \
177 /* Base - LLC */ \
178 MOCS_ENTRY(5, \
179 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), \
180 L3_1_UC), \
181 /* Age 0 - LLC */ \
182 MOCS_ENTRY(6, \
183 LE_3_WB | LE_TC_1_LLC | LE_LRUM(1), \
184 L3_1_UC), \
185 /* Age 0 - L3 + LLC */ \
186 MOCS_ENTRY(7, \
187 LE_3_WB | LE_TC_1_LLC | LE_LRUM(1), \
188 L3_3_WB), \
189 /* Age: Don't Chg. - LLC */ \
190 MOCS_ENTRY(8, \
191 LE_3_WB | LE_TC_1_LLC | LE_LRUM(2), \
192 L3_1_UC), \
193 /* Age: Don't Chg. - L3 + LLC */ \
194 MOCS_ENTRY(9, \
195 LE_3_WB | LE_TC_1_LLC | LE_LRUM(2), \
196 L3_3_WB), \
197 /* No AOM - LLC */ \
198 MOCS_ENTRY(10, \
199 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_AOM(1), \
200 L3_1_UC), \
201 /* No AOM - L3 + LLC */ \
202 MOCS_ENTRY(11, \
203 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_AOM(1), \
204 L3_3_WB), \
205 /* No AOM; Age 0 - LLC */ \
206 MOCS_ENTRY(12, \
207 LE_3_WB | LE_TC_1_LLC | LE_LRUM(1) | LE_AOM(1), \
208 L3_1_UC), \
209 /* No AOM; Age 0 - L3 + LLC */ \
210 MOCS_ENTRY(13, \
211 LE_3_WB | LE_TC_1_LLC | LE_LRUM(1) | LE_AOM(1), \
212 L3_3_WB), \
213 /* No AOM; Age:DC - LLC */ \
214 MOCS_ENTRY(14, \
215 LE_3_WB | LE_TC_1_LLC | LE_LRUM(2) | LE_AOM(1), \
216 L3_1_UC), \
217 /* No AOM; Age:DC - L3 + LLC */ \
218 MOCS_ENTRY(15, \
219 LE_3_WB | LE_TC_1_LLC | LE_LRUM(2) | LE_AOM(1), \
220 L3_3_WB), \
221 /* Bypass LLC - Uncached (EHL+) */ \
222 MOCS_ENTRY(16, \
223 LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \
224 L3_1_UC), \
225 /* Bypass LLC - L3 (Read-Only) (EHL+) */ \
226 MOCS_ENTRY(17, \
227 LE_1_UC | LE_TC_1_LLC | LE_SCF(1), \
228 L3_3_WB), \
229 /* Self-Snoop - L3 + LLC */ \
230 MOCS_ENTRY(18, \
231 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SSE(3), \
232 L3_3_WB), \
233 /* Skip Caching - L3 + LLC(12.5%) */ \
234 MOCS_ENTRY(19, \
235 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SCC(7), \
236 L3_3_WB), \
237 /* Skip Caching - L3 + LLC(25%) */ \
238 MOCS_ENTRY(20, \
239 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SCC(3), \
240 L3_3_WB), \
241 /* Skip Caching - L3 + LLC(50%) */ \
242 MOCS_ENTRY(21, \
243 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_SCC(1), \
244 L3_3_WB), \
245 /* Skip Caching - L3 + LLC(75%) */ \
246 MOCS_ENTRY(22, \
247 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_RSC(1) | LE_SCC(3), \
248 L3_3_WB), \
249 /* Skip Caching - L3 + LLC(87.5%) */ \
250 MOCS_ENTRY(23, \
251 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3) | LE_RSC(1) | LE_SCC(7), \
252 L3_3_WB), \
253 /* HW Reserved - SW program but never use */ \
254 MOCS_ENTRY(62, \
255 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), \
256 L3_1_UC), \
257 /* HW Reserved - SW program but never use */ \
258 MOCS_ENTRY(63, \
259 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), \
260 L3_1_UC)
261
262static const struct drm_i915_mocs_entry tgl_mocs_table[] = {
263 /*
264 * NOTE:
265 * Reserved and unspecified MOCS indices have been set to (L3 + LCC).
266 * These reserved entries should never be used, they may be changed
267 * to low performant variants with better coherency in the future if
268 * more entries are needed. We are programming index I915_MOCS_PTE(1)
269 * only, __init_mocs_table() take care to program unused index with
270 * this entry.
271 */
272 MOCS_ENTRY(I915_MOCS_PTE,
273 LE_0_PAGETABLE | LE_TC_0_PAGETABLE,
274 L3_1_UC),
275 GEN11_MOCS_ENTRIES,
276
277 /* Implicitly enable L1 - HDC:L1 + L3 + LLC */
278 MOCS_ENTRY(48,
279 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3),
280 L3_3_WB),
281 /* Implicitly enable L1 - HDC:L1 + L3 */
282 MOCS_ENTRY(49,
283 LE_1_UC | LE_TC_1_LLC,
284 L3_3_WB),
285 /* Implicitly enable L1 - HDC:L1 + LLC */
286 MOCS_ENTRY(50,
287 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3),
288 L3_1_UC),
289 /* Implicitly enable L1 - HDC:L1 */
290 MOCS_ENTRY(51,
291 LE_1_UC | LE_TC_1_LLC,
292 L3_1_UC),
293 /* HW Special Case (CCS) */
294 MOCS_ENTRY(60,
295 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3),
296 L3_1_UC),
297 /* HW Special Case (Displayable) */
298 MOCS_ENTRY(61,
299 LE_1_UC | LE_TC_1_LLC,
300 L3_3_WB),
301};
302
303static const struct drm_i915_mocs_entry icl_mocs_table[] = {
304 /* Base - Uncached (Deprecated) */
305 MOCS_ENTRY(I915_MOCS_UNCACHED,
306 LE_1_UC | LE_TC_1_LLC,
307 L3_1_UC),
308 /* Base - L3 + LeCC:PAT (Deprecated) */
309 MOCS_ENTRY(I915_MOCS_PTE,
310 LE_0_PAGETABLE | LE_TC_0_PAGETABLE,
311 L3_3_WB),
312
313 GEN11_MOCS_ENTRIES
314};
315
316static const struct drm_i915_mocs_entry dg1_mocs_table[] = {
317 /* UC */
318 MOCS_ENTRY(1, 0, L3_1_UC),
319 /* WB - L3 */
320 MOCS_ENTRY(5, 0, L3_3_WB),
321 /* WB - L3 50% */
322 MOCS_ENTRY(6, 0, L3_ESC(1) | L3_SCC(1) | L3_3_WB),
323 /* WB - L3 25% */
324 MOCS_ENTRY(7, 0, L3_ESC(1) | L3_SCC(3) | L3_3_WB),
325 /* WB - L3 12.5% */
326 MOCS_ENTRY(8, 0, L3_ESC(1) | L3_SCC(7) | L3_3_WB),
327
328 /* HDC:L1 + L3 */
329 MOCS_ENTRY(48, 0, L3_3_WB),
330 /* HDC:L1 */
331 MOCS_ENTRY(49, 0, L3_1_UC),
332
333 /* HW Reserved */
334 MOCS_ENTRY(60, 0, L3_1_UC),
335 MOCS_ENTRY(61, 0, L3_1_UC),
336 MOCS_ENTRY(62, 0, L3_1_UC),
337 MOCS_ENTRY(63, 0, L3_1_UC),
338};
339
340static const struct drm_i915_mocs_entry gen12_mocs_table[] = {
341 GEN11_MOCS_ENTRIES,
342 /* Implicitly enable L1 - HDC:L1 + L3 + LLC */
343 MOCS_ENTRY(48,
344 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3),
345 L3_3_WB),
346 /* Implicitly enable L1 - HDC:L1 + L3 */
347 MOCS_ENTRY(49,
348 LE_1_UC | LE_TC_1_LLC,
349 L3_3_WB),
350 /* Implicitly enable L1 - HDC:L1 + LLC */
351 MOCS_ENTRY(50,
352 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3),
353 L3_1_UC),
354 /* Implicitly enable L1 - HDC:L1 */
355 MOCS_ENTRY(51,
356 LE_1_UC | LE_TC_1_LLC,
357 L3_1_UC),
358 /* HW Special Case (CCS) */
359 MOCS_ENTRY(60,
360 LE_3_WB | LE_TC_1_LLC | LE_LRUM(3),
361 L3_1_UC),
362 /* HW Special Case (Displayable) */
363 MOCS_ENTRY(61,
364 LE_1_UC | LE_TC_1_LLC,
365 L3_3_WB),
366};
367
368static const struct drm_i915_mocs_entry dg2_mocs_table[] = {
369 /* UC - Coherent; GO:L3 */
370 MOCS_ENTRY(0, 0, L3_1_UC | L3_LKUP(1)),
371 /* UC - Coherent; GO:Memory */
372 MOCS_ENTRY(1, 0, L3_1_UC | L3_GLBGO(1) | L3_LKUP(1)),
373 /* UC - Non-Coherent; GO:Memory */
374 MOCS_ENTRY(2, 0, L3_1_UC | L3_GLBGO(1)),
375
376 /* WB - LC */
377 MOCS_ENTRY(3, 0, L3_3_WB | L3_LKUP(1)),
378};
379
380static const struct drm_i915_mocs_entry mtl_mocs_table[] = {
381 /* Error - Reserved for Non-Use */
382 MOCS_ENTRY(0,
383 IG_PAT(0),
384 L3_LKUP(1) | L3_3_WB),
385 /* Cached - L3 + L4 */
386 MOCS_ENTRY(1,
387 IG_PAT(1),
388 L3_LKUP(1) | L3_3_WB),
389 /* L4 - GO:L3 */
390 MOCS_ENTRY(2,
391 IG_PAT(1),
392 L3_LKUP(1) | L3_1_UC),
393 /* Uncached - GO:L3 */
394 MOCS_ENTRY(3,
395 IG_PAT(1) | L4_3_UC,
396 L3_LKUP(1) | L3_1_UC),
397 /* L4 - GO:Mem */
398 MOCS_ENTRY(4,
399 IG_PAT(1),
400 L3_LKUP(1) | L3_GLBGO(1) | L3_1_UC),
401 /* Uncached - GO:Mem */
402 MOCS_ENTRY(5,
403 IG_PAT(1) | L4_3_UC,
404 L3_LKUP(1) | L3_GLBGO(1) | L3_1_UC),
405 /* L4 - L3:NoLKUP; GO:L3 */
406 MOCS_ENTRY(6,
407 IG_PAT(1),
408 L3_1_UC),
409 /* Uncached - L3:NoLKUP; GO:L3 */
410 MOCS_ENTRY(7,
411 IG_PAT(1) | L4_3_UC,
412 L3_1_UC),
413 /* L4 - L3:NoLKUP; GO:Mem */
414 MOCS_ENTRY(8,
415 IG_PAT(1),
416 L3_GLBGO(1) | L3_1_UC),
417 /* Uncached - L3:NoLKUP; GO:Mem */
418 MOCS_ENTRY(9,
419 IG_PAT(1) | L4_3_UC,
420 L3_GLBGO(1) | L3_1_UC),
421 /* Display - L3; L4:WT */
422 MOCS_ENTRY(14,
423 IG_PAT(1) | L4_1_WT,
424 L3_LKUP(1) | L3_3_WB),
425 /* CCS - Non-Displayable */
426 MOCS_ENTRY(15,
427 IG_PAT(1),
428 L3_GLBGO(1) | L3_1_UC),
429};
430
431enum {
432 HAS_GLOBAL_MOCS = BIT(0),
433 HAS_ENGINE_MOCS = BIT(1),
434 HAS_RENDER_L3CC = BIT(2),
435};
436
437static bool has_l3cc(const struct drm_i915_private *i915)
438{
439 return true;
440}
441
442static bool has_global_mocs(const struct drm_i915_private *i915)
443{
444 return HAS_GLOBAL_MOCS_REGISTERS(i915);
445}
446
447static bool has_mocs(const struct drm_i915_private *i915)
448{
449 return !IS_DGFX(i915);
450}
451
452static unsigned int get_mocs_settings(struct drm_i915_private *i915,
453 struct drm_i915_mocs_table *table)
454{
455 unsigned int flags;
456
457 memset(s: table, c: 0, n: sizeof(struct drm_i915_mocs_table));
458
459 table->unused_entries_index = I915_MOCS_PTE;
460 if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 74))) {
461 table->size = ARRAY_SIZE(mtl_mocs_table);
462 table->table = mtl_mocs_table;
463 table->n_entries = MTL_NUM_MOCS_ENTRIES;
464 table->uc_index = 9;
465 table->unused_entries_index = 1;
466 } else if (IS_DG2(i915)) {
467 table->size = ARRAY_SIZE(dg2_mocs_table);
468 table->table = dg2_mocs_table;
469 table->uc_index = 1;
470 table->n_entries = GEN9_NUM_MOCS_ENTRIES;
471 table->unused_entries_index = 3;
472 } else if (IS_DG1(i915)) {
473 table->size = ARRAY_SIZE(dg1_mocs_table);
474 table->table = dg1_mocs_table;
475 table->uc_index = 1;
476 table->n_entries = GEN9_NUM_MOCS_ENTRIES;
477 table->uc_index = 1;
478 table->unused_entries_index = 5;
479 } else if (IS_TIGERLAKE(i915) || IS_ROCKETLAKE(i915)) {
480 /* For TGL/RKL, Can't be changed now for ABI reasons */
481 table->size = ARRAY_SIZE(tgl_mocs_table);
482 table->table = tgl_mocs_table;
483 table->n_entries = GEN9_NUM_MOCS_ENTRIES;
484 table->uc_index = 3;
485 } else if (GRAPHICS_VER(i915) >= 12) {
486 table->size = ARRAY_SIZE(gen12_mocs_table);
487 table->table = gen12_mocs_table;
488 table->n_entries = GEN9_NUM_MOCS_ENTRIES;
489 table->uc_index = 3;
490 table->unused_entries_index = 2;
491 } else if (GRAPHICS_VER(i915) == 11) {
492 table->size = ARRAY_SIZE(icl_mocs_table);
493 table->table = icl_mocs_table;
494 table->n_entries = GEN9_NUM_MOCS_ENTRIES;
495 } else if (IS_GEN9_BC(i915)) {
496 table->size = ARRAY_SIZE(skl_mocs_table);
497 table->n_entries = GEN9_NUM_MOCS_ENTRIES;
498 table->table = skl_mocs_table;
499 } else if (IS_GEN9_LP(i915)) {
500 table->size = ARRAY_SIZE(broxton_mocs_table);
501 table->n_entries = GEN9_NUM_MOCS_ENTRIES;
502 table->table = broxton_mocs_table;
503 } else {
504 drm_WARN_ONCE(&i915->drm, GRAPHICS_VER(i915) >= 9,
505 "Platform that should have a MOCS table does not.\n");
506 return 0;
507 }
508
509 if (GEM_DEBUG_WARN_ON(table->size > table->n_entries))
510 return 0;
511
512 /* WaDisableSkipCaching:skl,bxt,kbl,glk */
513 if (GRAPHICS_VER(i915) == 9) {
514 int i;
515
516 for (i = 0; i < table->size; i++)
517 if (GEM_DEBUG_WARN_ON(table->table[i].l3cc_value &
518 (L3_ESC(1) | L3_SCC(0x7))))
519 return 0;
520 }
521
522 flags = 0;
523 if (has_mocs(i915)) {
524 if (has_global_mocs(i915))
525 flags |= HAS_GLOBAL_MOCS;
526 else
527 flags |= HAS_ENGINE_MOCS;
528 }
529 if (has_l3cc(i915))
530 flags |= HAS_RENDER_L3CC;
531
532 return flags;
533}
534
535/*
536 * Get control_value from MOCS entry taking into account when it's not used
537 * then if unused_entries_index is non-zero then its value will be returned
538 * otherwise I915_MOCS_PTE's value is returned in this case.
539 */
540static u32 get_entry_control(const struct drm_i915_mocs_table *table,
541 unsigned int index)
542{
543 if (index < table->size && table->table[index].used)
544 return table->table[index].control_value;
545 return table->table[table->unused_entries_index].control_value;
546}
547
548#define for_each_mocs(mocs, t, i) \
549 for (i = 0; \
550 i < (t)->n_entries ? (mocs = get_entry_control((t), i)), 1 : 0;\
551 i++)
552
553static void __init_mocs_table(struct intel_uncore *uncore,
554 const struct drm_i915_mocs_table *table,
555 u32 addr)
556{
557 unsigned int i;
558 u32 mocs;
559
560 drm_WARN_ONCE(&uncore->i915->drm, !table->unused_entries_index,
561 "Unused entries index should have been defined\n");
562 for_each_mocs(mocs, table, i)
563 intel_uncore_write_fw(uncore, _MMIO(addr + i * 4), mocs);
564}
565
566static u32 mocs_offset(const struct intel_engine_cs *engine)
567{
568 static const u32 offset[] = {
569 [RCS0] = __GEN9_RCS0_MOCS0,
570 [VCS0] = __GEN9_VCS0_MOCS0,
571 [VCS1] = __GEN9_VCS1_MOCS0,
572 [VECS0] = __GEN9_VECS0_MOCS0,
573 [BCS0] = __GEN9_BCS0_MOCS0,
574 [VCS2] = __GEN11_VCS2_MOCS0,
575 };
576
577 GEM_BUG_ON(engine->id >= ARRAY_SIZE(offset));
578 return offset[engine->id];
579}
580
581static void init_mocs_table(struct intel_engine_cs *engine,
582 const struct drm_i915_mocs_table *table)
583{
584 __init_mocs_table(uncore: engine->uncore, table, addr: mocs_offset(engine));
585}
586
587/*
588 * Get l3cc_value from MOCS entry taking into account when it's not used
589 * then if unused_entries_index is not zero then its value will be returned
590 * otherwise I915_MOCS_PTE's value is returned in this case.
591 */
592static u16 get_entry_l3cc(const struct drm_i915_mocs_table *table,
593 unsigned int index)
594{
595 if (index < table->size && table->table[index].used)
596 return table->table[index].l3cc_value;
597 return table->table[table->unused_entries_index].l3cc_value;
598}
599
600static u32 l3cc_combine(u16 low, u16 high)
601{
602 return low | (u32)high << 16;
603}
604
605#define for_each_l3cc(l3cc, t, i) \
606 for (i = 0; \
607 i < ((t)->n_entries + 1) / 2 ? \
608 (l3cc = l3cc_combine(get_entry_l3cc((t), 2 * i), \
609 get_entry_l3cc((t), 2 * i + 1))), 1 : \
610 0; \
611 i++)
612
613static void init_l3cc_table(struct intel_gt *gt,
614 const struct drm_i915_mocs_table *table)
615{
616 unsigned long flags;
617 unsigned int i;
618 u32 l3cc;
619
620 intel_gt_mcr_lock(gt, flags: &flags);
621 for_each_l3cc(l3cc, table, i)
622 if (GRAPHICS_VER_FULL(gt->i915) >= IP_VER(12, 55))
623 intel_gt_mcr_multicast_write_fw(gt, XEHP_LNCFCMOCS(i), value: l3cc);
624 else
625 intel_uncore_write_fw(gt->uncore, GEN9_LNCFCMOCS(i), l3cc);
626 intel_gt_mcr_unlock(gt, flags);
627}
628
629void intel_mocs_init_engine(struct intel_engine_cs *engine)
630{
631 struct drm_i915_mocs_table table;
632 unsigned int flags;
633
634 /* Called under a blanket forcewake */
635 assert_forcewakes_active(uncore: engine->uncore, fw_domains: FORCEWAKE_ALL);
636
637 flags = get_mocs_settings(i915: engine->i915, table: &table);
638 if (!flags)
639 return;
640
641 /* Platforms with global MOCS do not need per-engine initialization. */
642 if (flags & HAS_ENGINE_MOCS)
643 init_mocs_table(engine, table: &table);
644
645 if (flags & HAS_RENDER_L3CC && engine->class == RENDER_CLASS)
646 init_l3cc_table(gt: engine->gt, table: &table);
647}
648
649static u32 global_mocs_offset(void)
650{
651 return i915_mmio_reg_offset(GEN12_GLOBAL_MOCS(0));
652}
653
654void intel_set_mocs_index(struct intel_gt *gt)
655{
656 struct drm_i915_mocs_table table;
657
658 get_mocs_settings(i915: gt->i915, table: &table);
659 gt->mocs.uc_index = table.uc_index;
660 if (HAS_L3_CCS_READ(gt->i915))
661 gt->mocs.wb_index = table.wb_index;
662}
663
664void intel_mocs_init(struct intel_gt *gt)
665{
666 struct drm_i915_mocs_table table;
667 unsigned int flags;
668
669 /*
670 * LLC and eDRAM control values are not applicable to dgfx
671 */
672 flags = get_mocs_settings(i915: gt->i915, table: &table);
673 if (flags & HAS_GLOBAL_MOCS)
674 __init_mocs_table(uncore: gt->uncore, table: &table, addr: global_mocs_offset());
675
676 /*
677 * Initialize the L3CC table as part of mocs initialization to make
678 * sure the LNCFCMOCSx registers are programmed for the subsequent
679 * memory transactions including guc transactions
680 */
681 if (flags & HAS_RENDER_L3CC)
682 init_l3cc_table(gt, table: &table);
683}
684
685#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
686#include "selftest_mocs.c"
687#endif
688