dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Lizhi Hou <lizhi.hou@amd.com>
To: <ogabbay@kernel.org>, <quic_jhugo@quicinc.com>,
	<dri-devel@lists.freedesktop.org>, <mario.limonciello@amd.com>,
	<karol.wachowski@linux.intel.com>
Cc: <linux-kernel@vger.kernel.org>, <max.zhen@amd.com>,
	<sonal.santan@amd.com>
Subject: Re: [PATCH V1 0/6] SR-IOV Virtual Function support for AIE4 platform
Date: Thu, 7 May 2026 14:23:56 -0700	[thread overview]
Message-ID: <bc1bf9be-f736-c012-4f79-1fe36a07113a@amd.com> (raw)
In-Reply-To: <20260505160936.3917732-1-lizhi.hou@amd.com>

Applied to drm-misc-next

On 5/5/26 09:09, Lizhi Hou wrote:
> This series extends amdxdna with initial support for AIE4 Virtual Functions
> and the user-visible execution path.
>
> Move message buffer allocation and device metadata collection to aie.c,
> allowing both AIE2 and AIE4 devices to reuse common code.
>
> Testing:
>    PF + VF: Probe AIE4 PF, enable SR-IOV, bind VF devices, and run
>    end-to-end workloads from a userspace application.
>
>    Regression: Validate existing AIE2 regression tests.
>
> David Zhang (5):
>    accel/amdxdna: Add initial support for AIE4 VF
>    accel/amdxdna: Init AIE4 device partition
>    accel/amdxdna: Add AIE4 VF hardware context create and destroy
>    accel/amdxdna: Add command doorbell and wait support
>    accel/amdxdna: Add AIE4 metadata query support
>
> Nishad Saraf (1):
>    accel/amdxdna: Add AIE4 work buffer initialization
>
>   drivers/accel/amdxdna/Makefile          |   1 +
>   drivers/accel/amdxdna/aie.c             |  79 ++++++
>   drivers/accel/amdxdna/aie.h             |  31 +++
>   drivers/accel/amdxdna/aie2_ctx.c        |   4 +-
>   drivers/accel/amdxdna/aie2_error.c      |   7 +-
>   drivers/accel/amdxdna/aie2_message.c    |  51 +---
>   drivers/accel/amdxdna/aie2_pci.c        |  54 +---
>   drivers/accel/amdxdna/aie2_pci.h        |  28 --
>   drivers/accel/amdxdna/aie4_ctx.c        | 333 ++++++++++++++++++++++++
>   drivers/accel/amdxdna/aie4_host_queue.h |  24 ++
>   drivers/accel/amdxdna/aie4_message.c    |  55 ++++
>   drivers/accel/amdxdna/aie4_msg_priv.h   |  98 +++++++
>   drivers/accel/amdxdna/aie4_pci.c        | 310 +++++++++++++++++-----
>   drivers/accel/amdxdna/aie4_pci.h        |  37 ++-
>   drivers/accel/amdxdna/amdxdna_ctx.c     |  40 +++
>   drivers/accel/amdxdna/amdxdna_ctx.h     |   7 +-
>   drivers/accel/amdxdna/amdxdna_gem.c     |   5 +-
>   drivers/accel/amdxdna/amdxdna_pci_drv.c |  25 +-
>   drivers/accel/amdxdna/amdxdna_pci_drv.h |   4 +
>   drivers/accel/amdxdna/npu3_regs.c       |  25 +-
>   include/uapi/drm/amdxdna_accel.h        |  24 +-
>   21 files changed, 1042 insertions(+), 200 deletions(-)
>   create mode 100644 drivers/accel/amdxdna/aie4_ctx.c
>   create mode 100644 drivers/accel/amdxdna/aie4_host_queue.h
>

      parent reply	other threads:[~2026-05-07 21:24 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-05 16:09 [PATCH V1 0/6] SR-IOV Virtual Function support for AIE4 platform Lizhi Hou
2026-05-05 16:09 ` [PATCH V1 1/6] accel/amdxdna: Add initial support for AIE4 VF Lizhi Hou
2026-05-05 19:37   ` Mario Limonciello
2026-05-05 16:09 ` [PATCH V1 2/6] accel/amdxdna: Init AIE4 device partition Lizhi Hou
2026-05-05 19:53   ` Mario Limonciello
2026-05-05 16:09 ` [PATCH V1 3/6] accel/amdxdna: Add AIE4 VF hardware context create and destroy Lizhi Hou
2026-05-05 20:28   ` Mario Limonciello
2026-05-05 16:09 ` [PATCH V1 4/6] accel/amdxdna: Add command doorbell and wait support Lizhi Hou
2026-05-05 20:31   ` Mario Limonciello
2026-05-06 16:11     ` Lizhi Hou
2026-05-06 16:33       ` Mario Limonciello
2026-05-05 16:09 ` [PATCH V1 5/6] accel/amdxdna: Add AIE4 metadata query support Lizhi Hou
2026-05-05 17:14   ` Mario Limonciello
2026-05-05 18:03     ` Lizhi Hou
2026-05-05 16:09 ` [PATCH V1 6/6] accel/amdxdna: Add AIE4 work buffer initialization Lizhi Hou
2026-05-05 20:36   ` Mario Limonciello
2026-05-07 21:23 ` Lizhi Hou [this message]

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=bc1bf9be-f736-c012-4f79-1fe36a07113a@amd.com \
    --to=lizhi.hou@amd.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=karol.wachowski@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mario.limonciello@amd.com \
    --cc=max.zhen@amd.com \
    --cc=ogabbay@kernel.org \
    --cc=quic_jhugo@quicinc.com \
    --cc=sonal.santan@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