2 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
22 #include "bfa_defs_svc.h"
26 /* Per dma segment max size */
27 #define BFI_MEM_DMA_SEG_SZ (131072)
29 /* Get number of dma segments required */
30 #define BFI_MEM_DMA_NSEGS(_num_reqs, _req_sz) \
31 ((u16)(((((_num_reqs) * (_req_sz)) + BFI_MEM_DMA_SEG_SZ - 1) & \
32 ~(BFI_MEM_DMA_SEG_SZ - 1)) / BFI_MEM_DMA_SEG_SZ))
34 /* Get num dma reqs - that fit in a segment */
35 #define BFI_MEM_NREQS_SEG(_rqsz) (BFI_MEM_DMA_SEG_SZ / (_rqsz))
37 /* Get segment num from tag */
38 #define BFI_MEM_SEG_FROM_TAG(_tag, _rqsz) ((_tag) / BFI_MEM_NREQS_SEG(_rqsz))
40 /* Get dma req offset in a segment */
41 #define BFI_MEM_SEG_REQ_OFFSET(_tag, _sz) \
42 ((_tag) - (BFI_MEM_SEG_FROM_TAG(_tag, _sz) * BFI_MEM_NREQS_SEG(_sz)))
47 #define BFI_FLASH_CHUNK_SZ 256 /* Flash chunk size */
48 #define BFI_FLASH_CHUNK_SZ_WORDS (BFI_FLASH_CHUNK_SZ/sizeof(u32))
49 #define BFI_FLASH_IMAGE_SZ 0x100000
52 * Msg header common to all msgs
55 u8 msg_class; /* @ref bfi_mclass_t */
56 u8 msg_id; /* msg opcode with in the class */
60 u8 fn_lpu; /* msg destination */
62 u16 i2htok; /* token in msgs to host */
66 #define bfi_fn_lpu(__fn, __lpu) ((__fn) << 1 | (__lpu))
67 #define bfi_mhdr_2_fn(_mh) ((_mh)->mtag.h2i.fn_lpu >> 1)
69 #define bfi_h2i_set(_mh, _mc, _op, _fn_lpu) do { \
70 (_mh).msg_class = (_mc); \
71 (_mh).msg_id = (_op); \
72 (_mh).mtag.h2i.fn_lpu = (_fn_lpu); \
75 #define bfi_i2h_set(_mh, _mc, _op, _i2htok) do { \
76 (_mh).msg_class = (_mc); \
77 (_mh).msg_id = (_op); \
78 (_mh).mtag.i2htok = (_i2htok); \
82 * Message opcodes: 0-127 to firmware, 128-255 to host
84 #define BFI_I2H_OPCODE_BASE 128
85 #define BFA_I2HM(_x) ((_x) + BFI_I2H_OPCODE_BASE)
88 ****************************************************************************
90 * Scatter Gather Element and Page definition
92 ****************************************************************************
95 #define BFI_SGE_INLINE 1
96 #define BFI_SGE_INLINE_MAX (BFI_SGE_INLINE + 1)
102 BFI_SGE_DATA = 0, /* data address, not last */
103 BFI_SGE_DATA_CPL = 1, /* data addr, last in current page */
104 BFI_SGE_DATA_LAST = 3, /* data address, last */
105 BFI_SGE_LINK = 2, /* link address */
106 BFI_SGE_PGDLEN = 2, /* cumulative data length for page */
120 * Scatter Gather Element used for fast-path IO requests
132 union bfi_addr_u sga;
136 * Generic DMA addr-len pair.
139 union bfi_addr_u al_addr; /* DMA addr of buffer */
140 u32 al_len; /* length of buffer */
144 * Scatter Gather Page
146 #define BFI_SGPG_DATA_SGES 7
147 #define BFI_SGPG_SGES_MAX (BFI_SGPG_DATA_SGES + 1)
148 #define BFI_SGPG_RSVD_WD_LEN 8
150 struct bfi_sge_s sges[BFI_SGPG_SGES_MAX];
151 u32 rsvd[BFI_SGPG_RSVD_WD_LEN];
154 /* FCP module definitions */
155 #define BFI_IO_MAX (2000)
156 #define BFI_IOIM_SNSLEN (256)
157 #define BFI_IOIM_SNSBUF_SEGS \
158 BFI_MEM_DMA_NSEGS(BFI_IO_MAX, BFI_IOIM_SNSLEN)
161 * Large Message structure - 128 Bytes size Msgs
163 #define BFI_LMSG_SZ 128
164 #define BFI_LMSG_PL_WSZ \
165 ((BFI_LMSG_SZ - sizeof(struct bfi_mhdr_s)) / 4)
168 struct bfi_mhdr_s mhdr;
169 u32 pl[BFI_LMSG_PL_WSZ];
173 * Mailbox message structure
175 #define BFI_MBMSG_SZ 7
177 struct bfi_mhdr_s mh;
178 u32 pl[BFI_MBMSG_SZ];
182 * Supported PCI function class codes (personality)
184 enum bfi_pcifn_class {
185 BFI_PCIFN_CLASS_FC = 0x0c04,
186 BFI_PCIFN_CLASS_ETH = 0x0200,
193 BFI_MC_IOC = 1, /* IO Controller (IOC) */
194 BFI_MC_DIAG = 2, /* Diagnostic Msgs */
195 BFI_MC_FLASH = 3, /* Flash message class */
196 BFI_MC_CEE = 4, /* CEE */
197 BFI_MC_FCPORT = 5, /* FC port */
198 BFI_MC_IOCFC = 6, /* FC - IO Controller (IOC) */
199 BFI_MC_ABLK = 7, /* ASIC block configuration */
200 BFI_MC_UF = 8, /* Unsolicited frame receive */
201 BFI_MC_FCXP = 9, /* FC Transport */
202 BFI_MC_LPS = 10, /* lport fc login services */
203 BFI_MC_RPORT = 11, /* Remote port */
204 BFI_MC_ITN = 12, /* I-T nexus (Initiator mode) */
205 BFI_MC_IOIM_READ = 13, /* read IO (Initiator mode) */
206 BFI_MC_IOIM_WRITE = 14, /* write IO (Initiator mode) */
207 BFI_MC_IOIM_IO = 15, /* IO (Initiator mode) */
208 BFI_MC_IOIM = 16, /* IO (Initiator mode) */
209 BFI_MC_IOIM_IOCOM = 17, /* good IO completion */
210 BFI_MC_TSKIM = 18, /* Initiator Task management */
211 BFI_MC_PORT = 21, /* Physical port */
212 BFI_MC_SFP = 22, /* SFP module */
213 BFI_MC_PHY = 25, /* External PHY message class */
218 #define BFI_IOC_MAX_CQS 4
219 #define BFI_IOC_MAX_CQS_ASIC 8
220 #define BFI_IOC_MSGLEN_MAX 32 /* 32 bytes */
223 *----------------------------------------------------------------------
225 *----------------------------------------------------------------------
229 * Different asic generations
232 BFI_ASIC_GEN_CB = 1, /* crossbow 8G FC */
233 BFI_ASIC_GEN_CT = 2, /* catapult 8G FC or 10G CNA */
234 BFI_ASIC_GEN_CT2 = 3, /* catapult-2 16G FC or 10G CNA */
238 BFI_ASIC_MODE_FC = 1, /* FC upto 8G speed */
239 BFI_ASIC_MODE_FC16 = 2, /* FC upto 16G speed */
240 BFI_ASIC_MODE_ETH = 3, /* Ethernet ports */
241 BFI_ASIC_MODE_COMBO = 4, /* FC 16G and Ethernet 10G port */
244 enum bfi_ioc_h2i_msgs {
245 BFI_IOC_H2I_ENABLE_REQ = 1,
246 BFI_IOC_H2I_DISABLE_REQ = 2,
247 BFI_IOC_H2I_GETATTR_REQ = 3,
248 BFI_IOC_H2I_DBG_SYNC = 4,
249 BFI_IOC_H2I_DBG_DUMP = 5,
252 enum bfi_ioc_i2h_msgs {
253 BFI_IOC_I2H_ENABLE_REPLY = BFA_I2HM(1),
254 BFI_IOC_I2H_DISABLE_REPLY = BFA_I2HM(2),
255 BFI_IOC_I2H_GETATTR_REPLY = BFA_I2HM(3),
256 BFI_IOC_I2H_HBEAT = BFA_I2HM(4),
257 BFI_IOC_I2H_ACQ_ADDR_REPLY = BFA_I2HM(5),
261 * BFI_IOC_H2I_GETATTR_REQ message
263 struct bfi_ioc_getattr_req_s {
264 struct bfi_mhdr_s mh;
265 union bfi_addr_u attr_addr;
268 #define BFI_IOC_ATTR_UUID_SZ 16
269 struct bfi_ioc_attr_s {
270 wwn_t mfg_pwwn; /* Mfg port wwn */
271 wwn_t mfg_nwwn; /* Mfg node wwn */
272 mac_t mfg_mac; /* Mfg mac */
273 u8 port_mode; /* bfi_port_mode */
277 mac_t mac; /* PBC or Mfg mac */
281 char brcd_serialnum[STRSZ(BFA_MFG_SERIALNUM_SIZE)];
285 u8 rx_bbcredit; /* receive buffer credits */
286 u32 adapter_prop; /* adapter properties */
287 u16 maxfrsize; /* max receive frame size */
290 char fw_version[BFA_VERSION_LEN];
291 char optrom_version[BFA_VERSION_LEN];
292 struct bfa_mfg_vpd_s vpd;
293 u32 card_type; /* card type */
294 u8 mfg_day; /* manufacturing day */
295 u8 mfg_month; /* manufacturing month */
296 u16 mfg_year; /* manufacturing year */
297 u8 uuid[BFI_IOC_ATTR_UUID_SZ]; /*!< chinook uuid */
301 * BFI_IOC_I2H_GETATTR_REPLY message
303 struct bfi_ioc_getattr_reply_s {
304 struct bfi_mhdr_s mh; /* Common msg header */
305 u8 status; /* cfg reply status */
310 * Firmware memory page offsets
312 #define BFI_IOC_SMEM_PG0_CB (0x40)
313 #define BFI_IOC_SMEM_PG0_CT (0x180)
316 * Firmware statistic offset
318 #define BFI_IOC_FWSTATS_OFF (0x6B40)
319 #define BFI_IOC_FWSTATS_SZ (4096)
322 * Firmware trace offset
324 #define BFI_IOC_TRC_OFF (0x4b00)
325 #define BFI_IOC_TRC_ENTS 256
327 #define BFI_IOC_FW_SIGNATURE (0xbfadbfad)
328 #define BFA_IOC_FW_INV_SIGN (0xdeaddead)
329 #define BFI_IOC_MD5SUM_SZ 4
331 struct bfi_ioc_fwver_s {
351 struct bfi_ioc_image_hdr_s {
352 u32 signature; /* constant signature */
353 u8 asic_gen; /* asic generation */
355 u8 port0_mode; /* device mode for port 0 */
356 u8 port1_mode; /* device mode for port 1 */
357 u32 exec; /* exec vector */
358 u32 bootenv; /* fimware boot env */
360 struct bfi_ioc_fwver_s fwver;
361 u32 md5sum[BFI_IOC_MD5SUM_SZ];
364 enum bfi_ioc_img_ver_cmp_e {
365 BFI_IOC_IMG_VER_INCOMP,
367 BFI_IOC_IMG_VER_SAME,
368 BFI_IOC_IMG_VER_BETTER
371 #define BFI_FWBOOT_DEVMODE_OFF 4
372 #define BFI_FWBOOT_TYPE_OFF 8
373 #define BFI_FWBOOT_ENV_OFF 12
374 #define BFI_FWBOOT_DEVMODE(__asic_gen, __asic_mode, __p0_mode, __p1_mode) \
375 (((u32)(__asic_gen)) << 24 | \
376 ((u32)(__asic_mode)) << 16 | \
377 ((u32)(__p0_mode)) << 8 | \
380 enum bfi_fwboot_type {
381 BFI_FWBOOT_TYPE_NORMAL = 0,
382 BFI_FWBOOT_TYPE_FLASH = 1,
383 BFI_FWBOOT_TYPE_MEMTEST = 2,
386 #define BFI_FWBOOT_TYPE_NORMAL 0
387 #define BFI_FWBOOT_TYPE_MEMTEST 2
388 #define BFI_FWBOOT_ENV_OS 0
391 BFI_PORT_MODE_FC = 1,
392 BFI_PORT_MODE_ETH = 2,
395 struct bfi_ioc_hbeat_s {
396 struct bfi_mhdr_s mh; /* common msg header */
397 u32 hb_count; /* current heart beat count */
401 * IOC hardware/firmware state
404 BFI_IOC_UNINIT = 0, /* not initialized */
405 BFI_IOC_INITING = 1, /* h/w is being initialized */
406 BFI_IOC_HWINIT = 2, /* h/w is initialized */
407 BFI_IOC_CFG = 3, /* IOC configuration in progress */
408 BFI_IOC_OP = 4, /* IOC is operational */
409 BFI_IOC_DISABLING = 5, /* IOC is being disabled */
410 BFI_IOC_DISABLED = 6, /* IOC is disabled */
411 BFI_IOC_CFG_DISABLED = 7, /* IOC is being disabled;transient */
412 BFI_IOC_FAIL = 8, /* IOC heart-beat failure */
413 BFI_IOC_MEMTEST = 9, /* IOC is doing memtest */
416 #define BFA_IOC_CB_JOIN_SH 16
417 #define BFA_IOC_CB_FWSTATE_MASK 0x0000ffff
418 #define BFA_IOC_CB_JOIN_MASK 0xffff0000
420 #define BFI_IOC_ENDIAN_SIG 0x12345678
423 BFI_ADAPTER_TYPE_FC = 0x01, /* FC adapters */
424 BFI_ADAPTER_TYPE_MK = 0x0f0000, /* adapter type mask */
425 BFI_ADAPTER_TYPE_SH = 16, /* adapter type shift */
426 BFI_ADAPTER_NPORTS_MK = 0xff00, /* number of ports mask */
427 BFI_ADAPTER_NPORTS_SH = 8, /* number of ports shift */
428 BFI_ADAPTER_SPEED_MK = 0xff, /* adapter speed mask */
429 BFI_ADAPTER_SPEED_SH = 0, /* adapter speed shift */
430 BFI_ADAPTER_PROTO = 0x100000, /* prototype adapaters */
431 BFI_ADAPTER_TTV = 0x200000, /* TTV debug capable */
432 BFI_ADAPTER_UNSUPP = 0x400000, /* unknown adapter type */
435 #define BFI_ADAPTER_GETP(__prop, __adap_prop) \
436 (((__adap_prop) & BFI_ADAPTER_ ## __prop ## _MK) >> \
437 BFI_ADAPTER_ ## __prop ## _SH)
438 #define BFI_ADAPTER_SETP(__prop, __val) \
439 ((__val) << BFI_ADAPTER_ ## __prop ## _SH)
440 #define BFI_ADAPTER_IS_PROTO(__adap_type) \
441 ((__adap_type) & BFI_ADAPTER_PROTO)
442 #define BFI_ADAPTER_IS_TTV(__adap_type) \
443 ((__adap_type) & BFI_ADAPTER_TTV)
444 #define BFI_ADAPTER_IS_UNSUPP(__adap_type) \
445 ((__adap_type) & BFI_ADAPTER_UNSUPP)
446 #define BFI_ADAPTER_IS_SPECIAL(__adap_type) \
447 ((__adap_type) & (BFI_ADAPTER_TTV | BFI_ADAPTER_PROTO | \
451 * BFI_IOC_H2I_ENABLE_REQ & BFI_IOC_H2I_DISABLE_REQ messages
453 struct bfi_ioc_ctrl_req_s {
454 struct bfi_mhdr_s mh;
459 #define bfi_ioc_enable_req_t struct bfi_ioc_ctrl_req_s;
460 #define bfi_ioc_disable_req_t struct bfi_ioc_ctrl_req_s;
463 * BFI_IOC_I2H_ENABLE_REPLY & BFI_IOC_I2H_DISABLE_REPLY messages
465 struct bfi_ioc_ctrl_reply_s {
466 struct bfi_mhdr_s mh; /* Common msg header */
467 u8 status; /* enable/disable status */
468 u8 port_mode; /* bfa_mode_s */
469 u8 cap_bm; /* capability bit mask */
472 #define bfi_ioc_enable_reply_t struct bfi_ioc_ctrl_reply_s;
473 #define bfi_ioc_disable_reply_t struct bfi_ioc_ctrl_reply_s;
475 #define BFI_IOC_MSGSZ 8
479 union bfi_ioc_h2i_msg_u {
480 struct bfi_mhdr_s mh;
481 struct bfi_ioc_ctrl_req_s enable_req;
482 struct bfi_ioc_ctrl_req_s disable_req;
483 struct bfi_ioc_getattr_req_s getattr_req;
484 u32 mboxmsg[BFI_IOC_MSGSZ];
490 union bfi_ioc_i2h_msg_u {
491 struct bfi_mhdr_s mh;
492 struct bfi_ioc_ctrl_reply_s fw_event;
493 u32 mboxmsg[BFI_IOC_MSGSZ];
498 *----------------------------------------------------------------------
500 *----------------------------------------------------------------------
503 #define BFI_PBC_MAX_BLUNS 8
504 #define BFI_PBC_MAX_VPORTS 16
505 #define BFI_PBC_PORT_DISABLED 2
508 * PBC boot lun configuration
510 struct bfi_pbc_blun_s {
512 struct scsi_lun tgt_lun;
516 * PBC virtual port configuration
518 struct bfi_pbc_vport_s {
524 * BFI pre-boot configuration information
536 struct bfi_pbc_blun_s blun[BFI_PBC_MAX_BLUNS];
537 struct bfi_pbc_vport_s vport[BFI_PBC_MAX_VPORTS];
541 *----------------------------------------------------------------------
543 *----------------------------------------------------------------------
545 #define BFI_MSGQ_FULL(_q) (((_q->pi + 1) % _q->q_depth) == _q->ci)
546 #define BFI_MSGQ_EMPTY(_q) (_q->pi == _q->ci)
547 #define BFI_MSGQ_UPDATE_CI(_q) (_q->ci = (_q->ci + 1) % _q->q_depth)
548 #define BFI_MSGQ_UPDATE_PI(_q) (_q->pi = (_q->pi + 1) % _q->q_depth)
550 /* q_depth must be power of 2 */
551 #define BFI_MSGQ_FREE_CNT(_q) ((_q->ci - _q->pi - 1) & (_q->q_depth - 1))
553 enum bfi_msgq_h2i_msgs_e {
554 BFI_MSGQ_H2I_INIT_REQ = 1,
555 BFI_MSGQ_H2I_DOORBELL = 2,
556 BFI_MSGQ_H2I_SHUTDOWN = 3,
559 enum bfi_msgq_i2h_msgs_e {
560 BFI_MSGQ_I2H_INIT_RSP = 1,
561 BFI_MSGQ_I2H_DOORBELL = 2,
565 /* Messages(commands/responsed/AENS will have the following header */
566 struct bfi_msgq_mhdr_s {
575 #define bfi_msgq_mhdr_set(_mh, _mc, _mid, _tok, _enet_id) do { \
576 (_mh).msg_class = (_mc); \
577 (_mh).msg_id = (_mid); \
578 (_mh).msg_token = (_tok); \
579 (_mh).enet_id = (_enet_id); \
583 * Mailbox for messaging interface
586 #define BFI_MSGQ_CMD_ENTRY_SIZE (64) /* TBD */
587 #define BFI_MSGQ_RSP_ENTRY_SIZE (64) /* TBD */
588 #define BFI_MSGQ_MSG_SIZE_MAX (2048) /* TBD */
591 union bfi_addr_u addr;
592 u16 q_depth; /* Total num of entries in the queue */
596 /* BFI_ENET_MSGQ_CFG_REQ TBD init or cfg? */
597 struct bfi_msgq_cfg_req_s {
598 struct bfi_mhdr_s mh;
599 struct bfi_msgq_s cmdq;
600 struct bfi_msgq_s rspq;
603 /* BFI_ENET_MSGQ_CFG_RSP */
604 struct bfi_msgq_cfg_rsp_s {
605 struct bfi_mhdr_s mh;
611 /* BFI_MSGQ_H2I_DOORBELL */
612 struct bfi_msgq_h2i_db_s {
613 struct bfi_mhdr_s mh;
618 /* BFI_MSGQ_I2H_DOORBELL */
619 struct bfi_msgq_i2h_db_s {
620 struct bfi_mhdr_s mh;
627 /* BFI port specific */
631 BFI_PORT_H2I_ENABLE_REQ = (1),
632 BFI_PORT_H2I_DISABLE_REQ = (2),
633 BFI_PORT_H2I_GET_STATS_REQ = (3),
634 BFI_PORT_H2I_CLEAR_STATS_REQ = (4),
638 BFI_PORT_I2H_ENABLE_RSP = BFA_I2HM(1),
639 BFI_PORT_I2H_DISABLE_RSP = BFA_I2HM(2),
640 BFI_PORT_I2H_GET_STATS_RSP = BFA_I2HM(3),
641 BFI_PORT_I2H_CLEAR_STATS_RSP = BFA_I2HM(4),
647 struct bfi_port_generic_req_s {
648 struct bfi_mhdr_s mh; /* msg header */
649 u32 msgtag; /* msgtag for reply */
656 struct bfi_port_generic_rsp_s {
657 struct bfi_mhdr_s mh; /* common msg header */
658 u8 status; /* port enable status */
660 u32 msgtag; /* msgtag for reply */
664 * BFI_PORT_H2I_GET_STATS_REQ
666 struct bfi_port_get_stats_req_s {
667 struct bfi_mhdr_s mh; /* common msg header */
668 union bfi_addr_u dma_addr;
671 union bfi_port_h2i_msg_u {
672 struct bfi_mhdr_s mh;
673 struct bfi_port_generic_req_s enable_req;
674 struct bfi_port_generic_req_s disable_req;
675 struct bfi_port_get_stats_req_s getstats_req;
676 struct bfi_port_generic_req_s clearstats_req;
679 union bfi_port_i2h_msg_u {
680 struct bfi_mhdr_s mh;
681 struct bfi_port_generic_rsp_s enable_rsp;
682 struct bfi_port_generic_rsp_s disable_rsp;
683 struct bfi_port_generic_rsp_s getstats_rsp;
684 struct bfi_port_generic_rsp_s clearstats_rsp;
688 *----------------------------------------------------------------------
690 *----------------------------------------------------------------------
692 enum bfi_ablk_h2i_msgs_e {
693 BFI_ABLK_H2I_QUERY = 1,
694 BFI_ABLK_H2I_ADPT_CONFIG = 2,
695 BFI_ABLK_H2I_PORT_CONFIG = 3,
696 BFI_ABLK_H2I_PF_CREATE = 4,
697 BFI_ABLK_H2I_PF_DELETE = 5,
698 BFI_ABLK_H2I_PF_UPDATE = 6,
699 BFI_ABLK_H2I_OPTROM_ENABLE = 7,
700 BFI_ABLK_H2I_OPTROM_DISABLE = 8,
703 enum bfi_ablk_i2h_msgs_e {
704 BFI_ABLK_I2H_QUERY = BFA_I2HM(BFI_ABLK_H2I_QUERY),
705 BFI_ABLK_I2H_ADPT_CONFIG = BFA_I2HM(BFI_ABLK_H2I_ADPT_CONFIG),
706 BFI_ABLK_I2H_PORT_CONFIG = BFA_I2HM(BFI_ABLK_H2I_PORT_CONFIG),
707 BFI_ABLK_I2H_PF_CREATE = BFA_I2HM(BFI_ABLK_H2I_PF_CREATE),
708 BFI_ABLK_I2H_PF_DELETE = BFA_I2HM(BFI_ABLK_H2I_PF_DELETE),
709 BFI_ABLK_I2H_PF_UPDATE = BFA_I2HM(BFI_ABLK_H2I_PF_UPDATE),
710 BFI_ABLK_I2H_OPTROM_ENABLE = BFA_I2HM(BFI_ABLK_H2I_OPTROM_ENABLE),
711 BFI_ABLK_I2H_OPTROM_DISABLE = BFA_I2HM(BFI_ABLK_H2I_OPTROM_DISABLE),
714 /* BFI_ABLK_H2I_QUERY */
715 struct bfi_ablk_h2i_query_s {
716 struct bfi_mhdr_s mh;
717 union bfi_addr_u addr;
720 /* BFI_ABL_H2I_ADPT_CONFIG, BFI_ABLK_H2I_PORT_CONFIG */
721 struct bfi_ablk_h2i_cfg_req_s {
722 struct bfi_mhdr_s mh;
730 * BFI_ABLK_H2I_PF_CREATE, BFI_ABLK_H2I_PF_DELETE,
732 struct bfi_ablk_h2i_pf_req_s {
733 struct bfi_mhdr_s mh;
737 u16 bw_min; /* percent BW @ max speed */
738 u16 bw_max; /* percent BW @ max speed */
741 /* BFI_ABLK_H2I_OPTROM_ENABLE, BFI_ABLK_H2I_OPTROM_DISABLE */
742 struct bfi_ablk_h2i_optrom_s {
743 struct bfi_mhdr_s mh;
748 * BFI_ABLK_I2H_PORT_CONFIG
749 * BFI_ABLK_I2H_PF_CREATE
750 * BFI_ABLK_I2H_PF_DELETE
751 * BFI_ABLK_I2H_PF_UPDATE
752 * BFI_ABLK_I2H_OPTROM_ENABLE
753 * BFI_ABLK_I2H_OPTROM_DISABLE
755 struct bfi_ablk_i2h_rsp_s {
756 struct bfi_mhdr_s mh;
764 * CEE module specific messages
767 /* Mailbox commands from host to firmware */
768 enum bfi_cee_h2i_msgs_e {
769 BFI_CEE_H2I_GET_CFG_REQ = 1,
770 BFI_CEE_H2I_RESET_STATS = 2,
771 BFI_CEE_H2I_GET_STATS_REQ = 3,
774 enum bfi_cee_i2h_msgs_e {
775 BFI_CEE_I2H_GET_CFG_RSP = BFA_I2HM(1),
776 BFI_CEE_I2H_RESET_STATS_RSP = BFA_I2HM(2),
777 BFI_CEE_I2H_GET_STATS_RSP = BFA_I2HM(3),
781 * H2I command structure for resetting the stats
783 struct bfi_cee_reset_stats_s {
784 struct bfi_mhdr_s mh;
788 * Get configuration command from host
790 struct bfi_cee_get_req_s {
791 struct bfi_mhdr_s mh;
792 union bfi_addr_u dma_addr;
796 * Reply message from firmware
798 struct bfi_cee_get_rsp_s {
799 struct bfi_mhdr_s mh;
805 * Reply message from firmware
807 struct bfi_cee_stats_rsp_s {
808 struct bfi_mhdr_s mh;
813 /* Mailbox message structures from firmware to host */
814 union bfi_cee_i2h_msg_u {
815 struct bfi_mhdr_s mh;
816 struct bfi_cee_get_rsp_s get_rsp;
817 struct bfi_cee_stats_rsp_s stats_rsp;
825 BFI_SFP_H2I_SHOW = 1,
830 BFI_SFP_I2H_SHOW = BFA_I2HM(BFI_SFP_H2I_SHOW),
831 BFI_SFP_I2H_SCN = BFA_I2HM(BFI_SFP_H2I_SCN),
835 * SFP state change notification
837 struct bfi_sfp_scn_s {
838 struct bfi_mhdr_s mhr; /* host msg header */
841 u8 pomlvl; /* pom level: normal/warning/alarm */
842 u8 is_elb; /* e-loopback */
848 enum bfa_sfp_stat_e {
849 BFA_SFP_STATE_INIT = 0, /* SFP state is uninit */
850 BFA_SFP_STATE_REMOVED = 1, /* SFP is removed */
851 BFA_SFP_STATE_INSERTED = 2, /* SFP is inserted */
852 BFA_SFP_STATE_VALID = 3, /* SFP is valid */
853 BFA_SFP_STATE_UNSUPPORT = 4, /* SFP is unsupport */
854 BFA_SFP_STATE_FAILED = 5, /* SFP i2c read fail */
858 * SFP memory access type
861 BFI_SFP_MEM_ALL = 0x1, /* access all data field */
862 BFI_SFP_MEM_DIAGEXT = 0x2, /* access diag ext data field only */
865 struct bfi_sfp_req_s {
866 struct bfi_mhdr_s mh;
869 struct bfi_alen_s alen;
872 struct bfi_sfp_rsp_s {
873 struct bfi_mhdr_s mh;
880 * FLASH module specific
882 enum bfi_flash_h2i_msgs {
883 BFI_FLASH_H2I_QUERY_REQ = 1,
884 BFI_FLASH_H2I_ERASE_REQ = 2,
885 BFI_FLASH_H2I_WRITE_REQ = 3,
886 BFI_FLASH_H2I_READ_REQ = 4,
887 BFI_FLASH_H2I_BOOT_VER_REQ = 5,
890 enum bfi_flash_i2h_msgs {
891 BFI_FLASH_I2H_QUERY_RSP = BFA_I2HM(1),
892 BFI_FLASH_I2H_ERASE_RSP = BFA_I2HM(2),
893 BFI_FLASH_I2H_WRITE_RSP = BFA_I2HM(3),
894 BFI_FLASH_I2H_READ_RSP = BFA_I2HM(4),
895 BFI_FLASH_I2H_BOOT_VER_RSP = BFA_I2HM(5),
896 BFI_FLASH_I2H_EVENT = BFA_I2HM(127),
900 * Flash query request
902 struct bfi_flash_query_req_s {
903 struct bfi_mhdr_s mh; /* Common msg header */
904 struct bfi_alen_s alen;
908 * Flash erase request
910 struct bfi_flash_erase_req_s {
911 struct bfi_mhdr_s mh; /* Common msg header */
912 u32 type; /* partition type */
913 u8 instance; /* partition instance */
918 * Flash write request
920 struct bfi_flash_write_req_s {
921 struct bfi_mhdr_s mh; /* Common msg header */
922 struct bfi_alen_s alen;
923 u32 type; /* partition type */
924 u8 instance; /* partition instance */
934 struct bfi_flash_read_req_s {
935 struct bfi_mhdr_s mh; /* Common msg header */
936 u32 type; /* partition type */
937 u8 instance; /* partition instance */
941 struct bfi_alen_s alen;
945 * Flash query response
947 struct bfi_flash_query_rsp_s {
948 struct bfi_mhdr_s mh; /* Common msg header */
953 * Flash read response
955 struct bfi_flash_read_rsp_s {
956 struct bfi_mhdr_s mh; /* Common msg header */
957 u32 type; /* partition type */
958 u8 instance; /* partition instance */
965 * Flash write response
967 struct bfi_flash_write_rsp_s {
968 struct bfi_mhdr_s mh; /* Common msg header */
969 u32 type; /* partition type */
970 u8 instance; /* partition instance */
977 * Flash erase response
979 struct bfi_flash_erase_rsp_s {
980 struct bfi_mhdr_s mh; /* Common msg header */
981 u32 type; /* partition type */
982 u8 instance; /* partition instance */
988 * Flash event notification
990 struct bfi_flash_event_s {
991 struct bfi_mhdr_s mh; /* Common msg header */
997 *----------------------------------------------------------------------
999 *----------------------------------------------------------------------
1002 BFI_DIAG_H2I_PORTBEACON = 1,
1003 BFI_DIAG_H2I_LOOPBACK = 2,
1004 BFI_DIAG_H2I_FWPING = 3,
1005 BFI_DIAG_H2I_TEMPSENSOR = 4,
1006 BFI_DIAG_H2I_LEDTEST = 5,
1007 BFI_DIAG_H2I_QTEST = 6,
1008 BFI_DIAG_H2I_DPORT = 7,
1012 BFI_DIAG_I2H_PORTBEACON = BFA_I2HM(BFI_DIAG_H2I_PORTBEACON),
1013 BFI_DIAG_I2H_LOOPBACK = BFA_I2HM(BFI_DIAG_H2I_LOOPBACK),
1014 BFI_DIAG_I2H_FWPING = BFA_I2HM(BFI_DIAG_H2I_FWPING),
1015 BFI_DIAG_I2H_TEMPSENSOR = BFA_I2HM(BFI_DIAG_H2I_TEMPSENSOR),
1016 BFI_DIAG_I2H_LEDTEST = BFA_I2HM(BFI_DIAG_H2I_LEDTEST),
1017 BFI_DIAG_I2H_QTEST = BFA_I2HM(BFI_DIAG_H2I_QTEST),
1018 BFI_DIAG_I2H_DPORT = BFA_I2HM(BFI_DIAG_H2I_DPORT),
1019 BFI_DIAG_I2H_DPORT_SCN = BFA_I2HM(8),
1022 #define BFI_DIAG_MAX_SGES 2
1023 #define BFI_DIAG_DMA_BUF_SZ (2 * 1024)
1024 #define BFI_BOOT_MEMTEST_RES_ADDR 0x900
1025 #define BFI_BOOT_MEMTEST_RES_SIG 0xA0A1A2A3
1027 struct bfi_diag_lb_req_s {
1028 struct bfi_mhdr_s mh;
1031 u8 lb_mode; /*!< bfa_port_opmode_t */
1032 u8 speed; /*!< bfa_port_speed_t */
1036 struct bfi_diag_lb_rsp_s {
1037 struct bfi_mhdr_s mh; /* 4 bytes */
1038 struct bfa_diag_loopback_result_s res; /* 16 bytes */
1041 struct bfi_diag_fwping_req_s {
1042 struct bfi_mhdr_s mh; /* 4 bytes */
1043 struct bfi_alen_s alen; /* 12 bytes */
1044 u32 data; /* user input data pattern */
1045 u32 count; /* user input dma count */
1046 u8 qtag; /* track CPE vc */
1050 struct bfi_diag_fwping_rsp_s {
1051 struct bfi_mhdr_s mh; /* 4 bytes */
1052 u32 data; /* user input data pattern */
1053 u8 qtag; /* track CPE vc */
1054 u8 dma_status; /* dma status */
1059 * Temperature Sensor
1061 struct bfi_diag_ts_req_s {
1062 struct bfi_mhdr_s mh; /* 4 bytes */
1063 u16 temp; /* 10-bit A/D value */
1064 u16 brd_temp; /* 9-bit board temp */
1066 u8 ts_junc; /* show junction tempsensor */
1067 u8 ts_brd; /* show board tempsensor */
1070 #define bfi_diag_ts_rsp_t struct bfi_diag_ts_req_s
1072 struct bfi_diag_ledtest_req_s {
1073 struct bfi_mhdr_s mh; /* 4 bytes */
1077 u8 led; /* bitmap of LEDs to be tested */
1078 u16 freq; /* no. of blinks every 10 secs */
1082 /* notify host led operation is done */
1083 struct bfi_diag_ledtest_rsp_s {
1084 struct bfi_mhdr_s mh; /* 4 bytes */
1087 struct bfi_diag_portbeacon_req_s {
1088 struct bfi_mhdr_s mh; /* 4 bytes */
1089 u32 period; /* beaconing period */
1090 u8 beacon; /* 1: beacon on */
1094 /* notify host the beacon is off */
1095 struct bfi_diag_portbeacon_rsp_s {
1096 struct bfi_mhdr_s mh; /* 4 bytes */
1099 struct bfi_diag_qtest_req_s {
1100 struct bfi_mhdr_s mh; /* 4 bytes */
1101 u32 data[BFI_LMSG_PL_WSZ]; /* fill up tcm prefetch area */
1103 #define bfi_diag_qtest_rsp_t struct bfi_diag_qtest_req_s
1108 enum bfi_dport_req {
1109 BFI_DPORT_DISABLE = 0, /* disable dport request */
1110 BFI_DPORT_ENABLE = 1, /* enable dport request */
1111 BFI_DPORT_START = 2, /* start dport request */
1112 BFI_DPORT_SHOW = 3, /* show dport request */
1113 BFI_DPORT_DYN_DISABLE = 4, /* disable dynamic dport request */
1116 enum bfi_dport_scn {
1117 BFI_DPORT_SCN_TESTSTART = 1,
1118 BFI_DPORT_SCN_TESTCOMP = 2,
1119 BFI_DPORT_SCN_SFP_REMOVED = 3,
1120 BFI_DPORT_SCN_DDPORT_ENABLE = 4,
1121 BFI_DPORT_SCN_DDPORT_DISABLE = 5,
1122 BFI_DPORT_SCN_FCPORT_DISABLE = 6,
1123 BFI_DPORT_SCN_SUBTESTSTART = 7,
1124 BFI_DPORT_SCN_TESTSKIP = 8,
1125 BFI_DPORT_SCN_DDPORT_DISABLED = 9,
1128 struct bfi_diag_dport_req_s {
1129 struct bfi_mhdr_s mh; /* 4 bytes */
1130 u8 req; /* request 1: enable 0: disable */
1136 struct bfi_diag_dport_rsp_s {
1137 struct bfi_mhdr_s mh; /* header 4 bytes */
1138 bfa_status_t status; /* reply status */
1139 wwn_t pwwn; /* switch port wwn. 8 bytes */
1140 wwn_t nwwn; /* switch node wwn. 8 bytes */
1143 struct bfi_diag_dport_scn_teststart_s {
1144 wwn_t pwwn; /* switch port wwn. 8 bytes */
1145 wwn_t nwwn; /* switch node wwn. 8 bytes */
1146 u8 type; /* bfa_diag_dport_test_type_e */
1147 u8 mode; /* bfa_diag_dport_test_opmode */
1149 u32 numfrm; /* from switch uint in 1M */
1152 struct bfi_diag_dport_scn_testcomp_s {
1153 u8 status; /* bfa_diag_dport_test_status_e */
1154 u8 speed; /* bfa_port_speed_t */
1155 u16 numbuffer; /* from switch */
1156 u8 subtest_status[DPORT_TEST_MAX]; /* 4 bytes */
1157 u32 latency; /* from switch */
1158 u32 distance; /* from swtich unit in meters */
1159 /* Buffers required to saturate the link */
1160 u16 frm_sz; /* from switch for buf_reqd */
1164 struct bfi_diag_dport_scn_s { /* max size == RDS_RMESZ */
1165 struct bfi_mhdr_s mh; /* header 4 bytes */
1166 u8 state; /* new state */
1169 struct bfi_diag_dport_scn_teststart_s teststart;
1170 struct bfi_diag_dport_scn_testcomp_s testcomp;
1174 union bfi_diag_dport_msg_u {
1175 struct bfi_diag_dport_req_s req;
1176 struct bfi_diag_dport_rsp_s rsp;
1177 struct bfi_diag_dport_scn_s scn;
1181 * PHY module specific
1183 enum bfi_phy_h2i_msgs_e {
1184 BFI_PHY_H2I_QUERY_REQ = 1,
1185 BFI_PHY_H2I_STATS_REQ = 2,
1186 BFI_PHY_H2I_WRITE_REQ = 3,
1187 BFI_PHY_H2I_READ_REQ = 4,
1190 enum bfi_phy_i2h_msgs_e {
1191 BFI_PHY_I2H_QUERY_RSP = BFA_I2HM(1),
1192 BFI_PHY_I2H_STATS_RSP = BFA_I2HM(2),
1193 BFI_PHY_I2H_WRITE_RSP = BFA_I2HM(3),
1194 BFI_PHY_I2H_READ_RSP = BFA_I2HM(4),
1198 * External PHY query request
1200 struct bfi_phy_query_req_s {
1201 struct bfi_mhdr_s mh; /* Common msg header */
1204 struct bfi_alen_s alen;
1208 * External PHY stats request
1210 struct bfi_phy_stats_req_s {
1211 struct bfi_mhdr_s mh; /* Common msg header */
1214 struct bfi_alen_s alen;
1218 * External PHY write request
1220 struct bfi_phy_write_req_s {
1221 struct bfi_mhdr_s mh; /* Common msg header */
1227 struct bfi_alen_s alen;
1231 * External PHY read request
1233 struct bfi_phy_read_req_s {
1234 struct bfi_mhdr_s mh; /* Common msg header */
1239 struct bfi_alen_s alen;
1243 * External PHY query response
1245 struct bfi_phy_query_rsp_s {
1246 struct bfi_mhdr_s mh; /* Common msg header */
1251 * External PHY stats response
1253 struct bfi_phy_stats_rsp_s {
1254 struct bfi_mhdr_s mh; /* Common msg header */
1259 * External PHY read response
1261 struct bfi_phy_read_rsp_s {
1262 struct bfi_mhdr_s mh; /* Common msg header */
1268 * External PHY write response
1270 struct bfi_phy_write_rsp_s {
1271 struct bfi_mhdr_s mh; /* Common msg header */
1276 enum bfi_fru_h2i_msgs {
1277 BFI_FRUVPD_H2I_WRITE_REQ = 1,
1278 BFI_FRUVPD_H2I_READ_REQ = 2,
1279 BFI_TFRU_H2I_WRITE_REQ = 3,
1280 BFI_TFRU_H2I_READ_REQ = 4,
1283 enum bfi_fru_i2h_msgs {
1284 BFI_FRUVPD_I2H_WRITE_RSP = BFA_I2HM(1),
1285 BFI_FRUVPD_I2H_READ_RSP = BFA_I2HM(2),
1286 BFI_TFRU_I2H_WRITE_RSP = BFA_I2HM(3),
1287 BFI_TFRU_I2H_READ_RSP = BFA_I2HM(4),
1293 struct bfi_fru_write_req_s {
1294 struct bfi_mhdr_s mh; /* Common msg header */
1301 struct bfi_alen_s alen;
1307 struct bfi_fru_read_req_s {
1308 struct bfi_mhdr_s mh; /* Common msg header */
1311 struct bfi_alen_s alen;
1317 struct bfi_fru_rsp_s {
1318 struct bfi_mhdr_s mh; /* Common msg header */
1324 #endif /* __BFI_H__ */