Linux Audio

Check our new training course

Loading...
v6.13.7
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/* Copyright(c) 2013 - 2019 Intel Corporation. */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  3
  4#ifndef _FM10K_H_
  5#define _FM10K_H_
  6
  7#include <linux/types.h>
  8#include <linux/etherdevice.h>
  9#include <linux/cpumask.h>
 10#include <linux/rtnetlink.h>
 11#include <linux/if_vlan.h>
 12#include <linux/pci.h>
 
 
 
 13
 14#include "fm10k_pf.h"
 15#include "fm10k_vf.h"
 16
 17#define FM10K_MAX_JUMBO_FRAME_SIZE	15342	/* Maximum supported size 15K */
 18
 19#define MAX_QUEUES	FM10K_MAX_QUEUES_PF
 20
 21#define FM10K_MIN_RXD		 128
 22#define FM10K_MAX_RXD		4096
 23#define FM10K_DEFAULT_RXD	 256
 24
 25#define FM10K_MIN_TXD		 128
 26#define FM10K_MAX_TXD		4096
 27#define FM10K_DEFAULT_TXD	 256
 28#define FM10K_DEFAULT_TX_WORK	 256
 29
 30#define FM10K_RXBUFFER_256	  256
 31#define FM10K_RX_HDR_LEN	FM10K_RXBUFFER_256
 32#define FM10K_RXBUFFER_2048	 2048
 33#define FM10K_RX_BUFSZ		FM10K_RXBUFFER_2048
 34
 35/* How many Rx Buffers do we bundle into one write to the hardware ? */
 36#define FM10K_RX_BUFFER_WRITE	16	/* Must be power of 2 */
 37
 38#define FM10K_MAX_STATIONS	63
 39struct fm10k_l2_accel {
 40	int size;
 41	u16 count;
 42	u16 dglort;
 43	struct rcu_head rcu;
 44	struct net_device *macvlan[];
 45};
 46
 47enum fm10k_ring_state_t {
 48	__FM10K_TX_DETECT_HANG,
 49	__FM10K_HANG_CHECK_ARMED,
 50	__FM10K_TX_XPS_INIT_DONE,
 51	/* This must be last and is used to calculate BITMAP size */
 52	__FM10K_TX_STATE_SIZE__,
 53};
 54
 55#define check_for_tx_hang(ring) \
 56	test_bit(__FM10K_TX_DETECT_HANG, (ring)->state)
 57#define set_check_for_tx_hang(ring) \
 58	set_bit(__FM10K_TX_DETECT_HANG, (ring)->state)
 59#define clear_check_for_tx_hang(ring) \
 60	clear_bit(__FM10K_TX_DETECT_HANG, (ring)->state)
 61
 62struct fm10k_tx_buffer {
 63	struct fm10k_tx_desc *next_to_watch;
 64	struct sk_buff *skb;
 65	unsigned int bytecount;
 66	u16 gso_segs;
 67	u16 tx_flags;
 68	DEFINE_DMA_UNMAP_ADDR(dma);
 69	DEFINE_DMA_UNMAP_LEN(len);
 70};
 71
 72struct fm10k_rx_buffer {
 73	dma_addr_t dma;
 74	struct page *page;
 75	u32 page_offset;
 76};
 77
 78struct fm10k_queue_stats {
 79	u64 packets;
 80	u64 bytes;
 81};
 82
 83struct fm10k_tx_queue_stats {
 84	u64 restart_queue;
 85	u64 csum_err;
 86	u64 tx_busy;
 87	u64 tx_done_old;
 88	u64 csum_good;
 89};
 90
 91struct fm10k_rx_queue_stats {
 92	u64 alloc_failed;
 93	u64 csum_err;
 94	u64 errors;
 95	u64 csum_good;
 96	u64 switch_errors;
 97	u64 drops;
 98	u64 pp_errors;
 99	u64 link_errors;
100	u64 length_errors;
101};
102
103struct fm10k_ring {
104	struct fm10k_q_vector *q_vector;/* backpointer to host q_vector */
105	struct net_device *netdev;	/* netdev ring belongs to */
106	struct device *dev;		/* device for DMA mapping */
107	struct fm10k_l2_accel __rcu *l2_accel;	/* L2 acceleration list */
108	void *desc;			/* descriptor ring memory */
109	union {
110		struct fm10k_tx_buffer *tx_buffer;
111		struct fm10k_rx_buffer *rx_buffer;
112	};
113	u32 __iomem *tail;
114	DECLARE_BITMAP(state, __FM10K_TX_STATE_SIZE__);
115	dma_addr_t dma;			/* phys. address of descriptor ring */
116	unsigned int size;		/* length in bytes */
117
118	u8 queue_index;			/* needed for queue management */
119	u8 reg_idx;			/* holds the special value that gets
120					 * the hardware register offset
121					 * associated with this ring, which is
122					 * different for DCB and RSS modes
123					 */
124	u8 qos_pc;			/* priority class of queue */
125	u16 vid;			/* default VLAN ID of queue */
126	u16 count;			/* amount of descriptors */
127
128	u16 next_to_alloc;
129	u16 next_to_use;
130	u16 next_to_clean;
131
132	struct fm10k_queue_stats stats;
133	struct u64_stats_sync syncp;
134	union {
135		/* Tx */
136		struct fm10k_tx_queue_stats tx_stats;
137		/* Rx */
138		struct {
139			struct fm10k_rx_queue_stats rx_stats;
140			struct sk_buff *skb;
141		};
142	};
143} ____cacheline_internodealigned_in_smp;
144
145struct fm10k_ring_container {
146	struct fm10k_ring *ring;	/* pointer to linked list of rings */
147	unsigned int total_bytes;	/* total bytes processed this int */
148	unsigned int total_packets;	/* total packets processed this int */
149	u16 work_limit;			/* total work allowed per interrupt */
150	u16 itr;			/* interrupt throttle rate value */
151	u8 itr_scale;			/* ITR adjustment based on PCI speed */
152	u8 count;			/* total number of rings in vector */
153};
154
155#define FM10K_ITR_MAX		0x0FFF	/* maximum value for ITR */
156#define FM10K_ITR_10K		100	/* 100us */
157#define FM10K_ITR_20K		50	/* 50us */
158#define FM10K_ITR_40K		25	/* 25us */
159#define FM10K_ITR_ADAPTIVE	0x8000	/* adaptive interrupt moderation flag */
160
161#define ITR_IS_ADAPTIVE(itr) (!!(itr & FM10K_ITR_ADAPTIVE))
162
163#define FM10K_TX_ITR_DEFAULT	FM10K_ITR_40K
164#define FM10K_RX_ITR_DEFAULT	FM10K_ITR_20K
165#define FM10K_ITR_ENABLE	(FM10K_ITR_AUTOMASK | FM10K_ITR_MASK_CLEAR)
166
167static inline struct netdev_queue *txring_txq(const struct fm10k_ring *ring)
168{
169	return &ring->netdev->_tx[ring->queue_index];
170}
171
172/* iterator for handling rings in ring container */
173#define fm10k_for_each_ring(pos, head) \
174	for (pos = &(head).ring[(head).count]; (--pos) >= (head).ring;)
175
176#define MAX_Q_VECTORS 256
177#define MIN_Q_VECTORS	1
178enum fm10k_non_q_vectors {
179	FM10K_MBX_VECTOR,
180	NON_Q_VECTORS
 
181};
182
183#define MIN_MSIX_COUNT(hw)	(MIN_Q_VECTORS + NON_Q_VECTORS)
 
 
 
