Selaa lähdekoodia

qcacld-3.0: Update SAR version as per interface changes

Currently SAR version above 3 is not mapped in host.
This will cause unexpected print in logs.

So, update SAR versions enum as per the interface changes.

Change-Id: I3ed4ac7cbb2903bc30c4f3dae30633c13a5a29df
CRs-Fixed: 3606097
Vinod Kumar Myadam 1 vuosi sitten
vanhempi
sitoutus
01a14eebc1
2 muutettua tiedostoa jossa 11 lisäystä ja 3 poistoa
  1. 6 1
      core/hdd/src/wlan_hdd_sar_limits.c
  2. 5 2
      core/wma/src/wma_sar_public_structs.h

+ 6 - 1
core/hdd/src/wlan_hdd_sar_limits.c

@@ -324,6 +324,10 @@ static u32 hdd_to_nl_sar_version(enum sar_version hdd_sar_version)
 		return QCA_WLAN_VENDOR_SAR_VERSION_2;
 	case (SAR_VERSION_3):
 		return QCA_WLAN_VENDOR_SAR_VERSION_3;
+	case (SAR_VERSION_4):
+	case (SAR_VERSION_5):
+	case (SAR_VERSION_6):
+		return QCA_WLAN_VENDOR_SAR_VERSION_1;
 	default:
 		hdd_err("Unexpected SAR version received :%u, sending default to userspace",
 			hdd_sar_version);
@@ -350,7 +354,8 @@ static int hdd_sar_fill_capability_response(struct sk_buff *skb,
 	attr = QCA_WLAN_VENDOR_ATTR_SAR_CAPABILITY_VERSION;
 	value = hdd_to_nl_sar_version(hdd_ctx->sar_version);
 
-	hdd_debug("Sending SAR Version = %u to userspace", value);
+	hdd_debug("Sending SAR Version = %u to userspace, fw_sar_version: %d",
+		  value, hdd_ctx->sar_version);
 
 	errno = nla_put_u32(skb, attr, value);
 

+ 5 - 2
core/wma/src/wma_sar_public_structs.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2018 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. 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
@@ -25,7 +25,10 @@ struct sar_limit_event;
 enum sar_version {
 	SAR_VERSION_1,
 	SAR_VERSION_2,
-	SAR_VERSION_3
+	SAR_VERSION_3,
+	SAR_VERSION_4,
+	SAR_VERSION_5,
+	SAR_VERSION_6,
 };
 
 /**