mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
The driver remove function is a function pointer and therefore, it does not make sense to define the function as an 'inline'. Update the coccinelle script and drivers to remove the inline statement. Bug 4749580 Change-Id: Ia03691b75c4edffe609f27468b911a92a5ddbd68 Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3233980 (cherry picked from commit 2c3a31c9b72785ee35ad079422b624f59a35f622) Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3276870 Reviewed-by: Brad Griffis <bgriffis@nvidia.com> GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
139 lines
3.6 KiB
C
139 lines
3.6 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
// SPDX-FileCopyrightText: Copyright (c) 2017-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
#include <nvidia/conftest.h>
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/mailbox_client.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/tegra-aon.h>
|
|
|
|
#define TX_BLOCK_PERIOD 100
|
|
#define IVC_FRAME_SIZE 64
|
|
|
|
struct tegra_aon_ivc_echo_data {
|
|
struct mbox_client cl;
|
|
struct mbox_chan *mbox;
|
|
char rx_data[IVC_FRAME_SIZE];
|
|
};
|
|
|
|
static ssize_t tegra_aon_ivc_echo_show(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct tegra_aon_ivc_echo_data *drvdata = dev_get_drvdata(dev);
|
|
|
|
memcpy(buf, drvdata->rx_data, IVC_FRAME_SIZE);
|
|
|
|
return IVC_FRAME_SIZE;
|
|
}
|
|
|
|
static ssize_t tegra_aon_ivc_echo_tx(struct device *dev,
|
|
struct device_attribute *attr,
|
|
const char *buf, size_t count)
|
|
{
|
|
struct tegra_aon_ivc_echo_data *drvdata = dev_get_drvdata(dev);
|
|
struct tegra_aon_mbox_msg msg;
|
|
int ret;
|
|
|
|
if (count > IVC_FRAME_SIZE) {
|
|
dev_err(dev, "Message is greater than the frame size %d\n",
|
|
IVC_FRAME_SIZE);
|
|
return -EINVAL;
|
|
}
|
|
|
|
msg.length = count;
|
|
msg.data = (void *)buf;
|
|
ret = mbox_send_message(drvdata->mbox, (void *)&msg);
|
|
if (ret < 0)
|
|
dev_err(dev, "mbox_send_message failed %d\n", ret);
|
|
|
|
return count;
|
|
}
|
|
|
|
static const DEVICE_ATTR(data_channel, S_IRUGO | S_IWUSR,
|
|
tegra_aon_ivc_echo_show, tegra_aon_ivc_echo_tx);
|
|
|
|
static void tegra_aon_ivc_echo_rx(struct mbox_client *cl, void *data)
|
|
{
|
|
struct tegra_aon_mbox_msg *msg = data;
|
|
struct tegra_aon_ivc_echo_data *drvdata = container_of(cl,
|
|
struct tegra_aon_ivc_echo_data,
|
|
cl);
|
|
memcpy(drvdata->rx_data, msg->data, IVC_FRAME_SIZE);
|
|
}
|
|
|
|
static int tegra_aon_ivc_echo_probe(struct platform_device *pdev)
|
|
{
|
|
int ret;
|
|
struct device *dev = &pdev->dev;
|
|
struct tegra_aon_ivc_echo_data *drvdata;
|
|
|
|
drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
|
|
if (!drvdata)
|
|
return -ENOMEM;
|
|
dev_set_drvdata(dev, drvdata);
|
|
drvdata->cl.dev = dev;
|
|
drvdata->cl.tx_block = true;
|
|
drvdata->cl.tx_tout = TX_BLOCK_PERIOD;
|
|
drvdata->cl.knows_txdone = false;
|
|
drvdata->cl.rx_callback = tegra_aon_ivc_echo_rx;
|
|
drvdata->mbox = mbox_request_channel(&drvdata->cl, 0);
|
|
if (IS_ERR(drvdata->mbox)) {
|
|
ret = PTR_ERR(drvdata->mbox);
|
|
if (ret != -EPROBE_DEFER)
|
|
dev_err(dev, "mbox_request_channel failed. Error %d\n",
|
|
ret);
|
|
return ret;
|
|
}
|
|
|
|
ret = device_create_file(dev, &dev_attr_data_channel);
|
|
if (ret) {
|
|
dev_err(dev, "Failed to create device file. Error %d\n", ret);
|
|
mbox_free_channel(drvdata->mbox);
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int tegra_aon_ivc_echo_remove(struct platform_device *pdev)
|
|
{
|
|
struct tegra_aon_ivc_echo_data *drvdata = dev_get_drvdata(&pdev->dev);
|
|
|
|
device_remove_file(&pdev->dev, &dev_attr_data_channel);
|
|
mbox_free_channel(drvdata->mbox);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id tegra_aon_ivc_echo_match[] = {
|
|
{ .compatible = "nvidia,tegra186-aon-ivc-echo", },
|
|
{ },
|
|
};
|
|
MODULE_DEVICE_TABLE(of, tegra_aon_ivc_echo_match);
|
|
|
|
#if defined(NV_PLATFORM_DRIVER_STRUCT_REMOVE_RETURNS_VOID) /* Linux v6.11 */
|
|
static void tegra_aon_ivc_echo_remove_wrapper(struct platform_device *pdev)
|
|
{
|
|
tegra_aon_ivc_echo_remove(pdev);
|
|
}
|
|
#else
|
|
static int tegra_aon_ivc_echo_remove_wrapper(struct platform_device *pdev)
|
|
{
|
|
return tegra_aon_ivc_echo_remove(pdev);
|
|
}
|
|
#endif
|
|
|
|
static struct platform_driver tegra_aon_ivc_echo_driver = {
|
|
.probe = tegra_aon_ivc_echo_probe,
|
|
.remove = tegra_aon_ivc_echo_remove_wrapper,
|
|
.driver = {
|
|
.name = "tegra-aon-ivc-echo",
|
|
.of_match_table = tegra_aon_ivc_echo_match,
|
|
},
|
|
};
|
|
module_platform_driver(tegra_aon_ivc_echo_driver);
|
|
MODULE_LICENSE("GPL v2");
|