blob: bdd1bae971ef2ecb1128cd54503ecd18145c0038 [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 */
48 BFA_MFG_TYPE_INVALID = 0, /* Invalid card type */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070049};
50
51#pragma pack(1)
52
Jing Huangacdc79a2010-10-18 17:15:55 -070053/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070054 * Check if Mezz card
55 */
56#define bfa_mfg_is_mezz(type) (( \
57 (type) == BFA_MFG_TYPE_JAYHAWK || \
58 (type) == BFA_MFG_TYPE_WANCHESE || \
59 (type) == BFA_MFG_TYPE_ASTRA || \
60 (type) == BFA_MFG_TYPE_LIGHTNING_P0 || \
Krishna Gudipati8b070b42011-06-13 15:52:40 -070061 (type) == BFA_MFG_TYPE_LIGHTNING || \
62 (type) == BFA_MFG_TYPE_CHINOOK))
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070063
Jing Huangacdc79a2010-10-18 17:15:55 -070064/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070065 * Check if the card having old wwn/mac handling
66 */
67#define bfa_mfg_is_old_wwn_mac_model(type) (( \
68 (type) == BFA_MFG_TYPE_FC8P2 || \
69 (type) == BFA_MFG_TYPE_FC8P1 || \
70 (type) == BFA_MFG_TYPE_FC4P2 || \
71 (type) == BFA_MFG_TYPE_FC4P1 || \
72 (type) == BFA_MFG_TYPE_CNA10P2 || \
73 (type) == BFA_MFG_TYPE_CNA10P1 || \
74 (type) == BFA_MFG_TYPE_JAYHAWK || \
75 (type) == BFA_MFG_TYPE_WANCHESE))
76
77#define bfa_mfg_increment_wwn_mac(m, i) \
78do { \
79 u32 t = ((u32)(m)[0] << 16) | ((u32)(m)[1] << 8) | \
80 (u32)(m)[2]; \
81 t += (i); \
82 (m)[0] = (t >> 16) & 0xFF; \
83 (m)[1] = (t >> 8) & 0xFF; \
84 (m)[2] = t & 0xFF; \
85} while (0)
86
Jing Huangacdc79a2010-10-18 17:15:55 -070087/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070088 * VPD data length
89 */
90#define BFA_MFG_VPD_LEN 512
91
Jing Huangacdc79a2010-10-18 17:15:55 -070092/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070093 * VPD vendor tag
94 */
95enum {
96 BFA_MFG_VPD_UNKNOWN = 0, /* vendor unknown */
97 BFA_MFG_VPD_IBM = 1, /* vendor IBM */
98 BFA_MFG_VPD_HP = 2, /* vendor HP */
99 BFA_MFG_VPD_DELL = 3, /* vendor DELL */
100 BFA_MFG_VPD_PCI_IBM = 0x08, /* PCI VPD IBM */
101 BFA_MFG_VPD_PCI_HP = 0x10, /* PCI VPD HP */
102 BFA_MFG_VPD_PCI_DELL = 0x20, /* PCI VPD DELL */
103 BFA_MFG_VPD_PCI_BRCD = 0xf8, /* PCI VPD Brocade */
104};
105
Jing Huangacdc79a2010-10-18 17:15:55 -0700106/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700107 * All numerical fields are in big-endian format.
108 */
109struct bfa_mfg_vpd_s {
110 u8 version; /* vpd data version */
111 u8 vpd_sig[3]; /* characters 'V', 'P', 'D' */
112 u8 chksum; /* u8 checksum */
113 u8 vendor; /* vendor */
114 u8 len; /* vpd data length excluding header */
115 u8 rsv;
116 u8 data[BFA_MFG_VPD_LEN]; /* vpd data */
117};
118
119#pragma pack()
120
Jing Huangacdc79a2010-10-18 17:15:55 -0700121/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700122 * Status return values
123 */
124enum bfa_status {
125 BFA_STATUS_OK = 0, /* Success */
126 BFA_STATUS_FAILED = 1, /* Operation failed */
127 BFA_STATUS_EINVAL = 2, /* Invalid params Check input
128 * parameters */
129 BFA_STATUS_ENOMEM = 3, /* Out of resources */
130 BFA_STATUS_ETIMER = 5, /* Timer expired - Retry, if persists,
131 * contact support */
132 BFA_STATUS_EPROTOCOL = 6, /* Protocol error */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700133 BFA_STATUS_SFP_UNSUPP = 10, /* Unsupported SFP - Replace SFP */
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700134 BFA_STATUS_UNKNOWN_VFID = 11, /* VF_ID not found */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700135 BFA_STATUS_DATACORRUPTED = 12, /* Diag returned data corrupted */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700136 BFA_STATUS_DEVBUSY = 13, /* Device busy - Retry operation */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700137 BFA_STATUS_HDMA_FAILED = 16, /* Host dma failed contact support */
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700138 BFA_STATUS_FLASH_BAD_LEN = 17, /* Flash bad length */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700139 BFA_STATUS_UNKNOWN_LWWN = 18, /* LPORT PWWN not found */
140 BFA_STATUS_UNKNOWN_RWWN = 19, /* RPORT PWWN not found */
141 BFA_STATUS_VPORT_EXISTS = 21, /* VPORT already exists */
142 BFA_STATUS_VPORT_MAX = 22, /* Reached max VPORT supported limit */
143 BFA_STATUS_UNSUPP_SPEED = 23, /* Invalid Speed Check speed setting */
144 BFA_STATUS_INVLD_DFSZ = 24, /* Invalid Max data field size */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700145 BFA_STATUS_CMD_NOTSUPP = 26, /* Command/API not supported */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700146 BFA_STATUS_FABRIC_RJT = 29, /* Reject from attached fabric */
Krishna Gudipatif2ee7602011-07-20 17:01:34 -0700147 BFA_STATUS_UNKNOWN_VWWN = 30, /* VPORT PWWN not found */
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700148 BFA_STATUS_PORT_OFFLINE = 34, /* Port is not online */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700149 BFA_STATUS_VPORT_WWN_BP = 46, /* WWN is same as base port's WWN */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700150 BFA_STATUS_PORT_NOT_DISABLED = 47, /* Port not disabled disable port */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700151 BFA_STATUS_NO_FCPIM_NEXUS = 52, /* No FCP Nexus exists with the rport */
152 BFA_STATUS_IOC_FAILURE = 56, /* IOC failure - Retry, if persists
153 * contact support */
154 BFA_STATUS_INVALID_WWN = 57, /* Invalid WWN */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700155 BFA_STATUS_ADAPTER_ENABLED = 60, /* Adapter is not disabled */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700156 BFA_STATUS_IOC_NON_OP = 61, /* IOC is not operational */
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700157 BFA_STATUS_VERSION_FAIL = 70, /* Application/Driver version mismatch */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700158 BFA_STATUS_DIAG_BUSY = 71, /* diag busy */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700159 BFA_STATUS_BEACON_ON = 72, /* Port Beacon already on */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700160 BFA_STATUS_ENOFSAVE = 78, /* No saved firmware trace */
161 BFA_STATUS_IOC_DISABLED = 82, /* IOC is already disabled */
Krishna Gudipatibc0e2c22012-09-21 17:23:59 -0700162 BFA_STATUS_ERROR_TRL_ENABLED = 87, /* TRL is enabled */
163 BFA_STATUS_ERROR_QOS_ENABLED = 88, /* QoS is enabled */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700164 BFA_STATUS_NO_SFP_DEV = 89, /* No SFP device check or replace SFP */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700165 BFA_STATUS_MEMTEST_FAILED = 90, /* Memory test failed contact support */
166 BFA_STATUS_LEDTEST_OP = 109, /* LED test is operating */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700167 BFA_STATUS_INVALID_MAC = 134, /* Invalid MAC address */
Krishna Gudipatie3535462012-09-21 17:26:07 -0700168 BFA_STATUS_CMD_NOTSUPP_CNA = 146, /* Command not supported for CNA */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700169 BFA_STATUS_PBC = 154, /* Operation not allowed for pre-boot
170 * configuration */
Krishna Gudipati7826f302011-07-20 16:59:13 -0700171 BFA_STATUS_BAD_FWCFG = 156, /* Bad firmware configuration */
172 BFA_STATUS_INVALID_VENDOR = 158, /* Invalid switch vendor */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700173 BFA_STATUS_SFP_NOT_READY = 159, /* SFP info is not ready. Retry */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700174 BFA_STATUS_TRUNK_ENABLED = 164, /* Trunk is already enabled on
175 * this adapter */
176 BFA_STATUS_TRUNK_DISABLED = 165, /* Trunking is disabled on
177 * the adapter */
178 BFA_STATUS_IOPROFILE_OFF = 175, /* IO profile OFF */
Krishna Gudipati3350d982011-06-24 20:28:37 -0700179 BFA_STATUS_PHY_NOT_PRESENT = 183, /* PHY module not present */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700180 BFA_STATUS_FEATURE_NOT_SUPPORTED = 192, /* Feature not supported */
Krishna Gudipati4c5d22b2011-07-20 17:04:24 -0700181 BFA_STATUS_ENTRY_EXISTS = 193, /* Entry already exists */
182 BFA_STATUS_ENTRY_NOT_EXISTS = 194, /* Entry does not exist */
183 BFA_STATUS_NO_CHANGE = 195, /* Feature already in that state */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700184 BFA_STATUS_FAA_ENABLED = 197, /* FAA is already enabled */
185 BFA_STATUS_FAA_DISABLED = 198, /* FAA is already disabled */
186 BFA_STATUS_FAA_ACQUIRED = 199, /* FAA is already acquired */
187 BFA_STATUS_FAA_ACQ_ADDR = 200, /* Acquiring addr */
Vijaya Mohan Guvvabbe37a62013-05-13 02:33:19 -0700188 BFA_STATUS_BBCR_FC_ONLY = 201, /*!< BBCredit Recovery is supported for *
189 * FC mode only */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700190 BFA_STATUS_ERROR_TRUNK_ENABLED = 203, /* Trunk enabled on adapter */
Krishna Gudipati4c5d22b2011-07-20 17:04:24 -0700191 BFA_STATUS_MAX_ENTRY_REACHED = 212, /* MAX entry reached */
Krishna Gudipatibc0e2c22012-09-21 17:23:59 -0700192 BFA_STATUS_TOPOLOGY_LOOP = 230, /* Topology is set to Loop */
193 BFA_STATUS_LOOP_UNSUPP_MEZZ = 231, /* Loop topology is not supported
194 * on mezz cards */
Krishna Gudipati1a1297c2012-09-21 17:26:50 -0700195 BFA_STATUS_INVALID_BW = 233, /* Invalid bandwidth value */
Krishna Gudipati6894f012012-09-21 17:26:31 -0700196 BFA_STATUS_QOS_BW_INVALID = 234, /* Invalid QOS bandwidth
197 * configuration */
Krishna Gudipatie3535462012-09-21 17:26:07 -0700198 BFA_STATUS_DPORT_ENABLED = 235, /* D-port mode is already enabled */
199 BFA_STATUS_DPORT_DISABLED = 236, /* D-port mode is already disabled */
200 BFA_STATUS_CMD_NOTSUPP_MEZZ = 239, /* Cmd not supported for MEZZ card */
Krishna Gudipatie6826c92012-09-21 17:27:14 -0700201 BFA_STATUS_FRU_NOT_PRESENT = 240, /* fru module not present */
Krishna Gudipatie3535462012-09-21 17:26:07 -0700202 BFA_STATUS_DPORT_ERR = 245, /* D-port mode is enabled */
Vijaya Mohan Guvvabbe37a62013-05-13 02:33:19 -0700203 BFA_STATUS_ERR_BBCR_SPEED_UNSUPPORT = 258, /*!< BB credit recovery is
204 * supported at max port speed alone */
205 BFA_STATUS_ERROR_BBCR_ENABLED = 259, /*!< BB credit recovery
206 * is enabled */
207 BFA_STATUS_INVALID_BBSCN = 260, /*!< Invalid BBSCN value.
208 * Valid range is [1-15] */
209 BFA_STATUS_BBCR_CFG_NO_CHANGE = 265, /*!< BBCR is operational.
210 * Disable BBCR and try this operation again. */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700211 BFA_STATUS_MAX_VAL /* Unknown error code */
212};
213#define bfa_status_t enum bfa_status
214
215enum bfa_eproto_status {
216 BFA_EPROTO_BAD_ACCEPT = 0,
217 BFA_EPROTO_UNKNOWN_RSP = 1
218};
219#define bfa_eproto_status_t enum bfa_eproto_status
220
221enum bfa_boolean {
222 BFA_FALSE = 0,
223 BFA_TRUE = 1
224};
225#define bfa_boolean_t enum bfa_boolean
226
227#define BFA_STRING_32 32
228#define BFA_VERSION_LEN 64
229
Jing Huangacdc79a2010-10-18 17:15:55 -0700230/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700231 * ---------------------- adapter definitions ------------
232 */
233
Jing Huangacdc79a2010-10-18 17:15:55 -0700234/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700235 * BFA adapter level attributes.
236 */
237enum {
238 BFA_ADAPTER_SERIAL_NUM_LEN = STRSZ(BFA_MFG_SERIALNUM_SIZE),
239 /*
240 *!< adapter serial num length
241 */
242 BFA_ADAPTER_MODEL_NAME_LEN = 16, /* model name length */
243 BFA_ADAPTER_MODEL_DESCR_LEN = 128, /* model description length */
244 BFA_ADAPTER_MFG_NAME_LEN = 8, /* manufacturer name length */
245 BFA_ADAPTER_SYM_NAME_LEN = 64, /* adapter symbolic name length */
246 BFA_ADAPTER_OS_TYPE_LEN = 64, /* adapter os type length */
247};
248
249struct bfa_adapter_attr_s {
250 char manufacturer[BFA_ADAPTER_MFG_NAME_LEN];
251 char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
252 u32 card_type;
253 char model[BFA_ADAPTER_MODEL_NAME_LEN];
254 char model_descr[BFA_ADAPTER_MODEL_DESCR_LEN];
255 wwn_t pwwn;
256 char node_symname[FC_SYMNAME_MAX];
257 char hw_ver[BFA_VERSION_LEN];
258 char fw_ver[BFA_VERSION_LEN];
259 char optrom_ver[BFA_VERSION_LEN];
260 char os_type[BFA_ADAPTER_OS_TYPE_LEN];
261 struct bfa_mfg_vpd_s vpd;
262 struct mac_s mac;
263
264 u8 nports;
265 u8 max_speed;
266 u8 prototype;
267 char asic_rev;
268
269 u8 pcie_gen;
270 u8 pcie_lanes_orig;
271 u8 pcie_lanes;
272 u8 cna_capable;
273
274 u8 is_mezz;
275 u8 trunk_capable;
Krishna Gudipatiea5d7c92012-09-21 17:25:02 -0700276 u8 mfg_day; /* manufacturing day */
277 u8 mfg_month; /* manufacturing month */
278 u16 mfg_year; /* manufacturing year */
279 u16 rsvd;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700280};
281
Jing Huangacdc79a2010-10-18 17:15:55 -0700282/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700283 * ---------------------- IOC definitions ------------
284 */
285
286enum {
287 BFA_IOC_DRIVER_LEN = 16,
288 BFA_IOC_CHIP_REV_LEN = 8,
289};
290
Jing Huangacdc79a2010-10-18 17:15:55 -0700291/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700292 * Driver and firmware versions.
293 */
294struct bfa_ioc_driver_attr_s {
295 char driver[BFA_IOC_DRIVER_LEN]; /* driver name */
296 char driver_ver[BFA_VERSION_LEN]; /* driver version */
297 char fw_ver[BFA_VERSION_LEN]; /* firmware version */
298 char bios_ver[BFA_VERSION_LEN]; /* bios version */
299 char efi_ver[BFA_VERSION_LEN]; /* EFI version */
300 char ob_ver[BFA_VERSION_LEN]; /* openboot version */
301};
302
Jing Huangacdc79a2010-10-18 17:15:55 -0700303/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700304 * IOC PCI device attributes
305 */
306struct bfa_ioc_pci_attr_s {
307 u16 vendor_id; /* PCI vendor ID */
308 u16 device_id; /* PCI device ID */
309 u16 ssid; /* subsystem ID */
310 u16 ssvid; /* subsystem vendor ID */
311 u32 pcifn; /* PCI device function */
312 u32 rsvd; /* padding */
313 char chip_rev[BFA_IOC_CHIP_REV_LEN]; /* chip revision */
314};
315
Jing Huangacdc79a2010-10-18 17:15:55 -0700316/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700317 * IOC states
318 */
319enum bfa_ioc_state {
320 BFA_IOC_UNINIT = 1, /* IOC is in uninit state */
321 BFA_IOC_RESET = 2, /* IOC is in reset state */
322 BFA_IOC_SEMWAIT = 3, /* Waiting for IOC h/w semaphore */
323 BFA_IOC_HWINIT = 4, /* IOC h/w is being initialized */
324 BFA_IOC_GETATTR = 5, /* IOC is being configured */
325 BFA_IOC_OPERATIONAL = 6, /* IOC is operational */
326 BFA_IOC_INITFAIL = 7, /* IOC hardware failure */
327 BFA_IOC_FAIL = 8, /* IOC heart-beat failure */
328 BFA_IOC_DISABLING = 9, /* IOC is being disabled */
329 BFA_IOC_DISABLED = 10, /* IOC is disabled */
330 BFA_IOC_FWMISMATCH = 11, /* IOC f/w different from drivers */
331 BFA_IOC_ENABLING = 12, /* IOC is being enabled */
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700332 BFA_IOC_HWFAIL = 13, /* PCI mapping doesn't exist */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700333 BFA_IOC_ACQ_ADDR = 14, /* Acquiring addr from fabric */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700334};
335
Jing Huangacdc79a2010-10-18 17:15:55 -0700336/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700337 * IOC firmware stats
338 */
339struct bfa_fw_ioc_stats_s {
340 u32 enable_reqs;
341 u32 disable_reqs;
342 u32 get_attr_reqs;
343 u32 dbg_sync;
344 u32 dbg_dump;
345 u32 unknown_reqs;
346};
347
Jing Huangacdc79a2010-10-18 17:15:55 -0700348/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700349 * IOC driver stats
350 */
351struct bfa_ioc_drv_stats_s {
352 u32 ioc_isrs;
353 u32 ioc_enables;
354 u32 ioc_disables;
355 u32 ioc_hbfails;
356 u32 ioc_boots;
357 u32 stats_tmos;
358 u32 hb_count;
359 u32 disable_reqs;
360 u32 enable_reqs;
361 u32 disable_replies;
362 u32 enable_replies;
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700363 u32 rsvd;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700364};
365
Jing Huangacdc79a2010-10-18 17:15:55 -0700366/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700367 * IOC statistics
368 */
369struct bfa_ioc_stats_s {
370 struct bfa_ioc_drv_stats_s drv_stats; /* driver IOC stats */
371 struct bfa_fw_ioc_stats_s fw_stats; /* firmware IOC stats */
372};
373
374enum bfa_ioc_type_e {
375 BFA_IOC_TYPE_FC = 1,
376 BFA_IOC_TYPE_FCoE = 2,
377 BFA_IOC_TYPE_LL = 3,
378};
379
Jing Huangacdc79a2010-10-18 17:15:55 -0700380/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700381 * IOC attributes returned in queries
382 */
383struct bfa_ioc_attr_s {
384 enum bfa_ioc_type_e ioc_type;
385 enum bfa_ioc_state state; /* IOC state */
386 struct bfa_adapter_attr_s adapter_attr; /* HBA attributes */
387 struct bfa_ioc_driver_attr_s driver_attr; /* driver attr */
388 struct bfa_ioc_pci_attr_s pci_attr;
389 u8 port_id; /* port number */
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700390 u8 port_mode; /* bfa_mode_s */
391 u8 cap_bm; /* capability */
392 u8 port_mode_cfg; /* bfa_mode_s */
393 u8 rsvd[4]; /* 64bit align */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700394};
395
Jing Huangacdc79a2010-10-18 17:15:55 -0700396/*
Krishna Gudipati7826f302011-07-20 16:59:13 -0700397 * AEN related definitions
398 */
399enum bfa_aen_category {
400 BFA_AEN_CAT_ADAPTER = 1,
401 BFA_AEN_CAT_PORT = 2,
402 BFA_AEN_CAT_LPORT = 3,
403 BFA_AEN_CAT_RPORT = 4,
404 BFA_AEN_CAT_ITNIM = 5,
405 BFA_AEN_CAT_AUDIT = 8,
406 BFA_AEN_CAT_IOC = 9,
407};
408
409/* BFA adapter level events */
410enum bfa_adapter_aen_event {
411 BFA_ADAPTER_AEN_ADD = 1, /* New Adapter found event */
412 BFA_ADAPTER_AEN_REMOVE = 2, /* Adapter removed event */
413};
414
415struct bfa_adapter_aen_data_s {
416 char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
417 u32 nports; /* Number of NPorts */
418 wwn_t pwwn; /* WWN of one of its physical port */
419};
420
421/* BFA physical port Level events */
422enum bfa_port_aen_event {
423 BFA_PORT_AEN_ONLINE = 1, /* Physical Port online event */
424 BFA_PORT_AEN_OFFLINE = 2, /* Physical Port offline event */
425 BFA_PORT_AEN_RLIR = 3, /* RLIR event, not supported */
426 BFA_PORT_AEN_SFP_INSERT = 4, /* SFP inserted event */
427 BFA_PORT_AEN_SFP_REMOVE = 5, /* SFP removed event */
428 BFA_PORT_AEN_SFP_POM = 6, /* SFP POM event */
429 BFA_PORT_AEN_ENABLE = 7, /* Physical Port enable event */
430 BFA_PORT_AEN_DISABLE = 8, /* Physical Port disable event */
431 BFA_PORT_AEN_AUTH_ON = 9, /* Physical Port auth success event */
432 BFA_PORT_AEN_AUTH_OFF = 10, /* Physical Port auth fail event */
433 BFA_PORT_AEN_DISCONNECT = 11, /* Physical Port disconnect event */
434 BFA_PORT_AEN_QOS_NEG = 12, /* Base Port QOS negotiation event */
435 BFA_PORT_AEN_FABRIC_NAME_CHANGE = 13, /* Fabric Name/WWN change */
436 BFA_PORT_AEN_SFP_ACCESS_ERROR = 14, /* SFP read error event */
437 BFA_PORT_AEN_SFP_UNSUPPORT = 15, /* Unsupported SFP event */
438};
439
440enum bfa_port_aen_sfp_pom {
441 BFA_PORT_AEN_SFP_POM_GREEN = 1, /* Normal */
442 BFA_PORT_AEN_SFP_POM_AMBER = 2, /* Warning */
443 BFA_PORT_AEN_SFP_POM_RED = 3, /* Critical */
444 BFA_PORT_AEN_SFP_POM_MAX = BFA_PORT_AEN_SFP_POM_RED
445};
446
447struct bfa_port_aen_data_s {
448 wwn_t pwwn; /* WWN of the physical port */
449 wwn_t fwwn; /* WWN of the fabric port */
450 u32 phy_port_num; /* For SFP related events */
451 u16 ioc_type;
452 u16 level; /* Only transitions will be informed */
453 mac_t mac; /* MAC address of the ethernet port */
454 u16 rsvd;
455};
456
457/* BFA AEN logical port events */
458enum bfa_lport_aen_event {
459 BFA_LPORT_AEN_NEW = 1, /* LPort created event */
460 BFA_LPORT_AEN_DELETE = 2, /* LPort deleted event */
461 BFA_LPORT_AEN_ONLINE = 3, /* LPort online event */
462 BFA_LPORT_AEN_OFFLINE = 4, /* LPort offline event */
463 BFA_LPORT_AEN_DISCONNECT = 5, /* LPort disconnect event */
464 BFA_LPORT_AEN_NEW_PROP = 6, /* VPort created event */
465 BFA_LPORT_AEN_DELETE_PROP = 7, /* VPort deleted event */
466 BFA_LPORT_AEN_NEW_STANDARD = 8, /* VPort created event */
467 BFA_LPORT_AEN_DELETE_STANDARD = 9, /* VPort deleted event */
468 BFA_LPORT_AEN_NPIV_DUP_WWN = 10, /* VPort with duplicate WWN */
469 BFA_LPORT_AEN_NPIV_FABRIC_MAX = 11, /* Max NPIV in fabric/fport */
470 BFA_LPORT_AEN_NPIV_UNKNOWN = 12, /* Unknown NPIV Error code */
471};
472
473struct bfa_lport_aen_data_s {
474 u16 vf_id; /* vf_id of this logical port */
475 u16 roles; /* Logical port mode,IM/TM/IP etc */
476 u32 rsvd;
477 wwn_t ppwwn; /* WWN of its physical port */
478 wwn_t lpwwn; /* WWN of this logical port */
479};
480
481/* BFA ITNIM events */
482enum bfa_itnim_aen_event {
483 BFA_ITNIM_AEN_ONLINE = 1, /* Target online */
484 BFA_ITNIM_AEN_OFFLINE = 2, /* Target offline */
485 BFA_ITNIM_AEN_DISCONNECT = 3, /* Target disconnected */
486};
487
488struct bfa_itnim_aen_data_s {
489 u16 vf_id; /* vf_id of the IT nexus */
490 u16 rsvd[3];
491 wwn_t ppwwn; /* WWN of its physical port */
492 wwn_t lpwwn; /* WWN of logical port */
493 wwn_t rpwwn; /* WWN of remote(target) port */
494};
495
496/* BFA audit events */
497enum bfa_audit_aen_event {
498 BFA_AUDIT_AEN_AUTH_ENABLE = 1,
499 BFA_AUDIT_AEN_AUTH_DISABLE = 2,
500 BFA_AUDIT_AEN_FLASH_ERASE = 3,
501 BFA_AUDIT_AEN_FLASH_UPDATE = 4,
502};
503
504struct bfa_audit_aen_data_s {
505 wwn_t pwwn;
506 int partition_inst;
507 int partition_type;
508};
509
510/* BFA IOC level events */
511enum bfa_ioc_aen_event {
512 BFA_IOC_AEN_HBGOOD = 1, /* Heart Beat restore event */
513 BFA_IOC_AEN_HBFAIL = 2, /* Heart Beat failure event */
514 BFA_IOC_AEN_ENABLE = 3, /* IOC enabled event */
515 BFA_IOC_AEN_DISABLE = 4, /* IOC disabled event */
516 BFA_IOC_AEN_FWMISMATCH = 5, /* IOC firmware mismatch */
517 BFA_IOC_AEN_FWCFG_ERROR = 6, /* IOC firmware config error */
518 BFA_IOC_AEN_INVALID_VENDOR = 7,
519 BFA_IOC_AEN_INVALID_NWWN = 8, /* Zero NWWN */
520 BFA_IOC_AEN_INVALID_PWWN = 9 /* Zero PWWN */
521};
522
523struct bfa_ioc_aen_data_s {
524 wwn_t pwwn;
525 u16 ioc_type;
526 mac_t mac;
527};
528
529/*
Krishna Gudipatie3535462012-09-21 17:26:07 -0700530 * D-port states
531 *
532*/
533enum bfa_dport_state {
534 BFA_DPORT_ST_DISABLED = 0, /* D-port is Disabled */
535 BFA_DPORT_ST_DISABLING = 1, /* D-port is Disabling */
536 BFA_DPORT_ST_ENABLING = 2, /* D-port is Enabling */
537 BFA_DPORT_ST_ENABLED = 3, /* D-port is Enabled */
538};
539
540/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700541 * ---------------------- mfg definitions ------------
542 */
543
Jing Huangacdc79a2010-10-18 17:15:55 -0700544/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700545 * Checksum size
546 */
547#define BFA_MFG_CHKSUM_SIZE 16
548
549#define BFA_MFG_PARTNUM_SIZE 14
550#define BFA_MFG_SUPPLIER_ID_SIZE 10
551#define BFA_MFG_SUPPLIER_PARTNUM_SIZE 20
552#define BFA_MFG_SUPPLIER_SERIALNUM_SIZE 20
553#define BFA_MFG_SUPPLIER_REVISION_SIZE 4
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700554/*
555 * Initial capability definition
556 */
557#define BFA_MFG_IC_FC 0x01
558#define BFA_MFG_IC_ETH 0x02
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700559
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700560/*
561 * Adapter capability mask definition
562 */
563#define BFA_CM_HBA 0x01
564#define BFA_CM_CNA 0x02
565#define BFA_CM_NIC 0x04
566#define BFA_CM_FC16G 0x08
567#define BFA_CM_SRIOV 0x10
568#define BFA_CM_MEZZ 0x20
569
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700570#pragma pack(1)
571
Jing Huangacdc79a2010-10-18 17:15:55 -0700572/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700573 * All numerical fields are in big-endian format.
574 */
575struct bfa_mfg_block_s {
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700576 u8 version; /*!< manufacturing block version */
577 u8 mfg_sig[3]; /*!< characters 'M', 'F', 'G' */
578 u16 mfgsize; /*!< mfg block size */
579 u16 u16_chksum; /*!< old u16 checksum */
580 char brcd_serialnum[STRSZ(BFA_MFG_SERIALNUM_SIZE)];
581 char brcd_partnum[STRSZ(BFA_MFG_PARTNUM_SIZE)];
582 u8 mfg_day; /*!< manufacturing day */
583 u8 mfg_month; /*!< manufacturing month */
584 u16 mfg_year; /*!< manufacturing year */
585 wwn_t mfg_wwn; /*!< wwn base for this adapter */
586 u8 num_wwn; /*!< number of wwns assigned */
587 u8 mfg_speeds; /*!< speeds allowed for this adapter */
588 u8 rsv[2];
589 char supplier_id[STRSZ(BFA_MFG_SUPPLIER_ID_SIZE)];
590 char supplier_partnum[STRSZ(BFA_MFG_SUPPLIER_PARTNUM_SIZE)];
591 char supplier_serialnum[STRSZ(BFA_MFG_SUPPLIER_SERIALNUM_SIZE)];
592 char supplier_revision[STRSZ(BFA_MFG_SUPPLIER_REVISION_SIZE)];
593 mac_t mfg_mac; /*!< base mac address */
594 u8 num_mac; /*!< number of mac addresses */
595 u8 rsv2;
596 u32 card_type; /*!< card type */
597 char cap_nic; /*!< capability nic */
598 char cap_cna; /*!< capability cna */
599 char cap_hba; /*!< capability hba */
600 char cap_fc16g; /*!< capability fc 16g */
601 char cap_sriov; /*!< capability sriov */
602 char cap_mezz; /*!< capability mezz */
603 u8 rsv3;
604 u8 mfg_nports; /*!< number of ports */
605 char media[8]; /*!< xfi/xaui */
606 char initial_mode[8]; /*!< initial mode: hba/cna/nic */
607 u8 rsv4[84];
608 u8 md5_chksum[BFA_MFG_CHKSUM_SIZE]; /*!< md5 checksum */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700609};
610
611#pragma pack()
612
Jing Huangacdc79a2010-10-18 17:15:55 -0700613/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700614 * ---------------------- pci definitions ------------
615 */
616
Jing Huangacdc79a2010-10-18 17:15:55 -0700617/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700618 * PCI device and vendor ID information
619 */
620enum {
621 BFA_PCI_VENDOR_ID_BROCADE = 0x1657,
622 BFA_PCI_DEVICE_ID_FC_8G2P = 0x13,
623 BFA_PCI_DEVICE_ID_FC_8G1P = 0x17,
624 BFA_PCI_DEVICE_ID_CT = 0x14,
625 BFA_PCI_DEVICE_ID_CT_FC = 0x21,
Krishna Gudipati11189202011-06-13 15:50:35 -0700626 BFA_PCI_DEVICE_ID_CT2 = 0x22,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700627};
628
Krishna Gudipati11189202011-06-13 15:50:35 -0700629#define bfa_asic_id_cb(__d) \
630 ((__d) == BFA_PCI_DEVICE_ID_FC_8G2P || \
631 (__d) == BFA_PCI_DEVICE_ID_FC_8G1P)
632#define bfa_asic_id_ct(__d) \
633 ((__d) == BFA_PCI_DEVICE_ID_CT || \
634 (__d) == BFA_PCI_DEVICE_ID_CT_FC)
635#define bfa_asic_id_ct2(__d) ((__d) == BFA_PCI_DEVICE_ID_CT2)
636#define bfa_asic_id_ctc(__d) \
637 (bfa_asic_id_ct(__d) || bfa_asic_id_ct2(__d))
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700638
Jing Huangacdc79a2010-10-18 17:15:55 -0700639/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700640 * PCI sub-system device and vendor ID information
641 */
642enum {
643 BFA_PCI_FCOE_SSDEVICE_ID = 0x14,
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700644 BFA_PCI_CT2_SSID_FCoE = 0x22,
645 BFA_PCI_CT2_SSID_ETH = 0x23,
646 BFA_PCI_CT2_SSID_FC = 0x24,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700647};
648
Jing Huangacdc79a2010-10-18 17:15:55 -0700649/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700650 * Maximum number of device address ranges mapped through different BAR(s)
651 */
652#define BFA_PCI_ACCESS_RANGES 1
653
654/*
655 * Port speed settings. Each specific speed is a bit field. Use multiple
656 * bits to specify speeds to be selected for auto-negotiation.
657 */
658enum bfa_port_speed {
659 BFA_PORT_SPEED_UNKNOWN = 0,
660 BFA_PORT_SPEED_1GBPS = 1,
661 BFA_PORT_SPEED_2GBPS = 2,
662 BFA_PORT_SPEED_4GBPS = 4,
663 BFA_PORT_SPEED_8GBPS = 8,
664 BFA_PORT_SPEED_10GBPS = 10,
665 BFA_PORT_SPEED_16GBPS = 16,
Krishna Gudipatia7141342011-06-24 20:23:19 -0700666 BFA_PORT_SPEED_AUTO = 0xf,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700667};
668#define bfa_port_speed_t enum bfa_port_speed
669
670enum {
671 BFA_BOOT_BOOTLUN_MAX = 4, /* maximum boot lun per IOC */
672 BFA_PREBOOT_BOOTLUN_MAX = 8, /* maximum preboot lun per IOC */
673};
674
675#define BOOT_CFG_REV1 1
676#define BOOT_CFG_VLAN 1
677
Jing Huangacdc79a2010-10-18 17:15:55 -0700678/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700679 * Boot options setting. Boot options setting determines from where
680 * to get the boot lun information
681 */
682enum bfa_boot_bootopt {
683 BFA_BOOT_AUTO_DISCOVER = 0, /* Boot from blun provided by fabric */
684 BFA_BOOT_STORED_BLUN = 1, /* Boot from bluns stored in flash */
685 BFA_BOOT_FIRST_LUN = 2, /* Boot from first discovered blun */
686 BFA_BOOT_PBC = 3, /* Boot from pbc configured blun */
687};
688
689#pragma pack(1)
Jing Huangacdc79a2010-10-18 17:15:55 -0700690/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700691 * Boot lun information.
692 */
693struct bfa_boot_bootlun_s {
Maggie Zhangf3148782010-12-09 19:11:39 -0800694 wwn_t pwwn; /* port wwn of target */
695 struct scsi_lun lun; /* 64-bit lun */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700696};
697#pragma pack()
698
Jing Huangacdc79a2010-10-18 17:15:55 -0700699/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700700 * BOOT boot configuraton
701 */
Krishna Gudipatia46bd302011-07-20 17:02:32 -0700702struct bfa_boot_cfg_s {
703 u8 version;
704 u8 rsvd1;
705 u16 chksum;
706 u8 enable; /* enable/disable SAN boot */
707 u8 speed; /* boot speed settings */
708 u8 topology; /* boot topology setting */
709 u8 bootopt; /* bfa_boot_bootopt_t */
710 u32 nbluns; /* number of boot luns */
711 u32 rsvd2;
712 struct bfa_boot_bootlun_s blun[BFA_BOOT_BOOTLUN_MAX];
713 struct bfa_boot_bootlun_s blun_disc[BFA_BOOT_BOOTLUN_MAX];
714};
715
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700716struct bfa_boot_pbc_s {
717 u8 enable; /* enable/disable SAN boot */
718 u8 speed; /* boot speed settings */
719 u8 topology; /* boot topology setting */
720 u8 rsvd1;
721 u32 nbluns; /* number of boot luns */
722 struct bfa_boot_bootlun_s pblun[BFA_PREBOOT_BOOTLUN_MAX];
723};
724
Krishna Gudipatia46bd302011-07-20 17:02:32 -0700725struct bfa_ethboot_cfg_s {
726 u8 version;
727 u8 rsvd1;
728 u16 chksum;
729 u8 enable; /* enable/disable Eth/PXE boot */
730 u8 rsvd2;
731 u16 vlan;
732};
733
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700734/*
735 * ASIC block configuration related structures
736 */
737#define BFA_ABLK_MAX_PORTS 2
738#define BFA_ABLK_MAX_PFS 16
739#define BFA_ABLK_MAX 2
740
741#pragma pack(1)
742enum bfa_mode_s {
743 BFA_MODE_HBA = 1,
744 BFA_MODE_CNA = 2,
745 BFA_MODE_NIC = 3
746};
747
748struct bfa_adapter_cfg_mode_s {
749 u16 max_pf;
750 u16 max_vf;
751 enum bfa_mode_s mode;
752};
753
754struct bfa_ablk_cfg_pf_s {
755 u16 pers;
756 u8 port_id;
757 u8 optrom;
758 u8 valid;
759 u8 sriov;
760 u8 max_vfs;
761 u8 rsvd[1];
762 u16 num_qpairs;
763 u16 num_vectors;
Krishna Gudipati1a1297c2012-09-21 17:26:50 -0700764 u16 bw_min;
765 u16 bw_max;
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700766};
767
768struct bfa_ablk_cfg_port_s {
769 u8 mode;
770 u8 type;
771 u8 max_pfs;
772 u8 rsvd[5];
773};
774
775struct bfa_ablk_cfg_inst_s {
776 u8 nports;
777 u8 max_pfs;
778 u8 rsvd[6];
779 struct bfa_ablk_cfg_pf_s pf_cfg[BFA_ABLK_MAX_PFS];
780 struct bfa_ablk_cfg_port_s port_cfg[BFA_ABLK_MAX_PORTS];
781};
782
783struct bfa_ablk_cfg_s {
784 struct bfa_ablk_cfg_inst_s inst[BFA_ABLK_MAX];
785};
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700786
787
788/*
789 * SFP module specific
790 */
791#define SFP_DIAGMON_SIZE 10 /* num bytes of diag monitor data */
792
Krishna Gudipati7826f302011-07-20 16:59:13 -0700793/* SFP state change notification event */
794#define BFA_SFP_SCN_REMOVED 0
795#define BFA_SFP_SCN_INSERTED 1
796#define BFA_SFP_SCN_POM 2
797#define BFA_SFP_SCN_FAILED 3
798#define BFA_SFP_SCN_UNSUPPORT 4
799#define BFA_SFP_SCN_VALID 5
800
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700801enum bfa_defs_sfp_media_e {
802 BFA_SFP_MEDIA_UNKNOWN = 0x00,
803 BFA_SFP_MEDIA_CU = 0x01,
804 BFA_SFP_MEDIA_LW = 0x02,
805 BFA_SFP_MEDIA_SW = 0x03,
806 BFA_SFP_MEDIA_EL = 0x04,
807 BFA_SFP_MEDIA_UNSUPPORT = 0x05,
808};
809
810/*
811 * values for xmtr_tech above
812 */
813enum {
814 SFP_XMTR_TECH_CU = (1 << 0), /* copper FC-BaseT */
815 SFP_XMTR_TECH_CP = (1 << 1), /* copper passive */
816 SFP_XMTR_TECH_CA = (1 << 2), /* copper active */
817 SFP_XMTR_TECH_LL = (1 << 3), /* longwave laser */
818 SFP_XMTR_TECH_SL = (1 << 4), /* shortwave laser w/ OFC */
819 SFP_XMTR_TECH_SN = (1 << 5), /* shortwave laser w/o OFC */
820 SFP_XMTR_TECH_EL_INTRA = (1 << 6), /* elec intra-enclosure */
821 SFP_XMTR_TECH_EL_INTER = (1 << 7), /* elec inter-enclosure */
822 SFP_XMTR_TECH_LC = (1 << 8), /* longwave laser */
823 SFP_XMTR_TECH_SA = (1 << 9)
824};
825
826/*
827 * Serial ID: Data Fields -- Address A0h
828 * Basic ID field total 64 bytes
829 */
830struct sfp_srlid_base_s {
831 u8 id; /* 00: Identifier */
832 u8 extid; /* 01: Extended Identifier */
833 u8 connector; /* 02: Connector */
834 u8 xcvr[8]; /* 03-10: Transceiver */
835 u8 encoding; /* 11: Encoding */
836 u8 br_norm; /* 12: BR, Nominal */
837 u8 rate_id; /* 13: Rate Identifier */
838 u8 len_km; /* 14: Length single mode km */
839 u8 len_100m; /* 15: Length single mode 100m */
840 u8 len_om2; /* 16: Length om2 fiber 10m */
841 u8 len_om1; /* 17: Length om1 fiber 10m */
842 u8 len_cu; /* 18: Length copper 1m */
843 u8 len_om3; /* 19: Length om3 fiber 10m */
844 u8 vendor_name[16];/* 20-35 */
845 u8 unalloc1;
846 u8 vendor_oui[3]; /* 37-39 */
847 u8 vendor_pn[16]; /* 40-55 */
848 u8 vendor_rev[4]; /* 56-59 */
849 u8 wavelen[2]; /* 60-61 */
850 u8 unalloc2;
851 u8 cc_base; /* 63: check code for base id field */
852};
853
854/*
855 * Serial ID: Data Fields -- Address A0h
856 * Extended id field total 32 bytes
857 */
858struct sfp_srlid_ext_s {
859 u8 options[2];
860 u8 br_max;
861 u8 br_min;
862 u8 vendor_sn[16];
863 u8 date_code[8];
864 u8 diag_mon_type; /* 92: Diagnostic Monitoring type */
865 u8 en_options;
866 u8 sff_8472;
867 u8 cc_ext;
868};
869
870/*
871 * Diagnostic: Data Fields -- Address A2h
872 * Diagnostic and control/status base field total 96 bytes
873 */
874struct sfp_diag_base_s {
875 /*
876 * Alarm and warning Thresholds 40 bytes
877 */
878 u8 temp_high_alarm[2]; /* 00-01 */
879 u8 temp_low_alarm[2]; /* 02-03 */
880 u8 temp_high_warning[2]; /* 04-05 */
881 u8 temp_low_warning[2]; /* 06-07 */
882
883 u8 volt_high_alarm[2]; /* 08-09 */
884 u8 volt_low_alarm[2]; /* 10-11 */
885 u8 volt_high_warning[2]; /* 12-13 */
886 u8 volt_low_warning[2]; /* 14-15 */
887
888 u8 bias_high_alarm[2]; /* 16-17 */
889 u8 bias_low_alarm[2]; /* 18-19 */
890 u8 bias_high_warning[2]; /* 20-21 */
891 u8 bias_low_warning[2]; /* 22-23 */
892
893 u8 tx_pwr_high_alarm[2]; /* 24-25 */
894 u8 tx_pwr_low_alarm[2]; /* 26-27 */
895 u8 tx_pwr_high_warning[2]; /* 28-29 */
896 u8 tx_pwr_low_warning[2]; /* 30-31 */
897
898 u8 rx_pwr_high_alarm[2]; /* 32-33 */
899 u8 rx_pwr_low_alarm[2]; /* 34-35 */
900 u8 rx_pwr_high_warning[2]; /* 36-37 */
901 u8 rx_pwr_low_warning[2]; /* 38-39 */
902
903 u8 unallocate_1[16];
904
905 /*
906 * ext_cal_const[36]
907 */
908 u8 rx_pwr[20];
909 u8 tx_i[4];
910 u8 tx_pwr[4];
911 u8 temp[4];
912 u8 volt[4];
913 u8 unallocate_2[3];
914 u8 cc_dmi;
915};
916
917/*
918 * Diagnostic: Data Fields -- Address A2h
919 * Diagnostic and control/status extended field total 24 bytes
920 */
921struct sfp_diag_ext_s {
922 u8 diag[SFP_DIAGMON_SIZE];
923 u8 unalloc1[4];
924 u8 status_ctl;
925 u8 rsvd;
926 u8 alarm_flags[2];
927 u8 unalloc2[2];
928 u8 warning_flags[2];
929 u8 ext_status_ctl[2];
930};
931
Krishna Gudipati4a49b042012-09-21 17:27:01 -0700932/*
933 * Diagnostic: Data Fields -- Address A2h
934 * General Use Fields: User Writable Table - Features's Control Registers
935 * Total 32 bytes
936 */
937struct sfp_usr_eeprom_s {
938 u8 rsvd1[2]; /* 128-129 */
939 u8 ewrap; /* 130 */
940 u8 rsvd2[2]; /* */
941 u8 owrap; /* 133 */
942 u8 rsvd3[2]; /* */
943 u8 prbs; /* 136: PRBS 7 generator */
944 u8 rsvd4[2]; /* */
945 u8 tx_eqz_16; /* 139: TX Equalizer (16xFC) */
946 u8 tx_eqz_8; /* 140: TX Equalizer (8xFC) */
947 u8 rsvd5[2]; /* */
948 u8 rx_emp_16; /* 143: RX Emphasis (16xFC) */
949 u8 rx_emp_8; /* 144: RX Emphasis (8xFC) */
950 u8 rsvd6[2]; /* */
951 u8 tx_eye_adj; /* 147: TX eye Threshold Adjust */
952 u8 rsvd7[3]; /* */
953 u8 tx_eye_qctl; /* 151: TX eye Quality Control */
954 u8 tx_eye_qres; /* 152: TX eye Quality Result */
955 u8 rsvd8[2]; /* */
956 u8 poh[3]; /* 155-157: Power On Hours */
957 u8 rsvd9[2]; /* */
958};
959
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700960struct sfp_mem_s {
961 struct sfp_srlid_base_s srlid_base;
962 struct sfp_srlid_ext_s srlid_ext;
963 struct sfp_diag_base_s diag_base;
964 struct sfp_diag_ext_s diag_ext;
Krishna Gudipati4a49b042012-09-21 17:27:01 -0700965 struct sfp_usr_eeprom_s usr_eeprom;
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700966};
967
968/*
969 * transceiver codes (SFF-8472 Rev 10.2 Table 3.5)
970 */
971union sfp_xcvr_e10g_code_u {
972 u8 b;
973 struct {
Jing Huang98cdfb42011-11-16 12:29:26 -0800974#ifdef __BIG_ENDIAN
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700975 u8 e10g_unall:1; /* 10G Ethernet compliance */
976 u8 e10g_lrm:1;
977 u8 e10g_lr:1;
978 u8 e10g_sr:1;
979 u8 ib_sx:1; /* Infiniband compliance */
980 u8 ib_lx:1;
981 u8 ib_cu_a:1;
982 u8 ib_cu_p:1;
983#else
984 u8 ib_cu_p:1;
985 u8 ib_cu_a:1;
986 u8 ib_lx:1;
987 u8 ib_sx:1; /* Infiniband compliance */
988 u8 e10g_sr:1;
989 u8 e10g_lr:1;
990 u8 e10g_lrm:1;
991 u8 e10g_unall:1; /* 10G Ethernet compliance */
992#endif
993 } r;
994};
995
996union sfp_xcvr_so1_code_u {
997 u8 b;
998 struct {
999 u8 escon:2; /* ESCON compliance code */
1000 u8 oc192_reach:1; /* SONET compliance code */
1001 u8 so_reach:2;
1002 u8 oc48_reach:3;
1003 } r;
1004};
1005
1006union sfp_xcvr_so2_code_u {
1007 u8 b;
1008 struct {
1009 u8 reserved:1;
1010 u8 oc12_reach:3; /* OC12 reach */
1011 u8 reserved1:1;
1012 u8 oc3_reach:3; /* OC3 reach */
1013 } r;
1014};
1015
1016union sfp_xcvr_eth_code_u {
1017 u8 b;
1018 struct {
1019 u8 base_px:1;
1020 u8 base_bx10:1;
1021 u8 e100base_fx:1;
1022 u8 e100base_lx:1;
1023 u8 e1000base_t:1;
1024 u8 e1000base_cx:1;
1025 u8 e1000base_lx:1;
1026 u8 e1000base_sx:1;
1027 } r;
1028};
1029
1030struct sfp_xcvr_fc1_code_s {
1031 u8 link_len:5; /* FC link length */
1032 u8 xmtr_tech2:3;
1033 u8 xmtr_tech1:7; /* FC transmitter technology */
1034 u8 reserved1:1;
1035};
1036
1037union sfp_xcvr_fc2_code_u {
1038 u8 b;
1039 struct {
1040 u8 tw_media:1; /* twin axial pair (tw) */
1041 u8 tp_media:1; /* shielded twisted pair (sp) */
1042 u8 mi_media:1; /* miniature coax (mi) */
1043 u8 tv_media:1; /* video coax (tv) */
1044 u8 m6_media:1; /* multimode, 62.5m (m6) */
1045 u8 m5_media:1; /* multimode, 50m (m5) */
1046 u8 reserved:1;
1047 u8 sm_media:1; /* single mode (sm) */
1048 } r;
1049};
1050
1051union sfp_xcvr_fc3_code_u {
1052 u8 b;
1053 struct {
Jing Huang98cdfb42011-11-16 12:29:26 -08001054#ifdef __BIG_ENDIAN
Krishna Gudipati51e569a2011-06-24 20:26:25 -07001055 u8 rsv4:1;
1056 u8 mb800:1; /* 800 Mbytes/sec */
1057 u8 mb1600:1; /* 1600 Mbytes/sec */
1058 u8 mb400:1; /* 400 Mbytes/sec */
1059 u8 rsv2:1;
1060 u8 mb200:1; /* 200 Mbytes/sec */
1061 u8 rsv1:1;
1062 u8 mb100:1; /* 100 Mbytes/sec */
1063#else
1064 u8 mb100:1; /* 100 Mbytes/sec */
1065 u8 rsv1:1;
1066 u8 mb200:1; /* 200 Mbytes/sec */
1067 u8 rsv2:1;
1068 u8 mb400:1; /* 400 Mbytes/sec */
1069 u8 mb1600:1; /* 1600 Mbytes/sec */
1070 u8 mb800:1; /* 800 Mbytes/sec */
1071 u8 rsv4:1;
1072#endif
1073 } r;
1074};
1075
1076struct sfp_xcvr_s {
1077 union sfp_xcvr_e10g_code_u e10g;
1078 union sfp_xcvr_so1_code_u so1;
1079 union sfp_xcvr_so2_code_u so2;
1080 union sfp_xcvr_eth_code_u eth;
1081 struct sfp_xcvr_fc1_code_s fc1;
1082 union sfp_xcvr_fc2_code_u fc2;
1083 union sfp_xcvr_fc3_code_u fc3;
1084};
1085
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -07001086/*
1087 * Flash module specific
1088 */
1089#define BFA_FLASH_PART_ENTRY_SIZE 32 /* partition entry size */
1090#define BFA_FLASH_PART_MAX 32 /* maximal # of partitions */
1091
1092enum bfa_flash_part_type {
1093 BFA_FLASH_PART_OPTROM = 1, /* option rom partition */
1094 BFA_FLASH_PART_FWIMG = 2, /* firmware image partition */
1095 BFA_FLASH_PART_FWCFG = 3, /* firmware tuneable config */
1096 BFA_FLASH_PART_DRV = 4, /* IOC driver config */
1097 BFA_FLASH_PART_BOOT = 5, /* boot config */
1098 BFA_FLASH_PART_ASIC = 6, /* asic bootstrap configuration */
1099 BFA_FLASH_PART_MFG = 7, /* manufacturing block partition */
1100 BFA_FLASH_PART_OPTROM2 = 8, /* 2nd option rom partition */
1101 BFA_FLASH_PART_VPD = 9, /* vpd data of OEM info */
1102 BFA_FLASH_PART_PBC = 10, /* pre-boot config */
1103 BFA_FLASH_PART_BOOTOVL = 11, /* boot overlay partition */
1104 BFA_FLASH_PART_LOG = 12, /* firmware log partition */
1105 BFA_FLASH_PART_PXECFG = 13, /* pxe boot config partition */
1106 BFA_FLASH_PART_PXEOVL = 14, /* pxe boot overlay partition */
1107 BFA_FLASH_PART_PORTCFG = 15, /* port cfg partition */
1108 BFA_FLASH_PART_ASICBK = 16, /* asic backup partition */
1109};
1110
1111/*
1112 * flash partition attributes
1113 */
1114struct bfa_flash_part_attr_s {
1115 u32 part_type; /* partition type */
1116 u32 part_instance; /* partition instance */
1117 u32 part_off; /* partition offset */
1118 u32 part_size; /* partition size */
1119 u32 part_len; /* partition content length */
1120 u32 part_status; /* partition status */
1121 char rsv[BFA_FLASH_PART_ENTRY_SIZE - 24];
1122};
1123
1124/*
1125 * flash attributes
1126 */
1127struct bfa_flash_attr_s {
1128 u32 status; /* flash overall status */
1129 u32 npart; /* num of partitions */
1130 struct bfa_flash_part_attr_s part[BFA_FLASH_PART_MAX];
1131};
1132
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001133/*
1134 * DIAG module specific
1135 */
1136#define LB_PATTERN_DEFAULT 0xB5B5B5B5
1137#define QTEST_CNT_DEFAULT 10
1138#define QTEST_PAT_DEFAULT LB_PATTERN_DEFAULT
1139
1140struct bfa_diag_memtest_s {
1141 u8 algo;
1142 u8 rsvd[7];
1143};
1144
1145struct bfa_diag_memtest_result {
1146 u32 status;
1147 u32 addr;
1148 u32 exp; /* expect value read from reg */
1149 u32 act; /* actually value read */
1150 u32 err_status; /* error status reg */
1151 u32 err_status1; /* extra error info reg */
1152 u32 err_addr; /* error address reg */
1153 u8 algo;
1154 u8 rsv[3];
1155};
1156
1157struct bfa_diag_loopback_result_s {
1158 u32 numtxmfrm; /* no. of transmit frame */
1159 u32 numosffrm; /* no. of outstanding frame */
1160 u32 numrcvfrm; /* no. of received good frame */
1161 u32 badfrminf; /* mis-match info */
1162 u32 badfrmnum; /* mis-match fram number */
1163 u8 status; /* loopback test result */
1164 u8 rsvd[3];
1165};
1166
1167struct bfa_diag_ledtest_s {
1168 u32 cmd; /* bfa_led_op_t */
1169 u32 color; /* bfa_led_color_t */
1170 u16 freq; /* no. of blinks every 10 secs */
1171 u8 led; /* bitmap of LEDs to be tested */
1172 u8 rsvd[5];
1173};
1174
1175struct bfa_diag_loopback_s {
1176 u32 loopcnt;
1177 u32 pattern;
1178 u8 lb_mode; /* bfa_port_opmode_t */
1179 u8 speed; /* bfa_port_speed_t */
1180 u8 rsvd[2];
1181};
1182
Krishna Gudipati3350d982011-06-24 20:28:37 -07001183/*
1184 * PHY module specific
1185 */
1186enum bfa_phy_status_e {
1187 BFA_PHY_STATUS_GOOD = 0, /* phy is good */
1188 BFA_PHY_STATUS_NOT_PRESENT = 1, /* phy does not exist */
1189 BFA_PHY_STATUS_BAD = 2, /* phy is bad */
1190};
1191
1192/*
1193 * phy attributes for phy query
1194 */
1195struct bfa_phy_attr_s {
1196 u32 status; /* phy present/absent status */
1197 u32 length; /* firmware length */
1198 u32 fw_ver; /* firmware version */
1199 u32 an_status; /* AN status */
1200 u32 pma_pmd_status; /* PMA/PMD link status */
1201 u32 pma_pmd_signal; /* PMA/PMD signal detect */
1202 u32 pcs_status; /* PCS link status */
1203};
1204
1205/*
1206 * phy stats
1207 */
1208struct bfa_phy_stats_s {
1209 u32 status; /* phy stats status */
1210 u32 link_breaks; /* Num of link breaks after linkup */
1211 u32 pma_pmd_fault; /* NPMA/PMD fault */
1212 u32 pcs_fault; /* PCS fault */
1213 u32 speed_neg; /* Num of speed negotiation */
1214 u32 tx_eq_training; /* Num of TX EQ training */
1215 u32 tx_eq_timeout; /* Num of TX EQ timeout */
1216 u32 crc_error; /* Num of CRC errors */
1217};
1218
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -07001219#pragma pack()
1220
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001221#endif /* __BFA_DEFS_H__ */