1. 08 Feb, 2023 5 commits
    • Aurabindo Pillai's avatar
      drm/amd/display: Fix null pointer deref error on rotation · af23aee9
      Aurabindo Pillai authored
      [Why&How]
      Fix the null pointer dererefence error when rotating the monitor on
      a DCN32 variant, which causes a call trace like:
      
      [   42.469548] RIP: 0010:dcn20_program_front_end_for_ctx.cold+0x68/0x435 [amdgpu]
      [   42.477140] Code: c1 4c 01 e8 48 8b b0 f0 01 00 00 e8 b6 1c 4c f9 42 f6 84 2b a0 0a 00 00 02 74 30 4d 03 ac 24 68 04 00 00 49 8b 85 f0 01 00 00 <83> b8 50 06 00 00 02 75 18 49 8b bd e0 02 00 00 48 8b 07 48 8b 40
      [   42.496225] RSP: 0018:ffffaf744326f6a0 EFLAGS: 00010282
      [   42.501539] RAX: 0000000000000000 RBX: ffff948765180000 RCX: 0000000000000000
      [   42.508797] RDX: 0000000000000000 RSI: ffffffffbaea5329 RDI: 00000000ffffffff
      [   42.516055] RBP: ffff948701674400 R08: 0000000000000000 R09: ffffaf744326f538
      [   42.523312] R10: 0000000000000003 R11: ffff948a1d33ffe8 R12: ffff948708700000
      [   42.530569] R13: ffff94876e901180 R14: 0000000000000002 R15: 0000000000000001
      [   42.537825] FS:  00007f1c7c04a5c0(0000) GS:ffff948a05a80000(0000) knlGS:0000000000000000
      [   42.546055] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
      [   42.551898] CR2: 0000000000000650 CR3: 0000000127dd6000 CR4: 00000000003506e0
      [   42.559155] Call Trace:
      [   42.561645]  <TASK>
      [   42.563782]  commit_planes_for_stream+0x8b1/0x1410 [amdgpu 2059945d14fb66c82032430b723fcb84d8250d46]
      [   42.573298]  dc_update_planes_and_stream+0x3f9/0x9f0 [amdgpu 2059945d14fb66c82032430b723fcb84d8250d46]
      [   42.582986]  amdgpu_dm_atomic_commit_tail+0x19be/0x3270 [amdgpu 2059945d14fb66c82032430b723fcb84d8250d46]
      [   42.592944]  ? vsnprintf+0x35e/0x550
      [   42.596593]  commit_tail+0x94/0x130
      [   42.600146]  drm_atomic_helper_commit+0x112/0x140
      [   42.604931]  drm_atomic_commit+0x96/0xc0
      [   42.608922]  ? drm_plane_get_damage_clips.cold+0x1c/0x1c
      [   42.614326]  drm_mode_atomic_ioctl+0x97b/0xb90
      [   42.618848]  ? drm_atomic_set_property+0xb40/0xb40
      [   42.623633]  drm_ioctl_kernel+0xc9/0x170
      [   42.627694]  drm_ioctl+0x22f/0x410
      [   42.631157]  ? drm_atomic_set_property+0xb40/0xb40
      [   42.636031]  amdgpu_drm_ioctl+0x4a/0x80 [amdgpu 2059945d14fb66c82032430b723fcb84d8250d46]
      [   42.644537]  __x64_sys_ioctl+0x90/0xd0
      [   42.648355]  do_syscall_64+0x5b/0x80
      [   42.651992]  ? do_syscall_64+0x67/0x80
      [   42.655808]  ? exit_to_user_mode_prepare+0x1e/0x140
      [   42.660773]  entry_SYSCALL_64_after_hwframe+0x63/0xcd
      [   42.665913] RIP: 0033:0x7f1c7f31aaff
      [   42.669550] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04 25 28 00
      [   42.688635] RSP: 002b:00007fff29eca1a0 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
      [   42.696334] RAX: ffffffffffffffda RBX: 00007fff29eca250 RCX: 00007f1c7f31aaff
      [   42.703591] RDX: 00007fff29eca250 RSI: 00000000c03864bc RDI: 0000000000000009
      [   42.710848] RBP: 00000000c03864bc R08: 000000000000000e R09: 000000000000000e
      [   42.718104] R10: 0000000000000007 R11: 0000000000000246 R12: 00005643f0991d70
      [   42.725361] R13: 0000000000000009 R14: 00005643f22d0c50 R15: 00005643f0a74550
      [   42.732621]  </TASK>
      Reviewed-by: default avatarSamson Tam <Samson.Tam@amd.com>
      Acked-by: default avatarQingqing Zhuo <qingqing.zhuo@amd.com>
      Signed-off-by: default avatarAurabindo Pillai <aurabindo.pillai@amd.com>
      Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
      af23aee9
    • Wesley Chalmers's avatar
      drm/amd/display: Do not commit pipe when updating DRR · 8f0d304d
      Wesley Chalmers authored
      [WHY]
      DRR and Pipe cannot be updated on
      the same frame, or else underflow will
      occur.
      Reviewed-by: default avatarJun Lei <Jun.Lei@amd.com>
      Acked-by: default avatarQingqing Zhuo <qingqing.zhuo@amd.com>
      Signed-off-by: default avatarWesley Chalmers <Wesley.Chalmers@amd.com>
      Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
      8f0d304d
    • Wesley Chalmers's avatar
      drm/amd/display: Do not set DRR on pipe commit · 4f1b5e73
      Wesley Chalmers authored
      [WHY]
      Writing to DRR registers such as OTG_V_TOTAL_MIN on the same frame as a
      pipe commit can cause underflow.
      
      [HOW]
      Defer all DPP adjustment requests till optimized_required is false.
      Reviewed-by: default avatarJun Lei <Jun.Lei@amd.com>
      Acked-by: default avatarQingqing Zhuo <qingqing.zhuo@amd.com>
      Signed-off-by: default avatarWesley Chalmers <Wesley.Chalmers@amd.com>
      Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
      4f1b5e73
    • Hamza Mahfooz's avatar
      drm/amd/display: fix read errors pertaining to dp_lttpr_status_show() · 642f1b40
      Hamza Mahfooz authored
      Currently, it is likely that we will read the relevant LTTPR caps after
      link training has completed (which can cause garbage data to be read),
      however according to the DP 2.0 spec that should be done before link
      training has commenced. So, instead of reading the registers on demand,
      use the values provided to us by DC.
      Reviewed-by: default avatarAurabindo Pillai <aurabindo.pillai@amd.com>
      Signed-off-by: default avatarHamza Mahfooz <hamza.mahfooz@amd.com>
      Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
      642f1b40
    • Kenneth Feng's avatar
      drm/amd/amdgpu: enable athub cg 11.0.3 · ad1cebb6
      Kenneth Feng authored
      enable athub cg on gc 11.0.3
      Signed-off-by: default avatarKenneth Feng <kenneth.feng@amd.com>
      Reviewed-by: default avatarLikun Gao <Likun.Gao@amd.com>
      Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
      ad1cebb6
  2. 03 Feb, 2023 12 commits
  3. 31 Jan, 2023 23 commits