xref: /linux/drivers/gpu/drm/xe/xe_reg_sr.c (revision 6647e2fe23f595dc46780b7cc26be872ca168643)
1dd08ebf6SMatthew Brost // SPDX-License-Identifier: MIT
2dd08ebf6SMatthew Brost /*
3dd08ebf6SMatthew Brost  * Copyright © 2022 Intel Corporation
4dd08ebf6SMatthew Brost  */
5dd08ebf6SMatthew Brost 
6dd08ebf6SMatthew Brost #include "xe_reg_sr.h"
7dd08ebf6SMatthew Brost 
8dd08ebf6SMatthew Brost #include <linux/align.h>
9dd08ebf6SMatthew Brost #include <linux/string_helpers.h>
10dd08ebf6SMatthew Brost #include <linux/xarray.h>
11dd08ebf6SMatthew Brost 
12dd08ebf6SMatthew Brost #include <drm/drm_managed.h>
13ea9f879dSLucas De Marchi #include <drm/drm_print.h>
14dd08ebf6SMatthew Brost 
15b79e8fd9SLucas De Marchi #include "regs/xe_engine_regs.h"
16226bfec8SLucas De Marchi #include "regs/xe_gt_regs.h"
17dd08ebf6SMatthew Brost #include "xe_device_types.h"
18dd08ebf6SMatthew Brost #include "xe_force_wake.h"
19dd08ebf6SMatthew Brost #include "xe_gt.h"
20dd08ebf6SMatthew Brost #include "xe_gt_mcr.h"
21dd08ebf6SMatthew Brost #include "xe_macros.h"
22dd08ebf6SMatthew Brost #include "xe_mmio.h"
23d855d224SLucas De Marchi #include "xe_reg_whitelist.h"
24ea9f879dSLucas De Marchi #include "xe_rtp_types.h"
25dd08ebf6SMatthew Brost 
26dd08ebf6SMatthew Brost #define XE_REG_SR_GROW_STEP_DEFAULT	16
27dd08ebf6SMatthew Brost 
28dd08ebf6SMatthew Brost static void reg_sr_fini(struct drm_device *drm, void *arg)
29dd08ebf6SMatthew Brost {
30dd08ebf6SMatthew Brost 	struct xe_reg_sr *sr = arg;
31dd08ebf6SMatthew Brost 
32dd08ebf6SMatthew Brost 	xa_destroy(&sr->xa);
33dd08ebf6SMatthew Brost 	kfree(sr->pool.arr);
34dd08ebf6SMatthew Brost 	memset(&sr->pool, 0, sizeof(sr->pool));
35dd08ebf6SMatthew Brost }
36dd08ebf6SMatthew Brost 
37dd08ebf6SMatthew Brost int xe_reg_sr_init(struct xe_reg_sr *sr, const char *name, struct xe_device *xe)
38dd08ebf6SMatthew Brost {
39dd08ebf6SMatthew Brost 	xa_init(&sr->xa);
40dd08ebf6SMatthew Brost 	memset(&sr->pool, 0, sizeof(sr->pool));
41dd08ebf6SMatthew Brost 	sr->pool.grow_step = XE_REG_SR_GROW_STEP_DEFAULT;
42dd08ebf6SMatthew Brost 	sr->name = name;
43dd08ebf6SMatthew Brost 
44dd08ebf6SMatthew Brost 	return drmm_add_action_or_reset(&xe->drm, reg_sr_fini, sr);
45dd08ebf6SMatthew Brost }
46dd08ebf6SMatthew Brost 
47dd08ebf6SMatthew Brost static struct xe_reg_sr_entry *alloc_entry(struct xe_reg_sr *sr)
48dd08ebf6SMatthew Brost {
49dd08ebf6SMatthew Brost 	if (sr->pool.used == sr->pool.allocated) {
50dd08ebf6SMatthew Brost 		struct xe_reg_sr_entry *arr;
51dd08ebf6SMatthew Brost 
52dd08ebf6SMatthew Brost 		arr = krealloc_array(sr->pool.arr,
53dd08ebf6SMatthew Brost 				     ALIGN(sr->pool.allocated + 1, sr->pool.grow_step),
54dd08ebf6SMatthew Brost 				     sizeof(*arr), GFP_KERNEL);
55dd08ebf6SMatthew Brost 		if (!arr)
56dd08ebf6SMatthew Brost 			return NULL;
57dd08ebf6SMatthew Brost 
58dd08ebf6SMatthew Brost 		sr->pool.arr = arr;
59dd08ebf6SMatthew Brost 		sr->pool.allocated += sr->pool.grow_step;
60dd08ebf6SMatthew Brost 	}
61dd08ebf6SMatthew Brost 
62dd08ebf6SMatthew Brost 	return &sr->pool.arr[sr->pool.used++];
63dd08ebf6SMatthew Brost }
64dd08ebf6SMatthew Brost 
65dd08ebf6SMatthew Brost static bool compatible_entries(const struct xe_reg_sr_entry *e1,
66dd08ebf6SMatthew Brost 			       const struct xe_reg_sr_entry *e2)
67dd08ebf6SMatthew Brost {
68dd08ebf6SMatthew Brost 	/*
69dd08ebf6SMatthew Brost 	 * Don't allow overwriting values: clr_bits/set_bits should be disjoint
70dd08ebf6SMatthew Brost 	 * when operating in the same register
71dd08ebf6SMatthew Brost 	 */
72dd08ebf6SMatthew Brost 	if (e1->clr_bits & e2->clr_bits || e1->set_bits & e2->set_bits ||
73dd08ebf6SMatthew Brost 	    e1->clr_bits & e2->set_bits || e1->set_bits & e2->clr_bits)
74dd08ebf6SMatthew Brost 		return false;
75dd08ebf6SMatthew Brost 
76dd08ebf6SMatthew Brost 	if (e1->masked_reg != e2->masked_reg)
77dd08ebf6SMatthew Brost 		return false;
78dd08ebf6SMatthew Brost 
79dd08ebf6SMatthew Brost 	if (e1->reg_type != e2->reg_type)
80dd08ebf6SMatthew Brost 		return false;
81dd08ebf6SMatthew Brost 
82dd08ebf6SMatthew Brost 	return true;
83dd08ebf6SMatthew Brost }
84dd08ebf6SMatthew Brost 
85dd08ebf6SMatthew Brost int xe_reg_sr_add(struct xe_reg_sr *sr, u32 reg,
86dd08ebf6SMatthew Brost 		  const struct xe_reg_sr_entry *e)
87dd08ebf6SMatthew Brost {
88dd08ebf6SMatthew Brost 	unsigned long idx = reg;
89dd08ebf6SMatthew Brost 	struct xe_reg_sr_entry *pentry = xa_load(&sr->xa, idx);
90dd08ebf6SMatthew Brost 	int ret;
91dd08ebf6SMatthew Brost 
92dd08ebf6SMatthew Brost 	if (pentry) {
93dd08ebf6SMatthew Brost 		if (!compatible_entries(pentry, e)) {
94dd08ebf6SMatthew Brost 			ret = -EINVAL;
95dd08ebf6SMatthew Brost 			goto fail;
96dd08ebf6SMatthew Brost 		}
97dd08ebf6SMatthew Brost 
98dd08ebf6SMatthew Brost 		pentry->clr_bits |= e->clr_bits;
99dd08ebf6SMatthew Brost 		pentry->set_bits |= e->set_bits;
100dd08ebf6SMatthew Brost 		pentry->read_mask |= e->read_mask;
101dd08ebf6SMatthew Brost 
102dd08ebf6SMatthew Brost 		return 0;
103dd08ebf6SMatthew Brost 	}
104dd08ebf6SMatthew Brost 
105dd08ebf6SMatthew Brost 	pentry = alloc_entry(sr);
106dd08ebf6SMatthew Brost 	if (!pentry) {
107dd08ebf6SMatthew Brost 		ret = -ENOMEM;
108dd08ebf6SMatthew Brost 		goto fail;
109dd08ebf6SMatthew Brost 	}
110dd08ebf6SMatthew Brost 
111dd08ebf6SMatthew Brost 	*pentry = *e;
112dd08ebf6SMatthew Brost 	ret = xa_err(xa_store(&sr->xa, idx, pentry, GFP_KERNEL));
113dd08ebf6SMatthew Brost 	if (ret)
114dd08ebf6SMatthew Brost 		goto fail;
115dd08ebf6SMatthew Brost 
116dd08ebf6SMatthew Brost 	return 0;
117dd08ebf6SMatthew Brost 
118dd08ebf6SMatthew Brost fail:
119dd08ebf6SMatthew Brost 	DRM_ERROR("Discarding save-restore reg %04lx (clear: %08x, set: %08x, masked: %s): ret=%d\n",
120dd08ebf6SMatthew Brost 		  idx, e->clr_bits, e->set_bits,
121dd08ebf6SMatthew Brost 		  str_yes_no(e->masked_reg), ret);
122dd08ebf6SMatthew Brost 
123dd08ebf6SMatthew Brost 	return ret;
124dd08ebf6SMatthew Brost }
125dd08ebf6SMatthew Brost 
126dd08ebf6SMatthew Brost static void apply_one_mmio(struct xe_gt *gt, u32 reg,
127dd08ebf6SMatthew Brost 			   struct xe_reg_sr_entry *entry)
128dd08ebf6SMatthew Brost {
129dd08ebf6SMatthew Brost 	struct xe_device *xe = gt_to_xe(gt);
130dd08ebf6SMatthew Brost 	u32 val;
131dd08ebf6SMatthew Brost 
132dd08ebf6SMatthew Brost 	/*
133dd08ebf6SMatthew Brost 	 * If this is a masked register, need to figure what goes on the upper
134dd08ebf6SMatthew Brost 	 * 16 bits: it's either the clr_bits (when using FIELD_SET and WR) or
135dd08ebf6SMatthew Brost 	 * the set_bits, when using SET.
136dd08ebf6SMatthew Brost 	 *
137dd08ebf6SMatthew Brost 	 * When it's not masked, we have to read it from hardware, unless we are
138dd08ebf6SMatthew Brost 	 * supposed to set all bits.
139dd08ebf6SMatthew Brost 	 */
140dd08ebf6SMatthew Brost 	if (entry->masked_reg)
141dd08ebf6SMatthew Brost 		val = (entry->clr_bits ?: entry->set_bits << 16);
142dd08ebf6SMatthew Brost 	else if (entry->clr_bits + 1)
143dd08ebf6SMatthew Brost 		val = (entry->reg_type == XE_RTP_REG_MCR ?
144dd08ebf6SMatthew Brost 		       xe_gt_mcr_unicast_read_any(gt, MCR_REG(reg)) :
145dd08ebf6SMatthew Brost 		       xe_mmio_read32(gt, reg)) & (~entry->clr_bits);
146dd08ebf6SMatthew Brost 	else
147dd08ebf6SMatthew Brost 		val = 0;
148dd08ebf6SMatthew Brost 
149dd08ebf6SMatthew Brost 	/*
150dd08ebf6SMatthew Brost 	 * TODO: add selftest to validate all tables, regardless of platform:
151dd08ebf6SMatthew Brost 	 *   - Masked registers can't have set_bits with upper bits set
152dd08ebf6SMatthew Brost 	 *   - set_bits must be contained in clr_bits
153dd08ebf6SMatthew Brost 	 */
154dd08ebf6SMatthew Brost 	val |= entry->set_bits;
155dd08ebf6SMatthew Brost 
156dd08ebf6SMatthew Brost 	drm_dbg(&xe->drm, "REG[0x%x] = 0x%08x", reg, val);
157dd08ebf6SMatthew Brost 
158dd08ebf6SMatthew Brost 	if (entry->reg_type == XE_RTP_REG_MCR)
159dd08ebf6SMatthew Brost 		xe_gt_mcr_multicast_write(gt, MCR_REG(reg), val);
160dd08ebf6SMatthew Brost 	else
161dd08ebf6SMatthew Brost 		xe_mmio_write32(gt, reg, val);
162dd08ebf6SMatthew Brost }
163dd08ebf6SMatthew Brost 
164dd08ebf6SMatthew Brost void xe_reg_sr_apply_mmio(struct xe_reg_sr *sr, struct xe_gt *gt)
165dd08ebf6SMatthew Brost {
166dd08ebf6SMatthew Brost 	struct xe_device *xe = gt_to_xe(gt);
167dd08ebf6SMatthew Brost 	struct xe_reg_sr_entry *entry;
168dd08ebf6SMatthew Brost 	unsigned long reg;
169dd08ebf6SMatthew Brost 	int err;
170dd08ebf6SMatthew Brost 
1715be84050SLucas De Marchi 	if (xa_empty(&sr->xa))
1725be84050SLucas De Marchi 		return;
1735be84050SLucas De Marchi 
174dd08ebf6SMatthew Brost 	drm_dbg(&xe->drm, "Applying %s save-restore MMIOs\n", sr->name);
175dd08ebf6SMatthew Brost 
176dd08ebf6SMatthew Brost 	err = xe_force_wake_get(&gt->mmio.fw, XE_FORCEWAKE_ALL);
177dd08ebf6SMatthew Brost 	if (err)
178dd08ebf6SMatthew Brost 		goto err_force_wake;
179dd08ebf6SMatthew Brost 
180dd08ebf6SMatthew Brost 	xa_for_each(&sr->xa, reg, entry)
181dd08ebf6SMatthew Brost 		apply_one_mmio(gt, reg, entry);
182dd08ebf6SMatthew Brost 
183dd08ebf6SMatthew Brost 	err = xe_force_wake_put(&gt->mmio.fw, XE_FORCEWAKE_ALL);
184dd08ebf6SMatthew Brost 	XE_WARN_ON(err);
185dd08ebf6SMatthew Brost 
186dd08ebf6SMatthew Brost 	return;
187dd08ebf6SMatthew Brost 
188dd08ebf6SMatthew Brost err_force_wake:
189dd08ebf6SMatthew Brost 	drm_err(&xe->drm, "Failed to apply, err=%d\n", err);
190dd08ebf6SMatthew Brost }
191dd08ebf6SMatthew Brost 
192dd08ebf6SMatthew Brost void xe_reg_sr_apply_whitelist(struct xe_reg_sr *sr, u32 mmio_base,
193dd08ebf6SMatthew Brost 			       struct xe_gt *gt)
194dd08ebf6SMatthew Brost {
195dd08ebf6SMatthew Brost 	struct xe_device *xe = gt_to_xe(gt);
196dd08ebf6SMatthew Brost 	struct xe_reg_sr_entry *entry;
197d855d224SLucas De Marchi 	struct drm_printer p;
198dd08ebf6SMatthew Brost 	unsigned long reg;
199dd08ebf6SMatthew Brost 	unsigned int slot = 0;
200dd08ebf6SMatthew Brost 	int err;
201dd08ebf6SMatthew Brost 
2025be84050SLucas De Marchi 	if (xa_empty(&sr->xa))
2035be84050SLucas De Marchi 		return;
2045be84050SLucas De Marchi 
205dd08ebf6SMatthew Brost 	drm_dbg(&xe->drm, "Whitelisting %s registers\n", sr->name);
206dd08ebf6SMatthew Brost 
207dd08ebf6SMatthew Brost 	err = xe_force_wake_get(&gt->mmio.fw, XE_FORCEWAKE_ALL);
208dd08ebf6SMatthew Brost 	if (err)
209dd08ebf6SMatthew Brost 		goto err_force_wake;
210dd08ebf6SMatthew Brost 
211d855d224SLucas De Marchi 	p = drm_debug_printer(KBUILD_MODNAME);
212dd08ebf6SMatthew Brost 	xa_for_each(&sr->xa, reg, entry) {
213d855d224SLucas De Marchi 		xe_reg_whitelist_print_entry(&p, 0, reg, entry);
214dd08ebf6SMatthew Brost 		xe_mmio_write32(gt, RING_FORCE_TO_NONPRIV(mmio_base, slot).reg,
215dd08ebf6SMatthew Brost 				reg | entry->set_bits);
216dd08ebf6SMatthew Brost 		slot++;
217dd08ebf6SMatthew Brost 	}
218dd08ebf6SMatthew Brost 
219dd08ebf6SMatthew Brost 	/* And clear the rest just in case of garbage */
220dd08ebf6SMatthew Brost 	for (; slot < RING_MAX_NONPRIV_SLOTS; slot++)
221dd08ebf6SMatthew Brost 		xe_mmio_write32(gt, RING_FORCE_TO_NONPRIV(mmio_base, slot).reg,
222dd08ebf6SMatthew Brost 				RING_NOPID(mmio_base).reg);
223dd08ebf6SMatthew Brost 
224dd08ebf6SMatthew Brost 	err = xe_force_wake_put(&gt->mmio.fw, XE_FORCEWAKE_ALL);
225dd08ebf6SMatthew Brost 	XE_WARN_ON(err);
226dd08ebf6SMatthew Brost 
227dd08ebf6SMatthew Brost 	return;
228dd08ebf6SMatthew Brost 
229dd08ebf6SMatthew Brost err_force_wake:
230dd08ebf6SMatthew Brost 	drm_err(&xe->drm, "Failed to apply, err=%d\n", err);
231dd08ebf6SMatthew Brost }
232*6647e2feSLucas De Marchi 
233*6647e2feSLucas De Marchi /**
234*6647e2feSLucas De Marchi  * xe_reg_sr_dump - print all save/restore entries
235*6647e2feSLucas De Marchi  * @sr: Save/restore entries
236*6647e2feSLucas De Marchi  * @p: DRM printer
237*6647e2feSLucas De Marchi  */
238*6647e2feSLucas De Marchi void xe_reg_sr_dump(struct xe_reg_sr *sr, struct drm_printer *p)
239*6647e2feSLucas De Marchi {
240*6647e2feSLucas De Marchi 	struct xe_reg_sr_entry *entry;
241*6647e2feSLucas De Marchi 	unsigned long reg;
242*6647e2feSLucas De Marchi 
243*6647e2feSLucas De Marchi 	if (!sr->name || xa_empty(&sr->xa))
244*6647e2feSLucas De Marchi 		return;
245*6647e2feSLucas De Marchi 
246*6647e2feSLucas De Marchi 	drm_printf(p, "%s\n", sr->name);
247*6647e2feSLucas De Marchi 	xa_for_each(&sr->xa, reg, entry)
248*6647e2feSLucas De Marchi 		drm_printf(p, "\tREG[0x%lx] clr=0x%08x set=0x%08x masked=%s mcr=%s\n",
249*6647e2feSLucas De Marchi 			   reg, entry->clr_bits, entry->set_bits,
250*6647e2feSLucas De Marchi 			   str_yes_no(entry->masked_reg),
251*6647e2feSLucas De Marchi 			   str_yes_no(entry->reg_type == XE_RTP_REG_MCR));
252*6647e2feSLucas De Marchi }
253