2 * Intel Wireless Multicomm 3200 WiFi driver
4 * Copyright (C) 2009 Intel Corporation. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
16 * * Neither the name of Intel Corporation nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 * Intel Corporation <ilw@linux.intel.com>
34 * Samuel Ortiz <samuel.ortiz@intel.com>
35 * Zhu Yi <yi.zhu@intel.com>
44 #define GET_VAL8(s, name) ((s >> name##_POS) & name##_SEED)
45 #define GET_VAL16(s, name) ((le16_to_cpu(s) >> name##_POS) & name##_SEED)
46 #define GET_VAL32(s, name) ((le32_to_cpu(s) >> name##_POS) & name##_SEED)
48 #define SET_VAL8(s, name, val) \
50 s = (s & ~(name##_SEED << name##_POS)) | \
51 ((val & name##_SEED) << name##_POS); \
54 #define SET_VAL16(s, name, val) \
56 s = cpu_to_le16((le16_to_cpu(s) & ~(name##_SEED << name##_POS)) | \
57 ((val & name##_SEED) << name##_POS)); \
60 #define SET_VAL32(s, name, val) \
62 s = cpu_to_le32((le32_to_cpu(s) & ~(name##_SEED << name##_POS)) | \
63 ((val & name##_SEED) << name##_POS)); \
67 #define UDMA_UMAC_INIT { .eop = 1, \
68 .credit_group = 0x4, \
69 .ra_tid = UMAC_HDI_ACT_TBL_IDX_HOST_CMD, \
71 #define UDMA_LMAC_INIT { .eop = 1, \
72 .credit_group = 0x4, \
73 .ra_tid = UMAC_HDI_ACT_TBL_IDX_HOST_CMD, \
77 /* UDMA IN OP CODE -- cmd bits [3:0] */
78 #define UDMA_HDI_IN_NW_CMD_OPCODE_POS 0
79 #define UDMA_HDI_IN_NW_CMD_OPCODE_SEED 0xF
81 #define UDMA_IN_OPCODE_GENERAL_RESP 0x0
82 #define UDMA_IN_OPCODE_READ_RESP 0x1
83 #define UDMA_IN_OPCODE_WRITE_RESP 0x2
84 #define UDMA_IN_OPCODE_PERS_WRITE_RESP 0x5
85 #define UDMA_IN_OPCODE_PERS_READ_RESP 0x6
86 #define UDMA_IN_OPCODE_RD_MDFY_WR_RESP 0x7
87 #define UDMA_IN_OPCODE_EP_MNGMT_MSG 0x8
88 #define UDMA_IN_OPCODE_CRDT_CHNG_MSG 0x9
89 #define UDMA_IN_OPCODE_CNTRL_DATABASE_MSG 0xA
90 #define UDMA_IN_OPCODE_SW_MSG 0xB
91 #define UDMA_IN_OPCODE_WIFI 0xF
92 #define UDMA_IN_OPCODE_WIFI_LMAC 0x1F
93 #define UDMA_IN_OPCODE_WIFI_UMAC 0x2F
95 /* HW API: udma_hdi_nonwifi API (OUT and IN) */
97 /* iwm_udma_nonwifi_cmd request response -- bits [9:9] */
98 #define UDMA_HDI_OUT_NW_CMD_RESP_POS 9
99 #define UDMA_HDI_OUT_NW_CMD_RESP_SEED 0x1
101 /* iwm_udma_nonwifi_cmd handle by HW -- bits [11:11] */
102 #define UDMA_HDI_OUT_NW_CMD_HANDLE_BY_HW_POS 11
103 #define UDMA_HDI_OUT_NW_CMD_HANDLE_BY_HW_SEED 0x1
105 /* iwm_udma_nonwifi_cmd sequence-number -- bits [12:15] */
106 #define UDMA_HDI_OUT_NW_CMD_SEQ_NUM_POS 12
107 #define UDMA_HDI_OUT_NW_CMD_SEQ_NUM_SEED 0xF
109 /* UDMA IN Non-WIFI HW sequence number -- bits [12:15] */
110 #define UDMA_IN_NW_HW_SEQ_NUM_POS 12
111 #define UDMA_IN_NW_HW_SEQ_NUM_SEED 0xF
113 /* UDMA IN Non-WIFI HW signature -- bits [16:31] */
114 #define UDMA_IN_NW_HW_SIG_POS 16
115 #define UDMA_IN_NW_HW_SIG_SEED 0xFFFF
117 /* fixed signature */
118 #define UDMA_IN_NW_HW_SIG 0xCBBC
120 /* UDMA IN Non-WIFI HW block length -- bits [32:35] */
121 #define UDMA_IN_NW_HW_LENGTH_SEED 0xF
122 #define UDMA_IN_NW_HW_LENGTH_POS 32
124 /* End of HW API: udma_hdi_nonwifi API (OUT and IN) */
126 #define IWM_SDIO_FW_MAX_CHUNK_SIZE 2032
127 #define IWM_MAX_WIFI_HEADERS_SIZE 32
128 #define IWM_MAX_NONWIFI_HEADERS_SIZE 16
129 #define IWM_MAX_NONWIFI_CMD_BUFF_SIZE (IWM_SDIO_FW_MAX_CHUNK_SIZE - \
130 IWM_MAX_NONWIFI_HEADERS_SIZE)
131 #define IWM_MAX_WIFI_CMD_BUFF_SIZE (IWM_SDIO_FW_MAX_CHUNK_SIZE - \
132 IWM_MAX_WIFI_HEADERS_SIZE)
134 #define IWM_HAL_CONCATENATE_BUF_SIZE (32 * 1024)
136 struct iwm_wifi_cmd_buff
{
139 u8 hdr
[IWM_MAX_WIFI_HEADERS_SIZE
];
140 u8 payload
[IWM_MAX_WIFI_CMD_BUFF_SIZE
];
143 struct iwm_nonwifi_cmd_buff
{
146 u8 hdr
[IWM_MAX_NONWIFI_HEADERS_SIZE
];
147 u8 payload
[IWM_MAX_NONWIFI_CMD_BUFF_SIZE
];
150 struct iwm_udma_nonwifi_cmd
{
161 struct iwm_udma_wifi_cmd
{
169 struct iwm_umac_cmd
{
177 struct iwm_lmac_cmd
{
184 struct iwm_nonwifi_cmd
{
187 struct list_head pending
;
188 struct iwm_udma_nonwifi_cmd udma_cmd
;
189 struct iwm_umac_cmd umac_cmd
;
190 struct iwm_lmac_cmd lmac_cmd
;
191 struct iwm_nonwifi_cmd_buff buf
;
195 struct iwm_wifi_cmd
{
197 struct list_head pending
;
198 struct iwm_udma_wifi_cmd udma_cmd
;
199 struct iwm_umac_cmd umac_cmd
;
200 struct iwm_lmac_cmd lmac_cmd
;
201 struct iwm_wifi_cmd_buff buf
;
205 void iwm_cmd_flush(struct iwm_priv
*iwm
);
207 struct iwm_wifi_cmd
*iwm_get_pending_wifi_cmd(struct iwm_priv
*iwm
,
209 struct iwm_nonwifi_cmd
*iwm_get_pending_nonwifi_cmd(struct iwm_priv
*iwm
,
210 u8 seq_num
, u8 cmd_opcode
);
213 int iwm_hal_send_target_cmd(struct iwm_priv
*iwm
,
214 struct iwm_udma_nonwifi_cmd
*ucmd
,
215 const void *payload
);
217 int iwm_hal_send_host_cmd(struct iwm_priv
*iwm
,
218 struct iwm_udma_wifi_cmd
*udma_cmd
,
219 struct iwm_umac_cmd
*umac_cmd
,
220 struct iwm_lmac_cmd
*lmac_cmd
,
221 const void *payload
, u16 payload_size
);
223 int iwm_hal_send_umac_cmd(struct iwm_priv
*iwm
,
224 struct iwm_udma_wifi_cmd
*udma_cmd
,
225 struct iwm_umac_cmd
*umac_cmd
,
226 const void *payload
, u16 payload_size
);
228 u16
iwm_alloc_wifi_cmd_seq(struct iwm_priv
*iwm
);
230 void iwm_udma_wifi_hdr_set_eop(struct iwm_priv
*iwm
, u8
*buf
, u8 eop
);
231 void iwm_build_udma_wifi_hdr(struct iwm_priv
*iwm
,
232 struct iwm_udma_out_wifi_hdr
*hdr
,
233 struct iwm_udma_wifi_cmd
*cmd
);
234 void iwm_build_umac_hdr(struct iwm_priv
*iwm
,
235 struct iwm_umac_fw_cmd_hdr
*hdr
,
236 struct iwm_umac_cmd
*cmd
);
237 #endif /* _IWM_HAL_H_ */