From: Alex Deucher <alexander.deucher@amd.com>
To: <amd-gfx@lists.freedesktop.org>
Cc: Mukul Joshi <mukul.joshi@amd.com>,
Felix Kuehling <felix.kuehling@amd.com>,
Alex Deucher <alexander.deucher@amd.com>
Subject: [PATCH 49/95] drm/amdgpu: Implement UALink handle import ioctl
Date: Fri, 21 Aug 2026 15:34:12 -0400 [thread overview]
Message-ID: <20260821193458.808626-50-alexander.deucher@amd.com> (raw)
In-Reply-To: <20260821193458.808626-1-alexander.deucher@amd.com>
From: Mukul Joshi <mukul.joshi@amd.com>
The ualink handle import process involves NPA protocol
message exchange between the exporting and the importing
GPUs in the rack scale setup. The process is as follows:
1. On the importing GPU, check if connection is already setup
with the exporting GPU. If not, then exchange HELLO/HELLO_ACK
messages to setup the connection.
2. Once the connection is setup, then exchange NPA-REQ/NPA-RSP
messages with the exporter GPU to get the NPA address and size
of the BO associated with the ualink handle.
3. On the exporter GPU, upon receipt of NPA-REQ message, do basic
validation to check the ualink handle is valid. If not, send a
NPA-FAIL message back. If its valid, then using the address
allocator, allocate a NPA address, map it into the NPA VM and
send back the address and size in the NPA-RSP to the importing GPU.
4. On the importer GPU, upon receipt of NPA-RSP message, allocate a NPA
BO at the NPA address received in the NPA-RSP message.
5. Finally, generate the corresponding DMABuf for the NPA BO and return
the dmabuf to user-space.
6. We are using refcount to keep track of the importer/exporter xarray
entries. The cleanup functions for these are added in the subsequent
patches.
Signed-off-by: Mukul Joshi <mukul.joshi@amd.com>
Reviewed-by: Felix Kuehling <felix.kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.c | 900 +++++++++++++++++++++
drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.h | 73 ++
2 files changed, 973 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.c
index 9ef67d10aa963..60080271b3bd0 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.c
@@ -35,6 +35,20 @@ static void deactivate_accelerator(struct amdgpu_device *adev);
static int amdgpu_ualink_remote_interrupt(struct amdgpu_device *adev,
u32 remote_accel_id, u32 dw0, u32 dw1,
u32 dw2, u32 dw3);
+static void amdgpu_ualink_flush_tlb(struct amdgpu_device *adev,
+ u32 flush_type);
+static int amdgpu_ualink_reserve_npa_vm_and_bos(struct amdgpu_device *adev,
+ struct amdgpu_bo *bos[], u32 n_bos,
+ struct drm_exec *exec,
+ bool interruptible);
+static void amdgpu_ualink_unreserve_npa_vm_and_bos(struct amdgpu_device *adev,
+ struct drm_exec *exec);
+#define STRIP_NPA(addr) \
+ (((u64)(addr) & ~AMDGPU_UALINK_NPA_ADDR_GPUID_MASK))
+
+#define GENERATE_NPA(addr, remote_acc_id) \
+ ((u64)(((u64)(addr)) | \
+ ((u64)(remote_acc_id) << AMDGPU_UALINK_NPA_ADDR_GPUID_SHIFT)))
static const struct drm_client_funcs ualink_client_funcs = {
.unregister = drm_client_release,
@@ -1209,6 +1223,222 @@ static void amdgpu_generate_ualink_handle(struct amdgpu_device *adev,
handle->handle_hi, handle->handle_lo);
}
+static void amdgpu_ualink_cleanup_exp_xa_node(struct kref *ref)
+{
+}
+
+static void amdgpu_ualink_cleanup_imp_xa_node(struct kref *ref)
+{
+}
+
+static int amdgpu_ualink_exp_xa_entry_get(struct amdgpu_ualink_exp_xa_node *exp_xa_node)
+{
+ return kref_get_unless_zero(&exp_xa_node->refcount);
+}
+
+static void amdgpu_ualink_exp_xa_entry_put(struct amdgpu_ualink_exp_xa_node *exp_xa_node)
+{
+ kref_put(&exp_xa_node->refcount, amdgpu_ualink_cleanup_exp_xa_node);
+}
+
+static int amdgpu_ualink_imp_xa_entry_get(struct amdgpu_ualink_imp_xa_node *imp_xa_node)
+{
+ return kref_get_unless_zero(&imp_xa_node->refcount);
+}
+
+static void amdgpu_ualink_imp_xa_entry_put(struct amdgpu_ualink_imp_xa_node *imp_xa_node)
+{
+ kref_put(&imp_xa_node->refcount, amdgpu_ualink_cleanup_imp_xa_node);
+}
+
+static int amdgpu_ualink_send_npa_fail_msg(struct amdgpu_device *adev,
+ u32 remote_acc_id,
+ struct amdgpu_ualink_handle handle,
+ u32 fail_reason)
+{
+ u32 dw0, dw1, dw2, dw3;
+
+ dw0 = lower_32_bits(handle.handle_lo);
+ dw0 &= ~AMDGPU_UALINK_MESSAGE_HEADER_MASK;
+ dw0 |= AMDGPU_UALINK_NPA_FAIL_MSG;
+
+ dw1 = upper_32_bits(handle.handle_lo);
+ dw2 = fail_reason & 0xFF;
+ dw3 = 0;
+
+ dev_dbg(adev->dev, "SEND NPA-FAIL: remote_acc_id %u handle 0x%llx:%llx dw[0-3] 0x%x 0x%x 0x%x 0x%x\n",
+ remote_acc_id, handle.handle_hi, handle.handle_lo, dw0, dw1, dw2, dw3);
+
+ return amdgpu_ualink_remote_interrupt(adev, remote_acc_id, dw0, dw1,
+ dw2, dw3);
+}
+
+static int amdgpu_ualink_send_npa_rsp_msg(struct amdgpu_device *adev,
+ u32 remote_acc_id,
+ struct amdgpu_ualink_handle handle,
+ u32 npa_addr, u32 size)
+{
+ u32 dw0, dw1, dw2, dw3;
+
+ dw0 = lower_32_bits(handle.handle_lo);
+ dw0 &= ~AMDGPU_UALINK_MESSAGE_HEADER_MASK;
+ dw0 |= AMDGPU_UALINK_NPA_RSP_MSG;
+
+ dw1 = upper_32_bits(handle.handle_lo);
+ dw2 = size;
+ dw3 = npa_addr;
+
+ dev_dbg(adev->dev, "SEND NPA-RSP: remote_acc_id %u handle %llx:%llx dw[0-3] 0x%x 0x%x 0x%x 0x%x\n",
+ remote_acc_id, handle.handle_hi, handle.handle_lo, dw0, dw1, dw2, dw3);
+
+ return amdgpu_ualink_remote_interrupt(adev, remote_acc_id, dw0, dw1,
+ dw2, dw3);
+}
+
+static int amdgpu_ualink_send_npa_req_msg(struct amdgpu_device *adev,
+ u32 remote_acc_id,
+ struct amdgpu_ualink_handle handle)
+{
+ u32 dw0, dw1, dw2, dw3;
+
+ dw0 = lower_32_bits(handle.handle_lo);
+ dw0 &= ~AMDGPU_UALINK_MESSAGE_HEADER_MASK;
+ dw0 |= AMDGPU_UALINK_NPA_REQ_MSG;
+
+ dw1 = upper_32_bits(handle.handle_lo);
+ dw2 = lower_32_bits(handle.handle_hi);
+ dw3 = upper_32_bits(handle.handle_hi);
+
+ dev_dbg(adev->dev, "SEND NPA-REQ: remote_acc_id %u handle 0x%llx:%llx dw[0-3] 0x%x 0x%x 0x%x 0x%x\n",
+ remote_acc_id, handle.handle_hi, handle.handle_lo, dw0, dw1, dw2, dw3);
+
+ return amdgpu_ualink_remote_interrupt(adev, remote_acc_id, dw0, dw1,
+ dw2, dw3);
+}
+
+static int amdgpu_ualink_send_tlb_shootdown(struct amdgpu_device *adev,
+ u32 remote_acc_id)
+{
+ return 0;
+}
+
+static u64 amdgpu_ualink_get_export_pte_flags(struct amdgpu_device *adev,
+ struct amdgpu_bo *bo,
+ u64 mapping_flags)
+{
+ u64 pte_flags = adev->gmc.init_pte_flags;
+
+ pte_flags |= (AMDGPU_PTE_VALID | AMDGPU_PTE_READABLE |
+ AMDGPU_PTE_WRITEABLE);
+ mapping_flags |= AMDGPU_VM_MTYPE_DEFAULT;
+
+ amdgpu_gmc_get_vm_pte(adev, &adev->ualink.npa_vm, bo, mapping_flags,
+ &pte_flags);
+
+ return pte_flags;
+}
+
+static int amdgpu_ualink_unmap_npa_addr(struct amdgpu_device *adev,
+ struct amdgpu_bo *bo,
+ u64 npa_addr, u64 size)
+{
+ uint64_t pte_value = adev->gmc.noretry_flags;
+ struct amdgpu_bo *bos[] = { bo };
+ struct dma_fence *fence;
+ struct drm_exec exec;
+ int r;
+
+ amdgpu_ualink_reserve_npa_vm_and_bos(adev, bos, ARRAY_SIZE(bos), &exec, false);
+
+ r = amdgpu_vm_update_range(adev, &adev->ualink.npa_vm, false, false, true,
+ false, NULL, npa_addr, npa_addr + size - 1,
+ pte_value, 0, 0, NULL, NULL, &fence);
+ if (r) {
+ dev_err(adev->dev,
+ "Failed to unmap NPA addr (%llx) from NPA VM\n", npa_addr);
+ goto out;
+ }
+
+ r = amdgpu_vm_update_pdes(adev, &adev->ualink.npa_vm, false);
+ if (r) {
+ dev_err(adev->dev,
+ "Failed %d to update page directories during unmapping NPA: 0x%llx\n",
+ r, npa_addr);
+ goto out;
+ }
+
+ if (fence) {
+ r = dma_fence_wait(fence, false);
+ dma_fence_put(fence);
+ fence = NULL;
+ if (r)
+ goto out;
+ }
+
+ amdgpu_ualink_flush_tlb(adev, TLB_FLUSH_HEAVYWEIGHT);
+out:
+ amdgpu_ualink_unreserve_npa_vm_and_bos(adev, &exec);
+
+ return r;
+}
+
+static int amdgpu_ualink_map_npa_addr(struct amdgpu_device *adev, u64 npa_addr,
+ u64 size, struct amdgpu_bo *bo, u64 offset,
+ u64 pte_flags)
+{
+ struct amdgpu_vm *vm = &adev->ualink.npa_vm;
+ struct amdgpu_bo *bos[] = { bo };
+ struct dma_fence *fence = NULL;
+ struct drm_exec exec;
+ int r;
+
+ amdgpu_ualink_reserve_npa_vm_and_bos(adev, bos, ARRAY_SIZE(bos), &exec, false);
+
+ r = amdgpu_vm_update_range(adev, vm, false, false, true,
+ false, NULL, npa_addr, npa_addr + size - 1,
+ pte_flags, offset, adev->vm_manager.vram_base_offset,
+ bo->tbo.resource, NULL, &vm->last_update);
+ if (r) {
+ dev_warn(adev->dev,
+ "Failed to map NPA addr (%llx) into NPA VM\n", npa_addr);
+ amdgpu_ualink_unreserve_npa_vm_and_bos(adev, &exec);
+ goto out;
+ }
+
+ r = amdgpu_vm_update_pdes(adev, vm, false);
+ if (r) {
+ dev_err(adev->dev,
+ "failed %d to update page directories for NPA: 0x%llx\n",
+ r, npa_addr);
+ amdgpu_ualink_unreserve_npa_vm_and_bos(adev, &exec);
+ goto unmap_npa;
+ }
+
+ fence = dma_fence_get(vm->last_update);
+ if (fence) {
+ r = dma_fence_wait(fence, false);
+ dma_fence_put(fence);
+ fence = NULL;
+ if (r) {
+ pr_debug("failed %d to dma fence wait\n", r);
+ amdgpu_ualink_unreserve_npa_vm_and_bos(adev, &exec);
+ goto unmap_npa;
+ }
+ }
+
+ amdgpu_ualink_unreserve_npa_vm_and_bos(adev, &exec);
+
+ /* TLB flush may be needed after updated page directories */
+ amdgpu_ualink_flush_tlb(adev, TLB_FLUSH_HEAVYWEIGHT);
+
+ return 0;
+
+unmap_npa:
+ amdgpu_ualink_unmap_npa_addr(adev, bo, npa_addr, size);
+out:
+ return r;
+}
+
static int amdgpu_ualink_send_hello_ack_msg(struct amdgpu_device *adev,
u32 remote_acc_id)
{
@@ -1436,6 +1666,676 @@ static void amdgpu_ualink_exp_cleanup_worker(struct work_struct *work)
{
}
+static int amdgpu_ualink_map_npa_to_dmabuf(struct amdgpu_device *adev,
+ struct amdgpu_ualink_imp_xa_node *imp_xa_node)
+{
+ u64 alloc_flags = AMDGPU_GEM_CREATE_NO_CPU_ACCESS, npa_addr, size;
+ struct ttm_operation_ctx ctx = { false, false };
+ u32 initial_domain = AMDGPU_GEM_DOMAIN_CPU;
+ struct drm_gem_object *gobj = NULL;
+ struct dma_buf *dmabuf;
+ struct amdgpu_bo *bo;
+ u32 handle;
+ int r;
+
+ npa_addr = imp_xa_node->npa_addr;
+ size = imp_xa_node->size;
+
+ dev_dbg(adev->dev, "Create NPA BO addr 0x%llx size in pages 0x%llx\n",
+ npa_addr, size);
+
+ /* TODO: Check if this needs to be on a xcp_id basis */
+ r = amdgpu_gem_object_create(adev, size * AMDGPU_GPU_PAGE_SIZE, 1,
+ initial_domain, alloc_flags,
+ ttm_bo_type_device, NULL, &gobj, 0);
+ if (r) {
+ dev_err(adev->dev,
+ "Failed to create NPA BO in CPU domain. ret %d\n", r);
+ return r;
+ }
+
+ bo = gem_to_amdgpu_bo(gobj);
+ amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_NPA);
+
+ bo->placements[0].fpfn = npa_addr;
+ bo->placements[0].lpfn = npa_addr + size;
+
+ r = amdgpu_bo_reserve(bo, false);
+ if (unlikely(r != 0)) {
+ dev_err(adev->dev, "Failed to reserve NPA BO, r: %d\n", r);
+ goto err_reserve_failed;
+ }
+
+ r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
+ amdgpu_bo_unreserve(bo);
+ if (r) {
+ dev_err(adev->dev,
+ "Failed to validate BO in NPA domain, r: %d\n", r);
+ goto err_validate_failed;
+ }
+
+ r = drm_gem_handle_create(adev->ualink.client.file, gobj, &handle);
+ if (r) {
+ dev_err(adev->dev,
+ "Failed to get handle for NPA GEM object, r: %d\n", r);
+ goto err_validate_failed;
+ }
+ drm_gem_object_put(gobj);
+
+ dmabuf = drm_gem_prime_handle_to_dmabuf(&adev->ddev, adev->ualink.client.file,
+ handle, DRM_CLOEXEC | DRM_RDWR);
+ if (IS_ERR(dmabuf)) {
+ r = PTR_ERR(dmabuf);
+ dev_err(adev->dev,
+ "Failed to generate DMABuf for NPA GEM object\n");
+ goto err_dmabuf_failed;
+ }
+
+ imp_xa_node->dmabuf = dmabuf;
+ imp_xa_node->gem_handle = handle;
+
+ return 0;
+
+err_dmabuf_failed:
+ drm_gem_handle_delete(adev->ualink.client.file, handle);
+ return r;
+err_validate_failed:
+err_reserve_failed:
+ drm_gem_object_put(gobj);
+
+ return r;
+}
+
+static void amdgpu_ualink_process_npa_fail_msg(struct amdgpu_device *adev,
+ u32 remote_acc_id, u64 partial_handle,
+ u32 fail_reason)
+{
+ struct amdgpu_ualink_imp_xa_node *imp_xa_node;
+ int r = 0;
+
+ if (!amdgpu_ualink_check_conn_ready(adev, remote_acc_id, 0)) {
+ dev_warn(adev->dev,
+ "NPA-FAIL: no connection with remote AccId:%u\n",
+ remote_acc_id);
+ goto conn_setup;
+ }
+
+ xa_lock(&adev->ualink.imp_xa);
+ imp_xa_node = xa_load(&adev->ualink.imp_xa, partial_handle);
+ if (!imp_xa_node) {
+ xa_unlock(&adev->ualink.imp_xa);
+ dev_warn(adev->dev,
+ "NPA-FAIL: imp XA handle not found:%llx\n",
+ partial_handle);
+ return;
+ }
+
+ imp_xa_node->fail_reason = fail_reason;
+ /* Signal completion done to signal response received for NPA-REQ
+ * message.
+ * If the node is in NOT_READY state, then set the node state to
+ * PENDING and signal the completion. If the node is not in NOT_READY
+ * state, then it is an unsolicited NPA-FAIL message and we
+ * log a debug message.
+ */
+ if (READ_ONCE(imp_xa_node->node_state) == AMDGPU_UALINK_NODE_NOT_READY) {
+ WRITE_ONCE(imp_xa_node->node_state, AMDGPU_UALINK_NODE_PENDING);
+ complete(&imp_xa_node->npa_done);
+ } else {
+ dev_dbg(adev->dev,
+ "NPA-FAIL: unsolicited for handle:%llx:%llx from AccId:%u\n",
+ imp_xa_node->handle.handle_hi, imp_xa_node->handle.handle_lo,
+ remote_acc_id);
+ }
+ xa_unlock(&adev->ualink.imp_xa);
+
+ return;
+
+conn_setup:
+ r = amdgpu_ualink_setup_connection(adev, remote_acc_id);
+ if (r)
+ dev_warn(adev->dev,
+ "NPA-FAIL: connection setup failed with remote AccId:%u\n",
+ remote_acc_id);
+}
+
+static void amdgpu_ualink_process_npa_rsp_msg(struct amdgpu_device *adev,
+ u32 remote_acc_id, u64 partial_handle,
+ u64 npa_addr, u64 size)
+{
+ struct amdgpu_ualink_imp_xa_node *imp_xa_node;
+ int r = 0;
+
+ /* Check if the connection is established. If it is not, then start
+ * connection setup.
+ */
+ if (!amdgpu_ualink_check_conn_ready(adev, remote_acc_id, 0)) {
+ dev_warn(adev->dev,
+ "NPA-RSP: no connection with remote AccId:%u\n",
+ remote_acc_id);
+ goto conn_setup;
+ }
+
+ xa_lock(&adev->ualink.imp_xa);
+ imp_xa_node = xa_load(&adev->ualink.imp_xa, partial_handle);
+ if (!imp_xa_node) {
+ xa_unlock(&adev->ualink.imp_xa);
+ dev_warn(adev->dev,
+ "NPA-RSP: imp XA handle not found:%llx\n", partial_handle);
+ return;
+ }
+
+ /* NPA addr received in NPA-RSP is page aligned and without the remote
+ * GPU-id in Bits 41-50. Assemble back the NPA address before storing
+ * it.
+ */
+ imp_xa_node->npa_addr = GENERATE_NPA(npa_addr, remote_acc_id);
+ /* Size is in number of GPU pages granularity. */
+ imp_xa_node->size = size;
+
+ /* Signal completion done to signal NPA_RSP received.
+ * If the node is in NOT_READY state, then set the node state to
+ * PENDING and signal the completion. If the node is not in NOT_READY
+ * state, then it is an unsolicited NPA-RSP message and we
+ * log a debug message.
+ */
+ if (READ_ONCE(imp_xa_node->node_state) == AMDGPU_UALINK_NODE_NOT_READY) {
+ WRITE_ONCE(imp_xa_node->node_state, AMDGPU_UALINK_NODE_PENDING);
+ complete(&imp_xa_node->npa_done);
+ } else {
+ dev_dbg(adev->dev,
+ "NPA-RSP: unsolicited for handle:%llx:%llx from AccId:%u\n",
+ imp_xa_node->handle.handle_hi, imp_xa_node->handle.handle_lo,
+ remote_acc_id);
+ }
+ xa_unlock(&adev->ualink.imp_xa);
+
+ return;
+
+conn_setup:
+ r = amdgpu_ualink_setup_connection(adev, remote_acc_id);
+ if (r)
+ dev_warn(adev->dev,
+ "NPA-RSP: connection setup failed with remote AccId:%u\n",
+ remote_acc_id);
+}
+
+static void amdgpu_ualink_process_npa_req_msg(struct amdgpu_device *adev,
+ u32 remote_acc_id,
+ struct amdgpu_ualink_handle handle)
+{
+ struct amdgpu_ualink_importer_entry *importer_entry, *npa_addr_entry;
+ u32 addr_mode = adev->ualink.info->vpod.addr_mode;
+ struct amdgpu_ualink_exp_xa_node *exp_xa_node;
+ u64 range_start, range_end, pte_flags;
+ struct drm_mm_node *mm_node = NULL;
+ int r = 0, fail_reason = 0;
+ bool send_npa_fail = true;
+ u64 npa_addr = 0, size;
+ struct amdgpu_bo *bo;
+ u32 gen_count;
+
+ /* Check if the connection is established. If it is not, then start
+ * connection setup.
+ */
+ gen_count = amdgpu_ualink_check_conn_ready(adev, remote_acc_id, 0);
+ if (!gen_count) {
+ dev_warn(adev->dev,
+ "NPA-REQ: no connection with remote AccId:%u\n",
+ remote_acc_id);
+ goto conn_setup;
+ }
+
+ /* Check entry exists in Exporter XA. If yes, increase the refcount
+ * for the node.
+ */
+ xa_lock(&adev->ualink.exp_xa);
+ exp_xa_node = xa_load(&adev->ualink.exp_xa, handle.handle_lo);
+ if (!exp_xa_node || (handle.handle_hi != exp_xa_node->handle.handle_hi) ||
+ !amdgpu_ualink_exp_xa_entry_get(exp_xa_node)) {
+ xa_unlock(&adev->ualink.exp_xa);
+ dev_warn(adev->dev,
+ "NPA-REQ: exp XA handle not found handle:%llx:%llx\n",
+ handle.handle_hi, handle.handle_lo);
+ fail_reason = AMDGPU_UALINK_NPA_FAIL_INVALID_HANDLE;
+ goto handle_invalid_fail;
+ }
+ xa_unlock(&adev->ualink.exp_xa);
+
+ bo = exp_xa_node->bo;
+ size = amdgpu_bo_ngpu_pages(bo);
+
+ /* Pin the BO */
+ r = amdgpu_bo_reserve(bo, true);
+ if (unlikely(r)) {
+ dev_warn(adev->dev,
+ "NPA-REQ: BO reserve failed handle:%llx:%llx\n",
+ handle.handle_hi, handle.handle_lo);
+ fail_reason = AMDGPU_UALINK_NPA_FAIL_ERROR;
+ goto bo_reserve_fail;
+ }
+ r = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_VRAM);
+ amdgpu_bo_unreserve(bo);
+ if (r) {
+ dev_warn(adev->dev,
+ "NPA-REQ: BO pin failed handle:%llx:%llx\n",
+ handle.handle_hi, handle.handle_lo);
+ fail_reason = AMDGPU_UALINK_NPA_FAIL_ERROR;
+ goto bo_pin_fail;
+ }
+
+ if (addr_mode == AMDGPU_UALINK_ADDR_MODE_SOURCE_IDENT) {
+ mutex_lock(&exp_xa_node->node_lock);
+ importer_entry = &exp_xa_node->importer_entries[remote_acc_id];
+ npa_addr_entry = importer_entry;
+ mutex_unlock(&exp_xa_node->node_lock);
+ /* Check if NPA address is already allocated for this importer.
+ * If yes, then send the NPA-FAIL message back to the remote GPU.
+ */
+ if (importer_entry->npa_addr) {
+ fail_reason = AMDGPU_UALINK_NPA_FAIL_DUPLICATE;
+ goto npa_duplicate_fail;
+ }
+
+ range_start = ((u64)remote_acc_id << AMDGPU_UALINK_NPA_ADDR_GPUID_SHIFT) |
+ AMDGPU_UALINK_NPA_ADDR_RANGE_RESERVED;
+ range_end = range_start | AMDGPU_UALINK_NPA_ADDR_RANGE_MASK;
+ } else {
+ /* We store NPA-address in importer_entries[0] in
+ * Source-Aliasing mode.
+ */
+ mutex_lock(&exp_xa_node->node_lock);
+ npa_addr_entry = &exp_xa_node->importer_entries[0];
+ importer_entry = &exp_xa_node->importer_entries[remote_acc_id];
+ /* Check if NPA address is already allocated for this importer.
+ * If yes, then set the corresponding bit in the importers_bitmap,
+ * set the generation count and send the NPA-RSP back to the remote GPU.
+ */
+ if (npa_addr_entry->npa_addr) {
+ npa_addr = npa_addr_entry->npa_addr;
+ set_bit(remote_acc_id, exp_xa_node->importers_bitmap);
+ importer_entry->generation_count = gen_count;
+ mutex_unlock(&exp_xa_node->node_lock);
+ dev_dbg(adev->dev,
+ "NPA-REQ: NPA:%llx size:%llx handle:%llx:%llx\n",
+ npa_addr, size, handle.handle_hi, handle.handle_lo);
+
+ goto send_npa_rsp;
+ }
+ mutex_unlock(&exp_xa_node->node_lock);
+
+ range_start = 0;
+ range_end = 0;
+ }
+
+ mm_node = kzalloc(sizeof(*mm_node), GFP_KERNEL);
+ if (!mm_node) {
+ dev_warn(adev->dev,
+ "NPA-REQ: mm_node alloc failed handle:%llx:%llx\n",
+ handle.handle_hi, handle.handle_lo);
+ fail_reason = AMDGPU_UALINK_NPA_FAIL_NOSPACE;
+ goto mem_alloc_fail;
+ }
+
+ /* Allocate NPA address */
+ r = amdgpu_ualink_npa_alloc_va(adev, mm_node, 0, range_start,
+ range_end, size);
+ if (r) {
+ dev_warn(adev->dev,
+ "NPA-REQ: NPA addr alloc failed handle:%llx:%llx\n",
+ handle.handle_hi, handle.handle_lo);
+ fail_reason = AMDGPU_UALINK_NPA_FAIL_NOSPACE;
+ goto npa_alloc_fail;
+ }
+ npa_addr = mm_node->start;
+
+ pte_flags = amdgpu_ualink_get_export_pte_flags(adev, bo, 0);
+ dev_dbg(adev->dev,
+ "NPA-REQ: Allocated NPA:%llx size:%llx PTE:%llx handle:%llx:%llx\n",
+ npa_addr, size, pte_flags, handle.handle_hi, handle.handle_lo);
+
+ /* Map the NPA address into NPA VM*/
+ r = amdgpu_ualink_map_npa_addr(adev, npa_addr, size, bo, 0, pte_flags);
+ if (r) {
+ fail_reason = AMDGPU_UALINK_NPA_FAIL_ERROR;
+ dev_warn(adev->dev,
+ "NPA-REQ: NPA addr (%llx) map failed handle:%llx:%llx\n",
+ npa_addr, handle.handle_hi, handle.handle_lo);
+ goto map_npa_fail;
+ }
+
+ dev_dbg(adev->dev,
+ "NPA-REQ: Mapped NPA:%llx size:%llx pte:%llx handle:%llx:%llx\n",
+ npa_addr, size, pte_flags, handle.handle_hi, handle.handle_lo);
+send_npa_rsp:
+ /* Send NPA-RSP back to the remote GPU */
+ r = amdgpu_ualink_send_npa_rsp_msg(adev, remote_acc_id, handle,
+ STRIP_NPA(npa_addr), size);
+ if (r) {
+ dev_warn(adev->dev,
+ "NPA-REQ: send NPA-RSP failed remote:%u handle:%llx:%llx\n",
+ remote_acc_id, handle.handle_hi, handle.handle_lo);
+ send_npa_fail = false;
+ goto send_npa_rsp_fail;
+ }
+
+ dev_dbg(adev->dev,
+ "NPA-REQ: Sent NPA-RSP with NPA:%llx size:%llx handle:%llx:%llx\n",
+ npa_addr, size, handle.handle_hi, handle.handle_lo);
+
+ /* If this is the first time we are setting the bit for this importer,
+ * then store the NPA address, mm_node and generation count.
+ */
+ mutex_lock(&exp_xa_node->node_lock);
+ if (!test_and_set_bit(remote_acc_id, exp_xa_node->importers_bitmap)) {
+ npa_addr_entry->npa_addr = npa_addr;
+ npa_addr_entry->mm_node = mm_node;
+ importer_entry->generation_count = gen_count;
+ }
+ mutex_unlock(&exp_xa_node->node_lock);
+
+ dev_dbg(adev->dev,
+ "NPA-REQ: BO pin_count:%d, importers:%d, handle:%llx:%llx\n",
+ bo->tbo.pin_count, bitmap_weight(exp_xa_node->importers_bitmap,
+ AMDGPU_UALINK_ACCEL_MAX), handle.handle_hi, handle.handle_lo);
+ WARN_ON(bo->tbo.pin_count < bitmap_weight(exp_xa_node->importers_bitmap,
+ AMDGPU_UALINK_ACCEL_MAX));
+
+ /* Add this node to the exported handles list for the remote GPU,
+ * but only if the node is still in exp_xa. If revoke already erased
+ * it, skip the list_add to avoid a dangling list entry. The cleanup
+ * worker is guaranteed to run after we drop our ref, so it will see
+ * this importer in the bitmap and send NPA-REVOKE.
+ */
+ xa_lock(&adev->ualink.exp_xa);
+ if (xa_load(&adev->ualink.exp_xa, exp_xa_node->handle.handle_lo) == exp_xa_node)
+ list_add(&importer_entry->list, &adev->ualink.exp_handles_list[remote_acc_id]);
+ xa_unlock(&adev->ualink.exp_xa);
+
+ amdgpu_ualink_exp_xa_entry_put(exp_xa_node);
+
+ return;
+
+send_npa_rsp_fail:
+ mutex_lock(&exp_xa_node->node_lock);
+ clear_bit(remote_acc_id, exp_xa_node->importers_bitmap);
+ mutex_unlock(&exp_xa_node->node_lock);
+ if (mm_node)
+ amdgpu_ualink_unmap_npa_addr(adev, bo, npa_addr, size);
+
+map_npa_fail:
+ if (mm_node)
+ amdgpu_ualink_npa_free_va(adev, mm_node);
+
+npa_alloc_fail:
+ kfree(mm_node);
+mem_alloc_fail:
+npa_duplicate_fail:
+ r = amdgpu_bo_reserve(bo, true);
+ if (likely(!r)) {
+ amdgpu_bo_unpin(bo);
+ amdgpu_bo_unreserve(bo);
+ } else {
+ dev_warn(adev->dev,
+ "NPA-REQ: BO reserve to unpin failed for handle:%llx:%llx\n",
+ handle.handle_hi, handle.handle_lo);
+ }
+
+bo_pin_fail:
+bo_reserve_fail:
+ amdgpu_ualink_exp_xa_entry_put(exp_xa_node);
+
+handle_invalid_fail:
+ if (send_npa_fail) {
+ r = amdgpu_ualink_send_npa_fail_msg(adev, remote_acc_id,
+ handle, fail_reason);
+ if (r)
+ dev_warn(adev->dev,
+ "NPA-REQ: send NPA-FAIL failed remote:%u handle:%llx:%llx\n",
+ remote_acc_id, handle.handle_hi, handle.handle_lo);
+ }
+ return;
+conn_setup:
+ r = amdgpu_ualink_setup_connection(adev, remote_acc_id);
+ if (r)
+ dev_warn(adev->dev,
+ "NPA-REQ: connection setup failed with remote AccId:%u\n",
+ remote_acc_id);
+}
+
+static int amdgpu_ualink_translate_npa_fail_reason(struct amdgpu_device *adev,
+ u32 fail_reason)
+{
+ switch (fail_reason) {
+ case AMDGPU_UALINK_NPA_FAIL_NOSPACE:
+ return -ENOSPC;
+ case AMDGPU_UALINK_NPA_FAIL_INVALID_HANDLE:
+ case AMDGPU_UALINK_NPA_FAIL_DUPLICATE:
+ case AMDGPU_UALINK_NPA_FAIL_ERROR:
+ return -EINVAL;
+ default:
+ dev_err(adev->dev,
+ "IMPORT: invalid NPA-FAIL reason:%u\n",
+ fail_reason);
+ return -EINVAL;
+ }
+}
+
+static int amdgpu_ualink_do_import_handle(struct amdgpu_device *adev,
+ struct amdgpu_ualink_imp_xa_node *imp_xa_node,
+ u32 remote_acc_id)
+{
+ struct amdgpu_ualink_handle handle = imp_xa_node->handle;
+ int r;
+
+ /* First check if the connection is setup with the
+ * remote GPU. If yes, then initiate the NPA protocol to
+ * get the NPA address.
+ * If not, then initiate the HELLO protocol to first setup
+ * the connection and once the connection is setup, then
+ * initiate the NPA protocol.
+ */
+ r = amdgpu_ualink_setup_connection(adev, remote_acc_id);
+ if (r) {
+ if (r != -EAGAIN)
+ dev_warn(adev->dev,
+ "IMPORT: connection setup failed with remote AccId:%u\n",
+ remote_acc_id);
+ return r;
+ }
+
+ /* Send NPA_REQ message */
+ r = amdgpu_ualink_send_npa_req_msg(adev, remote_acc_id, handle);
+ if (r) {
+ dev_warn(adev->dev,
+ "IMPORT: NPA-REQ send failed to remote AccId:%u\n",
+ remote_acc_id);
+ return r;
+ }
+
+ /* Wait for the NPA_RSP to come back */
+ r = wait_for_completion_interruptible_timeout(&imp_xa_node->npa_done,
+ msecs_to_jiffies(AMDGPU_UALINK_RESP_TIMEOUT));
+ if (r == -ERESTARTSYS) {
+ dev_err_ratelimited(adev->dev,
+ "IMPORT: NPA-RSP wait interrupted by signal\n");
+ return r;
+ } else if (r == 0) {
+ dev_warn(adev->dev,
+ "IMPORT: NPA-RSP timeout from remote AccId:%u\n",
+ remote_acc_id);
+ return -ETIMEDOUT;
+ }
+
+ /* If the NPA addr/size isn't filled with valid values, then either
+ * we got a NPA_FAIL or something bad happened. In either case, we
+ * return the error back to user-space.
+ */
+ if (imp_xa_node->fail_reason) {
+ dev_warn(adev->dev,
+ "IMPORT: NPA-REQ failed with fail_reason:%d handle:%llx:%llx\n",
+ imp_xa_node->fail_reason, handle.handle_hi, handle.handle_lo);
+ return amdgpu_ualink_translate_npa_fail_reason(adev,
+ imp_xa_node->fail_reason);
+ }
+
+ if (!imp_xa_node->npa_addr || !imp_xa_node->size) {
+ dev_warn(adev->dev,
+ "IMPORT: invalid npa:%llx or size:%llx\n",
+ imp_xa_node->npa_addr, imp_xa_node->size);
+ imp_xa_node->npa_addr = 0;
+ imp_xa_node->size = 0;
+ return -EINVAL;
+ }
+
+ r = amdgpu_ualink_map_npa_to_dmabuf(adev, imp_xa_node);
+ if (r) {
+ dev_warn(adev->dev,
+ "IMPORT: dmabuf creation failed npa:%llx size:%llx\n",
+ imp_xa_node->npa_addr, imp_xa_node->size);
+ imp_xa_node->npa_addr = 0;
+ imp_xa_node->size = 0;
+ return r;
+ }
+
+ /* Add this node to the imported handles list for the remote GPU */
+ xa_lock(&adev->ualink.imp_xa);
+ list_add(&imp_xa_node->list, &adev->ualink.imp_handles_list[remote_acc_id]);
+ xa_unlock(&adev->ualink.imp_xa);
+
+ return 0;
+}
+
+int amdgpu_ualink_import_handle(struct drm_device *dev,
+ const struct amdgpu_ualink_handle *ualink_handle,
+ int *fd_out)
+{
+ struct amdgpu_ualink_imp_xa_node *imp_xa_node;
+ struct amdgpu_device *adev = drm_to_adev(dev);
+ struct amdgpu_ualink_handle handle = *ualink_handle;
+ u32 remote_acc_id, node_state;
+ int r = 0, fd;
+
+ remote_acc_id = (handle.handle_lo &
+ AMDGPU_UALINK_HANDLE_ACCID_MASK);
+
+ if (remote_acc_id >= AMDGPU_UALINK_ACCEL_MAX) {
+ dev_err(adev->dev,
+ "IMPORT: invalid remote AccId:%u\n", remote_acc_id);
+ return -EINVAL;
+ }
+
+ xa_lock(&adev->ualink.imp_xa);
+ imp_xa_node = xa_load(&adev->ualink.imp_xa, handle.handle_lo);
+
+ if (imp_xa_node) {
+ /* If node state is Not_ready/Pending, then some other
+ * thread is already trying the NPA protocol for the same
+ * ualink handle. Back off and let the thread finish.
+ * If the node state is Teardown, then it means this
+ * node is about to be removed. So let user-space know
+ * that this handle is invalid.
+ */
+ node_state = READ_ONCE(imp_xa_node->node_state);
+ if (node_state == AMDGPU_UALINK_NODE_NOT_READY ||
+ node_state == AMDGPU_UALINK_NODE_PENDING) {
+ xa_unlock(&adev->ualink.imp_xa);
+ r = -EAGAIN;
+ goto out;
+ } else if (node_state == AMDGPU_UALINK_NODE_TEARDOWN) {
+ xa_unlock(&adev->ualink.imp_xa);
+ r = -EINVAL;
+ goto out;
+ }
+
+ /* Increase the refcount while we are processing the request */
+ r = amdgpu_ualink_imp_xa_entry_get(imp_xa_node) ? 0 : -EINVAL;
+ xa_unlock(&adev->ualink.imp_xa);
+
+ /* If the refcount has become 0 but the entry is not yet
+ * removed from the Xarray, then return error to user-space.
+ */
+ if (r)
+ goto out;
+ } else {
+ xa_unlock(&adev->ualink.imp_xa);
+ /* if the partial handle doesn't exist in the Importer xarray then
+ * initiate the NPA protocol and generate the DMABuf corresponding
+ * to the NPA address.
+ * First store the entry in the Xarray.
+ */
+ imp_xa_node = kzalloc(sizeof(*imp_xa_node), GFP_KERNEL);
+ if (!imp_xa_node) {
+ r = -ENOMEM;
+ goto out;
+ }
+ imp_xa_node->adev = adev;
+ imp_xa_node->node_state = AMDGPU_UALINK_NODE_NOT_READY;
+ imp_xa_node->handle = handle;
+ init_completion(&imp_xa_node->npa_done);
+ kref_init(&imp_xa_node->refcount);
+
+ /* Take an extra reference to store in the Xarray. The error
+ * handling paths will drop both these references, while a
+ * successful path will drop only one reference to the Xarray
+ * entry.
+ */
+ amdgpu_ualink_imp_xa_entry_get(imp_xa_node);
+
+ /* Check if another thread created a node for the same handle while
+ * we were trying to create and initialize the node.
+ */
+ r = xa_insert(&adev->ualink.imp_xa, handle.handle_lo,
+ imp_xa_node, GFP_KERNEL);
+ if (r) {
+ kfree(imp_xa_node);
+ dev_err(adev->dev,
+ "IMPORT: XA insert failed for handle:%llx:%llx err:%d\n",
+ handle.handle_hi, handle.handle_lo, r);
+ goto out;
+ }
+
+ r = amdgpu_ualink_do_import_handle(adev, imp_xa_node, remote_acc_id);
+
+ /* If error is returned, then cleanup the xarray entry before returning
+ * the error back to user-space
+ */
+ if (r) {
+ amdgpu_ualink_imp_xa_entry_put(imp_xa_node);
+ if (r != -EAGAIN)
+ dev_err(adev->dev,
+ "IMPORT: XA import failed for handle:%llx:%llx\n",
+ handle.handle_hi, handle.handle_lo);
+ goto cleanup;
+ } else {
+ WRITE_ONCE(imp_xa_node->node_state,
+ AMDGPU_UALINK_NODE_READY);
+ }
+ }
+
+ /* dma_buf_fd consumes a reference and assigns it to the fd.
+ * Therefore take an extra reference to be consumed. It will be
+ * released when user mode closes the fd.
+ */
+ get_dma_buf(imp_xa_node->dmabuf);
+
+ fd = dma_buf_fd(imp_xa_node->dmabuf, O_CLOEXEC | O_RDWR);
+ if (fd >= 0) {
+ *fd_out = fd;
+ } else {
+ dma_buf_put(imp_xa_node->dmabuf);
+ r = fd;
+ dev_err(adev->dev,
+ "IMPORT: dma-buf fd creation failed handle:%llx:%llx\n",
+ handle.handle_hi, handle.handle_lo);
+ }
+
+cleanup:
+ amdgpu_ualink_imp_xa_entry_put(imp_xa_node);
+out:
+ return r;
+}
+
int amdgpu_ualink_export_handle(struct drm_device *dev, struct drm_file *filp,
u32 gem_handle,
struct amdgpu_ualink_handle *handle_out)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.h
index c8c37d4ee4b48..9d5d24a2a1106 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ualink.h
@@ -34,12 +34,44 @@
#define AMDGPU_UALINK_RESP_TIMEOUT 5000 /* 5s timeout */
#define AMDGPU_UALINK_HANDLE_ACCID_MASK GENMASK_ULL(9, 0)
+#define AMDGPU_UALINK_MESSAGE_HEADER_MASK GENMASK_ULL(9, 0)
#define AMDGPU_UALINK_HELLO_MSG_RECV_ACCID_SHIFT 10
#define AMDGPU_UALINK_HELLO_MSG_SENDER_ACCID_SHIFT 20
+#define AMDGPU_UALINK_NPA_FAIL_MSG_FAIL_REASON_MASK GENMASK_U32(7, 0)
+
+/* GPU-ID is stored in bits 41-50 of the NPA address. However, we
+ * store NPA address is GPU PAGE aligned so bottom 12 bits are not used.
+ * As a result, we need the GPU-ID shift to be 41 - 12 = 29.
+ */
+#define AMDGPU_UALINK_NPA_ADDR_GPUID_SHIFT 29
+#define AMDGPU_UALINK_NPA_ADDR_GPUID_MASK GENMASK_ULL(38, 29)
+/* Reserve 2M in each 2TB range for ring buffer allocations for
+ * remote interrupts. In terms of GPU pages, this is 2M / 4K = 512 pages.
+ * So we reserve 512 pages in each 2TB range.
+ */
+#define AMDGPU_UALINK_NPA_ADDR_RANGE_RESERVED (1U << 9)
+#define AMDGPU_UALINK_NPA_ADDR_RANGE_MASK GENMASK_ULL(28, 0)
+
+enum AMDGPU_UALINK_NPA_FAIL_REASON {
+ AMDGPU_UALINK_NPA_FAIL_NOSPACE = 1,
+ AMDGPU_UALINK_NPA_FAIL_INVALID_HANDLE = 2,
+ AMDGPU_UALINK_NPA_FAIL_DUPLICATE = 3,
+ AMDGPU_UALINK_NPA_FAIL_ERROR = 4,
+};
+
+enum AMDGPU_UALINK_NODE_STATE {
+ AMDGPU_UALINK_NODE_NOT_READY = 0,
+ AMDGPU_UALINK_NODE_PENDING = 1,
+ AMDGPU_UALINK_NODE_READY = 2,
+ AMDGPU_UALINK_NODE_TEARDOWN = 3
+};
enum AMDGPU_UALINK_PROTOCOL_MESSAGES {
AMDGPU_UALINK_HELLO_MSG = 1,
AMDGPU_UALINK_HELLO_ACK_MSG = 2,
+ AMDGPU_UALINK_NPA_REQ_MSG = 3,
+ AMDGPU_UALINK_NPA_RSP_MSG = 4,
+ AMDGPU_UALINK_NPA_FAIL_MSG = 5,
AMDGPU_UALINK_MAX_PROTOCOL_MSG
};
@@ -144,6 +176,44 @@ struct amdgpu_ualink_handle {
};
};
+struct amdgpu_ualink_imp_xa_node {
+ struct amdgpu_device *adev;
+
+ /* 128-bit handle for the BO */
+ struct amdgpu_ualink_handle handle;
+
+ /* Use to signal NPA-RSP arrival */
+ struct completion npa_done;
+
+ /* NPA address received in the NPA-RSP message */
+ u64 npa_addr;
+ u64 size;
+
+ /* GEM handle for the NPA BO */
+ u32 gem_handle;
+
+ /* Fail reason received in NPA-FAIL message */
+ int fail_reason;
+
+ /* Node state to signal if node setup is in progress
+ * or is already completed. Node state goes back to
+ * in progress if a HELLO message is received in
+ * response to NPA-REQ message.
+ */
+ enum AMDGPU_UALINK_NODE_STATE node_state;
+
+ /* Used to connect all importer XA nodes from a particular
+ * exporter.
+ */
+ struct list_head list;
+
+ /* Dmabuf corresponding to the NPA BO */
+ struct dma_buf *dmabuf;
+
+ /* Refcount to track lifetime of this node */
+ struct kref refcount;
+};
+
struct amdgpu_ualink_npa_mm {
struct drm_mm mm;
u64 va_start;
@@ -277,4 +347,7 @@ void amdgpu_ualink_manager_stop(struct amdgpu_device *adev);
int amdgpu_ualink_export_handle(struct drm_device *dev, struct drm_file *filp,
u32 gem_handle,
struct amdgpu_ualink_handle *handle_out);
+int amdgpu_ualink_import_handle(struct drm_device *dev,
+ const struct amdgpu_ualink_handle *ualink_handle,
+ int *fd_out);
#endif
--
2.55.0
next prev parent reply other threads:[~2026-08-21 19:53 UTC|newest]
Thread overview: 98+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-21 19:33 [PATCH 00/95] Add UALink instrastructure series 1 Alex Deucher
2026-08-21 19:33 ` [PATCH 01/95] drm/amdgpu: Add psp ualink command interfaces Alex Deucher
2026-08-21 19:33 ` [PATCH 02/95] drm/amdgpu: Fetch asp ualink interface version Alex Deucher
2026-08-21 19:33 ` [PATCH 03/95] drm/amdgpu: Add sysfs API for UALink information Alex Deucher
2026-08-21 19:33 ` [PATCH 04/95] drm/amdgpu: Add sysfs API for UALink physical pod setup Alex Deucher
2026-08-21 19:33 ` [PATCH 05/95] drm/amdgpu: Add sysfs API for UALink virtual pod config Alex Deucher
2026-08-21 19:33 ` [PATCH 06/95] drm/amdgpu: Add sysfs API for UALink station configuration Alex Deucher
2026-08-21 19:33 ` [PATCH 07/95] drm/amdgpu: Add UALink manager core infrastructure Alex Deucher
2026-08-21 19:33 ` [PATCH 08/95] drm/amdgpu: Implement PSP cmd UAL_GET_CONFIG Alex Deucher
2026-08-21 19:33 ` [PATCH 09/95] drm/amdgpu: Query initial UALink config from PSP Alex Deucher
2026-08-21 19:33 ` [PATCH 10/95] drm/amdgpu: Implement PSP cmd UAL_SET_PPOD_CONFIG Alex Deucher
2026-08-21 19:33 ` [PATCH 11/95] drm/amdgpu: Set physical pod configuration to PSP Alex Deucher
2026-08-21 19:33 ` [PATCH 12/95] drm/amdgpu: Implement PSP cmd UAL_SET_VPOD_CONFIG Alex Deucher
2026-08-21 19:33 ` [PATCH 13/95] drm/amdgpu: Set virtual pod configuration to PSP Alex Deucher
2026-08-21 19:33 ` [PATCH 14/95] drm/amdgpu: Implement PSP cmd UAL_SET_STATION_CONFIG Alex Deucher
2026-08-21 19:33 ` [PATCH 15/95] drm/amdgpu: Set UALink station config to PSP Alex Deucher
2026-08-21 19:33 ` [PATCH 16/95] drm/amdgpu: Implement PSP cmd UAL_SET_NPA_CONFIG Alex Deucher
2026-08-21 19:33 ` [PATCH 17/95] drm/amdgpu: Enable/disable NPA address translation using PSP Alex Deucher
2026-08-21 19:33 ` [PATCH 18/95] drm/amdgpu: Add helper function to check psp xgmi ta Alex Deucher
2026-08-21 19:33 ` [PATCH 19/95] drm/amdgpu: add handler for nHT error Alex Deucher
2026-08-21 19:33 ` [PATCH 20/95] drm/amdgpu: Add ual_config_state to ual_get_config Alex Deucher
2026-08-21 19:33 ` [PATCH 21/95] drm/amdgpu: extend PSP command polling sleep range Alex Deucher
2026-08-21 19:33 ` [PATCH 22/95] drm/amdgpu: Fix NULL pointer issue during ualink init Alex Deucher
2026-08-21 19:33 ` [PATCH 23/95] drm/amdgpu: Add a new NPA Address space Alex Deucher
2026-08-21 19:33 ` [PATCH 24/95] drm/amdgpu: Add address allocator for NPA addresses Alex Deucher
2026-08-21 19:33 ` [PATCH 25/95] drm/amdgpu: Initialize VM for NPA addr management Alex Deucher
2026-08-21 19:33 ` [PATCH 26/95] drm/amdgpu: Rework VMID reservation logic Alex Deucher
2026-08-21 19:33 ` [PATCH 27/95] drm/amdgpu: Reserve VMID for NPA VM Alex Deucher
2026-08-21 19:33 ` [PATCH 28/95] drm/amdgpu: Use reserved " Alex Deucher
2026-08-21 19:33 ` [PATCH 29/95] drm/amdgpu: Enable UALink Manager when pod becomes active Alex Deucher
2026-08-21 19:33 ` [PATCH 30/95] drm/amdgpu: Fix UALink vPod double-activation Alex Deucher
2026-08-21 19:33 ` [PATCH 31/95] drm/amdgpu: Add UALink remote state structures and API declarations Alex Deucher
2026-08-21 19:33 ` [PATCH 32/95] drm/amdgpu: Add UALink NPA address layout helpers Alex Deucher
2026-08-21 19:33 ` [PATCH 33/95] drm/amdgpu: Add UALink NPA address computation for ring buffers Alex Deucher
2026-08-21 19:33 ` [PATCH 34/95] drm/amdgpu: Add UALink NPA VM mapping " Alex Deucher
2026-08-21 19:33 ` [PATCH 35/95] drm/amdgpu: Add UALink SDMA scheduler entities Alex Deucher
2026-08-21 19:33 ` [PATCH 36/95] drm/amdgpu: Add UALink GART helpers for NPA address access Alex Deucher
2026-08-21 19:34 ` [PATCH 37/95] drm/amdgpu: Add UALink ring buffer allocation and firmware init Alex Deucher
2026-08-21 19:34 ` [PATCH 38/95] drm/amdgpu: Add UALink remote command packets and SDMA dispatch Alex Deucher
2026-08-21 19:34 ` [PATCH 39/95] drm/amdgpu: Add UALink firmware writeback address configuration Alex Deucher
2026-08-21 19:34 ` [PATCH 40/95] drm/amdgpu: Add UALink cross-GPU TLB shootdown and remote interrupt Alex Deucher
2026-08-21 19:34 ` [PATCH 41/95] drm/amdgpu: Add UALink software init, teardown, and reset Alex Deucher
2026-08-21 19:34 ` [PATCH 42/95] drm/amdgpu: Add UALink IH ring and enable interrupt Alex Deucher
2026-08-21 19:34 ` [PATCH 43/95] drm/amdgpu: UALink use LSDMA to send remote interrupt command Alex Deucher
2026-08-21 19:34 ` [PATCH 44/95] drm/amdgpu: Create a drm client for UALink NPA BOs Alex Deucher
2026-08-21 19:34 ` [PATCH 45/95] drm/amdgpu: Control NPA DMA-buf importing Alex Deucher
2026-08-21 19:34 ` [PATCH 46/95] drm/amdgpu: Add ualink handle to BOs Alex Deucher
2026-08-21 19:34 ` [PATCH 47/95] drm/amdgpu: Implement UALink handle export Alex Deucher
2026-08-21 19:34 ` [PATCH 48/95] drm/amdgpu: Add connection state management Alex Deucher
2026-08-21 19:34 ` Alex Deucher [this message]
2026-08-21 19:34 ` [PATCH 50/95] drm/amdgpu: Implement mechanism to revoke exported memory Alex Deucher
2026-08-21 19:34 ` [PATCH 51/95] drm/amdgpu: lock UALink import invalidation via drm_exec Alex Deucher
2026-08-21 19:34 ` [PATCH 52/95] drm/amdgpu: Cleanup exported UALink handles Alex Deucher
2026-08-21 19:34 ` [PATCH 53/95] drm/amdgpu: Cleanup imported " Alex Deucher
2026-08-21 19:34 ` [PATCH 54/95] drm/amdgpu: Handle connection reset Alex Deucher
2026-08-21 19:34 ` [PATCH 55/95] drm/amdgpu: Setup PTE mappings for NPA addresses Alex Deucher
2026-08-21 19:34 ` [PATCH 56/95] drm/amdgpu: Add handling for remote interrupts Alex Deucher
2026-08-21 19:34 ` [PATCH 57/95] drm/amdgpu: Send TLB shootdown on exported memory unmap Alex Deucher
2026-08-21 19:34 ` [PATCH 58/95] drm/amdgpu: Handle local GPUs in UALink import Alex Deucher
2026-08-21 19:34 ` [PATCH 59/95] drm/amdgpu: Add debugfs to drop UALink protocol messages Alex Deucher
2026-08-21 19:34 ` [PATCH 60/95] drm/amdgpu: Temporarily disable sending remote TLB shootdowns Alex Deucher
2026-08-21 19:34 ` [PATCH 61/95] drm/amdgpu: Temporarily Flush TLB on NPA mapping always Alex Deucher
2026-08-21 19:34 ` [PATCH 62/95] drm/amdgpu: log remote memory MTYPE for GC 12.1.0 Alex Deucher
2026-08-21 19:34 ` [PATCH 63/95] drm/amdgpu: Prevent double-free of drm_exec Alex Deucher
2026-08-21 19:34 ` [PATCH 64/95] drm/amdgpu: fix NPA-RELEASE race in UALink exporter cleanup Alex Deucher
2026-08-21 19:34 ` [PATCH 65/95] drm/amdgpu: initialize UALink importer node list head Alex Deucher
2026-08-21 19:34 ` [PATCH 66/95] drm/amdgpu: Fix initialization flags for UALink XAs Alex Deucher
2026-08-21 19:34 ` [PATCH 67/95] drm/amdgpu: fix dma_buf leak in UALink exporter cleanup Alex Deucher
2026-08-21 19:34 ` [PATCH 68/95] drm/amdgpu: Increase UALink soft ring size Alex Deucher
2026-08-21 19:34 ` [PATCH 69/95] drm/amdgpu: Fix uninitialized fence in UALink NPA unmap Alex Deucher
2026-08-21 19:34 ` [PATCH 70/95] drm/amdgpu: Use vm->last_update fence in UALink NPA unmap paths Alex Deucher
2026-08-21 19:34 ` [PATCH 71/95] drm/amdgpu: Pin page tables in NPA VMs Alex Deucher
2026-08-21 19:34 ` [PATCH 72/95] drm/amdgpu: Initialize NPA PT/PDs to noretry Alex Deucher
2026-08-21 19:34 ` [PATCH 73/95] drm/amdgpu: always use MTYPE_UC for remote memory on GFX 12.1 Alex Deucher
2026-08-21 19:34 ` [PATCH 74/95] drm/amdkfd: program compute MQD coherent_aql_mtype " Alex Deucher
2026-08-21 19:34 ` [PATCH 75/95] drm/amdgpu: Separate out ualink init sequences Alex Deucher
2026-08-21 19:34 ` [PATCH 76/95] drm/amdgpu: Add ualink as separate ip block Alex Deucher
2026-08-21 19:34 ` [PATCH 77/95] drm/admgpu: Seggregate ualink nht messaging Alex Deucher
2026-08-21 19:34 ` [PATCH 78/95] drm/amdgpu: Assign accel state based on ASP config Alex Deucher
2026-08-21 19:34 ` [PATCH 79/95] drm/amdgpu: Drop duplicate vpod check functions Alex Deucher
2026-08-21 19:34 ` [PATCH 80/95] drm/amdgpu: Add support to send ASP completion Alex Deucher
2026-08-21 19:34 ` [PATCH 81/95] drm/amdgpu: Add handlers for ualink notifications Alex Deucher
2026-08-21 19:34 ` [PATCH 82/95] drm/amdgpu: Improve ualink state transitions Alex Deucher
2026-08-21 19:34 ` [PATCH 83/95] drm/amdgpu: Use uniform logic for inband/sideband Alex Deucher
2026-08-21 19:34 ` [PATCH 84/95] drm/amdgpu: Fix GART and SDMA entity leak on vPod reconfiguration Alex Deucher
2026-08-21 19:34 ` [PATCH 85/95] drm/amdgpu: Add UALink diagnostic logging for vpod commit/activation Alex Deucher
2026-08-21 19:34 ` [PATCH 86/95] drm/amdgpu: Handle UALink vPod reconfiguration while ACTIVE Alex Deucher
2026-08-21 19:34 ` [PATCH 87/95] drm/amdgpu: Add name for ualink ip block Alex Deucher
2026-08-21 19:34 ` [PATCH 88/95] drm/amdgpu: Cleanup UALink XA entries on manager stop Alex Deucher
2026-08-21 19:34 ` [PATCH 89/95] drm/amdgpu: Move ualink ip version related changes Alex Deucher
2026-08-21 19:34 ` [PATCH 90/95] drm/amdgpu: Add hw_fini for ualink Alex Deucher
2026-08-21 19:34 ` [PATCH 91/95] drm/amdgpu: Expose ualink info under each xcp Alex Deucher
2026-08-21 19:34 ` [PATCH 92/95] drm/amdgpu: Handle concurrent UALINK handle import race Alex Deucher
2026-08-21 19:34 ` [PATCH 93/95] drm/amdgpu: create UALink NPA import BO directly in the NPA domain Alex Deucher
2026-08-21 19:34 ` [PATCH 94/95] drm/amdgpu: add mtype_remote module parameter Alex Deucher
2026-08-21 19:34 ` [PATCH 95/95] drm/amdgpu: Honor mtype overrides for NPA remote memory Alex Deucher
2026-08-25 14:45 ` [PATCH 00/95] Add UALink instrastructure series 1 Philip Yang
-- strict thread matches above, loose matches on Subject: below --
2026-08-31 18:26 [PATCH V2 00/95] Add UALink infrastructure " Alex Deucher
2026-08-31 18:27 ` [PATCH 49/95] drm/amdgpu: Implement UALink handle import ioctl Alex Deucher
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=20260821193458.808626-50-alexander.deucher@amd.com \
--to=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=felix.kuehling@amd.com \
--cc=mukul.joshi@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