|
@@ -56,6 +56,27 @@
|
|
|
#define DP_QOS_TID 0x0f
|
|
|
#define DP_IPV6_PRIORITY_SHIFT 20
|
|
|
|
|
|
+#if defined(CONFIG_MCL)
|
|
|
+#define MAX_PDEV_CNT 1
|
|
|
+#else
|
|
|
+#define MAX_PDEV_CNT 3
|
|
|
+#endif
|
|
|
+#define MAX_LINK_DESC_BANKS 8
|
|
|
+#define MAX_TXDESC_POOLS 4
|
|
|
+#define MAX_RXDESC_POOLS 4
|
|
|
+#define MAX_REO_DEST_RINGS 4
|
|
|
+#define MAX_TCL_DATA_RINGS 4
|
|
|
+#define DP_MAX_TX_RINGS 8
|
|
|
+#define DP_MAX_RX_RINGS 8
|
|
|
+#define MAX_IDLE_SCATTER_BUFS 16
|
|
|
+#define DP_MAX_IRQ_PER_CONTEXT 12
|
|
|
+#define DP_MAX_INTERRUPT_CONTEXTS 8
|
|
|
+#define DEFAULT_HW_PEER_ID 0xffff
|
|
|
+
|
|
|
+#define MAX_TX_HW_QUEUES 3
|
|
|
+
|
|
|
+#define DP_MAX_INTERRUPT_CONTEXTS 8
|
|
|
+
|
|
|
struct dp_soc_cmn;
|
|
|
struct dp_pdev;
|
|
|
struct dp_vdev;
|
|
@@ -91,6 +112,7 @@ union dp_rx_desc_list_elem_t;
|
|
|
#define DP_SW2HW_MACID(id) ((id) + 1)
|
|
|
|
|
|
#define DP_HW2SW_MACID(id) ((id) > 0 ? ((id) - 1) : 0)
|
|
|
+#define DP_MAC_ADDR_LEN 6
|
|
|
|
|
|
/**
|
|
|
* enum dp_tx_frm_type
|
|
@@ -290,6 +312,124 @@ struct reo_desc_list_node {
|
|
|
struct dp_rx_tid rx_tid;
|
|
|
};
|
|
|
|
|
|
+/* TODO: Proper comments have been added in the subsequesnt gerrit */
|
|
|
+/* packet info */
|
|
|
+struct dp_pkt_info {
|
|
|
+ uint32_t num; /*no of packets*/
|
|
|
+ uint32_t bytes; /* total no of bytes */
|
|
|
+};
|
|
|
+
|
|
|
+/* per pdev tx stats*/
|
|
|
+struct dp_tx_pdev_stats {
|
|
|
+
|
|
|
+ struct dp_pkt_info rcvd; /*total packets received for transmission */
|
|
|
+ struct {
|
|
|
+ /* Pkt Info for which completions were received */
|
|
|
+ struct dp_pkt_info comp_pkt;
|
|
|
+ uint32_t mcs_count[MAX_MCS + 1]; /* MCS Count */
|
|
|
+ } comp; /* Tx completions received*/
|
|
|
+
|
|
|
+ struct dp_pkt_info freed; /* Tx packets freed*/
|
|
|
+
|
|
|
+ struct dp_pkt_info processed; /* Tx packets processed*/
|
|
|
+ struct dp_pkt_info outstanding; /* Tx packets remaining for processing*/
|
|
|
+
|
|
|
+ struct {
|
|
|
+ struct dp_pkt_info dropped_pkt; /* Total packets dropped */
|
|
|
+ uint32_t desc_total; /* total descriptors dropped */
|
|
|
+ uint32_t dma_map_error; /* Dropped due to Dma Error */
|
|
|
+ uint32_t ring_full; /* dropped due to ring full */
|
|
|
+ uint32_t fw_discard; /* Discarded bu firmware */
|
|
|
+ uint32_t fw_discard_retired; /* fw_discard_retired */
|
|
|
+ /* firmware_discard_untransmitted */
|
|
|
+ uint32_t firmware_discard_untransmitted;
|
|
|
+ uint32_t mpdu_age_out; /* mpdu_age_out */
|
|
|
+ uint32_t firmware_discard_reason1; /*firmware_discard_reason1*/
|
|
|
+ uint32_t firmware_discard_reason2; /*firmware_discard_reason2*/
|
|
|
+ uint32_t firmware_discard_reason3; /*firmware_discard_reason3*/
|
|
|
+ } dropped; /* Packets dropped on the Tx side */
|
|
|
+
|
|
|
+ struct {
|
|
|
+ struct dp_pkt_info sg_pkt; /* total scatter gather packets */
|
|
|
+ uint32_t dropped_host; /* SG packets dropped by host */
|
|
|
+ uint32_t dropped_target; /* SG packets dropped by target */
|
|
|
+ } sg; /* Scatter Gather packet info */
|
|
|
+
|
|
|
+ struct {
|
|
|
+ uint32_t num_seg; /* No of segments in TSO packets */
|
|
|
+ struct dp_pkt_info tso_pkt; /* total no of TSO packets */
|
|
|
+ uint32_t dropped_host; /* TSO packets dropped by host */
|
|
|
+ uint32_t dropped_target; /* TSO packets dropped by target */
|
|
|
+ } tso; /* TSO packets info */
|
|
|
+
|
|
|
+ struct {
|
|
|
+ /* total no of multicast conversion packets */
|
|
|
+ struct dp_pkt_info mcast_pkt;
|
|
|
+ /* packets dropped due to map error */
|
|
|
+ uint32_t dropped_map_error;
|
|
|
+ /* packets dropped due to self Mac address */
|
|
|
+ uint32_t dropped_self_mac;
|
|
|
+ /* Packets dropped due to send fail */
|
|
|
+ uint32_t dropped_send_fail;
|
|
|
+ /* total unicast packets transmitted */
|
|
|
+ uint32_t ucast;
|
|
|
+ } mcast_en; /* Multicast Enhancement packets info */
|
|
|
+
|
|
|
+ /* Total packets passed Reinject handler */
|
|
|
+ struct dp_pkt_info reinject_pkts;
|
|
|
+ /* Total packets passed to inspect handler */
|
|
|
+ struct dp_pkt_info inspect_pkts;
|
|
|
+ /* Total Raw packets */
|
|
|
+ struct dp_pkt_info raw_pkt;
|
|
|
+};
|
|
|
+
|
|
|
+/* Per pdev RX stats */
|
|
|
+struct dp_rx_pdev_stats {
|
|
|
+ struct dp_pkt_info rcvd_reo; /* packets received on the reo ring */
|
|
|
+ struct {
|
|
|
+ /* packets dropped because of no peer */
|
|
|
+ struct dp_pkt_info no_peer;
|
|
|
+ /* packets dropped because nsdu_done bit not set */
|
|
|
+ struct dp_pkt_info msdu_not_done;
|
|
|
+ } dropped; /* packets dropped on rx */
|
|
|
+ struct dp_pkt_info replenished; /* total packets replnished */
|
|
|
+ struct dp_pkt_info to_stack; /* total packets sent up the stack */
|
|
|
+ struct dp_pkt_info intra_bss; /* Intra BSS packets received */
|
|
|
+ struct dp_pkt_info wds; /* WDS packets received */
|
|
|
+ struct dp_pkt_info desc;
|
|
|
+ struct dp_pkt_info buff;
|
|
|
+ struct dp_pkt_info raw; /* Raw Pakets received */
|
|
|
+ struct {
|
|
|
+ uint32_t rxdma_unitialized; /* rxdma_unitialized errors */
|
|
|
+ uint32_t desc_alloc_fail; /* desc alloc failed errors */
|
|
|
+ } err; /* Rx errors */
|
|
|
+ uint32_t buf_freelist; /* buffers added back in freelist */
|
|
|
+ uint32_t mcs_count[MAX_MCS + 1]; /* packets in different MCS rates */
|
|
|
+ uint32_t sgi_count[MAX_MCS + 1]; /* SGI count */
|
|
|
+ /* Number of MSDUs with no MPDU level aggregation */
|
|
|
+ uint32_t non_ampdu_cnt;
|
|
|
+ /* Number of MSDUs part of AMSPU */
|
|
|
+ uint32_t ampdu_cnt;
|
|
|
+ /* Number of MSDUs with no MSDU level aggregation */
|
|
|
+ uint32_t non_amsdu_cnt;
|
|
|
+ /* Number of MSDUs part of AMSDU*/
|
|
|
+ uint32_t amsdu_cnt;
|
|
|
+ /* Packet count in spatiel Streams */
|
|
|
+ uint32_t nss[SS_COUNT];
|
|
|
+ /* Packet count in different Bandwidths */
|
|
|
+ uint32_t bw[SUPPORTED_BW];
|
|
|
+ /* reception type os packets */
|
|
|
+ uint32_t reception_type[SUPPORTED_RECEPTION_TYPES];
|
|
|
+};
|
|
|
+
|
|
|
+struct dp_ast_entry {
|
|
|
+ uint16_t ast_idx;
|
|
|
+ uint8_t mac_addr[DP_MAC_ADDR_LEN];
|
|
|
+ uint8_t next_hop;
|
|
|
+ struct dp_peer *peer;
|
|
|
+ TAILQ_ENTRY(dp_ast_entry) ast_entry_elem;
|
|
|
+};
|
|
|
+
|
|
|
/* SOC level structure for data path */
|
|
|
struct dp_soc {
|
|
|
/* Common base structure - Should be the first member */
|
|
@@ -502,6 +642,8 @@ struct dp_soc {
|
|
|
/* Enable processing of Tx completion status words */
|
|
|
bool process_tx_status;
|
|
|
|
|
|
+ struct dp_ast_entry *ast_table[WLAN_UMAC_PSOC_MAX_PEERS];
|
|
|
+
|
|
|
#ifdef DP_INTR_POLL_BASED
|
|
|
/*interrupt timer*/
|
|
|
qdf_timer_t int_timer;
|
|
@@ -601,7 +743,6 @@ struct dp_pdev {
|
|
|
|
|
|
struct dp_peer;
|
|
|
|
|
|
-#define DP_MAC_ADDR_LEN 6
|
|
|
union dp_align_mac_addr {
|
|
|
uint8_t raw[DP_MAC_ADDR_LEN];
|
|
|
struct {
|
|
@@ -731,6 +872,8 @@ struct dp_peer {
|
|
|
/* VDEV to which this peer is associated */
|
|
|
struct dp_vdev *vdev;
|
|
|
|
|
|
+ struct dp_ast_entry self_ast_entry;
|
|
|
+
|
|
|
qdf_atomic_t ref_cnt;
|
|
|
|
|
|
/* TODO: See if multiple peer IDs are required in wifi3.0 */
|
|
@@ -785,5 +928,8 @@ struct dp_peer {
|
|
|
qdf_time_t last_deauth_rcvd;
|
|
|
/* Peer Stats */
|
|
|
struct cdp_peer_stats stats;
|
|
|
+
|
|
|
+ TAILQ_HEAD(, dp_ast_entry) ast_entry_list;
|
|
|
+ /* TBD */
|
|
|
};
|
|
|
#endif /* _DP_TYPES_H_ */
|