diff mbox series

[RFC,v1,014/256] cl8k: add band.h

Message ID 20210617160223.160998-15-viktor.barna@celeno.com
State New
Headers show
Series wireless: cl8k driver for Celeno IEEE 802.11ax devices | expand

Commit Message

Viktor Barna June 17, 2021, 3:58 p.m. UTC
From: Viktor Barna <viktor.barna@celeno.com>

(Part of the split. Please, take a look at the cover letter for more
details).

Signed-off-by: Viktor Barna <viktor.barna@celeno.com>
---
 drivers/net/wireless/celeno/cl8k/band.h | 40 +++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 drivers/net/wireless/celeno/cl8k/band.h

--
2.30.0
diff mbox series

Patch

diff --git a/drivers/net/wireless/celeno/cl8k/band.h b/drivers/net/wireless/celeno/cl8k/band.h
new file mode 100644
index 000000000000..9642432bed0f
--- /dev/null
+++ b/drivers/net/wireless/celeno/cl8k/band.h
@@ -0,0 +1,40 @@ 
+/* SPDX-License-Identifier: MIT */
+/* Copyright(c) 2019-2021, Celeno Communications Ltd. */
+
+#ifndef CL_BAND_H
+#define CL_BAND_H
+
+#include "hw.h"
+
+enum c_fw_band {
+       FW_BAND_2GHZ,
+       FW_BAND_5GHZ,
+       FW_BAND_6GHZ,
+
+       FW_BAND_MAX,
+};
+
+#define BAND_6G  6
+#define BAND_5G  5
+#define BAND_24G 24
+
+#define BAND_TO_STR(band) \
+               ((band) == 6 ? "6G" : \
+               ((band) == 5 ? "5G" : "24G"))
+
+#define BAND_IS_5G_6G(cl_hw) \
+               (cl_band_is_5g(cl_hw) || cl_band_is_6g(cl_hw))
+
+bool cl_band_is_6g(struct cl_hw *cl_hw);
+bool cl_band_is_6g_freq(u16 freq);
+
+bool cl_band_is_5g(struct cl_hw *cl_hw);
+bool cl_band_is_5g_freq(u16 freq);
+
+bool cl_band_is_24g(struct cl_hw *cl_hw);
+bool cl_band_is_24g_freq(u16 freq);
+
+u8 cl_band_to_fw_idx(struct cl_hw *cl_hw);
+u8 cl_band_from_fw_idx(u32 phy_band);
+
+#endif /* CL_BAND_H */