184
185struct fm10k_q_vector {
186	struct fm10k_intfc *interface;
187	u32 __iomem *itr;	/* pointer to ITR register for this vector */
188	u16 v_idx;		/* index of q_vector within interface array */
189	struct fm10k_ring_container rx, tx;
190
191	struct napi_struct napi;
192	cpumask_t affinity_mask;
193	char name[IFNAMSIZ + 9];
194
195#ifdef CONFIG_DEBUG_FS
196	struct dentry *dbg_q_vector;
197#endif /* CONFIG_DEBUG_FS */
198	struct rcu_head rcu;	/* to avoid race with update stats on free */
199
200	/* for dynamic allocation of rings associated with this q_vector */
201	struct fm10k_ring ring[] ____cacheline_internodealigned_in_smp;
202};
203
204enum fm10k_ring_f_enum {
205	RING_F_RSS,
206	RING_F_QOS,
207	RING_F_ARRAY_SIZE  /* must be last in enum set */
208};
209
210struct fm10k_ring_feature {
211	u16 limit;	/* upper limit on feature indices */
212	u16 indices;	/* current value of indices */
213	u16 mask;	/* Mask used for feature to ring mapping */
214	u16 offset;	/* offset to start of feature */
215};
216
217struct fm10k_iov_data {
218	unsigned int		num_vfs;
219	unsigned int		next_vf_mbx;
220	struct rcu_head		rcu;
221	struct fm10k_vf_info	vf_info[];
222};
223
224enum fm10k_macvlan_request_type {
225	FM10K_UC_MAC_REQUEST,
226	FM10K_MC_MAC_REQUEST,
227	FM10K_VLAN_REQUEST
228};
229
230struct fm10k_macvlan_request {
231	enum fm10k_macvlan_request_type type;
232	struct list_head list;
233	union {
234		struct fm10k_mac_request {
235			u8 addr[ETH_ALEN];
236			u16 glort;
237			u16 vid;
238		} mac;
239		struct fm10k_vlan_request {
240			u32 vid;
241			u8 vsi;
242		} vlan;
243	};
244	bool set;
245};
246
247/* one work queue for entire driver */
248extern struct workqueue_struct *fm10k_workqueue;
249
250/* The following enumeration contains flags which indicate or enable modified
251 * driver behaviors. To avoid race conditions, the flags are stored in
252 * a BITMAP in the fm10k_intfc structure. The BITMAP should be accessed using
253 * atomic *_bit() operations.
254 */
255enum fm10k_flags_t {
256	FM10K_FLAG_RESET_REQUESTED,
257	FM10K_FLAG_RSS_FIELD_IPV4_UDP,
258	FM10K_FLAG_RSS_FIELD_IPV6_UDP,
259	FM10K_FLAG_SWPRI_CONFIG,
260	/* __FM10K_FLAGS_SIZE__ is used to calculate the size of
261	 * interface->flags and must be the last value in this
262	 * enumeration.
263	 */
264	__FM10K_FLAGS_SIZE__
265};
266
267enum fm10k_state_t {
268	__FM10K_RESETTING,
269	__FM10K_RESET_DETACHED,
270	__FM10K_RESET_SUSPENDED,
271	__FM10K_DOWN,
272	__FM10K_SERVICE_SCHED,
273	__FM10K_SERVICE_REQUEST,
274	__FM10K_SERVICE_DISABLE,
275	__FM10K_MACVLAN_SCHED,
276	__FM10K_MACVLAN_REQUEST,
277	__FM10K_MACVLAN_DISABLE,
278	__FM10K_LINK_DOWN,
279	__FM10K_UPDATING_STATS,
280	/* This value must be last and determines the BITMAP size */
281	__FM10K_STATE_SIZE__,
282};
283
284struct fm10k_intfc {
285	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
286	struct net_device *netdev;
287	struct fm10k_l2_accel *l2_accel; /* pointer to L2 acceleration list */
288	struct pci_dev *pdev;
289	DECLARE_BITMAP(state, __FM10K_STATE_SIZE__);
290
291	/* Access flag values using atomic *_bit() operations */
292	DECLARE_BITMAP(flags, __FM10K_FLAGS_SIZE__);
293
 
 
 
 
 
 
 
294	int xcast_mode;
295
296	/* Tx fast path data */
297	int num_tx_queues;
298	u16 tx_itr;
299
300	/* Rx fast path data */
301	int num_rx_queues;
302	u16 rx_itr;
303
304	/* TX */
305	struct fm10k_ring *tx_ring[MAX_QUEUES] ____cacheline_aligned_in_smp;
306
307	u64 restart_queue;
308	u64 tx_busy;
309	u64 tx_csum_errors;
310	u64 alloc_failed;
311	u64 rx_csum_errors;
312
313	u64 tx_bytes_nic;
314	u64 tx_packets_nic;
315	u64 rx_bytes_nic;
316	u64 rx_packets_nic;
317	u64 rx_drops_nic;
318	u64 rx_overrun_pf;
319	u64 rx_overrun_vf;
320
321	/* Debug Statistics */
322	u64 hw_sm_mbx_full;
323	u64 hw_csum_tx_good;
324	u64 hw_csum_rx_good;
325	u64 rx_switch_errors;
326	u64 rx_drops;
327	u64 rx_pp_errors;
328	u64 rx_link_errors;
329	u64 rx_length_errors;
330
331	u32 tx_timeout_count;
332
333	/* RX */
334	struct fm10k_ring *rx_ring[MAX_QUEUES];
335
336	/* Queueing vectors */
337	struct fm10k_q_vector *q_vector[MAX_Q_VECTORS];
338	struct msix_entry *msix_entries;
339	int num_q_vectors;	/* current number of q_vectors for device */
340	struct fm10k_ring_feature ring_feature[RING_F_ARRAY_SIZE];
341
342	/* SR-IOV information management structure */
343	struct fm10k_iov_data *iov_data;
344
345	struct fm10k_hw_stats stats;
346	struct fm10k_hw hw;
347	/* Mailbox lock */
348	spinlock_t mbx_lock;
349	u32 __iomem *uc_addr;
350	u32 __iomem *sw_addr;
351	u16 msg_enable;
352	u16 tx_ring_count;
353	u16 rx_ring_count;
354	struct timer_list service_timer;
355	struct work_struct service_task;
356	unsigned long next_stats_update;
357	unsigned long next_tx_hang_check;
358	unsigned long last_reset;
359	unsigned long link_down_event;
360	bool host_ready;
361	bool lport_map_failed;
362
363	u32 reta[FM10K_RETA_SIZE];
364	u32 rssrk[FM10K_RSSRK_SIZE];
365
366	/* UDP encapsulation port tracking information */
367	__be16 vxlan_port;
368	__be16 geneve_port;
369
370	/* MAC/VLAN update queue */
371	struct list_head macvlan_requests;
372	struct delayed_work macvlan_task;
373	/* MAC/VLAN update queue lock */
374	spinlock_t macvlan_lock;
375
376#ifdef CONFIG_DEBUG_FS
377	struct dentry *dbg_intfc;
 
378#endif /* CONFIG_DEBUG_FS */
 
 
 
 
 
379
 
 
 
 
 
 
 
 
380#ifdef CONFIG_DCB
381	u8 pfc_en;
382#endif
383	u8 rx_pause;
384
385	/* GLORT resources in use by PF */
386	u16 glort;
387	u16 glort_count;
388
389	/* VLAN ID for updating multicast/unicast lists */
390	u16 vid;
391};
392
 
 
 
 
 
 
 
 
 
