2014-11-14 08:52:28 -08:00
/*
* Copyright © 2014 Intel Corporation
*
* Permission is hereby granted , free of charge , to any person obtaining a
* copy of this software and associated documentation files ( the " Software " ) ,
* to deal in the Software without restriction , including without limitation
* the rights to use , copy , modify , merge , publish , distribute , sublicense ,
* and / or sell copies of the Software , and to permit persons to whom the
* Software is furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice ( including the next
* paragraph ) shall be included in all copies or substantial portions of the
* Software .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING
* FROM , OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE .
*/
2019-04-05 14:00:09 +03:00
# include <drm/drm_atomic_helper.h>
2021-09-14 14:25:06 -07:00
# include <drm/drm_damage_helper.h>
2019-04-05 14:00:09 +03:00
2019-06-13 11:44:15 +03:00
# include "display/intel_dp.h"
2019-04-05 14:00:09 +03:00
# include "i915_drv.h"
2019-10-31 12:25:59 +01:00
# include "intel_atomic.h"
2021-10-21 01:33:36 +03:00
# include "intel_crtc.h"
2021-04-30 17:39:44 +03:00
# include "intel_de.h"
2019-08-06 14:39:33 +03:00
# include "intel_display_types.h"
2021-01-20 12:18:34 +02:00
# include "intel_dp_aux.h"
# include "intel_hdmi.h"
2019-04-05 14:00:09 +03:00
# include "intel_psr.h"
2021-07-23 10:42:37 -07:00
# include "intel_snps_phy.h"
2021-02-05 16:48:36 +02:00
# include "skl_universal_plane.h"
2019-04-05 14:00:09 +03:00
2014-11-14 08:52:29 -08:00
/**
* DOC : Panel Self Refresh ( PSR / SRD )
*
* Since Haswell Display controller supports Panel Self - Refresh on display
* panels witch have a remote frame buffer ( RFB ) implemented according to PSR
* spec in eDP1 .3 . PSR feature allows the display to go to lower standby states
* when system is idle but display is on as it eliminates display refresh
* request to DDR memory completely as long as the frame buffer for that
* display is unchanged .
*
* Panel Self Refresh must be supported by both Hardware ( source ) and
* Panel ( sink ) .
*
* PSR saves power by caching the framebuffer in the panel RFB , which allows us
* to power down the link and memory controller . For DSI panels the same idea
* is called " manual mode " .
*
* The implementation uses the hardware - based PSR support which automatically
* enters / exits self - refresh mode . The hardware takes care of sending the
* required DP aux message and could even retrain the link ( that part isn ' t
* enabled yet though ) . The hardware also keeps track of any frontbuffer
* changes to know when to exit self - refresh mode again . Unfortunately that
* part doesn ' t work too well , hence why the i915 PSR support uses the
* software frontbuffer tracking to make sure it doesn ' t miss a screen
* update . For this integration intel_psr_invalidate ( ) and intel_psr_flush ( )
* get called by the frontbuffer tracking code . Note that because of locking
* issues the self - refresh re - enable code is done from a work queue , which
* must be correctly synchronized / cancelled when shutting down the pipe . "
2020-02-05 13:49:45 -08:00
*
* DC3CO ( DC3 clock off )
*
* On top of PSR2 , GEN12 adds a intermediate power savings state that turns
* clock off automatically during PSR2 idle state .
* The smaller overhead of DC3co entry / exit vs . the overhead of PSR2 deep sleep
* entry / exit allows the HW to enter a low - power state even when page flipping
* periodically ( for instance a 30f ps video playback scenario ) .
*
* Every time a flips occurs PSR2 will get out of deep sleep state ( if it was ) ,
* so DC3CO is enabled and tgl_dc3co_disable_work is schedule to run after 6
* frames , if no other flip occurs and the function above is executed , DC3CO is
* disabled and PSR2 is configured to enter deep sleep , resetting again in case
* of another flip .
* Front buffer modifications do not trigger DC3CO activation on purpose as it
* would bring a lot of complexity and most of the moderns systems will only
* use page flips .
2014-11-14 08:52:29 -08:00
*/
2021-02-04 15:40:14 +02:00
static bool psr_global_enabled ( struct intel_dp * intel_dp )
2018-08-09 16:21:01 +02:00
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * i915 = dp_to_i915 ( intel_dp ) ;
switch ( intel_dp - > psr . debug & I915_PSR_DEBUG_MODE_MASK ) {
2018-08-09 16:21:01 +02:00
case I915_PSR_DEBUG_DEFAULT :
2020-06-18 18:04:02 +03:00
return i915 - > params . enable_psr ;
2018-08-09 16:21:01 +02:00
case I915_PSR_DEBUG_DISABLE :
return false ;
default :
return true ;
}
}
2021-02-04 15:40:14 +02:00
static bool psr2_global_enabled ( struct intel_dp * intel_dp )
2018-08-08 16:19:11 +02:00
{
2021-02-04 15:40:14 +02:00
switch ( intel_dp - > psr . debug & I915_PSR_DEBUG_MODE_MASK ) {
2019-01-17 12:55:45 -08:00
case I915_PSR_DEBUG_DISABLE :
2018-08-08 16:19:11 +02:00
case I915_PSR_DEBUG_FORCE_PSR1 :
return false ;
default :
2020-10-07 12:52:37 -07:00
return true ;
2018-08-08 16:19:11 +02:00
}
}
2021-02-04 15:40:14 +02:00
static void psr_irq_control ( struct intel_dp * intel_dp )
2018-11-20 11:23:24 +02:00
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2019-09-04 14:34:15 -07:00
enum transcoder trans_shift ;
i915_reg_t imr_reg ;
2021-02-04 15:40:14 +02:00
u32 mask , val ;
2019-09-04 14:34:14 -07:00
2019-09-04 14:34:15 -07:00
/*
* gen12 + has registers relative to transcoder and one per transcoder
* using the same bit definition : handle it as TRANSCODER_EDP to force
* 0 shift in bit definition
*/
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 12 ) {
2019-09-04 14:34:15 -07:00
trans_shift = 0 ;
2021-02-04 15:40:14 +02:00
imr_reg = TRANS_PSR_IMR ( intel_dp - > psr . transcoder ) ;
2019-09-04 14:34:15 -07:00
} else {
2021-02-04 15:40:14 +02:00
trans_shift = intel_dp - > psr . transcoder ;
2019-09-04 14:34:15 -07:00
imr_reg = EDP_PSR_IMR ;
}
mask = EDP_PSR_ERROR ( trans_shift ) ;
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . debug & I915_PSR_DEBUG_IRQ )
2019-09-04 14:34:15 -07:00
mask | = EDP_PSR_POST_EXIT ( trans_shift ) |
EDP_PSR_PRE_ENTRY ( trans_shift ) ;
2019-09-04 14:34:14 -07:00
/* Warning: it is masking/setting reserved bits too */
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
val = intel_de_read ( dev_priv , imr_reg ) ;
2019-09-04 14:34:15 -07:00
val & = ~ EDP_PSR_TRANS_MASK ( trans_shift ) ;
2019-09-04 14:34:14 -07:00
val | = ~ mask ;
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
intel_de_write ( dev_priv , imr_reg , val ) ;
2018-04-04 18:37:17 -07:00
}
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
static void psr_event_print ( struct drm_i915_private * i915 ,
u32 val , bool psr2_enabled )
2018-04-25 14:23:32 -07:00
{
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " PSR exit events: 0x%x \n " , val ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_PSR2_WD_TIMER_EXPIRE )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t PSR2 watchdog timer expired \n " ) ;
2018-04-25 14:23:32 -07:00
if ( ( val & PSR_EVENT_PSR2_DISABLED ) & & psr2_enabled )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t PSR2 disabled \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_SU_DIRTY_FIFO_UNDERRUN )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t SU dirty FIFO underrun \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_SU_CRC_FIFO_UNDERRUN )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t SU CRC FIFO underrun \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_GRAPHICS_RESET )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t Graphics reset \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_PCH_INTERRUPT )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t PCH interrupt \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_MEMORY_UP )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t Memory up \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_FRONT_BUFFER_MODIFY )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t Front buffer modification \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_WD_TIMER_EXPIRE )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t PSR watchdog timer expired \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_PIPE_REGISTERS_UPDATE )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t PIPE registers updated \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_REGISTER_UPDATE )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t Register updated \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_HDCP_ENABLE )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t HDCP enabled \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_KVMR_SESSION_ENABLE )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t KVMR session enabled \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_VBI_ENABLE )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t VBI enabled \n " ) ;
2018-04-25 14:23:32 -07:00
if ( val & PSR_EVENT_LPSP_MODE_EXIT )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t LPSP mode exited \n " ) ;
2018-04-25 14:23:32 -07:00
if ( ( val & PSR_EVENT_PSR_DISABLE ) & & ! psr2_enabled )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm , " \t PSR disabled \n " ) ;
2018-04-25 14:23:32 -07:00
}
2021-02-04 15:40:14 +02:00
void intel_psr_irq_handler ( struct intel_dp * intel_dp , u32 psr_iir )
2018-04-04 18:37:17 -07:00
{
2021-02-04 15:40:14 +02:00
enum transcoder cpu_transcoder = intel_dp - > psr . transcoder ;
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
ktime_t time_ns = ktime_get ( ) ;
2019-09-04 14:34:15 -07:00
enum transcoder trans_shift ;
i915_reg_t imr_reg ;
2018-11-20 11:23:24 +02:00
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 12 ) {
2019-09-04 14:34:15 -07:00
trans_shift = 0 ;
2021-02-04 15:40:14 +02:00
imr_reg = TRANS_PSR_IMR ( intel_dp - > psr . transcoder ) ;
2019-09-04 14:34:15 -07:00
} else {
2021-02-04 15:40:14 +02:00
trans_shift = intel_dp - > psr . transcoder ;
2019-09-04 14:34:15 -07:00
imr_reg = EDP_PSR_IMR ;
}
if ( psr_iir & EDP_PSR_PRE_ENTRY ( trans_shift ) ) {
2021-02-04 15:40:14 +02:00
intel_dp - > psr . last_entry_attempt = time_ns ;
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" [transcoder %s] PSR entry attempt in 2 vblanks \n " ,
transcoder_name ( cpu_transcoder ) ) ;
2019-09-04 14:34:14 -07:00
}
2018-11-21 14:54:39 -08:00
2019-09-04 14:34:15 -07:00
if ( psr_iir & EDP_PSR_POST_EXIT ( trans_shift ) ) {
2021-02-04 15:40:14 +02:00
intel_dp - > psr . last_exit = time_ns ;
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" [transcoder %s] PSR exit completed \n " ,
transcoder_name ( cpu_transcoder ) ) ;
2018-11-21 14:54:39 -08:00
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 9 ) {
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
u32 val = intel_de_read ( dev_priv ,
PSR_EVENT ( cpu_transcoder ) ) ;
2021-02-04 15:40:14 +02:00
bool psr2_enabled = intel_dp - > psr . psr2_enabled ;
2018-04-04 18:37:17 -07:00
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
intel_de_write ( dev_priv , PSR_EVENT ( cpu_transcoder ) ,
val ) ;
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
psr_event_print ( dev_priv , val , psr2_enabled ) ;
2018-04-03 14:24:20 -07:00
}
2019-09-04 14:34:14 -07:00
}
2018-04-04 18:37:17 -07:00
2019-09-04 14:34:15 -07:00
if ( psr_iir & EDP_PSR_ERROR ( trans_shift ) ) {
2019-09-04 14:34:14 -07:00
u32 val ;
2018-04-25 14:23:32 -07:00
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_warn ( & dev_priv - > drm , " [transcoder %s] PSR aux error \n " ,
2019-09-04 14:34:14 -07:00
transcoder_name ( cpu_transcoder ) ) ;
2018-04-25 14:23:32 -07:00
2021-02-04 15:40:14 +02:00
intel_dp - > psr . irq_aux_error = true ;
2018-11-21 14:54:39 -08:00
2019-09-04 14:34:14 -07:00
/*
* If this interruption is not masked it will keep
* interrupting so fast that it prevents the scheduled
* work to run .
* Also after a PSR error , we don ' t want to arm PSR
* again so we don ' t care about unmask the interruption
* or unset irq_aux_error .
*/
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
val = intel_de_read ( dev_priv , imr_reg ) ;
2019-09-04 14:34:15 -07:00
val | = EDP_PSR_ERROR ( trans_shift ) ;
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
intel_de_write ( dev_priv , imr_reg , val ) ;
2018-11-21 14:54:39 -08:00
2021-02-04 15:40:14 +02:00
schedule_work ( & intel_dp - > psr . work ) ;
2018-11-21 14:54:39 -08:00
}
2018-04-04 18:37:17 -07:00
}
2018-02-23 14:15:17 -08:00
static bool intel_dp_get_alpm_status ( struct intel_dp * intel_dp )
{
2019-01-16 11:15:19 +02:00
u8 alpm_caps = 0 ;
2018-02-23 14:15:17 -08:00
if ( drm_dp_dpcd_readb ( & intel_dp - > aux , DP_RECEIVER_ALPM_CAP ,
& alpm_caps ) ! = 1 )
return false ;
return alpm_caps & DP_ALPM_CAP ;
}
2018-03-28 15:30:44 -07:00
static u8 intel_dp_get_sink_sync_latency ( struct intel_dp * intel_dp )
{
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
struct drm_i915_private * i915 = dp_to_i915 ( intel_dp ) ;
2018-05-11 12:51:44 -07:00
u8 val = 8 ; /* assume the worst if we can't read the value */
2018-03-28 15:30:44 -07:00
if ( drm_dp_dpcd_readb ( & intel_dp - > aux ,
DP_SYNCHRONIZATION_LATENCY_IN_SINK , & val ) = = 1 )
val & = DP_MAX_RESYNC_FRAME_COUNT_MASK ;
else
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm ,
" Unable to get sink synchronization latency, assuming 8 frames \n " ) ;
2018-03-28 15:30:44 -07:00
return val ;
}
2021-06-16 13:31:53 -07:00
static void intel_dp_get_su_granularity ( struct intel_dp * intel_dp )
2018-12-03 16:34:03 -08:00
{
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
struct drm_i915_private * i915 = dp_to_i915 ( intel_dp ) ;
2018-12-03 16:34:03 -08:00
ssize_t r ;
2021-06-16 13:31:53 -07:00
u16 w ;
u8 y ;
/* If sink don't have specific granularity requirements set legacy ones */
if ( ! ( intel_dp - > psr_dpcd [ 1 ] & DP_PSR2_SU_GRANULARITY_REQUIRED ) ) {
/* As PSR2 HW sends full lines, we do not care about x granularity */
w = 4 ;
y = 4 ;
goto exit ;
}
2018-12-03 16:34:03 -08:00
2021-06-16 13:31:53 -07:00
r = drm_dp_dpcd_read ( & intel_dp - > aux , DP_PSR2_SU_X_GRANULARITY , & w , 2 ) ;
2018-12-03 16:34:03 -08:00
if ( r ! = 2 )
drm/i915/psr: use struct drm_device based logging
Convert all the DRM_* logging macros to the struct drm_device based
macros to provide device specific logging.
No functional changes.
Generated using the following semantic patch, originally written by
Wambui Karuga <wambui.karugax@gmail.com>, with manual fixups on top:
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_NOTE(
+drm_notice(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Cc: Wambui Karuga <wambui.karugax@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/cac03aba0a363c8f704035f1f771c73385235a35.1584714939.git.jani.nikula@intel.com
2020-03-20 16:36:37 +02:00
drm_dbg_kms ( & i915 - > drm ,
" Unable to read DP_PSR2_SU_X_GRANULARITY \n " ) ;
2018-12-03 16:34:03 -08:00
/*
* Spec says that if the value read is 0 the default granularity should
* be used instead .
*/
2021-06-16 13:31:53 -07:00
if ( r ! = 2 | | w = = 0 )
w = 4 ;
2018-12-03 16:34:03 -08:00
2021-06-16 13:31:53 -07:00
r = drm_dp_dpcd_read ( & intel_dp - > aux , DP_PSR2_SU_Y_GRANULARITY , & y , 1 ) ;
if ( r ! = 1 ) {
drm_dbg_kms ( & i915 - > drm ,
" Unable to read DP_PSR2_SU_Y_GRANULARITY \n " ) ;
y = 4 ;
}
if ( y = = 0 )
y = 1 ;
exit :
intel_dp - > psr . su_w_granularity = w ;
intel_dp - > psr . su_y_granularity = y ;
2018-12-03 16:34:03 -08:00
}
2018-02-23 14:15:17 -08:00
void intel_psr_init_dpcd ( struct intel_dp * intel_dp )
{
struct drm_i915_private * dev_priv =
to_i915 ( dp_to_dig_port ( intel_dp ) - > base . base . dev ) ;
drm_dp_dpcd_read ( & intel_dp - > aux , DP_PSR_SUPPORT , intel_dp - > psr_dpcd ,
sizeof ( intel_dp - > psr_dpcd ) ) ;
2018-05-11 12:51:40 -07:00
if ( ! intel_dp - > psr_dpcd [ 0 ] )
return ;
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm , " eDP panel supports PSR version %x \n " ,
intel_dp - > psr_dpcd [ 0 ] ) ;
2018-05-11 12:51:41 -07:00
2020-09-15 12:49:13 -04:00
if ( drm_dp_has_quirk ( & intel_dp - > desc , DP_DPCD_QUIRK_NO_PSR ) ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR support not currently available for this panel \n " ) ;
2018-12-03 16:33:55 -08:00
return ;
}
2018-05-11 12:51:41 -07:00
if ( ! ( intel_dp - > edp_dpcd [ 1 ] & DP_EDP_SET_POWER_CAP ) ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" Panel lacks power state control, PSR cannot be enabled \n " ) ;
2018-05-11 12:51:41 -07:00
return ;
}
2018-12-03 16:33:55 -08:00
2021-02-04 15:40:14 +02:00
intel_dp - > psr . sink_support = true ;
intel_dp - > psr . sink_sync_latency =
2018-05-24 20:30:47 -07:00
intel_dp_get_sink_sync_latency ( intel_dp ) ;
2018-02-23 14:15:17 -08:00
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 9 & &
2018-03-28 15:30:40 -07:00
( intel_dp - > psr_dpcd [ 0 ] = = DP_PSR2_WITH_Y_COORD_IS_SUPPORTED ) ) {
2018-05-11 12:51:45 -07:00
bool y_req = intel_dp - > psr_dpcd [ 1 ] &
DP_PSR2_SU_Y_COORDINATE_REQUIRED ;
bool alpm = intel_dp_get_alpm_status ( intel_dp ) ;
2018-03-28 15:30:40 -07:00
/*
* All panels that supports PSR version 03 h ( PSR2 +
* Y - coordinate ) can handle Y - coordinates in VSC but we are
* only sure that it is going to be used when required by the
* panel . This way panel is capable to do selective update
* without a aux frame sync .
*
* To support PSR version 02 h and PSR version 03 h without
* Y - coordinate requirement panels we would need to enable
* GTC first .
*/
2021-02-04 15:40:14 +02:00
intel_dp - > psr . sink_psr2_support = y_req & & alpm ;
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm , " PSR2 %ssupported \n " ,
2021-02-04 15:40:14 +02:00
intel_dp - > psr . sink_psr2_support ? " " : " not " ) ;
2018-02-23 14:15:17 -08:00
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . sink_psr2_support ) {
intel_dp - > psr . colorimetry_support =
2018-02-23 14:15:17 -08:00
intel_dp_get_colorimetry_status ( intel_dp ) ;
2021-06-16 13:31:53 -07:00
intel_dp_get_su_granularity ( intel_dp ) ;
2018-02-23 14:15:17 -08:00
}
}
}
2018-06-25 22:25:36 -07:00
static void intel_psr_enable_sink ( struct intel_dp * intel_dp )
2018-03-12 20:46:45 -07:00
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2018-03-28 15:30:45 -07:00
u8 dpcd_val = DP_PSR_ENABLE ;
2018-03-12 20:46:45 -07:00
2017-01-02 17:00:58 +05:30
/* Enable ALPM at sink for psr2 */
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . psr2_enabled ) {
2018-05-11 12:51:45 -07:00
drm_dp_dpcd_writeb ( & intel_dp - > aux , DP_RECEIVER_ALPM_CONFIG ,
2019-11-27 17:48:50 -08:00
DP_ALPM_ENABLE |
DP_ALPM_LOCK_ERROR_IRQ_HPD_ENABLE ) ;
2018-12-03 16:33:58 -08:00
dpcd_val | = DP_PSR_ENABLE_PSR2 | DP_PSR_IRQ_HPD_WITH_CRC_ERRORS ;
2018-12-03 16:33:56 -08:00
} else {
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . link_standby )
2018-12-03 16:33:56 -08:00
dpcd_val | = DP_PSR_MAIN_LINK_ACTIVE ;
2018-12-03 16:33:57 -08:00
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 8 )
2018-12-03 16:33:57 -08:00
dpcd_val | = DP_PSR_CRC_VERIFICATION ;
2018-05-11 12:51:45 -07:00
}
2021-06-16 13:31:56 -07:00
if ( intel_dp - > psr . req_psr2_sdp_prior_scanline )
dpcd_val | = DP_PSR_SU_REGION_SCANLINE_CAPTURE ;
2018-03-28 15:30:45 -07:00
drm_dp_dpcd_writeb ( & intel_dp - > aux , DP_PSR_EN_CFG , dpcd_val ) ;
2016-05-18 18:47:14 +02:00
2018-03-12 20:46:46 -07:00
drm_dp_dpcd_writeb ( & intel_dp - > aux , DP_SET_POWER , DP_SET_POWER_D0 ) ;
2014-11-14 08:52:28 -08:00
}
2019-03-12 12:57:42 -07:00
static u32 intel_psr1_get_tp_time ( struct intel_dp * intel_dp )
2014-11-14 08:52:28 -08:00
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2019-03-12 12:57:42 -07:00
u32 val = 0 ;
2016-02-01 12:02:07 -08:00
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 11 )
2019-03-12 12:57:43 -07:00
val | = EDP_PSR_TP4_TIME_0US ;
2020-06-18 18:04:02 +03:00
if ( dev_priv - > params . psr_safest_params ) {
2020-05-20 14:27:56 -07:00
val | = EDP_PSR_TP1_TIME_2500us ;
val | = EDP_PSR_TP2_TP3_TIME_2500us ;
goto check_tp3_sel ;
}
2018-05-22 14:57:23 +05:30
if ( dev_priv - > vbt . psr . tp1_wakeup_time_us = = 0 )
2019-03-12 12:57:42 -07:00
val | = EDP_PSR_TP1_TIME_0us ;
2018-05-22 14:57:23 +05:30
else if ( dev_priv - > vbt . psr . tp1_wakeup_time_us < = 100 )
2016-05-18 18:47:11 +02:00
val | = EDP_PSR_TP1_TIME_100us ;
2018-05-22 14:57:23 +05:30
else if ( dev_priv - > vbt . psr . tp1_wakeup_time_us < = 500 )
val | = EDP_PSR_TP1_TIME_500us ;
2016-05-18 18:47:11 +02:00
else
2018-05-22 14:57:23 +05:30
val | = EDP_PSR_TP1_TIME_2500us ;
2016-05-18 18:47:11 +02:00
2018-05-22 14:57:23 +05:30
if ( dev_priv - > vbt . psr . tp2_tp3_wakeup_time_us = = 0 )
2019-03-12 12:57:42 -07:00
val | = EDP_PSR_TP2_TP3_TIME_0us ;
2018-05-22 14:57:23 +05:30
else if ( dev_priv - > vbt . psr . tp2_tp3_wakeup_time_us < = 100 )
2016-05-18 18:47:11 +02:00
val | = EDP_PSR_TP2_TP3_TIME_100us ;
2018-05-22 14:57:23 +05:30
else if ( dev_priv - > vbt . psr . tp2_tp3_wakeup_time_us < = 500 )
val | = EDP_PSR_TP2_TP3_TIME_500us ;
2016-05-18 18:47:11 +02:00
else
2018-05-22 14:57:23 +05:30
val | = EDP_PSR_TP2_TP3_TIME_2500us ;
2016-05-18 18:47:11 +02:00
2020-05-20 14:27:56 -07:00
check_tp3_sel :
2021-09-29 19:24:04 +03:00
if ( intel_dp_source_supports_tps3 ( dev_priv ) & &
2016-05-18 18:47:11 +02:00
drm_dp_tps3_supported ( intel_dp - > dpcd ) )
val | = EDP_PSR_TP1_TP3_SEL ;
else
val | = EDP_PSR_TP1_TP2_SEL ;
2019-03-12 12:57:42 -07:00
return val ;
}
2020-01-13 13:46:03 -08:00
static u8 psr_compute_idle_frames ( struct intel_dp * intel_dp )
2019-03-12 12:57:42 -07:00
{
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2020-01-13 13:46:03 -08:00
int idle_frames ;
2019-03-12 12:57:42 -07:00
/* Let's use 6 as the minimum to cover all known cases including the
* off - by - one issue that HW has in some cases .
*/
2020-01-13 13:46:03 -08:00
idle_frames = max ( 6 , dev_priv - > vbt . psr . idle_frames ) ;
2021-02-04 15:40:14 +02:00
idle_frames = max ( idle_frames , intel_dp - > psr . sink_sync_latency + 1 ) ;
2020-01-13 13:46:03 -08:00
drm/i915/display/psr: Make WARN* drm specific where drm_priv ptr is available
drm specific WARN* calls include device information in the
backtrace, so we know what device the warnings originate from.
Covert all the calls of WARN* with device specific drm_WARN*
variants in functions where drm_i915_private struct pointer is readily
available.
The conversion was done automatically with below coccinelle semantic
patch.
@rule1@
identifier func, T;
@@
func(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
@rule2@
identifier func, T;
@@
func(struct drm_i915_private *T,...) {
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200128181603.27767-17-pankaj.laxminarayan.bharadiya@intel.com
2020-01-28 23:45:58 +05:30
if ( drm_WARN_ON ( & dev_priv - > drm , idle_frames > 0xf ) )
2020-01-13 13:46:03 -08:00
idle_frames = 0xf ;
return idle_frames ;
}
static void hsw_activate_psr1 ( struct intel_dp * intel_dp )
{
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
u32 max_sleep_time = 0x1f ;
u32 val = EDP_PSR_ENABLE ;
val | = psr_compute_idle_frames ( intel_dp ) < < EDP_PSR_IDLE_FRAME_SHIFT ;
2019-03-12 12:57:42 -07:00
val | = max_sleep_time < < EDP_PSR_MAX_SLEEP_TIME_SHIFT ;
if ( IS_HASWELL ( dev_priv ) )
val | = EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES ;
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . link_standby )
2019-03-12 12:57:42 -07:00
val | = EDP_PSR_LINK_STANDBY ;
val | = intel_psr1_get_tp_time ( intel_dp ) ;
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 8 )
2018-06-26 13:16:44 -07:00
val | = EDP_PSR_CRC_ENABLE ;
2021-02-04 15:40:14 +02:00
val | = ( intel_de_read ( dev_priv , EDP_PSR_CTL ( intel_dp - > psr . transcoder ) ) &
2019-08-20 15:33:23 -07:00
EDP_PSR_RESTORE_PSR_ACTIVE_CTX_MASK ) ;
2021-02-04 15:40:14 +02:00
intel_de_write ( dev_priv , EDP_PSR_CTL ( intel_dp - > psr . transcoder ) , val ) ;
drm/i915/psr: fix blank screen issue for psr2
Psr1 and psr2 are mutually exclusive,ie when psr2 is enabled,
psr1 should be disabled.When psr2 is exited , bit 31 of reg
PSR2_CTL must be set to 0 but currently bit 31 of SRD_CTL
(psr1 control register)is set to 0.
Also ,PSR2_IDLE state is looked up from SRD_STATUS(psr1 register)
instead of PSR2_STATUS register, which has wrong data, resulting
in blankscreen.
hsw_enable_source is split into hsw_enable_source_psr1 and
hsw_enable_source_psr2 for easier code review and maintenance,
as suggested by rodrigo and jim.
v2: (Rodrigo)
- Rename hsw_enable_source_psr* to intel_enable_source_psr*
v3: (Rodrigo)
- In hsw_psr_disable ,
1) for psr active case, handle psr2 followed by psr1.
2) psr inactive case, handle psr2 followed by psr1
v4:(Rodrigo)
- move psr2 restriction(32X20) to match_conditions function
returning false and fully blocking PSR to a new patch before
this one.
v5: in source_psr2, removed val = EDP_PSR_ENABLE
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Jim Bride <jim.bride@linux.intel.com>
Signed-off-by: Vathsala Nagaraju <vathsala.nagaraju@intel.com>
Signed-off-by: Patil Deepti <deepti.patil@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1484244059-9201-1-git-send-email-vathsala.nagaraju@intel.com
2017-01-12 23:30:59 +05:30
}
2016-05-18 18:47:11 +02:00
2020-05-20 14:27:56 -07:00
static u32 intel_psr2_get_tp_time ( struct intel_dp * intel_dp )
drm/i915/psr: fix blank screen issue for psr2
Psr1 and psr2 are mutually exclusive,ie when psr2 is enabled,
psr1 should be disabled.When psr2 is exited , bit 31 of reg
PSR2_CTL must be set to 0 but currently bit 31 of SRD_CTL
(psr1 control register)is set to 0.
Also ,PSR2_IDLE state is looked up from SRD_STATUS(psr1 register)
instead of PSR2_STATUS register, which has wrong data, resulting
in blankscreen.
hsw_enable_source is split into hsw_enable_source_psr1 and
hsw_enable_source_psr2 for easier code review and maintenance,
as suggested by rodrigo and jim.
v2: (Rodrigo)
- Rename hsw_enable_source_psr* to intel_enable_source_psr*
v3: (Rodrigo)
- In hsw_psr_disable ,
1) for psr active case, handle psr2 followed by psr1.
2) psr inactive case, handle psr2 followed by psr1
v4:(Rodrigo)
- move psr2 restriction(32X20) to match_conditions function
returning false and fully blocking PSR to a new patch before
this one.
v5: in source_psr2, removed val = EDP_PSR_ENABLE
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Jim Bride <jim.bride@linux.intel.com>
Signed-off-by: Vathsala Nagaraju <vathsala.nagaraju@intel.com>
Signed-off-by: Patil Deepti <deepti.patil@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1484244059-9201-1-git-send-email-vathsala.nagaraju@intel.com
2017-01-12 23:30:59 +05:30
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2020-05-20 14:27:56 -07:00
u32 val = 0 ;
2017-09-26 15:29:13 +05:30
2020-06-18 18:04:02 +03:00
if ( dev_priv - > params . psr_safest_params )
2020-05-20 14:27:56 -07:00
return EDP_PSR2_TP2_TIME_2500us ;
2016-05-18 18:47:11 +02:00
2019-03-12 12:57:41 -07:00
if ( dev_priv - > vbt . psr . psr2_tp2_tp3_wakeup_time_us > = 0 & &
dev_priv - > vbt . psr . psr2_tp2_tp3_wakeup_time_us < = 50 )
2018-05-22 14:57:23 +05:30
val | = EDP_PSR2_TP2_TIME_50us ;
2019-03-12 12:57:41 -07:00
else if ( dev_priv - > vbt . psr . psr2_tp2_tp3_wakeup_time_us < = 100 )
2018-05-22 14:57:23 +05:30
val | = EDP_PSR2_TP2_TIME_100us ;
2019-03-12 12:57:41 -07:00
else if ( dev_priv - > vbt . psr . psr2_tp2_tp3_wakeup_time_us < = 500 )
2018-05-22 14:57:23 +05:30
val | = EDP_PSR2_TP2_TIME_500us ;
2016-05-18 18:47:11 +02:00
else
2018-05-22 14:57:23 +05:30
val | = EDP_PSR2_TP2_TIME_2500us ;
2015-04-02 11:02:44 +05:30
2020-05-20 14:27:56 -07:00
return val ;
}
static void hsw_activate_psr2 ( struct intel_dp * intel_dp )
{
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-06-25 16:55:59 -07:00
u32 val = EDP_PSR2_ENABLE ;
val | = psr_compute_idle_frames ( intel_dp ) < < EDP_PSR2_IDLE_FRAME_SHIFT ;
2020-05-20 14:27:56 -07:00
2021-06-25 16:55:59 -07:00
if ( ! IS_ALDERLAKE_P ( dev_priv ) )
val | = EDP_SU_TRACK_ENABLE ;
2020-05-20 14:27:56 -07:00
2021-04-21 15:02:24 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 10 & & DISPLAY_VER ( dev_priv ) < = 12 )
2020-05-20 14:27:56 -07:00
val | = EDP_Y_COORDINATE_ENABLE ;
2021-09-14 14:25:04 -07:00
val | = EDP_PSR2_FRAME_BEFORE_SU ( max_t ( u8 , intel_dp - > psr . sink_sync_latency + 1 , 2 ) ) ;
2020-05-20 14:27:56 -07:00
val | = intel_psr2_get_tp_time ( intel_dp ) ;
2021-07-12 17:38:49 -07:00
/* Wa_22012278275:adl-p */
2021-07-16 22:14:26 -07:00
if ( IS_ADLP_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_E0 ) ) {
2021-06-16 13:31:54 -07:00
static const u8 map [ ] = {
2 , /* 5 lines */
1 , /* 6 lines */
0 , /* 7 lines */
3 , /* 8 lines */
6 , /* 9 lines */
5 , /* 10 lines */
4 , /* 11 lines */
7 , /* 12 lines */
} ;
/*
* Still using the default IO_BUFFER_WAKE and FAST_WAKE , see
* comments bellow for more information
*/
u32 tmp , lines = 7 ;
val | = TGL_EDP_PSR2_BLOCK_COUNT_NUM_2 ;
tmp = map [ lines - TGL_EDP_PSR2_IO_BUFFER_WAKE_MIN_LINES ] ;
tmp = tmp < < TGL_EDP_PSR2_IO_BUFFER_WAKE_SHIFT ;
val | = tmp ;
tmp = map [ lines - TGL_EDP_PSR2_FAST_WAKE_MIN_LINES ] ;
tmp = tmp < < TGL_EDP_PSR2_FAST_WAKE_MIN_SHIFT ;
val | = tmp ;
} else if ( DISPLAY_VER ( dev_priv ) > = 12 ) {
2020-06-07 17:36:14 +03:00
/*
* TODO : 7 lines of IO_BUFFER_WAKE and FAST_WAKE are default
* values from BSpec . In order to setting an optimal power
* consumption , lower than 4 k resoluition mode needs to decrese
* IO_BUFFER_WAKE and FAST_WAKE . And higher than 4 K resolution
* mode needs to increase IO_BUFFER_WAKE and FAST_WAKE .
*/
val | = TGL_EDP_PSR2_BLOCK_COUNT_NUM_2 ;
val | = TGL_EDP_PSR2_IO_BUFFER_WAKE ( 7 ) ;
val | = TGL_EDP_PSR2_FAST_WAKE ( 7 ) ;
2021-03-19 21:42:42 -07:00
} else if ( DISPLAY_VER ( dev_priv ) > = 9 ) {
2020-06-07 17:36:14 +03:00
val | = EDP_PSR2_IO_BUFFER_WAKE ( 7 ) ;
val | = EDP_PSR2_FAST_WAKE ( 7 ) ;
}
2021-06-16 13:31:56 -07:00
if ( intel_dp - > psr . req_psr2_sdp_prior_scanline )
val | = EDP_PSR2_SU_SDP_SCANLINE ;
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . psr2_sel_fetch_enabled ) {
2021-09-22 14:52:41 -07:00
u32 tmp ;
2021-07-16 22:14:25 -07:00
/* Wa_1408330847 */
2021-07-16 22:14:26 -07:00
if ( IS_TGL_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_B0 ) )
2020-08-10 10:41:44 -07:00
intel_de_rmw ( dev_priv , CHICKEN_PAR1_1 ,
DIS_RAM_BYPASS_PSR2_MAN_TRACK ,
DIS_RAM_BYPASS_PSR2_MAN_TRACK ) ;
2021-09-22 14:52:41 -07:00
tmp = intel_de_read ( dev_priv , PSR2_MAN_TRK_CTL ( intel_dp - > psr . transcoder ) ) ;
drm_WARN_ON ( & dev_priv - > drm , ! ( tmp & PSR2_MAN_TRK_CTL_ENABLE ) ) ;
2020-08-10 10:41:44 -07:00
} else if ( HAS_PSR2_SEL_FETCH ( dev_priv ) ) {
2020-08-10 10:41:43 -07:00
intel_de_write ( dev_priv ,
2021-02-04 15:40:14 +02:00
PSR2_MAN_TRK_CTL ( intel_dp - > psr . transcoder ) , 0 ) ;
2020-08-10 10:41:44 -07:00
}
2020-08-10 10:41:43 -07:00
2019-03-14 16:01:13 -07:00
/*
2019-04-05 17:51:09 -07:00
* PSR2 HW is incorrectly using EDP_PSR_TP1_TP3_SEL and BSpec is
* recommending keep this bit unset while PSR2 is enabled .
2019-03-14 16:01:13 -07:00
*/
2021-02-04 15:40:14 +02:00
intel_de_write ( dev_priv , EDP_PSR_CTL ( intel_dp - > psr . transcoder ) , 0 ) ;
2019-03-14 16:01:13 -07:00
2021-02-04 15:40:14 +02:00
intel_de_write ( dev_priv , EDP_PSR2_CTL ( intel_dp - > psr . transcoder ) , val ) ;
2014-11-14 08:52:28 -08:00
}
2019-08-20 15:33:24 -07:00
static bool
transcoder_has_psr2 ( struct drm_i915_private * dev_priv , enum transcoder trans )
{
2021-10-27 11:05:45 -07:00
if ( IS_ALDERLAKE_P ( dev_priv ) )
return trans = = TRANSCODER_A | | trans = = TRANSCODER_B ;
else if ( DISPLAY_VER ( dev_priv ) > = 12 )
2019-08-20 15:33:24 -07:00
return trans = = TRANSCODER_A ;
else
return trans = = TRANSCODER_EDP ;
}
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
static u32 intel_get_frame_time_us ( const struct intel_crtc_state * cstate )
{
2019-10-31 12:26:02 +01:00
if ( ! cstate | | ! cstate - > hw . active )
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
return 0 ;
return DIV_ROUND_UP ( 1000 * 1000 ,
2019-10-31 12:26:02 +01:00
drm_mode_vrefresh ( & cstate - > hw . adjusted_mode ) ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
}
2021-02-04 15:40:14 +02:00
static void psr2_program_idle_frames ( struct intel_dp * intel_dp ,
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
u32 idle_frames )
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
u32 val ;
idle_frames < < = EDP_PSR2_IDLE_FRAME_SHIFT ;
2021-02-04 15:40:14 +02:00
val = intel_de_read ( dev_priv , EDP_PSR2_CTL ( intel_dp - > psr . transcoder ) ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
val & = ~ EDP_PSR2_IDLE_FRAME_MASK ;
val | = idle_frames ;
2021-02-04 15:40:14 +02:00
intel_de_write ( dev_priv , EDP_PSR2_CTL ( intel_dp - > psr . transcoder ) , val ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
}
2021-02-04 15:40:14 +02:00
static void tgl_psr2_enable_dc3co ( struct intel_dp * intel_dp )
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
psr2_program_idle_frames ( intel_dp , 0 ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
intel_display_power_set_target_dc_state ( dev_priv , DC_STATE_EN_DC3CO ) ;
}
2021-02-04 15:40:14 +02:00
static void tgl_psr2_disable_dc3co ( struct intel_dp * intel_dp )
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
intel_display_power_set_target_dc_state ( dev_priv , DC_STATE_EN_UPTO_DC6 ) ;
2021-02-04 15:40:14 +02:00
psr2_program_idle_frames ( intel_dp , psr_compute_idle_frames ( intel_dp ) ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
}
2020-02-05 13:49:45 -08:00
static void tgl_dc3co_disable_work ( struct work_struct * work )
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
{
2021-02-04 15:40:14 +02:00
struct intel_dp * intel_dp =
container_of ( work , typeof ( * intel_dp ) , psr . dc3co_work . work ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
2021-02-04 15:40:14 +02:00
mutex_lock ( & intel_dp - > psr . lock ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
/* If delayed work is pending, it is not idle */
2021-02-04 15:40:14 +02:00
if ( delayed_work_pending ( & intel_dp - > psr . dc3co_work ) )
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
goto unlock ;
2021-02-04 15:40:14 +02:00
tgl_psr2_disable_dc3co ( intel_dp ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
unlock :
2021-02-04 15:40:14 +02:00
mutex_unlock ( & intel_dp - > psr . lock ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
}
2021-02-04 15:40:14 +02:00
static void tgl_disallow_dc3co_on_psr2_exit ( struct intel_dp * intel_dp )
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
{
2021-05-18 17:06:19 -07:00
if ( ! intel_dp - > psr . dc3co_exitline )
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
return ;
2021-02-04 15:40:14 +02:00
cancel_delayed_work ( & intel_dp - > psr . dc3co_work ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
/* Before PSR2 exit disallow dc3co*/
2021-02-04 15:40:14 +02:00
tgl_psr2_disable_dc3co ( intel_dp ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
}
2021-05-24 14:48:04 -07:00
static bool
dc3co_is_pipe_port_compatible ( struct intel_dp * intel_dp ,
struct intel_crtc_state * crtc_state )
{
struct intel_digital_port * dig_port = dp_to_dig_port ( intel_dp ) ;
enum pipe pipe = to_intel_crtc ( crtc_state - > uapi . crtc ) - > pipe ;
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
enum port port = dig_port - > base . port ;
if ( IS_ALDERLAKE_P ( dev_priv ) )
return pipe < = PIPE_B & & port < = PORT_B ;
else
return pipe = = PIPE_A & & port = = PORT_A ;
}
2020-01-22 10:26:17 -08:00
static void
tgl_dc3co_exitline_compute_config ( struct intel_dp * intel_dp ,
struct intel_crtc_state * crtc_state )
{
const u32 crtc_vdisplay = crtc_state - > uapi . adjusted_mode . crtc_vdisplay ;
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
u32 exit_scanlines ;
2021-04-01 20:02:37 +03:00
/*
* FIXME : Due to the changed sequence of activating / deactivating DC3CO ,
* disable DC3CO until the changed dc3co activating / deactivating sequence
* is applied . B . Specs : 49196
*/
return ;
2021-02-22 23:30:06 +02:00
/*
* DMC ' s DC3CO exit mechanism has an issue with Selective Fecth
* TODO : when the issue is addressed , this restriction should be removed .
*/
if ( crtc_state - > enable_psr2_sel_fetch )
return ;
2021-05-18 14:34:40 -07:00
if ( ! ( dev_priv - > dmc . allowed_dc_mask & DC_STATE_EN_DC3CO ) )
2020-01-22 10:26:17 -08:00
return ;
2021-05-24 14:48:04 -07:00
if ( ! dc3co_is_pipe_port_compatible ( intel_dp , crtc_state ) )
2020-01-22 10:26:17 -08:00
return ;
2021-07-12 17:38:49 -07:00
/* Wa_16011303918:adl-p */
2021-07-16 22:14:26 -07:00
if ( IS_ADLP_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_B0 ) )
2021-06-16 13:31:57 -07:00
return ;
2020-01-22 10:26:17 -08:00
/*
* DC3CO Exit time 200u s B . Spec 49196
* PSR2 transcoder Early Exit scanlines = ROUNDUP ( 200 / line time ) + 1
*/
exit_scanlines =
intel_usecs_to_scanlines ( & crtc_state - > uapi . adjusted_mode , 200 ) + 1 ;
drm/i915/display/psr: Make WARN* drm specific where drm_priv ptr is available
drm specific WARN* calls include device information in the
backtrace, so we know what device the warnings originate from.
Covert all the calls of WARN* with device specific drm_WARN*
variants in functions where drm_i915_private struct pointer is readily
available.
The conversion was done automatically with below coccinelle semantic
patch.
@rule1@
identifier func, T;
@@
func(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
@rule2@
identifier func, T;
@@
func(struct drm_i915_private *T,...) {
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200128181603.27767-17-pankaj.laxminarayan.bharadiya@intel.com
2020-01-28 23:45:58 +05:30
if ( drm_WARN_ON ( & dev_priv - > drm , exit_scanlines > crtc_vdisplay ) )
2020-01-22 10:26:17 -08:00
return ;
crtc_state - > dc3co_exitline = crtc_vdisplay - exit_scanlines ;
}
2020-08-10 10:41:43 -07:00
static bool intel_psr2_sel_fetch_config_valid ( struct intel_dp * intel_dp ,
struct intel_crtc_state * crtc_state )
{
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-02-09 12:50:36 -08:00
if ( ! dev_priv - > params . enable_psr2_sel_fetch & &
intel_dp - > psr . debug ! = I915_PSR_DEBUG_ENABLE_SEL_FETCH ) {
2020-08-10 10:41:43 -07:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 sel fetch not enabled, disabled by parameter \n " ) ;
return false ;
}
if ( crtc_state - > uapi . async_flip ) {
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 sel fetch not enabled, async flip enabled \n " ) ;
return false ;
}
2021-05-05 14:38:01 -07:00
/* Wa_14010254185 Wa_14010103792 */
2021-07-16 22:14:26 -07:00
if ( IS_TGL_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_C0 ) ) {
2021-05-05 14:38:01 -07:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 sel fetch not enabled, missing the implementation of WAs \n " ) ;
return false ;
}
2020-08-10 10:41:43 -07:00
return crtc_state - > enable_psr2_sel_fetch = true ;
}
2021-06-16 13:31:53 -07:00
static bool psr2_granularity_check ( struct intel_dp * intel_dp ,
struct intel_crtc_state * crtc_state )
{
2021-06-25 16:55:59 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-06-16 13:31:53 -07:00
const int crtc_hdisplay = crtc_state - > hw . adjusted_mode . crtc_hdisplay ;
const int crtc_vdisplay = crtc_state - > hw . adjusted_mode . crtc_vdisplay ;
u16 y_granularity = 0 ;
/* PSR2 HW only send full lines so we only need to validate the width */
if ( crtc_hdisplay % intel_dp - > psr . su_w_granularity )
return false ;
if ( crtc_vdisplay % intel_dp - > psr . su_y_granularity )
return false ;
/* HW tracking is only aligned to 4 lines */
if ( ! crtc_state - > enable_psr2_sel_fetch )
return intel_dp - > psr . su_y_granularity = = 4 ;
/*
2021-06-25 16:55:59 -07:00
* adl_p has 1 line granularity . For other platforms with SW tracking we
* can adjust the y coordinates to match sink requirement if multiple of
* 4.
2021-06-16 13:31:53 -07:00
*/
2021-06-25 16:55:59 -07:00
if ( IS_ALDERLAKE_P ( dev_priv ) )
y_granularity = intel_dp - > psr . su_y_granularity ;
else if ( intel_dp - > psr . su_y_granularity < = 2 )
2021-06-16 13:31:53 -07:00
y_granularity = 4 ;
else if ( ( intel_dp - > psr . su_y_granularity % 4 ) = = 0 )
y_granularity = intel_dp - > psr . su_y_granularity ;
if ( y_granularity = = 0 | | crtc_vdisplay % y_granularity )
return false ;
crtc_state - > su_y_granularity = y_granularity ;
return true ;
}
2021-06-16 13:31:56 -07:00
static bool _compute_psr2_sdp_prior_scanline_indication ( struct intel_dp * intel_dp ,
struct intel_crtc_state * crtc_state )
{
const struct drm_display_mode * adjusted_mode = & crtc_state - > uapi . adjusted_mode ;
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
u32 hblank_total , hblank_ns , req_ns ;
hblank_total = adjusted_mode - > crtc_hblank_end - adjusted_mode - > crtc_hblank_start ;
hblank_ns = div_u64 ( 1000000ULL * hblank_total , adjusted_mode - > crtc_clock ) ;
/* From spec: (72 / number of lanes) * 1000 / symbol clock frequency MHz */
req_ns = ( 72 / crtc_state - > lane_count ) * 1000 / ( crtc_state - > port_clock / 1000 ) ;
if ( ( hblank_ns - req_ns ) > 100 )
return true ;
if ( DISPLAY_VER ( dev_priv ) < 13 | | intel_dp - > edp_dpcd [ 0 ] < DP_EDP_14b )
return false ;
crtc_state - > req_psr2_sdp_prior_scanline = true ;
return true ;
}
2018-02-27 13:29:13 -08:00
static bool intel_psr2_config_valid ( struct intel_dp * intel_dp ,
struct intel_crtc_state * crtc_state )
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2019-10-31 12:26:02 +01:00
int crtc_hdisplay = crtc_state - > hw . adjusted_mode . crtc_hdisplay ;
int crtc_vdisplay = crtc_state - > hw . adjusted_mode . crtc_vdisplay ;
2019-11-27 17:48:48 -08:00
int psr_max_h = 0 , psr_max_v = 0 , max_bpp = 0 ;
2018-02-27 13:29:13 -08:00
2021-02-04 15:40:14 +02:00
if ( ! intel_dp - > psr . sink_psr2_support )
2018-02-27 13:29:13 -08:00
return false ;
2021-02-04 09:58:30 -08:00
/* JSL and EHL only supports eDP 1.3 */
if ( IS_JSL_EHL ( dev_priv ) ) {
drm_dbg_kms ( & dev_priv - > drm , " PSR2 not supported by phy \n " ) ;
return false ;
}
2021-04-08 14:42:05 -07:00
/* Wa_16011181250 */
2021-07-13 20:15:38 -07:00
if ( IS_ROCKETLAKE ( dev_priv ) | | IS_ALDERLAKE_S ( dev_priv ) | |
IS_DG2 ( dev_priv ) ) {
2021-04-08 14:42:05 -07:00
drm_dbg_kms ( & dev_priv - > drm , " PSR2 is defeatured for this platform \n " ) ;
return false ;
}
2021-09-29 17:14:07 -07:00
if ( IS_ADLP_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_B0 ) ) {
drm_dbg_kms ( & dev_priv - > drm , " PSR2 not completely functional in this stepping \n " ) ;
2021-05-24 14:48:05 -07:00
return false ;
}
2019-08-20 15:33:24 -07:00
if ( ! transcoder_has_psr2 ( dev_priv , crtc_state - > cpu_transcoder ) ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 not supported in transcoder %s \n " ,
transcoder_name ( crtc_state - > cpu_transcoder ) ) ;
2019-08-20 15:33:24 -07:00
return false ;
}
2021-02-04 15:40:14 +02:00
if ( ! psr2_global_enabled ( intel_dp ) ) {
2020-10-07 12:52:37 -07:00
drm_dbg_kms ( & dev_priv - > drm , " PSR2 disabled by flag \n " ) ;
return false ;
}
2018-11-28 12:26:14 -08:00
/*
* DSC and PSR2 cannot be enabled simultaneously . If a requested
* resolution requires DSC to be enabled , priority is given to DSC
* over PSR2 .
*/
2019-10-22 16:34:13 +03:00
if ( crtc_state - > dsc . compression_enable ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 cannot be enabled since DSC is enabled \n " ) ;
2018-11-28 12:26:14 -08:00
return false ;
}
2020-06-25 18:01:48 -07:00
if ( crtc_state - > crc_enabled ) {
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 not enabled because it would inhibit pipe CRC calculation \n " ) ;
return false ;
}
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 12 ) {
2019-08-23 01:20:41 -07:00
psr_max_h = 5120 ;
psr_max_v = 3200 ;
2019-11-27 17:48:48 -08:00
max_bpp = 30 ;
drm/i915/display: Simplify GLK display version tests
GLK has always been a bit of a special case since it reports INTEL_GEN()
as 9, but has version 10 display IP. Now we can properly represent the
display version as 10 and simplify the display generation tests
throughout the display code.
Aside from manually adding the version to the glk_info structure, the
rest of this patch is generated with a Coccinelle semantic patch. Note
that we also need to switch any code that matches gen10 today but *not*
GLK to be CNL-specific:
@@ expression dev_priv; @@
- DISPLAY_VER(dev_priv) > 9
+ DISPLAY_VER(dev_priv) >= 10
@@ expression dev_priv, E; @@
(
- DISPLAY_VER(dev_priv) >= 10 && E
+ (DISPLAY_VER(dev_priv) >= 11 || IS_CANNONLAKE(dev_priv)) && E
|
- DISPLAY_VER(dev_priv) >= 10
+ DISPLAY_VER(dev_priv) >= 11 || IS_CANNONLAKE(dev_priv)
|
- IS_DISPLAY_RANGE(dev_priv, 10, E)
+ IS_DISPLAY_RANGE(dev_priv, 11, E) || IS_CANNONLAKE(dev_priv)
)
@@ expression dev_priv, E, E2; @@
(
- (IS_CANNONLAKE(dev_priv) || IS_GEMINILAKE(dev_priv))
+ IS_DISPLAY_VER(dev_priv, 10)
|
- E || IS_CANNONLAKE(dev_priv) || IS_GEMINILAKE(dev_priv)
+ E || IS_DISPLAY_VER(dev_priv, 10)
|
- (IS_GEMINILAKE(dev_priv) || IS_CANNONLAKE(dev_priv))
+ IS_DISPLAY_VER(dev_priv, 10)
|
- IS_GEMINILAKE(dev_priv) || E || IS_CANNONLAKE(dev_priv)
+ E || IS_DISPLAY_VER(dev_priv, 10)
|
- E || IS_GEMINILAKE(dev_priv) || E2 || IS_CANNONLAKE(dev_priv)
+ E || E2 || IS_DISPLAY_VER(dev_priv, 10)
|
- (IS_DISPLAY_VER(dev_priv, 10) || IS_GEMINILAKE(dev_priv))
+ IS_DISPLAY_VER(dev_priv, 10)
|
- (IS_GEMINILAKE(dev_priv) || IS_DISPLAY_VER(dev_priv, 10))
+ IS_DISPLAY_VER(dev_priv, 10)
)
@@ expression dev_priv; @@
- (IS_DISPLAY_VER(dev_priv, 9) && !IS_GEMINILAKE(dev_priv))
+ IS_DISPLAY_VER(dev_priv, 9)
@@ expression dev_priv; @@
(
- !(DISPLAY_VER(dev_priv) >= 11 || IS_DISPLAY_VER(dev_priv, 10))
+ DISPLAY_VER(dev_priv) < 10
|
- (DISPLAY_VER(dev_priv) >= 11 || IS_DISPLAY_VER(dev_priv, 10))
+ DISPLAY_VER(dev_priv) >= 10
)
@@ expression dev_priv, E; @@
- E || DISPLAY_VER(dev_priv) >= 11 || IS_DISPLAY_VER(dev_priv, 10)
+ E || DISPLAY_VER(dev_priv) >= 10
@@ expression dev_priv, E; @@
- (IS_DISPLAY_RANGE(dev_priv, 11, E) || IS_DISPLAY_VER(dev_priv, 10))
+ IS_DISPLAY_RANGE(dev_priv, 10, E)
@@ expression dev_priv; @@
(
- DISPLAY_VER(dev_priv) >= 11 || IS_CANNONLAKE(dev_priv) || IS_GEN9_LP(dev_priv)
+ DISPLAY_VER(dev_priv) >= 10 || IS_GEN9_LP(dev_priv)
|
- IS_GEN9_LP(dev_priv) || DISPLAY_VER(dev_priv) >= 11 || IS_CANNONLAKE(dev_priv)
+ IS_GEN9_LP(dev_priv) || DISPLAY_VER(dev_priv) >= 10
)
@@ expression dev_priv, E; @@
- !(DISPLAY_VER(dev_priv) >= E)
+ DISPLAY_VER(dev_priv) < E
v2:
- Convert gen10 conditions that don't include GLK into CNL conditions.
(Ville)
v3:
- Rework coccinelle rules so that "ver>=10" turns into "ver>=11||is_cnl." (Ville)
v3.1:
- Manually re-add the ".display.version = 10" to glk_info after
regenerating patch via Coccinelle.
v4:
- Also apply cocci rules to intel_pm.c and i915_irq.c! (CI)
Cc: Ville Syrjälä <ville.syrjala@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210322233840.4056851-1-matthew.d.roper@intel.com
2021-03-22 16:38:40 -07:00
} else if ( DISPLAY_VER ( dev_priv ) > = 10 ) {
2018-03-06 12:33:55 -08:00
psr_max_h = 4096 ;
psr_max_v = 2304 ;
2019-11-27 17:48:48 -08:00
max_bpp = 24 ;
drm/i915/display: rename display version macros
While converting the rest of the driver to use GRAPHICS_VER() and
MEDIA_VER(), following what was done for display, some discussions went
back on what we did for display:
1) Why is the == comparison special that deserves a separate
macro instead of just getting the version and comparing directly
like is done for >, >=, <=?
2) IS_DISPLAY_RANGE() is weird in that it omits the "_VER" for
brevity. If we remove the current users of IS_DISPLAY_VER(), we
could actually repurpose it for a range check
With (1) there could be an advantage if we used gen_mask since multiple
conditionals be combined by the compiler in a single and instruction and
check the result. However a) INTEL_GEN() doesn't use the mask since it
would make the code bigger everywhere else and b) in the cases it made
sense, it also made sense to convert to the _RANGE() variant.
So here we repurpose IS_DISPLAY_VER() to work with a [ from, to ] range
like was the IS_DISPLAY_RANGE() and convert the current IS_DISPLAY_VER()
users to use == and != operators. Aside from the definition changes,
this was done by the following semantic patch:
@@ expression dev_priv, E1; @@
- !IS_DISPLAY_VER(dev_priv, E1)
+ DISPLAY_VER(dev_priv) != E1
@@ expression dev_priv, E1; @@
- IS_DISPLAY_VER(dev_priv, E1)
+ DISPLAY_VER(dev_priv) == E1
@@ expression dev_priv, from, until; @@
- IS_DISPLAY_RANGE(dev_priv, from, until)
+ IS_DISPLAY_VER(dev_priv, from, until)
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
[Jani: Minor conflict resolve while applying.]
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20210413051002.92589-4-lucas.demarchi@intel.com
2021-04-12 22:09:53 -07:00
} else if ( DISPLAY_VER ( dev_priv ) = = 9 ) {
2018-03-06 12:33:55 -08:00
psr_max_h = 3640 ;
psr_max_v = 2304 ;
2019-11-27 17:48:48 -08:00
max_bpp = 24 ;
2018-03-06 12:33:55 -08:00
}
2019-11-27 17:48:48 -08:00
if ( crtc_state - > pipe_bpp > max_bpp ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 not enabled, pipe bpp %d > max supported %d \n " ,
crtc_state - > pipe_bpp , max_bpp ) ;
2019-11-27 17:48:48 -08:00
return false ;
}
2020-08-10 10:41:43 -07:00
if ( HAS_PSR2_SEL_FETCH ( dev_priv ) ) {
if ( ! intel_psr2_sel_fetch_config_valid ( intel_dp , crtc_state ) & &
! HAS_PSR_HW_TRACKING ( dev_priv ) ) {
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 not enabled, selective fetch not valid and no HW tracking available \n " ) ;
return false ;
}
2020-06-25 18:01:48 -07:00
}
2021-04-22 19:05:44 +03:00
/* Wa_2209313811 */
if ( ! crtc_state - > enable_psr2_sel_fetch & &
2021-07-16 22:14:26 -07:00
IS_TGL_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_C0 ) ) {
2021-04-22 19:05:44 +03:00
drm_dbg_kms ( & dev_priv - > drm , " PSR2 HW tracking is not supported this Display stepping \n " ) ;
return false ;
}
2021-06-16 13:31:53 -07:00
if ( ! psr2_granularity_check ( intel_dp , crtc_state ) ) {
drm_dbg_kms ( & dev_priv - > drm , " PSR2 not enabled, SU granularity not compatible \n " ) ;
return false ;
}
2020-08-10 10:41:43 -07:00
if ( ! crtc_state - > enable_psr2_sel_fetch & &
( crtc_hdisplay > psr_max_h | | crtc_vdisplay > psr_max_v ) ) {
2020-06-25 18:01:48 -07:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 not enabled, resolution %dx%d > max supported %dx%d \n " ,
crtc_hdisplay , crtc_vdisplay ,
psr_max_h , psr_max_v ) ;
2019-03-07 16:00:47 -08:00
return false ;
}
2021-06-16 13:31:56 -07:00
if ( ! _compute_psr2_sdp_prior_scanline_indication ( intel_dp , crtc_state ) ) {
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 not enabled, PSR2 SDP indication do not fit in hblank \n " ) ;
return false ;
}
2021-07-12 17:38:49 -07:00
/* Wa_16011303918:adl-p */
2021-06-16 13:31:57 -07:00
if ( crtc_state - > vrr . enable & &
2021-07-16 22:14:26 -07:00
IS_ADLP_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_B0 ) ) {
2021-06-16 13:31:57 -07:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR2 not enabled, not compatible with HW stepping + VRR \n " ) ;
return false ;
}
2020-01-22 10:26:17 -08:00
tgl_dc3co_exitline_compute_config ( intel_dp , crtc_state ) ;
2018-02-27 13:29:13 -08:00
return true ;
}
2017-10-12 16:02:01 +03:00
void intel_psr_compute_config ( struct intel_dp * intel_dp ,
2021-09-22 14:52:42 -07:00
struct intel_crtc_state * crtc_state ,
struct drm_connector_state * conn_state )
2014-11-14 08:52:28 -08:00
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2016-05-18 11:34:38 +03:00
const struct drm_display_mode * adjusted_mode =
2019-10-31 12:26:02 +01:00
& crtc_state - > hw . adjusted_mode ;
2016-05-18 11:34:38 +03:00
int psr_setup_time ;
2014-11-14 08:52:28 -08:00
2021-01-22 15:26:36 -08:00
/*
* Current PSR panels dont work reliably with VRR enabled
* So if VRR is enabled , do not enable PSR .
*/
if ( crtc_state - > vrr . enable )
return ;
2021-02-04 15:40:14 +02:00
if ( ! CAN_PSR ( intel_dp ) )
2017-10-12 16:02:01 +03:00
return ;
2021-02-04 15:40:14 +02:00
if ( ! psr_global_enabled ( intel_dp ) ) {
2020-10-07 12:52:37 -07:00
drm_dbg_kms ( & dev_priv - > drm , " PSR disabled by flag \n " ) ;
2020-05-14 09:07:32 +03:00
return ;
2020-10-07 12:52:37 -07:00
}
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . sink_not_reliable ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR sink implementation is not reliable \n " ) ;
2018-11-21 14:54:38 -08:00
return ;
}
2019-04-05 17:51:12 -07:00
if ( adjusted_mode - > flags & DRM_MODE_FLAG_INTERLACE ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR condition failed: Interlaced mode enabled \n " ) ;
2017-10-12 16:02:01 +03:00
return ;
2014-11-14 08:52:28 -08:00
}
2016-05-18 11:34:38 +03:00
psr_setup_time = drm_dp_psr_setup_time ( intel_dp - > psr_dpcd ) ;
if ( psr_setup_time < 0 ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR condition failed: Invalid PSR setup time (0x%02x) \n " ,
intel_dp - > psr_dpcd [ 1 ] ) ;
2017-10-12 16:02:01 +03:00
return ;
2016-05-18 11:34:38 +03:00
}
if ( intel_usecs_to_scanlines ( adjusted_mode , psr_setup_time ) >
adjusted_mode - > crtc_vtotal - adjusted_mode - > crtc_vdisplay - 1 ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR condition failed: PSR setup time (%d us) too long \n " ,
psr_setup_time ) ;
2017-10-12 16:02:01 +03:00
return ;
}
crtc_state - > has_psr = true ;
2018-02-27 13:29:13 -08:00
crtc_state - > has_psr2 = intel_psr2_config_valid ( intel_dp , crtc_state ) ;
2021-09-22 14:52:42 -07:00
2020-05-14 09:07:32 +03:00
crtc_state - > infoframes . enable | = intel_hdmi_infoframe_enable ( DP_SDP_VSC ) ;
2021-09-22 14:52:42 -07:00
intel_dp_compute_psr_vsc_sdp ( intel_dp , crtc_state , conn_state ,
& crtc_state - > psr_vsc ) ;
2014-11-14 08:52:28 -08:00
}
2021-04-17 17:21:22 -07:00
void intel_psr_get_config ( struct intel_encoder * encoder ,
struct intel_crtc_state * pipe_config )
{
struct drm_i915_private * dev_priv = to_i915 ( encoder - > base . dev ) ;
struct intel_digital_port * dig_port = enc_to_dig_port ( encoder ) ;
struct intel_dp * intel_dp ;
u32 val ;
if ( ! dig_port )
return ;
intel_dp = & dig_port - > dp ;
if ( ! CAN_PSR ( intel_dp ) )
return ;
mutex_lock ( & intel_dp - > psr . lock ) ;
if ( ! intel_dp - > psr . enabled )
goto unlock ;
/*
* Not possible to read EDP_PSR / PSR2_CTL registers as it is
* enabled / disabled because of frontbuffer tracking and others .
*/
pipe_config - > has_psr = true ;
pipe_config - > has_psr2 = intel_dp - > psr . psr2_enabled ;
pipe_config - > infoframes . enable | = intel_hdmi_infoframe_enable ( DP_SDP_VSC ) ;
if ( ! intel_dp - > psr . psr2_enabled )
goto unlock ;
if ( HAS_PSR2_SEL_FETCH ( dev_priv ) ) {
val = intel_de_read ( dev_priv , PSR2_MAN_TRK_CTL ( intel_dp - > psr . transcoder ) ) ;
if ( val & PSR2_MAN_TRK_CTL_ENABLE )
pipe_config - > enable_psr2_sel_fetch = true ;
}
if ( DISPLAY_VER ( dev_priv ) > = 12 ) {
val = intel_de_read ( dev_priv , EXITLINE ( intel_dp - > psr . transcoder ) ) ;
val & = EXITLINE_MASK ;
pipe_config - > dc3co_exitline = val ;
}
unlock :
mutex_unlock ( & intel_dp - > psr . lock ) ;
}
2014-11-19 07:37:00 -08:00
static void intel_psr_activate ( struct intel_dp * intel_dp )
2014-11-14 08:52:28 -08:00
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-02-04 15:40:14 +02:00
enum transcoder transcoder = intel_dp - > psr . transcoder ;
2014-11-14 08:52:28 -08:00
2021-02-04 15:40:14 +02:00
if ( transcoder_has_psr2 ( dev_priv , transcoder ) )
drm/i915/display/psr: Make WARN* drm specific where drm_priv ptr is available
drm specific WARN* calls include device information in the
backtrace, so we know what device the warnings originate from.
Covert all the calls of WARN* with device specific drm_WARN*
variants in functions where drm_i915_private struct pointer is readily
available.
The conversion was done automatically with below coccinelle semantic
patch.
@rule1@
identifier func, T;
@@
func(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
@rule2@
identifier func, T;
@@
func(struct drm_i915_private *T,...) {
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200128181603.27767-17-pankaj.laxminarayan.bharadiya@intel.com
2020-01-28 23:45:58 +05:30
drm_WARN_ON ( & dev_priv - > drm ,
2021-02-04 15:40:14 +02:00
intel_de_read ( dev_priv , EDP_PSR2_CTL ( transcoder ) ) & EDP_PSR2_ENABLE ) ;
2019-08-17 02:38:33 -07:00
drm/i915/display/psr: Make WARN* drm specific where drm_priv ptr is available
drm specific WARN* calls include device information in the
backtrace, so we know what device the warnings originate from.
Covert all the calls of WARN* with device specific drm_WARN*
variants in functions where drm_i915_private struct pointer is readily
available.
The conversion was done automatically with below coccinelle semantic
patch.
@rule1@
identifier func, T;
@@
func(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
@rule2@
identifier func, T;
@@
func(struct drm_i915_private *T,...) {
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200128181603.27767-17-pankaj.laxminarayan.bharadiya@intel.com
2020-01-28 23:45:58 +05:30
drm_WARN_ON ( & dev_priv - > drm ,
2021-02-04 15:40:14 +02:00
intel_de_read ( dev_priv , EDP_PSR_CTL ( transcoder ) ) & EDP_PSR_ENABLE ) ;
drm_WARN_ON ( & dev_priv - > drm , intel_dp - > psr . active ) ;
lockdep_assert_held ( & intel_dp - > psr . lock ) ;
2014-11-14 08:52:28 -08:00
2018-06-25 22:25:36 -07:00
/* psr1 and psr2 are mutually exclusive.*/
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . psr2_enabled )
2018-06-25 22:25:36 -07:00
hsw_activate_psr2 ( intel_dp ) ;
else
hsw_activate_psr1 ( intel_dp ) ;
2021-02-04 15:40:14 +02:00
intel_dp - > psr . active = true ;
2014-11-14 08:52:28 -08:00
}
2021-05-25 17:06:56 -07:00
static void intel_psr_enable_source ( struct intel_dp * intel_dp )
2017-09-07 16:00:36 -07:00
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-05-25 17:06:56 -07:00
enum transcoder cpu_transcoder = intel_dp - > psr . transcoder ;
2018-10-03 13:50:26 -07:00
u32 mask ;
2017-09-07 16:00:36 -07:00
drm/i915/display: rename display version macros
While converting the rest of the driver to use GRAPHICS_VER() and
MEDIA_VER(), following what was done for display, some discussions went
back on what we did for display:
1) Why is the == comparison special that deserves a separate
macro instead of just getting the version and comparing directly
like is done for >, >=, <=?
2) IS_DISPLAY_RANGE() is weird in that it omits the "_VER" for
brevity. If we remove the current users of IS_DISPLAY_VER(), we
could actually repurpose it for a range check
With (1) there could be an advantage if we used gen_mask since multiple
conditionals be combined by the compiler in a single and instruction and
check the result. However a) INTEL_GEN() doesn't use the mask since it
would make the code bigger everywhere else and b) in the cases it made
sense, it also made sense to convert to the _RANGE() variant.
So here we repurpose IS_DISPLAY_VER() to work with a [ from, to ] range
like was the IS_DISPLAY_RANGE() and convert the current IS_DISPLAY_VER()
users to use == and != operators. Aside from the definition changes,
this was done by the following semantic patch:
@@ expression dev_priv, E1; @@
- !IS_DISPLAY_VER(dev_priv, E1)
+ DISPLAY_VER(dev_priv) != E1
@@ expression dev_priv, E1; @@
- IS_DISPLAY_VER(dev_priv, E1)
+ DISPLAY_VER(dev_priv) == E1
@@ expression dev_priv, from, until; @@
- IS_DISPLAY_RANGE(dev_priv, from, until)
+ IS_DISPLAY_VER(dev_priv, from, until)
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
[Jani: Minor conflict resolve while applying.]
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20210413051002.92589-4-lucas.demarchi@intel.com
2021-04-12 22:09:53 -07:00
if ( intel_dp - > psr . psr2_enabled & & DISPLAY_VER ( dev_priv ) = = 9 ) {
2019-10-24 15:21:36 +03:00
i915_reg_t reg = CHICKEN_TRANS ( cpu_transcoder ) ;
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
u32 chicken = intel_de_read ( dev_priv , reg ) ;
2018-03-28 15:30:41 -07:00
2018-12-03 16:33:59 -08:00
chicken | = PSR2_VSC_ENABLE_PROG_HEADER |
PSR2_ADD_VERTICAL_LINE_COUNT ;
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
intel_de_write ( dev_priv , reg , chicken ) ;
2017-09-07 16:00:36 -07:00
}
2018-10-03 13:50:25 -07:00
2021-09-14 14:25:07 -07:00
/*
* Wa_16014451276 : adlp
* All supported adlp panels have 1 - based X granularity , this may
* cause issues if non - supported panels are used .
*/
if ( IS_ALDERLAKE_P ( dev_priv ) & &
intel_dp - > psr . psr2_enabled )
intel_de_rmw ( dev_priv , CHICKEN_TRANS ( cpu_transcoder ) , 0 ,
ADLP_1_BASED_X_GRANULARITY ) ;
2018-10-03 13:50:25 -07:00
/*
* Per Spec : Avoid continuous PSR exit by masking MEMUP and HPD also
* mask LPSP to avoid dependency on other drivers that might block
* runtime_pm besides preventing other hw tracking issues now we
* can rely on frontbuffer tracking .
*/
2018-10-03 13:50:26 -07:00
mask = EDP_PSR_DEBUG_MASK_MEMUP |
EDP_PSR_DEBUG_MASK_HPD |
EDP_PSR_DEBUG_MASK_LPSP |
EDP_PSR_DEBUG_MASK_MAX_SLEEP ;
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) < 11 )
2018-10-03 13:50:26 -07:00
mask | = EDP_PSR_DEBUG_MASK_DISP_REG_WRITE ;
2021-02-04 15:40:14 +02:00
intel_de_write ( dev_priv , EDP_PSR_DEBUG ( intel_dp - > psr . transcoder ) ,
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
mask ) ;
2019-08-20 15:33:25 -07:00
2021-02-04 15:40:14 +02:00
psr_irq_control ( intel_dp ) ;
2020-01-22 10:26:17 -08:00
2021-05-18 17:06:19 -07:00
if ( intel_dp - > psr . dc3co_exitline ) {
2020-01-22 10:26:17 -08:00
u32 val ;
/*
* TODO : if future platforms supports DC3CO in more than one
* transcoder , EXITLINE will need to be unset when disabling PSR
*/
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/652e16e6168691f89b5cb8c91278a0d960f8f1a9.1580149467.git.jani.nikula@intel.com
2020-01-27 20:26:10 +02:00
val = intel_de_read ( dev_priv , EXITLINE ( cpu_transcoder ) ) ;
2020-01-22 10:26:17 -08:00
val & = ~ EXITLINE_MASK ;
2021-05-18 17:06:19 -07:00
val | = intel_dp - > psr . dc3co_exitline < < EXITLINE_SHIFT ;
2020-01-22 10:26:17 -08:00
val | = EXITLINE_ENABLE ;
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/652e16e6168691f89b5cb8c91278a0d960f8f1a9.1580149467.git.jani.nikula@intel.com
2020-01-27 20:26:10 +02:00
intel_de_write ( dev_priv , EXITLINE ( cpu_transcoder ) , val ) ;
2020-01-22 10:26:17 -08:00
}
2020-08-10 10:41:43 -07:00
2020-10-07 12:52:36 -07:00
if ( HAS_PSR_HW_TRACKING ( dev_priv ) & & HAS_PSR2_SEL_FETCH ( dev_priv ) )
2020-08-10 10:41:43 -07:00
intel_de_rmw ( dev_priv , CHICKEN_PAR1_1 , IGNORE_PSR2_HW_TRACKING ,
2021-02-04 15:40:14 +02:00
intel_dp - > psr . psr2_sel_fetch_enabled ?
2020-08-10 10:41:43 -07:00
IGNORE_PSR2_HW_TRACKING : 0 ) ;
2021-06-16 13:31:55 -07:00
2021-07-12 17:38:49 -07:00
/* Wa_16011168373:adl-p */
2021-07-16 22:14:26 -07:00
if ( IS_ADLP_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_B0 ) & &
2021-06-16 13:31:55 -07:00
intel_dp - > psr . psr2_enabled )
intel_de_rmw ( dev_priv ,
TRANS_SET_CONTEXT_LATENCY ( intel_dp - > psr . transcoder ) ,
TRANS_SET_CONTEXT_LATENCY_MASK ,
TRANS_SET_CONTEXT_LATENCY_VALUE ( 1 ) ) ;
2021-09-14 14:25:07 -07:00
/* Wa_16012604467:adlp */
if ( IS_ALDERLAKE_P ( dev_priv ) & & intel_dp - > psr . psr2_enabled )
intel_de_rmw ( dev_priv , CLKGATE_DIS_MISC , 0 ,
CLKGATE_DIS_MISC_DMASC_GATING_DIS ) ;
2017-09-07 16:00:36 -07:00
}
2021-05-18 17:06:20 -07:00
static bool psr_interrupt_error_check ( struct intel_dp * intel_dp )
2018-08-09 16:21:01 +02:00
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2019-08-20 15:33:23 -07:00
u32 val ;
2018-08-09 16:21:01 +02:00
2019-08-20 15:33:23 -07:00
/*
* If a PSR error happened and the driver is reloaded , the EDP_PSR_IIR
* will still keep the error set even after the reset done in the
* irq_preinstall and irq_uninstall hooks .
* And enabling in this situation cause the screen to freeze in the
* first time that PSR HW tries to activate so lets keep PSR disabled
* to avoid any rendering problems .
*/
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) > = 12 ) {
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
val = intel_de_read ( dev_priv ,
2021-02-04 15:40:14 +02:00
TRANS_PSR_IIR ( intel_dp - > psr . transcoder ) ) ;
2019-09-04 14:34:15 -07:00
val & = EDP_PSR_ERROR ( 0 ) ;
} else {
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
val = intel_de_read ( dev_priv , EDP_PSR_IIR ) ;
2021-02-04 15:40:14 +02:00
val & = EDP_PSR_ERROR ( intel_dp - > psr . transcoder ) ;
2019-09-04 14:34:15 -07:00
}
2019-08-20 15:33:23 -07:00
if ( val ) {
2021-02-04 15:40:14 +02:00
intel_dp - > psr . sink_not_reliable = true ;
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR interruption error set, not enabling PSR \n " ) ;
2021-05-18 17:06:20 -07:00
return false ;
2019-08-20 15:33:23 -07:00
}
2018-08-09 16:21:01 +02:00
2021-05-18 17:06:20 -07:00
return true ;
}
static void intel_psr_enable_locked ( struct intel_dp * intel_dp ,
2021-09-22 14:52:42 -07:00
const struct intel_crtc_state * crtc_state )
2021-05-18 17:06:20 -07:00
{
struct intel_digital_port * dig_port = dp_to_dig_port ( intel_dp ) ;
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-07-23 10:42:37 -07:00
enum phy phy = intel_port_to_phy ( dev_priv , dig_port - > base . port ) ;
2021-05-18 17:06:20 -07:00
struct intel_encoder * encoder = & dig_port - > base ;
u32 val ;
drm_WARN_ON ( & dev_priv - > drm , intel_dp - > psr . enabled ) ;
intel_dp - > psr . psr2_enabled = crtc_state - > has_psr2 ;
intel_dp - > psr . busy_frontbuffer_bits = 0 ;
intel_dp - > psr . pipe = to_intel_crtc ( crtc_state - > uapi . crtc ) - > pipe ;
intel_dp - > psr . transcoder = crtc_state - > cpu_transcoder ;
/* DC5/DC6 requires at least 6 idle frames */
val = usecs_to_jiffies ( intel_get_frame_time_us ( crtc_state ) * 6 ) ;
intel_dp - > psr . dc3co_exit_delay = val ;
intel_dp - > psr . dc3co_exitline = crtc_state - > dc3co_exitline ;
intel_dp - > psr . psr2_sel_fetch_enabled = crtc_state - > enable_psr2_sel_fetch ;
2021-06-16 13:31:56 -07:00
intel_dp - > psr . req_psr2_sdp_prior_scanline =
crtc_state - > req_psr2_sdp_prior_scanline ;
2021-05-18 17:06:20 -07:00
if ( ! psr_interrupt_error_check ( intel_dp ) )
return ;
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm , " Enabling PSR%s \n " ,
2021-02-04 15:40:14 +02:00
intel_dp - > psr . psr2_enabled ? " 2 " : " 1 " ) ;
2021-09-22 14:52:42 -07:00
intel_write_dp_vsc_sdp ( encoder , crtc_state , & crtc_state - > psr_vsc ) ;
2021-07-23 10:42:37 -07:00
intel_snps_phy_update_psr_power_state ( dev_priv , phy , true ) ;
2018-08-09 16:21:01 +02:00
intel_psr_enable_sink ( intel_dp ) ;
2021-05-25 17:06:56 -07:00
intel_psr_enable_source ( intel_dp ) ;
2021-02-04 15:40:14 +02:00
intel_dp - > psr . enabled = true ;
2021-06-08 11:54:14 +03:00
intel_dp - > psr . paused = false ;
2018-08-09 16:21:01 +02:00
intel_psr_activate ( intel_dp ) ;
}
2021-02-04 15:40:14 +02:00
static void intel_psr_exit ( struct intel_dp * intel_dp )
2018-11-06 11:08:40 -08:00
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2018-11-06 11:08:40 -08:00
u32 val ;
2021-02-04 15:40:14 +02:00
if ( ! intel_dp - > psr . active ) {
if ( transcoder_has_psr2 ( dev_priv , intel_dp - > psr . transcoder ) ) {
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
val = intel_de_read ( dev_priv ,
2021-02-04 15:40:14 +02:00
EDP_PSR2_CTL ( intel_dp - > psr . transcoder ) ) ;
drm/i915/display/psr: Make WARN* drm specific where drm_priv ptr is available
drm specific WARN* calls include device information in the
backtrace, so we know what device the warnings originate from.
Covert all the calls of WARN* with device specific drm_WARN*
variants in functions where drm_i915_private struct pointer is readily
available.
The conversion was done automatically with below coccinelle semantic
patch.
@rule1@
identifier func, T;
@@
func(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
@rule2@
identifier func, T;
@@
func(struct drm_i915_private *T,...) {
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200128181603.27767-17-pankaj.laxminarayan.bharadiya@intel.com
2020-01-28 23:45:58 +05:30
drm_WARN_ON ( & dev_priv - > drm , val & EDP_PSR2_ENABLE ) ;
2019-08-20 15:33:23 -07:00
}
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
val = intel_de_read ( dev_priv ,
2021-02-04 15:40:14 +02:00
EDP_PSR_CTL ( intel_dp - > psr . transcoder ) ) ;
drm/i915/display/psr: Make WARN* drm specific where drm_priv ptr is available
drm specific WARN* calls include device information in the
backtrace, so we know what device the warnings originate from.
Covert all the calls of WARN* with device specific drm_WARN*
variants in functions where drm_i915_private struct pointer is readily
available.
The conversion was done automatically with below coccinelle semantic
patch.
@rule1@
identifier func, T;
@@
func(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
@rule2@
identifier func, T;
@@
func(struct drm_i915_private *T,...) {
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200128181603.27767-17-pankaj.laxminarayan.bharadiya@intel.com
2020-01-28 23:45:58 +05:30
drm_WARN_ON ( & dev_priv - > drm , val & EDP_PSR_ENABLE ) ;
2019-08-20 15:33:23 -07:00
2018-11-06 11:08:40 -08:00
return ;
2018-11-06 11:08:41 -08:00
}
2018-11-06 11:08:40 -08:00
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . psr2_enabled ) {
tgl_disallow_dc3co_on_psr2_exit ( intel_dp ) ;
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
val = intel_de_read ( dev_priv ,
2021-02-04 15:40:14 +02:00
EDP_PSR2_CTL ( intel_dp - > psr . transcoder ) ) ;
drm/i915/display/psr: Make WARN* drm specific where drm_priv ptr is available
drm specific WARN* calls include device information in the
backtrace, so we know what device the warnings originate from.
Covert all the calls of WARN* with device specific drm_WARN*
variants in functions where drm_i915_private struct pointer is readily
available.
The conversion was done automatically with below coccinelle semantic
patch.
@rule1@
identifier func, T;
@@
func(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
@rule2@
identifier func, T;
@@
func(struct drm_i915_private *T,...) {
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200128181603.27767-17-pankaj.laxminarayan.bharadiya@intel.com
2020-01-28 23:45:58 +05:30
drm_WARN_ON ( & dev_priv - > drm , ! ( val & EDP_PSR2_ENABLE ) ) ;
2019-08-20 15:33:23 -07:00
val & = ~ EDP_PSR2_ENABLE ;
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
intel_de_write ( dev_priv ,
2021-02-04 15:40:14 +02:00
EDP_PSR2_CTL ( intel_dp - > psr . transcoder ) , val ) ;
2018-11-06 11:08:40 -08:00
} else {
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
val = intel_de_read ( dev_priv ,
2021-02-04 15:40:14 +02:00
EDP_PSR_CTL ( intel_dp - > psr . transcoder ) ) ;
drm/i915/display/psr: Make WARN* drm specific where drm_priv ptr is available
drm specific WARN* calls include device information in the
backtrace, so we know what device the warnings originate from.
Covert all the calls of WARN* with device specific drm_WARN*
variants in functions where drm_i915_private struct pointer is readily
available.
The conversion was done automatically with below coccinelle semantic
patch.
@rule1@
identifier func, T;
@@
func(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
@rule2@
identifier func, T;
@@
func(struct drm_i915_private *T,...) {
<+...
(
-WARN(
+drm_WARN(&T->drm,
...)
|
-WARN_ON(
+drm_WARN_ON(&T->drm,
...)
|
-WARN_ONCE(
+drm_WARN_ONCE(&T->drm,
...)
|
-WARN_ON_ONCE(
+drm_WARN_ON_ONCE(&T->drm,
...)
)
...+>
}
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200128181603.27767-17-pankaj.laxminarayan.bharadiya@intel.com
2020-01-28 23:45:58 +05:30
drm_WARN_ON ( & dev_priv - > drm , ! ( val & EDP_PSR_ENABLE ) ) ;
2019-08-20 15:33:23 -07:00
val & = ~ EDP_PSR_ENABLE ;
drm/i915/psr: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/b7865c858374e9ab04cf2bc4ceb3d7d89c27db83.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:47 +02:00
intel_de_write ( dev_priv ,
2021-02-04 15:40:14 +02:00
EDP_PSR_CTL ( intel_dp - > psr . transcoder ) , val ) ;
2018-11-06 11:08:40 -08:00
}
2021-02-04 15:40:14 +02:00
intel_dp - > psr . active = false ;
2018-11-06 11:08:40 -08:00
}
2021-06-08 11:54:14 +03:00
static void intel_psr_wait_exit_locked ( struct intel_dp * intel_dp )
2014-11-19 07:37:00 -08:00
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2018-11-06 11:08:41 -08:00
i915_reg_t psr_status ;
u32 psr_status_mask ;
2014-11-14 08:52:28 -08:00
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . psr2_enabled ) {
psr_status = EDP_PSR2_STATUS ( intel_dp - > psr . transcoder ) ;
2018-11-06 11:08:41 -08:00
psr_status_mask = EDP_PSR2_STATUS_STATE_MASK ;
2014-11-14 08:52:28 -08:00
} else {
2021-02-04 15:40:14 +02:00
psr_status = EDP_PSR_STATUS ( intel_dp - > psr . transcoder ) ;
2018-11-06 11:08:41 -08:00
psr_status_mask = EDP_PSR_STATUS_STATE_MASK ;
2014-11-14 08:52:28 -08:00
}
2018-11-06 11:08:41 -08:00
/* Wait till PSR is idle */
2019-08-15 18:23:43 -07:00
if ( intel_de_wait_for_clear ( dev_priv , psr_status ,
psr_status_mask , 2000 ) )
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_err ( & dev_priv - > drm , " Timed out waiting PSR idle state \n " ) ;
2021-06-08 11:54:14 +03:00
}
static void intel_psr_disable_locked ( struct intel_dp * intel_dp )
{
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-07-23 10:42:37 -07:00
enum phy phy = intel_port_to_phy ( dev_priv ,
dp_to_dig_port ( intel_dp ) - > base . port ) ;
2021-06-08 11:54:14 +03:00
lockdep_assert_held ( & intel_dp - > psr . lock ) ;
if ( ! intel_dp - > psr . enabled )
return ;
drm_dbg_kms ( & dev_priv - > drm , " Disabling PSR%s \n " ,
intel_dp - > psr . psr2_enabled ? " 2 " : " 1 " ) ;
intel_psr_exit ( intel_dp ) ;
intel_psr_wait_exit_locked ( intel_dp ) ;
2018-06-26 13:16:41 -07:00
2021-07-16 22:14:25 -07:00
/* Wa_1408330847 */
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . psr2_sel_fetch_enabled & &
2021-07-16 22:14:26 -07:00
IS_TGL_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_B0 ) )
2020-08-10 10:41:44 -07:00
intel_de_rmw ( dev_priv , CHICKEN_PAR1_1 ,
DIS_RAM_BYPASS_PSR2_MAN_TRACK , 0 ) ;
2021-07-12 17:38:49 -07:00
/* Wa_16011168373:adl-p */
2021-07-16 22:14:26 -07:00
if ( IS_ADLP_DISPLAY_STEP ( dev_priv , STEP_A0 , STEP_B0 ) & &
2021-06-16 13:31:55 -07:00
intel_dp - > psr . psr2_enabled )
intel_de_rmw ( dev_priv ,
TRANS_SET_CONTEXT_LATENCY ( intel_dp - > psr . transcoder ) ,
TRANS_SET_CONTEXT_LATENCY_MASK , 0 ) ;
2021-09-14 14:25:07 -07:00
/* Wa_16012604467:adlp */
if ( IS_ALDERLAKE_P ( dev_priv ) & & intel_dp - > psr . psr2_enabled )
intel_de_rmw ( dev_priv , CLKGATE_DIS_MISC ,
CLKGATE_DIS_MISC_DMASC_GATING_DIS , 0 ) ;
2021-07-23 10:42:37 -07:00
intel_snps_phy_update_psr_power_state ( dev_priv , phy , false ) ;
2018-06-26 13:16:41 -07:00
/* Disable PSR on Sink */
drm_dp_dpcd_writeb ( & intel_dp - > aux , DP_PSR_EN_CFG , 0 ) ;
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . psr2_enabled )
2019-11-27 17:48:50 -08:00
drm_dp_dpcd_writeb ( & intel_dp - > aux , DP_RECEIVER_ALPM_CONFIG , 0 ) ;
2021-02-04 15:40:14 +02:00
intel_dp - > psr . enabled = false ;
2018-06-26 13:16:41 -07:00
}
2014-11-19 07:37:00 -08:00
/**
* intel_psr_disable - Disable PSR
* @ intel_dp : Intel DP
2017-08-18 16:49:56 +03:00
* @ old_crtc_state : old CRTC state
2014-11-19 07:37:00 -08:00
*
* This function needs to be called before disabling pipe .
*/
2017-08-18 16:49:56 +03:00
void intel_psr_disable ( struct intel_dp * intel_dp ,
const struct intel_crtc_state * old_crtc_state )
2014-11-19 07:37:00 -08:00
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2014-11-19 07:37:00 -08:00
2017-10-12 16:02:01 +03:00
if ( ! old_crtc_state - > has_psr )
2017-09-07 16:00:31 -07:00
return ;
2021-02-04 15:40:14 +02:00
if ( drm_WARN_ON ( & dev_priv - > drm , ! CAN_PSR ( intel_dp ) ) )
2018-01-03 13:38:24 -08:00
return ;
2021-02-04 15:40:14 +02:00
mutex_lock ( & intel_dp - > psr . lock ) ;
2018-08-09 16:21:01 +02:00
2018-06-26 13:16:41 -07:00
intel_psr_disable_locked ( intel_dp ) ;
2018-08-09 16:21:01 +02:00
2021-02-04 15:40:14 +02:00
mutex_unlock ( & intel_dp - > psr . lock ) ;
cancel_work_sync ( & intel_dp - > psr . work ) ;
cancel_delayed_work_sync ( & intel_dp - > psr . dc3co_work ) ;
2014-11-14 08:52:28 -08:00
}
2021-06-08 11:54:14 +03:00
/**
* intel_psr_pause - Pause PSR
* @ intel_dp : Intel DP
*
* This function need to be called after enabling psr .
*/
void intel_psr_pause ( struct intel_dp * intel_dp )
{
2021-10-19 17:35:58 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-06-08 11:54:14 +03:00
struct intel_psr * psr = & intel_dp - > psr ;
if ( ! CAN_PSR ( intel_dp ) )
return ;
mutex_lock ( & psr - > lock ) ;
if ( ! psr - > enabled ) {
mutex_unlock ( & psr - > lock ) ;
return ;
}
2021-10-19 17:35:58 -07:00
/* If we ever hit this, we will need to add refcount to pause/resume */
drm_WARN_ON ( & dev_priv - > drm , psr - > paused ) ;
2021-06-08 11:54:14 +03:00
intel_psr_exit ( intel_dp ) ;
intel_psr_wait_exit_locked ( intel_dp ) ;
psr - > paused = true ;
mutex_unlock ( & psr - > lock ) ;
cancel_work_sync ( & psr - > work ) ;
cancel_delayed_work_sync ( & psr - > dc3co_work ) ;
}
/**
* intel_psr_resume - Resume PSR
* @ intel_dp : Intel DP
*
* This function need to be called after pausing psr .
*/
void intel_psr_resume ( struct intel_dp * intel_dp )
{
struct intel_psr * psr = & intel_dp - > psr ;
if ( ! CAN_PSR ( intel_dp ) )
return ;
mutex_lock ( & psr - > lock ) ;
if ( ! psr - > paused )
goto unlock ;
psr - > paused = false ;
intel_psr_activate ( intel_dp ) ;
unlock :
mutex_unlock ( & psr - > lock ) ;
}
2021-09-29 17:14:04 -07:00
static inline u32 man_trk_ctl_single_full_frame_bit_get ( struct drm_i915_private * dev_priv )
{
return IS_ALDERLAKE_P ( dev_priv ) ?
ADLP_PSR2_MAN_TRK_CTL_SF_SINGLE_FULL_FRAME :
PSR2_MAN_TRK_CTL_SF_SINGLE_FULL_FRAME ;
}
2021-02-04 15:40:14 +02:00
static void psr_force_hw_tracking_exit ( struct intel_dp * intel_dp )
2019-03-07 16:00:49 -08:00
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-09-29 17:14:04 -07:00
if ( intel_dp - > psr . psr2_sel_fetch_enabled )
intel_de_rmw ( dev_priv ,
PSR2_MAN_TRK_CTL ( intel_dp - > psr . transcoder ) , 0 ,
man_trk_ctl_single_full_frame_bit_get ( dev_priv ) ) ;
2021-08-27 10:42:51 -07:00
/*
* Display WA # 0884 : skl +
* This documented WA for bxt can be safely applied
* broadly so we can force HW tracking to exit PSR
* instead of disabling and re - enabling .
* Workaround tells us to write 0 to CUR_SURFLIVE_A ,
* but it makes more sense write to the current active
* pipe .
2021-09-29 17:14:04 -07:00
*
* This workaround do not exist for platforms with display 10 or newer
* but testing proved that it works for up display 13 , for newer
* than that testing will be needed .
2021-08-27 10:42:51 -07:00
*/
intel_de_write ( dev_priv , CURSURFLIVE ( intel_dp - > psr . pipe ) , 0 ) ;
2019-03-07 16:00:49 -08:00
}
2021-09-22 14:52:41 -07:00
void intel_psr2_disable_plane_sel_fetch ( struct intel_plane * plane ,
const struct intel_crtc_state * crtc_state )
{
struct drm_i915_private * dev_priv = to_i915 ( plane - > base . dev ) ;
enum pipe pipe = plane - > pipe ;
if ( ! crtc_state - > enable_psr2_sel_fetch )
return ;
intel_de_write_fw ( dev_priv , PLANE_SEL_FETCH_CTL ( pipe , plane - > id ) , 0 ) ;
}
2020-10-07 12:52:38 -07:00
void intel_psr2_program_plane_sel_fetch ( struct intel_plane * plane ,
const struct intel_crtc_state * crtc_state ,
const struct intel_plane_state * plane_state ,
int color_plane )
{
struct drm_i915_private * dev_priv = to_i915 ( plane - > base . dev ) ;
enum pipe pipe = plane - > pipe ;
2020-11-30 04:57:50 -08:00
const struct drm_rect * clip ;
2021-08-14 18:43:45 -07:00
u32 val ;
int x , y ;
2020-10-07 12:52:38 -07:00
if ( ! crtc_state - > enable_psr2_sel_fetch )
return ;
2021-09-22 14:52:41 -07:00
if ( plane - > id = = PLANE_CURSOR ) {
intel_de_write_fw ( dev_priv , PLANE_SEL_FETCH_CTL ( pipe , plane - > id ) ,
plane_state - > ctl ) ;
2020-10-07 12:52:38 -07:00
return ;
2021-09-22 14:52:41 -07:00
}
2020-10-07 12:52:38 -07:00
2020-11-30 04:57:50 -08:00
clip = & plane_state - > psr2_sel_fetch_area ;
val = ( clip - > y1 + plane_state - > uapi . dst . y1 ) < < 16 ;
val | = plane_state - > uapi . dst . x1 ;
2020-10-07 12:52:38 -07:00
intel_de_write_fw ( dev_priv , PLANE_SEL_FETCH_POS ( pipe , plane - > id ) , val ) ;
2021-10-21 13:10:23 +03:00
x = plane_state - > view . color_plane [ color_plane ] . x ;
/*
* From Bspec : UV surface Start Y Position = half of Y plane Y
* start position .
*/
if ( ! color_plane )
y = plane_state - > view . color_plane [ color_plane ] . y + clip - > y1 ;
else
y = plane_state - > view . color_plane [ color_plane ] . y + clip - > y1 / 2 ;
2021-01-04 12:56:54 -08:00
val = y < < 16 | x ;
2021-10-21 13:10:23 +03:00
2020-10-07 12:52:38 -07:00
intel_de_write_fw ( dev_priv , PLANE_SEL_FETCH_OFFSET ( pipe , plane - > id ) ,
val ) ;
/* Sizes are 0 based */
2020-11-30 04:57:50 -08:00
val = ( drm_rect_height ( clip ) - 1 ) < < 16 ;
2020-10-07 12:52:38 -07:00
val | = ( drm_rect_width ( & plane_state - > uapi . src ) > > 16 ) - 1 ;
intel_de_write_fw ( dev_priv , PLANE_SEL_FETCH_SIZE ( pipe , plane - > id ) , val ) ;
2021-09-22 14:52:41 -07:00
intel_de_write_fw ( dev_priv , PLANE_SEL_FETCH_CTL ( pipe , plane - > id ) ,
PLANE_SEL_FETCH_CTL_ENABLE ) ;
2020-10-07 12:52:38 -07:00
}
2020-08-10 10:41:43 -07:00
void intel_psr2_program_trans_man_trk_ctl ( const struct intel_crtc_state * crtc_state )
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = to_i915 ( crtc_state - > uapi . crtc - > dev ) ;
2020-08-10 10:41:43 -07:00
2021-09-22 14:52:41 -07:00
if ( ! crtc_state - > enable_psr2_sel_fetch )
2020-08-10 10:41:43 -07:00
return ;
2021-02-09 10:14:37 -08:00
intel_de_write ( dev_priv , PSR2_MAN_TRK_CTL ( crtc_state - > cpu_transcoder ) ,
crtc_state - > psr2_man_track_ctl ) ;
2020-08-10 10:41:43 -07:00
}
2020-10-07 12:52:38 -07:00
static void psr2_man_trk_ctl_calc ( struct intel_crtc_state * crtc_state ,
struct drm_rect * clip , bool full_update )
{
2021-06-25 16:55:59 -07:00
struct intel_crtc * crtc = to_intel_crtc ( crtc_state - > uapi . crtc ) ;
struct drm_i915_private * dev_priv = to_i915 ( crtc - > base . dev ) ;
2020-10-07 12:52:38 -07:00
u32 val = PSR2_MAN_TRK_CTL_ENABLE ;
if ( full_update ) {
2021-09-14 14:25:07 -07:00
/*
2021-09-29 17:14:06 -07:00
* Not applying Wa_14014971508 : adlp as we do not support the
* feature that requires this workaround .
2021-09-14 14:25:07 -07:00
*/
2021-09-29 17:14:06 -07:00
val | = man_trk_ctl_single_full_frame_bit_get ( dev_priv ) ;
2020-10-07 12:52:38 -07:00
goto exit ;
}
if ( clip - > y1 = = - 1 )
goto exit ;
2021-06-25 16:55:59 -07:00
if ( IS_ALDERLAKE_P ( dev_priv ) ) {
val | = ADLP_PSR2_MAN_TRK_CTL_SU_REGION_START_ADDR ( clip - > y1 ) ;
2021-09-14 14:25:03 -07:00
val | = ADLP_PSR2_MAN_TRK_CTL_SU_REGION_END_ADDR ( clip - > y2 - 1 ) ;
2021-06-25 16:55:59 -07:00
} else {
drm_WARN_ON ( crtc_state - > uapi . crtc - > dev , clip - > y1 % 4 | | clip - > y2 % 4 ) ;
2021-01-04 12:56:52 -08:00
2021-06-25 16:55:59 -07:00
val | = PSR2_MAN_TRK_CTL_SF_PARTIAL_FRAME_UPDATE ;
val | = PSR2_MAN_TRK_CTL_SU_REGION_START_ADDR ( clip - > y1 / 4 + 1 ) ;
val | = PSR2_MAN_TRK_CTL_SU_REGION_END_ADDR ( clip - > y2 / 4 + 1 ) ;
}
2020-10-07 12:52:38 -07:00
exit :
crtc_state - > psr2_man_track_ctl = val ;
}
static void clip_area_update ( struct drm_rect * overlap_damage_area ,
struct drm_rect * damage_area )
{
if ( overlap_damage_area - > y1 = = - 1 ) {
overlap_damage_area - > y1 = damage_area - > y1 ;
overlap_damage_area - > y2 = damage_area - > y2 ;
return ;
}
if ( damage_area - > y1 < overlap_damage_area - > y1 )
overlap_damage_area - > y1 = damage_area - > y1 ;
if ( damage_area - > y2 > overlap_damage_area - > y2 )
overlap_damage_area - > y2 = damage_area - > y2 ;
}
2021-06-16 13:31:53 -07:00
static void intel_psr2_sel_fetch_pipe_alignment ( const struct intel_crtc_state * crtc_state ,
struct drm_rect * pipe_clip )
{
2021-06-25 16:55:59 -07:00
struct drm_i915_private * dev_priv = to_i915 ( crtc_state - > uapi . crtc - > dev ) ;
2021-06-16 13:31:53 -07:00
const u16 y_alignment = crtc_state - > su_y_granularity ;
pipe_clip - > y1 - = pipe_clip - > y1 % y_alignment ;
if ( pipe_clip - > y2 % y_alignment )
pipe_clip - > y2 = ( ( pipe_clip - > y2 / y_alignment ) + 1 ) * y_alignment ;
2021-06-25 16:55:59 -07:00
if ( IS_ALDERLAKE_P ( dev_priv ) & & crtc_state - > dsc . compression_enable )
drm_warn ( & dev_priv - > drm , " Missing PSR2 sel fetch alignment with DSC \n " ) ;
2021-06-16 13:31:53 -07:00
}
2021-09-29 17:14:01 -07:00
/*
* TODO : Not clear how to handle planes with negative position ,
* also planes are not updated if they have a negative X
* position so for now doing a full update in this cases
*
* Plane scaling and rotation is not supported by selective fetch and both
* properties can change without a modeset , so need to be check at every
* atomic commmit .
*/
static bool psr2_sel_fetch_plane_state_supported ( const struct intel_plane_state * plane_state )
{
if ( plane_state - > uapi . dst . y1 < 0 | |
plane_state - > uapi . dst . x1 < 0 | |
plane_state - > scaler_id > = 0 | |
plane_state - > uapi . rotation ! = DRM_MODE_ROTATE_0 )
return false ;
return true ;
}
/*
* Check for pipe properties that is not supported by selective fetch .
*
* TODO : pipe scaling causes a modeset but skl_update_scaler_crtc ( ) is executed
* after intel_psr_compute_config ( ) , so for now keeping PSR2 selective fetch
* enabled and going to the full update path .
*/
static bool psr2_sel_fetch_pipe_state_supported ( const struct intel_crtc_state * crtc_state )
{
if ( crtc_state - > scaler_state . scaler_id > = 0 )
return false ;
return true ;
}
2020-10-07 12:52:38 -07:00
int intel_psr2_sel_fetch_update ( struct intel_atomic_state * state ,
struct intel_crtc * crtc )
2020-08-10 10:41:43 -07:00
{
struct intel_crtc_state * crtc_state = intel_atomic_get_new_crtc_state ( state , crtc ) ;
2021-01-04 12:56:52 -08:00
struct drm_rect pipe_clip = { . x1 = 0 , . y1 = - 1 , . x2 = INT_MAX , . y2 = - 1 } ;
2020-10-07 12:52:38 -07:00
struct intel_plane_state * new_plane_state , * old_plane_state ;
struct intel_plane * plane ;
bool full_update = false ;
int i , ret ;
2020-08-10 10:41:43 -07:00
if ( ! crtc_state - > enable_psr2_sel_fetch )
2020-10-07 12:52:38 -07:00
return 0 ;
2021-09-29 17:14:01 -07:00
if ( ! psr2_sel_fetch_pipe_state_supported ( crtc_state ) ) {
full_update = true ;
goto skip_sel_fetch_set_loop ;
}
2021-01-04 12:56:52 -08:00
/*
* Calculate minimal selective fetch area of each plane and calculate
* the pipe damaged area .
* In the next loop the plane selective fetch area will actually be set
* using whole pipe damaged area .
*/
2020-10-07 12:52:38 -07:00
for_each_oldnew_intel_plane_in_state ( state , plane , old_plane_state ,
new_plane_state , i ) {
2021-01-04 12:56:52 -08:00
struct drm_rect src , damaged_area = { . y1 = - 1 } ;
2021-09-14 14:25:06 -07:00
struct drm_atomic_helper_damage_iter iter ;
struct drm_rect clip ;
2020-10-07 12:52:38 -07:00
if ( new_plane_state - > uapi . crtc ! = crtc_state - > uapi . crtc )
continue ;
2021-01-04 12:56:52 -08:00
if ( ! new_plane_state - > uapi . visible & &
! old_plane_state - > uapi . visible )
continue ;
2021-09-29 17:14:01 -07:00
if ( ! psr2_sel_fetch_plane_state_supported ( new_plane_state ) ) {
2020-10-07 12:52:38 -07:00
full_update = true ;
break ;
}
/*
2021-01-04 12:56:52 -08:00
* If visibility or plane moved , mark the whole plane area as
* damaged as it needs to be complete redraw in the new and old
* position .
2020-10-07 12:52:38 -07:00
*/
2021-01-04 12:56:52 -08:00
if ( new_plane_state - > uapi . visible ! = old_plane_state - > uapi . visible | |
! drm_rect_equals ( & new_plane_state - > uapi . dst ,
& old_plane_state - > uapi . dst ) ) {
if ( old_plane_state - > uapi . visible ) {
damaged_area . y1 = old_plane_state - > uapi . dst . y1 ;
damaged_area . y2 = old_plane_state - > uapi . dst . y2 ;
clip_area_update ( & pipe_clip , & damaged_area ) ;
}
if ( new_plane_state - > uapi . visible ) {
damaged_area . y1 = new_plane_state - > uapi . dst . y1 ;
damaged_area . y2 = new_plane_state - > uapi . dst . y2 ;
clip_area_update ( & pipe_clip , & damaged_area ) ;
}
continue ;
2021-09-14 14:25:06 -07:00
} else if ( new_plane_state - > uapi . alpha ! = old_plane_state - > uapi . alpha ) {
/* If alpha changed mark the whole plane area as damaged */
2021-01-04 12:56:52 -08:00
damaged_area . y1 = new_plane_state - > uapi . dst . y1 ;
damaged_area . y2 = new_plane_state - > uapi . dst . y2 ;
clip_area_update ( & pipe_clip , & damaged_area ) ;
continue ;
}
drm_rect_fp_to_int ( & src , & new_plane_state - > uapi . src ) ;
2021-09-14 14:25:06 -07:00
drm_atomic_helper_damage_iter_init ( & iter ,
& old_plane_state - > uapi ,
& new_plane_state - > uapi ) ;
drm_atomic_for_each_plane_damage ( & iter , & clip ) {
2021-01-04 12:56:52 -08:00
if ( drm_rect_intersect ( & clip , & src ) )
clip_area_update ( & damaged_area , & clip ) ;
}
if ( damaged_area . y1 = = - 1 )
continue ;
damaged_area . y1 + = new_plane_state - > uapi . dst . y1 - src . y1 ;
damaged_area . y2 + = new_plane_state - > uapi . dst . y1 - src . y1 ;
clip_area_update ( & pipe_clip , & damaged_area ) ;
}
if ( full_update )
goto skip_sel_fetch_set_loop ;
2020-11-30 04:57:50 -08:00
2021-09-14 14:25:06 -07:00
ret = drm_atomic_add_affected_planes ( & state - > base , & crtc - > base ) ;
if ( ret )
return ret ;
2021-06-16 13:31:53 -07:00
intel_psr2_sel_fetch_pipe_alignment ( crtc_state , & pipe_clip ) ;
2021-01-04 12:56:52 -08:00
/*
* Now that we have the pipe damaged area check if it intersect with
* every plane , if it does set the plane selective fetch area .
*/
for_each_oldnew_intel_plane_in_state ( state , plane , old_plane_state ,
new_plane_state , i ) {
struct drm_rect * sel_fetch_area , inter ;
2021-10-21 13:10:23 +03:00
struct intel_plane * linked = new_plane_state - > planar_linked_plane ;
2021-01-04 12:56:52 -08:00
if ( new_plane_state - > uapi . crtc ! = crtc_state - > uapi . crtc | |
! new_plane_state - > uapi . visible )
continue ;
inter = pipe_clip ;
if ( ! drm_rect_intersect ( & inter , & new_plane_state - > uapi . dst ) )
continue ;
2021-09-29 17:14:01 -07:00
if ( ! psr2_sel_fetch_plane_state_supported ( new_plane_state ) ) {
full_update = true ;
break ;
}
2021-01-04 12:56:52 -08:00
sel_fetch_area = & new_plane_state - > psr2_sel_fetch_area ;
sel_fetch_area - > y1 = inter . y1 - new_plane_state - > uapi . dst . y1 ;
sel_fetch_area - > y2 = inter . y2 - new_plane_state - > uapi . dst . y1 ;
2021-07-16 18:12:25 -07:00
crtc_state - > update_planes | = BIT ( plane - > id ) ;
2021-10-21 13:10:23 +03:00
/*
* Sel_fetch_area is calculated for UV plane . Use
* same area for Y plane as well .
*/
if ( linked ) {
2021-11-08 13:38:07 -08:00
struct intel_plane_state * linked_new_plane_state ;
struct drm_rect * linked_sel_fetch_area ;
2021-10-21 13:10:23 +03:00
2021-11-08 13:38:07 -08:00
linked_new_plane_state = intel_atomic_get_plane_state ( state , linked ) ;
if ( IS_ERR ( linked_new_plane_state ) )
return PTR_ERR ( linked_new_plane_state ) ;
linked_sel_fetch_area = & linked_new_plane_state - > psr2_sel_fetch_area ;
2021-10-21 13:10:23 +03:00
linked_sel_fetch_area - > y1 = sel_fetch_area - > y1 ;
linked_sel_fetch_area - > y2 = sel_fetch_area - > y2 ;
2021-11-08 13:38:07 -08:00
crtc_state - > update_planes | = BIT ( linked - > id ) ;
2021-10-21 13:10:23 +03:00
}
2020-10-07 12:52:38 -07:00
}
2020-08-10 10:41:43 -07:00
2021-01-04 12:56:52 -08:00
skip_sel_fetch_set_loop :
2020-10-07 12:52:38 -07:00
psr2_man_trk_ctl_calc ( crtc_state , & pipe_clip , full_update ) ;
return 0 ;
2020-08-10 10:41:43 -07:00
}
2021-10-22 13:32:56 +03:00
void intel_psr_pre_plane_update ( struct intel_atomic_state * state ,
struct intel_crtc * crtc )
2019-02-06 13:18:45 -08:00
{
2021-10-22 13:32:56 +03:00
struct drm_i915_private * i915 = to_i915 ( state - > base . dev ) ;
const struct intel_crtc_state * crtc_state =
intel_atomic_get_new_crtc_state ( state , crtc ) ;
2021-09-22 14:52:42 -07:00
struct intel_encoder * encoder ;
2019-02-06 13:18:45 -08:00
2021-10-22 13:32:56 +03:00
if ( ! HAS_PSR ( i915 ) )
return ;
2021-09-22 14:52:42 -07:00
for_each_intel_encoder_mask_with_psr ( state - > base . dev , encoder ,
crtc_state - > uapi . encoder_mask ) {
struct intel_dp * intel_dp = enc_to_intel_dp ( encoder ) ;
struct intel_psr * psr = & intel_dp - > psr ;
bool needs_to_disable = false ;
mutex_lock ( & psr - > lock ) ;
/*
* Reasons to disable :
* - PSR disabled in new state
* - All planes will go inactive
* - Changing between PSR versions
*/
2021-10-22 13:32:56 +03:00
needs_to_disable | = intel_crtc_needs_modeset ( crtc_state ) ;
2021-09-22 14:52:42 -07:00
needs_to_disable | = ! crtc_state - > has_psr ;
needs_to_disable | = ! crtc_state - > active_planes ;
needs_to_disable | = crtc_state - > has_psr2 ! = psr - > psr2_enabled ;
if ( psr - > enabled & & needs_to_disable )
intel_psr_disable_locked ( intel_dp ) ;
mutex_unlock ( & psr - > lock ) ;
}
}
static void _intel_psr_post_plane_update ( const struct intel_atomic_state * state ,
const struct intel_crtc_state * crtc_state )
{
struct drm_i915_private * dev_priv = to_i915 ( state - > base . dev ) ;
struct intel_encoder * encoder ;
if ( ! crtc_state - > has_psr )
return ;
2019-02-06 13:18:45 -08:00
2021-09-22 14:52:42 -07:00
for_each_intel_encoder_mask_with_psr ( state - > base . dev , encoder ,
crtc_state - > uapi . encoder_mask ) {
struct intel_dp * intel_dp = enc_to_intel_dp ( encoder ) ;
struct intel_psr * psr = & intel_dp - > psr ;
mutex_lock ( & psr - > lock ) ;
drm_WARN_ON ( & dev_priv - > drm , psr - > enabled & & ! crtc_state - > active_planes ) ;
/* Only enable if there is active planes */
if ( ! psr - > enabled & & crtc_state - > active_planes )
intel_psr_enable_locked ( intel_dp , crtc_state ) ;
2019-02-06 13:18:45 -08:00
2019-03-07 16:00:49 -08:00
/* Force a PSR exit when enabling CRC to avoid CRC timeouts */
if ( crtc_state - > crc_enabled & & psr - > enabled )
2021-02-04 15:40:14 +02:00
psr_force_hw_tracking_exit ( intel_dp ) ;
2019-03-07 16:00:49 -08:00
2021-09-22 14:52:42 -07:00
mutex_unlock ( & psr - > lock ) ;
2019-03-07 16:00:49 -08:00
}
2021-09-22 14:52:42 -07:00
}
2019-02-06 13:18:45 -08:00
2021-09-22 14:52:42 -07:00
void intel_psr_post_plane_update ( const struct intel_atomic_state * state )
{
struct drm_i915_private * dev_priv = to_i915 ( state - > base . dev ) ;
struct intel_crtc_state * crtc_state ;
struct intel_crtc * crtc ;
int i ;
2019-02-06 13:18:45 -08:00
2021-09-22 14:52:42 -07:00
if ( ! HAS_PSR ( dev_priv ) )
return ;
2019-02-06 13:18:45 -08:00
2021-09-22 14:52:42 -07:00
for_each_new_intel_crtc_in_state ( state , crtc , crtc_state , i )
_intel_psr_post_plane_update ( state , crtc_state ) ;
2019-02-06 13:18:45 -08:00
}
2021-10-05 16:18:51 -07:00
static int _psr2_ready_for_pipe_update_locked ( struct intel_dp * intel_dp )
{
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
/*
* Any state lower than EDP_PSR2_STATUS_STATE_DEEP_SLEEP is enough .
* As all higher states has bit 4 of PSR2 state set we can just wait for
* EDP_PSR2_STATUS_STATE_DEEP_SLEEP to be cleared .
*/
return intel_de_wait_for_clear ( dev_priv ,
EDP_PSR2_STATUS ( intel_dp - > psr . transcoder ) ,
EDP_PSR2_STATUS_STATE_DEEP_SLEEP , 50 ) ;
}
static int _psr1_ready_for_pipe_update_locked ( struct intel_dp * intel_dp )
2018-06-27 13:02:49 -07:00
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2018-06-27 13:02:49 -07:00
/*
2018-08-24 16:08:44 -07:00
* From bspec : Panel Self Refresh ( BDW + )
* Max . time for PSR to idle = Inverse of the refresh rate + 6 ms of
* exit training time + 1.5 ms of aux channel handshake . 50 ms is
* defensive enough to cover everything .
2018-06-27 13:02:49 -07:00
*/
2021-10-05 16:18:51 -07:00
return intel_de_wait_for_clear ( dev_priv ,
EDP_PSR_STATUS ( intel_dp - > psr . transcoder ) ,
EDP_PSR_STATUS_STATE_MASK , 50 ) ;
2018-06-27 13:02:49 -07:00
}
2021-02-04 15:40:14 +02:00
/**
2021-10-05 16:18:51 -07:00
* intel_psr_wait_for_idle - wait for PSR be ready for a pipe update
2021-02-04 15:40:14 +02:00
* @ new_crtc_state : new CRTC state
*
* This function is expected to be called from pipe_update_start ( ) where it is
* not expected to race with PSR enable or disable .
*/
void intel_psr_wait_for_idle ( const struct intel_crtc_state * new_crtc_state )
{
struct drm_i915_private * dev_priv = to_i915 ( new_crtc_state - > uapi . crtc - > dev ) ;
struct intel_encoder * encoder ;
if ( ! new_crtc_state - > has_psr )
return ;
2021-02-09 10:14:36 -08:00
for_each_intel_encoder_mask_with_psr ( & dev_priv - > drm , encoder ,
new_crtc_state - > uapi . encoder_mask ) {
2021-02-04 15:40:14 +02:00
struct intel_dp * intel_dp = enc_to_intel_dp ( encoder ) ;
2021-10-05 16:18:51 -07:00
int ret ;
2021-02-04 15:40:14 +02:00
mutex_lock ( & intel_dp - > psr . lock ) ;
2021-10-05 16:18:51 -07:00
if ( ! intel_dp - > psr . enabled ) {
2021-02-04 15:40:14 +02:00
mutex_unlock ( & intel_dp - > psr . lock ) ;
continue ;
}
2021-10-05 16:18:51 -07:00
if ( intel_dp - > psr . psr2_enabled )
ret = _psr2_ready_for_pipe_update_locked ( intel_dp ) ;
else
ret = _psr1_ready_for_pipe_update_locked ( intel_dp ) ;
if ( ret )
drm_err ( & dev_priv - > drm , " PSR wait timed out, atomic update may fail \n " ) ;
2021-02-04 15:40:14 +02:00
mutex_unlock ( & intel_dp - > psr . lock ) ;
}
}
static bool __psr_wait_for_idle_locked ( struct intel_dp * intel_dp )
2014-11-14 08:52:28 -08:00
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2018-04-05 12:49:15 +01:00
i915_reg_t reg ;
u32 mask ;
int err ;
2021-02-04 15:40:14 +02:00
if ( ! intel_dp - > psr . enabled )
2018-04-05 12:49:15 +01:00
return false ;
2014-11-14 08:52:28 -08:00
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . psr2_enabled ) {
reg = EDP_PSR2_STATUS ( intel_dp - > psr . transcoder ) ;
2018-05-11 16:00:59 -07:00
mask = EDP_PSR2_STATUS_STATE_MASK ;
2014-11-19 07:37:47 -08:00
} else {
2021-02-04 15:40:14 +02:00
reg = EDP_PSR_STATUS ( intel_dp - > psr . transcoder ) ;
2018-05-11 16:00:59 -07:00
mask = EDP_PSR_STATUS_STATE_MASK ;
2014-11-14 08:52:28 -08:00
}
2018-04-05 12:49:15 +01:00
2021-02-04 15:40:14 +02:00
mutex_unlock ( & intel_dp - > psr . lock ) ;
2018-04-05 12:49:15 +01:00
2019-08-15 18:23:43 -07:00
err = intel_de_wait_for_clear ( dev_priv , reg , mask , 50 ) ;
2018-04-05 12:49:15 +01:00
if ( err )
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_err ( & dev_priv - > drm ,
" Timed out waiting for PSR Idle for re-enable \n " ) ;
2018-04-05 12:49:15 +01:00
/* After the unlocked wait, verify that PSR is still wanted! */
2021-02-04 15:40:14 +02:00
mutex_lock ( & intel_dp - > psr . lock ) ;
return err = = 0 & & intel_dp - > psr . enabled ;
2018-04-05 12:49:15 +01:00
}
2014-11-14 08:52:28 -08:00
2019-02-06 13:18:45 -08:00
static int intel_psr_fastset_force ( struct drm_i915_private * dev_priv )
2018-08-08 16:19:11 +02:00
{
2020-10-07 12:52:37 -07:00
struct drm_connector_list_iter conn_iter ;
2019-02-06 13:18:45 -08:00
struct drm_device * dev = & dev_priv - > drm ;
struct drm_modeset_acquire_ctx ctx ;
struct drm_atomic_state * state ;
2020-10-07 12:52:37 -07:00
struct drm_connector * conn ;
int err = 0 ;
2018-08-08 16:19:11 +02:00
2019-02-06 13:18:45 -08:00
state = drm_atomic_state_alloc ( dev ) ;
if ( ! state )
return - ENOMEM ;
2018-08-08 16:19:11 +02:00
2019-02-06 13:18:45 -08:00
drm_modeset_acquire_init ( & ctx , DRM_MODESET_ACQUIRE_INTERRUPTIBLE ) ;
state - > acquire_ctx = & ctx ;
retry :
2020-10-07 12:52:37 -07:00
drm_connector_list_iter_begin ( dev , & conn_iter ) ;
drm_for_each_connector_iter ( conn , & conn_iter ) {
struct drm_connector_state * conn_state ;
struct drm_crtc_state * crtc_state ;
if ( conn - > connector_type ! = DRM_MODE_CONNECTOR_eDP )
continue ;
conn_state = drm_atomic_get_connector_state ( state , conn ) ;
if ( IS_ERR ( conn_state ) ) {
err = PTR_ERR ( conn_state ) ;
break ;
2019-02-06 13:18:45 -08:00
}
2020-10-07 12:52:37 -07:00
if ( ! conn_state - > crtc )
continue ;
crtc_state = drm_atomic_get_crtc_state ( state , conn_state - > crtc ) ;
if ( IS_ERR ( crtc_state ) ) {
err = PTR_ERR ( crtc_state ) ;
2019-02-06 13:18:45 -08:00
break ;
}
2020-10-07 12:52:37 -07:00
/* Mark mode as changed to trigger a pipe->update() */
crtc_state - > mode_changed = true ;
2019-02-06 13:18:45 -08:00
}
2020-10-07 12:52:37 -07:00
drm_connector_list_iter_end ( & conn_iter ) ;
2019-02-06 13:18:45 -08:00
2020-10-07 12:52:37 -07:00
if ( err = = 0 )
err = drm_atomic_commit ( state ) ;
2018-08-08 16:19:11 +02:00
2019-02-06 13:18:45 -08:00
if ( err = = - EDEADLK ) {
drm_atomic_state_clear ( state ) ;
err = drm_modeset_backoff ( & ctx ) ;
if ( ! err )
goto retry ;
}
drm_modeset_drop_locks ( & ctx ) ;
drm_modeset_acquire_fini ( & ctx ) ;
drm_atomic_state_put ( state ) ;
return err ;
2018-08-08 16:19:11 +02:00
}
2021-02-04 15:40:14 +02:00
int intel_psr_debug_set ( struct intel_dp * intel_dp , u64 val )
2018-08-09 16:21:01 +02:00
{
2021-02-04 15:40:14 +02:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2019-02-06 13:18:45 -08:00
const u32 mode = val & I915_PSR_DEBUG_MODE_MASK ;
u32 old_mode ;
2018-08-09 16:21:01 +02:00
int ret ;
if ( val & ~ ( I915_PSR_DEBUG_IRQ | I915_PSR_DEBUG_MODE_MASK ) | |
2021-02-09 12:50:36 -08:00
mode > I915_PSR_DEBUG_ENABLE_SEL_FETCH ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm , " Invalid debug mask %llx \n " , val ) ;
2018-08-09 16:21:01 +02:00
return - EINVAL ;
}
2021-02-04 15:40:14 +02:00
ret = mutex_lock_interruptible ( & intel_dp - > psr . lock ) ;
2018-08-09 16:21:01 +02:00
if ( ret )
return ret ;
2021-02-04 15:40:14 +02:00
old_mode = intel_dp - > psr . debug & I915_PSR_DEBUG_MODE_MASK ;
intel_dp - > psr . debug = val ;
2019-09-04 14:34:14 -07:00
/*
* Do it right away if it ' s already enabled , otherwise it will be done
* when enabling the source .
*/
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . enabled )
psr_irq_control ( intel_dp ) ;
2018-08-09 16:21:01 +02:00
2021-02-04 15:40:14 +02:00
mutex_unlock ( & intel_dp - > psr . lock ) ;
2019-02-06 13:18:45 -08:00
if ( old_mode ! = mode )
ret = intel_psr_fastset_force ( dev_priv ) ;
2018-08-09 16:21:01 +02:00
return ret ;
}
2021-02-04 15:40:14 +02:00
static void intel_psr_handle_irq ( struct intel_dp * intel_dp )
2018-11-21 14:54:39 -08:00
{
2021-02-04 15:40:14 +02:00
struct intel_psr * psr = & intel_dp - > psr ;
2018-11-21 14:54:39 -08:00
2021-02-04 15:40:14 +02:00
intel_psr_disable_locked ( intel_dp ) ;
2018-11-21 14:54:39 -08:00
psr - > sink_not_reliable = true ;
/* let's make sure that sink is awaken */
2021-02-04 15:40:14 +02:00
drm_dp_dpcd_writeb ( & intel_dp - > aux , DP_SET_POWER , DP_SET_POWER_D0 ) ;
2018-11-21 14:54:39 -08:00
}
2018-04-05 12:49:15 +01:00
static void intel_psr_work ( struct work_struct * work )
{
2021-02-04 15:40:14 +02:00
struct intel_dp * intel_dp =
container_of ( work , typeof ( * intel_dp ) , psr . work ) ;
2018-04-05 12:49:15 +01:00
2021-02-04 15:40:14 +02:00
mutex_lock ( & intel_dp - > psr . lock ) ;
2018-04-05 12:49:15 +01:00
2021-02-04 15:40:14 +02:00
if ( ! intel_dp - > psr . enabled )
2018-06-13 12:26:00 -07:00
goto unlock ;
2021-02-04 15:40:14 +02:00
if ( READ_ONCE ( intel_dp - > psr . irq_aux_error ) )
intel_psr_handle_irq ( intel_dp ) ;
2018-11-21 14:54:39 -08:00
2018-04-05 12:49:15 +01:00
/*
* We have to make sure PSR is ready for re - enable
* otherwise it keeps disabled until next full enable / disable cycle .
* PSR might take some time to get fully disabled
* and be ready for re - enable .
*/
2021-02-04 15:40:14 +02:00
if ( ! __psr_wait_for_idle_locked ( intel_dp ) )
2014-11-14 08:52:28 -08:00
goto unlock ;
/*
* The delayed work can race with an invalidate hence we need to
* recheck . Since psr_flush first clears this and then reschedules we
* won ' t ever miss a flush when bailing out here .
*/
2021-02-04 15:40:14 +02:00
if ( intel_dp - > psr . busy_frontbuffer_bits | | intel_dp - > psr . active )
2014-11-14 08:52:28 -08:00
goto unlock ;
2021-02-04 15:40:14 +02:00
intel_psr_activate ( intel_dp ) ;
2014-11-14 08:52:28 -08:00
unlock :
2021-02-04 15:40:14 +02:00
mutex_unlock ( & intel_dp - > psr . lock ) ;
2014-11-14 08:52:28 -08:00
}
2014-11-14 08:52:29 -08:00
/**
* intel_psr_invalidate - Invalidade PSR
2016-08-04 16:32:38 +01:00
* @ dev_priv : i915 device
2014-11-14 08:52:29 -08:00
* @ frontbuffer_bits : frontbuffer plane tracking bits
2018-03-06 19:34:20 -08:00
* @ origin : which operation caused the invalidate
2014-11-14 08:52:29 -08:00
*
* Since the hardware frontbuffer tracking has gaps we need to integrate
* with the software frontbuffer tracking . This function gets called every
* time frontbuffer rendering starts and a buffer gets dirtied . PSR must be
* disabled if the frontbuffer mask contains a buffer relevant to PSR .
*
* Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits . "
*/
2016-08-04 16:32:38 +01:00
void intel_psr_invalidate ( struct drm_i915_private * dev_priv ,
2018-03-06 19:34:20 -08:00
unsigned frontbuffer_bits , enum fb_op_origin origin )
2014-11-14 08:52:28 -08:00
{
2021-02-04 15:40:14 +02:00
struct intel_encoder * encoder ;
2017-09-07 16:00:31 -07:00
2018-05-11 16:00:59 -07:00
if ( origin = = ORIGIN_FLIP )
2018-03-06 19:34:20 -08:00
return ;
2021-02-09 10:14:36 -08:00
for_each_intel_encoder_with_psr ( & dev_priv - > drm , encoder ) {
2021-02-04 15:40:14 +02:00
unsigned int pipe_frontbuffer_bits = frontbuffer_bits ;
struct intel_dp * intel_dp = enc_to_intel_dp ( encoder ) ;
2014-11-14 08:52:28 -08:00
2021-02-04 15:40:14 +02:00
mutex_lock ( & intel_dp - > psr . lock ) ;
if ( ! intel_dp - > psr . enabled ) {
mutex_unlock ( & intel_dp - > psr . lock ) ;
continue ;
}
2015-06-18 10:30:26 +02:00
2021-02-04 15:40:14 +02:00
pipe_frontbuffer_bits & =
INTEL_FRONTBUFFER_ALL_MASK ( intel_dp - > psr . pipe ) ;
intel_dp - > psr . busy_frontbuffer_bits | = pipe_frontbuffer_bits ;
2015-06-18 10:30:26 +02:00
2021-02-04 15:40:14 +02:00
if ( pipe_frontbuffer_bits )
intel_psr_exit ( intel_dp ) ;
2014-11-14 08:52:28 -08:00
2021-02-04 15:40:14 +02:00
mutex_unlock ( & intel_dp - > psr . lock ) ;
}
}
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
/*
* When we will be completely rely on PSR2 S / W tracking in future ,
* intel_psr_flush ( ) will invalidate and flush the PSR for ORIGIN_FLIP
2021-09-29 17:14:05 -07:00
* event also therefore tgl_dc3co_flush_locked ( ) require to be changed
2020-02-05 13:49:45 -08:00
* accordingly in future .
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
*/
static void
2021-09-29 17:14:05 -07:00
tgl_dc3co_flush_locked ( struct intel_dp * intel_dp , unsigned int frontbuffer_bits ,
enum fb_op_origin origin )
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
{
2021-09-29 17:14:05 -07:00
if ( ! intel_dp - > psr . dc3co_exitline | | ! intel_dp - > psr . psr2_enabled | |
! intel_dp - > psr . active )
return ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
/*
* At every frontbuffer flush flip event modified delay of delayed work ,
* when delayed work schedules that means display has been idle .
*/
if ( ! ( frontbuffer_bits &
2021-02-04 15:40:14 +02:00
INTEL_FRONTBUFFER_ALL_MASK ( intel_dp - > psr . pipe ) ) )
2021-09-29 17:14:05 -07:00
return ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
2021-02-04 15:40:14 +02:00
tgl_psr2_enable_dc3co ( intel_dp ) ;
mod_delayed_work ( system_wq , & intel_dp - > psr . dc3co_work ,
intel_dp - > psr . dc3co_exit_delay ) ;
drm/i915/tgl: Switch between dc3co and dc5 based on display idleness
DC3CO is useful power state, when DMC detects PSR2 idle frame
while an active video playback, playing 30fps video on 60hz panel
is the classic example of this use case.
B.Specs:49196 has a restriction to enable DC3CO only for Video Playback.
It will be worthy to enable DC3CO after completion of each pageflip
and switch back to DC5 when display is idle because driver doesn't
differentiate between video playback and a normal pageflip.
We will use Frontbuffer flush call tgl_dc3co_flush() to enable DC3CO
state only for ORIGIN_FLIP flush call, because DC3CO state has primarily
targeted for VPB use case. We are not interested here for frontbuffer
invalidates calls because that triggers PSR2 exit, which will
explicitly disable DC3CO.
DC5 and DC6 saves more power, but can't be entered during video
playback because there are not enough idle frames in a row to meet
most PSR2 panel deep sleep entry requirement typically 4 frames.
As PSR2 existing implementation is using minimum 6 idle frames for
deep sleep, it is safer to enable DC5/6 after 6 idle frames
(By scheduling a delayed work of 6 idle frames, once DC3CO has been
enabled after a pageflip).
After manually waiting for 6 idle frames DC5/6 will be enabled and
PSR2 deep sleep idle frames will be restored to 6 idle frames, at this
point DMC will triggers DC5/6 once PSR2 enters to deep sleep after
6 idle frames.
In future when we will enable S/W PSR2 tracking, we can change the
PSR2 required deep sleep idle frames to 1 so DMC can trigger the
DC5/6 immediately after S/W manual waiting of 6 idle frames get
complete.
v2: calculated s/w state to switch over dc3co when there is an
update. [Imre]
Used cancel_delayed_work_sync() in order to avoid any race
with already scheduled delayed work. [Imre]
v3: Cancel_delayed_work_sync() may blocked the commit work.
hence dropping it, dc5_idle_thread() checks the valid wakeref before
putting the reference count, which avoids any chances of dropping
a zero wakeref. [Imre (IRC)]
v4: Used frontbuffer flush mechanism. [Imre]
v5: Used psr.pipe to extract frontbuffer busy bits. [Imre]
Used cancel_delayed_work_sync() in encoder disable path. [Imre]
Used mod_delayed_work() instead of cancelling and scheduling a
delayed work. [Imre]
Used psr.lock in tgl_dc5_idle_thread() to enable psr2 deep
sleep. [Imre]
Removed DC5_REQ_IDLE_FRAMES macro. [Imre]
v6: Used dc3co_exitline check instead of TGL and dc3co allowed_dc_mask
checks, used delayed_work_pending with the psr lock and removed the
psr2_deep_slp_disabled flag. [Imre]
v7: Code refactoring, moved most of functional code to inte_psr.c [Imre]
Using frontbuffer_bits on psr.pipe check instead of
busy_frontbuffer_bits. [Imre]
Calculating dc3co_exit_delay in intel_psr_enable_locked. [Imre]
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191003081738.22101-6-anshuman.gupta@intel.com
2019-10-03 13:47:37 +05:30
}
2014-11-14 08:52:29 -08:00
/**
* intel_psr_flush - Flush PSR
2016-08-04 16:32:38 +01:00
* @ dev_priv : i915 device
2014-11-14 08:52:29 -08:00
* @ frontbuffer_bits : frontbuffer plane tracking bits
2015-07-08 16:21:31 -07:00
* @ origin : which operation caused the flush
2014-11-14 08:52:29 -08:00
*
* Since the hardware frontbuffer tracking has gaps we need to integrate
* with the software frontbuffer tracking . This function gets called every
* time frontbuffer rendering has completed and flushed out to memory . PSR
* can be enabled again if no other frontbuffer relevant to PSR is dirty .
*
* Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits .
*/
2016-08-04 16:32:38 +01:00
void intel_psr_flush ( struct drm_i915_private * dev_priv ,
2015-07-08 16:21:31 -07:00
unsigned frontbuffer_bits , enum fb_op_origin origin )
2014-11-14 08:52:28 -08:00
{
2021-02-04 15:40:14 +02:00
struct intel_encoder * encoder ;
2017-09-07 16:00:31 -07:00
2021-02-09 10:14:36 -08:00
for_each_intel_encoder_with_psr ( & dev_priv - > drm , encoder ) {
2021-02-04 15:40:14 +02:00
unsigned int pipe_frontbuffer_bits = frontbuffer_bits ;
struct intel_dp * intel_dp = enc_to_intel_dp ( encoder ) ;
2018-03-06 19:34:20 -08:00
2021-02-04 15:40:14 +02:00
mutex_lock ( & intel_dp - > psr . lock ) ;
if ( ! intel_dp - > psr . enabled ) {
mutex_unlock ( & intel_dp - > psr . lock ) ;
continue ;
}
2014-11-14 08:52:28 -08:00
2021-02-04 15:40:14 +02:00
pipe_frontbuffer_bits & =
INTEL_FRONTBUFFER_ALL_MASK ( intel_dp - > psr . pipe ) ;
intel_dp - > psr . busy_frontbuffer_bits & = ~ pipe_frontbuffer_bits ;
2014-11-14 08:52:28 -08:00
2021-06-08 11:54:14 +03:00
/*
* If the PSR is paused by an explicit intel_psr_paused ( ) call ,
* we have to ensure that the PSR is not activated until
* intel_psr_resume ( ) is called .
*/
if ( intel_dp - > psr . paused ) {
mutex_unlock ( & intel_dp - > psr . lock ) ;
continue ;
}
2021-09-29 17:14:05 -07:00
if ( origin = = ORIGIN_FLIP | |
( origin = = ORIGIN_CURSOR_UPDATE & &
! intel_dp - > psr . psr2_sel_fetch_enabled ) ) {
tgl_dc3co_flush_locked ( intel_dp , frontbuffer_bits , origin ) ;
mutex_unlock ( & intel_dp - > psr . lock ) ;
continue ;
}
2021-02-04 15:40:14 +02:00
/* By definition flush = invalidate + flush */
if ( pipe_frontbuffer_bits )
psr_force_hw_tracking_exit ( intel_dp ) ;
2014-11-19 07:37:47 -08:00
2021-02-04 15:40:14 +02:00
if ( ! intel_dp - > psr . active & & ! intel_dp - > psr . busy_frontbuffer_bits )
schedule_work ( & intel_dp - > psr . work ) ;
mutex_unlock ( & intel_dp - > psr . lock ) ;
}
2014-11-14 08:52:28 -08:00
}
2014-11-14 08:52:29 -08:00
/**
* intel_psr_init - Init basic PSR work and mutex .
2021-02-04 15:40:14 +02:00
* @ intel_dp : Intel DP
2014-11-14 08:52:29 -08:00
*
2021-02-04 15:40:14 +02:00
* This function is called after the initializing connector .
* ( the initializing of connector treats the handling of connector capabilities )
* And it initializes basic PSR stuff for each DP Encoder .
2014-11-14 08:52:29 -08:00
*/
2021-02-04 15:40:14 +02:00
void intel_psr_init ( struct intel_dp * intel_dp )
2014-11-14 08:52:28 -08:00
{
2021-02-04 15:40:14 +02:00
struct intel_digital_port * dig_port = dp_to_dig_port ( intel_dp ) ;
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2017-09-07 16:00:31 -07:00
if ( ! HAS_PSR ( dev_priv ) )
return ;
2021-02-04 15:40:14 +02:00
/*
* HSW spec explicitly says PSR is tied to port A .
* BDW + platforms have a instance of PSR registers per transcoder but
* BDW , GEN9 and GEN11 are not validated by HW team in other transcoder
* than eDP one .
* For now it only supports one instance of PSR for BDW , GEN9 and GEN11 .
* So lets keep it hardcoded to PORT_A for BDW , GEN9 and GEN11 .
* But GEN12 supports a instance of PSR registers per transcoder .
*/
2021-03-19 21:42:42 -07:00
if ( DISPLAY_VER ( dev_priv ) < 12 & & dig_port - > base . port ! = PORT_A ) {
2021-02-04 15:40:14 +02:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR condition failed: Port not supported \n " ) ;
return ;
}
intel_dp - > psr . source_support = true ;
2020-06-18 18:04:02 +03:00
if ( dev_priv - > params . enable_psr = = - 1 )
2021-08-27 10:42:51 -07:00
if ( ! dev_priv - > vbt . psr . enable )
2020-06-18 18:04:02 +03:00
dev_priv - > params . enable_psr = 0 ;
2016-02-12 04:08:11 -08:00
2016-02-01 12:02:08 -08:00
/* Set link_standby x link_off defaults */
2021-08-27 10:42:51 -07:00
if ( DISPLAY_VER ( dev_priv ) < 12 )
2019-08-23 01:20:39 -07:00
/* For new platforms up to TGL let's respect VBT back again */
2021-02-04 15:40:14 +02:00
intel_dp - > psr . link_standby = dev_priv - > vbt . psr . full_link ;
2016-02-01 12:02:07 -08:00
2021-02-04 15:40:14 +02:00
INIT_WORK ( & intel_dp - > psr . work , intel_psr_work ) ;
INIT_DELAYED_WORK ( & intel_dp - > psr . dc3co_work , tgl_dc3co_disable_work ) ;
mutex_init ( & intel_dp - > psr . lock ) ;
2014-11-14 08:52:28 -08:00
}
2018-06-26 13:16:41 -07:00
2019-11-27 17:48:49 -08:00
static int psr_get_status_and_error_status ( struct intel_dp * intel_dp ,
u8 * status , u8 * error_status )
{
struct drm_dp_aux * aux = & intel_dp - > aux ;
int ret ;
ret = drm_dp_dpcd_readb ( aux , DP_PSR_STATUS , status ) ;
if ( ret ! = 1 )
return ret ;
ret = drm_dp_dpcd_readb ( aux , DP_PSR_ERROR_STATUS , error_status ) ;
if ( ret ! = 1 )
return ret ;
* status = * status & DP_PSR_SINK_STATE_MASK ;
return 0 ;
}
2019-11-27 17:48:50 -08:00
static void psr_alpm_check ( struct intel_dp * intel_dp )
{
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
struct drm_dp_aux * aux = & intel_dp - > aux ;
2021-02-04 15:40:14 +02:00
struct intel_psr * psr = & intel_dp - > psr ;
2019-11-27 17:48:50 -08:00
u8 val ;
int r ;
if ( ! psr - > psr2_enabled )
return ;
r = drm_dp_dpcd_readb ( aux , DP_RECEIVER_ALPM_STATUS , & val ) ;
if ( r ! = 1 ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_err ( & dev_priv - > drm , " Error reading ALPM status \n " ) ;
2019-11-27 17:48:50 -08:00
return ;
}
if ( val & DP_ALPM_LOCK_TIMEOUT_ERROR ) {
intel_psr_disable_locked ( intel_dp ) ;
psr - > sink_not_reliable = true ;
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" ALPM lock timeout error, disabling PSR \n " ) ;
2019-11-27 17:48:50 -08:00
/* Clearing error */
drm_dp_dpcd_writeb ( aux , DP_RECEIVER_ALPM_STATUS , val ) ;
}
}
2019-11-27 17:48:51 -08:00
static void psr_capability_changed_check ( struct intel_dp * intel_dp )
{
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-02-04 15:40:14 +02:00
struct intel_psr * psr = & intel_dp - > psr ;
2019-11-27 17:48:51 -08:00
u8 val ;
int r ;
r = drm_dp_dpcd_readb ( & intel_dp - > aux , DP_PSR_ESI , & val ) ;
if ( r ! = 1 ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_err ( & dev_priv - > drm , " Error reading DP_PSR_ESI \n " ) ;
2019-11-27 17:48:51 -08:00
return ;
}
if ( val & DP_PSR_CAPS_CHANGE ) {
intel_psr_disable_locked ( intel_dp ) ;
psr - > sink_not_reliable = true ;
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" Sink PSR capability changed, disabling PSR \n " ) ;
2019-11-27 17:48:51 -08:00
/* Clearing it */
drm_dp_dpcd_writeb ( & intel_dp - > aux , DP_PSR_ESI , val ) ;
}
}
2018-06-26 13:16:41 -07:00
void intel_psr_short_pulse ( struct intel_dp * intel_dp )
{
2018-08-27 15:30:21 -07:00
struct drm_i915_private * dev_priv = dp_to_i915 ( intel_dp ) ;
2021-02-04 15:40:14 +02:00
struct intel_psr * psr = & intel_dp - > psr ;
2019-11-27 17:48:49 -08:00
u8 status , error_status ;
2018-06-26 13:16:42 -07:00
const u8 errors = DP_PSR_RFB_STORAGE_ERROR |
2018-06-26 13:16:44 -07:00
DP_PSR_VSC_SDP_UNCORRECTABLE_ERROR |
DP_PSR_LINK_CRC_ERROR ;
2018-06-26 13:16:41 -07:00
2021-02-09 10:14:38 -08:00
if ( ! CAN_PSR ( intel_dp ) )
2018-06-26 13:16:41 -07:00
return ;
mutex_lock ( & psr - > lock ) ;
2021-02-04 15:40:14 +02:00
if ( ! psr - > enabled )
2018-06-26 13:16:41 -07:00
goto exit ;
2019-11-27 17:48:49 -08:00
if ( psr_get_status_and_error_status ( intel_dp , & status , & error_status ) ) {
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_err ( & dev_priv - > drm ,
" Error reading PSR status or error status \n " ) ;
2018-06-26 13:16:41 -07:00
goto exit ;
}
2019-11-27 17:48:49 -08:00
if ( status = = DP_PSR_SINK_INTERNAL_ERROR | | ( error_status & errors ) ) {
2018-06-26 13:16:41 -07:00
intel_psr_disable_locked ( intel_dp ) ;
2018-11-21 14:54:38 -08:00
psr - > sink_not_reliable = true ;
2018-06-26 13:16:41 -07:00
}
2019-11-27 17:48:49 -08:00
if ( status = = DP_PSR_SINK_INTERNAL_ERROR & & ! error_status )
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR sink internal error, disabling PSR \n " ) ;
2019-11-27 17:48:49 -08:00
if ( error_status & DP_PSR_RFB_STORAGE_ERROR )
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR RFB storage error, disabling PSR \n " ) ;
2019-11-27 17:48:49 -08:00
if ( error_status & DP_PSR_VSC_SDP_UNCORRECTABLE_ERROR )
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR VSC SDP uncorrectable error, disabling PSR \n " ) ;
2019-11-27 17:48:49 -08:00
if ( error_status & DP_PSR_LINK_CRC_ERROR )
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_dbg_kms ( & dev_priv - > drm ,
" PSR Link CRC error, disabling PSR \n " ) ;
2018-06-26 13:16:42 -07:00
2019-11-27 17:48:49 -08:00
if ( error_status & ~ errors )
drm/i915/psr: automatic conversion to drm_device based logging macros.
Converts instances of the printk based logging macros to the struct
drm_device based logging macros in i915/display/intel_psr.c using the
following coccinelle script that transforms based on the existence of a
drm_i915_private device pointer:
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-11-wambui.karugax@gmail.com
2020-01-30 11:32:27 +03:00
drm_err ( & dev_priv - > drm ,
" PSR_ERROR_STATUS unhandled errors %x \n " ,
error_status & ~ errors ) ;
2018-06-26 13:16:42 -07:00
/* clear status register */
2019-11-27 17:48:49 -08:00
drm_dp_dpcd_writeb ( & intel_dp - > aux , DP_PSR_ERROR_STATUS , error_status ) ;
2019-11-27 17:48:50 -08:00
psr_alpm_check ( intel_dp ) ;
2019-11-27 17:48:51 -08:00
psr_capability_changed_check ( intel_dp ) ;
2019-11-27 17:48:50 -08:00
2018-06-26 13:16:41 -07:00
exit :
mutex_unlock ( & psr - > lock ) ;
}
2018-11-21 14:54:37 -08:00
bool intel_psr_enabled ( struct intel_dp * intel_dp )
{
bool ret ;
2021-02-09 10:14:38 -08:00
if ( ! CAN_PSR ( intel_dp ) )
2018-11-21 14:54:37 -08:00
return false ;
2021-02-04 15:40:14 +02:00
mutex_lock ( & intel_dp - > psr . lock ) ;
ret = intel_dp - > psr . enabled ;
mutex_unlock ( & intel_dp - > psr . lock ) ;
2018-11-21 14:54:37 -08:00
return ret ;
}