linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iwl-mvm:  Report tx/rx antennas.
@ 2019-09-05 21:28 greearb
  2019-09-30  6:30 ` Luca Coelho
  0 siblings, 1 reply; 2+ messages in thread
From: greearb @ 2019-09-05 21:28 UTC (permalink / raw)
  To: linux-wireless; +Cc: Ben Greear

From: Ben Greear <greearb@candelatech.com>

This makes it easier for user-space to know how many antennas the
radio has.  Seems to work with the AX200 radio, at least.

Signed-off-by: Ben Greear <greearb@candelatech.com>
---
 drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
index 964c7baabede..f90b003f154a 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
@@ -440,10 +440,19 @@ const static struct wiphy_iftype_ext_capab he_iftypes_ext_capa[] = {
 	},
 };
 
+static int iwl_mvm_op_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
+{
+	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
+	*tx_ant = iwl_mvm_get_valid_tx_ant(mvm);
+	*rx_ant = iwl_mvm_get_valid_rx_ant(mvm);
+	return 0;
+}
+
 int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
 {
 	struct ieee80211_hw *hw = mvm->hw;
 	int num_mac, ret, i;
+	u32 tx_ant, rx_ant;
 	static const u32 mvm_ciphers[] = {
 		WLAN_CIPHER_SUITE_WEP40,
 		WLAN_CIPHER_SUITE_WEP104,
@@ -813,6 +822,10 @@ int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
 		wiphy_ext_feature_set(hw->wiphy,
 				      NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER);
 
+	iwl_mvm_op_get_antenna(hw, &tx_ant, &rx_ant);
+	hw->wiphy->available_antennas_tx = tx_ant;
+	hw->wiphy->available_antennas_rx = rx_ant;
+
 	ret = ieee80211_register_hw(mvm->hw);
 	if (ret) {
 		iwl_mvm_leds_exit(mvm);
@@ -5167,6 +5180,7 @@ const struct ieee80211_ops iwl_mvm_hw_ops = {
 	.tx = iwl_mvm_mac_tx,
 	.wake_tx_queue = iwl_mvm_mac_wake_tx_queue,
 	.ampdu_action = iwl_mvm_mac_ampdu_action,
+	.get_antenna = iwl_mvm_op_get_antenna,
 	.start = iwl_mvm_mac_start,
 	.reconfig_complete = iwl_mvm_mac_reconfig_complete,
 	.stop = iwl_mvm_mac_stop,
-- 
2.20.1


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

* Re: [PATCH] iwl-mvm:  Report tx/rx antennas.
  2019-09-05 21:28 [PATCH] iwl-mvm: Report tx/rx antennas greearb
@ 2019-09-30  6:30 ` Luca Coelho
  0 siblings, 0 replies; 2+ messages in thread
From: Luca Coelho @ 2019-09-30  6:30 UTC (permalink / raw)
  To: greearb, linux-wireless

On Thu, 2019-09-05 at 14:28 -0700, greearb@candelatech.com wrote:
> From: Ben Greear <greearb@candelatech.com>
> 
> This makes it easier for user-space to know how many antennas the
> radio has.  Seems to work with the AX200 radio, at least.
> 
> Signed-off-by: Ben Greear <greearb@candelatech.com>
> ---
>  drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
> index 964c7baabede..f90b003f154a 100644
> --- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
> +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
> @@ -440,10 +440,19 @@ const static struct wiphy_iftype_ext_capab he_iftypes_ext_capa[] = {
>  	},
>  };
>  
> +static int iwl_mvm_op_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
> +{
> +	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
> +	*tx_ant = iwl_mvm_get_valid_tx_ant(mvm);
> +	*rx_ant = iwl_mvm_get_valid_rx_ant(mvm);
> +	return 0;
> +}
> +
>  int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
>  {
>  	struct ieee80211_hw *hw = mvm->hw;
>  	int num_mac, ret, i;
> +	u32 tx_ant, rx_ant;
>  	static const u32 mvm_ciphers[] = {
>  		WLAN_CIPHER_SUITE_WEP40,
>  		WLAN_CIPHER_SUITE_WEP104,
> @@ -813,6 +822,10 @@ int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
>  		wiphy_ext_feature_set(hw->wiphy,
>  				      NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER);
>  
> +	iwl_mvm_op_get_antenna(hw, &tx_ant, &rx_ant);
> +	hw->wiphy->available_antennas_tx = tx_ant;
> +	hw->wiphy->available_antennas_rx = rx_ant;
> +

I changed this slightly so we call iwl_mvm_get_valid_tx/rx_ant() here
instead of calling the op function.  Then we don't need the local
variables and it's a bit clearer IMHO.


>  	ret = ieee80211_register_hw(mvm->hw);
>  	if (ret) {
>  		iwl_mvm_leds_exit(mvm);
> @@ -5167,6 +5180,7 @@ const struct ieee80211_ops iwl_mvm_hw_ops = {
>  	.tx = iwl_mvm_mac_tx,
>  	.wake_tx_queue = iwl_mvm_mac_wake_tx_queue,
>  	.ampdu_action = iwl_mvm_mac_ampdu_action,
> +	.get_antenna = iwl_mvm_op_get_antenna,
>  	.start = iwl_mvm_mac_start,
>  	.reconfig_complete = iwl_mvm_mac_reconfig_complete,
>  	.stop = iwl_mvm_mac_stop,

I've applied this (with the above-mentioned change) to our internal
tree and it should reach the mainline following our usual upstreaming
process.  Thanks!

--
Cheers,
Luca.


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

end of thread, other threads:[~2019-09-30  6:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-05 21:28 [PATCH] iwl-mvm: Report tx/rx antennas greearb
2019-09-30  6:30 ` Luca Coelho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).