1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Shared CARL9170 Header
5 * Firmware descriptor format
7 * Copyright 2009-2011 Christian Lamparter <chunkeey@googlemail.com>
10 #ifndef __CARL9170_SHARED_FWDESC_H
11 #define __CARL9170_SHARED_FWDESC_H
13 /* NOTE: Don't mess with the order of the flags! */
14 enum carl9170fw_feature_list {
16 CARL9170FW_DUMMY_FEATURE,
19 * Indicates that this image has special boot block which prevents
20 * legacy drivers to drive the firmware.
24 /* usb registers are initialized by the firmware */
25 CARL9170FW_USB_INIT_FIRMWARE,
27 /* command traps & notifications are send through EP2 */
28 CARL9170FW_USB_RESP_EP2,
30 /* usb download (app -> fw) stream */
31 CARL9170FW_USB_DOWN_STREAM,
33 /* usb upload (fw -> app) stream */
34 CARL9170FW_USB_UP_STREAM,
36 /* unusable - reserved to flag non-functional debug firmwares */
39 /* AR9170_CMD_RF_INIT, AR9170_CMD_FREQ_START, AR9170_CMD_FREQUENCY */
40 CARL9170FW_COMMAND_PHY,
42 /* AR9170_CMD_EKEY, AR9170_CMD_DKEY */
43 CARL9170FW_COMMAND_CAM,
45 /* Firmware has a software Content After Beacon Queueing mechanism */
46 CARL9170FW_WLANTX_CAB,
48 /* The firmware is capable of responding to incoming BAR frames */
49 CARL9170FW_HANDLE_BACK_REQ,
51 /* GPIO Interrupt | CARL9170_RSP_GPIO */
52 CARL9170FW_GPIO_INTERRUPT,
54 /* Firmware PSM support | CARL9170_CMD_PSM */
57 /* Firmware RX filter | CARL9170_CMD_RX_FILTER */
63 /* Firmware supports PSM in the 5GHZ Band */
64 CARL9170FW_FIXED_5GHZ_PSM,
66 /* HW (ANI, CCA, MIB) tally counters */
67 CARL9170FW_HW_COUNTERS,
69 /* Firmware will pass BA when BARs are queued */
70 CARL9170FW_RX_BA_FILTER,
72 /* Firmware has support to write a byte at a time */
73 CARL9170FW_HAS_WREGB_CMD,
75 /* Pattern generator */
76 CARL9170FW_PATTERN_GENERATOR,
79 __CARL9170FW_FEATURE_NUM
82 #define OTUS_MAGIC "OTAR"
83 #define MOTD_MAGIC "MOTD"
84 #define FIX_MAGIC "FIX\0"
85 #define DBG_MAGIC "DBG\0"
86 #define CHK_MAGIC "CHK\0"
87 #define TXSQ_MAGIC "TXSQ"
88 #define WOL_MAGIC "WOL\0"
89 #define LAST_MAGIC "LAST"
91 #define CARL9170FW_SET_DAY(d) (((d) - 1) % 31)
92 #define CARL9170FW_SET_MONTH(m) ((((m) - 1) % 12) * 31)
93 #define CARL9170FW_SET_YEAR(y) (((y) - 10) * 372)
95 #define CARL9170FW_GET_DAY(d) (((d) % 31) + 1)
96 #define CARL9170FW_GET_MONTH(m) ((((m) / 31) % 12) + 1)
97 #define CARL9170FW_GET_YEAR(y) ((y) / 372 + 10)
99 #define CARL9170FW_MAGIC_SIZE 4
101 struct carl9170fw_desc_head {
102 u8 magic[CARL9170FW_MAGIC_SIZE];
107 #define CARL9170FW_DESC_HEAD_SIZE \
108 (sizeof(struct carl9170fw_desc_head))
110 #define CARL9170FW_OTUS_DESC_MIN_VER 6
111 #define CARL9170FW_OTUS_DESC_CUR_VER 7
112 struct carl9170fw_otus_desc {
113 struct carl9170fw_desc_head head;
118 __le16 miniboot_size;
120 __le16 rx_max_frame_len;
126 #define CARL9170FW_OTUS_DESC_SIZE \
127 (sizeof(struct carl9170fw_otus_desc))
129 #define CARL9170FW_MOTD_STRING_LEN 24
130 #define CARL9170FW_MOTD_RELEASE_LEN 20
131 #define CARL9170FW_MOTD_DESC_MIN_VER 1
132 #define CARL9170FW_MOTD_DESC_CUR_VER 2
133 struct carl9170fw_motd_desc {
134 struct carl9170fw_desc_head head;
135 __le32 fw_year_month_day;
136 char desc[CARL9170FW_MOTD_STRING_LEN];
137 char release[CARL9170FW_MOTD_RELEASE_LEN];
139 #define CARL9170FW_MOTD_DESC_SIZE \
140 (sizeof(struct carl9170fw_motd_desc))
142 #define CARL9170FW_FIX_DESC_MIN_VER 1
143 #define CARL9170FW_FIX_DESC_CUR_VER 2
144 struct carl9170fw_fix_entry {
150 struct carl9170fw_fix_desc {
151 struct carl9170fw_desc_head head;
152 struct carl9170fw_fix_entry data[];
154 #define CARL9170FW_FIX_DESC_SIZE \
155 (sizeof(struct carl9170fw_fix_desc))
157 #define CARL9170FW_DBG_DESC_MIN_VER 1
158 #define CARL9170FW_DBG_DESC_CUR_VER 3
159 struct carl9170fw_dbg_desc {
160 struct carl9170fw_desc_head head;
162 __le32 bogoclock_addr;
164 __le32 rx_total_addr;
165 __le32 rx_overrun_addr;
168 /* Put your debugging definitions here */
170 #define CARL9170FW_DBG_DESC_SIZE \
171 (sizeof(struct carl9170fw_dbg_desc))
173 #define CARL9170FW_CHK_DESC_MIN_VER 1
174 #define CARL9170FW_CHK_DESC_CUR_VER 2
175 struct carl9170fw_chk_desc {
176 struct carl9170fw_desc_head head;
180 #define CARL9170FW_CHK_DESC_SIZE \
181 (sizeof(struct carl9170fw_chk_desc))
183 #define CARL9170FW_TXSQ_DESC_MIN_VER 1
184 #define CARL9170FW_TXSQ_DESC_CUR_VER 1
185 struct carl9170fw_txsq_desc {
186 struct carl9170fw_desc_head head;
188 __le32 seq_table_addr;
190 #define CARL9170FW_TXSQ_DESC_SIZE \
191 (sizeof(struct carl9170fw_txsq_desc))
193 #define CARL9170FW_WOL_DESC_MIN_VER 1
194 #define CARL9170FW_WOL_DESC_CUR_VER 1
195 struct carl9170fw_wol_desc {
196 struct carl9170fw_desc_head head;
198 __le32 supported_triggers; /* CARL9170_WOL_ */
200 #define CARL9170FW_WOL_DESC_SIZE \
201 (sizeof(struct carl9170fw_wol_desc))
203 #define CARL9170FW_LAST_DESC_MIN_VER 1
204 #define CARL9170FW_LAST_DESC_CUR_VER 2
205 struct carl9170fw_last_desc {
206 struct carl9170fw_desc_head head;
208 #define CARL9170FW_LAST_DESC_SIZE \
209 (sizeof(struct carl9170fw_fix_desc))
211 #define CARL9170FW_DESC_MAX_LENGTH 8192
213 #define CARL9170FW_FILL_DESC(_magic, _length, _min_ver, _cur_ver) \
216 .length = cpu_to_le16(_length), \
217 .min_ver = _min_ver, \
218 .cur_ver = _cur_ver, \
221 static inline void carl9170fw_fill_desc(struct carl9170fw_desc_head *head,
222 u8 magic[CARL9170FW_MAGIC_SIZE],
223 __le16 length, u8 min_ver, u8 cur_ver)
225 head->magic[0] = magic[0];
226 head->magic[1] = magic[1];
227 head->magic[2] = magic[2];
228 head->magic[3] = magic[3];
230 head->length = length;
231 head->min_ver = min_ver;
232 head->cur_ver = cur_ver;
235 #define carl9170fw_for_each_hdr(desc, fw_desc) \
236 for (desc = fw_desc; \
237 memcmp(desc->magic, LAST_MAGIC, CARL9170FW_MAGIC_SIZE) && \
238 le16_to_cpu(desc->length) >= CARL9170FW_DESC_HEAD_SIZE && \
239 le16_to_cpu(desc->length) < CARL9170FW_DESC_MAX_LENGTH; \
240 desc = (void *)((unsigned long)desc + le16_to_cpu(desc->length)))
242 #define CHECK_HDR_VERSION(head, _min_ver) \
243 (((head)->cur_ver < _min_ver) || ((head)->min_ver > _min_ver)) \
245 static inline bool carl9170fw_supports(__le32 list, u8 feature)
247 return le32_to_cpu(list) & BIT(feature);
250 static inline bool carl9170fw_desc_cmp(const struct carl9170fw_desc_head *head,
251 const u8 descid[CARL9170FW_MAGIC_SIZE],
252 u16 min_len, u8 compatible_revision)
254 if (descid[0] == head->magic[0] && descid[1] == head->magic[1] &&
255 descid[2] == head->magic[2] && descid[3] == head->magic[3] &&
256 !CHECK_HDR_VERSION(head, compatible_revision) &&
257 (le16_to_cpu(head->length) >= min_len))
263 #define CARL9170FW_MIN_SIZE 32
264 #define CARL9170FW_MAX_SIZE 16384
266 static inline bool carl9170fw_size_check(unsigned int len)
268 return (len <= CARL9170FW_MAX_SIZE && len >= CARL9170FW_MIN_SIZE);
271 #endif /* __CARL9170_SHARED_FWDESC_H */