393static inline void fm10k_mbx_lock(struct fm10k_intfc *interface)
394{
395	spin_lock(&interface->mbx_lock);
 
 
 
 
396}
397
398static inline void fm10k_mbx_unlock(struct fm10k_intfc *interface)
399{
400	spin_unlock(&interface->mbx_lock);
 
 
401}
402
403static inline int fm10k_mbx_trylock(struct fm10k_intfc *interface)
404{
405	return spin_trylock(&interface->mbx_lock);
406}
407
408/* fm10k_test_staterr - test bits in Rx descriptor status and error fields */
409static inline __le32 fm10k_test_staterr(union fm10k_rx_desc *rx_desc,
410					const u32 stat_err_bits)
411{
412	return rx_desc->d.staterr & cpu_to_le32(stat_err_bits);
413}
414
415/* fm10k_desc_unused - calculate if we have unused descriptors */
416static inline u16 fm10k_desc_unused(struct fm10k_ring *ring)
417{
418	s16 unused = ring->next_to_clean - ring->next_to_use - 1;
419
420	return likely(unused < 0) ? unused + ring->count : unused;
421}
422
423#define FM10K_TX_DESC(R, i)	\
424	(&(((struct fm10k_tx_desc *)((R)->desc))[i]))
425#define FM10K_RX_DESC(R, i)	\
426	 (&(((union fm10k_rx_desc *)((R)->desc))[i]))
427
428#define FM10K_MAX_TXD_PWR	14
429#define FM10K_MAX_DATA_PER_TXD	(1u << FM10K_MAX_TXD_PWR)
430
431/* Tx Descriptors needed, worst case */
432#define TXD_USE_COUNT(S)	DIV_ROUND_UP((S), FM10K_MAX_DATA_PER_TXD)
433#define DESC_NEEDED	(MAX_SKB_FRAGS + 4)
434
435enum fm10k_tx_flags {
436	/* Tx offload flags */
437	FM10K_TX_FLAGS_CSUM	= 0x01,
438};
439
440/* This structure is stored as little endian values as that is the native
441 * format of the Rx descriptor.  The ordering of these fields is reversed
442 * from the actual ftag header to allow for a single bswap to take care
443 * of placing all of the values in network order
444 */
445union fm10k_ftag_info {
446	__le64 ftag;
447	struct {
448		/* dglort and sglort combined into a single 32bit desc read */
449		__le32 glort;
450		/* upper 16 bits of VLAN are reserved 0 for swpri_type_user */
451		__le32 vlan;
452	} d;
453	struct {
454		__le16 dglort;
455		__le16 sglort;
456		__le16 vlan;
457		__le16 swpri_type_user;
458	} w;
459};
460
461struct fm10k_cb {
462	union {
463		__le64 tstamp;
464		unsigned long ts_tx_timeout;
465	};
466	union fm10k_ftag_info fi;
467};
468
469#define FM10K_CB(skb) ((struct fm10k_cb *)(skb)->cb)
470
471/* main */
472extern char fm10k_driver_name[];
 
