From: Saleemkhan <saleemkhan083@gmail.com>
To: "Wu, David" <davidwu2@amd.com>,
amd-gfx@lists.freedesktop.org,
"David (Ming Qiang) Wu" <David.Wu3@amd.com>,
Christian.Koenig@amd.com, alexander.deucher@amd.com,
leo.liu@amd.com
Cc: Boyuan.Zhang@amd.com
Subject: Re: [PATCH 00/14] user queue support for VCN 4.0.5
Date: Thu, 19 Feb 2026 05:29:02 +0530 [thread overview]
Message-ID: <E4D35216-7325-4FBC-9270-27BC61BF2F49@gmail.com> (raw)
In-Reply-To: <8f4d596c-1888-47b9-a922-d48bb1adfb71@amd.com>
[-- Attachment #1: Type: text/plain, Size: 2922 bytes --]
Pls share the firmwares I would like to try them with current patches.
Regards,
Saleem
On 18 February 2026 11:43:10 pm IST, "Wu, David" <davidwu2@amd.com> wrote:
>On 2/18/2026 10:37 AM, Saleemkhan wrote:
>> Hi David, Leo,
>>
>>
>> Thank you for the UMSCH patches.
>>
>> Are the UMSCH and vcn firmware are upstreamed ?
>> I want to try this on Strix.
>>
>not yet - we are working on it for kernel first. A few patches here need to be reviewed/acked, then cherry-picking one patch which is in another branch as dependency. I have firmwares used for testing and branches for mesa and libdrm to support the kernel features, but not ready for upstreaming.
>
>David
>>
>> Regards,
>>
>> Saleem
>>
>>
>>
>> On 11 February 2026 3:17:15 am IST, "David (Ming Qiang) Wu" <David.Wu3@amd.com> wrote:
>>
>> add user queue support for VCN 4.0.5 David (Ming Qiang) Wu (10):
>> amdgpu: add global aggregated doorbell bo drm/amdgpu: add
>> AMDGPU_GEM_GLOBAL_AGGREGATED_DOORBELL drm/amdgpu/userq: add
>> doorbell size for VCN and VPE drm/amdgpu: use amdgpu_user_queue
>> instead of amdgpu_umsch_mm amdgpu/umsch: Add VCN IP init to umsch
>> driver drm/amdgpu/userq: change mes_userq_create_wptr_mapping() to
>> be common drm/amdgpu/userq: rework on
>> amdgpu_userq_create_wptr_mapping drm/amdgpu/umsch: user queue
>> support for vcn drm/amdgpu: add AMDGPU_INFO_DOORBELL
>> drm/amdgpu/umsch: userq suspend and resume context Saleemkhan
>> Jamadar (4): amdgpu/umsch: Update UMSCH interface and mqd
>> structure drm/amdgpu/vcn: changes when kernel queue is disabled
>> drm/amdgpu/vcn: handle interrupt received from fw drm/amdgpu/vcn:
>> handle the suspend context interrupt
>> drivers/gpu/drm/amd/amdgpu/amdgpu.h | 4 +-
>> drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 2 +-
>> drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c | 2 +-
>> .../gpu/drm/amd/amdgpu/amdgpu_doorbell_mgr.c | 16 +
>> drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 10 -
>> drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | 2 +
>> drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c | 18 ++
>> drivers/gpu/drm/amd/amdgpu/amdgpu_umsch_mm.c | 300
>> +++++++++++++++++- drivers/gpu/drm/amd/amdgpu/amdgpu_umsch_mm.h |
>> 43 ++- drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c | 69 +++-
>> drivers/gpu/drm/amd/amdgpu/amdgpu_userq.h | 4 +
>> drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.h | 4 +
>> drivers/gpu/drm/amd/amdgpu/mes_userqueue.c | 90 +-----
>> drivers/gpu/drm/amd/amdgpu/umsch_mm_v4_0.c | 75 ++++-
>> drivers/gpu/drm/amd/amdgpu/vcn_v4_0_5.c | 122 +++++--
>> .../amd/include/ivsrcid/vcn/irqsrcs_vcn_4_0.h | 10 +
>> .../drm/amd/include/umsch_mm_4_0_api_def.h | 12 +-
>> include/uapi/drm/amdgpu_drm.h | 14 + 18 files changed, 646
>> insertions(+), 151 deletions(-)
>>
>> --
>> Saleem
--
Saleem
[-- Attachment #2: Type: text/html, Size: 4176 bytes --]
next prev parent reply other threads:[~2026-02-18 23:59 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-10 21:47 [PATCH 00/14] user queue support for VCN 4.0.5 David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 01/14] amdgpu: add global aggregated doorbell bo David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 02/14] drm/amdgpu: add AMDGPU_GEM_GLOBAL_AGGREGATED_DOORBELL David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 03/14] drm/amdgpu/userq: add doorbell size for VCN and VPE David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 04/14] amdgpu/umsch: Update UMSCH interface and mqd structure David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 05/14] drm/amdgpu: use amdgpu_user_queue instead of amdgpu_umsch_mm David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 06/14] drm/amdgpu/vcn: changes when kernel queue is disabled David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 07/14] amdgpu/umsch: Add VCN IP init to umsch driver David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 08/14] drm/amdgpu/userq: change mes_userq_create_wptr_mapping() to be common David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 09/14] drm/amdgpu/userq: rework on amdgpu_userq_create_wptr_mapping David (Ming Qiang) Wu
2026-04-24 13:37 ` Alex Deucher
2026-04-27 8:44 ` Zhang, Jesse(Jie)
2026-02-10 21:47 ` [PATCH 10/14] drm/amdgpu/umsch: user queue support for vcn David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 11/14] drm/amdgpu: add AMDGPU_INFO_DOORBELL David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 12/14] drm/amdgpu/vcn: handle interrupt received from fw David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 13/14] drm/amdgpu/umsch: userq suspend and resume context David (Ming Qiang) Wu
2026-02-10 21:47 ` [PATCH 14/14] drm/amdgpu/vcn: handle the suspend context interrupt David (Ming Qiang) Wu
2026-02-18 15:37 ` [PATCH 00/14] user queue support for VCN 4.0.5 Saleemkhan
2026-02-18 18:13 ` Wu, David
2026-02-18 23:59 ` Saleemkhan [this message]
2026-02-19 18:00 ` David Wu
2026-04-17 15:22 ` Wu, David
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=E4D35216-7325-4FBC-9270-27BC61BF2F49@gmail.com \
--to=saleemkhan083@gmail.com \
--cc=Boyuan.Zhang@amd.com \
--cc=Christian.Koenig@amd.com \
--cc=David.Wu3@amd.com \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=davidwu2@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