blob: 97ad07c4aee087c52f08cbeb7d3951aff6383d16 [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 Gudipatia36c61f2010-09-15 11:50:55 -0700135 BFA_STATUS_DEVBUSY = 13, /* Device busy - Retry operation */
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700136 BFA_STATUS_FLASH_BAD_LEN = 17, /* Flash bad length */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700137 BFA_STATUS_UNKNOWN_LWWN = 18, /* LPORT PWWN not found */
138 BFA_STATUS_UNKNOWN_RWWN = 19, /* RPORT PWWN not found */
139 BFA_STATUS_VPORT_EXISTS = 21, /* VPORT already exists */
140 BFA_STATUS_VPORT_MAX = 22, /* Reached max VPORT supported limit */
141 BFA_STATUS_UNSUPP_SPEED = 23, /* Invalid Speed Check speed setting */
142 BFA_STATUS_INVLD_DFSZ = 24, /* Invalid Max data field size */
143 BFA_STATUS_FABRIC_RJT = 29, /* Reject from attached fabric */
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700144 BFA_STATUS_PORT_OFFLINE = 34, /* Port is not online */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700145 BFA_STATUS_VPORT_WWN_BP = 46, /* WWN is same as base port's WWN */
146 BFA_STATUS_NO_FCPIM_NEXUS = 52, /* No FCP Nexus exists with the rport */
147 BFA_STATUS_IOC_FAILURE = 56, /* IOC failure - Retry, if persists
148 * contact support */
149 BFA_STATUS_INVALID_WWN = 57, /* Invalid WWN */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700150 BFA_STATUS_IOC_NON_OP = 61, /* IOC is not operational */
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700151 BFA_STATUS_VERSION_FAIL = 70, /* Application/Driver version mismatch */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700152 BFA_STATUS_DIAG_BUSY = 71, /* diag busy */
153 BFA_STATUS_ENOFSAVE = 78, /* No saved firmware trace */
154 BFA_STATUS_IOC_DISABLED = 82, /* IOC is already disabled */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700155 BFA_STATUS_NO_SFP_DEV = 89, /* No SFP device check or replace SFP */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700156 BFA_STATUS_INVALID_MAC = 134, /* Invalid MAC address */
157 BFA_STATUS_PBC = 154, /* Operation not allowed for pre-boot
158 * configuration */
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700159 BFA_STATUS_SFP_NOT_READY = 159, /* SFP info is not ready. Retry */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700160 BFA_STATUS_TRUNK_ENABLED = 164, /* Trunk is already enabled on
161 * this adapter */
162 BFA_STATUS_TRUNK_DISABLED = 165, /* Trunking is disabled on
163 * the adapter */
164 BFA_STATUS_IOPROFILE_OFF = 175, /* IO profile OFF */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700165 BFA_STATUS_FEATURE_NOT_SUPPORTED = 192, /* Feature not supported */
166 BFA_STATUS_FAA_ENABLED = 197, /* FAA is already enabled */
167 BFA_STATUS_FAA_DISABLED = 198, /* FAA is already disabled */
168 BFA_STATUS_FAA_ACQUIRED = 199, /* FAA is already acquired */
169 BFA_STATUS_FAA_ACQ_ADDR = 200, /* Acquiring addr */
170 BFA_STATUS_ERROR_TRUNK_ENABLED = 203, /* Trunk enabled on adapter */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700171 BFA_STATUS_MAX_VAL /* Unknown error code */
172};
173#define bfa_status_t enum bfa_status
174
175enum bfa_eproto_status {
176 BFA_EPROTO_BAD_ACCEPT = 0,
177 BFA_EPROTO_UNKNOWN_RSP = 1
178};
179#define bfa_eproto_status_t enum bfa_eproto_status
180
181enum bfa_boolean {
182 BFA_FALSE = 0,
183 BFA_TRUE = 1
184};
185#define bfa_boolean_t enum bfa_boolean
186
187#define BFA_STRING_32 32
188#define BFA_VERSION_LEN 64
189
Jing Huangacdc79a2010-10-18 17:15:55 -0700190/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700191 * ---------------------- adapter definitions ------------
192 */
193
Jing Huangacdc79a2010-10-18 17:15:55 -0700194/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700195 * BFA adapter level attributes.
196 */
197enum {
198 BFA_ADAPTER_SERIAL_NUM_LEN = STRSZ(BFA_MFG_SERIALNUM_SIZE),
199 /*
200 *!< adapter serial num length
201 */
202 BFA_ADAPTER_MODEL_NAME_LEN = 16, /* model name length */
203 BFA_ADAPTER_MODEL_DESCR_LEN = 128, /* model description length */
204 BFA_ADAPTER_MFG_NAME_LEN = 8, /* manufacturer name length */
205 BFA_ADAPTER_SYM_NAME_LEN = 64, /* adapter symbolic name length */
206 BFA_ADAPTER_OS_TYPE_LEN = 64, /* adapter os type length */
207};
208
209struct bfa_adapter_attr_s {
210 char manufacturer[BFA_ADAPTER_MFG_NAME_LEN];
211 char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
212 u32 card_type;
213 char model[BFA_ADAPTER_MODEL_NAME_LEN];
214 char model_descr[BFA_ADAPTER_MODEL_DESCR_LEN];
215 wwn_t pwwn;
216 char node_symname[FC_SYMNAME_MAX];
217 char hw_ver[BFA_VERSION_LEN];
218 char fw_ver[BFA_VERSION_LEN];
219 char optrom_ver[BFA_VERSION_LEN];
220 char os_type[BFA_ADAPTER_OS_TYPE_LEN];
221 struct bfa_mfg_vpd_s vpd;
222 struct mac_s mac;
223
224 u8 nports;
225 u8 max_speed;
226 u8 prototype;
227 char asic_rev;
228
229 u8 pcie_gen;
230 u8 pcie_lanes_orig;
231 u8 pcie_lanes;
232 u8 cna_capable;
233
234 u8 is_mezz;
235 u8 trunk_capable;
236};
237
Jing Huangacdc79a2010-10-18 17:15:55 -0700238/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700239 * ---------------------- IOC definitions ------------
240 */
241
242enum {
243 BFA_IOC_DRIVER_LEN = 16,
244 BFA_IOC_CHIP_REV_LEN = 8,
245};
246
Jing Huangacdc79a2010-10-18 17:15:55 -0700247/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700248 * Driver and firmware versions.
249 */
250struct bfa_ioc_driver_attr_s {
251 char driver[BFA_IOC_DRIVER_LEN]; /* driver name */
252 char driver_ver[BFA_VERSION_LEN]; /* driver version */
253 char fw_ver[BFA_VERSION_LEN]; /* firmware version */
254 char bios_ver[BFA_VERSION_LEN]; /* bios version */
255 char efi_ver[BFA_VERSION_LEN]; /* EFI version */
256 char ob_ver[BFA_VERSION_LEN]; /* openboot version */
257};
258
Jing Huangacdc79a2010-10-18 17:15:55 -0700259/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700260 * IOC PCI device attributes
261 */
262struct bfa_ioc_pci_attr_s {
263 u16 vendor_id; /* PCI vendor ID */
264 u16 device_id; /* PCI device ID */
265 u16 ssid; /* subsystem ID */
266 u16 ssvid; /* subsystem vendor ID */
267 u32 pcifn; /* PCI device function */
268 u32 rsvd; /* padding */
269 char chip_rev[BFA_IOC_CHIP_REV_LEN]; /* chip revision */
270};
271
Jing Huangacdc79a2010-10-18 17:15:55 -0700272/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700273 * IOC states
274 */
275enum bfa_ioc_state {
276 BFA_IOC_UNINIT = 1, /* IOC is in uninit state */
277 BFA_IOC_RESET = 2, /* IOC is in reset state */
278 BFA_IOC_SEMWAIT = 3, /* Waiting for IOC h/w semaphore */
279 BFA_IOC_HWINIT = 4, /* IOC h/w is being initialized */
280 BFA_IOC_GETATTR = 5, /* IOC is being configured */
281 BFA_IOC_OPERATIONAL = 6, /* IOC is operational */
282 BFA_IOC_INITFAIL = 7, /* IOC hardware failure */
283 BFA_IOC_FAIL = 8, /* IOC heart-beat failure */
284 BFA_IOC_DISABLING = 9, /* IOC is being disabled */
285 BFA_IOC_DISABLED = 10, /* IOC is disabled */
286 BFA_IOC_FWMISMATCH = 11, /* IOC f/w different from drivers */
287 BFA_IOC_ENABLING = 12, /* IOC is being enabled */
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700288 BFA_IOC_HWFAIL = 13, /* PCI mapping doesn't exist */
Krishna Gudipatia7141342011-06-24 20:23:19 -0700289 BFA_IOC_ACQ_ADDR = 14, /* Acquiring addr from fabric */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700290};
291
Jing Huangacdc79a2010-10-18 17:15:55 -0700292/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700293 * IOC firmware stats
294 */
295struct bfa_fw_ioc_stats_s {
296 u32 enable_reqs;
297 u32 disable_reqs;
298 u32 get_attr_reqs;
299 u32 dbg_sync;
300 u32 dbg_dump;
301 u32 unknown_reqs;
302};
303
Jing Huangacdc79a2010-10-18 17:15:55 -0700304/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700305 * IOC driver stats
306 */
307struct bfa_ioc_drv_stats_s {
308 u32 ioc_isrs;
309 u32 ioc_enables;
310 u32 ioc_disables;
311 u32 ioc_hbfails;
312 u32 ioc_boots;
313 u32 stats_tmos;
314 u32 hb_count;
315 u32 disable_reqs;
316 u32 enable_reqs;
317 u32 disable_replies;
318 u32 enable_replies;
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700319 u32 rsvd;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700320};
321
Jing Huangacdc79a2010-10-18 17:15:55 -0700322/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700323 * IOC statistics
324 */
325struct bfa_ioc_stats_s {
326 struct bfa_ioc_drv_stats_s drv_stats; /* driver IOC stats */
327 struct bfa_fw_ioc_stats_s fw_stats; /* firmware IOC stats */
328};
329
330enum bfa_ioc_type_e {
331 BFA_IOC_TYPE_FC = 1,
332 BFA_IOC_TYPE_FCoE = 2,
333 BFA_IOC_TYPE_LL = 3,
334};
335
Jing Huangacdc79a2010-10-18 17:15:55 -0700336/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700337 * IOC attributes returned in queries
338 */
339struct bfa_ioc_attr_s {
340 enum bfa_ioc_type_e ioc_type;
341 enum bfa_ioc_state state; /* IOC state */
342 struct bfa_adapter_attr_s adapter_attr; /* HBA attributes */
343 struct bfa_ioc_driver_attr_s driver_attr; /* driver attr */
344 struct bfa_ioc_pci_attr_s pci_attr;
345 u8 port_id; /* port number */
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700346 u8 port_mode; /* bfa_mode_s */
347 u8 cap_bm; /* capability */
348 u8 port_mode_cfg; /* bfa_mode_s */
349 u8 rsvd[4]; /* 64bit align */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700350};
351
Jing Huangacdc79a2010-10-18 17:15:55 -0700352/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700353 * ---------------------- mfg definitions ------------
354 */
355
Jing Huangacdc79a2010-10-18 17:15:55 -0700356/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700357 * Checksum size
358 */
359#define BFA_MFG_CHKSUM_SIZE 16
360
361#define BFA_MFG_PARTNUM_SIZE 14
362#define BFA_MFG_SUPPLIER_ID_SIZE 10
363#define BFA_MFG_SUPPLIER_PARTNUM_SIZE 20
364#define BFA_MFG_SUPPLIER_SERIALNUM_SIZE 20
365#define BFA_MFG_SUPPLIER_REVISION_SIZE 4
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700366/*
367 * Initial capability definition
368 */
369#define BFA_MFG_IC_FC 0x01
370#define BFA_MFG_IC_ETH 0x02
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700371
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700372/*
373 * Adapter capability mask definition
374 */
375#define BFA_CM_HBA 0x01
376#define BFA_CM_CNA 0x02
377#define BFA_CM_NIC 0x04
378#define BFA_CM_FC16G 0x08
379#define BFA_CM_SRIOV 0x10
380#define BFA_CM_MEZZ 0x20
381
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700382#pragma pack(1)
383
Jing Huangacdc79a2010-10-18 17:15:55 -0700384/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700385 * All numerical fields are in big-endian format.
386 */
387struct bfa_mfg_block_s {
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700388 u8 version; /*!< manufacturing block version */
389 u8 mfg_sig[3]; /*!< characters 'M', 'F', 'G' */
390 u16 mfgsize; /*!< mfg block size */
391 u16 u16_chksum; /*!< old u16 checksum */
392 char brcd_serialnum[STRSZ(BFA_MFG_SERIALNUM_SIZE)];
393 char brcd_partnum[STRSZ(BFA_MFG_PARTNUM_SIZE)];
394 u8 mfg_day; /*!< manufacturing day */
395 u8 mfg_month; /*!< manufacturing month */
396 u16 mfg_year; /*!< manufacturing year */
397 wwn_t mfg_wwn; /*!< wwn base for this adapter */
398 u8 num_wwn; /*!< number of wwns assigned */
399 u8 mfg_speeds; /*!< speeds allowed for this adapter */
400 u8 rsv[2];
401 char supplier_id[STRSZ(BFA_MFG_SUPPLIER_ID_SIZE)];
402 char supplier_partnum[STRSZ(BFA_MFG_SUPPLIER_PARTNUM_SIZE)];
403 char supplier_serialnum[STRSZ(BFA_MFG_SUPPLIER_SERIALNUM_SIZE)];
404 char supplier_revision[STRSZ(BFA_MFG_SUPPLIER_REVISION_SIZE)];
405 mac_t mfg_mac; /*!< base mac address */
406 u8 num_mac; /*!< number of mac addresses */
407 u8 rsv2;
408 u32 card_type; /*!< card type */
409 char cap_nic; /*!< capability nic */
410 char cap_cna; /*!< capability cna */
411 char cap_hba; /*!< capability hba */
412 char cap_fc16g; /*!< capability fc 16g */
413 char cap_sriov; /*!< capability sriov */
414 char cap_mezz; /*!< capability mezz */
415 u8 rsv3;
416 u8 mfg_nports; /*!< number of ports */
417 char media[8]; /*!< xfi/xaui */
418 char initial_mode[8]; /*!< initial mode: hba/cna/nic */
419 u8 rsv4[84];
420 u8 md5_chksum[BFA_MFG_CHKSUM_SIZE]; /*!< md5 checksum */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700421};
422
423#pragma pack()
424
Jing Huangacdc79a2010-10-18 17:15:55 -0700425/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700426 * ---------------------- pci definitions ------------
427 */
428
Jing Huangacdc79a2010-10-18 17:15:55 -0700429/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700430 * PCI device and vendor ID information
431 */
432enum {
433 BFA_PCI_VENDOR_ID_BROCADE = 0x1657,
434 BFA_PCI_DEVICE_ID_FC_8G2P = 0x13,
435 BFA_PCI_DEVICE_ID_FC_8G1P = 0x17,
436 BFA_PCI_DEVICE_ID_CT = 0x14,
437 BFA_PCI_DEVICE_ID_CT_FC = 0x21,
Krishna Gudipati11189202011-06-13 15:50:35 -0700438 BFA_PCI_DEVICE_ID_CT2 = 0x22,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700439};
440
Krishna Gudipati11189202011-06-13 15:50:35 -0700441#define bfa_asic_id_cb(__d) \
442 ((__d) == BFA_PCI_DEVICE_ID_FC_8G2P || \
443 (__d) == BFA_PCI_DEVICE_ID_FC_8G1P)
444#define bfa_asic_id_ct(__d) \
445 ((__d) == BFA_PCI_DEVICE_ID_CT || \
446 (__d) == BFA_PCI_DEVICE_ID_CT_FC)
447#define bfa_asic_id_ct2(__d) ((__d) == BFA_PCI_DEVICE_ID_CT2)
448#define bfa_asic_id_ctc(__d) \
449 (bfa_asic_id_ct(__d) || bfa_asic_id_ct2(__d))
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700450
Jing Huangacdc79a2010-10-18 17:15:55 -0700451/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700452 * PCI sub-system device and vendor ID information
453 */
454enum {
455 BFA_PCI_FCOE_SSDEVICE_ID = 0x14,
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700456 BFA_PCI_CT2_SSID_FCoE = 0x22,
457 BFA_PCI_CT2_SSID_ETH = 0x23,
458 BFA_PCI_CT2_SSID_FC = 0x24,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700459};
460
Jing Huangacdc79a2010-10-18 17:15:55 -0700461/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700462 * Maximum number of device address ranges mapped through different BAR(s)
463 */
464#define BFA_PCI_ACCESS_RANGES 1
465
466/*
467 * Port speed settings. Each specific speed is a bit field. Use multiple
468 * bits to specify speeds to be selected for auto-negotiation.
469 */
470enum bfa_port_speed {
471 BFA_PORT_SPEED_UNKNOWN = 0,
472 BFA_PORT_SPEED_1GBPS = 1,
473 BFA_PORT_SPEED_2GBPS = 2,
474 BFA_PORT_SPEED_4GBPS = 4,
475 BFA_PORT_SPEED_8GBPS = 8,
476 BFA_PORT_SPEED_10GBPS = 10,
477 BFA_PORT_SPEED_16GBPS = 16,
Krishna Gudipatia7141342011-06-24 20:23:19 -0700478 BFA_PORT_SPEED_AUTO = 0xf,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700479};
480#define bfa_port_speed_t enum bfa_port_speed
481
482enum {
483 BFA_BOOT_BOOTLUN_MAX = 4, /* maximum boot lun per IOC */
484 BFA_PREBOOT_BOOTLUN_MAX = 8, /* maximum preboot lun per IOC */
485};
486
487#define BOOT_CFG_REV1 1
488#define BOOT_CFG_VLAN 1
489
Jing Huangacdc79a2010-10-18 17:15:55 -0700490/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700491 * Boot options setting. Boot options setting determines from where
492 * to get the boot lun information
493 */
494enum bfa_boot_bootopt {
495 BFA_BOOT_AUTO_DISCOVER = 0, /* Boot from blun provided by fabric */
496 BFA_BOOT_STORED_BLUN = 1, /* Boot from bluns stored in flash */
497 BFA_BOOT_FIRST_LUN = 2, /* Boot from first discovered blun */
498 BFA_BOOT_PBC = 3, /* Boot from pbc configured blun */
499};
500
501#pragma pack(1)
Jing Huangacdc79a2010-10-18 17:15:55 -0700502/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700503 * Boot lun information.
504 */
505struct bfa_boot_bootlun_s {
Maggie Zhangf3148782010-12-09 19:11:39 -0800506 wwn_t pwwn; /* port wwn of target */
507 struct scsi_lun lun; /* 64-bit lun */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700508};
509#pragma pack()
510
Jing Huangacdc79a2010-10-18 17:15:55 -0700511/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700512 * BOOT boot configuraton
513 */
514struct bfa_boot_pbc_s {
515 u8 enable; /* enable/disable SAN boot */
516 u8 speed; /* boot speed settings */
517 u8 topology; /* boot topology setting */
518 u8 rsvd1;
519 u32 nbluns; /* number of boot luns */
520 struct bfa_boot_bootlun_s pblun[BFA_PREBOOT_BOOTLUN_MAX];
521};
522
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700523/*
524 * ASIC block configuration related structures
525 */
526#define BFA_ABLK_MAX_PORTS 2
527#define BFA_ABLK_MAX_PFS 16
528#define BFA_ABLK_MAX 2
529
530#pragma pack(1)
531enum bfa_mode_s {
532 BFA_MODE_HBA = 1,
533 BFA_MODE_CNA = 2,
534 BFA_MODE_NIC = 3
535};
536
537struct bfa_adapter_cfg_mode_s {
538 u16 max_pf;
539 u16 max_vf;
540 enum bfa_mode_s mode;
541};
542
543struct bfa_ablk_cfg_pf_s {
544 u16 pers;
545 u8 port_id;
546 u8 optrom;
547 u8 valid;
548 u8 sriov;
549 u8 max_vfs;
550 u8 rsvd[1];
551 u16 num_qpairs;
552 u16 num_vectors;
553 u32 bw;
554};
555
556struct bfa_ablk_cfg_port_s {
557 u8 mode;
558 u8 type;
559 u8 max_pfs;
560 u8 rsvd[5];
561};
562
563struct bfa_ablk_cfg_inst_s {
564 u8 nports;
565 u8 max_pfs;
566 u8 rsvd[6];
567 struct bfa_ablk_cfg_pf_s pf_cfg[BFA_ABLK_MAX_PFS];
568 struct bfa_ablk_cfg_port_s port_cfg[BFA_ABLK_MAX_PORTS];
569};
570
571struct bfa_ablk_cfg_s {
572 struct bfa_ablk_cfg_inst_s inst[BFA_ABLK_MAX];
573};
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700574
575
576/*
577 * SFP module specific
578 */
579#define SFP_DIAGMON_SIZE 10 /* num bytes of diag monitor data */
580
581enum bfa_defs_sfp_media_e {
582 BFA_SFP_MEDIA_UNKNOWN = 0x00,
583 BFA_SFP_MEDIA_CU = 0x01,
584 BFA_SFP_MEDIA_LW = 0x02,
585 BFA_SFP_MEDIA_SW = 0x03,
586 BFA_SFP_MEDIA_EL = 0x04,
587 BFA_SFP_MEDIA_UNSUPPORT = 0x05,
588};
589
590/*
591 * values for xmtr_tech above
592 */
593enum {
594 SFP_XMTR_TECH_CU = (1 << 0), /* copper FC-BaseT */
595 SFP_XMTR_TECH_CP = (1 << 1), /* copper passive */
596 SFP_XMTR_TECH_CA = (1 << 2), /* copper active */
597 SFP_XMTR_TECH_LL = (1 << 3), /* longwave laser */
598 SFP_XMTR_TECH_SL = (1 << 4), /* shortwave laser w/ OFC */
599 SFP_XMTR_TECH_SN = (1 << 5), /* shortwave laser w/o OFC */
600 SFP_XMTR_TECH_EL_INTRA = (1 << 6), /* elec intra-enclosure */
601 SFP_XMTR_TECH_EL_INTER = (1 << 7), /* elec inter-enclosure */
602 SFP_XMTR_TECH_LC = (1 << 8), /* longwave laser */
603 SFP_XMTR_TECH_SA = (1 << 9)
604};
605
606/*
607 * Serial ID: Data Fields -- Address A0h
608 * Basic ID field total 64 bytes
609 */
610struct sfp_srlid_base_s {
611 u8 id; /* 00: Identifier */
612 u8 extid; /* 01: Extended Identifier */
613 u8 connector; /* 02: Connector */
614 u8 xcvr[8]; /* 03-10: Transceiver */
615 u8 encoding; /* 11: Encoding */
616 u8 br_norm; /* 12: BR, Nominal */
617 u8 rate_id; /* 13: Rate Identifier */
618 u8 len_km; /* 14: Length single mode km */
619 u8 len_100m; /* 15: Length single mode 100m */
620 u8 len_om2; /* 16: Length om2 fiber 10m */
621 u8 len_om1; /* 17: Length om1 fiber 10m */
622 u8 len_cu; /* 18: Length copper 1m */
623 u8 len_om3; /* 19: Length om3 fiber 10m */
624 u8 vendor_name[16];/* 20-35 */
625 u8 unalloc1;
626 u8 vendor_oui[3]; /* 37-39 */
627 u8 vendor_pn[16]; /* 40-55 */
628 u8 vendor_rev[4]; /* 56-59 */
629 u8 wavelen[2]; /* 60-61 */
630 u8 unalloc2;
631 u8 cc_base; /* 63: check code for base id field */
632};
633
634/*
635 * Serial ID: Data Fields -- Address A0h
636 * Extended id field total 32 bytes
637 */
638struct sfp_srlid_ext_s {
639 u8 options[2];
640 u8 br_max;
641 u8 br_min;
642 u8 vendor_sn[16];
643 u8 date_code[8];
644 u8 diag_mon_type; /* 92: Diagnostic Monitoring type */
645 u8 en_options;
646 u8 sff_8472;
647 u8 cc_ext;
648};
649
650/*
651 * Diagnostic: Data Fields -- Address A2h
652 * Diagnostic and control/status base field total 96 bytes
653 */
654struct sfp_diag_base_s {
655 /*
656 * Alarm and warning Thresholds 40 bytes
657 */
658 u8 temp_high_alarm[2]; /* 00-01 */
659 u8 temp_low_alarm[2]; /* 02-03 */
660 u8 temp_high_warning[2]; /* 04-05 */
661 u8 temp_low_warning[2]; /* 06-07 */
662
663 u8 volt_high_alarm[2]; /* 08-09 */
664 u8 volt_low_alarm[2]; /* 10-11 */
665 u8 volt_high_warning[2]; /* 12-13 */
666 u8 volt_low_warning[2]; /* 14-15 */
667
668 u8 bias_high_alarm[2]; /* 16-17 */
669 u8 bias_low_alarm[2]; /* 18-19 */
670 u8 bias_high_warning[2]; /* 20-21 */
671 u8 bias_low_warning[2]; /* 22-23 */
672
673 u8 tx_pwr_high_alarm[2]; /* 24-25 */
674 u8 tx_pwr_low_alarm[2]; /* 26-27 */
675 u8 tx_pwr_high_warning[2]; /* 28-29 */
676 u8 tx_pwr_low_warning[2]; /* 30-31 */
677
678 u8 rx_pwr_high_alarm[2]; /* 32-33 */
679 u8 rx_pwr_low_alarm[2]; /* 34-35 */
680 u8 rx_pwr_high_warning[2]; /* 36-37 */
681 u8 rx_pwr_low_warning[2]; /* 38-39 */
682
683 u8 unallocate_1[16];
684
685 /*
686 * ext_cal_const[36]
687 */
688 u8 rx_pwr[20];
689 u8 tx_i[4];
690 u8 tx_pwr[4];
691 u8 temp[4];
692 u8 volt[4];
693 u8 unallocate_2[3];
694 u8 cc_dmi;
695};
696
697/*
698 * Diagnostic: Data Fields -- Address A2h
699 * Diagnostic and control/status extended field total 24 bytes
700 */
701struct sfp_diag_ext_s {
702 u8 diag[SFP_DIAGMON_SIZE];
703 u8 unalloc1[4];
704 u8 status_ctl;
705 u8 rsvd;
706 u8 alarm_flags[2];
707 u8 unalloc2[2];
708 u8 warning_flags[2];
709 u8 ext_status_ctl[2];
710};
711
712struct sfp_mem_s {
713 struct sfp_srlid_base_s srlid_base;
714 struct sfp_srlid_ext_s srlid_ext;
715 struct sfp_diag_base_s diag_base;
716 struct sfp_diag_ext_s diag_ext;
717};
718
719/*
720 * transceiver codes (SFF-8472 Rev 10.2 Table 3.5)
721 */
722union sfp_xcvr_e10g_code_u {
723 u8 b;
724 struct {
725#ifdef __BIGENDIAN
726 u8 e10g_unall:1; /* 10G Ethernet compliance */
727 u8 e10g_lrm:1;
728 u8 e10g_lr:1;
729 u8 e10g_sr:1;
730 u8 ib_sx:1; /* Infiniband compliance */
731 u8 ib_lx:1;
732 u8 ib_cu_a:1;
733 u8 ib_cu_p:1;
734#else
735 u8 ib_cu_p:1;
736 u8 ib_cu_a:1;
737 u8 ib_lx:1;
738 u8 ib_sx:1; /* Infiniband compliance */
739 u8 e10g_sr:1;
740 u8 e10g_lr:1;
741 u8 e10g_lrm:1;
742 u8 e10g_unall:1; /* 10G Ethernet compliance */
743#endif
744 } r;
745};
746
747union sfp_xcvr_so1_code_u {
748 u8 b;
749 struct {
750 u8 escon:2; /* ESCON compliance code */
751 u8 oc192_reach:1; /* SONET compliance code */
752 u8 so_reach:2;
753 u8 oc48_reach:3;
754 } r;
755};
756
757union sfp_xcvr_so2_code_u {
758 u8 b;
759 struct {
760 u8 reserved:1;
761 u8 oc12_reach:3; /* OC12 reach */
762 u8 reserved1:1;
763 u8 oc3_reach:3; /* OC3 reach */
764 } r;
765};
766
767union sfp_xcvr_eth_code_u {
768 u8 b;
769 struct {
770 u8 base_px:1;
771 u8 base_bx10:1;
772 u8 e100base_fx:1;
773 u8 e100base_lx:1;
774 u8 e1000base_t:1;
775 u8 e1000base_cx:1;
776 u8 e1000base_lx:1;
777 u8 e1000base_sx:1;
778 } r;
779};
780
781struct sfp_xcvr_fc1_code_s {
782 u8 link_len:5; /* FC link length */
783 u8 xmtr_tech2:3;
784 u8 xmtr_tech1:7; /* FC transmitter technology */
785 u8 reserved1:1;
786};
787
788union sfp_xcvr_fc2_code_u {
789 u8 b;
790 struct {
791 u8 tw_media:1; /* twin axial pair (tw) */
792 u8 tp_media:1; /* shielded twisted pair (sp) */
793 u8 mi_media:1; /* miniature coax (mi) */
794 u8 tv_media:1; /* video coax (tv) */
795 u8 m6_media:1; /* multimode, 62.5m (m6) */
796 u8 m5_media:1; /* multimode, 50m (m5) */
797 u8 reserved:1;
798 u8 sm_media:1; /* single mode (sm) */
799 } r;
800};
801
802union sfp_xcvr_fc3_code_u {
803 u8 b;
804 struct {
805#ifdef __BIGENDIAN
806 u8 rsv4:1;
807 u8 mb800:1; /* 800 Mbytes/sec */
808 u8 mb1600:1; /* 1600 Mbytes/sec */
809 u8 mb400:1; /* 400 Mbytes/sec */
810 u8 rsv2:1;
811 u8 mb200:1; /* 200 Mbytes/sec */
812 u8 rsv1:1;
813 u8 mb100:1; /* 100 Mbytes/sec */
814#else
815 u8 mb100:1; /* 100 Mbytes/sec */
816 u8 rsv1:1;
817 u8 mb200:1; /* 200 Mbytes/sec */
818 u8 rsv2:1;
819 u8 mb400:1; /* 400 Mbytes/sec */
820 u8 mb1600:1; /* 1600 Mbytes/sec */
821 u8 mb800:1; /* 800 Mbytes/sec */
822 u8 rsv4:1;
823#endif
824 } r;
825};
826
827struct sfp_xcvr_s {
828 union sfp_xcvr_e10g_code_u e10g;
829 union sfp_xcvr_so1_code_u so1;
830 union sfp_xcvr_so2_code_u so2;
831 union sfp_xcvr_eth_code_u eth;
832 struct sfp_xcvr_fc1_code_s fc1;
833 union sfp_xcvr_fc2_code_u fc2;
834 union sfp_xcvr_fc3_code_u fc3;
835};
836
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700837/*
838 * Flash module specific
839 */
840#define BFA_FLASH_PART_ENTRY_SIZE 32 /* partition entry size */
841#define BFA_FLASH_PART_MAX 32 /* maximal # of partitions */
842
843enum bfa_flash_part_type {
844 BFA_FLASH_PART_OPTROM = 1, /* option rom partition */
845 BFA_FLASH_PART_FWIMG = 2, /* firmware image partition */
846 BFA_FLASH_PART_FWCFG = 3, /* firmware tuneable config */
847 BFA_FLASH_PART_DRV = 4, /* IOC driver config */
848 BFA_FLASH_PART_BOOT = 5, /* boot config */
849 BFA_FLASH_PART_ASIC = 6, /* asic bootstrap configuration */
850 BFA_FLASH_PART_MFG = 7, /* manufacturing block partition */
851 BFA_FLASH_PART_OPTROM2 = 8, /* 2nd option rom partition */
852 BFA_FLASH_PART_VPD = 9, /* vpd data of OEM info */
853 BFA_FLASH_PART_PBC = 10, /* pre-boot config */
854 BFA_FLASH_PART_BOOTOVL = 11, /* boot overlay partition */
855 BFA_FLASH_PART_LOG = 12, /* firmware log partition */
856 BFA_FLASH_PART_PXECFG = 13, /* pxe boot config partition */
857 BFA_FLASH_PART_PXEOVL = 14, /* pxe boot overlay partition */
858 BFA_FLASH_PART_PORTCFG = 15, /* port cfg partition */
859 BFA_FLASH_PART_ASICBK = 16, /* asic backup partition */
860};
861
862/*
863 * flash partition attributes
864 */
865struct bfa_flash_part_attr_s {
866 u32 part_type; /* partition type */
867 u32 part_instance; /* partition instance */
868 u32 part_off; /* partition offset */
869 u32 part_size; /* partition size */
870 u32 part_len; /* partition content length */
871 u32 part_status; /* partition status */
872 char rsv[BFA_FLASH_PART_ENTRY_SIZE - 24];
873};
874
875/*
876 * flash attributes
877 */
878struct bfa_flash_attr_s {
879 u32 status; /* flash overall status */
880 u32 npart; /* num of partitions */
881 struct bfa_flash_part_attr_s part[BFA_FLASH_PART_MAX];
882};
883
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700884#pragma pack()
885
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700886#endif /* __BFA_DEFS_H__ */