473int fm10k_init_queueing_scheme(struct fm10k_intfc *interface);
474void fm10k_clear_queueing_scheme(struct fm10k_intfc *interface);
475__be16 fm10k_tx_encap_offload(struct sk_buff *skb);
476netdev_tx_t fm10k_xmit_frame_ring(struct sk_buff *skb,
477				  struct fm10k_ring *tx_ring);
478void fm10k_tx_timeout_reset(struct fm10k_intfc *interface);
479u64 fm10k_get_tx_pending(struct fm10k_ring *ring, bool in_sw);
480bool fm10k_check_tx_hang(struct fm10k_ring *tx_ring);
481void fm10k_alloc_rx_buffers(struct fm10k_ring *rx_ring, u16 cleaned_count);
482
483/* PCI */
484void fm10k_mbx_free_irq(struct fm10k_intfc *);
485int fm10k_mbx_request_irq(struct fm10k_intfc *);
486void fm10k_qv_free_irq(struct fm10k_intfc *interface);
487int fm10k_qv_request_irq(struct fm10k_intfc *interface);
488int fm10k_register_pci_driver(void);
489void fm10k_unregister_pci_driver(void);
490void fm10k_up(struct fm10k_intfc *interface);
491void fm10k_down(struct fm10k_intfc *interface);
492void fm10k_update_stats(struct fm10k_intfc *interface);
493void fm10k_service_event_schedule(struct fm10k_intfc *interface);
494void fm10k_macvlan_schedule(struct fm10k_intfc *interface);
495void fm10k_update_rx_drop_en(struct fm10k_intfc *interface);
 
 
 
496
497/* Netdev */
498struct net_device *fm10k_alloc_netdev(const struct fm10k_info *info);
499int fm10k_setup_rx_resources(struct fm10k_ring *);
500int fm10k_setup_tx_resources(struct fm10k_ring *);
501void fm10k_free_rx_resources(struct fm10k_ring *);
502void fm10k_free_tx_resources(struct fm10k_ring *);
503void fm10k_clean_all_rx_rings(struct fm10k_intfc *);
504void fm10k_clean_all_tx_rings(struct fm10k_intfc *);
505void fm10k_unmap_and_free_tx_resource(struct fm10k_ring *,
506				      struct fm10k_tx_buffer *);
507void fm10k_restore_rx_state(struct fm10k_intfc *);
508void fm10k_reset_rx_state(struct fm10k_intfc *);
509int fm10k_setup_tc(struct net_device *dev, u8 tc);
510int fm10k_open(struct net_device *netdev);
511int fm10k_close(struct net_device *netdev);
512int fm10k_queue_vlan_request(struct fm10k_intfc *interface, u32 vid,
513			     u8 vsi, bool set);
514int fm10k_queue_mac_request(struct fm10k_intfc *interface, u16 glort,
515			    const unsigned char *addr, u16 vid, bool set);
516void fm10k_clear_macvlan_queue(struct fm10k_intfc *interface,
517			       u16 glort, bool vlans);
518
519/* Ethtool */
520void fm10k_set_ethtool_ops(struct net_device *dev);
521void fm10k_write_reta(struct fm10k_intfc *interface, const u32 *indir);
522
523/* IOV */
524s32 fm10k_iov_event(struct fm10k_intfc *interface);
525s32 fm10k_iov_mbx(struct fm10k_intfc *interface);
526void fm10k_iov_suspend(struct pci_dev *pdev);
527int fm10k_iov_resume(struct pci_dev *pdev);
528void fm10k_iov_disable(struct pci_dev *pdev);
529int fm10k_iov_configure(struct pci_dev *pdev, int num_vfs);
530void fm10k_iov_update_stats(struct fm10k_intfc *interface);
531s32 fm10k_iov_update_pvid(struct fm10k_intfc *interface, u16 glort, u16 pvid);
532int fm10k_ndo_set_vf_mac(struct net_device *netdev, int vf_idx, u8 *mac);
533int fm10k_ndo_set_vf_vlan(struct net_device *netdev,
534			  int vf_idx, u16 vid, u8 qos, __be16 vlan_proto);
535int fm10k_ndo_set_vf_bw(struct net_device *netdev, int vf_idx,
536			int __always_unused min_rate, int max_rate);
537int fm10k_ndo_get_vf_config(struct net_device *netdev,
538			    int vf_idx, struct ifla_vf_info *ivi);
539int fm10k_ndo_get_vf_stats(struct net_device *netdev,
540			   int vf_idx, struct ifla_vf_stats *stats);
541
542/* DebugFS */
543#ifdef CONFIG_DEBUG_FS
544void fm10k_dbg_q_vector_init(struct fm10k_q_vector *q_vector);
545void fm10k_dbg_q_vector_exit(struct fm10k_q_vector *q_vector);
546void fm10k_dbg_intfc_init(struct fm10k_intfc *interface);
547void fm10k_dbg_intfc_exit(struct fm10k_intfc *interface);
548void fm10k_dbg_init(void);
549void fm10k_dbg_exit(void);
550#else
551static inline void fm10k_dbg_q_vector_init(struct fm10k_q_vector *q_vector) {}
552static inline void fm10k_dbg_q_vector_exit(struct fm10k_q_vector *q_vector) {}
553static inline void fm10k_dbg_intfc_init(struct fm10k_intfc *interface) {}
554static inline void fm10k_dbg_intfc_exit(struct fm10k_intfc *interface) {}
555static inline void fm10k_dbg_init(void) {}
556static inline void fm10k_dbg_exit(void) {}
557#endif /* CONFIG_DEBUG_FS */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
558
559/* DCB */
560#ifdef CONFIG_DCB
561void fm10k_dcbnl_set_ops(struct net_device *dev);
562#else
563static inline void fm10k_dcbnl_set_ops(struct net_device *dev) {}
564#endif
565#endif /* _FM10K_H_ */
v4.6
  1/* Intel Ethernet Switch Host Interface Driver
  2 * Copyright(c) 2013 - 2015 Intel Corporation.
  3 *
  4 * This program is free software; you can redistribute it and/or modify it
  5 * under the terms and conditions of the GNU General Public License,
  6 * version 2, as published by the Free Software Foundation.
  7 *
  8 * This program is distributed in the hope it will be useful, but WITHOUT
  9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 10 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 11 * more details.
 12 *
 13 * The full GNU General Public License is included in this distribution in
 14 * the file called "COPYING".
 15 *
 16 * Contact Information:
 17 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
 18 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
 19 */
 20
 21#ifndef _FM10K_H_
 22#define _FM10K_H_
 23
 24#include <linux/types.h>
 25#include <linux/etherdevice.h>
 26#include <linux/cpumask.h>
 27#include <linux/rtnetlink.h>
 28#include <linux/if_vlan.h>
 29#include <linux/pci.h>
 30#include <linux/net_tstamp.h>
 31#include <linux/clocksource.h>
 32#include <linux/ptp_clock_kernel.h>
 33
 34#include "fm10k_pf.h"
 35#include "fm10k_vf.h"
 36
 37#define FM10K_MAX_JUMBO_FRAME_SIZE	15342	/* Maximum supported size 15K */
 38
 39#define MAX_QUEUES	FM10K_MAX_QUEUES_PF
 40
 41#define FM10K_MIN_RXD		 128
 42#define FM10K_MAX_RXD		4096
 43#define FM10K_DEFAULT_RXD	 256
 44
 45#define FM10K_MIN_TXD		 128
 46#define FM10K_MAX_TXD		4096
 47#define FM10K_DEFAULT_TXD	 256
 48#define FM10K_DEFAULT_TX_WORK	 256
 49
 50#define FM10K_RXBUFFER_256	  256
 51#define FM10K_RX_HDR_LEN	FM10K_RXBUFFER_256
 52#define FM10K_RXBUFFER_2048	 2048
 53#define FM10K_RX_BUFSZ		FM10K_RXBUFFER_2048
 54
 55/* How many Rx Buffers do we bundle into one write to the hardware ? */
 56#define FM10K_RX_BUFFER_WRITE	16	/* Must be power of 2 */
 57
 58#define FM10K_MAX_STATIONS	63
 59struct fm10k_l2_accel {
 60	int size;
 61	u16 count;
 62	u16 dglort;
 63	struct rcu_head rcu;
 64	struct net_device *macvlan[0];
 65};
 66
 67enum fm10k_ring_state_t {
 68	__FM10K_TX_DETECT_HANG,
 69	__FM10K_HANG_CHECK_ARMED,
 70	__FM10K_TX_XPS_INIT_DONE,
 
 
 71};
 72
 73#define check_for_tx_hang(ring) \
 74	test_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
 75#define set_check_for_tx_hang(ring) \
 76	set_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
 77#define clear_check_for_tx_hang(ring) \
 78	clear_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
 79
 80struct fm10k_tx_buffer {
 81	struct fm10k_tx_desc *next_to_watch;
 82	struct sk_buff *skb;
 83	unsigned int bytecount;
 84	u16 gso_segs;
 85	u16 tx_flags;
 86	DEFINE_DMA_UNMAP_ADDR(dma);
 87	DEFINE_DMA_UNMAP_LEN(len);
 88};
 89
 90struct fm10k_rx_buffer {
 91	dma_addr_t dma;
 92	struct page *page;
 93	u32 page_offset;
 94};
 95
 96struct fm10k_queue_stats {
 97	u64 packets;
 98	u64 bytes;
 99};
