|
@@ -42,6 +42,19 @@
|
|
|
*/
|
|
|
bool ucfg_ipa_is_present(void);
|
|
|
|
|
|
+/**
|
|
|
+ * ucfg_ipa_is_ready() - get IPA ready status
|
|
|
+ *
|
|
|
+ * After ipa_ready_cb() is registered and later invoked by IPA
|
|
|
+ * driver, ipa ready status flag is updated in wlan driver.
|
|
|
+ * Unless IPA ready callback is invoked and ready status is
|
|
|
+ * updated none of the IPA APIs should be invoked.
|
|
|
+ *
|
|
|
+ * Return: true - ipa is ready
|
|
|
+ * false - ipa is not ready
|
|
|
+ */
|
|
|
+bool ucfg_ipa_is_ready(void);
|
|
|
+
|
|
|
/**
|
|
|
* ucfg_ipa_is_enabled() - get IPA enable status
|
|
|
*
|
|
@@ -397,6 +410,11 @@ static inline bool ucfg_ipa_is_present(void)
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
+static inline bool ucfg_ipa_is_ready(void)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
static inline void ucfg_ipa_update_config(struct wlan_ipa_config *config)
|
|
|
{
|
|
|
}
|