|
@@ -749,34 +749,42 @@ int hdd_reg_set_country(struct hdd_context *hdd_ctx, char *country_code)
|
|
|
return qdf_status_to_os_return(status);
|
|
|
}
|
|
|
|
|
|
-int hdd_reg_set_band(struct net_device *dev, u8 ui_band)
|
|
|
+uint32_t hdd_reg_legacy_setband_to_reg_wifi_band_bitmap(uint8_t qca_setband)
|
|
|
{
|
|
|
- struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
|
|
|
- mac_handle_t mac_handle;
|
|
|
- enum band_info band;
|
|
|
- QDF_STATUS status;
|
|
|
- struct hdd_context *hdd_ctx;
|
|
|
- enum band_info current_band;
|
|
|
- enum band_info connected_band;
|
|
|
+ uint32_t band_bitmap = 0;
|
|
|
|
|
|
- hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
-
|
|
|
- switch (ui_band) {
|
|
|
- case WLAN_HDD_UI_BAND_AUTO:
|
|
|
- band = BAND_ALL;
|
|
|
+ switch (qca_setband) {
|
|
|
+ case QCA_SETBAND_AUTO:
|
|
|
+ band_bitmap |= (BIT(REG_BAND_2G) | BIT(REG_BAND_5G));
|
|
|
break;
|
|
|
- case WLAN_HDD_UI_BAND_5_GHZ:
|
|
|
- band = BAND_5G;
|
|
|
+ case QCA_SETBAND_5G:
|
|
|
+ band_bitmap |= BIT(REG_BAND_5G);
|
|
|
break;
|
|
|
- case WLAN_HDD_UI_BAND_2_4_GHZ:
|
|
|
- band = BAND_2G;
|
|
|
+ case QCA_SETBAND_2G:
|
|
|
+ band_bitmap |= BIT(REG_BAND_2G);
|
|
|
break;
|
|
|
default:
|
|
|
- hdd_err("Invalid band value %u", ui_band);
|
|
|
+ hdd_err("Invalid band value %u", qca_setband);
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ return band_bitmap;
|
|
|
+}
|
|
|
+
|
|
|
+int hdd_reg_set_band(struct net_device *dev, uint32_t band_bitmap)
|
|
|
+{
|
|
|
+ struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
|
|
|
+ struct hdd_context *hdd_ctx;
|
|
|
+ uint32_t current_band;
|
|
|
+
|
|
|
+ hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
+
|
|
|
+ if (!band_bitmap) {
|
|
|
+ hdd_err("Can't disable all bands");
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- hdd_debug("change band to %u", band);
|
|
|
+ hdd_debug("change band to %u", band_bitmap);
|
|
|
|
|
|
if (ucfg_reg_get_curr_band(hdd_ctx->pdev, ¤t_band) !=
|
|
|
QDF_STATUS_SUCCESS) {
|
|
@@ -784,57 +792,17 @@ int hdd_reg_set_band(struct net_device *dev, u8 ui_band)
|
|
|
return -EIO;
|
|
|
}
|
|
|
|
|
|
- if (current_band == band)
|
|
|
+ if (current_band == band_bitmap) {
|
|
|
+ hdd_debug("band is the same so not updating");
|
|
|
return 0;
|
|
|
-
|
|
|
- hdd_ctx->curr_band = band;
|
|
|
-
|
|
|
- /* Change band request received.
|
|
|
- * Abort pending scan requests, flush the existing scan results,
|
|
|
- * and change the band capability
|
|
|
- */
|
|
|
- hdd_debug("Current band value = %u, new setting %u ",
|
|
|
- current_band, band);
|
|
|
-
|
|
|
- mac_handle = hdd_ctx->mac_handle;
|
|
|
- hdd_for_each_adapter(hdd_ctx, adapter) {
|
|
|
- wlan_abort_scan(hdd_ctx->pdev, INVAL_PDEV_ID,
|
|
|
- adapter->vdev_id, INVALID_SCAN_ID, false);
|
|
|
- connected_band = hdd_conn_get_connected_band(
|
|
|
- WLAN_HDD_GET_STATION_CTX_PTR(adapter));
|
|
|
-
|
|
|
- /* Handling is done only for STA and P2P */
|
|
|
- if (band != BAND_ALL &&
|
|
|
- ((adapter->device_mode == QDF_STA_MODE) ||
|
|
|
- (adapter->device_mode == QDF_P2P_CLIENT_MODE)) &&
|
|
|
- (hdd_conn_is_connected(
|
|
|
- WLAN_HDD_GET_STATION_CTX_PTR(adapter)))
|
|
|
- && (connected_band != band)) {
|
|
|
- status = QDF_STATUS_SUCCESS;
|
|
|
-
|
|
|
- /* STA already connected on current
|
|
|
- * band, So issue disconnect first,
|
|
|
- * then change the band
|
|
|
- */
|
|
|
-
|
|
|
- hdd_debug("STA (Device mode %s(%d)) connected in band %u, Changing band to %u, Issuing Disconnect",
|
|
|
- qdf_opmode_str(adapter->device_mode),
|
|
|
- adapter->device_mode, current_band, band);
|
|
|
-
|
|
|
- status = wlan_hdd_disconnect(adapter,
|
|
|
- eCSR_DISCONNECT_REASON_UNSPECIFIED,
|
|
|
- eSIR_MAC_OPER_CHANNEL_BAND_CHANGE);
|
|
|
- if (status) {
|
|
|
- hdd_err("Hdd disconnect failed, status: %d",
|
|
|
- status);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- }
|
|
|
- ucfg_scan_flush_results(hdd_ctx->pdev, NULL);
|
|
|
}
|
|
|
|
|
|
- if (QDF_IS_STATUS_ERROR(ucfg_reg_set_band(hdd_ctx->pdev, band))) {
|
|
|
- hdd_err("Failed to set the band value to %u", band);
|
|
|
+ hdd_ctx->curr_band = wlan_reg_band_bitmap_to_band_info(band_bitmap);
|
|
|
+
|
|
|
+ if (QDF_IS_STATUS_ERROR(ucfg_reg_set_band(hdd_ctx->pdev,
|
|
|
+ band_bitmap))) {
|
|
|
+ hdd_err("Failed to set the band bitmap value to %u",
|
|
|
+ band_bitmap);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|