100
101struct fm10k_tx_queue_stats {
102	u64 restart_queue;
103	u64 csum_err;
104	u64 tx_busy;
105	u64 tx_done_old;
106	u64 csum_good;
107};
108
109struct fm10k_rx_queue_stats {
110	u64 alloc_failed;
111	u64 csum_err;
112	u64 errors;
113	u64 csum_good;
114	u64 switch_errors;
115	u64 drops;
116	u64 pp_errors;
117	u64 link_errors;
118	u64 length_errors;
119};
120
121struct fm10k_ring {
122	struct fm10k_q_vector *q_vector;/* backpointer to host q_vector */
123	struct net_device *netdev;	/* netdev ring belongs to */
124	struct device *dev;		/* device for DMA mapping */
125	struct fm10k_l2_accel __rcu *l2_accel;	/* L2 acceleration list */
126	void *desc;			/* descriptor ring memory */
127	union {
128		struct fm10k_tx_buffer *tx_buffer;
129		struct fm10k_rx_buffer *rx_buffer;
130	};
131	u32 __iomem *tail;
132	unsigned long state;
133	dma_addr_t dma;			/* phys. address of descriptor ring */
134	unsigned int size;		/* length in bytes */
135
136	u8 queue_index;			/* needed for queue management */
137	u8 reg_idx;			/* holds the special value that gets
138					 * the hardware register offset
139					 * associated with this ring, which is
140					 * different for DCB and RSS modes
141					 */
142	u8 qos_pc;			/* priority class of queue */
143	u16 vid;			/* default VLAN ID of queue */
144	u16 count;			/* amount of descriptors */
145
146	u16 next_to_alloc;
147	u16 next_to_use;
148	u16 next_to_clean;
149
150	struct fm10k_queue_stats stats;
151	struct u64_stats_sync syncp;
152	union {
153		/* Tx */
154		struct fm10k_tx_queue_stats tx_stats;
155		/* Rx */
156		struct {
157			struct fm10k_rx_queue_stats rx_stats;
158			struct sk_buff *skb;
159		};
160	};
161} ____cacheline_internodealigned_in_smp;
162
163struct fm10k_ring_container {
164	struct fm10k_ring *ring;	/* pointer to linked list of rings */
165	unsigned int total_bytes;	/* total bytes processed this int */
166	unsigned int total_packets;	/* total packets processed this int */
167	u16 work_limit;			/* total work allowed per interrupt */
168	u16 itr;			/* interrupt throttle rate value */
169	u8 itr_scale;			/* ITR adjustment based on PCI speed */
170	u8 count;			/* total number of rings in vector */
171};
172
173#define FM10K_ITR_MAX		0x0FFF	/* maximum value for ITR */
174#define FM10K_ITR_10K		100	/* 100us */
175#define FM10K_ITR_20K		50	/* 50us */
176#define FM10K_ITR_40K		25	/* 25us */
177#define FM10K_ITR_ADAPTIVE	0x8000	/* adaptive interrupt moderation flag */
178
179#define ITR_IS_ADAPTIVE(itr) (!!(itr & FM10K_ITR_ADAPTIVE))
180
181#define FM10K_TX_ITR_DEFAULT	FM10K_ITR_40K
182#define FM10K_RX_ITR_DEFAULT	FM10K_ITR_20K
183#define FM10K_ITR_ENABLE	(FM10K_ITR_AUTOMASK | FM10K_ITR_MASK_CLEAR)
184
185static inline struct netdev_queue *txring_txq(const struct fm10k_ring *ring)
186{
187	return &ring->netdev->_tx[ring->queue_index];
188}
189
190/* iterator for handling rings in ring container */
191#define fm10k_for_each_ring(pos, head) \
192	for (pos = &(head).ring[(head).count]; (--pos) >= (head).ring;)
193
194#define MAX_Q_VECTORS 256
195#define MIN_Q_VECTORS	1
196enum fm10k_non_q_vectors {
197	FM10K_MBX_VECTOR,
198#define NON_Q_VECTORS_VF NON_Q_VECTORS_PF
199	NON_Q_VECTORS_PF
200};
201
202#define NON_Q_VECTORS(hw)	(((hw)->mac.type == fm10k_mac_pf) ? \
203						NON_Q_VECTORS_PF : \
204						NON_Q_VECTORS_VF)
205#define MIN_MSIX_COUNT(hw)	(MIN_Q_VECTORS + NON_Q_VECTORS(hw))
206
207struct fm10k_q_vector {
208	struct fm10k_intfc *interface;
209	u32 __iomem *itr;	/* pointer to ITR register for this vector */
210	u16 v_idx;		/* index of q_vector within interface array */
211	struct fm10k_ring_container rx, tx;
212
213	struct napi_struct napi;
214	cpumask_t affinity_mask;
215	char name[IFNAMSIZ + 9];
216
217#ifdef CONFIG_DEBUG_FS
218	struct dentry *dbg_q_vector;
219#endif /* CONFIG_DEBUG_FS */
220	struct rcu_head rcu;	/* to avoid race with update stats on free */
221
222	/* for dynamic allocation of rings associated with this q_vector */
223	struct fm10k_ring ring[0] ____cacheline_internodealigned_in_smp;
224};
225
226enum fm10k_ring_f_enum {
227	RING_F_RSS,
228	RING_F_QOS,
229	RING_F_ARRAY_SIZE  /* must be last in enum set */
230};
231
232struct fm10k_ring_feature {
233	u16 limit;	/* upper limit on feature indices */
234	u16 indices;	/* current value of indices */
235	u16 mask;	/* Mask used for feature to ring mapping */
236	u16 offset;	/* offset to start of feature */
237};
238
239struct fm10k_iov_data {
240	unsigned int		num_vfs;
241	unsigned int		next_vf_mbx;
242	struct rcu_head		rcu;
243	struct fm10k_vf_info	vf_info[0];
 
 
 
 
 
 
244};
245
246#define fm10k_vxlan_port_for_each(vp, intfc) \
247	list_for_each_entry(vp, &(intfc)->vxlan_port, list)
248struct fm10k_vxlan_port {
249	struct list_head	list;
250	sa_family_t		sa_family;
251	__be16			port;
 
 
 
 
 
 
 
 
 
252};
253
254/* one work queue for entire driver */
255extern struct workqueue_struct *fm10k_workqueue;
256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257struct fm10k_intfc {
258	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
259	struct net_device *netdev;
260	struct fm10k_l2_accel *l2_accel; /* pointer to L2 acceleration list */
261	struct pci_dev *pdev;
262	unsigned long state;
 
 
 
263
264	u32 flags;
265#define FM10K_FLAG_RESET_REQUESTED		(u32)(1 << 0)
266#define FM10K_FLAG_RSS_FIELD_IPV4_UDP		(u32)(1 << 1)
267#define FM10K_FLAG_RSS_FIELD_IPV6_UDP		(u32)(1 << 2)
268#define FM10K_FLAG_RX_TS_ENABLED		(u32)(1 << 3)
269#define FM10K_FLAG_SWPRI_CONFIG			(u32)(1 << 4)
270#define FM10K_FLAG_DEBUG_STATS			(u32)(1 << 5)
271	int xcast_mode;
272
273	/* Tx fast path data */
274	int num_tx_queues;
275	u16 tx_itr;
276
277	/* Rx fast path data */
278	int num_rx_queues;
279	u16 rx_itr;
280
281	/* TX */
282	struct fm10k_ring *tx_ring[MAX_QUEUES] ____cacheline_aligned_in_smp;
283
284	u64 restart_queue;
285	u64 tx_busy;
286	u64 tx_csum_errors;
287	u64 alloc_failed;
288	u64 rx_csum_errors;
289
290	u64 tx_bytes_nic;
291	u64 tx_packets_nic;
292	u64 rx_bytes_nic;
293	u64 rx_packets_nic;
294	u64 rx_drops_nic;
295	u64 rx_overrun_pf;
296	u64 rx_overrun_vf;
297
298	/* Debug Statistics */
299	u64 hw_sm_mbx_full;
300	u64 hw_csum_tx_good;
301	u64 hw_csum_rx_good;
302	u64 rx_switch_errors;
303	u64 rx_drops;
304	u64 rx_pp_errors;
305	u64 rx_link_errors;
306	u64 rx_length_errors;
307
308	u32 tx_timeout_count;
309
310	/* RX */
311	struct fm10k_ring *rx_ring[MAX_QUEUES];
312
313	/* Queueing vectors */
314	struct fm10k_q_vector *q_vector[MAX_Q_VECTORS];
315	struct msix_entry *msix_entries;
316	int num_q_vectors;	/* current number of q_vectors for device */
317	struct fm10k_ring_feature ring_feature[RING_F_ARRAY_SIZE];
318
319	/* SR-IOV information management structure */
320	struct fm10k_iov_data *iov_data;
321
322	struct fm10k_hw_stats stats;
323	struct fm10k_hw hw;
 
 
324	u32 __iomem *uc_addr;
325	u32 __iomem *sw_addr;
326	u16 msg_enable;
327	u16 tx_ring_count;
328	u16 rx_ring_count;
329	struct timer_list service_timer;
330	struct work_struct service_task;
331	unsigned long next_stats_update;
332	unsigned long next_tx_hang_check;
333	unsigned long last_reset;
334	unsigned long link_down_event;
335	bool host_ready;
 
336
337	u32 reta[FM10K_RETA_SIZE];
338	u32 rssrk[FM10K_RSSRK_SIZE];
339
340	/* VXLAN port tracking information */
341	struct list_head vxlan_port;
 
 
 
 
 
 
 
342
343#ifdef CONFIG_DEBUG_FS
344	struct dentry *dbg_intfc;
345
346#endif /* CONFIG_DEBUG_FS */
347	struct ptp_clock_info ptp_caps;
348	struct ptp_clock *ptp_clock;
349
350	struct sk_buff_head ts_tx_skb_queue;
351	u32 tx_hwtstamp_timeouts;
352
353	struct hwtstamp_config ts_config;
354	/* We are unable to actually adjust the clock beyond the frequency
355	 * value.  Once the clock is started there is no resetting it.  As
356	 * such we maintain a separate offset from the actual hardware clock
357	 * to allow for offset adjustment.
358	 */
359	s64 ptp_adjust;
360	rwlock_t systime_lock;
361#ifdef CONFIG_DCB
362	u8 pfc_en;
363#endif
364	u8 rx_pause;
365
366	/* GLORT resources in use by PF */
367	u16 glort;
368	u16 glort_count;
369
370	/* VLAN ID for updating multicast/unicast lists */
371	u16 vid;
372};
373
374enum fm10k_state_t {
375	__FM10K_RESETTING,
376	__FM10K_DOWN,
377	__FM10K_SERVICE_SCHED,
378	__FM10K_SERVICE_DISABLE,
379	__FM10K_MBX_LOCK,
380	__FM10K_LINK_DOWN,
381};
382
383static inline void fm10k_mbx_lock(struct fm10k_intfc *interface)
384{
385	/* busy loop if we cannot obtain the lock as some calls
386	 * such as ndo_set_rx_mode may be made in atomic context
387	 */
388	while (test_and_set_bit(__FM10K_MBX_LOCK, &interface->state))
389		udelay(20);
390}
391
392static inline void fm10k_mbx_unlock(struct fm10k_intfc *interface)
393{
394	/* flush memory to make sure state is correct */
395	smp_mb__before_atomic();
396	clear_bit(__FM10K_MBX_LOCK, &interface->state);
397}
398
399static inline int fm10k_mbx_trylock(struct fm10k_intfc *interface)
400{
401	return !test_and_set_bit(__FM10K_MBX_LOCK, &interface->state);
402}
403
404/* fm10k_test_staterr - test bits in Rx descriptor status and error fields */
405static inline __le32 fm10k_test_staterr(union fm10k_rx_desc *rx_desc,
406					const u32 stat_err_bits)
407{
408	return rx_desc->d.staterr & cpu_to_le32(stat_err_bits);
409}
410
411/* fm10k_desc_unused - calculate if we have unused descriptors */
412static inline u16 fm10k_desc_unused(struct fm10k_ring *ring)
413{
414	s16 unused = ring->next_to_clean - ring->next_to_use - 1;
415
416	return likely(unused < 0) ? unused + ring->count : unused;
417}
418
419#define FM10K_TX_DESC(R, i)	\
420	(&(((struct fm10k_tx_desc *)((R)->desc))[i]))
421#define FM10K_RX_DESC(R, i)	\
422	 (&(((union fm10k_rx_desc *)((R)->desc))[i]))
423
424#define FM10K_MAX_TXD_PWR	14
425#define FM10K_MAX_DATA_PER_TXD	BIT(FM10K_MAX_TXD_PWR)
426
427/* Tx Descriptors needed, worst case */
428#define TXD_USE_COUNT(S)	DIV_ROUND_UP((S), FM10K_MAX_DATA_PER_TXD)
429#define DESC_NEEDED	(MAX_SKB_FRAGS + 4)
430
431enum fm10k_tx_flags {
432	/* Tx offload flags */
433	FM10K_TX_FLAGS_CSUM	= 0x01,
434};
435
436/* This structure is stored as little endian values as that is the native
437 * format of the Rx descriptor.  The ordering of these fields is reversed
438 * from the actual ftag header to allow for a single bswap to take care
439 * of placing all of the values in network order
440 */
441union fm10k_ftag_info {
442	__le64 ftag;
443	struct {
444		/* dglort and sglort combined into a single 32bit desc read */
445		__le32 glort;
446		/* upper 16 bits of VLAN are reserved 0 for swpri_type_user */
447		__le32 vlan;
448	} d;
449	struct {
450		__le16 dglort;
451		__le16 sglort;
452		__le16 vlan;
453		__le16 swpri_type_user;
454	} w;
455};
456
457struct fm10k_cb {
458	union {
459		__le64 tstamp;
460		unsigned long ts_tx_timeout;
461	};
462	union fm10k_ftag_info fi;
463};
464
465#define FM10K_CB(skb) ((struct fm10k_cb *)(skb)->cb)
466
467/* main */
468extern char fm10k_driver_name[];
469extern const char fm10k_driver_version[];
470int fm10k_init_queueing_scheme(struct fm10k_intfc *interface);
471void fm10k_clear_queueing_scheme(struct fm10k_intfc *interface);
472__be16 fm10k_tx_encap_offload(struct sk_buff *skb);
473netdev_tx_t fm10k_xmit_frame_ring(struct sk_buff *skb,
474				  struct fm10k_ring *tx_ring);
475void fm10k_tx_timeout_reset(struct fm10k_intfc *interface);
 
