mirror of
https://github.com/torvalds/linux.git
synced 2026-04-28 11:32:28 -04:00
Add interfaces for user application to submit command and wait for its completion. Co-developed-by: Min Ma <min.ma@amd.com> Signed-off-by: Min Ma <min.ma@amd.com> Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com> Signed-off-by: Lizhi Hou <lizhi.hou@amd.com> Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> Link: https://patchwork.freedesktop.org/patch/msgid/20241118172942.2014541-8-lizhi.hou@amd.com
62 lines
1.3 KiB
C
62 lines
1.3 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2024, Advanced Micro Devices, Inc.
|
|
*/
|
|
|
|
#include <drm/amdxdna_accel.h>
|
|
#include <drm/drm_device.h>
|
|
#include <drm/drm_print.h>
|
|
#include <drm/drm_gem.h>
|
|
#include <drm/drm_gem_shmem_helper.h>
|
|
#include <drm/gpu_scheduler.h>
|
|
#include <linux/completion.h>
|
|
|
|
#include "amdxdna_gem.h"
|
|
#include "amdxdna_mailbox.h"
|
|
#include "amdxdna_mailbox_helper.h"
|
|
#include "amdxdna_pci_drv.h"
|
|
|
|
int xdna_msg_cb(void *handle, const u32 *data, size_t size)
|
|
{
|
|
struct xdna_notify *cb_arg = handle;
|
|
int ret;
|
|
|
|
if (unlikely(!data))
|
|
goto out;
|
|
|
|
if (unlikely(cb_arg->size != size)) {
|
|
cb_arg->error = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
print_hex_dump_debug("resp data: ", DUMP_PREFIX_OFFSET,
|
|
16, 4, data, cb_arg->size, true);
|
|
memcpy(cb_arg->data, data, cb_arg->size);
|
|
out:
|
|
ret = cb_arg->error;
|
|
complete(&cb_arg->comp);
|
|
return ret;
|
|
}
|
|
|
|
int xdna_send_msg_wait(struct amdxdna_dev *xdna, struct mailbox_channel *chann,
|
|
struct xdna_mailbox_msg *msg)
|
|
{
|
|
struct xdna_notify *hdl = msg->handle;
|
|
int ret;
|
|
|
|
ret = xdna_mailbox_send_msg(chann, msg, TX_TIMEOUT);
|
|
if (ret) {
|
|
XDNA_ERR(xdna, "Send message failed, ret %d", ret);
|
|
return ret;
|
|
}
|
|
|
|
ret = wait_for_completion_timeout(&hdl->comp,
|
|
msecs_to_jiffies(RX_TIMEOUT));
|
|
if (!ret) {
|
|
XDNA_ERR(xdna, "Wait for completion timeout");
|
|
return -ETIME;
|
|
}
|
|
|
|
return hdl->error;
|
|
}
|