2021-05-14 18:55:47 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/*
|
|
|
|
* Copyright 2021, Dario Binacchi <dariobin@libero.it>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/ethtool.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/can/dev.h>
|
|
|
|
|
|
|
|
#include "c_can.h"
|
|
|
|
|
|
|
|
static void c_can_get_ringparam(struct net_device *netdev,
|
2021-11-18 20:12:43 +08:00
|
|
|
struct ethtool_ringparam *ring,
|
|
|
|
struct kernel_ethtool_ringparam *kernel_ring,
|
|
|
|
struct netlink_ext_ack *extack)
|
2021-05-14 18:55:47 +02:00
|
|
|
{
|
|
|
|
struct c_can_priv *priv = netdev_priv(netdev);
|
|
|
|
|
|
|
|
ring->rx_max_pending = priv->msg_obj_num;
|
|
|
|
ring->tx_max_pending = priv->msg_obj_num;
|
|
|
|
ring->rx_pending = priv->msg_obj_rx_num;
|
|
|
|
ring->tx_pending = priv->msg_obj_tx_num;
|
|
|
|
}
|
|
|
|
|
2022-07-27 19:49:38 +09:00
|
|
|
const struct ethtool_ops c_can_ethtool_ops = {
|
2021-05-14 18:55:47 +02:00
|
|
|
.get_ringparam = c_can_get_ringparam,
|
2022-07-27 19:16:32 +09:00
|
|
|
.get_ts_info = ethtool_op_get_ts_info,
|
2021-05-14 18:55:47 +02:00
|
|
|
};
|