diff options
Diffstat (limited to 'drivers/net/wireless/ath/wil6210/txrx.h')
-rw-r--r-- | drivers/net/wireless/ath/wil6210/txrx.h | 49 |
1 files changed, 42 insertions, 7 deletions
diff --git a/drivers/net/wireless/ath/wil6210/txrx.h b/drivers/net/wireless/ath/wil6210/txrx.h index 45a61f597c5c..adef12fb2aee 100644 --- a/drivers/net/wireless/ath/wil6210/txrx.h +++ b/drivers/net/wireless/ath/wil6210/txrx.h | |||
@@ -339,24 +339,59 @@ union vring_desc { | |||
339 | struct vring_rx_desc rx; | 339 | struct vring_rx_desc rx; |
340 | } __packed; | 340 | } __packed; |
341 | 341 | ||
342 | static inline int wil_rxdesc_phy_length(volatile struct vring_rx_desc *d) | 342 | static inline int wil_rxdesc_tid(struct vring_rx_desc *d) |
343 | { | 343 | { |
344 | return WIL_GET_BITS(d->dma.d0, 16, 29); | 344 | return WIL_GET_BITS(d->mac.d0, 0, 3); |
345 | } | 345 | } |
346 | 346 | ||
347 | static inline int wil_rxdesc_mcs(volatile struct vring_rx_desc *d) | 347 | static inline int wil_rxdesc_cid(struct vring_rx_desc *d) |
348 | { | 348 | { |
349 | return WIL_GET_BITS(d->mac.d1, 21, 24); | 349 | return WIL_GET_BITS(d->mac.d0, 4, 6); |
350 | } | 350 | } |
351 | 351 | ||
352 | static inline int wil_rxdesc_ds_bits(volatile struct vring_rx_desc *d) | 352 | static inline int wil_rxdesc_mid(struct vring_rx_desc *d) |
353 | { | 353 | { |
354 | return WIL_GET_BITS(d->mac.d1, 8, 9); | 354 | return WIL_GET_BITS(d->mac.d0, 8, 9); |
355 | } | 355 | } |
356 | 356 | ||
357 | static inline int wil_rxdesc_ftype(volatile struct vring_rx_desc *d) | 357 | static inline int wil_rxdesc_ftype(struct vring_rx_desc *d) |
358 | { | 358 | { |
359 | return WIL_GET_BITS(d->mac.d0, 10, 11); | 359 | return WIL_GET_BITS(d->mac.d0, 10, 11); |
360 | } | 360 | } |
361 | 361 | ||
362 | static inline int wil_rxdesc_subtype(struct vring_rx_desc *d) | ||
363 | { | ||
364 | return WIL_GET_BITS(d->mac.d0, 12, 15); | ||
365 | } | ||
366 | |||
367 | static inline int wil_rxdesc_seq(struct vring_rx_desc *d) | ||
368 | { | ||
369 | return WIL_GET_BITS(d->mac.d0, 16, 27); | ||
370 | } | ||
371 | |||
372 | static inline int wil_rxdesc_ext_subtype(struct vring_rx_desc *d) | ||
373 | { | ||
374 | return WIL_GET_BITS(d->mac.d0, 28, 31); | ||
375 | } | ||
376 | |||
377 | static inline int wil_rxdesc_ds_bits(struct vring_rx_desc *d) | ||
378 | { | ||
379 | return WIL_GET_BITS(d->mac.d1, 8, 9); | ||
380 | } | ||
381 | |||
382 | static inline int wil_rxdesc_mcs(struct vring_rx_desc *d) | ||
383 | { | ||
384 | return WIL_GET_BITS(d->mac.d1, 21, 24); | ||
385 | } | ||
386 | |||
387 | static inline int wil_rxdesc_phy_length(struct vring_rx_desc *d) | ||
388 | { | ||
389 | return WIL_GET_BITS(d->dma.d0, 16, 29); | ||
390 | } | ||
391 | |||
392 | static inline struct vring_rx_desc *wil_skb_rxdesc(struct sk_buff *skb) | ||
393 | { | ||
394 | return (void *)skb->cb; | ||
395 | } | ||
396 | |||
362 | #endif /* WIL6210_TXRX_H */ | 397 | #endif /* WIL6210_TXRX_H */ |