/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2023, Jaguar Micro. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _CRETE_NIC_IO_H_ #define _CRETE_NIC_IO_H_ void crete_set_netdev_ops(struct net_device *netdev); void crete_set_ethtool_ops(struct net_device *netdev); void free_unused_bufs(struct crete_vnic_priv *vnic_priv); void free_receive_bufs(struct crete_vnic_priv *vnic_priv); void free_receive_page_frags(struct crete_vnic_priv *vnic_priv); int crete_vnic_set_queues(struct net_device *netdev, u16 queue_pairs); int __crete_vnic_set_queues(struct net_device *netdev, u16 queue_pairs); void crete_vnic_recv_done(struct virtqueue *rvq); void crete_vnic_xmit_done(struct virtqueue *vq); int crete_vnic_poll_tx(struct napi_struct *napi, int budget); int crete_vnic_poll(struct napi_struct *napi, int budget); void crete_vnic_alloc_recv_buf(struct work_struct *work); void crete_vnic_get_strings(struct net_device *dev, u32 stringset, u8 *data); int crete_vnic_get_sset_count(struct net_device *dev, int sset); void crete_vnic_get_ethtool_stats(struct net_device *dev, struct ethtool_stats *stats, u64 *data); #endif /* _CRETE_NIC_IO_H_*/