Skip to content
Permalink
Mullati-Siva/d…
Switch branches/tags

Commits on Nov 18, 2021

  1. drm/i915: Skip remap_io() calls for non-x86 platforms

    Only hw that supports mappable aperture would hit this path
    vm_fault_gtt/vm_fault_tmm, So we never hit these functions
    remap_io_mapping() and remap_io_sg in discrete, So skip this
    code for non-x86 architectures.
    
    Signed-off-by: Siva Mullati <siva.mullati@intel.com>
    smullati authored and intel-lab-lkp committed Nov 18, 2021

Commits on Nov 17, 2021

  1. drm/i915: Fix fastsets on TypeC ports following a non-blocking modeset

    After a non-blocking modeset on a TypeC port's CRTC - possibly blocked
    later in drm_atomic_helper_wait_for_dependencies() - a fastset on the
    same CRTC may copy the state of CRTC before this gets updated to reflect
    the up-to-date DP-alt vs. TBT-alt TypeC mode DPLL used for the CRTC. In
    this case after the first (non-blocking) commit completes enabling the
    DPLL required for the up-to-date TypeC mode the following fastset will
    update the CRTC state pointing to the wrong DPLL. A subsequent disabling
    modeset will try to disable the wrong PLL, triggering a state checker
    WARN (and leaving the DPLL which is actually used active for good).
    
    Fix the above race by copying the DPLL state for fastset CRTCs from the
    old CRTC state at the point where it's guaranteed to be up-to-date
    already. This could be handled in the encoder's update_prepare() hook as
    well, but that's a bigger change, which is better done as a follow-up.
    
    v2: Copy dpll_hw_state as well. (Ville)
    
    Testcase: igt/kms_busy/extended-modeset-hang-newfb-with-reset
    Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/4308
    Cc: Ville Syrjala <ville.syrjala@linux.intel.com>
    Signed-off-by: Imre Deak <imre.deak@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211115181121.156197-1-imre.deak@intel.com
    ideak committed Nov 17, 2021
  2. drm/i915/guc: fix NULL vs IS_ERR() checking

    The intel_engine_create_virtual() function does not return NULL.  It
    returns error pointers.
    
    Fixes: e5e3217 ("drm/i915/guc: Connect UAPI to GuC multi-lrc interface")
    Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
    Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
    Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211116114916.GB11936@kili
    error27 authored and rodrigovivi committed Nov 17, 2021
  3. drm/i915/driver: add i915_driver_ prefix to functions

    Add the i915_driver_ prefix to the switcheroo functions in
    i915_driver.[ch].
    
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211111101304.13094-3-jani.nikula@intel.com
    jnikula committed Nov 17, 2021
  4. drm/i915/driver: rename driver to i915_drm_driver

    As a name, "driver" is too generic and short to be easily located in a
    file this size. Rename it to i915_drm_driver.
    
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211111101304.13094-2-jani.nikula@intel.com
    jnikula committed Nov 17, 2021
  5. drm/i915/driver: rename i915_drv.c to i915_driver.c

    This is more about trimming i915_drv.h than the renamed
    i915_driver.[ch]. Split out i915_driver.[ch] out of i915_drv.h as a
    feasible thing to do.
    
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211111101304.13094-1-jani.nikula@intel.com
    jnikula committed Nov 17, 2021

Commits on Nov 16, 2021

  1. drm/i915: Disable D3Cold in s2idle and runtime pm

    s2idle and runtime pm puts the pci gfx device in D3Hot, ACPI runtime
    monitors the pci tree,if it sees complete tree as D3Hot,it transitions
    the device to D3Cold.But i915 do not have D3Cold support in S2idle or in
    runtime pm. so disabling D3cold in above flows and its FIXME.
    
    Added pci D3Cold enable/disable in s2idle and runtime suspend/resume
    flows.
    
    Signed-off-by: Tilak Tangudu <tilak.tangudu@intel.com>
    Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
    Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211115154054.3220476-1-tilak.tangudu@intel.com
    tttangud authored and rodrigovivi committed Nov 16, 2021

