From: Leo Liu <leo.liu@amd.com>
To: Sathishkumar S <sathishkumar.sundararaju@amd.com>,
amd-gfx@lists.freedesktop.org
Cc: Lazar Lijo <Lijo.Lazar@amd.com>
Subject: Re: [PATCH v2 9/9] drm/amdgpu: Enable devcoredump for JPEG2_5_0
Date: Wed, 29 Jan 2025 11:36:25 -0500 [thread overview]
Message-ID: <420b603c-be80-413e-a069-b1edf3f2a04e@amd.com> (raw)
In-Reply-To: <20250129084643.507727-10-sathishkumar.sundararaju@amd.com>
Looks pretty good to me. One question that why this is not added to JPEG
5_0_0? Since the patch 3-9 cover the rest of versions, they are:
Reviewed-by: Leo Liu <leo.liu@amd.com>
On 1/29/25 03:46, Sathishkumar S wrote:
> Add register list and enable devcoredump for JPEG2_5_0
>
> V2: (Lijo)
> - remove version specific callbacks and use simplified helper functions
>
> Signed-off-by: Sathishkumar S <sathishkumar.sundararaju@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.c | 26 ++++++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.c b/drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.c
> index 11f6af2646e7..536a6101dcf9 100644
> --- a/drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.c
> +++ b/drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.c
> @@ -36,6 +36,22 @@
>
> #define JPEG25_MAX_HW_INSTANCES_ARCTURUS 2
>
> +static const struct amdgpu_hwip_reg_entry jpeg_reg_list_2_5[] = {
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JPEG_POWER_STATUS),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JPEG_INT_STAT),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JRBC_RB_RPTR),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JRBC_RB_WPTR),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JRBC_RB_CNTL),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JRBC_RB_SIZE),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JRBC_STATUS),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmJPEG_DEC_ADDR_MODE),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmJPEG_DEC_GFX10_ADDR_CONFIG),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmJPEG_DEC_Y_GFX10_TILING_SURFACE),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmJPEG_DEC_UV_GFX10_TILING_SURFACE),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JPEG_PITCH),
> + SOC15_REG_ENTRY_STR(JPEG, 0, mmUVD_JPEG_UV_PITCH),
> +};
> +
> static void jpeg_v2_5_set_dec_ring_funcs(struct amdgpu_device *adev);
> static void jpeg_v2_5_set_irq_funcs(struct amdgpu_device *adev);
> static int jpeg_v2_5_set_powergating_state(struct amdgpu_ip_block *ip_block,
> @@ -147,6 +163,10 @@ static int jpeg_v2_5_sw_init(struct amdgpu_ip_block *ip_block)
> if (r)
> return r;
>
> + r = amdgpu_jpeg_reg_dump_init(adev, jpeg_reg_list_2_5, ARRAY_SIZE(jpeg_reg_list_2_5));
> + if (r)
> + return r;
> +
> return 0;
> }
>
> @@ -168,6 +188,8 @@ static int jpeg_v2_5_sw_fini(struct amdgpu_ip_block *ip_block)
>
> r = amdgpu_jpeg_sw_fini(adev);
>
> + amdgpu_jpeg_reg_dump_fini(adev);
> +
> return r;
> }
>
> @@ -623,6 +645,8 @@ static const struct amd_ip_funcs jpeg_v2_5_ip_funcs = {
> .wait_for_idle = jpeg_v2_5_wait_for_idle,
> .set_clockgating_state = jpeg_v2_5_set_clockgating_state,
> .set_powergating_state = jpeg_v2_5_set_powergating_state,
> + .dump_ip_state = amdgpu_jpeg_dump_ip_state,
> + .print_ip_state = amdgpu_jpeg_print_ip_state,
> };
>
> static const struct amd_ip_funcs jpeg_v2_6_ip_funcs = {
> @@ -638,6 +662,8 @@ static const struct amd_ip_funcs jpeg_v2_6_ip_funcs = {
> .wait_for_idle = jpeg_v2_5_wait_for_idle,
> .set_clockgating_state = jpeg_v2_5_set_clockgating_state,
> .set_powergating_state = jpeg_v2_5_set_powergating_state,
> + .dump_ip_state = amdgpu_jpeg_dump_ip_state,
> + .print_ip_state = amdgpu_jpeg_print_ip_state,
> };
>
> static const struct amdgpu_ring_funcs jpeg_v2_5_dec_ring_vm_funcs = {
next prev parent reply other threads:[~2025-01-29 16:36 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-29 8:46 [PATCH v2 0/9] drm/amdgpu: Add jpeg devcoredump support Sathishkumar S
2025-01-29 8:46 ` [PATCH v2 1/9] drm/amdgpu: Add a func for core specific reg offset Sathishkumar S
2025-01-29 15:22 ` Leo Liu
2025-01-29 8:46 ` [PATCH v2 2/9] drm/amdgpu: Add helper funcs for jpeg devcoredump Sathishkumar S
2025-01-29 9:50 ` Lazar, Lijo
2025-01-29 10:21 ` Sundararaju, Sathishkumar
2025-01-29 10:45 ` Lazar, Lijo
2025-01-29 11:33 ` Sundararaju, Sathishkumar
2025-01-29 8:46 ` [PATCH v2 3/9] drm/amdgpu: Enable devcoredump for JPEG4_0_3 Sathishkumar S
2025-01-29 8:46 ` [PATCH v2 4/9] drm/amdgpu: Enable devcoredump for JPEG5_0_1 Sathishkumar S
2025-01-29 8:46 ` [PATCH v2 5/9] drm/amdgpu: Enable devcoredump for JPEG4_0_0 Sathishkumar S
2025-01-29 8:46 ` [PATCH v2 6/9] drm/amdgpu: Enable devcoredump for JPEG4_0_5 Sathishkumar S
2025-01-29 8:46 ` [PATCH v2 7/9] drm/amdgpu: Enable devcoredump for JPEG3_0_0 Sathishkumar S
2025-01-29 8:46 ` [PATCH v2 8/9] drm/amdgpu: Enable devcoredump for JPEG2_0_0 Sathishkumar S
2025-01-29 8:46 ` [PATCH v2 9/9] drm/amdgpu: Enable devcoredump for JPEG2_5_0 Sathishkumar S
2025-01-29 16:36 ` Leo Liu [this message]
2025-01-29 16:56 ` Sundararaju, Sathishkumar
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=420b603c-be80-413e-a069-b1edf3f2a04e@amd.com \
--to=leo.liu@amd.com \
--cc=Lijo.Lazar@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=sathishkumar.sundararaju@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