476bool fm10k_check_tx_hang(struct fm10k_ring *tx_ring);
477void fm10k_alloc_rx_buffers(struct fm10k_ring *rx_ring, u16 cleaned_count);
478
479/* PCI */
480void fm10k_mbx_free_irq(struct fm10k_intfc *);
481int fm10k_mbx_request_irq(struct fm10k_intfc *);
482void fm10k_qv_free_irq(struct fm10k_intfc *interface);
483int fm10k_qv_request_irq(struct fm10k_intfc *interface);
484int fm10k_register_pci_driver(void);
485void fm10k_unregister_pci_driver(void);
486void fm10k_up(struct fm10k_intfc *interface);
487void fm10k_down(struct fm10k_intfc *interface);
488void fm10k_update_stats(struct fm10k_intfc *interface);
489void fm10k_service_event_schedule(struct fm10k_intfc *interface);
 
490void fm10k_update_rx_drop_en(struct fm10k_intfc *interface);
491#ifdef CONFIG_NET_POLL_CONTROLLER
492void fm10k_netpoll(struct net_device *netdev);
493#endif
494
495/* Netdev */
496struct net_device *fm10k_alloc_netdev(const struct fm10k_info *info);
497int fm10k_setup_rx_resources(struct fm10k_ring *);
498int fm10k_setup_tx_resources(struct fm10k_ring *);
499void fm10k_free_rx_resources(struct fm10k_ring *);
500void fm10k_free_tx_resources(struct fm10k_ring *);
501void fm10k_clean_all_rx_rings(struct fm10k_intfc *);
502void fm10k_clean_all_tx_rings(struct fm10k_intfc *);
503void fm10k_unmap_and_free_tx_resource(struct fm10k_ring *,
504				      struct fm10k_tx_buffer *);
505void fm10k_restore_rx_state(struct fm10k_intfc *);
506void fm10k_reset_rx_state(struct fm10k_intfc *);
507int fm10k_setup_tc(struct net_device *dev, u8 tc);
508int fm10k_open(struct net_device *netdev);
509int fm10k_close(struct net_device *netdev);
 
 
 
 
 
 
510
511/* Ethtool */
512void fm10k_set_ethtool_ops(struct net_device *dev);
 
