2 * Linux network driver for Brocade Converged Network Adapter.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License (GPL) Version 2 as
6 * published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
14 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
29 #define BFI_FLASH_CHUNK_SZ 256 /*!< Flash chunk size */
30 #define BFI_FLASH_CHUNK_SZ_WORDS (BFI_FLASH_CHUNK_SZ/sizeof(u32))
39 * Msg header common to all msgs
42 u8 msg_class
; /*!< @ref enum bfi_mclass */
43 u8 msg_id
; /*!< msg opcode with in the class */
47 u8 lpu_id
; /*!< msg destination */
49 u16 i2htok
; /*!< token in msgs to host */
53 #define bfi_h2i_set(_mh, _mc, _op, _lpuid) do { \
54 (_mh).msg_class = (_mc); \
55 (_mh).msg_id = (_op); \
56 (_mh).mtag.h2i.lpu_id = (_lpuid); \
59 #define bfi_i2h_set(_mh, _mc, _op, _i2htok) do { \
60 (_mh).msg_class = (_mc); \
61 (_mh).msg_id = (_op); \
62 (_mh).mtag.i2htok = (_i2htok); \
66 * Message opcodes: 0-127 to firmware, 128-255 to host
68 #define BFI_I2H_OPCODE_BASE 128
69 #define BFA_I2HM(_x) ((_x) + BFI_I2H_OPCODE_BASE)
72 ****************************************************************************
74 * Scatter Gather Element and Page definition
76 ****************************************************************************
79 #define BFI_SGE_INLINE 1
80 #define BFI_SGE_INLINE_MAX (BFI_SGE_INLINE + 1)
86 BFI_SGE_DATA
= 0, /*!< data address, not last */
87 BFI_SGE_DATA_CPL
= 1, /*!< data addr, last in current page */
88 BFI_SGE_DATA_LAST
= 3, /*!< data address, last */
89 BFI_SGE_LINK
= 2, /*!< link address */
90 BFI_SGE_PGDLEN
= 2, /*!< cumulative data length for page */
104 * Scatter Gather Element
116 union bfi_addr_u sga
;
120 * Scatter Gather Page
122 #define BFI_SGPG_DATA_SGES 7
123 #define BFI_SGPG_SGES_MAX (BFI_SGPG_DATA_SGES + 1)
124 #define BFI_SGPG_RSVD_WD_LEN 8
126 struct bfi_sge sges
[BFI_SGPG_SGES_MAX
];
127 u32 rsvd
[BFI_SGPG_RSVD_WD_LEN
];
131 * Large Message structure - 128 Bytes size Msgs
133 #define BFI_LMSG_SZ 128
134 #define BFI_LMSG_PL_WSZ \
135 ((BFI_LMSG_SZ - sizeof(struct bfi_mhdr)) / 4)
138 struct bfi_mhdr mhdr
;
139 u32 pl
[BFI_LMSG_PL_WSZ
];
143 * Mailbox message structure
145 #define BFI_MBMSG_SZ 7
148 u32 pl
[BFI_MBMSG_SZ
];
155 BFI_MC_IOC
= 1, /*!< IO Controller (IOC) */
156 BFI_MC_DIAG
= 2, /*!< Diagnostic Msgs */
157 BFI_MC_FLASH
= 3, /*!< Flash message class */
158 BFI_MC_CEE
= 4, /*!< CEE */
159 BFI_MC_FCPORT
= 5, /*!< FC port */
160 BFI_MC_IOCFC
= 6, /*!< FC - IO Controller (IOC) */
161 BFI_MC_LL
= 7, /*!< Link Layer */
162 BFI_MC_UF
= 8, /*!< Unsolicited frame receive */
163 BFI_MC_FCXP
= 9, /*!< FC Transport */
164 BFI_MC_LPS
= 10, /*!< lport fc login services */
165 BFI_MC_RPORT
= 11, /*!< Remote port */
166 BFI_MC_ITNIM
= 12, /*!< I-T nexus (Initiator mode) */
167 BFI_MC_IOIM_READ
= 13, /*!< read IO (Initiator mode) */
168 BFI_MC_IOIM_WRITE
= 14, /*!< write IO (Initiator mode) */
169 BFI_MC_IOIM_IO
= 15, /*!< IO (Initiator mode) */
170 BFI_MC_IOIM
= 16, /*!< IO (Initiator mode) */
171 BFI_MC_IOIM_IOCOM
= 17, /*!< good IO completion */
172 BFI_MC_TSKIM
= 18, /*!< Initiator Task management */
173 BFI_MC_SBOOT
= 19, /*!< SAN boot services */
174 BFI_MC_IPFC
= 20, /*!< IP over FC Msgs */
175 BFI_MC_PORT
= 21, /*!< Physical port */
176 BFI_MC_SFP
= 22, /*!< SFP module */
177 BFI_MC_MSGQ
= 23, /*!< MSGQ */
178 BFI_MC_ENET
= 24, /*!< ENET commands/responses */
182 #define BFI_IOC_MAX_CQS 4
183 #define BFI_IOC_MAX_CQS_ASIC 8
184 #define BFI_IOC_MSGLEN_MAX 32 /* 32 bytes */
186 #define BFI_BOOT_TYPE_OFF 8
187 #define BFI_BOOT_LOADER_OFF 12
189 #define BFI_BOOT_TYPE_NORMAL 0
190 #define BFI_BOOT_TYPE_FLASH 1
191 #define BFI_BOOT_TYPE_MEMTEST 2
193 #define BFI_BOOT_LOADER_OS 0
195 #define BFI_BOOT_MEMTEST_RES_ADDR 0x900
196 #define BFI_BOOT_MEMTEST_RES_SIG 0xA0A1A2A3
199 *----------------------------------------------------------------------
201 *----------------------------------------------------------------------
204 enum bfi_ioc_h2i_msgs
{
205 BFI_IOC_H2I_ENABLE_REQ
= 1,
206 BFI_IOC_H2I_DISABLE_REQ
= 2,
207 BFI_IOC_H2I_GETATTR_REQ
= 3,
208 BFI_IOC_H2I_DBG_SYNC
= 4,
209 BFI_IOC_H2I_DBG_DUMP
= 5,
212 enum bfi_ioc_i2h_msgs
{
213 BFI_IOC_I2H_ENABLE_REPLY
= BFA_I2HM(1),
214 BFI_IOC_I2H_DISABLE_REPLY
= BFA_I2HM(2),
215 BFI_IOC_I2H_GETATTR_REPLY
= BFA_I2HM(3),
216 BFI_IOC_I2H_READY_EVENT
= BFA_I2HM(4),
217 BFI_IOC_I2H_HBEAT
= BFA_I2HM(5),
221 * BFI_IOC_H2I_GETATTR_REQ message
223 struct bfi_ioc_getattr_req
{
225 union bfi_addr_u attr_addr
;
228 struct bfi_ioc_attr
{
229 u64 mfg_pwwn
; /*!< Mfg port wwn */
230 u64 mfg_nwwn
; /*!< Mfg node wwn */
231 mac_t mfg_mac
; /*!< Mfg mac */
235 mac_t mac
; /*!< PBC or Mfg mac */
239 char brcd_serialnum
[STRSZ(BFA_MFG_SERIALNUM_SIZE
)];
243 u8 rx_bbcredit
; /*!< receive buffer credits */
244 u32 adapter_prop
; /*!< adapter properties */
245 u16 maxfrsize
; /*!< max receive frame size */
248 char fw_version
[BFA_VERSION_LEN
];
249 char optrom_version
[BFA_VERSION_LEN
];
250 struct bfa_mfg_vpd vpd
;
251 u32 card_type
; /*!< card type */
255 * BFI_IOC_I2H_GETATTR_REPLY message
257 struct bfi_ioc_getattr_reply
{
258 struct bfi_mhdr mh
; /*!< Common msg header */
259 u8 status
; /*!< cfg reply status */
264 * Firmware memory page offsets
266 #define BFI_IOC_SMEM_PG0_CB (0x40)
267 #define BFI_IOC_SMEM_PG0_CT (0x180)
270 * Firmware statistic offset
272 #define BFI_IOC_FWSTATS_OFF (0x6B40)
273 #define BFI_IOC_FWSTATS_SZ (4096)
276 * Firmware trace offset
278 #define BFI_IOC_TRC_OFF (0x4b00)
279 #define BFI_IOC_TRC_ENTS 256
281 #define BFI_IOC_FW_SIGNATURE (0xbfadbfad)
282 #define BFI_IOC_MD5SUM_SZ 4
283 struct bfi_ioc_image_hdr
{
284 u32 signature
; /*!< constant signature */
286 u32 exec
; /*!< exec vector */
287 u32 param
; /*!< parameters */
289 u32 md5sum
[BFI_IOC_MD5SUM_SZ
];
293 * BFI_IOC_I2H_READY_EVENT message
295 struct bfi_ioc_rdy_event
{
296 struct bfi_mhdr mh
; /*!< common msg header */
297 u8 init_status
; /*!< init event status */
301 struct bfi_ioc_hbeat
{
302 struct bfi_mhdr mh
; /*!< common msg header */
303 u32 hb_count
; /*!< current heart beat count */
307 * IOC hardware/firmware state
310 BFI_IOC_UNINIT
= 0, /*!< not initialized */
311 BFI_IOC_INITING
= 1, /*!< h/w is being initialized */
312 BFI_IOC_HWINIT
= 2, /*!< h/w is initialized */
313 BFI_IOC_CFG
= 3, /*!< IOC configuration in progress */
314 BFI_IOC_OP
= 4, /*!< IOC is operational */
315 BFI_IOC_DISABLING
= 5, /*!< IOC is being disabled */
316 BFI_IOC_DISABLED
= 6, /*!< IOC is disabled */
317 BFI_IOC_CFG_DISABLED
= 7, /*!< IOC is being disabled;transient */
318 BFI_IOC_FAIL
= 8, /*!< IOC heart-beat failure */
319 BFI_IOC_MEMTEST
= 9, /*!< IOC is doing memtest */
322 #define BFI_IOC_ENDIAN_SIG 0x12345678
325 BFI_ADAPTER_TYPE_FC
= 0x01, /*!< FC adapters */
326 BFI_ADAPTER_TYPE_MK
= 0x0f0000, /*!< adapter type mask */
327 BFI_ADAPTER_TYPE_SH
= 16, /*!< adapter type shift */
328 BFI_ADAPTER_NPORTS_MK
= 0xff00, /*!< number of ports mask */
329 BFI_ADAPTER_NPORTS_SH
= 8, /*!< number of ports shift */
330 BFI_ADAPTER_SPEED_MK
= 0xff, /*!< adapter speed mask */
331 BFI_ADAPTER_SPEED_SH
= 0, /*!< adapter speed shift */
332 BFI_ADAPTER_PROTO
= 0x100000, /*!< prototype adapaters */
333 BFI_ADAPTER_TTV
= 0x200000, /*!< TTV debug capable */
334 BFI_ADAPTER_UNSUPP
= 0x400000, /*!< unknown adapter type */
337 #define BFI_ADAPTER_GETP(__prop, __adap_prop) \
338 (((__adap_prop) & BFI_ADAPTER_ ## __prop ## _MK) >> \
339 BFI_ADAPTER_ ## __prop ## _SH)
340 #define BFI_ADAPTER_SETP(__prop, __val) \
341 ((__val) << BFI_ADAPTER_ ## __prop ## _SH)
342 #define BFI_ADAPTER_IS_PROTO(__adap_type) \
343 ((__adap_type) & BFI_ADAPTER_PROTO)
344 #define BFI_ADAPTER_IS_TTV(__adap_type) \
345 ((__adap_type) & BFI_ADAPTER_TTV)
346 #define BFI_ADAPTER_IS_UNSUPP(__adap_type) \
347 ((__adap_type) & BFI_ADAPTER_UNSUPP)
348 #define BFI_ADAPTER_IS_SPECIAL(__adap_type) \
349 ((__adap_type) & (BFI_ADAPTER_TTV | BFI_ADAPTER_PROTO | \
353 * BFI_IOC_H2I_ENABLE_REQ & BFI_IOC_H2I_DISABLE_REQ messages
355 struct bfi_ioc_ctrl_req
{
363 * BFI_IOC_I2H_ENABLE_REPLY & BFI_IOC_I2H_DISABLE_REPLY messages
365 struct bfi_ioc_ctrl_reply
{
366 struct bfi_mhdr mh
; /*!< Common msg header */
367 u8 status
; /*!< enable/disable status */
371 #define BFI_IOC_MSGSZ 8
375 union bfi_ioc_h2i_msg_u
{
377 struct bfi_ioc_ctrl_req enable_req
;
378 struct bfi_ioc_ctrl_req disable_req
;
379 struct bfi_ioc_getattr_req getattr_req
;
380 u32 mboxmsg
[BFI_IOC_MSGSZ
];
386 union bfi_ioc_i2h_msg_u
{
388 struct bfi_ioc_rdy_event rdy_event
;
389 u32 mboxmsg
[BFI_IOC_MSGSZ
];
394 #endif /* __BFI_H__ */