blob: 2dc4b6fc79d0eb4ea79a926a0495e149f3c30107 [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 Gudipati51e569a2011-06-24 20:26:25 -0700162 BFA_STATUS_NO_SFP_DEV = 89, /* No SFP device check or replace SFP */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700163 BFA_STATUS_MEMTEST_FAILED = 90, /* Memory test failed contact support */
164 BFA_STATUS_LEDTEST_OP = 109, /* LED test is operating */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700165 BFA_STATUS_INVALID_MAC = 134, /* Invalid MAC address */
166 BFA_STATUS_PBC = 154, /* Operation not allowed for pre-boot
167 * configuration */
Krishna Gudipati7826f302011-07-20 16:59:13 -0700168 BFA_STATUS_BAD_FWCFG = 156, /* Bad firmware configuration */
169 BFA_STATUS_INVALID_VENDOR = 158, /* Invalid switch vendor */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700170 BFA_STATUS_SFP_NOT_READY = 159, /* SFP info is not ready. Retry */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700171 BFA_STATUS_TRUNK_ENABLED = 164, /* Trunk is already enabled on
172 * this adapter */
173 BFA_STATUS_TRUNK_DISABLED = 165, /* Trunking is disabled on
174 * the adapter */
175 BFA_STATUS_IOPROFILE_OFF = 175, /* IO profile OFF */
Krishna Gudipati3350d982011-06-24 20:28:37 -0700176 BFA_STATUS_PHY_NOT_PRESENT = 183, /* PHY module not present */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700177 BFA_STATUS_FEATURE_NOT_SUPPORTED = 192, /* Feature not supported */
178 BFA_STATUS_FAA_ENABLED = 197, /* FAA is already enabled */
179 BFA_STATUS_FAA_DISABLED = 198, /* FAA is already disabled */
180 BFA_STATUS_FAA_ACQUIRED = 199, /* FAA is already acquired */
181 BFA_STATUS_FAA_ACQ_ADDR = 200, /* Acquiring addr */
182 BFA_STATUS_ERROR_TRUNK_ENABLED = 203, /* Trunk enabled on adapter */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700183 BFA_STATUS_MAX_VAL /* Unknown error code */
184};
185#define bfa_status_t enum bfa_status
186
187enum bfa_eproto_status {
188 BFA_EPROTO_BAD_ACCEPT = 0,
189 BFA_EPROTO_UNKNOWN_RSP = 1
190};
191#define bfa_eproto_status_t enum bfa_eproto_status
192
193enum bfa_boolean {
194 BFA_FALSE = 0,
195 BFA_TRUE = 1
196};
197#define bfa_boolean_t enum bfa_boolean
198
199#define BFA_STRING_32 32
200#define BFA_VERSION_LEN 64
201
Jing Huangacdc79a2010-10-18 17:15:55 -0700202/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700203 * ---------------------- adapter definitions ------------
204 */
205
Jing Huangacdc79a2010-10-18 17:15:55 -0700206/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700207 * BFA adapter level attributes.
208 */
209enum {
210 BFA_ADAPTER_SERIAL_NUM_LEN = STRSZ(BFA_MFG_SERIALNUM_SIZE),
211 /*
212 *!< adapter serial num length
213 */
214 BFA_ADAPTER_MODEL_NAME_LEN = 16, /* model name length */
215 BFA_ADAPTER_MODEL_DESCR_LEN = 128, /* model description length */
216 BFA_ADAPTER_MFG_NAME_LEN = 8, /* manufacturer name length */
217 BFA_ADAPTER_SYM_NAME_LEN = 64, /* adapter symbolic name length */
218 BFA_ADAPTER_OS_TYPE_LEN = 64, /* adapter os type length */
219};
220
221struct bfa_adapter_attr_s {
222 char manufacturer[BFA_ADAPTER_MFG_NAME_LEN];
223 char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
224 u32 card_type;
225 char model[BFA_ADAPTER_MODEL_NAME_LEN];
226 char model_descr[BFA_ADAPTER_MODEL_DESCR_LEN];
227 wwn_t pwwn;
228 char node_symname[FC_SYMNAME_MAX];
229 char hw_ver[BFA_VERSION_LEN];
230 char fw_ver[BFA_VERSION_LEN];
231 char optrom_ver[BFA_VERSION_LEN];
232 char os_type[BFA_ADAPTER_OS_TYPE_LEN];
233 struct bfa_mfg_vpd_s vpd;
234 struct mac_s mac;
235
236 u8 nports;
237 u8 max_speed;
238 u8 prototype;
239 char asic_rev;
240
241 u8 pcie_gen;
242 u8 pcie_lanes_orig;
243 u8 pcie_lanes;
244 u8 cna_capable;
245
246 u8 is_mezz;
247 u8 trunk_capable;
248};
249
Jing Huangacdc79a2010-10-18 17:15:55 -0700250/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700251 * ---------------------- IOC definitions ------------
252 */
253
254enum {
255 BFA_IOC_DRIVER_LEN = 16,
256 BFA_IOC_CHIP_REV_LEN = 8,
257};
258
Jing Huangacdc79a2010-10-18 17:15:55 -0700259/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700260 * Driver and firmware versions.
261 */
262struct bfa_ioc_driver_attr_s {
263 char driver[BFA_IOC_DRIVER_LEN]; /* driver name */
264 char driver_ver[BFA_VERSION_LEN]; /* driver version */
265 char fw_ver[BFA_VERSION_LEN]; /* firmware version */
266 char bios_ver[BFA_VERSION_LEN]; /* bios version */
267 char efi_ver[BFA_VERSION_LEN]; /* EFI version */
268 char ob_ver[BFA_VERSION_LEN]; /* openboot version */
269};
270
Jing Huangacdc79a2010-10-18 17:15:55 -0700271/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700272 * IOC PCI device attributes
273 */
274struct bfa_ioc_pci_attr_s {
275 u16 vendor_id; /* PCI vendor ID */
276 u16 device_id; /* PCI device ID */
277 u16 ssid; /* subsystem ID */
278 u16 ssvid; /* subsystem vendor ID */
279 u32 pcifn; /* PCI device function */
280 u32 rsvd; /* padding */
281 char chip_rev[BFA_IOC_CHIP_REV_LEN]; /* chip revision */
282};
283
Jing Huangacdc79a2010-10-18 17:15:55 -0700284/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700285 * IOC states
286 */
287enum bfa_ioc_state {
288 BFA_IOC_UNINIT = 1, /* IOC is in uninit state */
289 BFA_IOC_RESET = 2, /* IOC is in reset state */
290 BFA_IOC_SEMWAIT = 3, /* Waiting for IOC h/w semaphore */
291 BFA_IOC_HWINIT = 4, /* IOC h/w is being initialized */
292 BFA_IOC_GETATTR = 5, /* IOC is being configured */
293 BFA_IOC_OPERATIONAL = 6, /* IOC is operational */
294 BFA_IOC_INITFAIL = 7, /* IOC hardware failure */
295 BFA_IOC_FAIL = 8, /* IOC heart-beat failure */
296 BFA_IOC_DISABLING = 9, /* IOC is being disabled */
297 BFA_IOC_DISABLED = 10, /* IOC is disabled */
298 BFA_IOC_FWMISMATCH = 11, /* IOC f/w different from drivers */
299 BFA_IOC_ENABLING = 12, /* IOC is being enabled */
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700300 BFA_IOC_HWFAIL = 13, /* PCI mapping doesn't exist */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700301 BFA_IOC_ACQ_ADDR = 14, /* Acquiring addr from fabric */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700302};
303
Jing Huangacdc79a2010-10-18 17:15:55 -0700304/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700305 * IOC firmware stats
306 */
307struct bfa_fw_ioc_stats_s {
308 u32 enable_reqs;
309 u32 disable_reqs;
310 u32 get_attr_reqs;
311 u32 dbg_sync;
312 u32 dbg_dump;
313 u32 unknown_reqs;
314};
315
Jing Huangacdc79a2010-10-18 17:15:55 -0700316/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700317 * IOC driver stats
318 */
319struct bfa_ioc_drv_stats_s {
320 u32 ioc_isrs;
321 u32 ioc_enables;
322 u32 ioc_disables;
323 u32 ioc_hbfails;
324 u32 ioc_boots;
325 u32 stats_tmos;
326 u32 hb_count;
327 u32 disable_reqs;
328 u32 enable_reqs;
329 u32 disable_replies;
330 u32 enable_replies;
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700331 u32 rsvd;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700332};
333
Jing Huangacdc79a2010-10-18 17:15:55 -0700334/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700335 * IOC statistics
336 */
337struct bfa_ioc_stats_s {
338 struct bfa_ioc_drv_stats_s drv_stats; /* driver IOC stats */
339 struct bfa_fw_ioc_stats_s fw_stats; /* firmware IOC stats */
340};
341
342enum bfa_ioc_type_e {
343 BFA_IOC_TYPE_FC = 1,
344 BFA_IOC_TYPE_FCoE = 2,
345 BFA_IOC_TYPE_LL = 3,
346};
347
Jing Huangacdc79a2010-10-18 17:15:55 -0700348/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700349 * IOC attributes returned in queries
350 */
351struct bfa_ioc_attr_s {
352 enum bfa_ioc_type_e ioc_type;
353 enum bfa_ioc_state state; /* IOC state */
354 struct bfa_adapter_attr_s adapter_attr; /* HBA attributes */
355 struct bfa_ioc_driver_attr_s driver_attr; /* driver attr */
356 struct bfa_ioc_pci_attr_s pci_attr;
357 u8 port_id; /* port number */
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700358 u8 port_mode; /* bfa_mode_s */
359 u8 cap_bm; /* capability */
360 u8 port_mode_cfg; /* bfa_mode_s */
361 u8 rsvd[4]; /* 64bit align */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700362};
363
Jing Huangacdc79a2010-10-18 17:15:55 -0700364/*
Krishna Gudipati7826f302011-07-20 16:59:13 -0700365 * AEN related definitions
366 */
367enum bfa_aen_category {
368 BFA_AEN_CAT_ADAPTER = 1,
369 BFA_AEN_CAT_PORT = 2,
370 BFA_AEN_CAT_LPORT = 3,
371 BFA_AEN_CAT_RPORT = 4,
372 BFA_AEN_CAT_ITNIM = 5,
373 BFA_AEN_CAT_AUDIT = 8,
374 BFA_AEN_CAT_IOC = 9,
375};
376
377/* BFA adapter level events */
378enum bfa_adapter_aen_event {
379 BFA_ADAPTER_AEN_ADD = 1, /* New Adapter found event */
380 BFA_ADAPTER_AEN_REMOVE = 2, /* Adapter removed event */
381};
382
383struct bfa_adapter_aen_data_s {
384 char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
385 u32 nports; /* Number of NPorts */
386 wwn_t pwwn; /* WWN of one of its physical port */
387};
388
389/* BFA physical port Level events */
390enum bfa_port_aen_event {
391 BFA_PORT_AEN_ONLINE = 1, /* Physical Port online event */
392 BFA_PORT_AEN_OFFLINE = 2, /* Physical Port offline event */
393 BFA_PORT_AEN_RLIR = 3, /* RLIR event, not supported */
394 BFA_PORT_AEN_SFP_INSERT = 4, /* SFP inserted event */
395 BFA_PORT_AEN_SFP_REMOVE = 5, /* SFP removed event */
396 BFA_PORT_AEN_SFP_POM = 6, /* SFP POM event */
397 BFA_PORT_AEN_ENABLE = 7, /* Physical Port enable event */
398 BFA_PORT_AEN_DISABLE = 8, /* Physical Port disable event */
399 BFA_PORT_AEN_AUTH_ON = 9, /* Physical Port auth success event */
400 BFA_PORT_AEN_AUTH_OFF = 10, /* Physical Port auth fail event */
401 BFA_PORT_AEN_DISCONNECT = 11, /* Physical Port disconnect event */
402 BFA_PORT_AEN_QOS_NEG = 12, /* Base Port QOS negotiation event */
403 BFA_PORT_AEN_FABRIC_NAME_CHANGE = 13, /* Fabric Name/WWN change */
404 BFA_PORT_AEN_SFP_ACCESS_ERROR = 14, /* SFP read error event */
405 BFA_PORT_AEN_SFP_UNSUPPORT = 15, /* Unsupported SFP event */
406};
407
408enum bfa_port_aen_sfp_pom {
409 BFA_PORT_AEN_SFP_POM_GREEN = 1, /* Normal */
410 BFA_PORT_AEN_SFP_POM_AMBER = 2, /* Warning */
411 BFA_PORT_AEN_SFP_POM_RED = 3, /* Critical */
412 BFA_PORT_AEN_SFP_POM_MAX = BFA_PORT_AEN_SFP_POM_RED
413};
414
415struct bfa_port_aen_data_s {
416 wwn_t pwwn; /* WWN of the physical port */
417 wwn_t fwwn; /* WWN of the fabric port */
418 u32 phy_port_num; /* For SFP related events */
419 u16 ioc_type;
420 u16 level; /* Only transitions will be informed */
421 mac_t mac; /* MAC address of the ethernet port */
422 u16 rsvd;
423};
424
425/* BFA AEN logical port events */
426enum bfa_lport_aen_event {
427 BFA_LPORT_AEN_NEW = 1, /* LPort created event */
428 BFA_LPORT_AEN_DELETE = 2, /* LPort deleted event */
429 BFA_LPORT_AEN_ONLINE = 3, /* LPort online event */
430 BFA_LPORT_AEN_OFFLINE = 4, /* LPort offline event */
431 BFA_LPORT_AEN_DISCONNECT = 5, /* LPort disconnect event */
432 BFA_LPORT_AEN_NEW_PROP = 6, /* VPort created event */
433 BFA_LPORT_AEN_DELETE_PROP = 7, /* VPort deleted event */
434 BFA_LPORT_AEN_NEW_STANDARD = 8, /* VPort created event */
435 BFA_LPORT_AEN_DELETE_STANDARD = 9, /* VPort deleted event */
436 BFA_LPORT_AEN_NPIV_DUP_WWN = 10, /* VPort with duplicate WWN */
437 BFA_LPORT_AEN_NPIV_FABRIC_MAX = 11, /* Max NPIV in fabric/fport */
438 BFA_LPORT_AEN_NPIV_UNKNOWN = 12, /* Unknown NPIV Error code */
439};
440
441struct bfa_lport_aen_data_s {
442 u16 vf_id; /* vf_id of this logical port */
443 u16 roles; /* Logical port mode,IM/TM/IP etc */
444 u32 rsvd;
445 wwn_t ppwwn; /* WWN of its physical port */
446 wwn_t lpwwn; /* WWN of this logical port */
447};
448
449/* BFA ITNIM events */
450enum bfa_itnim_aen_event {
451 BFA_ITNIM_AEN_ONLINE = 1, /* Target online */
452 BFA_ITNIM_AEN_OFFLINE = 2, /* Target offline */
453 BFA_ITNIM_AEN_DISCONNECT = 3, /* Target disconnected */
454};
455
456struct bfa_itnim_aen_data_s {
457 u16 vf_id; /* vf_id of the IT nexus */
458 u16 rsvd[3];
459 wwn_t ppwwn; /* WWN of its physical port */
460 wwn_t lpwwn; /* WWN of logical port */
461 wwn_t rpwwn; /* WWN of remote(target) port */
462};
463
464/* BFA audit events */
465enum bfa_audit_aen_event {
466 BFA_AUDIT_AEN_AUTH_ENABLE = 1,
467 BFA_AUDIT_AEN_AUTH_DISABLE = 2,
468 BFA_AUDIT_AEN_FLASH_ERASE = 3,
469 BFA_AUDIT_AEN_FLASH_UPDATE = 4,
470};
471
472struct bfa_audit_aen_data_s {
473 wwn_t pwwn;
474 int partition_inst;
475 int partition_type;
476};
477
478/* BFA IOC level events */
479enum bfa_ioc_aen_event {
480 BFA_IOC_AEN_HBGOOD = 1, /* Heart Beat restore event */
481 BFA_IOC_AEN_HBFAIL = 2, /* Heart Beat failure event */
482 BFA_IOC_AEN_ENABLE = 3, /* IOC enabled event */
483 BFA_IOC_AEN_DISABLE = 4, /* IOC disabled event */
484 BFA_IOC_AEN_FWMISMATCH = 5, /* IOC firmware mismatch */
485 BFA_IOC_AEN_FWCFG_ERROR = 6, /* IOC firmware config error */
486 BFA_IOC_AEN_INVALID_VENDOR = 7,
487 BFA_IOC_AEN_INVALID_NWWN = 8, /* Zero NWWN */
488 BFA_IOC_AEN_INVALID_PWWN = 9 /* Zero PWWN */
489};
490
491struct bfa_ioc_aen_data_s {
492 wwn_t pwwn;
493 u16 ioc_type;
494 mac_t mac;
495};
496
497/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700498 * ---------------------- mfg definitions ------------
499 */
500
Jing Huangacdc79a2010-10-18 17:15:55 -0700501/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700502 * Checksum size
503 */
504#define BFA_MFG_CHKSUM_SIZE 16
505
506#define BFA_MFG_PARTNUM_SIZE 14
507#define BFA_MFG_SUPPLIER_ID_SIZE 10
508#define BFA_MFG_SUPPLIER_PARTNUM_SIZE 20
509#define BFA_MFG_SUPPLIER_SERIALNUM_SIZE 20
510#define BFA_MFG_SUPPLIER_REVISION_SIZE 4
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700511/*
512 * Initial capability definition
513 */
514#define BFA_MFG_IC_FC 0x01
515#define BFA_MFG_IC_ETH 0x02
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700516
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700517/*
518 * Adapter capability mask definition
519 */
520#define BFA_CM_HBA 0x01
521#define BFA_CM_CNA 0x02
522#define BFA_CM_NIC 0x04
523#define BFA_CM_FC16G 0x08
524#define BFA_CM_SRIOV 0x10
525#define BFA_CM_MEZZ 0x20
526
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700527#pragma pack(1)
528
Jing Huangacdc79a2010-10-18 17:15:55 -0700529/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700530 * All numerical fields are in big-endian format.
531 */
532struct bfa_mfg_block_s {
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700533 u8 version; /*!< manufacturing block version */
534 u8 mfg_sig[3]; /*!< characters 'M', 'F', 'G' */
535 u16 mfgsize; /*!< mfg block size */
536 u16 u16_chksum; /*!< old u16 checksum */
537 char brcd_serialnum[STRSZ(BFA_MFG_SERIALNUM_SIZE)];
538 char brcd_partnum[STRSZ(BFA_MFG_PARTNUM_SIZE)];
539 u8 mfg_day; /*!< manufacturing day */
540 u8 mfg_month; /*!< manufacturing month */
541 u16 mfg_year; /*!< manufacturing year */
542 wwn_t mfg_wwn; /*!< wwn base for this adapter */
543 u8 num_wwn; /*!< number of wwns assigned */
544 u8 mfg_speeds; /*!< speeds allowed for this adapter */
545 u8 rsv[2];
546 char supplier_id[STRSZ(BFA_MFG_SUPPLIER_ID_SIZE)];
547 char supplier_partnum[STRSZ(BFA_MFG_SUPPLIER_PARTNUM_SIZE)];
548 char supplier_serialnum[STRSZ(BFA_MFG_SUPPLIER_SERIALNUM_SIZE)];
549 char supplier_revision[STRSZ(BFA_MFG_SUPPLIER_REVISION_SIZE)];
550 mac_t mfg_mac; /*!< base mac address */
551 u8 num_mac; /*!< number of mac addresses */
552 u8 rsv2;
553 u32 card_type; /*!< card type */
554 char cap_nic; /*!< capability nic */
555 char cap_cna; /*!< capability cna */
556 char cap_hba; /*!< capability hba */
557 char cap_fc16g; /*!< capability fc 16g */
558 char cap_sriov; /*!< capability sriov */
559 char cap_mezz; /*!< capability mezz */
560 u8 rsv3;
561 u8 mfg_nports; /*!< number of ports */
562 char media[8]; /*!< xfi/xaui */
563 char initial_mode[8]; /*!< initial mode: hba/cna/nic */
564 u8 rsv4[84];
565 u8 md5_chksum[BFA_MFG_CHKSUM_SIZE]; /*!< md5 checksum */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700566};
567
568#pragma pack()
569
Jing Huangacdc79a2010-10-18 17:15:55 -0700570/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700571 * ---------------------- pci definitions ------------
572 */
573
Jing Huangacdc79a2010-10-18 17:15:55 -0700574/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700575 * PCI device and vendor ID information
576 */
577enum {
578 BFA_PCI_VENDOR_ID_BROCADE = 0x1657,
579 BFA_PCI_DEVICE_ID_FC_8G2P = 0x13,
580 BFA_PCI_DEVICE_ID_FC_8G1P = 0x17,
581 BFA_PCI_DEVICE_ID_CT = 0x14,
582 BFA_PCI_DEVICE_ID_CT_FC = 0x21,
Krishna Gudipati11189202011-06-13 15:50:35 -0700583 BFA_PCI_DEVICE_ID_CT2 = 0x22,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700584};
585
Krishna Gudipati11189202011-06-13 15:50:35 -0700586#define bfa_asic_id_cb(__d) \
587 ((__d) == BFA_PCI_DEVICE_ID_FC_8G2P || \
588 (__d) == BFA_PCI_DEVICE_ID_FC_8G1P)
589#define bfa_asic_id_ct(__d) \
590 ((__d) == BFA_PCI_DEVICE_ID_CT || \
591 (__d) == BFA_PCI_DEVICE_ID_CT_FC)
592#define bfa_asic_id_ct2(__d) ((__d) == BFA_PCI_DEVICE_ID_CT2)
593#define bfa_asic_id_ctc(__d) \
594 (bfa_asic_id_ct(__d) || bfa_asic_id_ct2(__d))
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700595
Jing Huangacdc79a2010-10-18 17:15:55 -0700596/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700597 * PCI sub-system device and vendor ID information
598 */
599enum {
600 BFA_PCI_FCOE_SSDEVICE_ID = 0x14,
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700601 BFA_PCI_CT2_SSID_FCoE = 0x22,
602 BFA_PCI_CT2_SSID_ETH = 0x23,
603 BFA_PCI_CT2_SSID_FC = 0x24,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700604};
605
Jing Huangacdc79a2010-10-18 17:15:55 -0700606/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700607 * Maximum number of device address ranges mapped through different BAR(s)
608 */
609#define BFA_PCI_ACCESS_RANGES 1
610
611/*
612 * Port speed settings. Each specific speed is a bit field. Use multiple
613 * bits to specify speeds to be selected for auto-negotiation.
614 */
615enum bfa_port_speed {
616 BFA_PORT_SPEED_UNKNOWN = 0,
617 BFA_PORT_SPEED_1GBPS = 1,
618 BFA_PORT_SPEED_2GBPS = 2,
619 BFA_PORT_SPEED_4GBPS = 4,
620 BFA_PORT_SPEED_8GBPS = 8,
621 BFA_PORT_SPEED_10GBPS = 10,
622 BFA_PORT_SPEED_16GBPS = 16,
Krishna Gudipatia7141342011-06-24 20:23:19 -0700623 BFA_PORT_SPEED_AUTO = 0xf,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700624};
625#define bfa_port_speed_t enum bfa_port_speed
626
627enum {
628 BFA_BOOT_BOOTLUN_MAX = 4, /* maximum boot lun per IOC */
629 BFA_PREBOOT_BOOTLUN_MAX = 8, /* maximum preboot lun per IOC */
630};
631
632#define BOOT_CFG_REV1 1
633#define BOOT_CFG_VLAN 1
634
Jing Huangacdc79a2010-10-18 17:15:55 -0700635/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700636 * Boot options setting. Boot options setting determines from where
637 * to get the boot lun information
638 */
639enum bfa_boot_bootopt {
640 BFA_BOOT_AUTO_DISCOVER = 0, /* Boot from blun provided by fabric */
641 BFA_BOOT_STORED_BLUN = 1, /* Boot from bluns stored in flash */
642 BFA_BOOT_FIRST_LUN = 2, /* Boot from first discovered blun */
643 BFA_BOOT_PBC = 3, /* Boot from pbc configured blun */
644};
645
646#pragma pack(1)
Jing Huangacdc79a2010-10-18 17:15:55 -0700647/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700648 * Boot lun information.
649 */
650struct bfa_boot_bootlun_s {
Maggie Zhangf3148782010-12-09 19:11:39 -0800651 wwn_t pwwn; /* port wwn of target */
652 struct scsi_lun lun; /* 64-bit lun */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700653};
654#pragma pack()
655
Jing Huangacdc79a2010-10-18 17:15:55 -0700656/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700657 * BOOT boot configuraton
658 */
659struct bfa_boot_pbc_s {
660 u8 enable; /* enable/disable SAN boot */
661 u8 speed; /* boot speed settings */
662 u8 topology; /* boot topology setting */
663 u8 rsvd1;
664 u32 nbluns; /* number of boot luns */
665 struct bfa_boot_bootlun_s pblun[BFA_PREBOOT_BOOTLUN_MAX];
666};
667
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700668/*
669 * ASIC block configuration related structures
670 */
671#define BFA_ABLK_MAX_PORTS 2
672#define BFA_ABLK_MAX_PFS 16
673#define BFA_ABLK_MAX 2
674
675#pragma pack(1)
676enum bfa_mode_s {
677 BFA_MODE_HBA = 1,
678 BFA_MODE_CNA = 2,
679 BFA_MODE_NIC = 3
680};
681
682struct bfa_adapter_cfg_mode_s {
683 u16 max_pf;
684 u16 max_vf;
685 enum bfa_mode_s mode;
686};
687
688struct bfa_ablk_cfg_pf_s {
689 u16 pers;
690 u8 port_id;
691 u8 optrom;
692 u8 valid;
693 u8 sriov;
694 u8 max_vfs;
695 u8 rsvd[1];
696 u16 num_qpairs;
697 u16 num_vectors;
698 u32 bw;
699};
700
701struct bfa_ablk_cfg_port_s {
702 u8 mode;
703 u8 type;
704 u8 max_pfs;
705 u8 rsvd[5];
706};
707
708struct bfa_ablk_cfg_inst_s {
709 u8 nports;
710 u8 max_pfs;
711 u8 rsvd[6];
712 struct bfa_ablk_cfg_pf_s pf_cfg[BFA_ABLK_MAX_PFS];
713 struct bfa_ablk_cfg_port_s port_cfg[BFA_ABLK_MAX_PORTS];
714};
715
716struct bfa_ablk_cfg_s {
717 struct bfa_ablk_cfg_inst_s inst[BFA_ABLK_MAX];
718};
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700719
720
721/*
722 * SFP module specific
723 */
724#define SFP_DIAGMON_SIZE 10 /* num bytes of diag monitor data */
725
Krishna Gudipati7826f302011-07-20 16:59:13 -0700726/* SFP state change notification event */
727#define BFA_SFP_SCN_REMOVED 0
728#define BFA_SFP_SCN_INSERTED 1
729#define BFA_SFP_SCN_POM 2
730#define BFA_SFP_SCN_FAILED 3
731#define BFA_SFP_SCN_UNSUPPORT 4
732#define BFA_SFP_SCN_VALID 5
733
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700734enum bfa_defs_sfp_media_e {
735 BFA_SFP_MEDIA_UNKNOWN = 0x00,
736 BFA_SFP_MEDIA_CU = 0x01,
737 BFA_SFP_MEDIA_LW = 0x02,
738 BFA_SFP_MEDIA_SW = 0x03,
739 BFA_SFP_MEDIA_EL = 0x04,
740 BFA_SFP_MEDIA_UNSUPPORT = 0x05,
741};
742
743/*
744 * values for xmtr_tech above
745 */
746enum {
747 SFP_XMTR_TECH_CU = (1 << 0), /* copper FC-BaseT */
748 SFP_XMTR_TECH_CP = (1 << 1), /* copper passive */
749 SFP_XMTR_TECH_CA = (1 << 2), /* copper active */
750 SFP_XMTR_TECH_LL = (1 << 3), /* longwave laser */
751 SFP_XMTR_TECH_SL = (1 << 4), /* shortwave laser w/ OFC */
752 SFP_XMTR_TECH_SN = (1 << 5), /* shortwave laser w/o OFC */
753 SFP_XMTR_TECH_EL_INTRA = (1 << 6), /* elec intra-enclosure */
754 SFP_XMTR_TECH_EL_INTER = (1 << 7), /* elec inter-enclosure */
755 SFP_XMTR_TECH_LC = (1 << 8), /* longwave laser */
756 SFP_XMTR_TECH_SA = (1 << 9)
757};
758
759/*
760 * Serial ID: Data Fields -- Address A0h
761 * Basic ID field total 64 bytes
762 */
763struct sfp_srlid_base_s {
764 u8 id; /* 00: Identifier */
765 u8 extid; /* 01: Extended Identifier */
766 u8 connector; /* 02: Connector */
767 u8 xcvr[8]; /* 03-10: Transceiver */
768 u8 encoding; /* 11: Encoding */
769 u8 br_norm; /* 12: BR, Nominal */
770 u8 rate_id; /* 13: Rate Identifier */
771 u8 len_km; /* 14: Length single mode km */
772 u8 len_100m; /* 15: Length single mode 100m */
773 u8 len_om2; /* 16: Length om2 fiber 10m */
774 u8 len_om1; /* 17: Length om1 fiber 10m */
775 u8 len_cu; /* 18: Length copper 1m */
776 u8 len_om3; /* 19: Length om3 fiber 10m */
777 u8 vendor_name[16];/* 20-35 */
778 u8 unalloc1;
779 u8 vendor_oui[3]; /* 37-39 */
780 u8 vendor_pn[16]; /* 40-55 */
781 u8 vendor_rev[4]; /* 56-59 */
782 u8 wavelen[2]; /* 60-61 */
783 u8 unalloc2;
784 u8 cc_base; /* 63: check code for base id field */
785};
786
787/*
788 * Serial ID: Data Fields -- Address A0h
789 * Extended id field total 32 bytes
790 */
791struct sfp_srlid_ext_s {
792 u8 options[2];
793 u8 br_max;
794 u8 br_min;
795 u8 vendor_sn[16];
796 u8 date_code[8];
797 u8 diag_mon_type; /* 92: Diagnostic Monitoring type */
798 u8 en_options;
799 u8 sff_8472;
800 u8 cc_ext;
801};
802
803/*
804 * Diagnostic: Data Fields -- Address A2h
805 * Diagnostic and control/status base field total 96 bytes
806 */
807struct sfp_diag_base_s {
808 /*
809 * Alarm and warning Thresholds 40 bytes
810 */
811 u8 temp_high_alarm[2]; /* 00-01 */
812 u8 temp_low_alarm[2]; /* 02-03 */
813 u8 temp_high_warning[2]; /* 04-05 */
814 u8 temp_low_warning[2]; /* 06-07 */
815
816 u8 volt_high_alarm[2]; /* 08-09 */
817 u8 volt_low_alarm[2]; /* 10-11 */
818 u8 volt_high_warning[2]; /* 12-13 */
819 u8 volt_low_warning[2]; /* 14-15 */
820
821 u8 bias_high_alarm[2]; /* 16-17 */
822 u8 bias_low_alarm[2]; /* 18-19 */
823 u8 bias_high_warning[2]; /* 20-21 */
824 u8 bias_low_warning[2]; /* 22-23 */
825
826 u8 tx_pwr_high_alarm[2]; /* 24-25 */
827 u8 tx_pwr_low_alarm[2]; /* 26-27 */
828 u8 tx_pwr_high_warning[2]; /* 28-29 */
829 u8 tx_pwr_low_warning[2]; /* 30-31 */
830
831 u8 rx_pwr_high_alarm[2]; /* 32-33 */
832 u8 rx_pwr_low_alarm[2]; /* 34-35 */
833 u8 rx_pwr_high_warning[2]; /* 36-37 */
834 u8 rx_pwr_low_warning[2]; /* 38-39 */
835
836 u8 unallocate_1[16];
837
838 /*
839 * ext_cal_const[36]
840 */
841 u8 rx_pwr[20];
842 u8 tx_i[4];
843 u8 tx_pwr[4];
844 u8 temp[4];
845 u8 volt[4];
846 u8 unallocate_2[3];
847 u8 cc_dmi;
848};
849
850/*
851 * Diagnostic: Data Fields -- Address A2h
852 * Diagnostic and control/status extended field total 24 bytes
853 */
854struct sfp_diag_ext_s {
855 u8 diag[SFP_DIAGMON_SIZE];
856 u8 unalloc1[4];
857 u8 status_ctl;
858 u8 rsvd;
859 u8 alarm_flags[2];
860 u8 unalloc2[2];
861 u8 warning_flags[2];
862 u8 ext_status_ctl[2];
863};
864
865struct sfp_mem_s {
866 struct sfp_srlid_base_s srlid_base;
867 struct sfp_srlid_ext_s srlid_ext;
868 struct sfp_diag_base_s diag_base;
869 struct sfp_diag_ext_s diag_ext;
870};
871
872/*
873 * transceiver codes (SFF-8472 Rev 10.2 Table 3.5)
874 */
875union sfp_xcvr_e10g_code_u {
876 u8 b;
877 struct {
878#ifdef __BIGENDIAN
879 u8 e10g_unall:1; /* 10G Ethernet compliance */
880 u8 e10g_lrm:1;
881 u8 e10g_lr:1;
882 u8 e10g_sr:1;
883 u8 ib_sx:1; /* Infiniband compliance */
884 u8 ib_lx:1;
885 u8 ib_cu_a:1;
886 u8 ib_cu_p:1;
887#else
888 u8 ib_cu_p:1;
889 u8 ib_cu_a:1;
890 u8 ib_lx:1;
891 u8 ib_sx:1; /* Infiniband compliance */
892 u8 e10g_sr:1;
893 u8 e10g_lr:1;
894 u8 e10g_lrm:1;
895 u8 e10g_unall:1; /* 10G Ethernet compliance */
896#endif
897 } r;
898};
899
900union sfp_xcvr_so1_code_u {
901 u8 b;
902 struct {
903 u8 escon:2; /* ESCON compliance code */
904 u8 oc192_reach:1; /* SONET compliance code */
905 u8 so_reach:2;
906 u8 oc48_reach:3;
907 } r;
908};
909
910union sfp_xcvr_so2_code_u {
911 u8 b;
912 struct {
913 u8 reserved:1;
914 u8 oc12_reach:3; /* OC12 reach */
915 u8 reserved1:1;
916 u8 oc3_reach:3; /* OC3 reach */
917 } r;
918};
919
920union sfp_xcvr_eth_code_u {
921 u8 b;
922 struct {
923 u8 base_px:1;
924 u8 base_bx10:1;
925 u8 e100base_fx:1;
926 u8 e100base_lx:1;
927 u8 e1000base_t:1;
928 u8 e1000base_cx:1;
929 u8 e1000base_lx:1;
930 u8 e1000base_sx:1;
931 } r;
932};
933
934struct sfp_xcvr_fc1_code_s {
935 u8 link_len:5; /* FC link length */
936 u8 xmtr_tech2:3;
937 u8 xmtr_tech1:7; /* FC transmitter technology */
938 u8 reserved1:1;
939};
940
941union sfp_xcvr_fc2_code_u {
942 u8 b;
943 struct {
944 u8 tw_media:1; /* twin axial pair (tw) */
945 u8 tp_media:1; /* shielded twisted pair (sp) */
946 u8 mi_media:1; /* miniature coax (mi) */
947 u8 tv_media:1; /* video coax (tv) */
948 u8 m6_media:1; /* multimode, 62.5m (m6) */
949 u8 m5_media:1; /* multimode, 50m (m5) */
950 u8 reserved:1;
951 u8 sm_media:1; /* single mode (sm) */
952 } r;
953};
954
955union sfp_xcvr_fc3_code_u {
956 u8 b;
957 struct {
958#ifdef __BIGENDIAN
959 u8 rsv4:1;
960 u8 mb800:1; /* 800 Mbytes/sec */
961 u8 mb1600:1; /* 1600 Mbytes/sec */
962 u8 mb400:1; /* 400 Mbytes/sec */
963 u8 rsv2:1;
964 u8 mb200:1; /* 200 Mbytes/sec */
965 u8 rsv1:1;
966 u8 mb100:1; /* 100 Mbytes/sec */
967#else
968 u8 mb100:1; /* 100 Mbytes/sec */
969 u8 rsv1:1;
970 u8 mb200:1; /* 200 Mbytes/sec */
971 u8 rsv2:1;
972 u8 mb400:1; /* 400 Mbytes/sec */
973 u8 mb1600:1; /* 1600 Mbytes/sec */
974 u8 mb800:1; /* 800 Mbytes/sec */
975 u8 rsv4:1;
976#endif
977 } r;
978};
979
980struct sfp_xcvr_s {
981 union sfp_xcvr_e10g_code_u e10g;
982 union sfp_xcvr_so1_code_u so1;
983 union sfp_xcvr_so2_code_u so2;
984 union sfp_xcvr_eth_code_u eth;
985 struct sfp_xcvr_fc1_code_s fc1;
986 union sfp_xcvr_fc2_code_u fc2;
987 union sfp_xcvr_fc3_code_u fc3;
988};
989
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700990/*
991 * Flash module specific
992 */
993#define BFA_FLASH_PART_ENTRY_SIZE 32 /* partition entry size */
994#define BFA_FLASH_PART_MAX 32 /* maximal # of partitions */
995
996enum bfa_flash_part_type {
997 BFA_FLASH_PART_OPTROM = 1, /* option rom partition */
998 BFA_FLASH_PART_FWIMG = 2, /* firmware image partition */
999 BFA_FLASH_PART_FWCFG = 3, /* firmware tuneable config */
1000 BFA_FLASH_PART_DRV = 4, /* IOC driver config */
1001 BFA_FLASH_PART_BOOT = 5, /* boot config */
1002 BFA_FLASH_PART_ASIC = 6, /* asic bootstrap configuration */
1003 BFA_FLASH_PART_MFG = 7, /* manufacturing block partition */
1004 BFA_FLASH_PART_OPTROM2 = 8, /* 2nd option rom partition */
1005 BFA_FLASH_PART_VPD = 9, /* vpd data of OEM info */
1006 BFA_FLASH_PART_PBC = 10, /* pre-boot config */
1007 BFA_FLASH_PART_BOOTOVL = 11, /* boot overlay partition */
1008 BFA_FLASH_PART_LOG = 12, /* firmware log partition */
1009 BFA_FLASH_PART_PXECFG = 13, /* pxe boot config partition */
1010 BFA_FLASH_PART_PXEOVL = 14, /* pxe boot overlay partition */
1011 BFA_FLASH_PART_PORTCFG = 15, /* port cfg partition */
1012 BFA_FLASH_PART_ASICBK = 16, /* asic backup partition */
1013};
1014
1015/*
1016 * flash partition attributes
1017 */
1018struct bfa_flash_part_attr_s {
1019 u32 part_type; /* partition type */
1020 u32 part_instance; /* partition instance */
1021 u32 part_off; /* partition offset */
1022 u32 part_size; /* partition size */
1023 u32 part_len; /* partition content length */
1024 u32 part_status; /* partition status */
1025 char rsv[BFA_FLASH_PART_ENTRY_SIZE - 24];
1026};
1027
1028/*
1029 * flash attributes
1030 */
1031struct bfa_flash_attr_s {
1032 u32 status; /* flash overall status */
1033 u32 npart; /* num of partitions */
1034 struct bfa_flash_part_attr_s part[BFA_FLASH_PART_MAX];
1035};
1036
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001037/*
1038 * DIAG module specific
1039 */
1040#define LB_PATTERN_DEFAULT 0xB5B5B5B5
1041#define QTEST_CNT_DEFAULT 10
1042#define QTEST_PAT_DEFAULT LB_PATTERN_DEFAULT
1043
1044struct bfa_diag_memtest_s {
1045 u8 algo;
1046 u8 rsvd[7];
1047};
1048
1049struct bfa_diag_memtest_result {
1050 u32 status;
1051 u32 addr;
1052 u32 exp; /* expect value read from reg */
1053 u32 act; /* actually value read */
1054 u32 err_status; /* error status reg */
1055 u32 err_status1; /* extra error info reg */
1056 u32 err_addr; /* error address reg */
1057 u8 algo;
1058 u8 rsv[3];
1059};
1060
1061struct bfa_diag_loopback_result_s {
1062 u32 numtxmfrm; /* no. of transmit frame */
1063 u32 numosffrm; /* no. of outstanding frame */
1064 u32 numrcvfrm; /* no. of received good frame */
1065 u32 badfrminf; /* mis-match info */
1066 u32 badfrmnum; /* mis-match fram number */
1067 u8 status; /* loopback test result */
1068 u8 rsvd[3];
1069};
1070
1071struct bfa_diag_ledtest_s {
1072 u32 cmd; /* bfa_led_op_t */
1073 u32 color; /* bfa_led_color_t */
1074 u16 freq; /* no. of blinks every 10 secs */
1075 u8 led; /* bitmap of LEDs to be tested */
1076 u8 rsvd[5];
1077};
1078
1079struct bfa_diag_loopback_s {
1080 u32 loopcnt;
1081 u32 pattern;
1082 u8 lb_mode; /* bfa_port_opmode_t */
1083 u8 speed; /* bfa_port_speed_t */
1084 u8 rsvd[2];
1085};
1086
Krishna Gudipati3350d982011-06-24 20:28:37 -07001087/*
1088 * PHY module specific
1089 */
1090enum bfa_phy_status_e {
1091 BFA_PHY_STATUS_GOOD = 0, /* phy is good */
1092 BFA_PHY_STATUS_NOT_PRESENT = 1, /* phy does not exist */
1093 BFA_PHY_STATUS_BAD = 2, /* phy is bad */
1094};
1095
1096/*
1097 * phy attributes for phy query
1098 */
1099struct bfa_phy_attr_s {
1100 u32 status; /* phy present/absent status */
1101 u32 length; /* firmware length */
1102 u32 fw_ver; /* firmware version */
1103 u32 an_status; /* AN status */
1104 u32 pma_pmd_status; /* PMA/PMD link status */
1105 u32 pma_pmd_signal; /* PMA/PMD signal detect */
1106 u32 pcs_status; /* PCS link status */
1107};
1108
1109/*
1110 * phy stats
1111 */
1112struct bfa_phy_stats_s {
1113 u32 status; /* phy stats status */
1114 u32 link_breaks; /* Num of link breaks after linkup */
1115 u32 pma_pmd_fault; /* NPMA/PMD fault */
1116 u32 pcs_fault; /* PCS fault */
1117 u32 speed_neg; /* Num of speed negotiation */
1118 u32 tx_eq_training; /* Num of TX EQ training */
1119 u32 tx_eq_timeout; /* Num of TX EQ timeout */
1120 u32 crc_error; /* Num of CRC errors */
1121};
1122
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -07001123#pragma pack()
1124
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001125#endif /* __BFA_DEFS_H__ */