|
@@ -1950,22 +1950,92 @@ int hdd_validate_channel_and_bandwidth(struct hdd_adapter *adapter,
|
|
|
uint32_t chan_number,
|
|
|
enum phy_ch_width chan_bw);
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_get_front_adapter() - Get the first adapter from the adapter list
|
|
|
+ * @hdd_ctx: pointer to the HDD context
|
|
|
+ * @current_adapter: pointer to the current adapter
|
|
|
+ * @out_adapter: double pointer to pass the next adapter
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
QDF_STATUS hdd_get_front_adapter(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter **out_adapter);
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_get_next_adapter() - Get the next adapter from the adapter list
|
|
|
+ * @hdd_ctx: pointer to the HDD context
|
|
|
+ * @current_adapter: pointer to the current adapter
|
|
|
+ * @out_adapter: double pointer to pass the next adapter
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
QDF_STATUS hdd_get_next_adapter(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter *current_adapter,
|
|
|
struct hdd_adapter **out_adapter);
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_get_front_adapter_no_lock() - Get the first adapter from the adapter list
|
|
|
+ * This API doesnot use any lock in it's implementation. It is the caller's
|
|
|
+ * directive to ensure concurrency safety.
|
|
|
+ * @hdd_ctx: pointer to the HDD context
|
|
|
+ * @out_adapter: double pointer to pass the next adapter
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
+QDF_STATUS hdd_get_front_adapter_no_lock(struct hdd_context *hdd_ctx,
|
|
|
+ struct hdd_adapter **out_adapter);
|
|
|
+
|
|
|
+/**
|
|
|
+ * hdd_get_next_adapter_no_lock() - Get the next adapter from the adapter list
|
|
|
+ * This API doesnot use any lock in it's implementation. It is the caller's
|
|
|
+ * directive to ensure concurrency safety.
|
|
|
+ * @hdd_ctx: pointer to the HDD context
|
|
|
+ * @current_adapter: pointer to the current adapter
|
|
|
+ * @out_adapter: double pointer to pass the next adapter
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
+QDF_STATUS hdd_get_next_adapter_no_lock(struct hdd_context *hdd_ctx,
|
|
|
+ struct hdd_adapter *current_adapter,
|
|
|
+ struct hdd_adapter **out_adapter);
|
|
|
+
|
|
|
+/**
|
|
|
+ * hdd_remove_adapter() - Remove the adapter from the adapter list
|
|
|
+ * @hdd_ctx: pointer to the HDD context
|
|
|
+ * @adapter: pointer to the adapter to be removed
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
QDF_STATUS hdd_remove_adapter(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter *adapter);
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_remove_front_adapter() - Remove the first adapter from the adapter list
|
|
|
+ * @hdd_ctx: pointer to the HDD context
|
|
|
+ * @out_adapter: pointer to the adapter to be removed
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
QDF_STATUS hdd_remove_front_adapter(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter **out_adapter);
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_add_adapter_back() - Add an adapter to the adapter list
|
|
|
+ * @hdd_ctx: pointer to the HDD context
|
|
|
+ * @adapter: pointer to the adapter to be added
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
QDF_STATUS hdd_add_adapter_back(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter *adapter);
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_add_adapter_front() - Add an adapter to the head of the adapter list
|
|
|
+ * @hdd_ctx: pointer to the HDD context
|
|
|
+ * @adapter: pointer to the adapter to be added
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
QDF_STATUS hdd_add_adapter_front(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter *adapter);
|
|
|
|
|
@@ -1979,6 +2049,76 @@ QDF_STATUS hdd_add_adapter_front(struct hdd_context *hdd_ctx,
|
|
|
adapter; \
|
|
|
hdd_get_next_adapter(hdd_ctx, adapter, &adapter))
|
|
|
|
|
|
+/**
|
|
|
+ * __hdd_take_ref_and_fetch_front_adapter - Helper macro to lock, fetch front
|
|
|
+ * adapter, take ref and unlock.
|
|
|
+ * @hdd_ctx: the global HDD context
|
|
|
+ * @adapter: an hdd_adapter pointer to use as a cursor
|
|
|
+ */
|
|
|
+#define __hdd_take_ref_and_fetch_front_adapter(hdd_ctx, adapter) \
|
|
|
+ qdf_spin_lock_bh(&hdd_ctx->hdd_adapter_lock), \
|
|
|
+ hdd_get_front_adapter_no_lock(hdd_ctx, &adapter), \
|
|
|
+ (adapter) ? dev_hold(adapter->dev) : (false), \
|
|
|
+ qdf_spin_unlock_bh(&hdd_ctx->hdd_adapter_lock)
|
|
|
+
|
|
|
+/**
|
|
|
+ * __hdd_take_ref_and_fetch_next_adapter - Helper macro to lock, fetch next
|
|
|
+ * adapter, take ref and unlock.
|
|
|
+ * @hdd_ctx: the global HDD context
|
|
|
+ * @adapter: an hdd_adapter pointer to use as a cursor
|
|
|
+ */
|
|
|
+#define __hdd_take_ref_and_fetch_next_adapter(hdd_ctx, adapter) \
|
|
|
+ qdf_spin_lock_bh(&hdd_ctx->hdd_adapter_lock), \
|
|
|
+ hdd_get_next_adapter_no_lock(hdd_ctx, adapter, &adapter), \
|
|
|
+ (adapter) ? dev_hold(adapter->dev) : (false), \
|
|
|
+ qdf_spin_unlock_bh(&hdd_ctx->hdd_adapter_lock)
|
|
|
+
|
|
|
+/**
|
|
|
+ * __hdd_is_adapter_valid - Helper macro to return true/false for valid adapter.
|
|
|
+ * @adapter: an hdd_adapter pointer to use as a cursor
|
|
|
+ */
|
|
|
+#define __hdd_is_adapter_valid(_adapter) !!_adapter
|
|
|
+
|
|
|
+/**
|
|
|
+ * hdd_for_each_adapter_dev_held - Adapter iterator with dev_hold called
|
|
|
+ * @hdd_ctx: the global HDD context
|
|
|
+ * @adapter: an hdd_adapter pointer to use as a cursor
|
|
|
+ *
|
|
|
+ * This iterator will take the reference of the netdev associated with the
|
|
|
+ * given adapter so as to prevent it from being removed in other context.
|
|
|
+ * If the control goes inside the loop body then the dev_hold has been invoked.
|
|
|
+ *
|
|
|
+ * ***** NOTE *****
|
|
|
+ * Before the end of each iteration, dev_put(adapter->dev) must be
|
|
|
+ * called. Not calling this will keep hold of a reference, thus preventing
|
|
|
+ * unregister of the netdevice.
|
|
|
+ *
|
|
|
+ * Usage example:
|
|
|
+ * hdd_for_each_adapter_dev_held(hdd_ctx, adapter) {
|
|
|
+ * <work involving adapter>
|
|
|
+ * <some more work>
|
|
|
+ * dev_put(adapter->dev)
|
|
|
+ * }
|
|
|
+ */
|
|
|
+#define hdd_for_each_adapter_dev_held(hdd_ctx, adapter) \
|
|
|
+ for (__hdd_take_ref_and_fetch_front_adapter(hdd_ctx, adapter); \
|
|
|
+ __hdd_is_adapter_valid(adapter); \
|
|
|
+ __hdd_take_ref_and_fetch_next_adapter(hdd_ctx, adapter))
|
|
|
+
|
|
|
+/**
|
|
|
+ * wlan_hdd_get_adapter_by_vdev_id_from_objmgr() - Fetch adapter from objmgr
|
|
|
+ * using vdev_id.
|
|
|
+ * @hdd_ctx: the global HDD context
|
|
|
+ * @adapter: an hdd_adapter double pointer to store the address of the adapter
|
|
|
+ * @vdev: the vdev whose corresponding adapter has to be fetched
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
+QDF_STATUS
|
|
|
+wlan_hdd_get_adapter_by_vdev_id_from_objmgr(struct hdd_context *hdd_ctx,
|
|
|
+ struct hdd_adapter **adapter,
|
|
|
+ struct wlan_objmgr_vdev *vdev);
|
|
|
+
|
|
|
struct hdd_adapter *hdd_open_adapter(struct hdd_context *hdd_ctx,
|
|
|
uint8_t session_type,
|
|
|
const char *name, tSirMacAddr mac_addr,
|