blob: bef16d276668a29fcc1e45362daf712ff5309444 [file] [log] [blame]
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001/*
2 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
3 * All rights reserved
4 * www.brocade.com
5 *
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
7 *
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
11 *
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.
16 */
17
18#ifndef __BFA_DEFS_H__
19#define __BFA_DEFS_H__
20
21#include "bfa_fc.h"
Maggie Zhangf16a1752010-12-09 19:12:32 -080022#include "bfad_drv.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070023
24#define BFA_MFG_SERIALNUM_SIZE 11
25#define STRSZ(_n) (((_n) + 4) & ~3)
26
Jing Huangacdc79a2010-10-18 17:15:55 -070027/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070028 * Manufacturing card type
29 */
30enum {
31 BFA_MFG_TYPE_CB_MAX = 825, /* Crossbow card type max */
32 BFA_MFG_TYPE_FC8P2 = 825, /* 8G 2port FC card */
33 BFA_MFG_TYPE_FC8P1 = 815, /* 8G 1port FC card */
34 BFA_MFG_TYPE_FC4P2 = 425, /* 4G 2port FC card */
35 BFA_MFG_TYPE_FC4P1 = 415, /* 4G 1port FC card */
36 BFA_MFG_TYPE_CNA10P2 = 1020, /* 10G 2port CNA card */
37 BFA_MFG_TYPE_CNA10P1 = 1010, /* 10G 1port CNA card */
38 BFA_MFG_TYPE_JAYHAWK = 804, /* Jayhawk mezz card */
39 BFA_MFG_TYPE_WANCHESE = 1007, /* Wanchese mezz card */
40 BFA_MFG_TYPE_ASTRA = 807, /* Astra mezz card */
41 BFA_MFG_TYPE_LIGHTNING_P0 = 902, /* Lightning mezz card - old */
42 BFA_MFG_TYPE_LIGHTNING = 1741, /* Lightning mezz card */
Krishna Gudipati8b070b42011-06-13 15:52:40 -070043 BFA_MFG_TYPE_PROWLER_F = 1560, /* Prowler FC only cards */
44 BFA_MFG_TYPE_PROWLER_N = 1410, /* Prowler NIC only cards */
45 BFA_MFG_TYPE_PROWLER_C = 1710, /* Prowler CNA only cards */
46 BFA_MFG_TYPE_PROWLER_D = 1860, /* Prowler Dual cards */
47 BFA_MFG_TYPE_CHINOOK = 1867, /* Chinook cards */
Vijaya Mohan Guvva079bcbc2013-05-13 02:33:28 -070048 BFA_MFG_TYPE_CHINOOK2 = 1869, /*!< Chinook2 cards */
Krishna Gudipati8b070b42011-06-13 15:52:40 -070049 BFA_MFG_TYPE_INVALID = 0, /* Invalid card type */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070050};
51
52#pragma pack(1)
53
Jing Huangacdc79a2010-10-18 17:15:55 -070054/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070055 * Check if Mezz card
56 */
57#define bfa_mfg_is_mezz(type) (( \
58 (type) == BFA_MFG_TYPE_JAYHAWK || \
59 (type) == BFA_MFG_TYPE_WANCHESE || \
60 (type) == BFA_MFG_TYPE_ASTRA || \
61 (type) == BFA_MFG_TYPE_LIGHTNING_P0 || \
Krishna Gudipati8b070b42011-06-13 15:52:40 -070062 (type) == BFA_MFG_TYPE_LIGHTNING || \
Vijaya Mohan Guvva079bcbc2013-05-13 02:33:28 -070063 (type) == BFA_MFG_TYPE_CHINOOK || \
64 (type) == BFA_MFG_TYPE_CHINOOK2))
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070065
Jing Huangacdc79a2010-10-18 17:15:55 -070066/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070067 * Check if the card having old wwn/mac handling
68 */
69#define bfa_mfg_is_old_wwn_mac_model(type) (( \
70 (type) == BFA_MFG_TYPE_FC8P2 || \
71 (type) == BFA_MFG_TYPE_FC8P1 || \
72 (type) == BFA_MFG_TYPE_FC4P2 || \
73 (type) == BFA_MFG_TYPE_FC4P1 || \
74 (type) == BFA_MFG_TYPE_CNA10P2 || \
75 (type) == BFA_MFG_TYPE_CNA10P1 || \
76 (type) == BFA_MFG_TYPE_JAYHAWK || \
77 (type) == BFA_MFG_TYPE_WANCHESE))
78
79#define bfa_mfg_increment_wwn_mac(m, i) \
80do { \
81 u32 t = ((u32)(m)[0] << 16) | ((u32)(m)[1] << 8) | \
82 (u32)(m)[2]; \
83 t += (i); \
84 (m)[0] = (t >> 16) & 0xFF; \
85 (m)[1] = (t >> 8) & 0xFF; \
86 (m)[2] = t & 0xFF; \
87} while (0)
88
Jing Huangacdc79a2010-10-18 17:15:55 -070089/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070090 * VPD data length
91 */
92#define BFA_MFG_VPD_LEN 512
93
Jing Huangacdc79a2010-10-18 17:15:55 -070094/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070095 * VPD vendor tag
96 */
97enum {
98 BFA_MFG_VPD_UNKNOWN = 0, /* vendor unknown */
99 BFA_MFG_VPD_IBM = 1, /* vendor IBM */
100 BFA_MFG_VPD_HP = 2, /* vendor HP */
101 BFA_MFG_VPD_DELL = 3, /* vendor DELL */
102 BFA_MFG_VPD_PCI_IBM = 0x08, /* PCI VPD IBM */
103 BFA_MFG_VPD_PCI_HP = 0x10, /* PCI VPD HP */
104 BFA_MFG_VPD_PCI_DELL = 0x20, /* PCI VPD DELL */
105 BFA_MFG_VPD_PCI_BRCD = 0xf8, /* PCI VPD Brocade */
106};
107
Jing Huangacdc79a2010-10-18 17:15:55 -0700108/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700109 * All numerical fields are in big-endian format.
110 */
111struct bfa_mfg_vpd_s {
112 u8 version; /* vpd data version */
113 u8 vpd_sig[3]; /* characters 'V', 'P', 'D' */
114 u8 chksum; /* u8 checksum */
115 u8 vendor; /* vendor */
116 u8 len; /* vpd data length excluding header */
117 u8 rsv;
118 u8 data[BFA_MFG_VPD_LEN]; /* vpd data */
119};
120
121#pragma pack()
122
Jing Huangacdc79a2010-10-18 17:15:55 -0700123/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700124 * Status return values
125 */
126enum bfa_status {
127 BFA_STATUS_OK = 0, /* Success */
128 BFA_STATUS_FAILED = 1, /* Operation failed */
129 BFA_STATUS_EINVAL = 2, /* Invalid params Check input
130 * parameters */
131 BFA_STATUS_ENOMEM = 3, /* Out of resources */
132 BFA_STATUS_ETIMER = 5, /* Timer expired - Retry, if persists,
133 * contact support */
134 BFA_STATUS_EPROTOCOL = 6, /* Protocol error */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700135 BFA_STATUS_SFP_UNSUPP = 10, /* Unsupported SFP - Replace SFP */
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700136 BFA_STATUS_UNKNOWN_VFID = 11, /* VF_ID not found */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700137 BFA_STATUS_DATACORRUPTED = 12, /* Diag returned data corrupted */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700138 BFA_STATUS_DEVBUSY = 13, /* Device busy - Retry operation */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700139 BFA_STATUS_HDMA_FAILED = 16, /* Host dma failed contact support */
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700140 BFA_STATUS_FLASH_BAD_LEN = 17, /* Flash bad length */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700141 BFA_STATUS_UNKNOWN_LWWN = 18, /* LPORT PWWN not found */
142 BFA_STATUS_UNKNOWN_RWWN = 19, /* RPORT PWWN not found */
143 BFA_STATUS_VPORT_EXISTS = 21, /* VPORT already exists */
144 BFA_STATUS_VPORT_MAX = 22, /* Reached max VPORT supported limit */
145 BFA_STATUS_UNSUPP_SPEED = 23, /* Invalid Speed Check speed setting */
146 BFA_STATUS_INVLD_DFSZ = 24, /* Invalid Max data field size */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700147 BFA_STATUS_CMD_NOTSUPP = 26, /* Command/API not supported */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700148 BFA_STATUS_FABRIC_RJT = 29, /* Reject from attached fabric */
Krishna Gudipatif2ee7602011-07-20 17:01:34 -0700149 BFA_STATUS_UNKNOWN_VWWN = 30, /* VPORT PWWN not found */
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700150 BFA_STATUS_PORT_OFFLINE = 34, /* Port is not online */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700151 BFA_STATUS_VPORT_WWN_BP = 46, /* WWN is same as base port's WWN */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700152 BFA_STATUS_PORT_NOT_DISABLED = 47, /* Port not disabled disable port */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700153 BFA_STATUS_NO_FCPIM_NEXUS = 52, /* No FCP Nexus exists with the rport */
154 BFA_STATUS_IOC_FAILURE = 56, /* IOC failure - Retry, if persists
155 * contact support */
156 BFA_STATUS_INVALID_WWN = 57, /* Invalid WWN */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700157 BFA_STATUS_ADAPTER_ENABLED = 60, /* Adapter is not disabled */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700158 BFA_STATUS_IOC_NON_OP = 61, /* IOC is not operational */
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700159 BFA_STATUS_VERSION_FAIL = 70, /* Application/Driver version mismatch */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700160 BFA_STATUS_DIAG_BUSY = 71, /* diag busy */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700161 BFA_STATUS_BEACON_ON = 72, /* Port Beacon already on */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700162 BFA_STATUS_ENOFSAVE = 78, /* No saved firmware trace */
163 BFA_STATUS_IOC_DISABLED = 82, /* IOC is already disabled */
Krishna Gudipatibc0e2c22012-09-21 17:23:59 -0700164 BFA_STATUS_ERROR_TRL_ENABLED = 87, /* TRL is enabled */
165 BFA_STATUS_ERROR_QOS_ENABLED = 88, /* QoS is enabled */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700166 BFA_STATUS_NO_SFP_DEV = 89, /* No SFP device check or replace SFP */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700167 BFA_STATUS_MEMTEST_FAILED = 90, /* Memory test failed contact support */
168 BFA_STATUS_LEDTEST_OP = 109, /* LED test is operating */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700169 BFA_STATUS_INVALID_MAC = 134, /* Invalid MAC address */
Krishna Gudipatie3535462012-09-21 17:26:07 -0700170 BFA_STATUS_CMD_NOTSUPP_CNA = 146, /* Command not supported for CNA */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700171 BFA_STATUS_PBC = 154, /* Operation not allowed for pre-boot
172 * configuration */
Krishna Gudipati7826f302011-07-20 16:59:13 -0700173 BFA_STATUS_BAD_FWCFG = 156, /* Bad firmware configuration */
174 BFA_STATUS_INVALID_VENDOR = 158, /* Invalid switch vendor */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700175 BFA_STATUS_SFP_NOT_READY = 159, /* SFP info is not ready. Retry */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700176 BFA_STATUS_TRUNK_ENABLED = 164, /* Trunk is already enabled on
177 * this adapter */
178 BFA_STATUS_TRUNK_DISABLED = 165, /* Trunking is disabled on
179 * the adapter */
180 BFA_STATUS_IOPROFILE_OFF = 175, /* IO profile OFF */
Krishna Gudipati3350d982011-06-24 20:28:37 -0700181 BFA_STATUS_PHY_NOT_PRESENT = 183, /* PHY module not present */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700182 BFA_STATUS_FEATURE_NOT_SUPPORTED = 192, /* Feature not supported */
Krishna Gudipati4c5d22b2011-07-20 17:04:24 -0700183 BFA_STATUS_ENTRY_EXISTS = 193, /* Entry already exists */
184 BFA_STATUS_ENTRY_NOT_EXISTS = 194, /* Entry does not exist */
185 BFA_STATUS_NO_CHANGE = 195, /* Feature already in that state */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700186 BFA_STATUS_FAA_ENABLED = 197, /* FAA is already enabled */
187 BFA_STATUS_FAA_DISABLED = 198, /* FAA is already disabled */
188 BFA_STATUS_FAA_ACQUIRED = 199, /* FAA is already acquired */
189 BFA_STATUS_FAA_ACQ_ADDR = 200, /* Acquiring addr */
Vijaya Mohan Guvvabbe37a62013-05-13 02:33:19 -0700190 BFA_STATUS_BBCR_FC_ONLY = 201, /*!< BBCredit Recovery is supported for *
191 * FC mode only */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700192 BFA_STATUS_ERROR_TRUNK_ENABLED = 203, /* Trunk enabled on adapter */
Krishna Gudipati4c5d22b2011-07-20 17:04:24 -0700193 BFA_STATUS_MAX_ENTRY_REACHED = 212, /* MAX entry reached */
Krishna Gudipatibc0e2c22012-09-21 17:23:59 -0700194 BFA_STATUS_TOPOLOGY_LOOP = 230, /* Topology is set to Loop */
195 BFA_STATUS_LOOP_UNSUPP_MEZZ = 231, /* Loop topology is not supported
196 * on mezz cards */
Krishna Gudipati1a1297c2012-09-21 17:26:50 -0700197 BFA_STATUS_INVALID_BW = 233, /* Invalid bandwidth value */
Krishna Gudipati6894f012012-09-21 17:26:31 -0700198 BFA_STATUS_QOS_BW_INVALID = 234, /* Invalid QOS bandwidth
199 * configuration */
Krishna Gudipatie3535462012-09-21 17:26:07 -0700200 BFA_STATUS_DPORT_ENABLED = 235, /* D-port mode is already enabled */
201 BFA_STATUS_DPORT_DISABLED = 236, /* D-port mode is already disabled */
202 BFA_STATUS_CMD_NOTSUPP_MEZZ = 239, /* Cmd not supported for MEZZ card */
Krishna Gudipatie6826c92012-09-21 17:27:14 -0700203 BFA_STATUS_FRU_NOT_PRESENT = 240, /* fru module not present */
Vijaya Mohan Guvva1a898a72013-05-13 02:33:21 -0700204 BFA_STATUS_DPORT_NO_SFP = 243, /* SFP is not present.\n D-port will be
205 * enabled but it will be operational
206 * only after inserting a valid SFP. */
Krishna Gudipatie3535462012-09-21 17:26:07 -0700207 BFA_STATUS_DPORT_ERR = 245, /* D-port mode is enabled */
Vijaya Mohan Guvva1a898a72013-05-13 02:33:21 -0700208 BFA_STATUS_DPORT_ENOSYS = 254, /* Switch has no D_Port functionality */
209 BFA_STATUS_DPORT_CANT_PERF = 255, /* Switch port is not D_Port capable
210 * or D_Port is disabled */
211 BFA_STATUS_DPORT_LOGICALERR = 256, /* Switch D_Port fail */
212 BFA_STATUS_DPORT_SWBUSY = 257, /* Switch port busy */
Vijaya Mohan Guvvabbe37a62013-05-13 02:33:19 -0700213 BFA_STATUS_ERR_BBCR_SPEED_UNSUPPORT = 258, /*!< BB credit recovery is
214 * supported at max port speed alone */
215 BFA_STATUS_ERROR_BBCR_ENABLED = 259, /*!< BB credit recovery
216 * is enabled */
217 BFA_STATUS_INVALID_BBSCN = 260, /*!< Invalid BBSCN value.
218 * Valid range is [1-15] */
Vijaya Mohan Guvva1a898a72013-05-13 02:33:21 -0700219 BFA_STATUS_DDPORT_ERR = 261, /* Dynamic D_Port mode is active.\n To
220 * exit dynamic mode, disable D_Port on
221 * the remote port */
222 BFA_STATUS_DPORT_SFPWRAP_ERR = 262, /* Clear e/o_wrap fail, check or
223 * replace SFP */
Vijaya Mohan Guvvabbe37a62013-05-13 02:33:19 -0700224 BFA_STATUS_BBCR_CFG_NO_CHANGE = 265, /*!< BBCR is operational.
225 * Disable BBCR and try this operation again. */
Vijaya Mohan Guvva1a898a72013-05-13 02:33:21 -0700226 BFA_STATUS_DPORT_SW_NOTREADY = 268, /* Remote port is not ready to
227 * start dport test. Check remote
228 * port status. */
229 BFA_STATUS_DPORT_INV_SFP = 271, /* Invalid SFP for D-PORT mode. */
230 BFA_STATUS_DPORT_CMD_NOTSUPP = 273, /* Dport is not supported by
231 * remote port */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700232 BFA_STATUS_MAX_VAL /* Unknown error code */
233};
234#define bfa_status_t enum bfa_status
235
236enum bfa_eproto_status {
237 BFA_EPROTO_BAD_ACCEPT = 0,
238 BFA_EPROTO_UNKNOWN_RSP = 1
239};
240#define bfa_eproto_status_t enum bfa_eproto_status
241
242enum bfa_boolean {
243 BFA_FALSE = 0,
244 BFA_TRUE = 1
245};
246#define bfa_boolean_t enum bfa_boolean
247
248#define BFA_STRING_32 32
249#define BFA_VERSION_LEN 64
250
Jing Huangacdc79a2010-10-18 17:15:55 -0700251/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700252 * ---------------------- adapter definitions ------------
253 */
254
Jing Huangacdc79a2010-10-18 17:15:55 -0700255/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700256 * BFA adapter level attributes.
257 */
258enum {
259 BFA_ADAPTER_SERIAL_NUM_LEN = STRSZ(BFA_MFG_SERIALNUM_SIZE),
260 /*
261 *!< adapter serial num length
262 */
263 BFA_ADAPTER_MODEL_NAME_LEN = 16, /* model name length */
264 BFA_ADAPTER_MODEL_DESCR_LEN = 128, /* model description length */
265 BFA_ADAPTER_MFG_NAME_LEN = 8, /* manufacturer name length */
266 BFA_ADAPTER_SYM_NAME_LEN = 64, /* adapter symbolic name length */
267 BFA_ADAPTER_OS_TYPE_LEN = 64, /* adapter os type length */
Vijaya Mohan Guvva079bcbc2013-05-13 02:33:28 -0700268 BFA_ADAPTER_UUID_LEN = 16, /* adapter uuid length */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700269};
270
271struct bfa_adapter_attr_s {
272 char manufacturer[BFA_ADAPTER_MFG_NAME_LEN];
273 char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
274 u32 card_type;
275 char model[BFA_ADAPTER_MODEL_NAME_LEN];
276 char model_descr[BFA_ADAPTER_MODEL_DESCR_LEN];
277 wwn_t pwwn;
278 char node_symname[FC_SYMNAME_MAX];
279 char hw_ver[BFA_VERSION_LEN];
280 char fw_ver[BFA_VERSION_LEN];
281 char optrom_ver[BFA_VERSION_LEN];
282 char os_type[BFA_ADAPTER_OS_TYPE_LEN];
283 struct bfa_mfg_vpd_s vpd;
284 struct mac_s mac;
285
286 u8 nports;
287 u8 max_speed;
288 u8 prototype;
289 char asic_rev;
290
291 u8 pcie_gen;
292 u8 pcie_lanes_orig;
293 u8 pcie_lanes;
294 u8 cna_capable;
295
296 u8 is_mezz;
297 u8 trunk_capable;
Krishna Gudipatiea5d7c92012-09-21 17:25:02 -0700298 u8 mfg_day; /* manufacturing day */
299 u8 mfg_month; /* manufacturing month */
300 u16 mfg_year; /* manufacturing year */
301 u16 rsvd;
Vijaya Mohan Guvva079bcbc2013-05-13 02:33:28 -0700302 u8 uuid[BFA_ADAPTER_UUID_LEN];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700303};
304
Jing Huangacdc79a2010-10-18 17:15:55 -0700305/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700306 * ---------------------- IOC definitions ------------
307 */
308
309enum {
310 BFA_IOC_DRIVER_LEN = 16,
311 BFA_IOC_CHIP_REV_LEN = 8,
312};
313
Jing Huangacdc79a2010-10-18 17:15:55 -0700314/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700315 * Driver and firmware versions.
316 */
317struct bfa_ioc_driver_attr_s {
318 char driver[BFA_IOC_DRIVER_LEN]; /* driver name */
319 char driver_ver[BFA_VERSION_LEN]; /* driver version */
320 char fw_ver[BFA_VERSION_LEN]; /* firmware version */
321 char bios_ver[BFA_VERSION_LEN]; /* bios version */
322 char efi_ver[BFA_VERSION_LEN]; /* EFI version */
323 char ob_ver[BFA_VERSION_LEN]; /* openboot version */
324};
325
Jing Huangacdc79a2010-10-18 17:15:55 -0700326/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700327 * IOC PCI device attributes
328 */
329struct bfa_ioc_pci_attr_s {
330 u16 vendor_id; /* PCI vendor ID */
331 u16 device_id; /* PCI device ID */
332 u16 ssid; /* subsystem ID */
333 u16 ssvid; /* subsystem vendor ID */
334 u32 pcifn; /* PCI device function */
335 u32 rsvd; /* padding */
336 char chip_rev[BFA_IOC_CHIP_REV_LEN]; /* chip revision */
337};
338
Jing Huangacdc79a2010-10-18 17:15:55 -0700339/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700340 * IOC states
341 */
342enum bfa_ioc_state {
343 BFA_IOC_UNINIT = 1, /* IOC is in uninit state */
344 BFA_IOC_RESET = 2, /* IOC is in reset state */
345 BFA_IOC_SEMWAIT = 3, /* Waiting for IOC h/w semaphore */
346 BFA_IOC_HWINIT = 4, /* IOC h/w is being initialized */
347 BFA_IOC_GETATTR = 5, /* IOC is being configured */
348 BFA_IOC_OPERATIONAL = 6, /* IOC is operational */
349 BFA_IOC_INITFAIL = 7, /* IOC hardware failure */
350 BFA_IOC_FAIL = 8, /* IOC heart-beat failure */
351 BFA_IOC_DISABLING = 9, /* IOC is being disabled */
352 BFA_IOC_DISABLED = 10, /* IOC is disabled */
353 BFA_IOC_FWMISMATCH = 11, /* IOC f/w different from drivers */
354 BFA_IOC_ENABLING = 12, /* IOC is being enabled */
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700355 BFA_IOC_HWFAIL = 13, /* PCI mapping doesn't exist */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700356 BFA_IOC_ACQ_ADDR = 14, /* Acquiring addr from fabric */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700357};
358
Jing Huangacdc79a2010-10-18 17:15:55 -0700359/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700360 * IOC firmware stats
361 */
362struct bfa_fw_ioc_stats_s {
363 u32 enable_reqs;
364 u32 disable_reqs;
365 u32 get_attr_reqs;
366 u32 dbg_sync;
367 u32 dbg_dump;
368 u32 unknown_reqs;
369};
370
Jing Huangacdc79a2010-10-18 17:15:55 -0700371/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700372 * IOC driver stats
373 */
374struct bfa_ioc_drv_stats_s {
375 u32 ioc_isrs;
376 u32 ioc_enables;
377 u32 ioc_disables;
378 u32 ioc_hbfails;
379 u32 ioc_boots;
380 u32 stats_tmos;
381 u32 hb_count;
382 u32 disable_reqs;
383 u32 enable_reqs;
384 u32 disable_replies;
385 u32 enable_replies;
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700386 u32 rsvd;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700387};
388
Jing Huangacdc79a2010-10-18 17:15:55 -0700389/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700390 * IOC statistics
391 */
392struct bfa_ioc_stats_s {
393 struct bfa_ioc_drv_stats_s drv_stats; /* driver IOC stats */
394 struct bfa_fw_ioc_stats_s fw_stats; /* firmware IOC stats */
395};
396
397enum bfa_ioc_type_e {
398 BFA_IOC_TYPE_FC = 1,
399 BFA_IOC_TYPE_FCoE = 2,
400 BFA_IOC_TYPE_LL = 3,
401};
402
Jing Huangacdc79a2010-10-18 17:15:55 -0700403/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700404 * IOC attributes returned in queries
405 */
406struct bfa_ioc_attr_s {
407 enum bfa_ioc_type_e ioc_type;
408 enum bfa_ioc_state state; /* IOC state */
409 struct bfa_adapter_attr_s adapter_attr; /* HBA attributes */
410 struct bfa_ioc_driver_attr_s driver_attr; /* driver attr */
411 struct bfa_ioc_pci_attr_s pci_attr;
412 u8 port_id; /* port number */
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700413 u8 port_mode; /* bfa_mode_s */
414 u8 cap_bm; /* capability */
415 u8 port_mode_cfg; /* bfa_mode_s */
Vijaya Mohan Guvva079bcbc2013-05-13 02:33:28 -0700416 u8 def_fn; /* 1 if default fn */
417 u8 rsvd[3]; /* 64bit align */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700418};
419
Jing Huangacdc79a2010-10-18 17:15:55 -0700420/*
Krishna Gudipati7826f302011-07-20 16:59:13 -0700421 * AEN related definitions
422 */
423enum bfa_aen_category {
424 BFA_AEN_CAT_ADAPTER = 1,
425 BFA_AEN_CAT_PORT = 2,
426 BFA_AEN_CAT_LPORT = 3,
427 BFA_AEN_CAT_RPORT = 4,
428 BFA_AEN_CAT_ITNIM = 5,
429 BFA_AEN_CAT_AUDIT = 8,
430 BFA_AEN_CAT_IOC = 9,
431};
432
433/* BFA adapter level events */
434enum bfa_adapter_aen_event {
435 BFA_ADAPTER_AEN_ADD = 1, /* New Adapter found event */
436 BFA_ADAPTER_AEN_REMOVE = 2, /* Adapter removed event */
437};
438
439struct bfa_adapter_aen_data_s {
440 char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
441 u32 nports; /* Number of NPorts */
442 wwn_t pwwn; /* WWN of one of its physical port */
443};
444
445/* BFA physical port Level events */
446enum bfa_port_aen_event {
447 BFA_PORT_AEN_ONLINE = 1, /* Physical Port online event */
448 BFA_PORT_AEN_OFFLINE = 2, /* Physical Port offline event */
449 BFA_PORT_AEN_RLIR = 3, /* RLIR event, not supported */
450 BFA_PORT_AEN_SFP_INSERT = 4, /* SFP inserted event */
451 BFA_PORT_AEN_SFP_REMOVE = 5, /* SFP removed event */
452 BFA_PORT_AEN_SFP_POM = 6, /* SFP POM event */
453 BFA_PORT_AEN_ENABLE = 7, /* Physical Port enable event */
454 BFA_PORT_AEN_DISABLE = 8, /* Physical Port disable event */
455 BFA_PORT_AEN_AUTH_ON = 9, /* Physical Port auth success event */
456 BFA_PORT_AEN_AUTH_OFF = 10, /* Physical Port auth fail event */
457 BFA_PORT_AEN_DISCONNECT = 11, /* Physical Port disconnect event */
458 BFA_PORT_AEN_QOS_NEG = 12, /* Base Port QOS negotiation event */
459 BFA_PORT_AEN_FABRIC_NAME_CHANGE = 13, /* Fabric Name/WWN change */
460 BFA_PORT_AEN_SFP_ACCESS_ERROR = 14, /* SFP read error event */
461 BFA_PORT_AEN_SFP_UNSUPPORT = 15, /* Unsupported SFP event */
462};
463
464enum bfa_port_aen_sfp_pom {
465 BFA_PORT_AEN_SFP_POM_GREEN = 1, /* Normal */
466 BFA_PORT_AEN_SFP_POM_AMBER = 2, /* Warning */
467 BFA_PORT_AEN_SFP_POM_RED = 3, /* Critical */
468 BFA_PORT_AEN_SFP_POM_MAX = BFA_PORT_AEN_SFP_POM_RED
469};
470
471struct bfa_port_aen_data_s {
472 wwn_t pwwn; /* WWN of the physical port */
473 wwn_t fwwn; /* WWN of the fabric port */
474 u32 phy_port_num; /* For SFP related events */
475 u16 ioc_type;
476 u16 level; /* Only transitions will be informed */
477 mac_t mac; /* MAC address of the ethernet port */
478 u16 rsvd;
479};
480
481/* BFA AEN logical port events */
482enum bfa_lport_aen_event {
483 BFA_LPORT_AEN_NEW = 1, /* LPort created event */
484 BFA_LPORT_AEN_DELETE = 2, /* LPort deleted event */
485 BFA_LPORT_AEN_ONLINE = 3, /* LPort online event */
486 BFA_LPORT_AEN_OFFLINE = 4, /* LPort offline event */
487 BFA_LPORT_AEN_DISCONNECT = 5, /* LPort disconnect event */
488 BFA_LPORT_AEN_NEW_PROP = 6, /* VPort created event */
489 BFA_LPORT_AEN_DELETE_PROP = 7, /* VPort deleted event */
490 BFA_LPORT_AEN_NEW_STANDARD = 8, /* VPort created event */
491 BFA_LPORT_AEN_DELETE_STANDARD = 9, /* VPort deleted event */
492 BFA_LPORT_AEN_NPIV_DUP_WWN = 10, /* VPort with duplicate WWN */
493 BFA_LPORT_AEN_NPIV_FABRIC_MAX = 11, /* Max NPIV in fabric/fport */
494 BFA_LPORT_AEN_NPIV_UNKNOWN = 12, /* Unknown NPIV Error code */
495};
496
497struct bfa_lport_aen_data_s {
498 u16 vf_id; /* vf_id of this logical port */
499 u16 roles; /* Logical port mode,IM/TM/IP etc */
500 u32 rsvd;
501 wwn_t ppwwn; /* WWN of its physical port */
502 wwn_t lpwwn; /* WWN of this logical port */
503};
504
505/* BFA ITNIM events */
506enum bfa_itnim_aen_event {
507 BFA_ITNIM_AEN_ONLINE = 1, /* Target online */
508 BFA_ITNIM_AEN_OFFLINE = 2, /* Target offline */
509 BFA_ITNIM_AEN_DISCONNECT = 3, /* Target disconnected */
510};
511
512struct bfa_itnim_aen_data_s {
513 u16 vf_id; /* vf_id of the IT nexus */
514 u16 rsvd[3];
515 wwn_t ppwwn; /* WWN of its physical port */
516 wwn_t lpwwn; /* WWN of logical port */
517 wwn_t rpwwn; /* WWN of remote(target) port */
518};
519
520/* BFA audit events */
521enum bfa_audit_aen_event {
522 BFA_AUDIT_AEN_AUTH_ENABLE = 1,
523 BFA_AUDIT_AEN_AUTH_DISABLE = 2,
524 BFA_AUDIT_AEN_FLASH_ERASE = 3,
525 BFA_AUDIT_AEN_FLASH_UPDATE = 4,
526};
527
528struct bfa_audit_aen_data_s {
529 wwn_t pwwn;
530 int partition_inst;
531 int partition_type;
532};
533
534/* BFA IOC level events */
535enum bfa_ioc_aen_event {
536 BFA_IOC_AEN_HBGOOD = 1, /* Heart Beat restore event */
537 BFA_IOC_AEN_HBFAIL = 2, /* Heart Beat failure event */
538 BFA_IOC_AEN_ENABLE = 3, /* IOC enabled event */
539 BFA_IOC_AEN_DISABLE = 4, /* IOC disabled event */
540 BFA_IOC_AEN_FWMISMATCH = 5, /* IOC firmware mismatch */
541 BFA_IOC_AEN_FWCFG_ERROR = 6, /* IOC firmware config error */
542 BFA_IOC_AEN_INVALID_VENDOR = 7,
543 BFA_IOC_AEN_INVALID_NWWN = 8, /* Zero NWWN */
544 BFA_IOC_AEN_INVALID_PWWN = 9 /* Zero PWWN */
545};
546
547struct bfa_ioc_aen_data_s {
548 wwn_t pwwn;
549 u16 ioc_type;
550 mac_t mac;
551};
552
553/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700554 * ---------------------- mfg definitions ------------
555 */
556
Jing Huangacdc79a2010-10-18 17:15:55 -0700557/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700558 * Checksum size
559 */
560#define BFA_MFG_CHKSUM_SIZE 16
561
562#define BFA_MFG_PARTNUM_SIZE 14
563#define BFA_MFG_SUPPLIER_ID_SIZE 10
564#define BFA_MFG_SUPPLIER_PARTNUM_SIZE 20
565#define BFA_MFG_SUPPLIER_SERIALNUM_SIZE 20
566#define BFA_MFG_SUPPLIER_REVISION_SIZE 4
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700567/*
568 * Initial capability definition
569 */
570#define BFA_MFG_IC_FC 0x01
571#define BFA_MFG_IC_ETH 0x02
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700572
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700573/*
574 * Adapter capability mask definition
575 */
576#define BFA_CM_HBA 0x01
577#define BFA_CM_CNA 0x02
578#define BFA_CM_NIC 0x04
579#define BFA_CM_FC16G 0x08
580#define BFA_CM_SRIOV 0x10
581#define BFA_CM_MEZZ 0x20
582
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700583#pragma pack(1)
584
Jing Huangacdc79a2010-10-18 17:15:55 -0700585/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700586 * All numerical fields are in big-endian format.
587 */
588struct bfa_mfg_block_s {
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700589 u8 version; /*!< manufacturing block version */
590 u8 mfg_sig[3]; /*!< characters 'M', 'F', 'G' */
591 u16 mfgsize; /*!< mfg block size */
592 u16 u16_chksum; /*!< old u16 checksum */
593 char brcd_serialnum[STRSZ(BFA_MFG_SERIALNUM_SIZE)];
594 char brcd_partnum[STRSZ(BFA_MFG_PARTNUM_SIZE)];
595 u8 mfg_day; /*!< manufacturing day */
596 u8 mfg_month; /*!< manufacturing month */
597 u16 mfg_year; /*!< manufacturing year */
598 wwn_t mfg_wwn; /*!< wwn base for this adapter */
599 u8 num_wwn; /*!< number of wwns assigned */
600 u8 mfg_speeds; /*!< speeds allowed for this adapter */
601 u8 rsv[2];
602 char supplier_id[STRSZ(BFA_MFG_SUPPLIER_ID_SIZE)];
603 char supplier_partnum[STRSZ(BFA_MFG_SUPPLIER_PARTNUM_SIZE)];
604 char supplier_serialnum[STRSZ(BFA_MFG_SUPPLIER_SERIALNUM_SIZE)];
605 char supplier_revision[STRSZ(BFA_MFG_SUPPLIER_REVISION_SIZE)];
606 mac_t mfg_mac; /*!< base mac address */
607 u8 num_mac; /*!< number of mac addresses */
608 u8 rsv2;
609 u32 card_type; /*!< card type */
610 char cap_nic; /*!< capability nic */
611 char cap_cna; /*!< capability cna */
612 char cap_hba; /*!< capability hba */
613 char cap_fc16g; /*!< capability fc 16g */
614 char cap_sriov; /*!< capability sriov */
615 char cap_mezz; /*!< capability mezz */
616 u8 rsv3;
617 u8 mfg_nports; /*!< number of ports */
618 char media[8]; /*!< xfi/xaui */
619 char initial_mode[8]; /*!< initial mode: hba/cna/nic */
620 u8 rsv4[84];
621 u8 md5_chksum[BFA_MFG_CHKSUM_SIZE]; /*!< md5 checksum */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700622};
623
624#pragma pack()
625
Jing Huangacdc79a2010-10-18 17:15:55 -0700626/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700627 * ---------------------- pci definitions ------------
628 */
629
Jing Huangacdc79a2010-10-18 17:15:55 -0700630/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700631 * PCI device and vendor ID information
632 */
633enum {
634 BFA_PCI_VENDOR_ID_BROCADE = 0x1657,
635 BFA_PCI_DEVICE_ID_FC_8G2P = 0x13,
636 BFA_PCI_DEVICE_ID_FC_8G1P = 0x17,
637 BFA_PCI_DEVICE_ID_CT = 0x14,
638 BFA_PCI_DEVICE_ID_CT_FC = 0x21,
Krishna Gudipati11189202011-06-13 15:50:35 -0700639 BFA_PCI_DEVICE_ID_CT2 = 0x22,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700640};
641
Krishna Gudipati11189202011-06-13 15:50:35 -0700642#define bfa_asic_id_cb(__d) \
643 ((__d) == BFA_PCI_DEVICE_ID_FC_8G2P || \
644 (__d) == BFA_PCI_DEVICE_ID_FC_8G1P)
645#define bfa_asic_id_ct(__d) \
646 ((__d) == BFA_PCI_DEVICE_ID_CT || \
647 (__d) == BFA_PCI_DEVICE_ID_CT_FC)
648#define bfa_asic_id_ct2(__d) ((__d) == BFA_PCI_DEVICE_ID_CT2)
649#define bfa_asic_id_ctc(__d) \
650 (bfa_asic_id_ct(__d) || bfa_asic_id_ct2(__d))
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700651
Jing Huangacdc79a2010-10-18 17:15:55 -0700652/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700653 * PCI sub-system device and vendor ID information
654 */
655enum {
656 BFA_PCI_FCOE_SSDEVICE_ID = 0x14,
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700657 BFA_PCI_CT2_SSID_FCoE = 0x22,
658 BFA_PCI_CT2_SSID_ETH = 0x23,
659 BFA_PCI_CT2_SSID_FC = 0x24,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700660};
661
Jing Huangacdc79a2010-10-18 17:15:55 -0700662/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700663 * Maximum number of device address ranges mapped through different BAR(s)
664 */
665#define BFA_PCI_ACCESS_RANGES 1
666
667/*
668 * Port speed settings. Each specific speed is a bit field. Use multiple
669 * bits to specify speeds to be selected for auto-negotiation.
670 */
671enum bfa_port_speed {
672 BFA_PORT_SPEED_UNKNOWN = 0,
673 BFA_PORT_SPEED_1GBPS = 1,
674 BFA_PORT_SPEED_2GBPS = 2,
675 BFA_PORT_SPEED_4GBPS = 4,
676 BFA_PORT_SPEED_8GBPS = 8,
677 BFA_PORT_SPEED_10GBPS = 10,
678 BFA_PORT_SPEED_16GBPS = 16,
Krishna Gudipatia7141342011-06-24 20:23:19 -0700679 BFA_PORT_SPEED_AUTO = 0xf,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700680};
681#define bfa_port_speed_t enum bfa_port_speed
682
683enum {
684 BFA_BOOT_BOOTLUN_MAX = 4, /* maximum boot lun per IOC */
685 BFA_PREBOOT_BOOTLUN_MAX = 8, /* maximum preboot lun per IOC */
686};
687
688#define BOOT_CFG_REV1 1
689#define BOOT_CFG_VLAN 1
690
Jing Huangacdc79a2010-10-18 17:15:55 -0700691/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700692 * Boot options setting. Boot options setting determines from where
693 * to get the boot lun information
694 */
695enum bfa_boot_bootopt {
696 BFA_BOOT_AUTO_DISCOVER = 0, /* Boot from blun provided by fabric */
697 BFA_BOOT_STORED_BLUN = 1, /* Boot from bluns stored in flash */
698 BFA_BOOT_FIRST_LUN = 2, /* Boot from first discovered blun */
699 BFA_BOOT_PBC = 3, /* Boot from pbc configured blun */
700};
701
702#pragma pack(1)
Jing Huangacdc79a2010-10-18 17:15:55 -0700703/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700704 * Boot lun information.
705 */
706struct bfa_boot_bootlun_s {
Maggie Zhangf3148782010-12-09 19:11:39 -0800707 wwn_t pwwn; /* port wwn of target */
708 struct scsi_lun lun; /* 64-bit lun */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700709};
710#pragma pack()
711
Jing Huangacdc79a2010-10-18 17:15:55 -0700712/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700713 * BOOT boot configuraton
714 */
Krishna Gudipatia46bd302011-07-20 17:02:32 -0700715struct bfa_boot_cfg_s {
716 u8 version;
717 u8 rsvd1;
718 u16 chksum;
719 u8 enable; /* enable/disable SAN boot */
720 u8 speed; /* boot speed settings */
721 u8 topology; /* boot topology setting */
722 u8 bootopt; /* bfa_boot_bootopt_t */
723 u32 nbluns; /* number of boot luns */
724 u32 rsvd2;
725 struct bfa_boot_bootlun_s blun[BFA_BOOT_BOOTLUN_MAX];
726 struct bfa_boot_bootlun_s blun_disc[BFA_BOOT_BOOTLUN_MAX];
727};
728
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700729struct bfa_boot_pbc_s {
730 u8 enable; /* enable/disable SAN boot */
731 u8 speed; /* boot speed settings */
732 u8 topology; /* boot topology setting */
733 u8 rsvd1;
734 u32 nbluns; /* number of boot luns */
735 struct bfa_boot_bootlun_s pblun[BFA_PREBOOT_BOOTLUN_MAX];
736};
737
Krishna Gudipatia46bd302011-07-20 17:02:32 -0700738struct bfa_ethboot_cfg_s {
739 u8 version;
740 u8 rsvd1;
741 u16 chksum;
742 u8 enable; /* enable/disable Eth/PXE boot */
743 u8 rsvd2;
744 u16 vlan;
745};
746
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700747/*
748 * ASIC block configuration related structures
749 */
750#define BFA_ABLK_MAX_PORTS 2
751#define BFA_ABLK_MAX_PFS 16
752#define BFA_ABLK_MAX 2
753
754#pragma pack(1)
755enum bfa_mode_s {
756 BFA_MODE_HBA = 1,
757 BFA_MODE_CNA = 2,
758 BFA_MODE_NIC = 3
759};
760
761struct bfa_adapter_cfg_mode_s {
762 u16 max_pf;
763 u16 max_vf;
764 enum bfa_mode_s mode;
765};
766
767struct bfa_ablk_cfg_pf_s {
768 u16 pers;
769 u8 port_id;
770 u8 optrom;
771 u8 valid;
772 u8 sriov;
773 u8 max_vfs;
774 u8 rsvd[1];
775 u16 num_qpairs;
776 u16 num_vectors;
Krishna Gudipati1a1297c2012-09-21 17:26:50 -0700777 u16 bw_min;
778 u16 bw_max;
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700779};
780
781struct bfa_ablk_cfg_port_s {
782 u8 mode;
783 u8 type;
784 u8 max_pfs;
785 u8 rsvd[5];
786};
787
788struct bfa_ablk_cfg_inst_s {
789 u8 nports;
790 u8 max_pfs;
791 u8 rsvd[6];
792 struct bfa_ablk_cfg_pf_s pf_cfg[BFA_ABLK_MAX_PFS];
793 struct bfa_ablk_cfg_port_s port_cfg[BFA_ABLK_MAX_PORTS];
794};
795
796struct bfa_ablk_cfg_s {
797 struct bfa_ablk_cfg_inst_s inst[BFA_ABLK_MAX];
798};
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700799
800
801/*
802 * SFP module specific
803 */
804#define SFP_DIAGMON_SIZE 10 /* num bytes of diag monitor data */
805
Krishna Gudipati7826f302011-07-20 16:59:13 -0700806/* SFP state change notification event */
807#define BFA_SFP_SCN_REMOVED 0
808#define BFA_SFP_SCN_INSERTED 1
809#define BFA_SFP_SCN_POM 2
810#define BFA_SFP_SCN_FAILED 3
811#define BFA_SFP_SCN_UNSUPPORT 4
812#define BFA_SFP_SCN_VALID 5
813
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700814enum bfa_defs_sfp_media_e {
815 BFA_SFP_MEDIA_UNKNOWN = 0x00,
816 BFA_SFP_MEDIA_CU = 0x01,
817 BFA_SFP_MEDIA_LW = 0x02,
818 BFA_SFP_MEDIA_SW = 0x03,
819 BFA_SFP_MEDIA_EL = 0x04,
820 BFA_SFP_MEDIA_UNSUPPORT = 0x05,
821};
822
823/*
824 * values for xmtr_tech above
825 */
826enum {
827 SFP_XMTR_TECH_CU = (1 << 0), /* copper FC-BaseT */
828 SFP_XMTR_TECH_CP = (1 << 1), /* copper passive */
829 SFP_XMTR_TECH_CA = (1 << 2), /* copper active */
830 SFP_XMTR_TECH_LL = (1 << 3), /* longwave laser */
831 SFP_XMTR_TECH_SL = (1 << 4), /* shortwave laser w/ OFC */
832 SFP_XMTR_TECH_SN = (1 << 5), /* shortwave laser w/o OFC */
833 SFP_XMTR_TECH_EL_INTRA = (1 << 6), /* elec intra-enclosure */
834 SFP_XMTR_TECH_EL_INTER = (1 << 7), /* elec inter-enclosure */
835 SFP_XMTR_TECH_LC = (1 << 8), /* longwave laser */
836 SFP_XMTR_TECH_SA = (1 << 9)
837};
838
839/*
840 * Serial ID: Data Fields -- Address A0h
841 * Basic ID field total 64 bytes
842 */
843struct sfp_srlid_base_s {
844 u8 id; /* 00: Identifier */
845 u8 extid; /* 01: Extended Identifier */
846 u8 connector; /* 02: Connector */
847 u8 xcvr[8]; /* 03-10: Transceiver */
848 u8 encoding; /* 11: Encoding */
849 u8 br_norm; /* 12: BR, Nominal */
850 u8 rate_id; /* 13: Rate Identifier */
851 u8 len_km; /* 14: Length single mode km */
852 u8 len_100m; /* 15: Length single mode 100m */
853 u8 len_om2; /* 16: Length om2 fiber 10m */
854 u8 len_om1; /* 17: Length om1 fiber 10m */
855 u8 len_cu; /* 18: Length copper 1m */
856 u8 len_om3; /* 19: Length om3 fiber 10m */
857 u8 vendor_name[16];/* 20-35 */
858 u8 unalloc1;
859 u8 vendor_oui[3]; /* 37-39 */
860 u8 vendor_pn[16]; /* 40-55 */
861 u8 vendor_rev[4]; /* 56-59 */
862 u8 wavelen[2]; /* 60-61 */
863 u8 unalloc2;
864 u8 cc_base; /* 63: check code for base id field */
865};
866
867/*
868 * Serial ID: Data Fields -- Address A0h
869 * Extended id field total 32 bytes
870 */
871struct sfp_srlid_ext_s {
872 u8 options[2];
873 u8 br_max;
874 u8 br_min;
875 u8 vendor_sn[16];
876 u8 date_code[8];
877 u8 diag_mon_type; /* 92: Diagnostic Monitoring type */
878 u8 en_options;
879 u8 sff_8472;
880 u8 cc_ext;
881};
882
883/*
884 * Diagnostic: Data Fields -- Address A2h
885 * Diagnostic and control/status base field total 96 bytes
886 */
887struct sfp_diag_base_s {
888 /*
889 * Alarm and warning Thresholds 40 bytes
890 */
891 u8 temp_high_alarm[2]; /* 00-01 */
892 u8 temp_low_alarm[2]; /* 02-03 */
893 u8 temp_high_warning[2]; /* 04-05 */
894 u8 temp_low_warning[2]; /* 06-07 */
895
896 u8 volt_high_alarm[2]; /* 08-09 */
897 u8 volt_low_alarm[2]; /* 10-11 */
898 u8 volt_high_warning[2]; /* 12-13 */
899 u8 volt_low_warning[2]; /* 14-15 */
900
901 u8 bias_high_alarm[2]; /* 16-17 */
902 u8 bias_low_alarm[2]; /* 18-19 */
903 u8 bias_high_warning[2]; /* 20-21 */
904 u8 bias_low_warning[2]; /* 22-23 */
905
906 u8 tx_pwr_high_alarm[2]; /* 24-25 */
907 u8 tx_pwr_low_alarm[2]; /* 26-27 */
908 u8 tx_pwr_high_warning[2]; /* 28-29 */
909 u8 tx_pwr_low_warning[2]; /* 30-31 */
910
911 u8 rx_pwr_high_alarm[2]; /* 32-33 */
912 u8 rx_pwr_low_alarm[2]; /* 34-35 */
913 u8 rx_pwr_high_warning[2]; /* 36-37 */
914 u8 rx_pwr_low_warning[2]; /* 38-39 */
915
916 u8 unallocate_1[16];
917
918 /*
919 * ext_cal_const[36]
920 */
921 u8 rx_pwr[20];
922 u8 tx_i[4];
923 u8 tx_pwr[4];
924 u8 temp[4];
925 u8 volt[4];
926 u8 unallocate_2[3];
927 u8 cc_dmi;
928};
929
930/*
931 * Diagnostic: Data Fields -- Address A2h
932 * Diagnostic and control/status extended field total 24 bytes
933 */
934struct sfp_diag_ext_s {
935 u8 diag[SFP_DIAGMON_SIZE];
936 u8 unalloc1[4];
937 u8 status_ctl;
938 u8 rsvd;
939 u8 alarm_flags[2];
940 u8 unalloc2[2];
941 u8 warning_flags[2];
942 u8 ext_status_ctl[2];
943};
944
Krishna Gudipati4a49b042012-09-21 17:27:01 -0700945/*
946 * Diagnostic: Data Fields -- Address A2h
947 * General Use Fields: User Writable Table - Features's Control Registers
948 * Total 32 bytes
949 */
950struct sfp_usr_eeprom_s {
951 u8 rsvd1[2]; /* 128-129 */
952 u8 ewrap; /* 130 */
953 u8 rsvd2[2]; /* */
954 u8 owrap; /* 133 */
955 u8 rsvd3[2]; /* */
956 u8 prbs; /* 136: PRBS 7 generator */
957 u8 rsvd4[2]; /* */
958 u8 tx_eqz_16; /* 139: TX Equalizer (16xFC) */
959 u8 tx_eqz_8; /* 140: TX Equalizer (8xFC) */
960 u8 rsvd5[2]; /* */
961 u8 rx_emp_16; /* 143: RX Emphasis (16xFC) */
962 u8 rx_emp_8; /* 144: RX Emphasis (8xFC) */
963 u8 rsvd6[2]; /* */
964 u8 tx_eye_adj; /* 147: TX eye Threshold Adjust */
965 u8 rsvd7[3]; /* */
966 u8 tx_eye_qctl; /* 151: TX eye Quality Control */
967 u8 tx_eye_qres; /* 152: TX eye Quality Result */
968 u8 rsvd8[2]; /* */
969 u8 poh[3]; /* 155-157: Power On Hours */
970 u8 rsvd9[2]; /* */
971};
972
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700973struct sfp_mem_s {
974 struct sfp_srlid_base_s srlid_base;
975 struct sfp_srlid_ext_s srlid_ext;
976 struct sfp_diag_base_s diag_base;
977 struct sfp_diag_ext_s diag_ext;
Krishna Gudipati4a49b042012-09-21 17:27:01 -0700978 struct sfp_usr_eeprom_s usr_eeprom;
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700979};
980
981/*
982 * transceiver codes (SFF-8472 Rev 10.2 Table 3.5)
983 */
984union sfp_xcvr_e10g_code_u {
985 u8 b;
986 struct {
Jing Huang98cdfb42011-11-16 12:29:26 -0800987#ifdef __BIG_ENDIAN
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700988 u8 e10g_unall:1; /* 10G Ethernet compliance */
989 u8 e10g_lrm:1;
990 u8 e10g_lr:1;
991 u8 e10g_sr:1;
992 u8 ib_sx:1; /* Infiniband compliance */
993 u8 ib_lx:1;
994 u8 ib_cu_a:1;
995 u8 ib_cu_p:1;
996#else
997 u8 ib_cu_p:1;
998 u8 ib_cu_a:1;
999 u8 ib_lx:1;
1000 u8 ib_sx:1; /* Infiniband compliance */
1001 u8 e10g_sr:1;
1002 u8 e10g_lr:1;
1003 u8 e10g_lrm:1;
1004 u8 e10g_unall:1; /* 10G Ethernet compliance */
1005#endif
1006 } r;
1007};
1008
1009union sfp_xcvr_so1_code_u {
1010 u8 b;
1011 struct {
1012 u8 escon:2; /* ESCON compliance code */
1013 u8 oc192_reach:1; /* SONET compliance code */
1014 u8 so_reach:2;
1015 u8 oc48_reach:3;
1016 } r;
1017};
1018
1019union sfp_xcvr_so2_code_u {
1020 u8 b;
1021 struct {
1022 u8 reserved:1;
1023 u8 oc12_reach:3; /* OC12 reach */
1024 u8 reserved1:1;
1025 u8 oc3_reach:3; /* OC3 reach */
1026 } r;
1027};
1028
1029union sfp_xcvr_eth_code_u {
1030 u8 b;
1031 struct {
1032 u8 base_px:1;
1033 u8 base_bx10:1;
1034 u8 e100base_fx:1;
1035 u8 e100base_lx:1;
1036 u8 e1000base_t:1;
1037 u8 e1000base_cx:1;
1038 u8 e1000base_lx:1;
1039 u8 e1000base_sx:1;
1040 } r;
1041};
1042
1043struct sfp_xcvr_fc1_code_s {
1044 u8 link_len:5; /* FC link length */
1045 u8 xmtr_tech2:3;
1046 u8 xmtr_tech1:7; /* FC transmitter technology */
1047 u8 reserved1:1;
1048};
1049
1050union sfp_xcvr_fc2_code_u {
1051 u8 b;
1052 struct {
1053 u8 tw_media:1; /* twin axial pair (tw) */
1054 u8 tp_media:1; /* shielded twisted pair (sp) */
1055 u8 mi_media:1; /* miniature coax (mi) */
1056 u8 tv_media:1; /* video coax (tv) */
1057 u8 m6_media:1; /* multimode, 62.5m (m6) */
1058 u8 m5_media:1; /* multimode, 50m (m5) */
1059 u8 reserved:1;
1060 u8 sm_media:1; /* single mode (sm) */
1061 } r;
1062};
1063
1064union sfp_xcvr_fc3_code_u {
1065 u8 b;
1066 struct {
Jing Huang98cdfb42011-11-16 12:29:26 -08001067#ifdef __BIG_ENDIAN
Krishna Gudipati51e569a2011-06-24 20:26:25 -07001068 u8 rsv4:1;
1069 u8 mb800:1; /* 800 Mbytes/sec */
1070 u8 mb1600:1; /* 1600 Mbytes/sec */
1071 u8 mb400:1; /* 400 Mbytes/sec */
1072 u8 rsv2:1;
1073 u8 mb200:1; /* 200 Mbytes/sec */
1074 u8 rsv1:1;
1075 u8 mb100:1; /* 100 Mbytes/sec */
1076#else
1077 u8 mb100:1; /* 100 Mbytes/sec */
1078 u8 rsv1:1;
1079 u8 mb200:1; /* 200 Mbytes/sec */
1080 u8 rsv2:1;
1081 u8 mb400:1; /* 400 Mbytes/sec */
1082 u8 mb1600:1; /* 1600 Mbytes/sec */
1083 u8 mb800:1; /* 800 Mbytes/sec */
1084 u8 rsv4:1;
1085#endif
1086 } r;
1087};
1088
1089struct sfp_xcvr_s {
1090 union sfp_xcvr_e10g_code_u e10g;
1091 union sfp_xcvr_so1_code_u so1;
1092 union sfp_xcvr_so2_code_u so2;
1093 union sfp_xcvr_eth_code_u eth;
1094 struct sfp_xcvr_fc1_code_s fc1;
1095 union sfp_xcvr_fc2_code_u fc2;
1096 union sfp_xcvr_fc3_code_u fc3;
1097};
1098
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -07001099/*
1100 * Flash module specific
1101 */
1102#define BFA_FLASH_PART_ENTRY_SIZE 32 /* partition entry size */
1103#define BFA_FLASH_PART_MAX 32 /* maximal # of partitions */
1104
1105enum bfa_flash_part_type {
1106 BFA_FLASH_PART_OPTROM = 1, /* option rom partition */
1107 BFA_FLASH_PART_FWIMG = 2, /* firmware image partition */
1108 BFA_FLASH_PART_FWCFG = 3, /* firmware tuneable config */
1109 BFA_FLASH_PART_DRV = 4, /* IOC driver config */
1110 BFA_FLASH_PART_BOOT = 5, /* boot config */
1111 BFA_FLASH_PART_ASIC = 6, /* asic bootstrap configuration */
1112 BFA_FLASH_PART_MFG = 7, /* manufacturing block partition */
1113 BFA_FLASH_PART_OPTROM2 = 8, /* 2nd option rom partition */
1114 BFA_FLASH_PART_VPD = 9, /* vpd data of OEM info */
1115 BFA_FLASH_PART_PBC = 10, /* pre-boot config */
1116 BFA_FLASH_PART_BOOTOVL = 11, /* boot overlay partition */
1117 BFA_FLASH_PART_LOG = 12, /* firmware log partition */
1118 BFA_FLASH_PART_PXECFG = 13, /* pxe boot config partition */
1119 BFA_FLASH_PART_PXEOVL = 14, /* pxe boot overlay partition */
1120 BFA_FLASH_PART_PORTCFG = 15, /* port cfg partition */
1121 BFA_FLASH_PART_ASICBK = 16, /* asic backup partition */
1122};
1123
1124/*
1125 * flash partition attributes
1126 */
1127struct bfa_flash_part_attr_s {
1128 u32 part_type; /* partition type */
1129 u32 part_instance; /* partition instance */
1130 u32 part_off; /* partition offset */
1131 u32 part_size; /* partition size */
1132 u32 part_len; /* partition content length */
1133 u32 part_status; /* partition status */
1134 char rsv[BFA_FLASH_PART_ENTRY_SIZE - 24];
1135};
1136
1137/*
1138 * flash attributes
1139 */
1140struct bfa_flash_attr_s {
1141 u32 status; /* flash overall status */
1142 u32 npart; /* num of partitions */
1143 struct bfa_flash_part_attr_s part[BFA_FLASH_PART_MAX];
1144};
1145
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001146/*
1147 * DIAG module specific
1148 */
1149#define LB_PATTERN_DEFAULT 0xB5B5B5B5
1150#define QTEST_CNT_DEFAULT 10
1151#define QTEST_PAT_DEFAULT LB_PATTERN_DEFAULT
Vijaya Mohan Guvva1a898a72013-05-13 02:33:21 -07001152#define DPORT_ENABLE_LOOPCNT_DEFAULT (1024 * 1024)
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001153
1154struct bfa_diag_memtest_s {
1155 u8 algo;
1156 u8 rsvd[7];
1157};
1158
1159struct bfa_diag_memtest_result {
1160 u32 status;
1161 u32 addr;
1162 u32 exp; /* expect value read from reg */
1163 u32 act; /* actually value read */
1164 u32 err_status; /* error status reg */
1165 u32 err_status1; /* extra error info reg */
1166 u32 err_addr; /* error address reg */
1167 u8 algo;
1168 u8 rsv[3];
1169};
1170
1171struct bfa_diag_loopback_result_s {
1172 u32 numtxmfrm; /* no. of transmit frame */
1173 u32 numosffrm; /* no. of outstanding frame */
1174 u32 numrcvfrm; /* no. of received good frame */
1175 u32 badfrminf; /* mis-match info */
1176 u32 badfrmnum; /* mis-match fram number */
1177 u8 status; /* loopback test result */
1178 u8 rsvd[3];
1179};
1180
Vijaya Mohan Guvva1a898a72013-05-13 02:33:21 -07001181enum bfa_diag_dport_test_status {
1182 DPORT_TEST_ST_IDLE = 0, /* the test has not started yet. */
1183 DPORT_TEST_ST_FINAL = 1, /* the test done successfully */
1184 DPORT_TEST_ST_SKIP = 2, /* the test skipped */
1185 DPORT_TEST_ST_FAIL = 3, /* the test failed */
1186 DPORT_TEST_ST_INPRG = 4, /* the testing is in progress */
1187 DPORT_TEST_ST_RESPONDER = 5, /* test triggered from remote port */
1188 DPORT_TEST_ST_STOPPED = 6, /* the test stopped by user. */
1189 DPORT_TEST_ST_MAX
1190};
1191
1192enum bfa_diag_dport_test_type {
1193 DPORT_TEST_ELOOP = 0,
1194 DPORT_TEST_OLOOP = 1,
1195 DPORT_TEST_ROLOOP = 2,
1196 DPORT_TEST_LINK = 3,
1197 DPORT_TEST_MAX
1198};
1199
1200enum bfa_diag_dport_test_opmode {
1201 BFA_DPORT_OPMODE_AUTO = 0,
1202 BFA_DPORT_OPMODE_MANU = 1,
1203};
1204
1205struct bfa_diag_dport_subtest_result_s {
1206 u8 status; /* bfa_diag_dport_test_status */
1207 u8 rsvd[7]; /* 64bit align */
1208 u64 start_time; /* timestamp */
1209};
1210
1211struct bfa_diag_dport_result_s {
1212 wwn_t rp_pwwn; /* switch port wwn */
1213 wwn_t rp_nwwn; /* switch node wwn */
1214 u64 start_time; /* user/sw start time */
1215 u64 end_time; /* timestamp */
1216 u8 status; /* bfa_diag_dport_test_status */
1217 u8 mode; /* bfa_diag_dport_test_opmode */
1218 u8 rsvd; /* 64bit align */
1219 u8 speed; /* link speed for buf_reqd */
1220 u16 buffer_required;
1221 u16 frmsz; /* frame size for buf_reqd */
1222 u32 lpcnt; /* Frame count */
1223 u32 pat; /* Pattern */
1224 u32 roundtrip_latency; /* in nano sec */
1225 u32 est_cable_distance; /* in meter */
1226 struct bfa_diag_dport_subtest_result_s subtest[DPORT_TEST_MAX];
1227};
1228
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001229struct bfa_diag_ledtest_s {
1230 u32 cmd; /* bfa_led_op_t */
1231 u32 color; /* bfa_led_color_t */
1232 u16 freq; /* no. of blinks every 10 secs */
1233 u8 led; /* bitmap of LEDs to be tested */
1234 u8 rsvd[5];
1235};
1236
1237struct bfa_diag_loopback_s {
1238 u32 loopcnt;
1239 u32 pattern;
1240 u8 lb_mode; /* bfa_port_opmode_t */
1241 u8 speed; /* bfa_port_speed_t */
1242 u8 rsvd[2];
1243};
1244
Krishna Gudipati3350d982011-06-24 20:28:37 -07001245/*
1246 * PHY module specific
1247 */
1248enum bfa_phy_status_e {
1249 BFA_PHY_STATUS_GOOD = 0, /* phy is good */
1250 BFA_PHY_STATUS_NOT_PRESENT = 1, /* phy does not exist */
1251 BFA_PHY_STATUS_BAD = 2, /* phy is bad */
1252};
1253
1254/*
1255 * phy attributes for phy query
1256 */
1257struct bfa_phy_attr_s {
1258 u32 status; /* phy present/absent status */
1259 u32 length; /* firmware length */
1260 u32 fw_ver; /* firmware version */
1261 u32 an_status; /* AN status */
1262 u32 pma_pmd_status; /* PMA/PMD link status */
1263 u32 pma_pmd_signal; /* PMA/PMD signal detect */
1264 u32 pcs_status; /* PCS link status */
1265};
1266
1267/*
1268 * phy stats
1269 */
1270struct bfa_phy_stats_s {
1271 u32 status; /* phy stats status */
1272 u32 link_breaks; /* Num of link breaks after linkup */
1273 u32 pma_pmd_fault; /* NPMA/PMD fault */
1274 u32 pcs_fault; /* PCS fault */
1275 u32 speed_neg; /* Num of speed negotiation */
1276 u32 tx_eq_training; /* Num of TX EQ training */
1277 u32 tx_eq_timeout; /* Num of TX EQ timeout */
1278 u32 crc_error; /* Num of CRC errors */
1279};
1280
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -07001281#pragma pack()
1282
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001283#endif /* __BFA_DEFS_H__ */