All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/6] ath11k: add monitor mode support
@ 2019-05-06 14:54 Miles Hu
  2019-05-06 14:54 ` [PATCH v3 1/6] ath11k: init/deinit monitor rings Miles Hu
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Miles Hu @ 2019-05-06 14:54 UTC (permalink / raw)
  To: ath11k; +Cc: Miles Hu

Adding monitor mode in ath11k. It can be enabled
 by commands below:

  ifconfig wlan0 down
  iw wlan0 set type monitor
  ifconfig wlan0 up

change channel:
  iw wlan0 set freq 5805 80 5775

Change summary:
1. create monitor status/destination/buffer/link descriptor rings.
2. enable these rings and push ring filters to buffer/status rings.
3. add napi entry point for monitor status and destination rings process.
4. implement monitor status/buffer rings replenish.
5. process entries from the status ring to get ppdu id and tlv status.
6. process entries from the destination ring by comparing ppdu id to build
    msdu list.
7. merge msdu list to mpdu and copy rx status to cb.
8. deliver mpdu to upper layer.

Known issues:
 - Coexist with other interface type (AP/STA) not fully supported.
 - higher data rates (11ax) not supported. radiotap needs proper info.
 - signal strength and rate idx not accurate in some packets.

-Miles Hu

Miles Hu (6):
  ath11k: init/deinit monitor rings
  ath11k: monitor filter set function
  ath11k: htt setup monitor rings
  ath11k: monitor mode attach/detach
  ath11k: enable/disable monitor mode and destination ring entry process
  ath11k: merge msdu tlv process and status/destination ring process

V2:
 - Move to ath11k-bringup branch
V3:
 - Fix compile error on x86

 drivers/net/wireless/ath/ath11k/core.h     |   8 +-
 drivers/net/wireless/ath/ath11k/dp.c       | 111 ++--
 drivers/net/wireless/ath/ath11k/dp.h       | 189 ++++++-
 drivers/net/wireless/ath/ath11k/dp_rx.c    | 864 ++++++++++++++++++++++++++++-
 drivers/net/wireless/ath/ath11k/dp_rx.h    |  61 +-
 drivers/net/wireless/ath/ath11k/dp_tx.c    | 179 +++---
 drivers/net/wireless/ath/ath11k/dp_tx.h    |   1 +
 drivers/net/wireless/ath/ath11k/hal.c      |   2 +-
 drivers/net/wireless/ath/ath11k/hal_desc.h |   3 +
 drivers/net/wireless/ath/ath11k/hal_rx.c   |  28 +
 drivers/net/wireless/ath/ath11k/hal_rx.h   |  17 +
 drivers/net/wireless/ath/ath11k/mac.c      |  40 +-
 drivers/net/wireless/ath/ath11k/rx_desc.h  |   1 +
 13 files changed, 1341 insertions(+), 163 deletions(-)

-- 
2.7.4


_______________________________________________
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-05-08  9:52 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-06 14:54 [PATCH v3 0/6] ath11k: add monitor mode support Miles Hu
2019-05-06 14:54 ` [PATCH v3 1/6] ath11k: init/deinit monitor rings Miles Hu
2019-05-08  9:50   ` Kalle Valo
2019-05-08  9:52     ` Kalle Valo
2019-05-06 14:54 ` [PATCH v3 2/6] ath11k: monitor filter set function Miles Hu
2019-05-06 14:54 ` [PATCH v3 3/6] ath11k: htt setup monitor rings Miles Hu
2019-05-06 14:54 ` [PATCH v3 4/6] ath11k: monitor mode attach/detach Miles Hu
2019-05-06 14:54 ` [PATCH v3 5/6] ath11k: enable/disable monitor mode and destination ring entry process Miles Hu
2019-05-06 14:54 ` [PATCH v3 6/6] ath11k: merge msdu tlv process and status/destination ring process Miles Hu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.