drm/i915/gt: Make WARN* drm specific where drm_priv ptr is available
[linux-2.6-block.git] / drivers / gpu / drm / i915 / intel_uncore.c
CommitLineData
907b28c5
CW
1/*
2 * Copyright © 2013 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 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
696173b0
JN
24#include <linux/pm_runtime.h>
25#include <asm/iosf_mbi.h>
26
907b28c5 27#include "i915_drv.h"
a09d9a80 28#include "i915_trace.h"
cf9d2890 29#include "i915_vgpu.h"
696173b0 30#include "intel_pm.h"
6daccb0b 31
83e33372 32#define FORCEWAKE_ACK_TIMEOUT_MS 50
6b07b6d2 33#define GT_FIFO_TIMEOUT_MS 10
907b28c5 34
6cc5ca76 35#define __raw_posting_read(...) ((void)__raw_uncore_read32(__VA_ARGS__))
6af5d92f 36
0a9b2630
DCS
37void
38intel_uncore_mmio_debug_init_early(struct intel_uncore_mmio_debug *mmio_debug)
39{
40 spin_lock_init(&mmio_debug->lock);
41 mmio_debug->unclaimed_mmio_check = 1;
42}
43
44static void mmio_debug_suspend(struct intel_uncore_mmio_debug *mmio_debug)
45{
46 lockdep_assert_held(&mmio_debug->lock);
47
48 /* Save and disable mmio debugging for the user bypass */
49 if (!mmio_debug->suspend_count++) {
50 mmio_debug->saved_mmio_check = mmio_debug->unclaimed_mmio_check;
51 mmio_debug->unclaimed_mmio_check = 0;
52 }
53}
54
55static void mmio_debug_resume(struct intel_uncore_mmio_debug *mmio_debug)
56{
57 lockdep_assert_held(&mmio_debug->lock);
58
59 if (!--mmio_debug->suspend_count)
60 mmio_debug->unclaimed_mmio_check = mmio_debug->saved_mmio_check;
61}
62
05a2fb15
MK
63static const char * const forcewake_domain_names[] = {
64 "render",
65 "blitter",
66 "media",
a89a70a8
DCS
67 "vdbox0",
68 "vdbox1",
69 "vdbox2",
70 "vdbox3",
71 "vebox0",
72 "vebox1",
05a2fb15
MK
73};
74
75const char *
48c1026a 76intel_uncore_forcewake_domain_to_str(const enum forcewake_domain_id id)
05a2fb15 77{
53abb679 78 BUILD_BUG_ON(ARRAY_SIZE(forcewake_domain_names) != FW_DOMAIN_ID_COUNT);
05a2fb15
MK
79
80 if (id >= 0 && id < FW_DOMAIN_ID_COUNT)
81 return forcewake_domain_names[id];
82
83 WARN_ON(id);
84
85 return "unknown";
86}
87
535d8d27 88#define fw_ack(d) readl((d)->reg_ack)
159367bb
DCS
89#define fw_set(d, val) writel(_MASKED_BIT_ENABLE((val)), (d)->reg_set)
90#define fw_clear(d, val) writel(_MASKED_BIT_DISABLE((val)), (d)->reg_set)
535d8d27 91
05a2fb15 92static inline void
159367bb 93fw_domain_reset(const struct intel_uncore_forcewake_domain *d)
907b28c5 94{
26376a7e
OM
95 /*
96 * We don't really know if the powerwell for the forcewake domain we are
97 * trying to reset here does exist at this point (engines could be fused
98 * off in ICL+), so no waiting for acks
99 */
159367bb
DCS
100 /* WaRsClearFWBitsAtReset:bdw,skl */
101 fw_clear(d, 0xffff);
907b28c5
CW
102}
103
05a2fb15
MK
104static inline void
105fw_domain_arm_timer(struct intel_uncore_forcewake_domain *d)
907b28c5 106{
77adbd8f
CW
107 GEM_BUG_ON(d->uncore->fw_domains_timer & d->mask);
108 d->uncore->fw_domains_timer |= d->mask;
a57a4a67
TU
109 d->wake_count++;
110 hrtimer_start_range_ns(&d->timer,
8b0e1953 111 NSEC_PER_MSEC,
a57a4a67
TU
112 NSEC_PER_MSEC,
113 HRTIMER_MODE_REL);
907b28c5
CW
114}
115
71306303 116static inline int
535d8d27 117__wait_for_ack(const struct intel_uncore_forcewake_domain *d,
71306303
MK
118 const u32 ack,
119 const u32 value)
120{
535d8d27 121 return wait_for_atomic((fw_ack(d) & ack) == value,
71306303
MK
122 FORCEWAKE_ACK_TIMEOUT_MS);
123}
124
125static inline int
535d8d27 126wait_ack_clear(const struct intel_uncore_forcewake_domain *d,
71306303
MK
127 const u32 ack)
128{
535d8d27 129 return __wait_for_ack(d, ack, 0);
71306303
MK
130}
131
132static inline int
535d8d27 133wait_ack_set(const struct intel_uncore_forcewake_domain *d,
71306303
MK
134 const u32 ack)
135{
535d8d27 136 return __wait_for_ack(d, ack, ack);
71306303
MK
137}
138
05a2fb15 139static inline void
535d8d27 140fw_domain_wait_ack_clear(const struct intel_uncore_forcewake_domain *d)
907b28c5 141{
18ecc6c5 142 if (wait_ack_clear(d, FORCEWAKE_KERNEL)) {
05a2fb15
MK
143 DRM_ERROR("%s: timed out waiting for forcewake ack to clear.\n",
144 intel_uncore_forcewake_domain_to_str(d->id));
18ecc6c5
CW
145 add_taint_for_CI(TAINT_WARN); /* CI now unreliable */
146 }
05a2fb15 147}
907b28c5 148
71306303
MK
149enum ack_type {
150 ACK_CLEAR = 0,
151 ACK_SET
152};
153
154static int
535d8d27 155fw_domain_wait_ack_with_fallback(const struct intel_uncore_forcewake_domain *d,
71306303
MK
156 const enum ack_type type)
157{
158 const u32 ack_bit = FORCEWAKE_KERNEL;
159 const u32 value = type == ACK_SET ? ack_bit : 0;
160 unsigned int pass;
161 bool ack_detected;
162
163 /*
164 * There is a possibility of driver's wake request colliding
165 * with hardware's own wake requests and that can cause
166 * hardware to not deliver the driver's ack message.
167 *
168 * Use a fallback bit toggle to kick the gpu state machine
169 * in the hope that the original ack will be delivered along with
170 * the fallback ack.
171 *
cc38cae7
OM
172 * This workaround is described in HSDES #1604254524 and it's known as:
173 * WaRsForcewakeAddDelayForAck:skl,bxt,kbl,glk,cfl,cnl,icl
174 * although the name is a bit misleading.
71306303
MK
175 */
176
177 pass = 1;
178 do {
535d8d27 179 wait_ack_clear(d, FORCEWAKE_KERNEL_FALLBACK);
71306303 180
159367bb 181 fw_set(d, FORCEWAKE_KERNEL_FALLBACK);
71306303
MK
182 /* Give gt some time to relax before the polling frenzy */
183 udelay(10 * pass);
535d8d27 184 wait_ack_set(d, FORCEWAKE_KERNEL_FALLBACK);
71306303 185
535d8d27 186 ack_detected = (fw_ack(d) & ack_bit) == value;
71306303 187
159367bb 188 fw_clear(d, FORCEWAKE_KERNEL_FALLBACK);
71306303
MK
189 } while (!ack_detected && pass++ < 10);
190
191 DRM_DEBUG_DRIVER("%s had to use fallback to %s ack, 0x%x (passes %u)\n",
192 intel_uncore_forcewake_domain_to_str(d->id),
193 type == ACK_SET ? "set" : "clear",
535d8d27 194 fw_ack(d),
71306303
MK
195 pass);
196
197 return ack_detected ? 0 : -ETIMEDOUT;
198}
199
200static inline void
535d8d27 201fw_domain_wait_ack_clear_fallback(const struct intel_uncore_forcewake_domain *d)
71306303 202{
535d8d27 203 if (likely(!wait_ack_clear(d, FORCEWAKE_KERNEL)))
71306303
MK
204 return;
205
535d8d27
DCS
206 if (fw_domain_wait_ack_with_fallback(d, ACK_CLEAR))
207 fw_domain_wait_ack_clear(d);
71306303
MK
208}
209
05a2fb15 210static inline void
159367bb 211fw_domain_get(const struct intel_uncore_forcewake_domain *d)
05a2fb15 212{
159367bb 213 fw_set(d, FORCEWAKE_KERNEL);
05a2fb15 214}
907b28c5 215
05a2fb15 216static inline void
535d8d27 217fw_domain_wait_ack_set(const struct intel_uncore_forcewake_domain *d)
05a2fb15 218{
18ecc6c5 219 if (wait_ack_set(d, FORCEWAKE_KERNEL)) {
05a2fb15
MK
220 DRM_ERROR("%s: timed out waiting for forcewake ack request.\n",
221 intel_uncore_forcewake_domain_to_str(d->id));
18ecc6c5
CW
222 add_taint_for_CI(TAINT_WARN); /* CI now unreliable */
223 }
05a2fb15 224}
907b28c5 225
71306303 226static inline void
535d8d27 227fw_domain_wait_ack_set_fallback(const struct intel_uncore_forcewake_domain *d)
71306303 228{
535d8d27 229 if (likely(!wait_ack_set(d, FORCEWAKE_KERNEL)))
71306303
MK
230 return;
231
535d8d27
DCS
232 if (fw_domain_wait_ack_with_fallback(d, ACK_SET))
233 fw_domain_wait_ack_set(d);
71306303
MK
234}
235
05a2fb15 236static inline void
159367bb 237fw_domain_put(const struct intel_uncore_forcewake_domain *d)
05a2fb15 238{
159367bb 239 fw_clear(d, FORCEWAKE_KERNEL);
907b28c5
CW
240}
241
05a2fb15 242static void
f568eeee 243fw_domains_get(struct intel_uncore *uncore, enum forcewake_domains fw_domains)
907b28c5 244{
05a2fb15 245 struct intel_uncore_forcewake_domain *d;
d2dc94bc 246 unsigned int tmp;
907b28c5 247
535d8d27 248 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
d2dc94bc 249
f568eeee 250 for_each_fw_domain_masked(d, fw_domains, uncore, tmp) {
535d8d27 251 fw_domain_wait_ack_clear(d);
159367bb 252 fw_domain_get(d);
05a2fb15 253 }
4e1176dd 254
f568eeee 255 for_each_fw_domain_masked(d, fw_domains, uncore, tmp)
535d8d27 256 fw_domain_wait_ack_set(d);
71306303 257
535d8d27 258 uncore->fw_domains_active |= fw_domains;
71306303
MK
259}
260
261static void
f568eeee 262fw_domains_get_with_fallback(struct intel_uncore *uncore,
71306303
MK
263 enum forcewake_domains fw_domains)
264{
265 struct intel_uncore_forcewake_domain *d;
266 unsigned int tmp;
267
535d8d27 268 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
71306303 269
f568eeee 270 for_each_fw_domain_masked(d, fw_domains, uncore, tmp) {
535d8d27 271 fw_domain_wait_ack_clear_fallback(d);
159367bb 272 fw_domain_get(d);
71306303
MK
273 }
274
f568eeee 275 for_each_fw_domain_masked(d, fw_domains, uncore, tmp)
535d8d27 276 fw_domain_wait_ack_set_fallback(d);
b8473050 277
535d8d27 278 uncore->fw_domains_active |= fw_domains;
05a2fb15 279}
907b28c5 280
05a2fb15 281static void
f568eeee 282fw_domains_put(struct intel_uncore *uncore, enum forcewake_domains fw_domains)
05a2fb15
MK
283{
284 struct intel_uncore_forcewake_domain *d;
d2dc94bc
CW
285 unsigned int tmp;
286
535d8d27 287 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
907b28c5 288
f568eeee 289 for_each_fw_domain_masked(d, fw_domains, uncore, tmp)
159367bb 290 fw_domain_put(d);
b8473050 291
535d8d27 292 uncore->fw_domains_active &= ~fw_domains;
05a2fb15 293}
907b28c5 294
05a2fb15 295static void
f568eeee 296fw_domains_reset(struct intel_uncore *uncore,
577ac4bd 297 enum forcewake_domains fw_domains)
05a2fb15
MK
298{
299 struct intel_uncore_forcewake_domain *d;
d2dc94bc 300 unsigned int tmp;
05a2fb15 301
d2dc94bc 302 if (!fw_domains)
3225b2f9 303 return;
f9b3927a 304
535d8d27 305 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
d2dc94bc 306
f568eeee 307 for_each_fw_domain_masked(d, fw_domains, uncore, tmp)
159367bb 308 fw_domain_reset(d);
05a2fb15
MK
309}
310
6ebc9692 311static inline u32 gt_thread_status(struct intel_uncore *uncore)
a5b22b5e
CW
312{
313 u32 val;
314
6cc5ca76 315 val = __raw_uncore_read32(uncore, GEN6_GT_THREAD_STATUS_REG);
a5b22b5e
CW
316 val &= GEN6_GT_THREAD_STATUS_CORE_MASK;
317
318 return val;
319}
320
6ebc9692 321static void __gen6_gt_wait_for_thread_c0(struct intel_uncore *uncore)
05a2fb15 322{
a5b22b5e
CW
323 /*
324 * w/a for a sporadic read returning 0 by waiting for the GT
05a2fb15
MK
325 * thread to wake up.
326 */
6ebc9692 327 WARN_ONCE(wait_for_atomic_us(gt_thread_status(uncore) == 0, 5000),
a5b22b5e 328 "GT thread status wait timed out\n");
05a2fb15
MK
329}
330
f568eeee 331static void fw_domains_get_with_thread_status(struct intel_uncore *uncore,
48c1026a 332 enum forcewake_domains fw_domains)
05a2fb15 333{
f568eeee 334 fw_domains_get(uncore, fw_domains);
907b28c5 335
05a2fb15 336 /* WaRsForcewakeWaitTC0:snb,ivb,hsw,bdw,vlv */
6ebc9692 337 __gen6_gt_wait_for_thread_c0(uncore);
907b28c5
CW
338}
339
6ebc9692 340static inline u32 fifo_free_entries(struct intel_uncore *uncore)
c32e3788 341{
6cc5ca76 342 u32 count = __raw_uncore_read32(uncore, GTFIFOCTL);
c32e3788
DG
343
344 return count & GT_FIFO_FREE_ENTRIES_MASK;
345}
346
6ebc9692 347static void __gen6_gt_wait_for_fifo(struct intel_uncore *uncore)
907b28c5 348{
6b07b6d2 349 u32 n;
907b28c5 350
5135d64b
D
351 /* On VLV, FIFO will be shared by both SW and HW.
352 * So, we need to read the FREE_ENTRIES everytime */
01385758 353 if (IS_VALLEYVIEW(uncore->i915))
6ebc9692 354 n = fifo_free_entries(uncore);
6b07b6d2 355 else
272c7e52 356 n = uncore->fifo_count;
6b07b6d2
MK
357
358 if (n <= GT_FIFO_NUM_RESERVED_ENTRIES) {
6ebc9692 359 if (wait_for_atomic((n = fifo_free_entries(uncore)) >
6b07b6d2
MK
360 GT_FIFO_NUM_RESERVED_ENTRIES,
361 GT_FIFO_TIMEOUT_MS)) {
d0208cfa
WK
362 drm_dbg(&uncore->i915->drm,
363 "GT_FIFO timeout, entries: %u\n", n);
6b07b6d2 364 return;
907b28c5 365 }
907b28c5 366 }
907b28c5 367
272c7e52 368 uncore->fifo_count = n - 1;
907b28c5
CW
369}
370
a57a4a67
TU
371static enum hrtimer_restart
372intel_uncore_fw_release_timer(struct hrtimer *timer)
38cff0b1 373{
a57a4a67
TU
374 struct intel_uncore_forcewake_domain *domain =
375 container_of(timer, struct intel_uncore_forcewake_domain, timer);
f833cdb0 376 struct intel_uncore *uncore = domain->uncore;
b2cff0db 377 unsigned long irqflags;
38cff0b1 378
eb17af67 379 assert_rpm_device_not_suspended(uncore->rpm);
38cff0b1 380
c9e0c6da
CW
381 if (xchg(&domain->active, false))
382 return HRTIMER_RESTART;
383
f568eeee 384 spin_lock_irqsave(&uncore->lock, irqflags);
b2cff0db 385
77adbd8f
CW
386 uncore->fw_domains_timer &= ~domain->mask;
387
388 GEM_BUG_ON(!domain->wake_count);
b8473050 389 if (--domain->wake_count == 0)
f568eeee 390 uncore->funcs.force_wake_put(uncore, domain->mask);
b2cff0db 391
f568eeee 392 spin_unlock_irqrestore(&uncore->lock, irqflags);
a57a4a67
TU
393
394 return HRTIMER_NORESTART;
38cff0b1
ZW
395}
396
a5266db4 397/* Note callers must have acquired the PUNIT->PMIC bus, before calling this. */
d60996ab 398static unsigned int
f568eeee 399intel_uncore_forcewake_reset(struct intel_uncore *uncore)
38cff0b1 400{
48c1026a 401 unsigned long irqflags;
b2cff0db 402 struct intel_uncore_forcewake_domain *domain;
48c1026a 403 int retry_count = 100;
003342a5 404 enum forcewake_domains fw, active_domains;
38cff0b1 405
a5266db4
HG
406 iosf_mbi_assert_punit_acquired();
407
b2cff0db
CW
408 /* Hold uncore.lock across reset to prevent any register access
409 * with forcewake not set correctly. Wait until all pending
410 * timers are run before holding.
411 */
412 while (1) {
d2dc94bc
CW
413 unsigned int tmp;
414
b2cff0db 415 active_domains = 0;
38cff0b1 416
f568eeee 417 for_each_fw_domain(domain, uncore, tmp) {
c9e0c6da 418 smp_store_mb(domain->active, false);
a57a4a67 419 if (hrtimer_cancel(&domain->timer) == 0)
b2cff0db 420 continue;
38cff0b1 421
a57a4a67 422 intel_uncore_fw_release_timer(&domain->timer);
b2cff0db 423 }
aec347ab 424
f568eeee 425 spin_lock_irqsave(&uncore->lock, irqflags);
b2ec142c 426
f568eeee 427 for_each_fw_domain(domain, uncore, tmp) {
a57a4a67 428 if (hrtimer_active(&domain->timer))
33c582c1 429 active_domains |= domain->mask;
b2cff0db 430 }
3123fcaf 431
b2cff0db
CW
432 if (active_domains == 0)
433 break;
aec347ab 434
b2cff0db 435 if (--retry_count == 0) {
d0208cfa 436 drm_err(&uncore->i915->drm, "Timed out waiting for forcewake timers to finish\n");
b2cff0db
CW
437 break;
438 }
0294ae7b 439
f568eeee 440 spin_unlock_irqrestore(&uncore->lock, irqflags);
b2cff0db
CW
441 cond_resched();
442 }
0294ae7b 443
b2cff0db
CW
444 WARN_ON(active_domains);
445
f568eeee 446 fw = uncore->fw_domains_active;
b2cff0db 447 if (fw)
f568eeee 448 uncore->funcs.force_wake_put(uncore, fw);
ef46e0d2 449
f568eeee
DCS
450 fw_domains_reset(uncore, uncore->fw_domains);
451 assert_forcewakes_inactive(uncore);
b2cff0db 452
f568eeee 453 spin_unlock_irqrestore(&uncore->lock, irqflags);
d60996ab
CW
454
455 return fw; /* track the lost user forcewake domains */
ef46e0d2
DV
456}
457
8a47eb19 458static bool
6ebc9692 459fpga_check_for_unclaimed_mmio(struct intel_uncore *uncore)
8a47eb19
MK
460{
461 u32 dbg;
462
6cc5ca76 463 dbg = __raw_uncore_read32(uncore, FPGA_DBG);
8a47eb19
MK
464 if (likely(!(dbg & FPGA_DBG_RM_NOCLAIM)))
465 return false;
466
6cc5ca76 467 __raw_uncore_write32(uncore, FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
8a47eb19
MK
468
469 return true;
470}
471
8ac3e1bb 472static bool
6ebc9692 473vlv_check_for_unclaimed_mmio(struct intel_uncore *uncore)
8ac3e1bb
MK
474{
475 u32 cer;
476
6cc5ca76 477 cer = __raw_uncore_read32(uncore, CLAIM_ER);
8ac3e1bb
MK
478 if (likely(!(cer & (CLAIM_ER_OVERFLOW | CLAIM_ER_CTR_MASK))))
479 return false;
480
6cc5ca76 481 __raw_uncore_write32(uncore, CLAIM_ER, CLAIM_ER_CLR);
8ac3e1bb
MK
482
483 return true;
484}
485
a338908c 486static bool
6ebc9692 487gen6_check_for_fifo_debug(struct intel_uncore *uncore)
a338908c
MK
488{
489 u32 fifodbg;
490
6cc5ca76 491 fifodbg = __raw_uncore_read32(uncore, GTFIFODBG);
a338908c
MK
492
493 if (unlikely(fifodbg)) {
d0208cfa 494 drm_dbg(&uncore->i915->drm, "GTFIFODBG = 0x08%x\n", fifodbg);
6cc5ca76 495 __raw_uncore_write32(uncore, GTFIFODBG, fifodbg);
a338908c
MK
496 }
497
498 return fifodbg;
499}
500
8ac3e1bb 501static bool
2cf7bf6f 502check_for_unclaimed_mmio(struct intel_uncore *uncore)
8ac3e1bb 503{
a338908c
MK
504 bool ret = false;
505
0a9b2630
DCS
506 lockdep_assert_held(&uncore->debug->lock);
507
508 if (uncore->debug->suspend_count)
509 return false;
510
2cf7bf6f 511 if (intel_uncore_has_fpga_dbg_unclaimed(uncore))
6ebc9692 512 ret |= fpga_check_for_unclaimed_mmio(uncore);
8ac3e1bb 513
2cf7bf6f 514 if (intel_uncore_has_dbg_unclaimed(uncore))
6ebc9692 515 ret |= vlv_check_for_unclaimed_mmio(uncore);
a338908c 516
2cf7bf6f 517 if (intel_uncore_has_fifo(uncore))
6ebc9692 518 ret |= gen6_check_for_fifo_debug(uncore);
8ac3e1bb 519
a338908c 520 return ret;
8ac3e1bb
MK
521}
522
2e81bc61
DCS
523static void forcewake_early_sanitize(struct intel_uncore *uncore,
524 unsigned int restore_forcewake)
f9b3927a 525{
2e81bc61 526 GEM_BUG_ON(!intel_uncore_has_forcewake(uncore));
907b28c5 527
a04f90a3 528 /* WaDisableShadowRegForCpd:chv */
01385758 529 if (IS_CHERRYVIEW(uncore->i915)) {
6cc5ca76
DCS
530 __raw_uncore_write32(uncore, GTFIFOCTL,
531 __raw_uncore_read32(uncore, GTFIFOCTL) |
532 GT_FIFO_CTL_BLOCK_ALL_POLICY_STALL |
533 GT_FIFO_CTL_RC6_POLICY_STALL);
a04f90a3
D
534 }
535
a5266db4 536 iosf_mbi_punit_acquire();
f7de5027 537 intel_uncore_forcewake_reset(uncore);
d60996ab 538 if (restore_forcewake) {
f7de5027
DCS
539 spin_lock_irq(&uncore->lock);
540 uncore->funcs.force_wake_get(uncore, restore_forcewake);
541
2cf7bf6f 542 if (intel_uncore_has_fifo(uncore))
6ebc9692 543 uncore->fifo_count = fifo_free_entries(uncore);
f7de5027 544 spin_unlock_irq(&uncore->lock);
d60996ab 545 }
a5266db4 546 iosf_mbi_punit_release();
521198a2
MK
547}
548
f7de5027 549void intel_uncore_suspend(struct intel_uncore *uncore)
ed493883 550{
2e81bc61
DCS
551 if (!intel_uncore_has_forcewake(uncore))
552 return;
553
a5266db4
HG
554 iosf_mbi_punit_acquire();
555 iosf_mbi_unregister_pmic_bus_access_notifier_unlocked(
f7de5027
DCS
556 &uncore->pmic_bus_access_nb);
557 uncore->fw_domains_saved = intel_uncore_forcewake_reset(uncore);
a5266db4 558 iosf_mbi_punit_release();
68f60946
HG
559}
560
f7de5027 561void intel_uncore_resume_early(struct intel_uncore *uncore)
68f60946 562{
d60996ab
CW
563 unsigned int restore_forcewake;
564
2e81bc61 565 if (intel_uncore_unclaimed_mmio(uncore))
d0208cfa 566 drm_dbg(&uncore->i915->drm, "unclaimed mmio detected on resume, clearing\n");
2e81bc61
DCS
567
568 if (!intel_uncore_has_forcewake(uncore))
569 return;
570
f7de5027 571 restore_forcewake = fetch_and_zero(&uncore->fw_domains_saved);
2e81bc61 572 forcewake_early_sanitize(uncore, restore_forcewake);
d60996ab 573
f7de5027 574 iosf_mbi_register_pmic_bus_access_notifier(&uncore->pmic_bus_access_nb);
ed493883
ID
575}
576
f7de5027 577void intel_uncore_runtime_resume(struct intel_uncore *uncore)
bedf4d79 578{
2e81bc61
DCS
579 if (!intel_uncore_has_forcewake(uncore))
580 return;
581
f7de5027 582 iosf_mbi_register_pmic_bus_access_notifier(&uncore->pmic_bus_access_nb);
bedf4d79
HG
583}
584
f568eeee 585static void __intel_uncore_forcewake_get(struct intel_uncore *uncore,
a6111f7b
CW
586 enum forcewake_domains fw_domains)
587{
588 struct intel_uncore_forcewake_domain *domain;
d2dc94bc 589 unsigned int tmp;
a6111f7b 590
f568eeee 591 fw_domains &= uncore->fw_domains;
a6111f7b 592
f568eeee 593 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp) {
c9e0c6da 594 if (domain->wake_count++) {
33c582c1 595 fw_domains &= ~domain->mask;
c9e0c6da
CW
596 domain->active = true;
597 }
598 }
a6111f7b 599
b8473050 600 if (fw_domains)
f568eeee 601 uncore->funcs.force_wake_get(uncore, fw_domains);
a6111f7b
CW
602}
603
59bad947
MK
604/**
605 * intel_uncore_forcewake_get - grab forcewake domain references
3ceea6a1 606 * @uncore: the intel_uncore structure
59bad947
MK
607 * @fw_domains: forcewake domains to get reference on
608 *
609 * This function can be used get GT's forcewake domain references.
610 * Normal register access will handle the forcewake domains automatically.
611 * However if some sequence requires the GT to not power down a particular
612 * forcewake domains this function should be called at the beginning of the
613 * sequence. And subsequently the reference should be dropped by symmetric
614 * call to intel_unforce_forcewake_put(). Usually caller wants all the domains
615 * to be kept awake so the @fw_domains would be then FORCEWAKE_ALL.
907b28c5 616 */
3ceea6a1 617void intel_uncore_forcewake_get(struct intel_uncore *uncore,
48c1026a 618 enum forcewake_domains fw_domains)
907b28c5
CW
619{
620 unsigned long irqflags;
621
f568eeee 622 if (!uncore->funcs.force_wake_get)
ab484f8f
BW
623 return;
624
87b391b9 625 assert_rpm_wakelock_held(uncore->rpm);
c8c8fb33 626
f568eeee
DCS
627 spin_lock_irqsave(&uncore->lock, irqflags);
628 __intel_uncore_forcewake_get(uncore, fw_domains);
629 spin_unlock_irqrestore(&uncore->lock, irqflags);
907b28c5
CW
630}
631
d7a133d8
CW
632/**
633 * intel_uncore_forcewake_user_get - claim forcewake on behalf of userspace
3ceea6a1 634 * @uncore: the intel_uncore structure
d7a133d8
CW
635 *
636 * This function is a wrapper around intel_uncore_forcewake_get() to acquire
637 * the GT powerwell and in the process disable our debugging for the
638 * duration of userspace's bypass.
639 */
3ceea6a1 640void intel_uncore_forcewake_user_get(struct intel_uncore *uncore)
d7a133d8 641{
f568eeee 642 spin_lock_irq(&uncore->lock);
0a9b2630 643 if (!uncore->user_forcewake_count++) {
3ceea6a1 644 intel_uncore_forcewake_get__locked(uncore, FORCEWAKE_ALL);
0a9b2630
DCS
645 spin_lock(&uncore->debug->lock);
646 mmio_debug_suspend(uncore->debug);
647 spin_unlock(&uncore->debug->lock);
d7a133d8 648 }
f568eeee 649 spin_unlock_irq(&uncore->lock);
d7a133d8
CW
650}
651
652/**
653 * intel_uncore_forcewake_user_put - release forcewake on behalf of userspace
3ceea6a1 654 * @uncore: the intel_uncore structure
d7a133d8
CW
655 *
656 * This function complements intel_uncore_forcewake_user_get() and releases
657 * the GT powerwell taken on behalf of the userspace bypass.
658 */
3ceea6a1 659void intel_uncore_forcewake_user_put(struct intel_uncore *uncore)
d7a133d8 660{
f568eeee 661 spin_lock_irq(&uncore->lock);
0a9b2630
DCS
662 if (!--uncore->user_forcewake_count) {
663 spin_lock(&uncore->debug->lock);
664 mmio_debug_resume(uncore->debug);
665
666 if (check_for_unclaimed_mmio(uncore))
01385758 667 dev_info(uncore->i915->drm.dev,
d7a133d8 668 "Invalid mmio detected during user access\n");
0a9b2630 669 spin_unlock(&uncore->debug->lock);
d7a133d8 670
3ceea6a1 671 intel_uncore_forcewake_put__locked(uncore, FORCEWAKE_ALL);
d7a133d8 672 }
f568eeee 673 spin_unlock_irq(&uncore->lock);
d7a133d8
CW
674}
675
59bad947 676/**
a6111f7b 677 * intel_uncore_forcewake_get__locked - grab forcewake domain references
3ceea6a1 678 * @uncore: the intel_uncore structure
a6111f7b 679 * @fw_domains: forcewake domains to get reference on
59bad947 680 *
a6111f7b
CW
681 * See intel_uncore_forcewake_get(). This variant places the onus
682 * on the caller to explicitly handle the dev_priv->uncore.lock spinlock.
907b28c5 683 */
3ceea6a1 684void intel_uncore_forcewake_get__locked(struct intel_uncore *uncore,
a6111f7b
CW
685 enum forcewake_domains fw_domains)
686{
f568eeee
DCS
687 lockdep_assert_held(&uncore->lock);
688
689 if (!uncore->funcs.force_wake_get)
a6111f7b
CW
690 return;
691
f568eeee 692 __intel_uncore_forcewake_get(uncore, fw_domains);
a6111f7b
CW
693}
694
f568eeee 695static void __intel_uncore_forcewake_put(struct intel_uncore *uncore,
a6111f7b 696 enum forcewake_domains fw_domains)
907b28c5 697{
b2cff0db 698 struct intel_uncore_forcewake_domain *domain;
d2dc94bc 699 unsigned int tmp;
907b28c5 700
f568eeee 701 fw_domains &= uncore->fw_domains;
b2cff0db 702
f568eeee 703 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp) {
77adbd8f 704 GEM_BUG_ON(!domain->wake_count);
b2cff0db 705
c9e0c6da
CW
706 if (--domain->wake_count) {
707 domain->active = true;
b2cff0db 708 continue;
c9e0c6da 709 }
b2cff0db 710
05a2fb15 711 fw_domain_arm_timer(domain);
aec347ab 712 }
a6111f7b 713}
dc9fb09c 714
a6111f7b
CW
715/**
716 * intel_uncore_forcewake_put - release a forcewake domain reference
3ceea6a1 717 * @uncore: the intel_uncore structure
a6111f7b
CW
718 * @fw_domains: forcewake domains to put references
719 *
720 * This function drops the device-level forcewakes for specified
721 * domains obtained by intel_uncore_forcewake_get().
722 */
3ceea6a1 723void intel_uncore_forcewake_put(struct intel_uncore *uncore,
a6111f7b
CW
724 enum forcewake_domains fw_domains)
725{
726 unsigned long irqflags;
727
f568eeee 728 if (!uncore->funcs.force_wake_put)
a6111f7b
CW
729 return;
730
f568eeee
DCS
731 spin_lock_irqsave(&uncore->lock, irqflags);
732 __intel_uncore_forcewake_put(uncore, fw_domains);
733 spin_unlock_irqrestore(&uncore->lock, irqflags);
907b28c5
CW
734}
735
a6111f7b
CW
736/**
737 * intel_uncore_forcewake_put__locked - grab forcewake domain references
3ceea6a1 738 * @uncore: the intel_uncore structure
a6111f7b
CW
739 * @fw_domains: forcewake domains to get reference on
740 *
741 * See intel_uncore_forcewake_put(). This variant places the onus
742 * on the caller to explicitly handle the dev_priv->uncore.lock spinlock.
743 */
3ceea6a1 744void intel_uncore_forcewake_put__locked(struct intel_uncore *uncore,
a6111f7b
CW
745 enum forcewake_domains fw_domains)
746{
f568eeee
DCS
747 lockdep_assert_held(&uncore->lock);
748
749 if (!uncore->funcs.force_wake_put)
a6111f7b
CW
750 return;
751
f568eeee 752 __intel_uncore_forcewake_put(uncore, fw_domains);
a6111f7b
CW
753}
754
f568eeee 755void assert_forcewakes_inactive(struct intel_uncore *uncore)
e998c40f 756{
f568eeee 757 if (!uncore->funcs.force_wake_get)
e998c40f
PZ
758 return;
759
f568eeee 760 WARN(uncore->fw_domains_active,
67e64564 761 "Expected all fw_domains to be inactive, but %08x are still on\n",
f568eeee 762 uncore->fw_domains_active);
67e64564
CW
763}
764
f568eeee 765void assert_forcewakes_active(struct intel_uncore *uncore,
67e64564
CW
766 enum forcewake_domains fw_domains)
767{
b7dc9395
CW
768 struct intel_uncore_forcewake_domain *domain;
769 unsigned int tmp;
770
771 if (!IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM))
772 return;
773
f568eeee 774 if (!uncore->funcs.force_wake_get)
67e64564
CW
775 return;
776
15e7facb
CW
777 spin_lock_irq(&uncore->lock);
778
87b391b9 779 assert_rpm_wakelock_held(uncore->rpm);
67e64564 780
f568eeee
DCS
781 fw_domains &= uncore->fw_domains;
782 WARN(fw_domains & ~uncore->fw_domains_active,
67e64564 783 "Expected %08x fw_domains to be active, but %08x are off\n",
f568eeee 784 fw_domains, fw_domains & ~uncore->fw_domains_active);
b7dc9395
CW
785
786 /*
787 * Check that the caller has an explicit wakeref and we don't mistake
788 * it for the auto wakeref.
789 */
b7dc9395 790 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp) {
badf1f27 791 unsigned int actual = READ_ONCE(domain->wake_count);
b7dc9395
CW
792 unsigned int expect = 1;
793
77adbd8f 794 if (uncore->fw_domains_timer & domain->mask)
b7dc9395
CW
795 expect++; /* pending automatic release */
796
badf1f27 797 if (WARN(actual < expect,
b7dc9395 798 "Expected domain %d to be held awake by caller, count=%d\n",
badf1f27 799 domain->id, actual))
b7dc9395
CW
800 break;
801 }
15e7facb
CW
802
803 spin_unlock_irq(&uncore->lock);
e998c40f
PZ
804}
805
907b28c5 806/* We give fast paths for the really cool registers */
40181697 807#define NEEDS_FORCE_WAKE(reg) ((reg) < 0x40000)
907b28c5 808
272c7e52 809#define __gen6_reg_read_fw_domains(uncore, offset) \
6863b76c
TU
810({ \
811 enum forcewake_domains __fwd; \
812 if (NEEDS_FORCE_WAKE(offset)) \
813 __fwd = FORCEWAKE_RENDER; \
814 else \
815 __fwd = 0; \
816 __fwd; \
817})
818
9480dbf0 819static int fw_range_cmp(u32 offset, const struct intel_forcewake_range *entry)
91e630b9 820{
91e630b9
TU
821 if (offset < entry->start)
822 return -1;
823 else if (offset > entry->end)
824 return 1;
825 else
826 return 0;
827}
828
9480dbf0
TU
829/* Copied and "macroized" from lib/bsearch.c */
830#define BSEARCH(key, base, num, cmp) ({ \
831 unsigned int start__ = 0, end__ = (num); \
832 typeof(base) result__ = NULL; \
833 while (start__ < end__) { \
834 unsigned int mid__ = start__ + (end__ - start__) / 2; \
835 int ret__ = (cmp)((key), (base) + mid__); \
836 if (ret__ < 0) { \
837 end__ = mid__; \
838 } else if (ret__ > 0) { \
839 start__ = mid__ + 1; \
840 } else { \
841 result__ = (base) + mid__; \
842 break; \
843 } \
844 } \
845 result__; \
846})
847
9fc1117c 848static enum forcewake_domains
cb7ee690 849find_fw_domain(struct intel_uncore *uncore, u32 offset)
9fc1117c 850{
9480dbf0 851 const struct intel_forcewake_range *entry;
9fc1117c 852
9480dbf0 853 entry = BSEARCH(offset,
cb7ee690
DCS
854 uncore->fw_domains_table,
855 uncore->fw_domains_table_entries,
91e630b9 856 fw_range_cmp);
38fb6a40 857
99191427
JL
858 if (!entry)
859 return 0;
860
a89a70a8
DCS
861 /*
862 * The list of FW domains depends on the SKU in gen11+ so we
863 * can't determine it statically. We use FORCEWAKE_ALL and
864 * translate it here to the list of available domains.
865 */
866 if (entry->domains == FORCEWAKE_ALL)
cb7ee690 867 return uncore->fw_domains;
a89a70a8 868
cb7ee690 869 WARN(entry->domains & ~uncore->fw_domains,
99191427 870 "Uninitialized forcewake domain(s) 0x%x accessed at 0x%x\n",
cb7ee690 871 entry->domains & ~uncore->fw_domains, offset);
99191427
JL
872
873 return entry->domains;
9fc1117c
TU
874}
875
876#define GEN_FW_RANGE(s, e, d) \
877 { .start = (s), .end = (e), .domains = (d) }
1938e59a 878
895833bd 879#define HAS_FWTABLE(dev_priv) \
3d16ca58 880 (INTEL_GEN(dev_priv) >= 9 || \
895833bd
TU
881 IS_CHERRYVIEW(dev_priv) || \
882 IS_VALLEYVIEW(dev_priv))
883
b0081239 884/* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
9fc1117c
TU
885static const struct intel_forcewake_range __vlv_fw_ranges[] = {
886 GEN_FW_RANGE(0x2000, 0x3fff, FORCEWAKE_RENDER),
887 GEN_FW_RANGE(0x5000, 0x7fff, FORCEWAKE_RENDER),
888 GEN_FW_RANGE(0xb000, 0x11fff, FORCEWAKE_RENDER),
9fc1117c
TU
889 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
890 GEN_FW_RANGE(0x22000, 0x23fff, FORCEWAKE_MEDIA),
b0081239 891 GEN_FW_RANGE(0x2e000, 0x2ffff, FORCEWAKE_RENDER),
9fc1117c
TU
892 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_MEDIA),
893};
1938e59a 894
272c7e52 895#define __fwtable_reg_read_fw_domains(uncore, offset) \
6863b76c
TU
896({ \
897 enum forcewake_domains __fwd = 0; \
0dd356bb 898 if (NEEDS_FORCE_WAKE((offset))) \
272c7e52 899 __fwd = find_fw_domain(uncore, offset); \
6863b76c
TU
900 __fwd; \
901})
902
272c7e52 903#define __gen11_fwtable_reg_read_fw_domains(uncore, offset) \
c9f8d187 904 find_fw_domain(uncore, offset)
a89a70a8 905
cf82d9dd
MT
906#define __gen12_fwtable_reg_read_fw_domains(uncore, offset) \
907 find_fw_domain(uncore, offset)
908
47188574 909/* *Must* be sorted by offset! See intel_shadow_table_check(). */
6863b76c 910static const i915_reg_t gen8_shadowed_regs[] = {
47188574
TU
911 RING_TAIL(RENDER_RING_BASE), /* 0x2000 (base) */
912 GEN6_RPNSWREQ, /* 0xA008 */
913 GEN6_RC_VIDEO_FREQ, /* 0xA00C */
914 RING_TAIL(GEN6_BSD_RING_BASE), /* 0x12000 (base) */
915 RING_TAIL(VEBOX_RING_BASE), /* 0x1a000 (base) */
916 RING_TAIL(BLT_RING_BASE), /* 0x22000 (base) */
6863b76c
TU
917 /* TODO: Other registers are not yet used */
918};
919
a89a70a8
DCS
920static const i915_reg_t gen11_shadowed_regs[] = {
921 RING_TAIL(RENDER_RING_BASE), /* 0x2000 (base) */
922 GEN6_RPNSWREQ, /* 0xA008 */
923 GEN6_RC_VIDEO_FREQ, /* 0xA00C */
924 RING_TAIL(BLT_RING_BASE), /* 0x22000 (base) */
925 RING_TAIL(GEN11_BSD_RING_BASE), /* 0x1C0000 (base) */
926 RING_TAIL(GEN11_BSD2_RING_BASE), /* 0x1C4000 (base) */
927 RING_TAIL(GEN11_VEBOX_RING_BASE), /* 0x1C8000 (base) */
928 RING_TAIL(GEN11_BSD3_RING_BASE), /* 0x1D0000 (base) */
929 RING_TAIL(GEN11_BSD4_RING_BASE), /* 0x1D4000 (base) */
930 RING_TAIL(GEN11_VEBOX2_RING_BASE), /* 0x1D8000 (base) */
931 /* TODO: Other registers are not yet used */
932};
933
cf82d9dd
MT
934static const i915_reg_t gen12_shadowed_regs[] = {
935 RING_TAIL(RENDER_RING_BASE), /* 0x2000 (base) */
936 GEN6_RPNSWREQ, /* 0xA008 */
937 GEN6_RC_VIDEO_FREQ, /* 0xA00C */
938 RING_TAIL(BLT_RING_BASE), /* 0x22000 (base) */
939 RING_TAIL(GEN11_BSD_RING_BASE), /* 0x1C0000 (base) */
940 RING_TAIL(GEN11_BSD2_RING_BASE), /* 0x1C4000 (base) */
941 RING_TAIL(GEN11_VEBOX_RING_BASE), /* 0x1C8000 (base) */
942 RING_TAIL(GEN11_BSD3_RING_BASE), /* 0x1D0000 (base) */
943 RING_TAIL(GEN11_BSD4_RING_BASE), /* 0x1D4000 (base) */
944 RING_TAIL(GEN11_VEBOX2_RING_BASE), /* 0x1D8000 (base) */
945 /* TODO: Other registers are not yet used */
946};
947
9480dbf0 948static int mmio_reg_cmp(u32 key, const i915_reg_t *reg)
5a659383 949{
9480dbf0 950 u32 offset = i915_mmio_reg_offset(*reg);
5a659383 951
9480dbf0 952 if (key < offset)
5a659383 953 return -1;
9480dbf0 954 else if (key > offset)
5a659383
TU
955 return 1;
956 else
957 return 0;
958}
959
a89a70a8
DCS
960#define __is_genX_shadowed(x) \
961static bool is_gen##x##_shadowed(u32 offset) \
962{ \
963 const i915_reg_t *regs = gen##x##_shadowed_regs; \
964 return BSEARCH(offset, regs, ARRAY_SIZE(gen##x##_shadowed_regs), \
965 mmio_reg_cmp); \
6863b76c
TU
966}
967
a89a70a8
DCS
968__is_genX_shadowed(8)
969__is_genX_shadowed(11)
cf82d9dd 970__is_genX_shadowed(12)
a89a70a8 971
ccb2acea
DCS
972static enum forcewake_domains
973gen6_reg_write_fw_domains(struct intel_uncore *uncore, i915_reg_t reg)
974{
975 return FORCEWAKE_RENDER;
976}
977
272c7e52 978#define __gen8_reg_write_fw_domains(uncore, offset) \
6863b76c
TU
979({ \
980 enum forcewake_domains __fwd; \
981 if (NEEDS_FORCE_WAKE(offset) && !is_gen8_shadowed(offset)) \
982 __fwd = FORCEWAKE_RENDER; \
983 else \
984 __fwd = 0; \
985 __fwd; \
986})
987
b0081239 988/* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
9fc1117c
TU
989static const struct intel_forcewake_range __chv_fw_ranges[] = {
990 GEN_FW_RANGE(0x2000, 0x3fff, FORCEWAKE_RENDER),
b0081239 991 GEN_FW_RANGE(0x4000, 0x4fff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
9fc1117c 992 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
b0081239 993 GEN_FW_RANGE(0x8000, 0x82ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
9fc1117c 994 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
b0081239 995 GEN_FW_RANGE(0x8500, 0x85ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
9fc1117c 996 GEN_FW_RANGE(0x8800, 0x88ff, FORCEWAKE_MEDIA),
b0081239
TU
997 GEN_FW_RANGE(0x9000, 0xafff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
998 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
9fc1117c 999 GEN_FW_RANGE(0xd000, 0xd7ff, FORCEWAKE_MEDIA),
b0081239
TU
1000 GEN_FW_RANGE(0xe000, 0xe7ff, FORCEWAKE_RENDER),
1001 GEN_FW_RANGE(0xf000, 0xffff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
9fc1117c
TU
1002 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
1003 GEN_FW_RANGE(0x1a000, 0x1bfff, FORCEWAKE_MEDIA),
1004 GEN_FW_RANGE(0x1e800, 0x1e9ff, FORCEWAKE_MEDIA),
1005 GEN_FW_RANGE(0x30000, 0x37fff, FORCEWAKE_MEDIA),
9fc1117c 1006};
38fb6a40 1007
272c7e52 1008#define __fwtable_reg_write_fw_domains(uncore, offset) \
6863b76c
TU
1009({ \
1010 enum forcewake_domains __fwd = 0; \
0dd356bb 1011 if (NEEDS_FORCE_WAKE((offset)) && !is_gen8_shadowed(offset)) \
272c7e52 1012 __fwd = find_fw_domain(uncore, offset); \
6863b76c
TU
1013 __fwd; \
1014})
1015
272c7e52 1016#define __gen11_fwtable_reg_write_fw_domains(uncore, offset) \
a89a70a8
DCS
1017({ \
1018 enum forcewake_domains __fwd = 0; \
c9f8d187
MK
1019 const u32 __offset = (offset); \
1020 if (!is_gen11_shadowed(__offset)) \
1021 __fwd = find_fw_domain(uncore, __offset); \
a89a70a8
DCS
1022 __fwd; \
1023})
1024
cf82d9dd
MT
1025#define __gen12_fwtable_reg_write_fw_domains(uncore, offset) \
1026({ \
1027 enum forcewake_domains __fwd = 0; \
1028 const u32 __offset = (offset); \
1029 if (!is_gen12_shadowed(__offset)) \
1030 __fwd = find_fw_domain(uncore, __offset); \
1031 __fwd; \
1032})
1033
b0081239 1034/* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
9fc1117c 1035static const struct intel_forcewake_range __gen9_fw_ranges[] = {
0dd356bb 1036 GEN_FW_RANGE(0x0, 0xaff, FORCEWAKE_BLITTER),
9fc1117c
TU
1037 GEN_FW_RANGE(0xb00, 0x1fff, 0), /* uncore range */
1038 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
0dd356bb 1039 GEN_FW_RANGE(0x2700, 0x2fff, FORCEWAKE_BLITTER),
9fc1117c 1040 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
0dd356bb 1041 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_BLITTER),
9fc1117c 1042 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
0dd356bb 1043 GEN_FW_RANGE(0x8000, 0x812f, FORCEWAKE_BLITTER),
b0081239 1044 GEN_FW_RANGE(0x8130, 0x813f, FORCEWAKE_MEDIA),
9fc1117c 1045 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
0dd356bb 1046 GEN_FW_RANGE(0x8160, 0x82ff, FORCEWAKE_BLITTER),
9fc1117c 1047 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
0dd356bb 1048 GEN_FW_RANGE(0x8500, 0x87ff, FORCEWAKE_BLITTER),
b0081239 1049 GEN_FW_RANGE(0x8800, 0x89ff, FORCEWAKE_MEDIA),
0dd356bb 1050 GEN_FW_RANGE(0x8a00, 0x8bff, FORCEWAKE_BLITTER),
9fc1117c 1051 GEN_FW_RANGE(0x8c00, 0x8cff, FORCEWAKE_RENDER),
0dd356bb 1052 GEN_FW_RANGE(0x8d00, 0x93ff, FORCEWAKE_BLITTER),
9fc1117c 1053 GEN_FW_RANGE(0x9400, 0x97ff, FORCEWAKE_RENDER | FORCEWAKE_MEDIA),
0dd356bb 1054 GEN_FW_RANGE(0x9800, 0xafff, FORCEWAKE_BLITTER),
b0081239 1055 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
78424c92 1056 GEN_FW_RANGE(0xb480, 0xcfff, FORCEWAKE_BLITTER),
9fc1117c 1057 GEN_FW_RANGE(0xd000, 0xd7ff, FORCEWAKE_MEDIA),
0dd356bb 1058 GEN_FW_RANGE(0xd800, 0xdfff, FORCEWAKE_BLITTER),
b0081239 1059 GEN_FW_RANGE(0xe000, 0xe8ff, FORCEWAKE_RENDER),
0dd356bb 1060 GEN_FW_RANGE(0xe900, 0x11fff, FORCEWAKE_BLITTER),
9fc1117c 1061 GEN_FW_RANGE(0x12000, 0x13fff, FORCEWAKE_MEDIA),
0dd356bb 1062 GEN_FW_RANGE(0x14000, 0x19fff, FORCEWAKE_BLITTER),
9fc1117c 1063 GEN_FW_RANGE(0x1a000, 0x1e9ff, FORCEWAKE_MEDIA),
0dd356bb 1064 GEN_FW_RANGE(0x1ea00, 0x243ff, FORCEWAKE_BLITTER),
b0081239 1065 GEN_FW_RANGE(0x24400, 0x247ff, FORCEWAKE_RENDER),
0dd356bb 1066 GEN_FW_RANGE(0x24800, 0x2ffff, FORCEWAKE_BLITTER),
9fc1117c
TU
1067 GEN_FW_RANGE(0x30000, 0x3ffff, FORCEWAKE_MEDIA),
1068};
6863b76c 1069
a89a70a8
DCS
1070/* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
1071static const struct intel_forcewake_range __gen11_fw_ranges[] = {
1072 GEN_FW_RANGE(0x0, 0xaff, FORCEWAKE_BLITTER),
1073 GEN_FW_RANGE(0xb00, 0x1fff, 0), /* uncore range */
1074 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1075 GEN_FW_RANGE(0x2700, 0x2fff, FORCEWAKE_BLITTER),
1076 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1077 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_BLITTER),
1078 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
1079 GEN_FW_RANGE(0x8000, 0x813f, FORCEWAKE_BLITTER),
1080 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
1081 GEN_FW_RANGE(0x8160, 0x82ff, FORCEWAKE_BLITTER),
1082 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1083 GEN_FW_RANGE(0x8500, 0x8bff, FORCEWAKE_BLITTER),
1084 GEN_FW_RANGE(0x8c00, 0x8cff, FORCEWAKE_RENDER),
1085 GEN_FW_RANGE(0x8d00, 0x93ff, FORCEWAKE_BLITTER),
1086 GEN_FW_RANGE(0x9400, 0x97ff, FORCEWAKE_ALL),
1087 GEN_FW_RANGE(0x9800, 0xafff, FORCEWAKE_BLITTER),
1088 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
c9f8d187
MK
1089 GEN_FW_RANGE(0xb480, 0xdeff, FORCEWAKE_BLITTER),
1090 GEN_FW_RANGE(0xdf00, 0xe8ff, FORCEWAKE_RENDER),
1091 GEN_FW_RANGE(0xe900, 0x16dff, FORCEWAKE_BLITTER),
1092 GEN_FW_RANGE(0x16e00, 0x19fff, FORCEWAKE_RENDER),
1093 GEN_FW_RANGE(0x1a000, 0x243ff, FORCEWAKE_BLITTER),
a89a70a8
DCS
1094 GEN_FW_RANGE(0x24400, 0x247ff, FORCEWAKE_RENDER),
1095 GEN_FW_RANGE(0x24800, 0x3ffff, FORCEWAKE_BLITTER),
1096 GEN_FW_RANGE(0x40000, 0x1bffff, 0),
1097 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0),
1098 GEN_FW_RANGE(0x1c4000, 0x1c7fff, FORCEWAKE_MEDIA_VDBOX1),
1099 GEN_FW_RANGE(0x1c8000, 0x1cbfff, FORCEWAKE_MEDIA_VEBOX0),
1100 GEN_FW_RANGE(0x1cc000, 0x1cffff, FORCEWAKE_BLITTER),
1101 GEN_FW_RANGE(0x1d0000, 0x1d3fff, FORCEWAKE_MEDIA_VDBOX2),
1102 GEN_FW_RANGE(0x1d4000, 0x1d7fff, FORCEWAKE_MEDIA_VDBOX3),
1103 GEN_FW_RANGE(0x1d8000, 0x1dbfff, FORCEWAKE_MEDIA_VEBOX1)
1104};
1105
cf82d9dd
MT
1106/* *Must* be sorted by offset ranges! See intel_fw_table_check(). */
1107static const struct intel_forcewake_range __gen12_fw_ranges[] = {
1108 GEN_FW_RANGE(0x0, 0xaff, FORCEWAKE_BLITTER),
1109 GEN_FW_RANGE(0xb00, 0x1fff, 0), /* uncore range */
1110 GEN_FW_RANGE(0x2000, 0x26ff, FORCEWAKE_RENDER),
1111 GEN_FW_RANGE(0x2700, 0x2fff, FORCEWAKE_BLITTER),
1112 GEN_FW_RANGE(0x3000, 0x3fff, FORCEWAKE_RENDER),
1113 GEN_FW_RANGE(0x4000, 0x51ff, FORCEWAKE_BLITTER),
1114 GEN_FW_RANGE(0x5200, 0x7fff, FORCEWAKE_RENDER),
1115 GEN_FW_RANGE(0x8000, 0x813f, FORCEWAKE_BLITTER),
1116 GEN_FW_RANGE(0x8140, 0x815f, FORCEWAKE_RENDER),
1117 GEN_FW_RANGE(0x8160, 0x82ff, FORCEWAKE_BLITTER),
1118 GEN_FW_RANGE(0x8300, 0x84ff, FORCEWAKE_RENDER),
1119 GEN_FW_RANGE(0x8500, 0x8bff, FORCEWAKE_BLITTER),
1120 GEN_FW_RANGE(0x8c00, 0x8cff, FORCEWAKE_RENDER),
1121 GEN_FW_RANGE(0x8d00, 0x93ff, FORCEWAKE_BLITTER),
1122 GEN_FW_RANGE(0x9400, 0x97ff, FORCEWAKE_ALL),
1123 GEN_FW_RANGE(0x9800, 0xafff, FORCEWAKE_BLITTER),
1124 GEN_FW_RANGE(0xb000, 0xb47f, FORCEWAKE_RENDER),
1125 GEN_FW_RANGE(0xb480, 0xdfff, FORCEWAKE_BLITTER),
1126 GEN_FW_RANGE(0xe000, 0xe8ff, FORCEWAKE_RENDER),
1127 GEN_FW_RANGE(0xe900, 0x147ff, FORCEWAKE_BLITTER),
1128 GEN_FW_RANGE(0x14800, 0x148ff, FORCEWAKE_RENDER),
1129 GEN_FW_RANGE(0x14900, 0x19fff, FORCEWAKE_BLITTER),
1130 GEN_FW_RANGE(0x1a000, 0x1a7ff, FORCEWAKE_RENDER),
1131 GEN_FW_RANGE(0x1a800, 0x1afff, FORCEWAKE_BLITTER),
1132 GEN_FW_RANGE(0x1b000, 0x1bfff, FORCEWAKE_RENDER),
1133 GEN_FW_RANGE(0x1c000, 0x243ff, FORCEWAKE_BLITTER),
1134 GEN_FW_RANGE(0x24400, 0x247ff, FORCEWAKE_RENDER),
1135 GEN_FW_RANGE(0x24800, 0x3ffff, FORCEWAKE_BLITTER),
1136 GEN_FW_RANGE(0x40000, 0x1bffff, 0),
1137 GEN_FW_RANGE(0x1c0000, 0x1c3fff, FORCEWAKE_MEDIA_VDBOX0),
1138 GEN_FW_RANGE(0x1c4000, 0x1c7fff, FORCEWAKE_MEDIA_VDBOX1),
1139 GEN_FW_RANGE(0x1c8000, 0x1cbfff, FORCEWAKE_MEDIA_VEBOX0),
1140 GEN_FW_RANGE(0x1cc000, 0x1cffff, FORCEWAKE_BLITTER),
1141 GEN_FW_RANGE(0x1d0000, 0x1d3fff, FORCEWAKE_MEDIA_VDBOX2),
1142 GEN_FW_RANGE(0x1d4000, 0x1d7fff, FORCEWAKE_MEDIA_VDBOX3),
1143 GEN_FW_RANGE(0x1d8000, 0x1dbfff, FORCEWAKE_MEDIA_VEBOX1)
1144};
1145
907b28c5 1146static void
6ebc9692 1147ilk_dummy_write(struct intel_uncore *uncore)
907b28c5
CW
1148{
1149 /* WaIssueDummyWriteToWakeupFromRC6:ilk Issue a dummy write to wake up
1150 * the chip from rc6 before touching it for real. MI_MODE is masked,
1151 * hence harmless to write 0 into. */
6cc5ca76 1152 __raw_uncore_write32(uncore, MI_MODE, 0);
907b28c5
CW
1153}
1154
1155static void
2cf7bf6f 1156__unclaimed_reg_debug(struct intel_uncore *uncore,
9c053501
MK
1157 const i915_reg_t reg,
1158 const bool read,
1159 const bool before)
907b28c5 1160{
2cf7bf6f 1161 if (WARN(check_for_unclaimed_mmio(uncore) && !before,
dda96033
CW
1162 "Unclaimed %s register 0x%x\n",
1163 read ? "read from" : "write to",
4bd0a25d 1164 i915_mmio_reg_offset(reg)))
4f044a88
MW
1165 /* Only report the first N failures */
1166 i915_modparams.mmio_debug--;
907b28c5
CW
1167}
1168
9c053501 1169static inline void
2cf7bf6f 1170unclaimed_reg_debug(struct intel_uncore *uncore,
9c053501
MK
1171 const i915_reg_t reg,
1172 const bool read,
1173 const bool before)
1174{
4f044a88 1175 if (likely(!i915_modparams.mmio_debug))
9c053501
MK
1176 return;
1177
0a9b2630
DCS
1178 /* interrupts are disabled and re-enabled around uncore->lock usage */
1179 lockdep_assert_held(&uncore->lock);
1180
1181 if (before)
1182 spin_lock(&uncore->debug->lock);
1183
2cf7bf6f 1184 __unclaimed_reg_debug(uncore, reg, read, before);
0a9b2630
DCS
1185
1186 if (!before)
1187 spin_unlock(&uncore->debug->lock);
9c053501
MK
1188}
1189
51f67885 1190#define GEN2_READ_HEADER(x) \
5d738795 1191 u##x val = 0; \
87b391b9 1192 assert_rpm_wakelock_held(uncore->rpm);
5d738795 1193
51f67885 1194#define GEN2_READ_FOOTER \
5d738795
BW
1195 trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
1196 return val
1197
51f67885 1198#define __gen2_read(x) \
0b274481 1199static u##x \
a2b4abfc 1200gen2_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
51f67885 1201 GEN2_READ_HEADER(x); \
6cc5ca76 1202 val = __raw_uncore_read##x(uncore, reg); \
51f67885 1203 GEN2_READ_FOOTER; \
3967018e
BW
1204}
1205
1206#define __gen5_read(x) \
1207static u##x \
a2b4abfc 1208gen5_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
51f67885 1209 GEN2_READ_HEADER(x); \
6ebc9692 1210 ilk_dummy_write(uncore); \
6cc5ca76 1211 val = __raw_uncore_read##x(uncore, reg); \
51f67885 1212 GEN2_READ_FOOTER; \
3967018e
BW
1213}
1214
51f67885
CW
1215__gen5_read(8)
1216__gen5_read(16)
1217__gen5_read(32)
1218__gen5_read(64)
1219__gen2_read(8)
1220__gen2_read(16)
1221__gen2_read(32)
1222__gen2_read(64)
1223
1224#undef __gen5_read
1225#undef __gen2_read
1226
1227#undef GEN2_READ_FOOTER
1228#undef GEN2_READ_HEADER
1229
1230#define GEN6_READ_HEADER(x) \
f0f59a00 1231 u32 offset = i915_mmio_reg_offset(reg); \
51f67885
CW
1232 unsigned long irqflags; \
1233 u##x val = 0; \
87b391b9 1234 assert_rpm_wakelock_held(uncore->rpm); \
272c7e52 1235 spin_lock_irqsave(&uncore->lock, irqflags); \
2cf7bf6f 1236 unclaimed_reg_debug(uncore, reg, true, true)
51f67885
CW
1237
1238#define GEN6_READ_FOOTER \
2cf7bf6f 1239 unclaimed_reg_debug(uncore, reg, true, false); \
272c7e52 1240 spin_unlock_irqrestore(&uncore->lock, irqflags); \
51f67885
CW
1241 trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
1242 return val
1243
f568eeee 1244static noinline void ___force_wake_auto(struct intel_uncore *uncore,
c521b0c8 1245 enum forcewake_domains fw_domains)
b2cff0db
CW
1246{
1247 struct intel_uncore_forcewake_domain *domain;
d2dc94bc
CW
1248 unsigned int tmp;
1249
f568eeee 1250 GEM_BUG_ON(fw_domains & ~uncore->fw_domains);
b2cff0db 1251
f568eeee 1252 for_each_fw_domain_masked(domain, fw_domains, uncore, tmp)
c521b0c8
TU
1253 fw_domain_arm_timer(domain);
1254
f568eeee 1255 uncore->funcs.force_wake_get(uncore, fw_domains);
c521b0c8
TU
1256}
1257
f568eeee 1258static inline void __force_wake_auto(struct intel_uncore *uncore,
c521b0c8
TU
1259 enum forcewake_domains fw_domains)
1260{
77adbd8f 1261 GEM_BUG_ON(!fw_domains);
b2cff0db 1262
003342a5 1263 /* Turn on all requested but inactive supported forcewake domains. */
f568eeee
DCS
1264 fw_domains &= uncore->fw_domains;
1265 fw_domains &= ~uncore->fw_domains_active;
b2cff0db 1266
c521b0c8 1267 if (fw_domains)
f568eeee 1268 ___force_wake_auto(uncore, fw_domains);
b2cff0db
CW
1269}
1270
ccfceda2 1271#define __gen_read(func, x) \
3967018e 1272static u##x \
a2b4abfc 1273func##_read##x(struct intel_uncore *uncore, i915_reg_t reg, bool trace) { \
6863b76c 1274 enum forcewake_domains fw_engine; \
51f67885 1275 GEN6_READ_HEADER(x); \
272c7e52 1276 fw_engine = __##func##_reg_read_fw_domains(uncore, offset); \
6a42d0f4 1277 if (fw_engine) \
272c7e52 1278 __force_wake_auto(uncore, fw_engine); \
6cc5ca76 1279 val = __raw_uncore_read##x(uncore, reg); \
51f67885 1280 GEN6_READ_FOOTER; \
940aece4 1281}
ccb2acea
DCS
1282
1283#define __gen_reg_read_funcs(func) \
1284static enum forcewake_domains \
1285func##_reg_read_fw_domains(struct intel_uncore *uncore, i915_reg_t reg) { \
1286 return __##func##_reg_read_fw_domains(uncore, i915_mmio_reg_offset(reg)); \
1287} \
1288\
1289__gen_read(func, 8) \
1290__gen_read(func, 16) \
1291__gen_read(func, 32) \
1292__gen_read(func, 64)
1293
cf82d9dd 1294__gen_reg_read_funcs(gen12_fwtable);
ccb2acea
DCS
1295__gen_reg_read_funcs(gen11_fwtable);
1296__gen_reg_read_funcs(fwtable);
1297__gen_reg_read_funcs(gen6);
1298
1299#undef __gen_reg_read_funcs
51f67885
CW
1300#undef GEN6_READ_FOOTER
1301#undef GEN6_READ_HEADER
5d738795 1302
51f67885 1303#define GEN2_WRITE_HEADER \
5d738795 1304 trace_i915_reg_rw(true, reg, val, sizeof(val), trace); \
87b391b9 1305 assert_rpm_wakelock_held(uncore->rpm); \
907b28c5 1306
51f67885 1307#define GEN2_WRITE_FOOTER
0d965301 1308
51f67885 1309#define __gen2_write(x) \
0b274481 1310static void \
a2b4abfc 1311gen2_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
51f67885 1312 GEN2_WRITE_HEADER; \
6cc5ca76 1313 __raw_uncore_write##x(uncore, reg, val); \
51f67885 1314 GEN2_WRITE_FOOTER; \
4032ef43
BW
1315}
1316
1317#define __gen5_write(x) \
1318static void \
a2b4abfc 1319gen5_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
51f67885 1320 GEN2_WRITE_HEADER; \
6ebc9692 1321 ilk_dummy_write(uncore); \
6cc5ca76 1322 __raw_uncore_write##x(uncore, reg, val); \
51f67885 1323 GEN2_WRITE_FOOTER; \
4032ef43
BW
1324}
1325
51f67885
CW
1326__gen5_write(8)
1327__gen5_write(16)
1328__gen5_write(32)
51f67885
CW
1329__gen2_write(8)
1330__gen2_write(16)
1331__gen2_write(32)
51f67885
CW
1332
1333#undef __gen5_write
1334#undef __gen2_write
1335
1336#undef GEN2_WRITE_FOOTER
1337#undef GEN2_WRITE_HEADER
1338
1339#define GEN6_WRITE_HEADER \
f0f59a00 1340 u32 offset = i915_mmio_reg_offset(reg); \
51f67885
CW
1341 unsigned long irqflags; \
1342 trace_i915_reg_rw(true, reg, val, sizeof(val), trace); \
87b391b9 1343 assert_rpm_wakelock_held(uncore->rpm); \
272c7e52 1344 spin_lock_irqsave(&uncore->lock, irqflags); \
2cf7bf6f 1345 unclaimed_reg_debug(uncore, reg, false, true)
51f67885
CW
1346
1347#define GEN6_WRITE_FOOTER \
2cf7bf6f 1348 unclaimed_reg_debug(uncore, reg, false, false); \
272c7e52 1349 spin_unlock_irqrestore(&uncore->lock, irqflags)
51f67885 1350
4032ef43
BW
1351#define __gen6_write(x) \
1352static void \
a2b4abfc 1353gen6_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
51f67885 1354 GEN6_WRITE_HEADER; \
a338908c 1355 if (NEEDS_FORCE_WAKE(offset)) \
6ebc9692 1356 __gen6_gt_wait_for_fifo(uncore); \
6cc5ca76 1357 __raw_uncore_write##x(uncore, reg, val); \
51f67885 1358 GEN6_WRITE_FOOTER; \
4032ef43 1359}
ccb2acea
DCS
1360__gen6_write(8)
1361__gen6_write(16)
1362__gen6_write(32)
4032ef43 1363
ccfceda2 1364#define __gen_write(func, x) \
ab2aa47e 1365static void \
a2b4abfc 1366func##_write##x(struct intel_uncore *uncore, i915_reg_t reg, u##x val, bool trace) { \
6863b76c 1367 enum forcewake_domains fw_engine; \
51f67885 1368 GEN6_WRITE_HEADER; \
272c7e52 1369 fw_engine = __##func##_reg_write_fw_domains(uncore, offset); \
6a42d0f4 1370 if (fw_engine) \
272c7e52 1371 __force_wake_auto(uncore, fw_engine); \
6cc5ca76 1372 __raw_uncore_write##x(uncore, reg, val); \
51f67885 1373 GEN6_WRITE_FOOTER; \
1938e59a 1374}
4032ef43 1375
ccb2acea
DCS
1376#define __gen_reg_write_funcs(func) \
1377static enum forcewake_domains \
1378func##_reg_write_fw_domains(struct intel_uncore *uncore, i915_reg_t reg) { \
1379 return __##func##_reg_write_fw_domains(uncore, i915_mmio_reg_offset(reg)); \
1380} \
1381\
1382__gen_write(func, 8) \
1383__gen_write(func, 16) \
1384__gen_write(func, 32)
1385
cf82d9dd 1386__gen_reg_write_funcs(gen12_fwtable);
ccb2acea
DCS
1387__gen_reg_write_funcs(gen11_fwtable);
1388__gen_reg_write_funcs(fwtable);
1389__gen_reg_write_funcs(gen8);
1390
1391#undef __gen_reg_write_funcs
51f67885
CW
1392#undef GEN6_WRITE_FOOTER
1393#undef GEN6_WRITE_HEADER
907b28c5 1394
ccb2acea 1395#define ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, x) \
43d942a7 1396do { \
f7de5027
DCS
1397 (uncore)->funcs.mmio_writeb = x##_write8; \
1398 (uncore)->funcs.mmio_writew = x##_write16; \
1399 (uncore)->funcs.mmio_writel = x##_write32; \
43d942a7
YZ
1400} while (0)
1401
ccb2acea 1402#define ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, x) \
43d942a7 1403do { \
f7de5027
DCS
1404 (uncore)->funcs.mmio_readb = x##_read8; \
1405 (uncore)->funcs.mmio_readw = x##_read16; \
1406 (uncore)->funcs.mmio_readl = x##_read32; \
1407 (uncore)->funcs.mmio_readq = x##_read64; \
43d942a7
YZ
1408} while (0)
1409
ccb2acea
DCS
1410#define ASSIGN_WRITE_MMIO_VFUNCS(uncore, x) \
1411do { \
1412 ASSIGN_RAW_WRITE_MMIO_VFUNCS((uncore), x); \
1413 (uncore)->funcs.write_fw_domains = x##_reg_write_fw_domains; \
1414} while (0)
1415
1416#define ASSIGN_READ_MMIO_VFUNCS(uncore, x) \
1417do { \
1418 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, x); \
1419 (uncore)->funcs.read_fw_domains = x##_reg_read_fw_domains; \
1420} while (0)
05a2fb15 1421
f833cdb0
DCS
1422static int __fw_domain_init(struct intel_uncore *uncore,
1423 enum forcewake_domain_id domain_id,
1424 i915_reg_t reg_set,
1425 i915_reg_t reg_ack)
05a2fb15
MK
1426{
1427 struct intel_uncore_forcewake_domain *d;
1428
f833cdb0
DCS
1429 GEM_BUG_ON(domain_id >= FW_DOMAIN_ID_COUNT);
1430 GEM_BUG_ON(uncore->fw_domain[domain_id]);
05a2fb15 1431
50d84418 1432 if (i915_inject_probe_failure(uncore->i915))
f833cdb0 1433 return -ENOMEM;
05a2fb15 1434
f833cdb0
DCS
1435 d = kzalloc(sizeof(*d), GFP_KERNEL);
1436 if (!d)
1437 return -ENOMEM;
05a2fb15 1438
6e3955a5
CW
1439 WARN_ON(!i915_mmio_reg_valid(reg_set));
1440 WARN_ON(!i915_mmio_reg_valid(reg_ack));
1441
f833cdb0 1442 d->uncore = uncore;
05a2fb15 1443 d->wake_count = 0;
25286aac
DCS
1444 d->reg_set = uncore->regs + i915_mmio_reg_offset(reg_set);
1445 d->reg_ack = uncore->regs + i915_mmio_reg_offset(reg_ack);
05a2fb15 1446
05a2fb15
MK
1447 d->id = domain_id;
1448
33c582c1
TU
1449 BUILD_BUG_ON(FORCEWAKE_RENDER != (1 << FW_DOMAIN_ID_RENDER));
1450 BUILD_BUG_ON(FORCEWAKE_BLITTER != (1 << FW_DOMAIN_ID_BLITTER));
1451 BUILD_BUG_ON(FORCEWAKE_MEDIA != (1 << FW_DOMAIN_ID_MEDIA));
a89a70a8
DCS
1452 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX0 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX0));
1453 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX1 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX1));
1454 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX2 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX2));
1455 BUILD_BUG_ON(FORCEWAKE_MEDIA_VDBOX3 != (1 << FW_DOMAIN_ID_MEDIA_VDBOX3));
1456 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX0 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX0));
1457 BUILD_BUG_ON(FORCEWAKE_MEDIA_VEBOX1 != (1 << FW_DOMAIN_ID_MEDIA_VEBOX1));
1458
d2dc94bc 1459 d->mask = BIT(domain_id);
33c582c1 1460
a57a4a67
TU
1461 hrtimer_init(&d->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1462 d->timer.function = intel_uncore_fw_release_timer;
05a2fb15 1463
535d8d27 1464 uncore->fw_domains |= BIT(domain_id);
f9b3927a 1465
159367bb 1466 fw_domain_reset(d);
f833cdb0
DCS
1467
1468 uncore->fw_domain[domain_id] = d;
1469
1470 return 0;
05a2fb15
MK
1471}
1472
f7de5027 1473static void fw_domain_fini(struct intel_uncore *uncore,
26376a7e
OM
1474 enum forcewake_domain_id domain_id)
1475{
1476 struct intel_uncore_forcewake_domain *d;
1477
f833cdb0 1478 GEM_BUG_ON(domain_id >= FW_DOMAIN_ID_COUNT);
26376a7e 1479
f833cdb0
DCS
1480 d = fetch_and_zero(&uncore->fw_domain[domain_id]);
1481 if (!d)
1482 return;
26376a7e 1483
f833cdb0 1484 uncore->fw_domains &= ~BIT(domain_id);
26376a7e
OM
1485 WARN_ON(d->wake_count);
1486 WARN_ON(hrtimer_cancel(&d->timer));
f833cdb0
DCS
1487 kfree(d);
1488}
26376a7e 1489
f833cdb0
DCS
1490static void intel_uncore_fw_domains_fini(struct intel_uncore *uncore)
1491{
1492 struct intel_uncore_forcewake_domain *d;
1493 int tmp;
1494
1495 for_each_fw_domain(d, uncore, tmp)
1496 fw_domain_fini(uncore, d->id);
26376a7e
OM
1497}
1498
f833cdb0 1499static int intel_uncore_fw_domains_init(struct intel_uncore *uncore)
0b274481 1500{
01385758 1501 struct drm_i915_private *i915 = uncore->i915;
f833cdb0 1502 int ret = 0;
f7de5027 1503
2e81bc61 1504 GEM_BUG_ON(!intel_uncore_has_forcewake(uncore));
3225b2f9 1505
f833cdb0
DCS
1506#define fw_domain_init(uncore__, id__, set__, ack__) \
1507 (ret ?: (ret = __fw_domain_init((uncore__), (id__), (set__), (ack__))))
1508
f7de5027 1509 if (INTEL_GEN(i915) >= 11) {
a89a70a8
DCS
1510 int i;
1511
f833cdb0 1512 uncore->funcs.force_wake_get = fw_domains_get_with_fallback;
f7de5027
DCS
1513 uncore->funcs.force_wake_put = fw_domains_put;
1514 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
a89a70a8
DCS
1515 FORCEWAKE_RENDER_GEN9,
1516 FORCEWAKE_ACK_RENDER_GEN9);
f7de5027 1517 fw_domain_init(uncore, FW_DOMAIN_ID_BLITTER,
a89a70a8
DCS
1518 FORCEWAKE_BLITTER_GEN9,
1519 FORCEWAKE_ACK_BLITTER_GEN9);
f833cdb0 1520
a89a70a8 1521 for (i = 0; i < I915_MAX_VCS; i++) {
f7de5027 1522 if (!HAS_ENGINE(i915, _VCS(i)))
a89a70a8
DCS
1523 continue;
1524
f7de5027 1525 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA_VDBOX0 + i,
a89a70a8
DCS
1526 FORCEWAKE_MEDIA_VDBOX_GEN11(i),
1527 FORCEWAKE_ACK_MEDIA_VDBOX_GEN11(i));
1528 }
1529 for (i = 0; i < I915_MAX_VECS; i++) {
f7de5027 1530 if (!HAS_ENGINE(i915, _VECS(i)))
a89a70a8
DCS
1531 continue;
1532
f7de5027 1533 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA_VEBOX0 + i,
a89a70a8
DCS
1534 FORCEWAKE_MEDIA_VEBOX_GEN11(i),
1535 FORCEWAKE_ACK_MEDIA_VEBOX_GEN11(i));
1536 }
f7de5027 1537 } else if (IS_GEN_RANGE(i915, 9, 10)) {
f833cdb0 1538 uncore->funcs.force_wake_get = fw_domains_get_with_fallback;
f7de5027
DCS
1539 uncore->funcs.force_wake_put = fw_domains_put;
1540 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
05a2fb15
MK
1541 FORCEWAKE_RENDER_GEN9,
1542 FORCEWAKE_ACK_RENDER_GEN9);
f7de5027 1543 fw_domain_init(uncore, FW_DOMAIN_ID_BLITTER,
05a2fb15
MK
1544 FORCEWAKE_BLITTER_GEN9,
1545 FORCEWAKE_ACK_BLITTER_GEN9);
f7de5027 1546 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA,
05a2fb15 1547 FORCEWAKE_MEDIA_GEN9, FORCEWAKE_ACK_MEDIA_GEN9);
f7de5027
DCS
1548 } else if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) {
1549 uncore->funcs.force_wake_get = fw_domains_get;
1550 uncore->funcs.force_wake_put = fw_domains_put;
1551 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
05a2fb15 1552 FORCEWAKE_VLV, FORCEWAKE_ACK_VLV);
f7de5027 1553 fw_domain_init(uncore, FW_DOMAIN_ID_MEDIA,
05a2fb15 1554 FORCEWAKE_MEDIA_VLV, FORCEWAKE_ACK_MEDIA_VLV);
f7de5027
DCS
1555 } else if (IS_HASWELL(i915) || IS_BROADWELL(i915)) {
1556 uncore->funcs.force_wake_get =
05a2fb15 1557 fw_domains_get_with_thread_status;
f7de5027
DCS
1558 uncore->funcs.force_wake_put = fw_domains_put;
1559 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
05a2fb15 1560 FORCEWAKE_MT, FORCEWAKE_ACK_HSW);
f7de5027 1561 } else if (IS_IVYBRIDGE(i915)) {
0b274481
BW
1562 u32 ecobus;
1563
1564 /* IVB configs may use multi-threaded forcewake */
1565
1566 /* A small trick here - if the bios hasn't configured
1567 * MT forcewake, and if the device is in RC6, then
1568 * force_wake_mt_get will not wake the device and the
1569 * ECOBUS read will return zero. Which will be
1570 * (correctly) interpreted by the test below as MT
1571 * forcewake being disabled.
1572 */
f7de5027 1573 uncore->funcs.force_wake_get =
05a2fb15 1574 fw_domains_get_with_thread_status;
f7de5027 1575 uncore->funcs.force_wake_put = fw_domains_put;
05a2fb15 1576
f9b3927a
MK
1577 /* We need to init first for ECOBUS access and then
1578 * determine later if we want to reinit, in case of MT access is
6ea2556f
MK
1579 * not working. In this stage we don't know which flavour this
1580 * ivb is, so it is better to reset also the gen6 fw registers
1581 * before the ecobus check.
f9b3927a 1582 */
6ea2556f 1583
6cc5ca76 1584 __raw_uncore_write32(uncore, FORCEWAKE, 0);
6ebc9692 1585 __raw_posting_read(uncore, ECOBUS);
6ea2556f 1586
f833cdb0
DCS
1587 ret = __fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
1588 FORCEWAKE_MT, FORCEWAKE_MT_ACK);
1589 if (ret)
1590 goto out;
f9b3927a 1591
f7de5027
DCS
1592 spin_lock_irq(&uncore->lock);
1593 fw_domains_get_with_thread_status(uncore, FORCEWAKE_RENDER);
6cc5ca76 1594 ecobus = __raw_uncore_read32(uncore, ECOBUS);
f7de5027
DCS
1595 fw_domains_put(uncore, FORCEWAKE_RENDER);
1596 spin_unlock_irq(&uncore->lock);
0b274481 1597
05a2fb15 1598 if (!(ecobus & FORCEWAKE_MT_ENABLE)) {
d0208cfa
WK
1599 drm_info(&i915->drm, "No MT forcewake available on Ivybridge, this can result in issues\n");
1600 drm_info(&i915->drm, "when using vblank-synced partial screen updates.\n");
f833cdb0 1601 fw_domain_fini(uncore, FW_DOMAIN_ID_RENDER);
f7de5027 1602 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
05a2fb15 1603 FORCEWAKE, FORCEWAKE_ACK);
0b274481 1604 }
f7de5027
DCS
1605 } else if (IS_GEN(i915, 6)) {
1606 uncore->funcs.force_wake_get =
05a2fb15 1607 fw_domains_get_with_thread_status;
f7de5027
DCS
1608 uncore->funcs.force_wake_put = fw_domains_put;
1609 fw_domain_init(uncore, FW_DOMAIN_ID_RENDER,
05a2fb15 1610 FORCEWAKE, FORCEWAKE_ACK);
0b274481 1611 }
3225b2f9 1612
f833cdb0
DCS
1613#undef fw_domain_init
1614
3225b2f9 1615 /* All future platforms are expected to require complex power gating */
f833cdb0
DCS
1616 WARN_ON(!ret && uncore->fw_domains == 0);
1617
1618out:
1619 if (ret)
1620 intel_uncore_fw_domains_fini(uncore);
1621
1622 return ret;
f9b3927a
MK
1623}
1624
f7de5027 1625#define ASSIGN_FW_DOMAINS_TABLE(uncore, d) \
15157970 1626{ \
f7de5027 1627 (uncore)->fw_domains_table = \
15157970 1628 (struct intel_forcewake_range *)(d); \
f7de5027 1629 (uncore)->fw_domains_table_entries = ARRAY_SIZE((d)); \
15157970
TU
1630}
1631
264ec1a8
HG
1632static int i915_pmic_bus_access_notifier(struct notifier_block *nb,
1633 unsigned long action, void *data)
1634{
9102650f
DCS
1635 struct intel_uncore *uncore = container_of(nb,
1636 struct intel_uncore, pmic_bus_access_nb);
264ec1a8
HG
1637
1638 switch (action) {
1639 case MBI_PMIC_BUS_ACCESS_BEGIN:
1640 /*
1641 * forcewake all now to make sure that we don't need to do a
1642 * forcewake later which on systems where this notifier gets
1643 * called requires the punit to access to the shared pmic i2c
1644 * bus, which will be busy after this notification, leading to:
1645 * "render: timed out waiting for forcewake ack request."
1646 * errors.
ce30560c
HG
1647 *
1648 * The notifier is unregistered during intel_runtime_suspend(),
1649 * so it's ok to access the HW here without holding a RPM
1650 * wake reference -> disable wakeref asserts for the time of
1651 * the access.
264ec1a8 1652 */
9102650f
DCS
1653 disable_rpm_wakeref_asserts(uncore->rpm);
1654 intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
1655 enable_rpm_wakeref_asserts(uncore->rpm);
264ec1a8
HG
1656 break;
1657 case MBI_PMIC_BUS_ACCESS_END:
9102650f 1658 intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
264ec1a8
HG
1659 break;
1660 }
1661
1662 return NOTIFY_OK;
1663}
1664
25286aac
DCS
1665static int uncore_mmio_setup(struct intel_uncore *uncore)
1666{
01385758 1667 struct drm_i915_private *i915 = uncore->i915;
25286aac
DCS
1668 struct pci_dev *pdev = i915->drm.pdev;
1669 int mmio_bar;
1670 int mmio_size;
1671
1672 mmio_bar = IS_GEN(i915, 2) ? 1 : 0;
1673 /*
1674 * Before gen4, the registers and the GTT are behind different BARs.
1675 * However, from gen4 onwards, the registers and the GTT are shared
1676 * in the same BAR, so we want to restrict this ioremap from
1677 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
1678 * the register BAR remains the same size for all the earlier
1679 * generations up to Ironlake.
1680 */
1681 if (INTEL_GEN(i915) < 5)
1682 mmio_size = 512 * 1024;
1683 else
1684 mmio_size = 2 * 1024 * 1024;
1685 uncore->regs = pci_iomap(pdev, mmio_bar, mmio_size);
1686 if (uncore->regs == NULL) {
d0208cfa 1687 drm_err(&i915->drm, "failed to map registers\n");
25286aac
DCS
1688 return -EIO;
1689 }
1690
1691 return 0;
1692}
1693
1694static void uncore_mmio_cleanup(struct intel_uncore *uncore)
1695{
01385758 1696 struct pci_dev *pdev = uncore->i915->drm.pdev;
25286aac
DCS
1697
1698 pci_iounmap(pdev, uncore->regs);
1699}
1700
01385758
DCS
1701void intel_uncore_init_early(struct intel_uncore *uncore,
1702 struct drm_i915_private *i915)
6cbe8830
DCS
1703{
1704 spin_lock_init(&uncore->lock);
01385758
DCS
1705 uncore->i915 = i915;
1706 uncore->rpm = &i915->runtime_pm;
0a9b2630 1707 uncore->debug = &i915->mmio_debug;
6cbe8830 1708}
25286aac 1709
2e81bc61 1710static void uncore_raw_init(struct intel_uncore *uncore)
f9b3927a 1711{
2e81bc61 1712 GEM_BUG_ON(intel_uncore_has_forcewake(uncore));
25286aac 1713
2e81bc61
DCS
1714 if (IS_GEN(uncore->i915, 5)) {
1715 ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, gen5);
1716 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, gen5);
1717 } else {
1718 ASSIGN_RAW_WRITE_MMIO_VFUNCS(uncore, gen2);
1719 ASSIGN_RAW_READ_MMIO_VFUNCS(uncore, gen2);
1720 }
1721}
f7de5027 1722
f833cdb0 1723static int uncore_forcewake_init(struct intel_uncore *uncore)
2e81bc61
DCS
1724{
1725 struct drm_i915_private *i915 = uncore->i915;
f833cdb0 1726 int ret;
cf9d2890 1727
2e81bc61 1728 GEM_BUG_ON(!intel_uncore_has_forcewake(uncore));
5a0ba777 1729
f833cdb0
DCS
1730 ret = intel_uncore_fw_domains_init(uncore);
1731 if (ret)
1732 return ret;
2e81bc61 1733 forcewake_early_sanitize(uncore, 0);
75714940 1734
2e81bc61 1735 if (IS_GEN_RANGE(i915, 6, 7)) {
f7de5027
DCS
1736 ASSIGN_WRITE_MMIO_VFUNCS(uncore, gen6);
1737
1738 if (IS_VALLEYVIEW(i915)) {
1739 ASSIGN_FW_DOMAINS_TABLE(uncore, __vlv_fw_ranges);
1740 ASSIGN_READ_MMIO_VFUNCS(uncore, fwtable);
e3b1895f 1741 } else {
f7de5027 1742 ASSIGN_READ_MMIO_VFUNCS(uncore, gen6);
85ee17eb 1743 }
f7de5027
DCS
1744 } else if (IS_GEN(i915, 8)) {
1745 if (IS_CHERRYVIEW(i915)) {
1746 ASSIGN_FW_DOMAINS_TABLE(uncore, __chv_fw_ranges);
1747 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
1748 ASSIGN_READ_MMIO_VFUNCS(uncore, fwtable);
1938e59a 1749 } else {
f7de5027
DCS
1750 ASSIGN_WRITE_MMIO_VFUNCS(uncore, gen8);
1751 ASSIGN_READ_MMIO_VFUNCS(uncore, gen6);
1938e59a 1752 }
f7de5027
DCS
1753 } else if (IS_GEN_RANGE(i915, 9, 10)) {
1754 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen9_fw_ranges);
1755 ASSIGN_WRITE_MMIO_VFUNCS(uncore, fwtable);
1756 ASSIGN_READ_MMIO_VFUNCS(uncore, fwtable);
cf82d9dd 1757 } else if (IS_GEN(i915, 11)) {
f7de5027
DCS
1758 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen11_fw_ranges);
1759 ASSIGN_WRITE_MMIO_VFUNCS(uncore, gen11_fwtable);
1760 ASSIGN_READ_MMIO_VFUNCS(uncore, gen11_fwtable);
cf82d9dd
MT
1761 } else {
1762 ASSIGN_FW_DOMAINS_TABLE(uncore, __gen12_fw_ranges);
1763 ASSIGN_WRITE_MMIO_VFUNCS(uncore, gen12_fwtable);
1764 ASSIGN_READ_MMIO_VFUNCS(uncore, gen12_fwtable);
3967018e 1765 }
ed493883 1766
2e81bc61
DCS
1767 uncore->pmic_bus_access_nb.notifier_call = i915_pmic_bus_access_notifier;
1768 iosf_mbi_register_pmic_bus_access_notifier(&uncore->pmic_bus_access_nb);
f833cdb0
DCS
1769
1770 return 0;
2e81bc61
DCS
1771}
1772
1773int intel_uncore_init_mmio(struct intel_uncore *uncore)
1774{
1775 struct drm_i915_private *i915 = uncore->i915;
1776 int ret;
1777
1778 ret = uncore_mmio_setup(uncore);
1779 if (ret)
1780 return ret;
1781
2e81bc61
DCS
1782 if (INTEL_GEN(i915) > 5 && !intel_vgpu_active(i915))
1783 uncore->flags |= UNCORE_HAS_FORCEWAKE;
1784
f833cdb0 1785 if (!intel_uncore_has_forcewake(uncore)) {
2e81bc61 1786 uncore_raw_init(uncore);
f833cdb0
DCS
1787 } else {
1788 ret = uncore_forcewake_init(uncore);
1789 if (ret)
1790 goto out_mmio_cleanup;
1791 }
2e81bc61 1792
ccb2acea
DCS
1793 /* make sure fw funcs are set if and only if we have fw*/
1794 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->funcs.force_wake_get);
1795 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->funcs.force_wake_put);
1796 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->funcs.read_fw_domains);
1797 GEM_BUG_ON(intel_uncore_has_forcewake(uncore) != !!uncore->funcs.write_fw_domains);
1798
2cf7bf6f
DCS
1799 if (HAS_FPGA_DBG_UNCLAIMED(i915))
1800 uncore->flags |= UNCORE_HAS_FPGA_DBG_UNCLAIMED;
1801
1802 if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
1803 uncore->flags |= UNCORE_HAS_DBG_UNCLAIMED;
1804
1805 if (IS_GEN_RANGE(i915, 6, 7))
1806 uncore->flags |= UNCORE_HAS_FIFO;
1807
2e81bc61 1808 /* clear out unclaimed reg detection bit */
0a9b2630 1809 if (intel_uncore_unclaimed_mmio(uncore))
d0208cfa 1810 drm_dbg(&i915->drm, "unclaimed mmio detected on uncore init, clearing\n");
25286aac
DCS
1811
1812 return 0;
f833cdb0
DCS
1813
1814out_mmio_cleanup:
1815 uncore_mmio_cleanup(uncore);
1816
1817 return ret;
0b274481
BW
1818}
1819
26376a7e
OM
1820/*
1821 * We might have detected that some engines are fused off after we initialized
1822 * the forcewake domains. Prune them, to make sure they only reference existing
1823 * engines.
1824 */
3de6f852 1825void intel_uncore_prune_mmio_domains(struct intel_uncore *uncore)
26376a7e 1826{
01385758 1827 struct drm_i915_private *i915 = uncore->i915;
2e81bc61
DCS
1828 enum forcewake_domains fw_domains = uncore->fw_domains;
1829 enum forcewake_domain_id domain_id;
1830 int i;
f7de5027 1831
2e81bc61
DCS
1832 if (!intel_uncore_has_forcewake(uncore) || INTEL_GEN(i915) < 11)
1833 return;
26376a7e 1834
2e81bc61
DCS
1835 for (i = 0; i < I915_MAX_VCS; i++) {
1836 domain_id = FW_DOMAIN_ID_MEDIA_VDBOX0 + i;
26376a7e 1837
2e81bc61
DCS
1838 if (HAS_ENGINE(i915, _VCS(i)))
1839 continue;
26376a7e 1840
2e81bc61
DCS
1841 if (fw_domains & BIT(domain_id))
1842 fw_domain_fini(uncore, domain_id);
1843 }
26376a7e 1844
2e81bc61
DCS
1845 for (i = 0; i < I915_MAX_VECS; i++) {
1846 domain_id = FW_DOMAIN_ID_MEDIA_VEBOX0 + i;
26376a7e 1847
2e81bc61
DCS
1848 if (HAS_ENGINE(i915, _VECS(i)))
1849 continue;
26376a7e 1850
2e81bc61
DCS
1851 if (fw_domains & BIT(domain_id))
1852 fw_domain_fini(uncore, domain_id);
26376a7e
OM
1853 }
1854}
1855
3de6f852 1856void intel_uncore_fini_mmio(struct intel_uncore *uncore)
0b274481 1857{
2e81bc61
DCS
1858 if (intel_uncore_has_forcewake(uncore)) {
1859 iosf_mbi_punit_acquire();
1860 iosf_mbi_unregister_pmic_bus_access_notifier_unlocked(
1861 &uncore->pmic_bus_access_nb);
1862 intel_uncore_forcewake_reset(uncore);
f833cdb0 1863 intel_uncore_fw_domains_fini(uncore);
2e81bc61
DCS
1864 iosf_mbi_punit_release();
1865 }
1866
25286aac 1867 uncore_mmio_cleanup(uncore);
0b274481
BW
1868}
1869
3fd3a6ff
JL
1870static const struct reg_whitelist {
1871 i915_reg_t offset_ldw;
1872 i915_reg_t offset_udw;
1873 u16 gen_mask;
1874 u8 size;
1875} reg_read_whitelist[] = { {
1876 .offset_ldw = RING_TIMESTAMP(RENDER_RING_BASE),
1877 .offset_udw = RING_TIMESTAMP_UDW(RENDER_RING_BASE),
2b92a82f 1878 .gen_mask = INTEL_GEN_MASK(4, 12),
3fd3a6ff
JL
1879 .size = 8
1880} };
907b28c5
CW
1881
1882int i915_reg_read_ioctl(struct drm_device *dev,
1883 void *data, struct drm_file *file)
1884{
8ed3a623
TU
1885 struct drm_i915_private *i915 = to_i915(dev);
1886 struct intel_uncore *uncore = &i915->uncore;
907b28c5 1887 struct drm_i915_reg_read *reg = data;
3fd3a6ff 1888 struct reg_whitelist const *entry;
538ef96b 1889 intel_wakeref_t wakeref;
3fd3a6ff
JL
1890 unsigned int flags;
1891 int remain;
1892 int ret = 0;
1893
1894 entry = reg_read_whitelist;
1895 remain = ARRAY_SIZE(reg_read_whitelist);
1896 while (remain) {
1897 u32 entry_offset = i915_mmio_reg_offset(entry->offset_ldw);
1898
1899 GEM_BUG_ON(!is_power_of_2(entry->size));
1900 GEM_BUG_ON(entry->size > 8);
1901 GEM_BUG_ON(entry_offset & (entry->size - 1));
1902
8ed3a623 1903 if (INTEL_INFO(i915)->gen_mask & entry->gen_mask &&
3fd3a6ff 1904 entry_offset == (reg->offset & -entry->size))
907b28c5 1905 break;
3fd3a6ff
JL
1906 entry++;
1907 remain--;
907b28c5
CW
1908 }
1909
3fd3a6ff 1910 if (!remain)
907b28c5
CW
1911 return -EINVAL;
1912
3fd3a6ff 1913 flags = reg->offset & (entry->size - 1);
648a9bc5 1914
c447ff7d 1915 with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
d4225a53 1916 if (entry->size == 8 && flags == I915_REG_READ_8B_WA)
8ed3a623
TU
1917 reg->val = intel_uncore_read64_2x32(uncore,
1918 entry->offset_ldw,
1919 entry->offset_udw);
d4225a53 1920 else if (entry->size == 8 && flags == 0)
8ed3a623
TU
1921 reg->val = intel_uncore_read64(uncore,
1922 entry->offset_ldw);
d4225a53 1923 else if (entry->size == 4 && flags == 0)
8ed3a623 1924 reg->val = intel_uncore_read(uncore, entry->offset_ldw);
d4225a53 1925 else if (entry->size == 2 && flags == 0)
8ed3a623
TU
1926 reg->val = intel_uncore_read16(uncore,
1927 entry->offset_ldw);
d4225a53 1928 else if (entry->size == 1 && flags == 0)
8ed3a623
TU
1929 reg->val = intel_uncore_read8(uncore,
1930 entry->offset_ldw);
d4225a53
CW
1931 else
1932 ret = -EINVAL;
1933 }
3fd3a6ff 1934
cf67c70f 1935 return ret;
907b28c5
CW
1936}
1937
1758b90e 1938/**
1d1a9774 1939 * __intel_wait_for_register_fw - wait until register matches expected state
d2d551c0 1940 * @uncore: the struct intel_uncore
1758b90e
CW
1941 * @reg: the register to read
1942 * @mask: mask to apply to register value
1943 * @value: expected value
1d1a9774
MW
1944 * @fast_timeout_us: fast timeout in microsecond for atomic/tight wait
1945 * @slow_timeout_ms: slow timeout in millisecond
1946 * @out_value: optional placeholder to hold registry value
1758b90e
CW
1947 *
1948 * This routine waits until the target register @reg contains the expected
3d466cd6
DV
1949 * @value after applying the @mask, i.e. it waits until ::
1950 *
1951 * (I915_READ_FW(reg) & mask) == value
1952 *
1d1a9774 1953 * Otherwise, the wait will timeout after @slow_timeout_ms milliseconds.
6976e74b 1954 * For atomic context @slow_timeout_ms must be zero and @fast_timeout_us
84d84cb7 1955 * must be not larger than 20,0000 microseconds.
1758b90e
CW
1956 *
1957 * Note that this routine assumes the caller holds forcewake asserted, it is
1958 * not suitable for very long waits. See intel_wait_for_register() if you
1959 * wish to wait without holding forcewake for the duration (i.e. you expect
1960 * the wait to be slow).
1961 *
e4661f14 1962 * Return: 0 if the register matches the desired condition, or -ETIMEDOUT.
1758b90e 1963 */
d2d551c0 1964int __intel_wait_for_register_fw(struct intel_uncore *uncore,
1d1a9774 1965 i915_reg_t reg,
3fc7d86b
MW
1966 u32 mask,
1967 u32 value,
1968 unsigned int fast_timeout_us,
1969 unsigned int slow_timeout_ms,
1d1a9774 1970 u32 *out_value)
1758b90e 1971{
ff26ffa8 1972 u32 uninitialized_var(reg_value);
d2d551c0 1973#define done (((reg_value = intel_uncore_read_fw(uncore, reg)) & mask) == value)
1d1a9774
MW
1974 int ret;
1975
6976e74b 1976 /* Catch any overuse of this function */
84d84cb7
CW
1977 might_sleep_if(slow_timeout_ms);
1978 GEM_BUG_ON(fast_timeout_us > 20000);
6976e74b 1979
84d84cb7
CW
1980 ret = -ETIMEDOUT;
1981 if (fast_timeout_us && fast_timeout_us <= 20000)
1d1a9774 1982 ret = _wait_for_atomic(done, fast_timeout_us, 0);
ff26ffa8 1983 if (ret && slow_timeout_ms)
1d1a9774 1984 ret = wait_for(done, slow_timeout_ms);
84d84cb7 1985
1d1a9774
MW
1986 if (out_value)
1987 *out_value = reg_value;
84d84cb7 1988
1758b90e
CW
1989 return ret;
1990#undef done
1991}
1992
1993/**
23fdbdd7 1994 * __intel_wait_for_register - wait until register matches expected state
baba6e57 1995 * @uncore: the struct intel_uncore
1758b90e
CW
1996 * @reg: the register to read
1997 * @mask: mask to apply to register value
1998 * @value: expected value
23fdbdd7
SP
1999 * @fast_timeout_us: fast timeout in microsecond for atomic/tight wait
2000 * @slow_timeout_ms: slow timeout in millisecond
2001 * @out_value: optional placeholder to hold registry value
1758b90e
CW
2002 *
2003 * This routine waits until the target register @reg contains the expected
3d466cd6
DV
2004 * @value after applying the @mask, i.e. it waits until ::
2005 *
2006 * (I915_READ(reg) & mask) == value
2007 *
1758b90e
CW
2008 * Otherwise, the wait will timeout after @timeout_ms milliseconds.
2009 *
e4661f14 2010 * Return: 0 if the register matches the desired condition, or -ETIMEDOUT.
1758b90e 2011 */
97a04e0d
DCS
2012int __intel_wait_for_register(struct intel_uncore *uncore,
2013 i915_reg_t reg,
2014 u32 mask,
2015 u32 value,
2016 unsigned int fast_timeout_us,
2017 unsigned int slow_timeout_ms,
2018 u32 *out_value)
2019{
1758b90e 2020 unsigned fw =
4319382e 2021 intel_uncore_forcewake_for_reg(uncore, reg, FW_REG_READ);
23fdbdd7 2022 u32 reg_value;
1758b90e
CW
2023 int ret;
2024
3df82dd4 2025 might_sleep_if(slow_timeout_ms);
05646543 2026
272c7e52
DCS
2027 spin_lock_irq(&uncore->lock);
2028 intel_uncore_forcewake_get__locked(uncore, fw);
05646543 2029
d2d551c0 2030 ret = __intel_wait_for_register_fw(uncore,
05646543 2031 reg, mask, value,
23fdbdd7 2032 fast_timeout_us, 0, &reg_value);
05646543 2033
272c7e52
DCS
2034 intel_uncore_forcewake_put__locked(uncore, fw);
2035 spin_unlock_irq(&uncore->lock);
05646543 2036
3df82dd4 2037 if (ret && slow_timeout_ms)
d2d551c0
DCS
2038 ret = __wait_for(reg_value = intel_uncore_read_notrace(uncore,
2039 reg),
23fdbdd7
SP
2040 (reg_value & mask) == value,
2041 slow_timeout_ms * 1000, 10, 1000);
2042
39806c3f
VS
2043 /* just trace the final value */
2044 trace_i915_reg_rw(false, reg, reg_value, sizeof(reg_value), true);
2045
23fdbdd7
SP
2046 if (out_value)
2047 *out_value = reg_value;
1758b90e
CW
2048
2049 return ret;
d431440c
TE
2050}
2051
2cf7bf6f 2052bool intel_uncore_unclaimed_mmio(struct intel_uncore *uncore)
907b28c5 2053{
0a9b2630
DCS
2054 bool ret;
2055
2056 spin_lock_irq(&uncore->debug->lock);
2057 ret = check_for_unclaimed_mmio(uncore);
2058 spin_unlock_irq(&uncore->debug->lock);
2059
2060 return ret;
907b28c5 2061}
75714940 2062
bc3b9346 2063bool
2cf7bf6f 2064intel_uncore_arm_unclaimed_mmio_detection(struct intel_uncore *uncore)
75714940 2065{
a167b1e1
CW
2066 bool ret = false;
2067
0a9b2630 2068 spin_lock_irq(&uncore->debug->lock);
a167b1e1 2069
0a9b2630 2070 if (unlikely(uncore->debug->unclaimed_mmio_check <= 0))
a167b1e1 2071 goto out;
75714940 2072
0a9b2630 2073 if (unlikely(check_for_unclaimed_mmio(uncore))) {
7ef4ac6e 2074 if (!i915_modparams.mmio_debug) {
d0208cfa
WK
2075 drm_dbg(&uncore->i915->drm,
2076 "Unclaimed register detected, "
2077 "enabling oneshot unclaimed register reporting. "
2078 "Please use i915.mmio_debug=N for more information.\n");
7ef4ac6e
CW
2079 i915_modparams.mmio_debug++;
2080 }
0a9b2630 2081 uncore->debug->unclaimed_mmio_check--;
a167b1e1 2082 ret = true;
75714940 2083 }
bc3b9346 2084
a167b1e1 2085out:
0a9b2630 2086 spin_unlock_irq(&uncore->debug->lock);
a167b1e1
CW
2087
2088 return ret;
75714940 2089}
3756685a 2090
3756685a
TU
2091/**
2092 * intel_uncore_forcewake_for_reg - which forcewake domains are needed to access
2093 * a register
4319382e 2094 * @uncore: pointer to struct intel_uncore
3756685a
TU
2095 * @reg: register in question
2096 * @op: operation bitmask of FW_REG_READ and/or FW_REG_WRITE
2097 *
2098 * Returns a set of forcewake domains required to be taken with for example
2099 * intel_uncore_forcewake_get for the specified register to be accessible in the
2100 * specified mode (read, write or read/write) with raw mmio accessors.
2101 *
2102 * NOTE: On Gen6 and Gen7 write forcewake domain (FORCEWAKE_RENDER) requires the
2103 * callers to do FIFO management on their own or risk losing writes.
2104 */
2105enum forcewake_domains
4319382e 2106intel_uncore_forcewake_for_reg(struct intel_uncore *uncore,
3756685a
TU
2107 i915_reg_t reg, unsigned int op)
2108{
2109 enum forcewake_domains fw_domains = 0;
2110
2111 WARN_ON(!op);
2112
4319382e 2113 if (!intel_uncore_has_forcewake(uncore))
895833bd
TU
2114 return 0;
2115
3756685a 2116 if (op & FW_REG_READ)
ccb2acea 2117 fw_domains = uncore->funcs.read_fw_domains(uncore, reg);
3756685a
TU
2118
2119 if (op & FW_REG_WRITE)
ccb2acea
DCS
2120 fw_domains |= uncore->funcs.write_fw_domains(uncore, reg);
2121
2122 WARN_ON(fw_domains & ~uncore->fw_domains);
3756685a
TU
2123
2124 return fw_domains;
2125}
26e7a2a1
CW
2126
2127#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
0757ac8f 2128#include "selftests/mock_uncore.c"
26e7a2a1
CW
2129#include "selftests/intel_uncore.c"
2130#endif