513
514/* IOV */
515s32 fm10k_iov_event(struct fm10k_intfc *interface);
516s32 fm10k_iov_mbx(struct fm10k_intfc *interface);
517void fm10k_iov_suspend(struct pci_dev *pdev);
518int fm10k_iov_resume(struct pci_dev *pdev);
519void fm10k_iov_disable(struct pci_dev *pdev);
520int fm10k_iov_configure(struct pci_dev *pdev, int num_vfs);
 
521s32 fm10k_iov_update_pvid(struct fm10k_intfc *interface, u16 glort, u16 pvid);
522int fm10k_ndo_set_vf_mac(struct net_device *netdev, int vf_idx, u8 *mac);
523int fm10k_ndo_set_vf_vlan(struct net_device *netdev,
524			  int vf_idx, u16 vid, u8 qos);
525int fm10k_ndo_set_vf_bw(struct net_device *netdev, int vf_idx, int rate,
526			int unused);
527int fm10k_ndo_get_vf_config(struct net_device *netdev,
528			    int vf_idx, struct ifla_vf_info *ivi);
 
 
529
530/* DebugFS */
531#ifdef CONFIG_DEBUG_FS
532void fm10k_dbg_q_vector_init(struct fm10k_q_vector *q_vector);
533void fm10k_dbg_q_vector_exit(struct fm10k_q_vector *q_vector);
534void fm10k_dbg_intfc_init(struct fm10k_intfc *interface);
535void fm10k_dbg_intfc_exit(struct fm10k_intfc *interface);
536void fm10k_dbg_init(void);
537void fm10k_dbg_exit(void);
538#else
539static inline void fm10k_dbg_q_vector_init(struct fm10k_q_vector *q_vector) {}
540static inline void fm10k_dbg_q_vector_exit(struct fm10k_q_vector *q_vector) {}
541static inline void fm10k_dbg_intfc_init(struct fm10k_intfc *interface) {}
542static inline void fm10k_dbg_intfc_exit(struct fm10k_intfc *interface) {}
543static inline void fm10k_dbg_init(void) {}
544static inline void fm10k_dbg_exit(void) {}
545#endif /* CONFIG_DEBUG_FS */
546
547/* Time Stamping */
548void fm10k_systime_to_hwtstamp(struct fm10k_intfc *interface,
549			       struct skb_shared_hwtstamps *hwtstamp,
550			       u64 systime);
551void fm10k_ts_tx_enqueue(struct fm10k_intfc *interface, struct sk_buff *skb);
552void fm10k_ts_tx_hwtstamp(struct fm10k_intfc *interface, __le16 dglort,
553			  u64 systime);
554void fm10k_ts_reset(struct fm10k_intfc *interface);
555void fm10k_ts_init(struct fm10k_intfc *interface);
556void fm10k_ts_tx_subtask(struct fm10k_intfc *interface);
557void fm10k_ptp_register(struct fm10k_intfc *interface);
558void fm10k_ptp_unregister(struct fm10k_intfc *interface);
559int fm10k_get_ts_config(struct net_device *netdev, struct ifreq *ifr);
560int fm10k_set_ts_config(struct net_device *netdev, struct ifreq *ifr);
561
562/* DCB */
563#ifdef CONFIG_DCB
564void fm10k_dcbnl_set_ops(struct net_device *dev);
565#else
566static inline void fm10k_dcbnl_set_ops(struct net_device *dev) {}
567#endif
568#endif /* _FM10K_H_ */