Linux Audio

Check our new training course

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