|
@@ -177,6 +177,7 @@
|
|
|
#include "wlan_hdd_mdns_offload.h"
|
|
|
#include "wlan_pkt_capture_ucfg_api.h"
|
|
|
#include "os_if_pkt_capture.h"
|
|
|
+#include "wlan_hdd_son.h"
|
|
|
|
|
|
#define g_mode_rates_size (12)
|
|
|
#define a_mode_rates_size (8)
|
|
@@ -7949,6 +7950,37 @@ static int hdd_config_tx_rx_nss(struct hdd_adapter *adapter,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+#ifdef WLAN_FEATURE_SON
|
|
|
+static int hdd_process_generic_set_cmd(struct hdd_adapter *adapter,
|
|
|
+ struct nlattr *tb[])
|
|
|
+{
|
|
|
+ struct wireless_dev *wdev;
|
|
|
+ struct wiphy *wiphy;
|
|
|
+
|
|
|
+ if (!adapter)
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ wdev = &adapter->wdev;
|
|
|
+ if (!wdev || !wdev->wiphy)
|
|
|
+ return 0;
|
|
|
+ wiphy = wdev->wiphy;
|
|
|
+
|
|
|
+ /* Generic command is used by EasyMesh,
|
|
|
+ * route the command to SON module if it is Generic
|
|
|
+ */
|
|
|
+ if (tb[QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_COMMAND])
|
|
|
+ return hdd_son_send_set_wifi_generic_command(wiphy, wdev, tb);
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#else
|
|
|
+static int hdd_process_generic_set_cmd(struct hdd_adapter *adapter,
|
|
|
+ struct nlattr *tb[])
|
|
|
+{
|
|
|
+ return -EINVAL;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
static int hdd_config_ani(struct hdd_adapter *adapter,
|
|
|
struct nlattr *tb[])
|
|
|
{
|
|
@@ -9974,6 +10006,7 @@ static const interdependent_setter_fn interdependent_setters[] = {
|
|
|
hdd_config_vdev_chains,
|
|
|
hdd_config_ani,
|
|
|
hdd_config_tx_rx_nss,
|
|
|
+ hdd_process_generic_set_cmd,
|
|
|
};
|
|
|
|
|
|
/**
|
|
@@ -10137,6 +10170,19 @@ __wlan_hdd_cfg80211_wifi_configuration_get(struct wiphy *wiphy,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
+ /* Generic command is used by EasyMesh,
|
|
|
+ * route the command to SON module if it is Generic
|
|
|
+ *
|
|
|
+ * GENERIC_COMMAND to get configs can not be done as part of dispatch
|
|
|
+ * table because, for each command sent as part of GENERIC command,
|
|
|
+ * return value is different and is handled in SON module as well.
|
|
|
+ * Hence having return type with dispatch table is not possible as
|
|
|
+ * we will not be able to generalize the return for each of get sub
|
|
|
+ * command sent as part of GENERIC command.
|
|
|
+ */
|
|
|
+ if (tb[QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_COMMAND])
|
|
|
+ return hdd_son_send_get_wifi_generic_command(wiphy, wdev, tb);
|
|
|
+
|
|
|
ret = hdd_get_configuration(adapter, tb);
|
|
|
if (ret)
|
|
|
errno = ret;
|