RE: [PATCH] Revert "drm/amdkfd: fix gfx_target_version for certain 11.0.3 devices"

2024-05-26 Thread Xu, Feifei
[AMD Official Use Only - AMD Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: Alex Deucher Sent: Friday, May 24, 2024 2:44 AM To: Deucher, Alexander Cc: amd-gfx@lists.freedesktop.org; Xu, Feifei Subject: Re: [PATCH] Revert "drm/amdkfd

RE: [PATCH] Documentation: add a page on amdgpu debugging

2024-03-26 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Alex Deucher Sent: Saturday, March 16, 2024 12:45 AM To: Deucher, Alexander Cc: amd-gfx@lists.freedesktop.org Subject: Re: [PATCH] Documentation: add a page on amdgpu debugging On

RE: [PATCH 2/2] drm/amdgpu/umsch: reinitialize write pointer in hw init

2024-03-25 Thread Xu, Feifei
[AMD Official Use Only - General] Series is Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Lang Yu Sent: Monday, March 25, 2024 1:37 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Koenig, Christian ; Gopalakrishnan, Veerabadhran (Veera) ; Yu, Lang

RE: [PATCH] drm/amdgpu: update documentation on new chips

2024-01-25 Thread Xu, Feifei
[AMD Official Use Only - General] Acked-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Alex Deucher Sent: Friday, January 19, 2024 3:51 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu: update documentation on new chips These have

RE: [PATCH 2/2] drm/amdgpu/gfx11: set UNORD_DISPATCH in compute MQDs

2024-01-22 Thread Xu, Feifei
[AMD Official Use Only - General] Series is Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Alex Deucher Sent: Tuesday, January 23, 2024 3:47 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; sta...@vger.kernel.org Subject: [PATCH 2/2] drm/amdgpu/gfx11:

RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-11 Thread Xu, Feifei
: amdgpu: WALKER_ERROR: 0x0 [ 72.743173] amdgpu :03:00.0: amdgpu: PERMISSION_FAULTS: 0x2 [ 72.743181] amdgpu :03:00.0: amdgpu: MAPPING_ERROR: 0x1 [ 72.743189] amdgpu :03:00.0: amdgpu: RW: 0x0 Thanks, Feifei -Original Message- From: Xu, Feifei Sent: Tuesday

RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-10 Thread Xu, Feifei
To: Xu, Feifei ; Zhang, Hawking ; Wang, Yang(Kevin) ; amd-gfx@lists.freedesktop.org Subject: Re: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb Hi Feifei, yeah, that is correct behavior. The GMC callback should *not* get called during resume in a reset, because the reset needs to take

RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-10 Thread Xu, Feifei
ush_gpu_tlb(adev, vmid, vmhub, flush_type); up_read(>reset_domain->sem); //unlock return; } Thanks, Feifei -----Original Message- From: Xu, Feifei Sent: Tuesday, October 10, 2023 5:44 PM To: Christian König ; Wang, Yang(Kevin)

RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-10 Thread Xu, Feifei
t of all the patch is broken because you only handle the locking, but >> not the unlocking part. For the unlocking part, realized that you and Kevin are correct. Lock/unlock not paried. Thanks, Feifei -Original Message- From: Christian König Sent: Monday, October 9, 2023 4:52 PM To:

Recall: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-10 Thread Xu, Feifei
Xu, Feifei would like to recall the message, "[PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb".

RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-10 Thread Xu, Feifei
lock not paried. Thanks, Feifei -Original Message- From: Christian König Sent: Monday, October 9, 2023 4:52 PM To: Xu, Feifei ; Wang, Yang(Kevin) ; amd-gfx@lists.freedesktop.org Cc: Koenig, Christian ; Zhang, Hawking Subject: Re: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb Am 09.1

RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-10 Thread Xu, Feifei
in amdgpu_gmc_flush_gpu_tlb() : if (!down_read_trylock(>reset_domain->sem) && //--> true in gfx11 +!adev->gfx.is_poweron) //--> (!adev->gfx.is_poweron) = false in gfx11, and the whole if statement will be false, not return ahead. Thanks, Feifei -Original Message- From: Xu, Fei

RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-09 Thread Xu, Feifei
From: Zhang, Hawking Sent: Monday, October 9, 2023 4:58 PM To: Xu, Feifei ; Wang, Yang(Kevin) ; amd-gfx@lists.freedesktop.org Cc: Koenig, Christian Subject: RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb [AMD Official Use Only - General] adev->gfx.is_poweron check should alrea

RE: [PATCH] drm/amdgpu:Check gfx poweron when skip flush_gpu_tlb

2023-10-08 Thread Xu, Feifei
And after merging code into one line may result in the lock not being >> released if the lock can be acquired success. If !adev->gfx.is_poweron is true, the reset_domin->sem will not be down_read_trylock, thus could avoid this deadlock. Thanks, Feifei -Original Message----- From: Wang,

RE: [PATCH v2 4/4] drm/amd: Enable seamless boot by default on newer ASICs

2023-09-25 Thread Xu, Feifei
[AMD Official Use Only - General] Hi Mario, Navi32 which DCE3.2.0 not support this. This patch will cause modprobe fail on NV32. [ +0.000126] [drm] DSC precompute is not needed. [ +19.026503] amdgpu :03:00.0: amdgpu: SMU: I'm not done with your previous command: SMN_C2PMSG_66:0x002D

RE: [PATCH] drm/amd/pm: add unique_id for gc 11.0.3

2023-08-10 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Kenneth Feng Sent: Friday, August 11, 2023 12:28 PM To: amd-gfx@lists.freedesktop.org Cc: Feng, Kenneth Subject: [PATCH] drm/amd/pm: add unique_id for gc 11.0.3 drm/amd/pm: add

RE: [PATCH] drm/amd/pm: workaround for compute workload type on some skus

2023-06-08 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Kenneth Feng Sent: Friday, June 9, 2023 10:56 AM To: amd-gfx@lists.freedesktop.org Cc: Quan, Evan ; Feng, Kenneth Subject: [PATCH] drm/amd/pm: workaround for compute workload type on

RE: [PATCH] drm/amdgpu/mmsch: Correct the definition for mmsch init header

2023-06-06 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Emily Deng Sent: Tuesday, June 6, 2023 2:52 PM To: amd-gfx@lists.freedesktop.org Cc: Deng, Emily Subject: [PATCH] drm/amdgpu/mmsch: Correct the definition for mmsch init header For

RE: [PATCH] drm/amdgpu: fix Null pointer dereference error in amdgpu_device_recover_vram

2023-05-30 Thread Xu, Feifei
[AMD Official Use Only - General] Acked-by: Feifei Xu -Original Message- From: Horatio Zhang Sent: Tuesday, May 30, 2023 2:53 AM To: amd-gfx@lists.freedesktop.org Cc: Xu, Feifei ; Yao, Longlong ; Zhang, Horatio ; Pan, Xinhui Subject: [PATCH] drm/amdgpu: fix Null pointer dereference

RE: [PATCH 1/2] drm/amdgpu: fix vga_set_state NULL pointer issue

2023-05-21 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Gao, Likun Sent: Friday, May 19, 2023 7:17 PM To: amd-gfx list Cc: Zhang, Hawking Subject: FW: [PATCH 1/2] drm/amdgpu: fix vga_set_state NULL pointer issue [AMD Official Use Only

RE: [PATCH v3] drm/amdgpu: drop gfx_v11_0_cp_ecc_error_irq_funcs

2023-04-26 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: Horatio Zhang Sent: Wednesday, April 26, 2023 4:41 PM To: Zhang, Hawking ; Koenig, Christian ; Chen, Guchun ; amd-gfx@lists.freedesktop.org Cc: Xu, Feifei ; Yao, Longlong ; Zhang, Horatio ; Zhang

RE: [PATCH 2/2] drm/amdgpu: Use the default reset when loading amdgpu driver

2023-04-24 Thread Xu, Feifei
. Here's an example, modprobe amdgpu modprobe -r amdgpu modprobe amdgpu reset_method=3 //The real reset method should be mode1 reset, since it is initialization. Regards, Lyndon > -Original Message- > From: Xu, Feifei > Sent: Monday, April 24, 2023 2:00 PM > To: Li, Lynd

RE: [PATCH 1/2] drm/amdgpu: Fix mode2 reset for sienna cichlid

2023-04-24 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: lyndonli Sent: Monday, April 24, 2023 9:58 AM To: amd-gfx@lists.freedesktop.org Cc: Liu, Shaoyun ; Zhao, Victor ; Feng, Kenneth ; Xu, Feifei ; Li, Yunxiang (Teddy) ; Li, Lyndon Subject: [PATCH 1/2

RE: [PATCH 2/2] drm/amdgpu: Use the default reset when loading amdgpu driver

2023-04-24 Thread Xu, Feifei
corrected. And adding comment before the code " r = amdgpu_asic_reset(adev);" Reviewed-by: Feifei Xu -Original Message- From: lyndonli Sent: Monday, April 24, 2023 9:58 AM To: amd-gfx@lists.freedesktop.org Cc: Liu, Shaoyun ; Zhao, Victor ; Feng, Kenneth ; Xu, Feifei ; Li, Yunxi

RE: [PATCH] drm/amdgpu: extend the default timeout for kernel compute queues

2023-04-21 Thread Xu, Feifei
(Vulkan stress test), if we shorten the 120s to a reasonable range like 100s, it can also fix the software hang. -Original Message- From: Alex Deucher Sent: Thursday, April 20, 2023 8:57 PM To: Xu, Feifei Cc: amd-gfx@lists.freedesktop.org; Zhang, Hawking Subject: Re: [PATCH] drm

RE: [PATCH] drm/amdgpu: Fix sdma v4 sw fini error

2023-04-06 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: lyndonli Sent: Thursday, April 6, 2023 4:12 PM To: amd-gfx@lists.freedesktop.org Cc: Xu, Feifei ; Gao, Likun ; Zhang, Hawking ; Li, Lyndon Subject: [PATCH] drm/amdgpu: Fix sdma v4 sw fini error Fix

RE: [PATCH 2/2] drm/amd/pm: no pptable resetup on runpm exiting

2023-02-21 Thread Xu, Feifei
Series is Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Tuesday, February 21, 2023 3:51 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Quan, Evan Subject: [PATCH 2/2] drm/amd/pm: no pptable resetup on runpm exiting It is

RE: [PATCH] drm/amd/amdgpu: fix warining during suspend

2023-02-13 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Jack Xiao Sent: Monday, February 13, 2023 6:52 PM To: amd-gfx@lists.freedesktop.org Cc: Xiao, Jack ; jfale...@redhat.com Subject: [PATCH] drm/amd/amdgpu: fix warining during suspend Freeing memory was warned during

RE: [PATCH] drm/amd/pm: add SMU 13.0.7 missing GetPptLimit message mapping

2023-02-06 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Friday, February 3, 2023 5:39 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Quan, Evan Subject: [PATCH] drm/amd/pm: add SMU 13.0.7 missing

RE: [PATCH] drm/amdgpu: enable HDP SD for gfx 11.0.3

2023-01-28 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Saturday, January 28, 2023 4:06 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Quan, Evan Subject: [PATCH] drm/amdgpu: enable HDP SD for gfx

RE: [PATCH] drm/amd/pm: add missing AllowIHInterrupt message mapping for SMU13.0.0

2023-01-19 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Friday, January 20, 2023 11:28 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Quan, Evan Subject: [PATCH] drm/amd/pm: add missing AllowIHInterrupt

RE: [PATCH] drm/amdgpu: skip vram reserve on firmware_v2_2 for bare-metal

2022-11-23 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: Gao, Likun Sent: Wednesday, November 23, 2022 6:01 PM To: amd-gfx list Cc: Zhang, Hawking ; Xu, Feifei Subject: [PATCH] drm/amdgpu: skip vram reserve on firmware_v2_2 for bare-metal [AMD Official

RE: [PATCH 0/4] support query rlcv/rlcp firmware version

2022-09-16 Thread Xu, Feifei
[AMD Official Use Only - General] Series is Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Hawking Zhang Sent: Friday, September 16, 2022 1:00 AM To: amd-gfx@lists.freedesktop.org; Gao, Likun ; Deucher, Alexander Cc: Zhang, Hawking Subject: [PATCH 0/4]

RE: [PATCH] drm/amd/pm: update SMU 13.0.0 driver_if header

2022-08-24 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Tuesday, August 23, 2022 9:23 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Quan, Evan ; Zhang, Hawking Subject: [PATCH] drm/amd/pm: update SMU

RE: [PATCH] drm/amd/pm: skip pptable override for smu_v13_0_7

2022-08-09 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Kenneth Feng Sent: Tuesday, August 9, 2022 3:22 PM To: amd-gfx@lists.freedesktop.org Cc: Feng, Kenneth Subject: [PATCH] drm/amd/pm: skip pptable override for smu_v13_0_7 skip

RE: [PATCH] drm/amd/pm: add 3715 softpptable support for SMU13.0.0

2022-08-08 Thread Xu, Feifei
[AMD Official Use Only - General] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Tuesday, August 9, 2022 9:31 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Quan, Evan ; Zhang, Hawking Subject: [PATCH] drm/amd/pm: add 3715

RE: [PATCH] drm/amdgpu: Set ttm caching flags during bo allocation

2021-06-29 Thread Xu, Feifei
[AMD Official Use Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Oak Zeng Sent: Tuesday, June 29, 2021 7:16 AM To: amd-gfx@lists.freedesktop.org Cc: Kuehling, Felix ; Zhu, James ; Koenig, Christian ; Zeng, Oak Subject: [PATCH] drm/amdgpu: Set ttm caching

RE: [PATCH] drm/amd/pm: fix return value in aldebaran_set_mp1_state()

2021-05-21 Thread Xu, Feifei
and others are the same in both driver and PMFW - which should skip and return 0. So I am ok with the simplify code logic. Will take your suggestion which return 0 for default. Thanks. Thanks, Feifei -Original Message- From: Lazar, Lijo Sent: Thursday, May 20, 2021 7:19 PM To: Xu

RE: [PATCH Review 1/1] drm/amdgpu: force enable gfx ras for vega20 ws

2021-04-30 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Maybe the title can be more specific like: drm/amdgpu: force enable gfx ras in hw_support for vega20 ws With above modified. Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Stanley.Yang Sent: Friday, April 30,

RE: [PATCH 1/2] drm/amdgpu: Correct sdma 4.x irq.num_types

2021-04-25 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Please ignore this one. I made mistake on the instance 8. Will re-send the patch. Thanks, Feifei -Original Message- From: Feifei Xu Sent: Sunday, April 25, 2021 3:31 PM To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Xu

RE: [PATCH] drm/amdgpu: correct sdma 4.x irq.num_types.

2021-04-25 Thread Xu, Feifei
Thanks. Will send V2 with the change. Thanks, Feifei -Original Message- From: Zhang, Hawking Sent: Sunday, April 25, 2021 3:13 PM To: Xu, Feifei ; amd-gfx@lists.freedesktop.org Cc: Xu, Feifei Subject: RE: [PATCH] drm/amdgpu: correct sdma 4.x irq.num_types. [AMD Public Use] Please

RE: [PATCH Review 1/1] drm/amdgpu: optimize gfx ras features flag clean

2021-04-21 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: Stanley.Yang Sent: Monday, April 19, 2021 5:44 PM To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Clements, John ; Li, Dennis ; Xu, Feifei ; Yang, Stanley Subject: [PATCH

RE: [PATCH] drm/amd/pm: Fix DPM level count on aldebaran

2021-03-26 Thread Xu, Feifei
Reviewed-by: Feifei Xu From: Lazar, Lijo Sent: Friday, March 26, 2021 2:04 PM To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Xu, Feifei ; Feng, Kenneth ; Wang, Kevin(Yang) Subject: [PATCH] drm/amd/pm: Fix DPM level count on aldebaran [AMD Public Use] Firmware returns zero-based

RE: [PATCH] drm/amd/pm: Update aldebaran pmfw interface

2021-03-23 Thread Xu, Feifei
Reviewed-by: Feifei Xu From: Lazar, Lijo Sent: Tuesday, March 23, 2021 9:07 PM To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Xu, Feifei ; Feng, Kenneth ; Wang, Kevin(Yang) Subject: [PATCH] drm/amd/pm: Update aldebaran pmfw interface [AMD Public Use] Update aldebaran PMFW

RE: [PATCH] drm/amdgpu: Use DRM_INFO if VFCT table not valid

2021-03-15 Thread Xu, Feifei
OK. Will add in V2 Thanks, Feifei -Original Message- From: Zhang, Hawking Sent: Monday, March 15, 2021 3:28 PM To: Xu, Feifei ; amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Lazar, Lijo Subject: RE: [PATCH] drm/amdgpu: Use DRM_INFO if VFCT table not valid [AMD Public Use

RE: [PATCH] drm/amdgpu: Use DRM_INFO if VFCT table not valid

2021-03-15 Thread Xu, Feifei
ginal Message- From: Feifei Xu Sent: Monday, March 15, 2021 2:46 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Lazar, Lijo ; Zhang, Hawking ; Xu, Feifei Subject: [PATCH] drm/amdgpu: Use DRM_INFO if VFCT table not valid Some ASICs has no GOP driver to copy vbios image to V

RE: [PATCH 2/2] drm/amdgpu: skip query VFCT table for headless ASICs

2021-03-09 Thread Xu, Feifei
and nv_is_headless(). Thanks, Feifei -Original Message- From: Alex Deucher Sent: Wednesday, March 10, 2021 12:50 PM To: Xu, Feifei Cc: amd-gfx list ; Zhang, Hawking Subject: Re: [PATCH 2/2] drm/amdgpu: skip query VFCT table for headless ASICs On Tue, Mar 9, 2021 at 11:38 PM Feifei Xu

RE: [PATCH] drm/amdgpu: skip read eeprom for device that pending on XGMI reset

2021-03-09 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of shaoyunl Sent: 2021年3月10日 上午 9:27 To: amd-gfx@lists.freedesktop.org Cc: Liu, Shaoyun Subject: [PATCH] drm/amdgpu: skip read eeprom for device that pending on

RE: [PATCH] drm/amdgpu: remove ECO_BITS programing on gmc9

2021-03-08 Thread Xu, Feifei
[AMD Public Use] Thanks Anna. Result is good on SRIOV guest driver as well. Will push with Reviewed-by: Hawking Zhang Tested-by Anna Jin < anna@amd.com> Thanks, Feifei -Original Message- From: Zhang, Hawking Sent: 2021年3月5日 下午 8:51 To: Xu, Feifei ; amd-gfx@lists.freedeskt

RE: [PATCH] drm/amd/pm: correct the watermark settings for Polaris

2021-03-04 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Friday, March 5, 2021 2:25 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Georgios Toptsidis ; Quan, Evan ; Chen, Guchun Subject:

RE: [PATCH] drm/amd/pm: remove duplicate XGMI feature mask

2021-03-04 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Series is Acked-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Kevin Wang Sent: Thursday, March 4, 2021 3:35 PM To: amd-gfx@lists.freedesktop.org Cc: Wang, Kevin(Yang) Subject: [PATCH] drm/amd/pm: remove duplicate XGMI

RE: [PATCH] drm/amdgpu: soc15 pcie gen4 support

2021-03-04 Thread Xu, Feifei
Yes, seems un-necessary in current implementation. Thanks, Feifei -Original Message- From: Lazar, Lijo Sent: Thursday, March 4, 2021 3:38 PM To: Chen, Guchun ; Alex Deucher ; Xu, Feifei Cc: amd-gfx list ; Zhang, Hawking Subject: RE: [PATCH] drm/amdgpu: soc15 pcie gen4 support

RE: [PATCH] drm/amdgpu: add sdma 4_x interrupts printing

2021-03-03 Thread Xu, Feifei
: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Xu, Feifei Subject: [PATCH] drm/amdgpu: add sdma 4_x interrupts printing Add VM_HOLE/DOORBELL_INVALID_BE/POLL_TIMEOUT/SRBMWRITE interrupt info printing. Signed-off-by: Feifei Xu --- drivers/gpu/drm/amd/amdgpu/amdgpu_sdma.h | 5 + drivers/gpu/drm/a

RE: [PATCH] drm/amdgpu: add sdma 4_x interrupts printing

2021-03-03 Thread Xu, Feifei
Thanks. Will modify like this: if (instance < 0 || instance > adev->sdma.num_instances) { Thanks, Feifei -Original Message- From: Zhang, Hawking Sent: Thursday, March 4, 2021 2:54 PM To: Xu, Feifei ; amd-gfx@lists.freedesktop.org Cc: Xu, Feifei Subject: RE: [PATCH] drm/am

RE: [PATCH] drm/amdgpu: simplify the sdma 4_x MGCG/MGLS logic.

2021-03-03 Thread Xu, Feifei
Thanks. Will modify to remove the check since all SDMA 4_x share the same setting logic. Thanks, Feifei -Original Message- From: Lazar, Lijo Sent: Thursday, March 4, 2021 1:37 PM To: Alex Deucher ; Xu, Feifei Cc: amd-gfx list Subject: RE: [PATCH] drm/amdgpu: simplify the sdma 4_x

RE: [PATCH] drm/amdgpu: simplify the sdma 4_x MGCG/MGLS logic.

2021-03-03 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] OK. Thanks for pointing it out. I will modify to remove the check. Thanks, Feifei -Original Message- From: Alex Deucher Sent: Thursday, March 4, 2021 1:20 PM To: Xu, Feifei Cc: amd-gfx list Subject: Re: [PATCH] drm/amdgpu: simplify

RE: [PATCH] drm/amdgpu: simplify the sdma 4_x MGCG/MGLS logic.

2021-03-03 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Modified the coding style error. And resend. Thanks. Thanks, Feifei -Original Message- From: Feifei Xu Sent: Thursday, March 4, 2021 12:54 PM To: amd-gfx@lists.freedesktop.org; alexdeuc...@gmail.com Cc: Deucher, Alexander ; Xu

RE: [PATCH] drm/amdgpu: simplify the sdma 4_x MGCG/MGLS logic.

2021-03-03 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Thanks. The VegaM still need to be rule out. Thanks, Feifei -Original Message- From: Alex Deucher Sent: Thursday, March 4, 2021 12:12 PM To: Xu, Feifei Cc: amd-gfx list Subject: Re: [PATCH] drm/amdgpu: simplify the sdma 4_x MGCG

RE: [PATCH 3/3] drm/amdgpu: de-initialize software ih ring

2020-12-20 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Series is Reviewed-by: Feifei Xu -Original Message- From: Zhang, Hawking Sent: 2020年12月21日 下午 1:43 To: amd-gfx@lists.freedesktop.org; Xu, Feifei ; Koenig, Christian Cc: Zhang, Hawking Subject: [PATCH 3/3] drm/amdgpu: de

RE: [PATCH] drm/amdgpu: only register VGA devices with the VGA arbiter

2020-11-20 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Alex Deucher Sent: Friday, November 20, 2020 10:55 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu: only register VGA

RE: [PATCH] drm/amd/display: fix return value check for hdcp_work

2020-09-23 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Flora Cui Sent: Wednesday, September 23, 2020 2:54 PM To: amd-gfx@lists.freedesktop.org Cc: Cui, Flora Subject: [PATCH] drm/amd/display: fix return value check for

RE: [PATCH] drm/amd/display: Fix a list corruption

2020-09-01 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Acked-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Pan, Xinhui Sent: Tuesday, September 1, 2020 3:58 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander Subject: [PATCH] drm/amd/display: Fix a list corruption

RE: [PATCH] drm/amd/pm: drop redundant MEM_TYPE_* macros

2020-08-14 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Friday, August 14, 2020 4:44 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Quan, Evan Subject: [PATCH] drm/amd/pm: drop redundant

RE: [PATCH] drm/amdgpu: temporarily read bounding box from gpu_info fw for navi12

2020-06-02 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: Tianci Yin Sent: Wednesday, June 3, 2020 10:08 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Xu, Feifei ; Yuan, Xiaojie ; Li, Pauline ; Yin, Tianci (Rico) Subject

RE: [PATCH] drm/amdgpu/vcn: add shared menory restore after wake up from sleep.

2020-04-03 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of James Zhu Sent: 2020年4月3日 20:52 To: amd-gfx@lists.freedesktop.org Cc: Li, Pauline ; Zhu, James Subject: [PATCH] drm/amdgpu/vcn: add shared menory restore after

RE: [PATCH] drm/amdgpu: add SPM golden settings for Navi10

2020-04-03 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: Tianci Yin Sent: 2020年4月3日 13:30 To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Hesik, Christopher ; Zhang, Hawking ; Xu, Feifei ; Yin, Tianci (Rico) Subject: [PATCH

RE: [PATCH] drm/amd/powerplay: unload mp1 for Arcturus RAS baco reset

2020-03-25 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: 2020年3月25日 16:12 To: amd-gfx@lists.freedesktop.org Cc: Quan, Evan Subject: [PATCH] drm/amd/powerplay: unload mp1 for Arcturus RAS baco reset

RE: [PATCH 1/2] drm/amdgpu/display: fix pci revision id fetching

2020-03-05 Thread Xu, Feifei
[AMD Public Use] Patch3: Acked-by: Feifei Xu Regards, Feifei From: amd-gfx On Behalf Of Xu, Feifei Sent: 2020年3月6日 9:54 To: Deucher, Alexander ; Alex Deucher ; amd-gfx list Cc: Tawfik, Aly Subject: RE: [PATCH 1/2] drm/amdgpu/display: fix pci revision id fetching [AMD Public Use] Patch1

RE: [PATCH 1/2] drm/amdgpu/display: fix pci revision id fetching

2020-03-05 Thread Xu, Feifei
[AMD Public Use] Patch1, Patch2 are : Reviewed-by: Feifei Xu From: Deucher, Alexander Sent: 2020年3月6日 0:00 To: Xu, Feifei ; Alex Deucher ; amd-gfx list Cc: Tawfik, Aly Subject: Re: [PATCH 1/2] drm/amdgpu/display: fix pci revision id fetching [AMD Public Use] Is this for the series

RE: [PATCH 1/2] drm/amdgpu/display: fix pci revision id fetching

2020-03-04 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Alex Deucher Sent: 2020年3月5日 13:23 To: amd-gfx list Cc: Deucher, Alexander ; Tawfik, Aly Subject: Re: [PATCH 1/2] drm/amdgpu/display: fix pci revision id

RE: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

2020-03-02 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: Tianci Yin Sent: 2020年3月2日 9:57 To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Xu, Feifei ; Gao, Likun ; Yuan, Xiaojie ; Long, Gang ; Li, Pauline ; Yin, Tianci (Rico

RE: [PATCH] drm/amdgpu: add sysfs interface to set arbitrary sclk value for navi14

2020-02-14 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: Chengming Gui Sent: 2020年2月14日 19:33 To: amd-gfx@lists.freedesktop.org Cc: Quan, Evan ; Feng, Kenneth ; Xu, Feifei ; Gui, Jack Subject: [PATCH] drm/amdgpu: add sysfs interface

Re: [PATCH] drm/amd/display: fix dtm unloading

2020-02-10 Thread Xu, Feifei
Reviewed-by: Feifei Xu > On Feb 10, 2020, at 23:17, Bhawanpreet Lakha > wrote: > > there was a type in the terminate command. > > We should be calling psp_dtm_unload() instead of psp_hdcp_unload() > > Fixes: 143f2305 ("drm/amdgpu: psp DTM init" > Signed-off-by: Bhawanpreet Lakha > ---

Re: [PATCH] drm/amd/powerplay: fix navi10 system intermittent reboot issue

2020-01-30 Thread Xu, Feifei
Reviewed-by: Feifei Xu > On Jan 30, 2020, at 16:59, Evan Quan wrote: > > This workaround is needed only for Navi10 12 Gbps SKUs. > > Change-Id: I4bfcb8a8dbff785a159e6a1ed413d93063403ab3 > Signed-off-by: Evan Quan > --- > drivers/gpu/drm/amd/powerplay/amdgpu_smu.c| 18 +++ >

RE: [PATCH] drm/amdgpu: initialize bo_va_list when add gws to process

2020-01-21 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Pan, Xinhui Sent: 2020年1月22日 11:10 To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Zeng, Oak Subject: [PATCH] drm/amdgpu: initialize bo_va_list when

RE: [PATCH] drm/amdgpu: add the lost mutex_init back

2020-01-15 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Pan, Xinhui Sent: Thursday, January 16, 2020 2:10 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu: add the lost mutex_init back Initialize notifier_lock. Signed-off-by:

RE: [PATCH] drm/amdgpu: fix modprobe failure of the secondary GPU when GDDR6 training enabled(V5)

2020-01-14 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: Tianci Yin Sent: Monday, January 13, 2020 10:06 AM To: amd-gfx@lists.freedesktop.org Cc: Tuikov, Luben ; Koenig, Christian ; Deucher, Alexander ; Zhang, Hawking ; Xu, Feifei ; Yuan, Xiaojie ; Long, Gang ; Wang, Kevin(Yang) ; Yin

RE: [PATCH] drm/amd/powerplay: avoid deadlock on Vega20 swSMU routine

2019-12-30 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Monday, December 30, 2019 6:40 PM To: amd-gfx@lists.freedesktop.org Cc: Quan, Evan Subject: [PATCH] drm/amd/powerplay: avoid deadlock on Vega20 swSMU routine The lock required was already hold by

RE: [PATCH 2/2] drm/amdgpu/gfx10: update gfx golden settings for navi14

2019-12-11 Thread Xu, Feifei
Series is Reviewed-by: Feifei Xu -Original Message- From: Tianci Yin Sent: Wednesday, December 11, 2019 8:00 PM To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Xu, Feifei ; Yuan, Xiaojie ; Long, Gang ; Li, Pauline ; Yin, Tianci (Rico) Subject: [PATCH 2/2] drm/amdgpu/gfx10

RE: [PATCH] drm/amdgpu/gfx10: update gfx golden settings for navi12

2019-12-10 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: Tianci Yin Sent: Wednesday, December 11, 2019 2:09 PM To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Xu, Feifei ; Yuan, Xiaojie ; Long, Gang ; Li, Pauline ; Yin, Tianci (Rico) Subject: [PATCH] drm/amdgpu/gfx10: update gfx

RE: [PATCH 1/2] drm/amdgpu/gfx10: update gfx golden settings

2019-12-10 Thread Xu, Feifei
Series is Reviewed-by: Feifei Xu -Original Message- From: Tianci Yin Sent: Wednesday, December 11, 2019 11:22 AM To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Xu, Feifei ; Yuan, Xiaojie ; Long, Gang ; Li, Pauline ; Yin, Tianci (Rico) Subject: [PATCH 1/2] drm/amdgpu/gfx10

RE: [PATCH] drm/amd/powerplay: fix deadlock on setting power_dpm_force_performance_level

2019-11-05 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Quan, Evan Sent: Wednesday, November 6, 2019 2:57 PM To: amd-gfx@lists.freedesktop.org Cc: Quan, Evan Subject: [PATCH] drm/amd/powerplay: fix deadlock on setting power_dpm_force_performance_level

RE: [PATCH 1/2] drm/amdgpu: fix possible pstate switch race condition

2019-11-05 Thread Xu, Feifei
Series is Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Quan, Evan Sent: 2019年11月5日 18:24 To: amd-gfx@lists.freedesktop.org Cc: Strawbridge, Michael ; Kim, Jonathan ; Quan, Evan Subject: [PATCH 1/2] drm/amdgpu: fix possible pstate switch race condition Added

RE: [PATCH 2/3] drm/amdgpu/gfx10: update gfx golden settings for navi14

2019-10-24 Thread Xu, Feifei
Series is reviewed-by: Feifei Xu Thanks, Feifei -Original Message- From: amd-gfx On Behalf Of Tianci Yin Sent: Thursday, October 24, 2019 6:10 PM To: amd-gfx@lists.freedesktop.org Cc: Xu, Feifei ; Xiao, Jack ; Yuan, Xiaojie ; Yin, Tianci (Rico) ; Zhang, Hawking Subject: [PATCH 2/3

RE: [PATCH 1/3] drm/amd/powerplay: add lock protection for swSMU APIs V2

2019-10-19 Thread Xu, Feifei
Acked-by: Feifei Xu Thanks, Feifei -Original Message- From: amd-gfx On Behalf Of Quan, Evan Sent: Friday, October 18, 2019 10:57 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Grodzovsky, Andrey ; Quan, Evan Subject: [PATCH 1/3] drm/amd/powerplay: add lock protection

Re: [PATCH 2/2] drm/amdgpu/psp11: fix typo in comment

2019-10-18 Thread Xu, Feifei
Series is reviewed by Feifei Xu > 在 2019年10月18日,18:59,Yuan, Xiaojie 写道: > > Signed-off-by: Xiaojie Yuan > --- > drivers/gpu/drm/amd/amdgpu/psp_v11_0.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c >

RE: [PATCH] drm/amdgpu/psp: silence response status warning

2019-09-24 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of S, Shirish Sent: Tuesday, September 24, 2019 5:18 PM To: Deucher, Alexander ; Koenig, Christian ; Huang, Ray ; Zhang, Hawking Cc: amd-gfx@lists.freedesktop.org; S, Shirish Subject: [PATCH] drm/amdgpu/psp: silence

RE: [PATCH] drm/amdgpu/gfx10: add support for wks firmware loading

2019-09-19 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Tianci Yin Sent: Thursday, September 19, 2019 1:33 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Yin, Tianci (Rico) ; Zhang, Hawking Subject: [PATCH] drm/amdgpu/gfx10: add support for wks firmware

RE: [PATCH 1/2] drm/amdgpu/psp: flush HDP write fifo after submitting cmds to the psp

2019-09-17 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Alex Deucher Sent: Wednesday, September 18, 2019 4:21 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander Subject: [PATCH 1/2] drm/amdgpu/psp: flush HDP write fifo after submitting cmds to the psp We need

RE: [PATCH 2/2] drm/amdgpu/psp: invalidate the hdp read cache before reading the psp response

2019-09-17 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Alex Deucher Sent: Wednesday, September 18, 2019 4:21 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander Subject: [PATCH 2/2] drm/amdgpu/psp: invalidate the hdp read cache before reading the psp response

RE: [PATCH] drm/amdgpu: add psp ip block for arct

2019-09-17 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Zhang, Hawking Sent: Wednesday, September 18, 2019 7:09 AM To: amd-gfx@lists.freedesktop.org; Deucher, Alexander ; Clements, John Cc: Zhang, Hawking Subject: [PATCH] drm/amdgpu: add psp ip block for arct enable

RE: [PATCH] drm/amdgpu: do not init mec2 jt for renoir

2019-09-17 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Zhang, Hawking Sent: Wednesday, September 18, 2019 7:09 AM To: amd-gfx@lists.freedesktop.org; Deucher, Alexander ; Clements, John Cc: Zhang, Hawking Subject: [PATCH] drm/amdgpu: do not init mec2 jt for renoir

RE: [PATCH] drm/amdgpu/sriov: add ring_stop before ring_create in psp v11 code

2019-09-10 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: Zhang, Jack (Jian) Sent: Wednesday, September 11, 2019 10:56 AM To: amd-gfx@lists.freedesktop.org; Xu, Feifei Cc: Zhang, Jack (Jian) Subject: RE: [PATCH] drm/amdgpu/sriov: add ring_stop before ring_create in psp v11 code ping

RE: [PATCH] drm/amdgpu: add navi14 PCI ID for work station SKU

2019-09-09 Thread Xu, Feifei
Reviewed-by: Feifei Xu From: Yin, Tianci (Rico) Sent: Friday, September 6, 2019 3:37 PM To: amd-gfx@lists.freedesktop.org Cc: Xu, Feifei ; Zhang, Hawking ; Xiao, Jack ; Yuan, Xiaojie ; Long, Gang Subject: [PATCH] drm/amdgpu: add navi14 PCI ID for work station SKU

RE: [PATCH 1/3] amd/amdgpu: add Arcturus vf DID support

2019-08-22 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Frank.Min Sent: 2019年8月16日 16:59 To: amd-gfx@lists.freedesktop.org Cc: Min, Frank Subject: [PATCH 1/3] amd/amdgpu: add Arcturus vf DID support Change-Id: I7153153785fdd54a10ebc47e778e06982edc79d7 Signed-off-by:

RE: [PATCH 1/1] drm/amdgpu: split athub clock gating from mmhub

2019-08-08 Thread Xu, Feifei
Serier is Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Le Ma Sent: Thursday, August 8, 2019 6:32 PM To: amd-gfx@lists.freedesktop.org Cc: Ma, Le Subject: [PATCH 1/1] drm/amdgpu: split athub clock gating from mmhub Untie the bind of get/set athub CG state from

RE: [PATCH] drm/amd/powerplay: check before issuing messages for max sustainable clocks

2019-08-06 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Evan Quan Sent: Tuesday, August 6, 2019 4:21 PM To: amd-gfx@lists.freedesktop.org Cc: Quan, Evan Subject: [PATCH] drm/amd/powerplay: check before issuing messages for max sustainable clocks Those messages are not

RE: [PATCH] drm/amdgpu: pin the csb buffer on hw init for gfx v8

2019-08-04 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Gao Likun Sent: Monday, August 5, 2019 10:07 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Gao, Likun ; Paul Gover ; Yuan, Xiaojie Subject: [PATCH] drm/amdgpu: pin the csb buffer on hw init for gfx

RE: [PATCH libdrm 1/1] tests/amdgpu: add the missing deactivation case for dispatch test

2019-08-04 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Le Ma Sent: Monday, August 5, 2019 10:14 AM To: amd-gfx@lists.freedesktop.org Cc: Ma, Le Subject: [PATCH libdrm 1/1] tests/amdgpu: add the missing deactivation case for dispatch test Change-Id:

RE: [PATCH] drm/amdgpu/powerplay: use proper revision id for navi

2019-07-25 Thread Xu, Feifei
Reviewed-by: Feifei Xu -Original Message- From: amd-gfx On Behalf Of Alex Deucher Sent: Friday, July 26, 2019 12:11 PM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu/powerplay: use proper revision id for navi The PCI revision id determines the

  1   2   >