AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Khatri, Sunil" <sunil.khatri@amd.com>
To: boyuan.zhang@amd.com, amd-gfx@lists.freedesktop.org,
	leo.liu@amd.com, christian.koenig@amd.com,
	alexander.deucher@amd.com
Subject: Re: [PATCH 22/29] drm/amdgpu: sw_fini for each vcn instance
Date: Fri, 25 Oct 2024 18:36:47 +0530	[thread overview]
Message-ID: <f16dfcae-49e1-95d6-fd95-239bb6746796@amd.com> (raw)
In-Reply-To: <20241025023545.465886-23-boyuan.zhang@amd.com>

[-- Attachment #1: Type: text/plain, Size: 13843 bytes --]

Looks fine to me as the changes are done to accomodate per instance ip 
block only
Acked-by: Sunil Khatri <sunil.khatri@amd.com 
<mailto:christian.koenig@amd.com>>

On 10/25/2024 8:05 AM, boyuan.zhang@amd.com wrote:
> From: Boyuan Zhang <boyuan.zhang@amd.com>
>
> Pass instance parameter to amdgpu_vcn_sw_fini(), and perform
> sw fini ONLY for the given vcn instance, instead of for all
> vcn instances. Modify each vcn generation accordingly.
>
> Signed-off-by: Boyuan Zhang <boyuan.zhang@amd.com>
> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c | 36 ++++++++++++-------------
>   drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.h |  2 +-
>   drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c   |  5 ++--
>   drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c   |  5 ++--
>   drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c   | 17 ++++++------
>   drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c   | 20 +++++++-------
>   drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c   | 21 +++++++--------
>   drivers/gpu/drm/amd/amdgpu/vcn_v4_0_3.c | 16 +++++------
>   drivers/gpu/drm/amd/amdgpu/vcn_v4_0_5.c | 21 +++++++--------
>   drivers/gpu/drm/amd/amdgpu/vcn_v5_0_0.c | 21 +++++++--------
>   10 files changed, 81 insertions(+), 83 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c
> index 2c55166e27d9..d515cfd2da79 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c
> @@ -248,33 +248,31 @@ int amdgpu_vcn_sw_init(struct amdgpu_device *adev, int inst)
>   	return 0;
>   }
>   
> -int amdgpu_vcn_sw_fini(struct amdgpu_device *adev)
> +int amdgpu_vcn_sw_fini(struct amdgpu_device *adev, int inst)
>   {
> -	int i, j;
> -
> -	for (j = 0; j < adev->vcn.num_vcn_inst; ++j) {
> -		if (adev->vcn.harvest_config & (1 << j))
> -			continue;
> +	int i;
>   
> -		amdgpu_bo_free_kernel(
> -			&adev->vcn.inst[j].dpg_sram_bo,
> -			&adev->vcn.inst[j].dpg_sram_gpu_addr,
> -			(void **)&adev->vcn.inst[j].dpg_sram_cpu_addr);
> +	if (adev->vcn.harvest_config & (1 << inst))
> +		goto done;
>   
> -		kvfree(adev->vcn.inst[j].saved_bo);
> +	amdgpu_bo_free_kernel(
> +		&adev->vcn.inst[inst].dpg_sram_bo,
> +		&adev->vcn.inst[inst].dpg_sram_gpu_addr,
> +		(void **)&adev->vcn.inst[inst].dpg_sram_cpu_addr);
>   
> -		amdgpu_bo_free_kernel(&adev->vcn.inst[j].vcpu_bo,
> -					  &adev->vcn.inst[j].gpu_addr,
> -					  (void **)&adev->vcn.inst[j].cpu_addr);
> +	kvfree(adev->vcn.inst[inst].saved_bo);
>   
> -		amdgpu_ring_fini(&adev->vcn.inst[j].ring_dec);
> +	amdgpu_bo_free_kernel(&adev->vcn.inst[inst].vcpu_bo,
> +				  &adev->vcn.inst[inst].gpu_addr,
> +				  (void **)&adev->vcn.inst[inst].cpu_addr);
>   
> -		for (i = 0; i < adev->vcn.num_enc_rings; ++i)
> -			amdgpu_ring_fini(&adev->vcn.inst[j].ring_enc[i]);
> +	amdgpu_ring_fini(&adev->vcn.inst[inst].ring_dec);
>   
> -		amdgpu_ucode_release(&adev->vcn.inst[j].fw);
> -	}
> +	for (i = 0; i < adev->vcn.num_enc_rings; ++i)
> +		amdgpu_ring_fini(&adev->vcn.inst[inst].ring_enc[i]);
>   
> +	amdgpu_ucode_release(&adev->vcn.inst[inst].fw);
> +done:
>   	mutex_destroy(&adev->vcn.vcn1_jpeg1_workaround);
>   	mutex_destroy(&adev->vcn.vcn_pg_lock);
>   
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.h
> index 4809da69bd1b..ce8000ca11ef 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.h
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.h
> @@ -485,7 +485,7 @@ enum vcn_ring_type {
>   
>   int amdgpu_vcn_early_init(struct amdgpu_device *adev, int inst);
>   int amdgpu_vcn_sw_init(struct amdgpu_device *adev, int inst);
> -int amdgpu_vcn_sw_fini(struct amdgpu_device *adev);
> +int amdgpu_vcn_sw_fini(struct amdgpu_device *adev, int inst);
>   int amdgpu_vcn_suspend(struct amdgpu_device *adev);
>   int amdgpu_vcn_resume(struct amdgpu_device *adev);
>   void amdgpu_vcn_ring_begin_use(struct amdgpu_ring *ring);
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c
> index 808d69ab0904..44370949fa57 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c
> @@ -222,8 +222,9 @@ static int vcn_v1_0_sw_init(struct amdgpu_ip_block *ip_block)
>    */
>   static int vcn_v1_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   {
> -	int r;
>   	struct amdgpu_device *adev = ip_block->adev;
> +	int inst = ip_block->instance;
> +	int r;
>   
>   	r = amdgpu_vcn_suspend(adev);
>   	if (r)
> @@ -231,7 +232,7 @@ static int vcn_v1_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   
>   	jpeg_v1_0_sw_fini(ip_block);
>   
> -	r = amdgpu_vcn_sw_fini(adev);
> +	r = amdgpu_vcn_sw_fini(adev, inst);
>   
>   	kfree(adev->vcn.ip_dump);
>   
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
> index a86cff00d761..7b5f2696e60d 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
> @@ -245,9 +245,10 @@ static int vcn_v2_0_sw_init(struct amdgpu_ip_block *ip_block)
>    */
>   static int vcn_v2_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   {
> -	int r, idx;
>   	struct amdgpu_device *adev = ip_block->adev;
> +	int inst = ip_block->instance;
>   	volatile struct amdgpu_fw_shared *fw_shared = adev->vcn.inst->fw_shared.cpu_addr;
> +	int r, idx;
>   
>   	if (drm_dev_enter(adev_to_drm(adev), &idx)) {
>   		fw_shared->present_flag_0 = 0;
> @@ -260,7 +261,7 @@ static int vcn_v2_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   	if (r)
>   		return r;
>   
> -	r = amdgpu_vcn_sw_fini(adev);
> +	r = amdgpu_vcn_sw_fini(adev, inst);
>   
>   	kfree(adev->vcn.ip_dump);
>   
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c b/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
> index 9967ac3fc51b..d135e63e7301 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
> @@ -297,17 +297,18 @@ static int vcn_v2_5_sw_init(struct amdgpu_ip_block *ip_block)
>    */
>   static int vcn_v2_5_sw_fini(struct amdgpu_ip_block *ip_block)
>   {
> -	int i, r, idx;
>   	struct amdgpu_device *adev = ip_block->adev;
>   	volatile struct amdgpu_fw_shared *fw_shared;
> +	int inst = ip_block->instance;
> +	int r, idx;
>   
>   	if (drm_dev_enter(adev_to_drm(adev), &idx)) {
> -		for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
> -			if (adev->vcn.harvest_config & (1 << i))
> -				continue;
> -			fw_shared = adev->vcn.inst[i].fw_shared.cpu_addr;
> -			fw_shared->present_flag_0 = 0;
> -		}
> +		if (adev->vcn.harvest_config & (1 << inst))
> +			goto done;
> +
> +		fw_shared = adev->vcn.inst[inst].fw_shared.cpu_addr;
> +		fw_shared->present_flag_0 = 0;
> +	done:
>   		drm_dev_exit(idx);
>   	}
>   
> @@ -319,7 +320,7 @@ static int vcn_v2_5_sw_fini(struct amdgpu_ip_block *ip_block)
>   	if (r)
>   		return r;
>   
> -	r = amdgpu_vcn_sw_fini(adev);
> +	r = amdgpu_vcn_sw_fini(adev, inst);
>   
>   	kfree(adev->vcn.ip_dump);
>   
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c
> index e89088e3cd1d..d00b7a7cbdce 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c
> @@ -306,19 +306,19 @@ static int vcn_v3_0_sw_init(struct amdgpu_ip_block *ip_block)
>   static int vcn_v3_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   {
>   	struct amdgpu_device *adev = ip_block->adev;
> -	int i, r, idx;
> +	int inst = ip_block->instance;
> +	int r, idx;
>   
>   	if (drm_dev_enter(adev_to_drm(adev), &idx)) {
> -		for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
> -			volatile struct amdgpu_fw_shared *fw_shared;
> +		volatile struct amdgpu_fw_shared *fw_shared;
>   
> -			if (adev->vcn.harvest_config & (1 << i))
> -				continue;
> -			fw_shared = adev->vcn.inst[i].fw_shared.cpu_addr;
> -			fw_shared->present_flag_0 = 0;
> -			fw_shared->sw_ring.is_enabled = false;
> -		}
> +		if (adev->vcn.harvest_config & (1 << inst))
> +			goto done;
>   
> +		fw_shared = adev->vcn.inst[inst].fw_shared.cpu_addr;
> +		fw_shared->present_flag_0 = 0;
> +		fw_shared->sw_ring.is_enabled = false;
> +	done:
>   		drm_dev_exit(idx);
>   	}
>   
> @@ -329,7 +329,7 @@ static int vcn_v3_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   	if (r)
>   		return r;
>   
> -	r = amdgpu_vcn_sw_fini(adev);
> +	r = amdgpu_vcn_sw_fini(adev, inst);
>   
>   	kfree(adev->vcn.ip_dump);
>   	return r;
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c
> index 1b492197c2b7..7c3a62f84707 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c
> @@ -258,20 +258,19 @@ static int vcn_v4_0_sw_init(struct amdgpu_ip_block *ip_block)
>   static int vcn_v4_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   {
>   	struct amdgpu_device *adev = ip_block->adev;
> -	int i, r, idx;
> +	int inst = ip_block->instance;
> +	int r, idx;
>   
>   	if (drm_dev_enter(adev_to_drm(adev), &idx)) {
> -		for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
> -			volatile struct amdgpu_vcn4_fw_shared *fw_shared;
> +		volatile struct amdgpu_vcn4_fw_shared *fw_shared;
>   
> -			if (adev->vcn.harvest_config & (1 << i))
> -				continue;
> -
> -			fw_shared = adev->vcn.inst[i].fw_shared.cpu_addr;
> -			fw_shared->present_flag_0 = 0;
> -			fw_shared->sq.is_enabled = 0;
> -		}
> +		if (adev->vcn.harvest_config & (1 << inst))
> +			goto done;
>   
> +		fw_shared = adev->vcn.inst[inst].fw_shared.cpu_addr;
> +		fw_shared->present_flag_0 = 0;
> +		fw_shared->sq.is_enabled = 0;
> +	done:
>   		drm_dev_exit(idx);
>   	}
>   
> @@ -282,7 +281,7 @@ static int vcn_v4_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   	if (r)
>   		return r;
>   
> -	r = amdgpu_vcn_sw_fini(adev);
> +	r = amdgpu_vcn_sw_fini(adev, inst);
>   
>   	kfree(adev->vcn.ip_dump);
>   
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v4_0_3.c b/drivers/gpu/drm/amd/amdgpu/vcn_v4_0_3.c
> index 5b61000f3004..5a3de3dbc3c9 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v4_0_3.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v4_0_3.c
> @@ -219,16 +219,16 @@ static int vcn_v4_0_3_sw_init(struct amdgpu_ip_block *ip_block)
>   static int vcn_v4_0_3_sw_fini(struct amdgpu_ip_block *ip_block)
>   {
>   	struct amdgpu_device *adev = ip_block->adev;
> -	int i, r, idx;
> +	int inst = ip_block->instance;
> +	int r, idx;
>   
>   	if (drm_dev_enter(&adev->ddev, &idx)) {
> -		for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
> -			volatile struct amdgpu_vcn4_fw_shared *fw_shared;
> +		volatile struct amdgpu_vcn4_fw_shared *fw_shared;
> +
> +		fw_shared = adev->vcn.inst[inst].fw_shared.cpu_addr;
> +		fw_shared->present_flag_0 = 0;
> +		fw_shared->sq.is_enabled = cpu_to_le32(false);
>   
> -			fw_shared = adev->vcn.inst[i].fw_shared.cpu_addr;
> -			fw_shared->present_flag_0 = 0;
> -			fw_shared->sq.is_enabled = cpu_to_le32(false);
> -		}
>   		drm_dev_exit(idx);
>   	}
>   
> @@ -239,7 +239,7 @@ static int vcn_v4_0_3_sw_fini(struct amdgpu_ip_block *ip_block)
>   	if (r)
>   		return r;
>   
> -	r = amdgpu_vcn_sw_fini(adev);
> +	r = amdgpu_vcn_sw_fini(adev, inst);
>   
>   	kfree(adev->vcn.ip_dump);
>   
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v4_0_5.c b/drivers/gpu/drm/amd/amdgpu/vcn_v4_0_5.c
> index 4d944636d02b..2c9f863c40b1 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v4_0_5.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v4_0_5.c
> @@ -227,20 +227,19 @@ static int vcn_v4_0_5_sw_init(struct amdgpu_ip_block *ip_block)
>   static int vcn_v4_0_5_sw_fini(struct amdgpu_ip_block *ip_block)
>   {
>   	struct amdgpu_device *adev = ip_block->adev;
> -	int i, r, idx;
> +	int inst = ip_block->instance;
> +	int r, idx;
>   
>   	if (drm_dev_enter(adev_to_drm(adev), &idx)) {
> -		for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
> -			volatile struct amdgpu_vcn4_fw_shared *fw_shared;
> -
> -			if (adev->vcn.harvest_config & (1 << i))
> -				continue;
> +		volatile struct amdgpu_vcn4_fw_shared *fw_shared;
>   
> -			fw_shared = adev->vcn.inst[i].fw_shared.cpu_addr;
> -			fw_shared->present_flag_0 = 0;
> -			fw_shared->sq.is_enabled = 0;
> -		}
> +		if (adev->vcn.harvest_config & (1 << inst))
> +			goto done;
>   
> +		fw_shared = adev->vcn.inst[inst].fw_shared.cpu_addr;
> +		fw_shared->present_flag_0 = 0;
> +		fw_shared->sq.is_enabled = 0;
> +	done:
>   		drm_dev_exit(idx);
>   	}
>   
> @@ -251,7 +250,7 @@ static int vcn_v4_0_5_sw_fini(struct amdgpu_ip_block *ip_block)
>   	if (r)
>   		return r;
>   
> -	r = amdgpu_vcn_sw_fini(adev);
> +	r = amdgpu_vcn_sw_fini(adev, inst);
>   
>   	kfree(adev->vcn.ip_dump);
>   
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v5_0_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v5_0_0.c
> index 8efedf943581..9d67e884952a 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v5_0_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v5_0_0.c
> @@ -194,20 +194,19 @@ static int vcn_v5_0_0_sw_init(struct amdgpu_ip_block *ip_block)
>   static int vcn_v5_0_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   {
>   	struct amdgpu_device *adev = ip_block->adev;
> -	int i, r, idx;
> +	int inst = ip_block->instance;
> +	int r, idx;
>   
>   	if (drm_dev_enter(adev_to_drm(adev), &idx)) {
> -		for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
> -			volatile struct amdgpu_vcn5_fw_shared *fw_shared;
> -
> -			if (adev->vcn.harvest_config & (1 << i))
> -				continue;
> +		volatile struct amdgpu_vcn5_fw_shared *fw_shared;
>   
> -			fw_shared = adev->vcn.inst[i].fw_shared.cpu_addr;
> -			fw_shared->present_flag_0 = 0;
> -			fw_shared->sq.is_enabled = 0;
> -		}
> +		if (adev->vcn.harvest_config & (1 << inst))
> +			goto done;
>   
> +		fw_shared = adev->vcn.inst[inst].fw_shared.cpu_addr;
> +		fw_shared->present_flag_0 = 0;
> +		fw_shared->sq.is_enabled = 0;
> +	done:
>   		drm_dev_exit(idx);
>   	}
>   
> @@ -215,7 +214,7 @@ static int vcn_v5_0_0_sw_fini(struct amdgpu_ip_block *ip_block)
>   	if (r)
>   		return r;
>   
> -	r = amdgpu_vcn_sw_fini(adev);
> +	r = amdgpu_vcn_sw_fini(adev, inst);
>   
>   	kfree(adev->vcn.ip_dump);
>   

[-- Attachment #2: Type: text/html, Size: 14129 bytes --]

  reply	other threads:[~2024-10-25 13:06 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-25  2:35 [PATCH 00/29] Separating vcn power management by instance boyuan.zhang
2024-10-25  2:35 ` [PATCH 01/29] drm/amd/pm: add inst to dpm_set_vcn_enable boyuan.zhang
2024-10-28 19:05   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 02/29] drm/amd/pm: power up or down vcn by instance boyuan.zhang
2024-10-28 19:07   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 03/29] drm/amd/pm: add inst to smu_dpm_set_vcn_enable boyuan.zhang
2024-10-28 19:04   ` Alex Deucher
2024-10-29 17:44     ` Boyuan Zhang
2024-10-25  2:35 ` [PATCH 04/29] drm/amd/pm: add inst to set_powergating_by_smu boyuan.zhang
2024-10-28 19:08   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 05/29] drm/amd/pm: add inst to dpm_set_powergating_by_smu boyuan.zhang
2024-10-28 19:11   ` Alex Deucher
2024-10-29 17:45     ` Boyuan Zhang
2024-10-25  2:35 ` [PATCH 06/29] drm/amdgpu: add inst to amdgpu_dpm_enable_vcn boyuan.zhang
2024-10-28 19:12   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 07/29] drm/amdgpu: pass ip_block in set_powergating_state boyuan.zhang
2024-10-25 10:38   ` Khatri, Sunil
2024-10-28 19:16   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 08/29] drm/amdgpu: pass ip_block in set_clockgating_state boyuan.zhang
2024-10-25 10:39   ` Khatri, Sunil
2024-10-25  2:35 ` [PATCH 09/29] drm/amdgpu: track instances of the same IP block boyuan.zhang
2024-10-28 19:27   ` Alex Deucher
2024-10-28 19:53     ` Boyuan Zhang
2024-10-28 20:05       ` Alex Deucher
2024-10-29 17:47         ` Boyuan Zhang
2024-10-25  2:35 ` [PATCH 10/29] drm/amdgpu: move per inst variables to amdgpu_vcn_inst boyuan.zhang
2024-10-28 19:19   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 11/29] drm/amdgpu/vcn: separate gating state by instance boyuan.zhang
2024-10-28 19:22   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 12/29] drm/amdgpu: power vcn 2_5 " boyuan.zhang
2024-10-28 19:24   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 13/29] drm/amdgpu: power vcn 3_0 " boyuan.zhang
2024-10-28 19:25   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 14/29] drm/amdgpu: power vcn 4_0 " boyuan.zhang
2024-10-28 19:25   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 15/29] drm/amdgpu: power vcn 4_0_3 " boyuan.zhang
2024-10-28 19:28   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 16/29] drm/amdgpu: power vcn 4_0_5 " boyuan.zhang
2024-10-28 19:28   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 17/29] drm/amdgpu: power vcn 5_0_0 " boyuan.zhang
2024-10-28 19:29   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 18/29] drm/amdgpu/vcn: separate idle work " boyuan.zhang
2024-10-28 19:30   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 19/29] drm/amdgpu: set powergating state by vcn instance boyuan.zhang
2024-10-28 19:33   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 20/29] drm/amdgpu: early_init for each " boyuan.zhang
2024-10-25 11:12   ` Khatri, Sunil
2024-10-28 19:37   ` Deucher, Alexander
2024-10-25  2:35 ` [PATCH 21/29] drm/amdgpu: sw_init " boyuan.zhang
2024-10-25 11:22   ` Khatri, Sunil
2024-10-28 19:38   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 22/29] drm/amdgpu: sw_fini " boyuan.zhang
2024-10-25 13:06   ` Khatri, Sunil [this message]
2024-10-25  2:35 ` [PATCH 23/29] drm/amdgpu: hw_init " boyuan.zhang
2024-10-28 19:41   ` Alex Deucher
2024-10-29 10:04   ` Khatri, Sunil
2024-10-25  2:35 ` [PATCH 24/29] drm/amdgpu: suspend " boyuan.zhang
2024-10-28 19:42   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 25/29] drm/amdgpu: resume " boyuan.zhang
2024-10-28 19:42   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 26/29] drm/amdgpu: setup_ucode " boyuan.zhang
2024-10-28 19:43   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 27/29] drm/amdgpu: set funcs " boyuan.zhang
2024-10-28 19:44   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 28/29] drm/amdgpu: wait_for_idle " boyuan.zhang
2024-10-28 19:44   ` Alex Deucher
2024-10-25  2:35 ` [PATCH 29/29] drm/amdgpu: set_powergating " boyuan.zhang
2024-10-28 19:45   ` Alex Deucher
2024-10-28 13:18 ` [PATCH 00/29] Separating vcn power management by instance Liu, Leo
  -- strict thread matches above, loose matches on Subject: below --
2024-10-29 17:42 boyuan.zhang
2024-10-29 17:42 ` [PATCH 22/29] drm/amdgpu: sw_fini for each vcn instance boyuan.zhang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f16dfcae-49e1-95d6-fd95-239bb6746796@amd.com \
    --to=sunil.khatri@amd.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=boyuan.zhang@amd.com \
    --cc=christian.koenig@amd.com \
    --cc=leo.liu@amd.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox