mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

The mailbox payload pointer is void __iomem *. Casting it to u32 * is
incorrect and causes sparse warning.
cast removes address space '__iomem' of expression
Fixes: b87f920b93
("accel/amdxdna: Support hardware mailbox")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202501130921.ktqwsMLH-lkp@intel.com/
Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20250113182617.1256094-1-lizhi.hou@amd.com
61 lines
1.4 KiB
C
61 lines
1.4 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, void __iomem *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;
|
|
}
|
|
|
|
memcpy_fromio(cb_arg->data, data, cb_arg->size);
|
|
print_hex_dump_debug("resp data: ", DUMP_PREFIX_OFFSET,
|
|
16, 4, cb_arg->data, cb_arg->size, true);
|
|
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;
|
|
}
|