qcacmn: Add IPA component related definitions

As part of IPA componentization remove IPA from HDD module
and make it as an independent component. Add qdf module ID
and Objmgr ID for IPA module.

Change-Id: Id99089f8188e8b1dbf7e1f60d3a127bec770706d
CRs-Fixed: 2180176
diff --git a/umac/cmn_services/inc/wlan_cmn.h b/umac/cmn_services/inc/wlan_cmn.h
index 72f6ad4..74861c1 100644
--- a/umac/cmn_services/inc/wlan_cmn.h
+++ b/umac/cmn_services/inc/wlan_cmn.h
@@ -25,7 +25,7 @@
 #include <qdf_types.h>
 
 /* Max no of UMAC components */
-#define WLAN_UMAC_MAX_COMPONENTS 25
+#define WLAN_UMAC_MAX_COMPONENTS WLAN_UMAC_COMP_ID_MAX
 /* Max no. of radios, a pSoc/Device can support */
 #define WLAN_UMAC_MAX_PDEVS 3
 /* Max no. of VDEV per PSOC */
@@ -242,6 +242,7 @@
  * @WLAN_UMAC_COMP_FTM:           FTM component
  * @WLAN_UMAC_COMP_FD:            FILS Discovery
  * @WLAN_UMAC_COMP_OCB:           OCB
+ * @WLAN_UMAC_COMP_IPA:           IPA
  * @WLAN_UMAC_COMP_ID_MAX:        Maximum components in UMAC
  *
  * This id is static.
@@ -274,6 +275,7 @@
 	WLAN_UMAC_COMP_FTM,
 	WLAN_UMAC_COMP_FD,
 	WLAN_UMAC_COMP_OCB,
+	WLAN_UMAC_COMP_IPA,
 	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 b4f9122..296b8ac 100644
--- a/umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h
+++ b/umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h
@@ -214,6 +214,7 @@
  * @WLAN_OCB_NB_ID:             OCB Northbound operations
  * @WLAN_OCB_SB_ID:             OCB Southbound operations
  * @WLAN_INIT_DEINIT_ID:        Init deinit module
+ * @WLAN_IPA_ID:                IPA operations
  * @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
@@ -257,6 +258,7 @@
 	WLAN_OCB_NB_ID        = 34,
 	WLAN_OCB_SB_ID        = 35,
 	WLAN_INIT_DEINIT_ID   = 36,
+	WLAN_IPA_ID           = 37,
 	WLAN_REF_ID_MAX,
 } wlan_objmgr_ref_dbgid;
 
@@ -307,6 +309,7 @@
 					"WLAN_OCB_NB_ID",
 					"WLAN_OCB_SB_ID",
 					"WLAN_INIT_DEINIT_ID",
+					"WLAN_IPA_ID",
 					"WLAN_REF_ID_MAX" };
 
 	return (char *)strings[id];