2 * Copyright © 2013 Intel Corporation
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:
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
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
25 #include <asm/iosf_mbi.h>
28 #include "intel_sideband.h"
31 * IOSF sideband, see VLV2_SidebandMsg_HAS.docx and
32 * VLV_VLV2_PUNIT_HAS_0.8.docx
35 /* Standard MMIO read, non-posted */
36 #define SB_MRD_NP 0x00
37 /* Standard MMIO write, non-posted */
38 #define SB_MWR_NP 0x01
39 /* Private register read, double-word addressing, non-posted */
40 #define SB_CRRDDA_NP 0x06
41 /* Private register write, double-word addressing, non-posted */
42 #define SB_CRWRDA_NP 0x07
44 static void ping(void *info
)
48 static void __vlv_punit_get(struct drm_i915_private
*i915
)
50 iosf_mbi_punit_acquire();
53 * Prevent the cpu from sleeping while we use this sideband, otherwise
54 * the punit may cause a machine hang. The issue appears to be isolated
55 * with changing the power state of the CPU package while changing
56 * the power state via the punit, and we have only observed it
57 * reliably on 4-core Baytail systems suggesting the issue is in the
58 * power delivery mechanism and likely to be be board/function
59 * specific. Hence we presume the workaround needs only be applied
60 * to the Valleyview P-unit and not all sideband communications.
62 if (IS_VALLEYVIEW(i915
)) {
63 cpu_latency_qos_update_request(&i915
->sb_qos
, 0);
64 on_each_cpu(ping
, NULL
, 1);
68 static void __vlv_punit_put(struct drm_i915_private
*i915
)
70 if (IS_VALLEYVIEW(i915
))
71 cpu_latency_qos_update_request(&i915
->sb_qos
,
72 PM_QOS_DEFAULT_VALUE
);
74 iosf_mbi_punit_release();
77 void vlv_iosf_sb_get(struct drm_i915_private
*i915
, unsigned long ports
)
79 if (ports
& BIT(VLV_IOSF_SB_PUNIT
))
80 __vlv_punit_get(i915
);
82 mutex_lock(&i915
->sb_lock
);
85 void vlv_iosf_sb_put(struct drm_i915_private
*i915
, unsigned long ports
)
87 mutex_unlock(&i915
->sb_lock
);
89 if (ports
& BIT(VLV_IOSF_SB_PUNIT
))
90 __vlv_punit_put(i915
);
93 static int vlv_sideband_rw(struct drm_i915_private
*i915
,
94 u32 devfn
, u32 port
, u32 opcode
,
97 struct intel_uncore
*uncore
= &i915
->uncore
;
98 const bool is_read
= (opcode
== SB_MRD_NP
|| opcode
== SB_CRRDDA_NP
);
101 lockdep_assert_held(&i915
->sb_lock
);
102 if (port
== IOSF_PORT_PUNIT
)
103 iosf_mbi_assert_punit_acquired();
105 /* Flush the previous comms, just in case it failed last time. */
106 if (intel_wait_for_register(uncore
,
107 VLV_IOSF_DOORBELL_REQ
, IOSF_SB_BUSY
, 0,
109 drm_dbg(&i915
->drm
, "IOSF sideband idle wait (%s) timed out\n",
110 is_read
? "read" : "write");
116 intel_uncore_write_fw(uncore
, VLV_IOSF_ADDR
, addr
);
117 intel_uncore_write_fw(uncore
, VLV_IOSF_DATA
, is_read
? 0 : *val
);
118 intel_uncore_write_fw(uncore
, VLV_IOSF_DOORBELL_REQ
,
119 (devfn
<< IOSF_DEVFN_SHIFT
) |
120 (opcode
<< IOSF_OPCODE_SHIFT
) |
121 (port
<< IOSF_PORT_SHIFT
) |
122 (0xf << IOSF_BYTE_ENABLES_SHIFT
) |
123 (0 << IOSF_BAR_SHIFT
) |
126 if (__intel_wait_for_register_fw(uncore
,
127 VLV_IOSF_DOORBELL_REQ
, IOSF_SB_BUSY
, 0,
128 10000, 0, NULL
) == 0) {
130 *val
= intel_uncore_read_fw(uncore
, VLV_IOSF_DATA
);
133 drm_dbg(&i915
->drm
, "IOSF sideband finish wait (%s) timed out\n",
134 is_read
? "read" : "write");
143 u32
vlv_punit_read(struct drm_i915_private
*i915
, u32 addr
)
147 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_PUNIT
,
148 SB_CRRDDA_NP
, addr
, &val
);
153 int vlv_punit_write(struct drm_i915_private
*i915
, u32 addr
, u32 val
)
155 return vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_PUNIT
,
156 SB_CRWRDA_NP
, addr
, &val
);
159 u32
vlv_bunit_read(struct drm_i915_private
*i915
, u32 reg
)
163 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_BUNIT
,
164 SB_CRRDDA_NP
, reg
, &val
);
169 void vlv_bunit_write(struct drm_i915_private
*i915
, u32 reg
, u32 val
)
171 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_BUNIT
,
172 SB_CRWRDA_NP
, reg
, &val
);
175 u32
vlv_nc_read(struct drm_i915_private
*i915
, u8 addr
)
179 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_NC
,
180 SB_CRRDDA_NP
, addr
, &val
);
185 u32
vlv_iosf_sb_read(struct drm_i915_private
*i915
, u8 port
, u32 reg
)
189 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), port
,
190 SB_CRRDDA_NP
, reg
, &val
);
195 void vlv_iosf_sb_write(struct drm_i915_private
*i915
,
196 u8 port
, u32 reg
, u32 val
)
198 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), port
,
199 SB_CRWRDA_NP
, reg
, &val
);
202 u32
vlv_cck_read(struct drm_i915_private
*i915
, u32 reg
)
206 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_CCK
,
207 SB_CRRDDA_NP
, reg
, &val
);
212 void vlv_cck_write(struct drm_i915_private
*i915
, u32 reg
, u32 val
)
214 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_CCK
,
215 SB_CRWRDA_NP
, reg
, &val
);
218 u32
vlv_ccu_read(struct drm_i915_private
*i915
, u32 reg
)
222 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_CCU
,
223 SB_CRRDDA_NP
, reg
, &val
);
228 void vlv_ccu_write(struct drm_i915_private
*i915
, u32 reg
, u32 val
)
230 vlv_sideband_rw(i915
, PCI_DEVFN(0, 0), IOSF_PORT_CCU
,
231 SB_CRWRDA_NP
, reg
, &val
);
234 static u32
vlv_dpio_phy_iosf_port(struct drm_i915_private
*i915
, enum dpio_phy phy
)
237 * IOSF_PORT_DPIO: VLV x2 PHY (DP/HDMI B and C), CHV x1 PHY (DP/HDMI D)
238 * IOSF_PORT_DPIO_2: CHV x2 PHY (DP/HDMI B and C)
240 if (IS_CHERRYVIEW(i915
))
241 return phy
== DPIO_PHY0
? IOSF_PORT_DPIO_2
: IOSF_PORT_DPIO
;
243 return IOSF_PORT_DPIO
;
246 u32
vlv_dpio_read(struct drm_i915_private
*i915
, enum pipe pipe
, int reg
)
248 u32 port
= vlv_dpio_phy_iosf_port(i915
, DPIO_PHY(pipe
));
251 vlv_sideband_rw(i915
, DPIO_DEVFN
, port
, SB_MRD_NP
, reg
, &val
);
254 * FIXME: There might be some registers where all 1's is a valid value,
255 * so ideally we should check the register offset instead...
257 drm_WARN(&i915
->drm
, val
== 0xffffffff,
258 "DPIO read pipe %c reg 0x%x == 0x%x\n",
259 pipe_name(pipe
), reg
, val
);
264 void vlv_dpio_write(struct drm_i915_private
*i915
,
265 enum pipe pipe
, int reg
, u32 val
)
267 u32 port
= vlv_dpio_phy_iosf_port(i915
, DPIO_PHY(pipe
));
269 vlv_sideband_rw(i915
, DPIO_DEVFN
, port
, SB_MWR_NP
, reg
, &val
);
272 u32
vlv_flisdsi_read(struct drm_i915_private
*i915
, u32 reg
)
276 vlv_sideband_rw(i915
, DPIO_DEVFN
, IOSF_PORT_FLISDSI
, SB_CRRDDA_NP
,
281 void vlv_flisdsi_write(struct drm_i915_private
*i915
, u32 reg
, u32 val
)
283 vlv_sideband_rw(i915
, DPIO_DEVFN
, IOSF_PORT_FLISDSI
, SB_CRWRDA_NP
,
288 static int intel_sbi_rw(struct drm_i915_private
*i915
, u16 reg
,
289 enum intel_sbi_destination destination
,
290 u32
*val
, bool is_read
)
292 struct intel_uncore
*uncore
= &i915
->uncore
;
295 lockdep_assert_held(&i915
->sb_lock
);
297 if (intel_wait_for_register_fw(uncore
,
298 SBI_CTL_STAT
, SBI_BUSY
, 0,
301 "timeout waiting for SBI to become ready\n");
305 intel_uncore_write_fw(uncore
, SBI_ADDR
, (u32
)reg
<< 16);
306 intel_uncore_write_fw(uncore
, SBI_DATA
, is_read
? 0 : *val
);
308 if (destination
== SBI_ICLK
)
309 cmd
= SBI_CTL_DEST_ICLK
| SBI_CTL_OP_CRRD
;
311 cmd
= SBI_CTL_DEST_MPHY
| SBI_CTL_OP_IORD
;
314 intel_uncore_write_fw(uncore
, SBI_CTL_STAT
, cmd
| SBI_BUSY
);
316 if (__intel_wait_for_register_fw(uncore
,
317 SBI_CTL_STAT
, SBI_BUSY
, 0,
320 "timeout waiting for SBI to complete read\n");
324 if (cmd
& SBI_RESPONSE_FAIL
) {
325 drm_err(&i915
->drm
, "error during SBI read of reg %x\n", reg
);
330 *val
= intel_uncore_read_fw(uncore
, SBI_DATA
);
335 u32
intel_sbi_read(struct drm_i915_private
*i915
, u16 reg
,
336 enum intel_sbi_destination destination
)
340 intel_sbi_rw(i915
, reg
, destination
, &result
, true);
345 void intel_sbi_write(struct drm_i915_private
*i915
, u16 reg
, u32 value
,
346 enum intel_sbi_destination destination
)
348 intel_sbi_rw(i915
, reg
, destination
, &value
, false);
351 static int gen6_check_mailbox_status(u32 mbox
)
353 switch (mbox
& GEN6_PCODE_ERROR_MASK
) {
354 case GEN6_PCODE_SUCCESS
:
356 case GEN6_PCODE_UNIMPLEMENTED_CMD
:
358 case GEN6_PCODE_ILLEGAL_CMD
:
360 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE
:
361 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE
:
363 case GEN6_PCODE_TIMEOUT
:
366 MISSING_CASE(mbox
& GEN6_PCODE_ERROR_MASK
);
371 static int gen7_check_mailbox_status(u32 mbox
)
373 switch (mbox
& GEN6_PCODE_ERROR_MASK
) {
374 case GEN6_PCODE_SUCCESS
:
376 case GEN6_PCODE_ILLEGAL_CMD
:
378 case GEN7_PCODE_TIMEOUT
:
380 case GEN7_PCODE_ILLEGAL_DATA
:
382 case GEN11_PCODE_ILLEGAL_SUBCOMMAND
:
384 case GEN11_PCODE_LOCKED
:
386 case GEN11_PCODE_REJECTED
:
388 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE
:
391 MISSING_CASE(mbox
& GEN6_PCODE_ERROR_MASK
);
396 static int __sandybridge_pcode_rw(struct drm_i915_private
*i915
,
397 u32 mbox
, u32
*val
, u32
*val1
,
402 struct intel_uncore
*uncore
= &i915
->uncore
;
404 lockdep_assert_held(&i915
->sb_lock
);
407 * GEN6_PCODE_* are outside of the forcewake domain, we can
408 * use te fw I915_READ variants to reduce the amount of work
409 * required when reading/writing.
412 if (intel_uncore_read_fw(uncore
, GEN6_PCODE_MAILBOX
) & GEN6_PCODE_READY
)
415 intel_uncore_write_fw(uncore
, GEN6_PCODE_DATA
, *val
);
416 intel_uncore_write_fw(uncore
, GEN6_PCODE_DATA1
, val1
? *val1
: 0);
417 intel_uncore_write_fw(uncore
,
418 GEN6_PCODE_MAILBOX
, GEN6_PCODE_READY
| mbox
);
420 if (__intel_wait_for_register_fw(uncore
,
429 *val
= intel_uncore_read_fw(uncore
, GEN6_PCODE_DATA
);
431 *val1
= intel_uncore_read_fw(uncore
, GEN6_PCODE_DATA1
);
433 if (INTEL_GEN(i915
) > 6)
434 return gen7_check_mailbox_status(mbox
);
436 return gen6_check_mailbox_status(mbox
);
439 int sandybridge_pcode_read(struct drm_i915_private
*i915
, u32 mbox
,
444 mutex_lock(&i915
->sb_lock
);
445 err
= __sandybridge_pcode_rw(i915
, mbox
, val
, val1
,
448 mutex_unlock(&i915
->sb_lock
);
452 "warning: pcode (read from mbox %x) mailbox access failed for %ps: %d\n",
453 mbox
, __builtin_return_address(0), err
);
459 int sandybridge_pcode_write_timeout(struct drm_i915_private
*i915
,
466 mutex_lock(&i915
->sb_lock
);
467 err
= __sandybridge_pcode_rw(i915
, mbox
, &val
, NULL
,
468 fast_timeout_us
, slow_timeout_ms
,
470 mutex_unlock(&i915
->sb_lock
);
474 "warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps: %d\n",
475 val
, mbox
, __builtin_return_address(0), err
);
481 static bool skl_pcode_try_request(struct drm_i915_private
*i915
, u32 mbox
,
482 u32 request
, u32 reply_mask
, u32 reply
,
485 *status
= __sandybridge_pcode_rw(i915
, mbox
, &request
, NULL
,
489 return *status
|| ((request
& reply_mask
) == reply
);
493 * skl_pcode_request - send PCODE request until acknowledgment
494 * @i915: device private
495 * @mbox: PCODE mailbox ID the request is targeted for
496 * @request: request ID
497 * @reply_mask: mask used to check for request acknowledgment
498 * @reply: value used to check for request acknowledgment
499 * @timeout_base_ms: timeout for polling with preemption enabled
501 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
502 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
503 * The request is acknowledged once the PCODE reply dword equals @reply after
504 * applying @reply_mask. Polling is first attempted with preemption enabled
505 * for @timeout_base_ms and if this times out for another 50 ms with
506 * preemption disabled.
508 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
509 * other error as reported by PCODE.
511 int skl_pcode_request(struct drm_i915_private
*i915
, u32 mbox
, u32 request
,
512 u32 reply_mask
, u32 reply
, int timeout_base_ms
)
517 mutex_lock(&i915
->sb_lock
);
520 skl_pcode_try_request(i915, mbox, request, reply_mask, reply, &status)
523 * Prime the PCODE by doing a request first. Normally it guarantees
524 * that a subsequent request, at most @timeout_base_ms later, succeeds.
525 * _wait_for() doesn't guarantee when its passed condition is evaluated
526 * first, so send the first request explicitly.
532 ret
= _wait_for(COND
, timeout_base_ms
* 1000, 10, 10);
537 * The above can time out if the number of requests was low (2 in the
538 * worst case) _and_ PCODE was busy for some reason even after a
539 * (queued) request and @timeout_base_ms delay. As a workaround retry
540 * the poll with preemption disabled to maximize the number of
541 * requests. Increase the timeout from @timeout_base_ms to 50ms to
542 * account for interrupts that could reduce the number of these
543 * requests, and for any quirks of the PCODE firmware that delays
544 * the request completion.
546 drm_dbg_kms(&i915
->drm
,
547 "PCODE timeout, retrying with preemption disabled\n");
548 drm_WARN_ON_ONCE(&i915
->drm
, timeout_base_ms
> 3);
550 ret
= wait_for_atomic(COND
, 50);
554 mutex_unlock(&i915
->sb_lock
);
555 return ret
? ret
: status
;
559 void intel_pcode_init(struct drm_i915_private
*i915
)
566 ret
= skl_pcode_request(i915
, DG1_PCODE_STATUS
,
567 DG1_UNCORE_GET_INIT_STATUS
,
568 DG1_UNCORE_INIT_STATUS_COMPLETE
,
569 DG1_UNCORE_INIT_STATUS_COMPLETE
, 50);
571 drm_err(&i915
->drm
, "Pcode did not report uncore initialization completion!\n");