diff options
Diffstat (limited to 'drivers/net/igb/igb.h')
-rw-r--r-- | drivers/net/igb/igb.h | 22 |
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 | ||
164 | struct igb_rx_queue_stats { | 166 | struct 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 *); | |||
344 | extern void igb_down(struct igb_adapter *); | 360 | extern void igb_down(struct igb_adapter *); |
345 | extern void igb_reinit_locked(struct igb_adapter *); | 361 | extern void igb_reinit_locked(struct igb_adapter *); |
346 | extern void igb_reset(struct igb_adapter *); | 362 | extern void igb_reset(struct igb_adapter *); |
347 | extern int igb_set_spd_dplx(struct igb_adapter *, u16); | 363 | extern int igb_set_spd_dplx(struct igb_adapter *, u32, u8); |
348 | extern int igb_setup_tx_resources(struct igb_ring *); | 364 | extern int igb_setup_tx_resources(struct igb_ring *); |
349 | extern int igb_setup_rx_resources(struct igb_ring *); | 365 | extern int igb_setup_rx_resources(struct igb_ring *); |
350 | extern void igb_free_tx_resources(struct igb_ring *); | 366 | extern 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 *); | |||
357 | extern void igb_unmap_and_free_tx_resource(struct igb_ring *, | 373 | extern void igb_unmap_and_free_tx_resource(struct igb_ring *, |
358 | struct igb_buffer *); | 374 | struct igb_buffer *); |
359 | extern void igb_alloc_rx_buffers_adv(struct igb_ring *, int); | 375 | extern void igb_alloc_rx_buffers_adv(struct igb_ring *, int); |
360 | extern void igb_update_stats(struct igb_adapter *); | 376 | extern void igb_update_stats(struct igb_adapter *, struct rtnl_link_stats64 *); |
361 | extern bool igb_has_link(struct igb_adapter *adapter); | 377 | extern bool igb_has_link(struct igb_adapter *adapter); |
362 | extern void igb_set_ethtool_ops(struct net_device *); | 378 | extern void igb_set_ethtool_ops(struct net_device *); |
363 | extern void igb_power_up_link(struct igb_adapter *); | 379 | extern void igb_power_up_link(struct igb_adapter *); |