[PATCH 4/9] drm/amdgpu/sdma6: update mqd init for UQ

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower address mask (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/sdma_v6_0.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v6_0.c

Re: [PATCH] drm/amdgpu: Use MEC FW with SJT on gfx_v9_4_3

2024-11-21 Thread Lazar, Lijo
On 11/19/2024 9:07 PM, Yuan Feng wrote: > On SRIOV, guest driver and host driver might deploy different versions > of MEC firmware binaries that lead to potential compability issues cause > system hang. To solve this, host and guest deploy MEC fw with two level jump > table. > > Signed-off-by:

[PATCH 7/9] drm/amdgpu/uq: make MES UQ setup generic

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Now that all of the IP specific code has been moved into the IP specific functions, we can make this code generic. V2: Fixed build errors and porting logics (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/Makefile

[PATCH 9/9] drm/amdgpu: enable userqueue secure semaphore for GFX 12

2024-11-21 Thread Shashank Sharma
From: Arunpravin Paneer Selvam - Add a field in struct amdgpu_mqd_prop for userqueue secure sem fence address since now we have a generic file for mes_userqueue.c - Add secure sem fence address mqd support to gfx12 into their corresponding init functions. - Enable secure semaphore IRQ handl

[PATCH 6/9] drm/amdgpu/uq: remove gfx11 specifics from UQ setup

2024-11-21 Thread Shashank Sharma
From: Alex Deucher This can all be handled by in the IP specific mpd init code. V2: Removed setting of gds_va, which was removed during UAPI review (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- .../gpu/drm/amd/amdgpu/mes_v11_0_userqueue.c | 83 ---

[PATCH 5/9] drm/amdgpu/sdma7: update mqd init for UQ

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower offset mask (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/sdma_v7_0.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v7_0.c

[PATCH 4/9] drm/amdgpu/sdma6: update mqd init for UQ

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower address mask (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/sdma_v6_0.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v6_0.c

[PATCH 3/9] drm/amdgpu/gfx12: update mqd init for UQ

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower address mask (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/gfx_v12_0.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v12_0.c

[PATCH 2/9] drm/amdgpu/gfx11: update mqd init for UQ

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower address (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c

[PATCH 5/9] drm/amdgpu/sdma7: update mqd init for UQ

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower offset mask (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/sdma_v7_0.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v7_0.c

[PATCH 6/9] drm/amdgpu/uq: remove gfx11 specifics from UQ setup

2024-11-21 Thread Shashank Sharma
From: Alex Deucher This can all be handled by in the IP specific mpd init code. V2: Removed setting of gds_va, which was removed during UAPI review (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- .../gpu/drm/amd/amdgpu/mes_v11_0_userqueue.c | 83 ---

[PATCH 1/9] drm/amdgpu: add some additional members to amdgpu_mqd_prop

2024-11-21 Thread Shashank Sharma
From: Alex Deucher These are needed for user queues. Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h index fa30c78f830e..2c889cc2a59e 100644 ---

[PATCH 9/9] drm/amdgpu: enable userqueue secure semaphore for GFX 12

2024-11-21 Thread Shashank Sharma
From: Arunpravin Paneer Selvam - Add a field in struct amdgpu_mqd_prop for userqueue secure sem fence address since now we have a generic file for mes_userqueue.c - Add secure sem fence address mqd support to gfx12 into their corresponding init functions. - Enable secure semaphore IRQ handl

[PATCH 0/9] AMDGPU Usermode queue support for Navi4X

2024-11-21 Thread Shashank Sharma
This patch series adds code to support Usermode queue on Navi 4X. Most of the base usermode queue code (for Navi 3X) is already merged into amd-staging-drm-next, this patch series does some clean-up to make this code generic and reuse the existing framework for Navi 4X as well. Alex Deucher (7):

Re: [PATCH] drm/amdkfd: Have kfd driver use same PASID values from graphic driver

2024-11-21 Thread Chen, Xiaogang
On 11/21/2024 9:22 AM, Felix Kuehling wrote: On 2024-11-20 22:58, Chen, Xiaogang wrote:   @@ -1822,15 +1804,20 @@ struct kfd_process *kfd_lookup_process_by_pasid(u32  pasid)   {   struct kfd_process *p, *ret_p = NULL;   unsigned int temp; +int i;     int idx = srcu_read_l

Re: [PATCH 5/9] drm/amdgpu/sdma7: update mqd init for UQ

2024-11-21 Thread Sharma, Shashank
On 21/11/2024 16:19, Christian König wrote: Am 21.11.24 um 14:10 schrieb Shashank Sharma: From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower offset mask (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma ---   drivers/gpu/drm/amd/amdgpu/sdma_v7_0.c

Re: [PATCH v1 1/2] drm/amdgpu: fix the variable name in comments

2024-11-21 Thread Christian König
Am 21.11.24 um 18:37 schrieb Sunil Khatri: Fix the variable name in comments to clean up the warning in amdgpu_bo_create_isp_user. warning: Function parameter or struct member 'dbuf' not described in 'amdgpu_bo_create_isp_user' warning: Excess function parameter 'dma_buf' description in 'amdgp

Re: [PATCH v1 1/2] drm/amdgpu: fix the variable name in comments

2024-11-21 Thread Khatri, Sunil
On 11/22/2024 1:20 PM, Christian König wrote: Am 21.11.24 um 18:37 schrieb Sunil Khatri: Fix the variable name in comments to clean up the warning in amdgpu_bo_create_isp_user. warning: Function parameter or struct member 'dbuf' not described in 'amdgpu_bo_create_isp_user' warning: Excess fu

Re: [PATCH v3] drm/amdgpu: Check fence emitted count to identify bad jobs

2024-11-21 Thread Fan, Shikang
[AMD Official Use Only - AMD Internal Distribution Only] Ok, thank you! Regards, Shikang. From: Koenig, Christian Sent: Thursday, November 21, 2024 4:12 PM To: Fan, Shikang ; amd-gfx@lists.freedesktop.org Cc: Deng, Emily Subject: Re: [PATCH v3] drm/amdgpu: Ch

Re: [PATCH] drm/amdgpu: fix usage slab after free

2024-11-21 Thread Christian König
Am 14.11.24 um 02:46 schrieb vitaly.pros...@amd.com: From: Vitaly Prosyak [ +0.21] BUG: KASAN: slab-use-after-free in drm_sched_entity_flush+0x6cb/0x7a0 [gpu_sched] [ +0.27] Read of size 8 at addr 8881b8605f88 by task amd_pci_unplug/2147 [ +0.23] CPU: 6 PID: 2147 Comm: amd

Re: [PATCH 05/15] drm/amdgpu/vcn2.5: split code along instances

2024-11-21 Thread Lazar, Lijo
On 11/14/2024 3:14 AM, Alex Deucher wrote: > Split the code on a per instance basis. This will allow > us to use the per instance functions in the future to > handle more things per instance. > > Signed-off-by: Alex Deucher > --- > drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c | 841 +---

Re: [PATCH v3] drm/amdgpu: Check fence emitted count to identify bad jobs

2024-11-21 Thread Christian König
Yeah, just wanted to point out the unused variable as well. With that fixed the patch is Reviewed-by: Christian König Regards, Christian. Am 21.11.24 um 07:49 schrieb Fan, Shikang: [AMD Official Use Only - AMD Internal Distribution Only] I forgot to delete the unused counter "j" from the

[PATCH 8/9] drm/amdgpu: enable userqueue support for GFX12

2024-11-21 Thread Shashank Sharma
From: Somalapuram Amaranath This patch enables Usermode queue support across GFX, Compute and SDMA IPs on GFX12/SDMA7. It typically reuses Navi3X userqueue IP functions to create and destroy MQDs. v2: rebase on proposed changes (Alex) Cc: Alex Deucher Cc: Christian Koenig Cc: Arvind Yadav Si

Re: [PATCH] drm/amdkfd: Have kfd driver use same PASID values from graphic driver

2024-11-21 Thread Christian König
Am 21.11.24 um 16:22 schrieb Felix Kuehling: On 2024-11-20 22:58, Chen, Xiaogang wrote:   @@ -1822,15 +1804,20 @@ struct kfd_process *kfd_lookup_process_by_pasid(u32  pasid)   {   struct kfd_process *p, *ret_p = NULL;   unsigned int temp; +int i;     int idx = srcu_read_lock

Re: [PATCH 5/9] drm/amdgpu/sdma7: update mqd init for UQ

2024-11-21 Thread Christian König
Am 21.11.24 um 14:10 schrieb Shashank Sharma: From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower offset mask (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/sdma_v7_0.c | 3 +++ 1 file changed, 3 insertions(+) dif

Re: [PATCH] drm/amdkfd: Have kfd driver use same PASID values from graphic driver

2024-11-21 Thread Felix Kuehling
On 2024-11-20 22:58, Chen, Xiaogang wrote: >>>   @@ -1822,15 +1804,20 @@ struct kfd_process  >>> *kfd_lookup_process_by_pasid(u32 pasid) >>>   { >>>   struct kfd_process *p, *ret_p = NULL; >>>   unsigned int temp; >>> +int i; >>>     int idx = srcu_read_lock(&kfd_processes_srcu);

Re: [PATCH v7 0/4] drm: Minimum backlight overrides and implementation for amdgpu

2024-11-21 Thread Mario Limonciello
On 11/11/2024 12:09, Thomas Weißschuh wrote: The value of "min_input_signal" returned from ATIF on a Framework AMD 13 is "12". This leads to a fairly bright minimum display backlight. Introduce a quirk to override "min_input_signal" to "0" which leads to a much lower minimum brightness, which is

Re: [PATCH] drm/amd/pm: fix and simplify workload handling

2024-11-21 Thread Alex Deucher
On Wed, Nov 20, 2024 at 11:57 PM Lazar, Lijo wrote: > > > > On 11/20/2024 11:58 PM, Alex Deucher wrote: > > smu->workload_mask is IP specific and should not be messed with in > > the common code. The mask bits vary across SMU versions. > > > > Move all handling of smu->workload_mask in to the back

Re: [PATCH] drm/amd/pm: fix and simplify workload handling

2024-11-21 Thread Lazar, Lijo
On 11/21/2024 7:58 PM, Alex Deucher wrote: > On Wed, Nov 20, 2024 at 11:57 PM Lazar, Lijo wrote: >> >> >> >> On 11/20/2024 11:58 PM, Alex Deucher wrote: >>> smu->workload_mask is IP specific and should not be messed with in >>> the common code. The mask bits vary across SMU versions. >>> >>> Mo

[PATCH 0/9] AMDGPU Usermode queue support for GFX12

2024-11-21 Thread Shashank Sharma
This patch series adds code to support Usermode queue on GFX12. Most of the base usermode queue code (for Navi 3X) is already merged into amd-staging-drm-next, this patch series does some clean-up to make this code generic and reuse the existing framework for GFX12 as well. Alex Deucher (7): dr

[PATCH 2/9] drm/amdgpu/gfx11: update mqd init for UQ

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower address (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c

[PATCH 8/9] drm/amdgpu: enable userqueue support for GFX12

2024-11-21 Thread Shashank Sharma
From: Somalapuram Amaranath This patch enables Usermode queue support across GFX, Compute and SDMA IPs on GFX12/SDMA7. It typically reuses Navi3X userqueue IP functions to create and destroy MQDs. v2: rebase on proposed changes (Alex) Cc: Alex Deucher Cc: Christian Koenig Cc: Arvind Yadav Si

[PATCH 3/9] drm/amdgpu/gfx12: update mqd init for UQ

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Set the addresses for the UQ metadata. V2: Fix lower address mask (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/gfx_v12_0.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v12_0.c

[PATCH 1/9] drm/amdgpu: add some additional members to amdgpu_mqd_prop

2024-11-21 Thread Shashank Sharma
From: Alex Deucher These are needed for user queues. Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h index fa30c78f830e..2c889cc2a59e 100644 ---

Re: [PATCH] drm/amd/pm: Fix an error handling path in vega10_enable_se_edc_force_stall_config()

2024-11-21 Thread Alex Deucher
Applied. Thanks! Alex On Tue, Nov 19, 2024 at 4:02 PM Christophe JAILLET wrote: > > In case of error after a amdgpu_gfx_rlc_enter_safe_mode() call, it is not > balanced by a corresponding amdgpu_gfx_rlc_exit_safe_mode() call. > > Add the missing call. > > Fixes: 9b7b8154cdb8 ("drm/amd/powerplay

[PATCH 7/9] drm/amdgpu/uq: make MES UQ setup generic

2024-11-21 Thread Shashank Sharma
From: Alex Deucher Now that all of the IP specific code has been moved into the IP specific functions, we can make this code generic. V2: Fixed build errors and porting logics (Shashank) Signed-off-by: Alex Deucher Signed-off-by: Shashank Sharma --- drivers/gpu/drm/amd/amdgpu/Makefile

Re: Vanilla Kernel Build of Recent 6.12.0 Kernel Test Results on M18r1 AMD Alienware

2024-11-21 Thread Alex Hung
Hi Gregory, Please report a bug on https://gitlab.freedesktop.org/drm/amd/, and it will ask essential information for debugging when creating bugs. Thanks. On 11/18/24 21:25, Gregory Carter wrote: Nov 18 18:37:33.973691 discernment.aesgi.com discernment.aesgi.com> kernel: warning: `QSampleCach

[PATCH v1 2/8] drm/amdgpu: Fix comment for vcn_v5_0_0_set_clockgating_state

2024-11-21 Thread Sunil Khatri
add vcn_v4_0_set_clockgating_state ip_block comment and clean up the argument "handle" comment. This fixes the warning: warning: Function parameter or struct member 'ip_block' not described in 'vcn_v5_0_0_set_clockgating_state' warning: Excess function parameter 'handle' description in 'vcn_v5_0

[PATCH v1 3/8] drm/amdgpu: Fix comment for vcn_v4_0_3_set_powergating_state

2024-11-21 Thread Sunil Khatri
add vcn_v4_0_3_set_powergating_state ip_block comment and clean up the argument "handle" comment. This fixes the warning: warning: Function parameter or struct member 'ip_block' not described in 'vcn_v4_0_3_set_powergating_state' warning: Excess function parameter 'handle' description in 'vcn_v4

[PATCH v1 0/8] Fix comments warnings for vcn clock/power gating

2024-11-21 Thread Sunil Khatri
*** BLURB HERE *** Sunil Khatri (8): drm/amdgpu: Fix comment for vcn_v4_0_set_clockgating_state drm/amdgpu: Fix comment for vcn_v5_0_0_set_clockgating_state drm/amdgpu: Fix comment for vcn_v4_0_3_set_powergating_state drm/amdgpu: Fix comment for vcn_v4_0_5_set_clockgating_state drm/amdgp

[PATCH v1 8/8] drm/amdgpu: Fix comment for vcn_v4_0_3_set_clockgating_state

2024-11-21 Thread Sunil Khatri
add vcn_v4_0_3_set_clockgating_state ip_block comment and clean up the argument "handle" comment. This fixes the warning: warning: Function parameter or struct member 'ip_block' not described in 'vcn_v4_0_3_set_clockgating_state' warning: Excess function parameter 'handle' description in 'vcn_v4

[PATCH v1 7/8] drm/amdgpu: Fix comment for vcn_v4_0_set_powergating_state

2024-11-21 Thread Sunil Khatri
add vcn_v4_0_set_powergating_state ip_block comment and clean up the argument "handle" comment. This fixes the warning: warning: Function parameter or struct member 'ip_block' not described in 'vcn_v4_0_set_powergating_state' warning: Excess function parameter 'handle' description in 'vcn_v4_0_s

[PATCH v1 4/8] drm/amdgpu: Fix comment for vcn_v4_0_5_set_clockgating_state

2024-11-21 Thread Sunil Khatri
add vcn_v4_0_5_set_clockgating_state ip_block comment and clean up the argument "handle" comment. comment. This fixes the warning: warning: Function parameter or struct member 'ip_block' not described in 'vcn_v4_0_5_set_clockgating_state' warning: Excess function parameter 'handle' description in

[PATCH v1 5/8] drm/amdgpu: Fix comment for vcn_v4_0_5_set_powergating_state

2024-11-21 Thread Sunil Khatri
add vcn_v4_0_5_set_powergating_state ip_block comment and clean up the argument "handle" comment. This fixes the warning: warning: Function parameter or struct member 'ip_block' not described in 'vcn_v4_0_5_set_powergating_state' warning: Excess function parameter 'handle' description in 'vcn_v4

Re: [PATCH] drm/amd: Add Suspend/Hibernate notification callback support

2024-11-21 Thread Mario Limonciello
On 11/18/2024 14:03, Mario Limonciello wrote: As part of the suspend sequence VRAM needs to be evicted on dGPUs. In order to make suspend/resume more reliable we moved this into the pmops prepare() callback so that the suspend sequence would fail but the system could remain operational under high

Re: [PATCH 9/9] drm/amdgpu: enable userqueue secure semaphore for GFX 12

2024-11-21 Thread Alex Deucher
On Thu, Nov 21, 2024 at 8:33 AM Shashank Sharma wrote: > > From: Arunpravin Paneer Selvam > > - Add a field in struct amdgpu_mqd_prop for userqueue > secure sem fence address since now we have a generic > file for mes_userqueue.c > - Add secure sem fence address mqd support to gfx12 into >

[PATCH v1 2/2] drm/amdgpu: add "restore" missing variable comment

2024-11-21 Thread Sunil Khatri
add "restore" missing variable in the fucntions sdma_v4_4_2_page_resume and sdma_v4_4_2_inst_start. This fixes the warning: warning: Function parameter or struct member 'restore' not described in 'sdma_v4_4_2_page_resume' warning: Function parameter or struct member 'restore' not described in 's

[PATCH v1 1/2] drm/amdgpu: fix the variable name in comments

2024-11-21 Thread Sunil Khatri
Fix the variable name in comments to clean up the warning in amdgpu_bo_create_isp_user. warning: Function parameter or struct member 'dbuf' not described in 'amdgpu_bo_create_isp_user' warning: Excess function parameter 'dma_buf' description in 'amdgpu_bo_create_isp_user' Signed-off-by: Sunil K

Re: [PATCH v2] drm/amdkfd: Differentiate logging message for driver oversubscription

2024-11-21 Thread Chen, Xiaogang
On 11/20/2024 5:55 PM, Felix Kuehling wrote: On 2024-11-12 12:25, Xiaogang.Chen wrote: From: Xiaogang Chen To have user better understand the causes triggering runlist oversubscription. No function change. Signed-off-by: Xiaogang chenxiaogang.c...@amd.com --- .../gpu/drm/amd/amdkfd/kfd_pac

[PATCH v1 6/8] drm/amdgpu: Fix comment for vcn_v5_0_0_set_powergating_state

2024-11-21 Thread Sunil Khatri
add vcn_v5_0_0_set_powergating_state ip_block comment and clean up the argument "handle" comment. This fixes the warning: warning: Function parameter or struct member 'ip_block' not described in 'vcn_v5_0_0_set_powergating_state' warning: Excess function parameter 'handle' description in 'vcn_v5

[PATCH] ammdgpu fix for gfx1103 queue evict/restore crash

2024-11-21 Thread Mika Laitio
AMD gfx1103/M780 iGPU will crash eventually while performing pytorch ML/AI operations on rocm sdk stack. Crash causes linux desktop randomly either to recover after killing the app, freeze the desktop or reset back to login screen. Easy way to trigger the problem is to build the the ML/AI support

[PATCH v1 1/8] drm/amdgpu: Fix comment for vcn_v4_0_set_clockgating_state

2024-11-21 Thread Sunil Khatri
add vcn_v4_0_set_clockgating_state ip_block comment and clean up the argument "handle" comment. This fixes the warning: warning: Function parameter or struct member 'ip_block' not described in 'vcn_v4_0_set_clockgating_state' warning: Excess function parameter 'handle' description in 'vcn_v4_0_s

RE: [PATCH v4 0/2] Refactor MST DSC Determination Policy

2024-11-21 Thread Zuo, Jerry
[AMD Official Use Only - AMD Internal Distribution Only] Hi Lyude, Jani, Imre, Simona: Please kindly review the patch series at your convenient time. Thanks. Regards, Jerry > -Original Message- > From: Fangzhi Zuo > Sent: Friday, November 8, 2024 12:42 PM > To: dri-de...@lists.fre

Re: [PATCH 5/9] drm/amdgpu/sdma7: update mqd init for UQ

2024-11-21 Thread Alex Deucher
On Thu, Nov 21, 2024 at 8:42 AM Shashank Sharma wrote: > > From: Alex Deucher > > Set the addresses for the UQ metadata. > > V2: Fix lower offset mask (Shashank) > > Signed-off-by: Alex Deucher > Signed-off-by: Shashank Sharma > --- > drivers/gpu/drm/amd/amdgpu/sdma_v7_0.c | 3 +++ > 1 file ch

Re: [PATCH 4/9] drm/amdgpu/sdma6: update mqd init for UQ

2024-11-21 Thread Alex Deucher
On Thu, Nov 21, 2024 at 8:42 AM Shashank Sharma wrote: > > From: Alex Deucher > > Set the addresses for the UQ metadata. > > V2: Fix lower address mask (Shashank) > > Signed-off-by: Alex Deucher > Signed-off-by: Shashank Sharma > --- > drivers/gpu/drm/amd/amdgpu/sdma_v6_0.c | 3 +++ > 1 file c