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