2019-06-04 08:11:28 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2014-10-10 15:30:10 +00:00
|
|
|
/*
|
|
|
|
* linux/can/rx-offload.h
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 David Jander, Protonic Holland
|
2023-07-03 16:18:19 +00:00
|
|
|
* Copyright (c) 2014-2017, 2023 Pengutronix, Marc Kleine-Budde <kernel@pengutronix.de>
|
2014-10-10 15:30:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CAN_RX_OFFLOAD_H
|
|
|
|
#define _CAN_RX_OFFLOAD_H
|
|
|
|
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/can.h>
|
|
|
|
|
|
|
|
struct can_rx_offload {
|
|
|
|
struct net_device *dev;
|
|
|
|
|
2019-07-12 08:02:38 +00:00
|
|
|
struct sk_buff *(*mailbox_read)(struct can_rx_offload *offload,
|
|
|
|
unsigned int mb, u32 *timestamp,
|
|
|
|
bool drop);
|
2014-10-10 15:30:10 +00:00
|
|
|
|
|
|
|
struct sk_buff_head skb_queue;
|
2019-10-09 04:41:08 +00:00
|
|
|
struct sk_buff_head skb_irq_queue;
|
2014-10-10 15:30:10 +00:00
|
|
|
u32 skb_queue_len_max;
|
|
|
|
|
2014-09-23 13:28:21 +00:00
|
|
|
unsigned int mb_first;
|
|
|
|
unsigned int mb_last;
|
|
|
|
|
2014-10-10 15:30:10 +00:00
|
|
|
struct napi_struct napi;
|
2014-09-23 13:28:21 +00:00
|
|
|
|
|
|
|
bool inc;
|
2014-10-10 15:30:10 +00:00
|
|
|
};
|
|
|
|
|
2019-08-27 11:53:18 +00:00
|
|
|
int can_rx_offload_add_timestamp(struct net_device *dev,
|
|
|
|
struct can_rx_offload *offload);
|
|
|
|
int can_rx_offload_add_fifo(struct net_device *dev,
|
|
|
|
struct can_rx_offload *offload,
|
|
|
|
unsigned int weight);
|
2020-09-15 22:35:22 +00:00
|
|
|
int can_rx_offload_add_manual(struct net_device *dev,
|
|
|
|
struct can_rx_offload *offload,
|
|
|
|
unsigned int weight);
|
2019-08-27 11:53:18 +00:00
|
|
|
int can_rx_offload_irq_offload_timestamp(struct can_rx_offload *offload,
|
|
|
|
u64 reg);
|
2014-10-10 15:30:10 +00:00
|
|
|
int can_rx_offload_irq_offload_fifo(struct can_rx_offload *offload);
|
2022-03-14 22:09:10 +00:00
|
|
|
int can_rx_offload_queue_timestamp(struct can_rx_offload *offload,
|
|
|
|
struct sk_buff *skb, u32 timestamp);
|
2023-06-02 07:36:38 +00:00
|
|
|
unsigned int can_rx_offload_get_echo_skb_queue_timestamp(struct can_rx_offload *offload,
|
|
|
|
unsigned int idx, u32 timestamp,
|
|
|
|
unsigned int *frame_len_ptr);
|
2018-09-18 09:40:40 +00:00
|
|
|
int can_rx_offload_queue_tail(struct can_rx_offload *offload,
|
|
|
|
struct sk_buff *skb);
|
2023-07-03 16:18:19 +00:00
|
|
|
unsigned int can_rx_offload_get_echo_skb_queue_tail(struct can_rx_offload *offload,
|
|
|
|
unsigned int idx,
|
|
|
|
unsigned int *frame_len_ptr);
|
2019-10-09 04:41:08 +00:00
|
|
|
void can_rx_offload_irq_finish(struct can_rx_offload *offload);
|
2021-05-10 20:51:39 +00:00
|
|
|
void can_rx_offload_threaded_irq_finish(struct can_rx_offload *offload);
|
2014-10-10 15:30:10 +00:00
|
|
|
void can_rx_offload_del(struct can_rx_offload *offload);
|
|
|
|
void can_rx_offload_enable(struct can_rx_offload *offload);
|
|
|
|
|
|
|
|
static inline void can_rx_offload_disable(struct can_rx_offload *offload)
|
|
|
|
{
|
|
|
|
napi_disable(&offload->napi);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* !_CAN_RX_OFFLOAD_H */
|