Commits on Nov 15, 2021

  1. drm/i915/fbc: fix the FBC kernel-doc warnings

    Fix the recently introduced 'make htmldocs' warnings:
    
    $ make htmldocs 2>&1 > /dev/null | grep i915
    ./drivers/gpu/drm/i915/display/intel_fbc.c:635: warning: Excess function parameter 'i915' description in 'intel_fbc_is_active'
    ./drivers/gpu/drm/i915/display/intel_fbc.c:1638: warning: Excess function parameter 'i915' description in 'intel_fbc_handle_fifo_underrun_irq'
    ./drivers/gpu/drm/i915/display/intel_fbc.c:635: warning: Function parameter or member 'fbc' not described in 'intel_fbc_is_active'
    ./drivers/gpu/drm/i915/display/intel_fbc.c:635: warning: Excess function parameter 'i915' description in 'intel_fbc_is_active'
    ./drivers/gpu/drm/i915/display/intel_fbc.c:1638: warning: Function parameter or member 'fbc' not described in 'intel_fbc_handle_fifo_underrun_irq'
    ./drivers/gpu/drm/i915/display/intel_fbc.c:1638: warning: Excess function parameter 'i915' description in 'intel_fbc_handle_fifo_underrun_irq'
    
    Fixes: e49a656 ("drm/i915/fbc: Start passing around intel_fbc")
    Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211115140549.27629-1-jani.nikula@intel.com
    jnikula committed Nov 15, 2021
  2. agp/intel-gtt: reduce intel-gtt dependencies more

    Don't include stuff on behalf of users if they're not strictly necessary
    for the header.
    
    Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
    Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
    Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/7bcaa1684587b9b008d3c41468fb40e63c54fbc7.1636977089.git.jani.nikula@intel.com
    jnikula committed Nov 15, 2021
  3. agp/intel-gtt: Replace kernel.h with the necessary inclusions

    When kernel.h is used in the headers it adds a lot into dependency hell,
    especially when there are circular dependencies are involved.
    
    Replace kernel.h inclusion with the list of what is really being used.
    
    Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
    Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/4d6a976459547407979f4b4c05a52785523e6bd8.1636977089.git.jani.nikula@intel.com
    andy-shev authored and jnikula committed Nov 15, 2021
  4. drm/i915: include intel-gtt.h only where needed

    Only intel_gt.c and intel_ggtt.c need the interface.
    
    Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
    Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
    Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/034f57db24d6936ac2e4e6830261d791240cdd79.1636977089.git.jani.nikula@intel.com
    jnikula committed Nov 15, 2021
  5. drm/i915/dsi/xelpd: Disable DC states in Video mode

    MIPI DSI transcoder cannot be in video mode to support any of the
    display C states.
    
    Bspec: 49195 (For DC*co DSI transcoders cannot be in video mode)
    Bspec: 49193 (Hardware does not support DC5 or DC6 with MIPI DSI enabled)
    Bspec: 49188 (desc of DSI_DCSTATE_CTL talks about cmd mode PM control
    
    v2: Align to the power domain ordering (Jani)
        Add bspec references (Imre)
    
    Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com>
    Reviewed-by: Imre Deak <imre.deak@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211019151435.20477-4-vandita.kulkarni@intel.com
    Vanditakulkarni committed Nov 15, 2021
  6. drm/i915/dsi/xelpd: Add DSI transcoder support

    Update ADL_P device info to support DSI0, DSI1
    
    v2: Re-define cpu_transcoder_mask only (Jani)
    
    Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com>
    Reviewed-by: Jani Nikula <jani.nikula@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211019151435.20477-3-vandita.kulkarni@intel.com
    Vanditakulkarni committed Nov 15, 2021
  7. drm/i915/dsi/xelpd: Fix the bit mask for wakeup GB

    v2: Fix the typo, move out the hardcoding from
        macro(Jani, Ville)
    
    Fixes: f87c46c ("drm/i915/dsi/xelpd: Add WA to program LP to HS wakeup guardband")
    Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com>
    Reviewed-by: Jani Nikula <jani.nikula@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211019151435.20477-2-vandita.kulkarni@intel.com
    Vanditakulkarni committed Nov 15, 2021

Commits on Nov 12, 2021

  1. drm/i915: make array states static const

    Don't populate the read-only array states on the stack but instead it
    static. Also makes the object code smaller.
    
    Signed-off-by: Colin Ian King <colin.king@canonical.com>
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20210915112702.12783-1-colin.king@canonical.com
    Colin Ian King authored and jnikula committed Nov 12, 2021

Commits on Nov 11, 2021

  1. drm/i915/psr: Fix PSR2 handling of multiplanar format

    When a plane with a multiplanar format is added to the state by
    drm_atomic_add_affected_planes(), only the UV plane is
    added, so a intel_atomic_get_new_plane_state() call to get the Y
    plane state can return a null pointer.
    To fix this, intel_atomic_get_plane_state() should be called and
    the return needs to be checked for errors, as it could return a EAGAIN
    as other atomic state could be holding the lock for the Y plane.
    
    Other issue with the patch being fixed is that the Y plane is not
    being committed to hardware because the corresponded plane bit is not
    set in update_planes when UV and Y planes are added to the state by
    drm_atomic_add_affected_planes().
    
    Cc: Jouni Högander <jouni.hogander@intel.com>
    Cc: Mika Kahola <mika.kahola@intel.com>
    Fixes: 3809991 ("drm/i915/display: Add initial selective fetch support for biplanar formats")
    Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
    Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211108213807.39865-1-jose.souza@intel.com
    zehortigoza committed Nov 11, 2021
  2. drm/1915/fbc: Replace plane->has_fbc with a pointer to the fbc instance

    With multiple fbc instances we need to find the right one for each
    plane. Rather than going looking for the right instance every time
    let's just replace the has_fbc boolean with a pointer that gets us
    there straight away.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-18-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  3. drm/i915/fbc: Start passing around intel_fbc

    In preparation for multiple FBC instances start passing around
    intel_fbc pointers rather than i915 pointers. And once there are
    multiple of these we can't rely on container_of() to get back to
    the i915, so we toss in a fbc->i915 pointer already.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-17-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  4. drm/i915/fbc: s/dev_priv/i915/

    Rename 'dev_priv' to 'i915' to match modern style.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-16-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  5. drm/i915: Relocate FBC_LLC_READ_CTRL

    In the case of FBC_LLC_READ_CTRL the "FBC" stands for
    frame buffer _caching_, not frame buffer compression.
    Move the register definition out from the middle of the
    frame buffer compression register definitions. Let's
    just stick it somewhere with similar looking register
    offsets.
    
    And while at it switch it over to REG_BIT().
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-15-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  6. drm/i915/fbc: Finish polishing FBC1 registers

    Switch all the FBC1 registers over to REG_BTT()/etc.
    And while at it add a few more registers/bits that
    escaped the net previously.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-14-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  7. drm/i915/fbc: Clean up all register defines

    The FBC register defines are a mess:
    - namespace changes between DPFC_, FBC_, and some platform
      specific prefix at a whim
    - ilk+ reuses most g4x bits but still has some separate bit
      defines elsewhere
    - it's not clear from the defines that the bit defines are
      shared
    
    So let's clean it up:
    - both g4x and ilk register share the same defines now
    - only defines which conflict have a _PLATFORM suffix, everyone
      else just gets comments to indicate which platforms do what
    - namespace is consistent DPFC_ now
    - SNB system agent fence registers also get a consistent namespace
    - REG_BIT() & co. for everything
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-13-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  8. drm/i915/fbc: Nuke BDW_FBC_COMP_SEG_MASK

    Just use a same mask for ivb/hsw as for bdw+. The extra bit
    in the bdw mask is mbz on ivb/hsw anyway so this is just
    pointless complexity.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-12-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  9. drm/i915/fbc: Introduce intel_fbc_set_false_color()

    Pull the direct FBC register frobbing out from the debugfs code
    into the fbc code. Also add a vfunc for this so we don't need
    extra platforms checks.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-11-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  10. drm/i915/fbc: Introduce .program_cfb() vfunc

    Eliminate the last if-ladder by pulling the CFB/LLB programming
    into a vfunc as well.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-10-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  11. drm/i915/fbc: s/gen7/ivb/

    "gen7" in display code is not really sensible. We shall call
    these things "ivb".
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-9-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  12. drm/i915/fbc: Introduce .nuke() vfunc

    Eliminate yet another if-ladder by adding .nuke() vfunc.
    
    We also rename all *_recompress() stuff to *_nuke() since
    that's the terminology the spec uses. Also "recompress"
    is a bit confusing by perhaps implying that this triggers
    an immediate recompression. Depending on the hardware that
    may definitely not be the case, and in general we don't
    specifically know when the hardware decides to compress.
    So all we do is "nuke" the current compressed framebuffer
    and leave it up to the hardware to recompress later if it
    so chooses.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-8-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  13. drm/i915/fbc: Introduce intel_fbc_funcs

    Replace the "if-ladders everywhere" approach with vfuncs.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-7-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  14. drm/i915/fbc: Extract helpers to compute FBC control register values

    Declutter the *_fbc_activate() functions by pulling all the
    control register value computations into helpers.
    
    I left the enable bit in *_fbc_activate() in the hopes of maybe
    using the helpers in the *_fbc_deactivate() paths as well instead
    of the current rmw approach. That won't be possible at least
    quite yet since we clobber the fbc->params before deactivating
    FBC so we could end up changing some of the values live, which
    given FBC's lack of/poor double buffering would likely not go
    so well.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-6-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  15. drm/i915/fbc: Introduce intel_fbc_is_compressing()

    Move the direct FBC status register reads from the debugfs code
    behind an abstract api.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-5-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  16. drm/i915/fbc: Just use params->fence_y_offset always

    No need to tiptoe around programming DPFC_FENCE_YOFF with
    params->fence_y_offset vs. 0. If the fence is not enabled
    it doesn't even matter what we program here.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-4-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  17. drm/i915/fbc: Extract {skl,glk}_fbc_program_cfb_stride()

    Declutter gen7_fbc_activate() by sucking the override
    stride programming stuff into helpers.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-3-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  18. drm/i915/fbc: Extract snb_fbc_program_fence()

    We have two identical copies of the snb+ system agent
    CPU fence programming code. Extract into a helper.
    
    Also there's no real point in insisting that we
    program 0 into DPFC_CPU_FENCE_OFFSET when the fence is
    disabled. So just always stick the computed Y offset there
    whether or not the fence is actually used or not.
    
    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211104144520.22605-2-ville.syrjala@linux.intel.com
    Acked-by: Jani Nikula <jani.nikula@intel.com>
    Reviewed-by: Mika Kahola <mika.kahola@intel.com>
    vsyrjala committed Nov 11, 2021
  19. drm/i915/dsi: transmit brightness command in HS state

    In Video Mode, if DSI transcoder is set to transmit packets
    in LP Escape mode, screen flickering would be obseved when
    brightness commands are continuously and quickly transmitted
    to a panel.
    
    The problem may be resolved by changing the mode to transmit
    packets from Low Power to HS.
    
    Cc: Ville Syrjala <ville.syrjala@linux.intel.com>
    Cc: Jani Nikula <jani.nikula@linux.intel.com>
    Cc: Vandita Kulkarni <vandita.kulkarni@intel.com>
    Cc: Lee Shawn C <shawn.c.lee@intel.com>
    Cc: Cooper Chiou <cooper.chiou@intel.com>
    Signed-off-by: William Tseng <william.tseng@intel.com>
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211110010217.26759-1-william.tseng@intel.com
    tsengwil authored and jnikula committed Nov 11, 2021
  20. drm/i915/dp: For PCON TMDS mode set only the relavant bits in config …

    …DPCD
    
    Currently we reset the whole PCON linkConfig DPCD to set the TMDS mode.
    This also resets the Source control bit and HDMI link enable bit and
    goes to autonomous mode of operation, which is seen to spoil the PCONs
    internal state.
    
    This patch avoids resetting the PCON link config register and sets only
    the source control bit, with FRL Enable bit set to 0 (TMDS mode) in the
    configuration DPCD. It then enables the HDMI Link Enable bit.
    
    v2: Removed the redundant resetting of the bits as the buffer is already
    initialized to 0. (Uma)
    Updated comments and commit message.
    
    v3: Rebase
    
    Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
    Reviewed-by: Uma Shankar <uma.shankar@intel.com>
    Signed-off-by: Uma Shankar <uma.shankar@intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20211110072947.171659-3-ankit.k.nautiyal@intel.com
    aknautiyal authored and uma-intel committed Nov 11, 2021
Older