qcacmn: Add new component id for cp stats

Add support for new component cp stats module id,
component id, obj mgr ref id and default log level

CRs-Fixed: 2192386
Change-Id: Ibb523f3756ad5cc80d5691ab421bcaaa0c7e2e4a
diff --git a/umac/cmn_services/inc/wlan_cmn.h b/umac/cmn_services/inc/wlan_cmn.h
index 74861c1..3e30616 100644
--- a/umac/cmn_services/inc/wlan_cmn.h
+++ b/umac/cmn_services/inc/wlan_cmn.h
@@ -243,6 +243,7 @@
  * @WLAN_UMAC_COMP_FD:            FILS Discovery
  * @WLAN_UMAC_COMP_OCB:           OCB
  * @WLAN_UMAC_COMP_IPA:           IPA
+ * @WLAN_UMAC_COMP_CP_STATS:      Control Plane Statistics
  * @WLAN_UMAC_COMP_ID_MAX:        Maximum components in UMAC
  *
  * This id is static.
@@ -276,6 +277,7 @@
 	WLAN_UMAC_COMP_FD,
 	WLAN_UMAC_COMP_OCB,
 	WLAN_UMAC_COMP_IPA,
+	WLAN_UMAC_COMP_CP_STATS,
 	WLAN_UMAC_COMP_ID_MAX,
 };
 
diff --git a/umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h b/umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h
index 296b8ac..d504420 100644
--- a/umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h
+++ b/umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h
@@ -215,6 +215,7 @@
  * @WLAN_OCB_SB_ID:             OCB Southbound operations
  * @WLAN_INIT_DEINIT_ID:        Init deinit module
  * @WLAN_IPA_ID:                IPA operations
+ * @WLAN_CP_STATS_ID:           Control Plane Statistics Module
  * @WLAN_REF_ID_MAX:            Max id used to generate ref count tracking array
  */
  /* New value added to the enum must also be reflected in function
@@ -259,6 +260,7 @@
 	WLAN_OCB_SB_ID        = 35,
 	WLAN_INIT_DEINIT_ID   = 36,
 	WLAN_IPA_ID           = 37,
+	WLAN_CP_STATS_ID      = 38,
 	WLAN_REF_ID_MAX,
 } wlan_objmgr_ref_dbgid;
 
@@ -310,6 +312,7 @@
 					"WLAN_OCB_SB_ID",
 					"WLAN_INIT_DEINIT_ID",
 					"WLAN_IPA_ID",
+					"WLAN_CP_STATS_ID",
 					"WLAN_REF_ID_MAX" };
 
 	return (char *)strings[id];