Bladeren bron

qcacmn: Update Rx stats in case of vow traffic

For non-NSS platform, update no of rx packets being
sent from wifi driver to network stack in case of
vow traffic.

Change-Id: If16a5b9c37a16374d4217369b1f02360c62155a9
CRs-Fixed: 2371429
Vivek Natarajan 6 jaren geleden
bovenliggende
commit
95f004f879
3 gewijzigde bestanden met toevoegingen van 22 en 3 verwijderingen
  1. 18 1
      dp/inc/cdp_txrx_cmn.h
  2. 2 1
      dp/inc/cdp_txrx_ops.h
  3. 2 1
      dp/wifi3.0/dp_main.c

+ 18 - 1
dp/inc/cdp_txrx_cmn.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2011-2019 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -1928,6 +1928,23 @@ uint8_t cdp_get_pdev_id_frm_pdev(ol_txrx_soc_handle soc,
 	return 0;
 }
 
+/*
+ * cdp_get_vow_config_frm_pdev() - return carrier_vow_config from pdev
+ * @soc: opaque soc handle
+ * @pdev: data path pdev handle
+ *
+ * Return: carrier_vow_config
+ */
+static inline
+bool cdp_get_vow_config_frm_pdev(ol_txrx_soc_handle soc,
+				 struct cdp_pdev *pdev)
+{
+	if (soc->ops->cmn_drv_ops->txrx_get_vow_config_frm_pdev)
+		return soc->ops->cmn_drv_ops->txrx_get_vow_config_frm_pdev(
+				pdev);
+	return 0;
+}
+
 /**
  * cdp_pdev_set_chan_noise_floor() - Set channel noise floor to DP layer
  * @soc: opaque soc handle

+ 2 - 1
dp/inc/cdp_txrx_ops.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
  *
  *
  * Permission to use, copy, modify, and/or distribute this software for
@@ -166,6 +166,7 @@ struct cdp_cmn_ops {
 				      uint32_t bitmap);
 
 	uint8_t (*txrx_get_pdev_id_frm_pdev)(struct cdp_pdev *pdev);
+	bool (*txrx_get_vow_config_frm_pdev)(struct cdp_pdev *pdev);
 
 	void (*txrx_pdev_set_chan_noise_floor)(struct cdp_pdev *pdev,
 					       int16_t chan_noise_floor);

+ 2 - 1
dp/wifi3.0/dp_main.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2019 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -8941,6 +8941,7 @@ static struct cdp_cmn_ops dp_ops_cmn = {
 	.txrx_stats_request = dp_txrx_stats_request,
 	.txrx_set_monitor_mode = dp_vdev_set_monitor_mode,
 	.txrx_get_pdev_id_frm_pdev = dp_get_pdev_id_frm_pdev,
+	.txrx_get_vow_config_frm_pdev = NULL,
 	.txrx_pdev_set_chan_noise_floor = dp_pdev_set_chan_noise_floor,
 	.txrx_set_nac = dp_set_nac,
 	.txrx_get_tx_pending = dp_get_tx_pending,