new file mode 100644
@@ -0,0 +1,29 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright(c) 2019-2021, Celeno Communications Ltd. */
+#ifndef CL_RSRC_MGMT_H
+#define CL_RSRC_MGMT_H
+
+#include "traffic.h"
+
+/**
+ * DOC: Resource management
+ *
+ * Responsible for control over dynamic features of the driver from the
+ * firmware, regarding the collected information about traffic intensity,
+ * environment state etc.
+ */
+
+struct cl_rsrc_mgmt_db {
+ struct mm_rsrc_mgmt_notif_policy notif_policies[MM_RSRC_MGMT_MAX];
+};
+
+void cl_rsrc_mgmt_init(struct cl_hw *cl_hw);
+void cl_rsrc_mgmt_traffic_start(struct cl_hw *cl_hw, enum cl_traffic_level level,
+ enum cl_traffic_direction direction);
+void cl_rsrc_mgmt_traffic_stop(struct cl_hw *cl_hw, enum cl_traffic_level level,
+ enum cl_traffic_direction direction);
+void cl_rsrc_mgmt_rates_update(struct cl_hw *cl_hw, struct cl_sta *cl_sta);
+void cl_rsrc_mgmt_process_ind(struct cl_hw *cl_hw, struct mm_rsrc_mgmt_ind *ind);
+void cl_rsrc_mgmt_process_cfm(struct cl_hw *cl_hw, struct mm_rsrc_mgmt_cfm *cfm);
+
+#endif /* CL_RSRC_MGMT_H */