2 * Shared CARL9170 Header
4 * Firmware descriptor format
6 * Copyright 2009, 2010, Christian Lamparter <chunkeey@googlemail.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; see the file COPYING. If not, see
19 * http://www.gnu.org/licenses/.
22 #ifndef __CARL9170_SHARED_FWDESC_H
23 #define __CARL9170_SHARED_FWDESC_H
25 /* NOTE: Don't mess with the order of the flags! */
26 enum carl9170fw_feature_list
{
28 CARL9170FW_DUMMY_FEATURE
,
31 * Indicates that this image has special boot block which prevents
32 * legacy drivers to drive the firmware.
36 /* usb registers are initialized by the firmware */
37 CARL9170FW_USB_INIT_FIRMWARE
,
39 /* command traps & notifications are send through EP2 */
40 CARL9170FW_USB_RESP_EP2
,
42 /* usb download (app -> fw) stream */
43 CARL9170FW_USB_DOWN_STREAM
,
45 /* usb upload (fw -> app) stream */
46 CARL9170FW_USB_UP_STREAM
,
48 /* unusable - reserved to flag non-functional debug firmwares */
51 /* AR9170_CMD_RF_INIT, AR9170_CMD_FREQ_START, AR9170_CMD_FREQUENCY */
52 CARL9170FW_COMMAND_PHY
,
54 /* AR9170_CMD_EKEY, AR9170_CMD_DKEY */
55 CARL9170FW_COMMAND_CAM
,
57 /* Firmware has a software Content After Beacon Queueing mechanism */
58 CARL9170FW_WLANTX_CAB
,
60 /* The firmware is capable of responding to incoming BAR frames */
61 CARL9170FW_HANDLE_BACK_REQ
,
63 /* GPIO Interrupt | CARL9170_RSP_GPIO */
64 CARL9170FW_GPIO_INTERRUPT
,
66 /* Firmware PSM support | CARL9170_CMD_PSM */
69 /* Firmware RX filter | CARL9170_CMD_RX_FILTER */
76 __CARL9170FW_FEATURE_NUM
79 #define OTUS_MAGIC "OTAR"
80 #define MOTD_MAGIC "MOTD"
81 #define FIX_MAGIC "FIX\0"
82 #define DBG_MAGIC "DBG\0"
83 #define CHK_MAGIC "CHK\0"
84 #define TXSQ_MAGIC "TXSQ"
85 #define LAST_MAGIC "LAST"
87 #define CARL9170FW_SET_DAY(d) (((d) - 1) % 31)
88 #define CARL9170FW_SET_MONTH(m) ((((m) - 1) % 12) * 31)
89 #define CARL9170FW_SET_YEAR(y) (((y) - 10) * 372)
91 #define CARL9170FW_GET_DAY(d) (((d) % 31) + 1)
92 #define CARL9170FW_GET_MONTH(m) ((((m) / 31) % 12) + 1)
93 #define CARL9170FW_GET_YEAR(y) ((y) / 372 + 10)
95 #define CARL9170FW_MAGIC_SIZE 4
97 struct carl9170fw_desc_head
{
98 u8 magic
[CARL9170FW_MAGIC_SIZE
];
103 #define CARL9170FW_DESC_HEAD_SIZE \
104 (sizeof(struct carl9170fw_desc_head))
106 #define CARL9170FW_OTUS_DESC_MIN_VER 6
107 #define CARL9170FW_OTUS_DESC_CUR_VER 6
108 struct carl9170fw_otus_desc
{
109 struct carl9170fw_desc_head head
;
114 __le16 miniboot_size
;
116 __le16 rx_max_frame_len
;
122 #define CARL9170FW_OTUS_DESC_SIZE \
123 (sizeof(struct carl9170fw_otus_desc))
125 #define CARL9170FW_MOTD_STRING_LEN 24
126 #define CARL9170FW_MOTD_RELEASE_LEN 20
127 #define CARL9170FW_MOTD_DESC_MIN_VER 1
128 #define CARL9170FW_MOTD_DESC_CUR_VER 2
129 struct carl9170fw_motd_desc
{
130 struct carl9170fw_desc_head head
;
131 __le32 fw_year_month_day
;
132 char desc
[CARL9170FW_MOTD_STRING_LEN
];
133 char release
[CARL9170FW_MOTD_RELEASE_LEN
];
135 #define CARL9170FW_MOTD_DESC_SIZE \
136 (sizeof(struct carl9170fw_motd_desc))
138 #define CARL9170FW_FIX_DESC_MIN_VER 1
139 #define CARL9170FW_FIX_DESC_CUR_VER 2
140 struct carl9170fw_fix_entry
{
146 struct carl9170fw_fix_desc
{
147 struct carl9170fw_desc_head head
;
148 struct carl9170fw_fix_entry data
[0];
150 #define CARL9170FW_FIX_DESC_SIZE \
151 (sizeof(struct carl9170fw_fix_desc))
153 #define CARL9170FW_DBG_DESC_MIN_VER 1
154 #define CARL9170FW_DBG_DESC_CUR_VER 3
155 struct carl9170fw_dbg_desc
{
156 struct carl9170fw_desc_head head
;
158 __le32 bogoclock_addr
;
160 __le32 rx_total_addr
;
161 __le32 rx_overrun_addr
;
164 /* Put your debugging definitions here */
166 #define CARL9170FW_DBG_DESC_SIZE \
167 (sizeof(struct carl9170fw_dbg_desc))
169 #define CARL9170FW_CHK_DESC_MIN_VER 1
170 #define CARL9170FW_CHK_DESC_CUR_VER 2
171 struct carl9170fw_chk_desc
{
172 struct carl9170fw_desc_head head
;
176 #define CARL9170FW_CHK_DESC_SIZE \
177 (sizeof(struct carl9170fw_chk_desc))
179 #define CARL9170FW_TXSQ_DESC_MIN_VER 1
180 #define CARL9170FW_TXSQ_DESC_CUR_VER 1
181 struct carl9170fw_txsq_desc
{
182 struct carl9170fw_desc_head head
;
184 __le32 seq_table_addr
;
186 #define CARL9170FW_TXSQ_DESC_SIZE \
187 (sizeof(struct carl9170fw_txsq_desc))
189 #define CARL9170FW_LAST_DESC_MIN_VER 1
190 #define CARL9170FW_LAST_DESC_CUR_VER 2
191 struct carl9170fw_last_desc
{
192 struct carl9170fw_desc_head head
;
194 #define CARL9170FW_LAST_DESC_SIZE \
195 (sizeof(struct carl9170fw_fix_desc))
197 #define CARL9170FW_DESC_MAX_LENGTH 8192
199 #define CARL9170FW_FILL_DESC(_magic, _length, _min_ver, _cur_ver) \
202 .length = cpu_to_le16(_length), \
203 .min_ver = _min_ver, \
204 .cur_ver = _cur_ver, \
207 static inline void carl9170fw_fill_desc(struct carl9170fw_desc_head
*head
,
208 u8 magic
[CARL9170FW_MAGIC_SIZE
],
209 __le16 length
, u8 min_ver
, u8 cur_ver
)
211 head
->magic
[0] = magic
[0];
212 head
->magic
[1] = magic
[1];
213 head
->magic
[2] = magic
[2];
214 head
->magic
[3] = magic
[3];
216 head
->length
= length
;
217 head
->min_ver
= min_ver
;
218 head
->cur_ver
= cur_ver
;
221 #define carl9170fw_for_each_hdr(desc, fw_desc) \
222 for (desc = fw_desc; \
223 memcmp(desc->magic, LAST_MAGIC, CARL9170FW_MAGIC_SIZE) && \
224 le16_to_cpu(desc->length) >= CARL9170FW_DESC_HEAD_SIZE && \
225 le16_to_cpu(desc->length) < CARL9170FW_DESC_MAX_LENGTH; \
226 desc = (void *)((unsigned long)desc + le16_to_cpu(desc->length)))
228 #define CHECK_HDR_VERSION(head, _min_ver) \
229 (((head)->cur_ver < _min_ver) || ((head)->min_ver > _min_ver)) \
231 static inline bool carl9170fw_supports(__le32 list, u8 feature)
233 return le32_to_cpu(list
) & BIT(feature
);
236 static inline bool carl9170fw_desc_cmp(const struct carl9170fw_desc_head
*head
,
237 const u8 descid
[CARL9170FW_MAGIC_SIZE
],
238 u16 min_len
, u8 compatible_revision
)
240 if (descid
[0] == head
->magic
[0] && descid
[1] == head
->magic
[1] &&
241 descid
[2] == head
->magic
[2] && descid
[3] == head
->magic
[3] &&
242 !CHECK_HDR_VERSION(head
, compatible_revision
) &&
243 (le16_to_cpu(head
->length
) >= min_len
))
249 #define CARL9170FW_MIN_SIZE 32
250 #define CARL9170FW_MAX_SIZE 16384
252 static inline bool carl9170fw_size_check(unsigned int len
)
254 return (len
<= CARL9170FW_MAX_SIZE
&& len
>= CARL9170FW_MIN_SIZE
);
257 #endif /* __CARL9170_SHARED_FWDESC_H */