aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/igb/igb.h
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
commitc71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch)
treeecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/igb/igb.h
parentea53c912f8a86a8567697115b6a0d8152beee5c8 (diff)
parent6a00f206debf8a5c8899055726ad127dbeeed098 (diff)
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts: litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/igb/igb.h')
-rw-r--r--drivers/net/igb/igb.h22
1 files changed, 19 insertions, 3 deletions
diff --git a/drivers/net/igb/igb.h b/drivers/net/igb/igb.h
index 6e63d9a7fc75..f4fa4b1751cf 100644
--- a/drivers/net/igb/igb.h
+++ b/drivers/net/igb/igb.h
@@ -77,6 +77,7 @@ struct vf_data_storage {
77 unsigned long last_nack; 77 unsigned long last_nack;
78 u16 pf_vlan; /* When set, guest VLAN config not allowed. */ 78 u16 pf_vlan; /* When set, guest VLAN config not allowed. */
79 u16 pf_qos; 79 u16 pf_qos;
80 u16 tx_rate;
80}; 81};
81 82
82#define IGB_VF_FLAG_CTS 0x00000001 /* VF is clear to send data */ 83#define IGB_VF_FLAG_CTS 0x00000001 /* VF is clear to send data */
@@ -143,7 +144,7 @@ struct igb_buffer {
143 u16 next_to_watch; 144 u16 next_to_watch;
144 unsigned int bytecount; 145 unsigned int bytecount;
145 u16 gso_segs; 146 u16 gso_segs;
146 union skb_shared_tx shtx; 147 u8 tx_flags;
147 u8 mapped_as_page; 148 u8 mapped_as_page;
148 }; 149 };
149 /* RX */ 150 /* RX */
@@ -159,6 +160,7 @@ struct igb_tx_queue_stats {
159 u64 packets; 160 u64 packets;
160 u64 bytes; 161 u64 bytes;
161 u64 restart_queue; 162 u64 restart_queue;
163 u64 restart_queue2;
162}; 164};
163 165
164struct igb_rx_queue_stats { 166struct igb_rx_queue_stats {
@@ -210,11 +212,14 @@ struct igb_ring {
210 /* TX */ 212 /* TX */
211 struct { 213 struct {
212 struct igb_tx_queue_stats tx_stats; 214 struct igb_tx_queue_stats tx_stats;
215 struct u64_stats_sync tx_syncp;
216 struct u64_stats_sync tx_syncp2;
213 bool detect_tx_hung; 217 bool detect_tx_hung;
214 }; 218 };
215 /* RX */ 219 /* RX */
216 struct { 220 struct {
217 struct igb_rx_queue_stats rx_stats; 221 struct igb_rx_queue_stats rx_stats;
222 struct u64_stats_sync rx_syncp;
218 u32 rx_buffer_len; 223 u32 rx_buffer_len;
219 }; 224 };
220 }; 225 };
@@ -288,6 +293,9 @@ struct igb_adapter {
288 struct timecompare compare; 293 struct timecompare compare;
289 struct hwtstamp_config hwtstamp_config; 294 struct hwtstamp_config hwtstamp_config;
290 295
296 spinlock_t stats64_lock;
297 struct rtnl_link_stats64 stats64;
298
291 /* structs defined in e1000_hw.h */ 299 /* structs defined in e1000_hw.h */
292 struct e1000_hw hw; 300 struct e1000_hw hw;
293 struct e1000_hw_stats stats; 301 struct e1000_hw_stats stats;
@@ -316,13 +324,21 @@ struct igb_adapter {
316 u16 rx_ring_count; 324 u16 rx_ring_count;
317 unsigned int vfs_allocated_count; 325 unsigned int vfs_allocated_count;
318 struct vf_data_storage *vf_data; 326 struct vf_data_storage *vf_data;
327 int vf_rate_link_speed;
319 u32 rss_queues; 328 u32 rss_queues;
329 u32 wvbr;
320}; 330};
321 331
322#define IGB_FLAG_HAS_MSI (1 << 0) 332#define IGB_FLAG_HAS_MSI (1 << 0)
323#define IGB_FLAG_DCA_ENABLED (1 << 1) 333#define IGB_FLAG_DCA_ENABLED (1 << 1)
324#define IGB_FLAG_QUAD_PORT_A (1 << 2) 334#define IGB_FLAG_QUAD_PORT_A (1 << 2)
325#define IGB_FLAG_QUEUE_PAIRS (1 << 3) 335#define IGB_FLAG_QUEUE_PAIRS (1 << 3)
336#define IGB_FLAG_DMAC (1 << 4)
337
338/* DMA Coalescing defines */
339#define IGB_MIN_TXPBSIZE 20408
340#define IGB_TX_BUF_4096 4096
341#define IGB_DMCTLX_DCFLUSH_DIS 0x80000000 /* Disable DMA Coal Flush */
326 342
327#define IGB_82576_TSYNC_SHIFT 19 343#define IGB_82576_TSYNC_SHIFT 19
328#define IGB_82580_TSYNC_SHIFT 24 344#define IGB_82580_TSYNC_SHIFT 24
@@ -344,7 +360,7 @@ extern int igb_up(struct igb_adapter *);
344extern void igb_down(struct igb_adapter *); 360extern void igb_down(struct igb_adapter *);
345extern void igb_reinit_locked(struct igb_adapter *); 361extern void igb_reinit_locked(struct igb_adapter *);
346extern void igb_reset(struct igb_adapter *); 362extern void igb_reset(struct igb_adapter *);
347extern int igb_set_spd_dplx(struct igb_adapter *, u16); 363extern int igb_set_spd_dplx(struct igb_adapter *, u32, u8);
348extern int igb_setup_tx_resources(struct igb_ring *); 364extern int igb_setup_tx_resources(struct igb_ring *);
349extern int igb_setup_rx_resources(struct igb_ring *); 365extern int igb_setup_rx_resources(struct igb_ring *);
350extern void igb_free_tx_resources(struct igb_ring *); 366extern void igb_free_tx_resources(struct igb_ring *);
@@ -357,7 +373,7 @@ extern netdev_tx_t igb_xmit_frame_ring_adv(struct sk_buff *, struct igb_ring *);
357extern void igb_unmap_and_free_tx_resource(struct igb_ring *, 373extern void igb_unmap_and_free_tx_resource(struct igb_ring *,
358 struct igb_buffer *); 374 struct igb_buffer *);
359extern void igb_alloc_rx_buffers_adv(struct igb_ring *, int); 375extern void igb_alloc_rx_buffers_adv(struct igb_ring *, int);
360extern void igb_update_stats(struct igb_adapter *); 376extern void igb_update_stats(struct igb_adapter *, struct rtnl_link_stats64 *);
361extern bool igb_has_link(struct igb_adapter *adapter); 377extern bool igb_has_link(struct igb_adapter *adapter);
362extern void igb_set_ethtool_ops(struct net_device *); 378extern void igb_set_ethtool_ops(struct net_device *);
363extern void igb_power_up_link(struct igb_adapter *); 379extern void igb_power_up_link(struct igb_adapter *);