bfa_defs.h 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981
  1. /*
  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. #ifndef __BFA_DEFS_H__
  18. #define __BFA_DEFS_H__
  19. #include "bfa_fc.h"
  20. #include "bfad_drv.h"
  21. #define BFA_MFG_SERIALNUM_SIZE 11
  22. #define STRSZ(_n) (((_n) + 4) & ~3)
  23. /*
  24. * Manufacturing card type
  25. */
  26. enum {
  27. BFA_MFG_TYPE_CB_MAX = 825, /* Crossbow card type max */
  28. BFA_MFG_TYPE_FC8P2 = 825, /* 8G 2port FC card */
  29. BFA_MFG_TYPE_FC8P1 = 815, /* 8G 1port FC card */
  30. BFA_MFG_TYPE_FC4P2 = 425, /* 4G 2port FC card */
  31. BFA_MFG_TYPE_FC4P1 = 415, /* 4G 1port FC card */
  32. BFA_MFG_TYPE_CNA10P2 = 1020, /* 10G 2port CNA card */
  33. BFA_MFG_TYPE_CNA10P1 = 1010, /* 10G 1port CNA card */
  34. BFA_MFG_TYPE_JAYHAWK = 804, /* Jayhawk mezz card */
  35. BFA_MFG_TYPE_WANCHESE = 1007, /* Wanchese mezz card */
  36. BFA_MFG_TYPE_ASTRA = 807, /* Astra mezz card */
  37. BFA_MFG_TYPE_LIGHTNING_P0 = 902, /* Lightning mezz card - old */
  38. BFA_MFG_TYPE_LIGHTNING = 1741, /* Lightning mezz card */
  39. BFA_MFG_TYPE_PROWLER_F = 1560, /* Prowler FC only cards */
  40. BFA_MFG_TYPE_PROWLER_N = 1410, /* Prowler NIC only cards */
  41. BFA_MFG_TYPE_PROWLER_C = 1710, /* Prowler CNA only cards */
  42. BFA_MFG_TYPE_PROWLER_D = 1860, /* Prowler Dual cards */
  43. BFA_MFG_TYPE_CHINOOK = 1867, /* Chinook cards */
  44. BFA_MFG_TYPE_INVALID = 0, /* Invalid card type */
  45. };
  46. #pragma pack(1)
  47. /*
  48. * Check if Mezz card
  49. */
  50. #define bfa_mfg_is_mezz(type) (( \
  51. (type) == BFA_MFG_TYPE_JAYHAWK || \
  52. (type) == BFA_MFG_TYPE_WANCHESE || \
  53. (type) == BFA_MFG_TYPE_ASTRA || \
  54. (type) == BFA_MFG_TYPE_LIGHTNING_P0 || \
  55. (type) == BFA_MFG_TYPE_LIGHTNING || \
  56. (type) == BFA_MFG_TYPE_CHINOOK))
  57. /*
  58. * Check if the card having old wwn/mac handling
  59. */
  60. #define bfa_mfg_is_old_wwn_mac_model(type) (( \
  61. (type) == BFA_MFG_TYPE_FC8P2 || \
  62. (type) == BFA_MFG_TYPE_FC8P1 || \
  63. (type) == BFA_MFG_TYPE_FC4P2 || \
  64. (type) == BFA_MFG_TYPE_FC4P1 || \
  65. (type) == BFA_MFG_TYPE_CNA10P2 || \
  66. (type) == BFA_MFG_TYPE_CNA10P1 || \
  67. (type) == BFA_MFG_TYPE_JAYHAWK || \
  68. (type) == BFA_MFG_TYPE_WANCHESE))
  69. #define bfa_mfg_increment_wwn_mac(m, i) \
  70. do { \
  71. u32 t = ((u32)(m)[0] << 16) | ((u32)(m)[1] << 8) | \
  72. (u32)(m)[2]; \
  73. t += (i); \
  74. (m)[0] = (t >> 16) & 0xFF; \
  75. (m)[1] = (t >> 8) & 0xFF; \
  76. (m)[2] = t & 0xFF; \
  77. } while (0)
  78. /*
  79. * VPD data length
  80. */
  81. #define BFA_MFG_VPD_LEN 512
  82. /*
  83. * VPD vendor tag
  84. */
  85. enum {
  86. BFA_MFG_VPD_UNKNOWN = 0, /* vendor unknown */
  87. BFA_MFG_VPD_IBM = 1, /* vendor IBM */
  88. BFA_MFG_VPD_HP = 2, /* vendor HP */
  89. BFA_MFG_VPD_DELL = 3, /* vendor DELL */
  90. BFA_MFG_VPD_PCI_IBM = 0x08, /* PCI VPD IBM */
  91. BFA_MFG_VPD_PCI_HP = 0x10, /* PCI VPD HP */
  92. BFA_MFG_VPD_PCI_DELL = 0x20, /* PCI VPD DELL */
  93. BFA_MFG_VPD_PCI_BRCD = 0xf8, /* PCI VPD Brocade */
  94. };
  95. /*
  96. * All numerical fields are in big-endian format.
  97. */
  98. struct bfa_mfg_vpd_s {
  99. u8 version; /* vpd data version */
  100. u8 vpd_sig[3]; /* characters 'V', 'P', 'D' */
  101. u8 chksum; /* u8 checksum */
  102. u8 vendor; /* vendor */
  103. u8 len; /* vpd data length excluding header */
  104. u8 rsv;
  105. u8 data[BFA_MFG_VPD_LEN]; /* vpd data */
  106. };
  107. #pragma pack()
  108. /*
  109. * Status return values
  110. */
  111. enum bfa_status {
  112. BFA_STATUS_OK = 0, /* Success */
  113. BFA_STATUS_FAILED = 1, /* Operation failed */
  114. BFA_STATUS_EINVAL = 2, /* Invalid params Check input
  115. * parameters */
  116. BFA_STATUS_ENOMEM = 3, /* Out of resources */
  117. BFA_STATUS_ETIMER = 5, /* Timer expired - Retry, if persists,
  118. * contact support */
  119. BFA_STATUS_EPROTOCOL = 6, /* Protocol error */
  120. BFA_STATUS_SFP_UNSUPP = 10, /* Unsupported SFP - Replace SFP */
  121. BFA_STATUS_UNKNOWN_VFID = 11, /* VF_ID not found */
  122. BFA_STATUS_DATACORRUPTED = 12, /* Diag returned data corrupted */
  123. BFA_STATUS_DEVBUSY = 13, /* Device busy - Retry operation */
  124. BFA_STATUS_HDMA_FAILED = 16, /* Host dma failed contact support */
  125. BFA_STATUS_FLASH_BAD_LEN = 17, /* Flash bad length */
  126. BFA_STATUS_UNKNOWN_LWWN = 18, /* LPORT PWWN not found */
  127. BFA_STATUS_UNKNOWN_RWWN = 19, /* RPORT PWWN not found */
  128. BFA_STATUS_VPORT_EXISTS = 21, /* VPORT already exists */
  129. BFA_STATUS_VPORT_MAX = 22, /* Reached max VPORT supported limit */
  130. BFA_STATUS_UNSUPP_SPEED = 23, /* Invalid Speed Check speed setting */
  131. BFA_STATUS_INVLD_DFSZ = 24, /* Invalid Max data field size */
  132. BFA_STATUS_CMD_NOTSUPP = 26, /* Command/API not supported */
  133. BFA_STATUS_FABRIC_RJT = 29, /* Reject from attached fabric */
  134. BFA_STATUS_PORT_OFFLINE = 34, /* Port is not online */
  135. BFA_STATUS_VPORT_WWN_BP = 46, /* WWN is same as base port's WWN */
  136. BFA_STATUS_PORT_NOT_DISABLED = 47, /* Port not disabled disable port */
  137. BFA_STATUS_NO_FCPIM_NEXUS = 52, /* No FCP Nexus exists with the rport */
  138. BFA_STATUS_IOC_FAILURE = 56, /* IOC failure - Retry, if persists
  139. * contact support */
  140. BFA_STATUS_INVALID_WWN = 57, /* Invalid WWN */
  141. BFA_STATUS_ADAPTER_ENABLED = 60, /* Adapter is not disabled */
  142. BFA_STATUS_IOC_NON_OP = 61, /* IOC is not operational */
  143. BFA_STATUS_VERSION_FAIL = 70, /* Application/Driver version mismatch */
  144. BFA_STATUS_DIAG_BUSY = 71, /* diag busy */
  145. BFA_STATUS_BEACON_ON = 72, /* Port Beacon already on */
  146. BFA_STATUS_ENOFSAVE = 78, /* No saved firmware trace */
  147. BFA_STATUS_IOC_DISABLED = 82, /* IOC is already disabled */
  148. BFA_STATUS_NO_SFP_DEV = 89, /* No SFP device check or replace SFP */
  149. BFA_STATUS_MEMTEST_FAILED = 90, /* Memory test failed contact support */
  150. BFA_STATUS_LEDTEST_OP = 109, /* LED test is operating */
  151. BFA_STATUS_INVALID_MAC = 134, /* Invalid MAC address */
  152. BFA_STATUS_PBC = 154, /* Operation not allowed for pre-boot
  153. * configuration */
  154. BFA_STATUS_SFP_NOT_READY = 159, /* SFP info is not ready. Retry */
  155. BFA_STATUS_TRUNK_ENABLED = 164, /* Trunk is already enabled on
  156. * this adapter */
  157. BFA_STATUS_TRUNK_DISABLED = 165, /* Trunking is disabled on
  158. * the adapter */
  159. BFA_STATUS_IOPROFILE_OFF = 175, /* IO profile OFF */
  160. BFA_STATUS_PHY_NOT_PRESENT = 183, /* PHY module not present */
  161. BFA_STATUS_FEATURE_NOT_SUPPORTED = 192, /* Feature not supported */
  162. BFA_STATUS_FAA_ENABLED = 197, /* FAA is already enabled */
  163. BFA_STATUS_FAA_DISABLED = 198, /* FAA is already disabled */
  164. BFA_STATUS_FAA_ACQUIRED = 199, /* FAA is already acquired */
  165. BFA_STATUS_FAA_ACQ_ADDR = 200, /* Acquiring addr */
  166. BFA_STATUS_ERROR_TRUNK_ENABLED = 203, /* Trunk enabled on adapter */
  167. BFA_STATUS_MAX_VAL /* Unknown error code */
  168. };
  169. #define bfa_status_t enum bfa_status
  170. enum bfa_eproto_status {
  171. BFA_EPROTO_BAD_ACCEPT = 0,
  172. BFA_EPROTO_UNKNOWN_RSP = 1
  173. };
  174. #define bfa_eproto_status_t enum bfa_eproto_status
  175. enum bfa_boolean {
  176. BFA_FALSE = 0,
  177. BFA_TRUE = 1
  178. };
  179. #define bfa_boolean_t enum bfa_boolean
  180. #define BFA_STRING_32 32
  181. #define BFA_VERSION_LEN 64
  182. /*
  183. * ---------------------- adapter definitions ------------
  184. */
  185. /*
  186. * BFA adapter level attributes.
  187. */
  188. enum {
  189. BFA_ADAPTER_SERIAL_NUM_LEN = STRSZ(BFA_MFG_SERIALNUM_SIZE),
  190. /*
  191. *!< adapter serial num length
  192. */
  193. BFA_ADAPTER_MODEL_NAME_LEN = 16, /* model name length */
  194. BFA_ADAPTER_MODEL_DESCR_LEN = 128, /* model description length */
  195. BFA_ADAPTER_MFG_NAME_LEN = 8, /* manufacturer name length */
  196. BFA_ADAPTER_SYM_NAME_LEN = 64, /* adapter symbolic name length */
  197. BFA_ADAPTER_OS_TYPE_LEN = 64, /* adapter os type length */
  198. };
  199. struct bfa_adapter_attr_s {
  200. char manufacturer[BFA_ADAPTER_MFG_NAME_LEN];
  201. char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
  202. u32 card_type;
  203. char model[BFA_ADAPTER_MODEL_NAME_LEN];
  204. char model_descr[BFA_ADAPTER_MODEL_DESCR_LEN];
  205. wwn_t pwwn;
  206. char node_symname[FC_SYMNAME_MAX];
  207. char hw_ver[BFA_VERSION_LEN];
  208. char fw_ver[BFA_VERSION_LEN];
  209. char optrom_ver[BFA_VERSION_LEN];
  210. char os_type[BFA_ADAPTER_OS_TYPE_LEN];
  211. struct bfa_mfg_vpd_s vpd;
  212. struct mac_s mac;
  213. u8 nports;
  214. u8 max_speed;
  215. u8 prototype;
  216. char asic_rev;
  217. u8 pcie_gen;
  218. u8 pcie_lanes_orig;
  219. u8 pcie_lanes;
  220. u8 cna_capable;
  221. u8 is_mezz;
  222. u8 trunk_capable;
  223. };
  224. /*
  225. * ---------------------- IOC definitions ------------
  226. */
  227. enum {
  228. BFA_IOC_DRIVER_LEN = 16,
  229. BFA_IOC_CHIP_REV_LEN = 8,
  230. };
  231. /*
  232. * Driver and firmware versions.
  233. */
  234. struct bfa_ioc_driver_attr_s {
  235. char driver[BFA_IOC_DRIVER_LEN]; /* driver name */
  236. char driver_ver[BFA_VERSION_LEN]; /* driver version */
  237. char fw_ver[BFA_VERSION_LEN]; /* firmware version */
  238. char bios_ver[BFA_VERSION_LEN]; /* bios version */
  239. char efi_ver[BFA_VERSION_LEN]; /* EFI version */
  240. char ob_ver[BFA_VERSION_LEN]; /* openboot version */
  241. };
  242. /*
  243. * IOC PCI device attributes
  244. */
  245. struct bfa_ioc_pci_attr_s {
  246. u16 vendor_id; /* PCI vendor ID */
  247. u16 device_id; /* PCI device ID */
  248. u16 ssid; /* subsystem ID */
  249. u16 ssvid; /* subsystem vendor ID */
  250. u32 pcifn; /* PCI device function */
  251. u32 rsvd; /* padding */
  252. char chip_rev[BFA_IOC_CHIP_REV_LEN]; /* chip revision */
  253. };
  254. /*
  255. * IOC states
  256. */
  257. enum bfa_ioc_state {
  258. BFA_IOC_UNINIT = 1, /* IOC is in uninit state */
  259. BFA_IOC_RESET = 2, /* IOC is in reset state */
  260. BFA_IOC_SEMWAIT = 3, /* Waiting for IOC h/w semaphore */
  261. BFA_IOC_HWINIT = 4, /* IOC h/w is being initialized */
  262. BFA_IOC_GETATTR = 5, /* IOC is being configured */
  263. BFA_IOC_OPERATIONAL = 6, /* IOC is operational */
  264. BFA_IOC_INITFAIL = 7, /* IOC hardware failure */
  265. BFA_IOC_FAIL = 8, /* IOC heart-beat failure */
  266. BFA_IOC_DISABLING = 9, /* IOC is being disabled */
  267. BFA_IOC_DISABLED = 10, /* IOC is disabled */
  268. BFA_IOC_FWMISMATCH = 11, /* IOC f/w different from drivers */
  269. BFA_IOC_ENABLING = 12, /* IOC is being enabled */
  270. BFA_IOC_HWFAIL = 13, /* PCI mapping doesn't exist */
  271. BFA_IOC_ACQ_ADDR = 14, /* Acquiring addr from fabric */
  272. };
  273. /*
  274. * IOC firmware stats
  275. */
  276. struct bfa_fw_ioc_stats_s {
  277. u32 enable_reqs;
  278. u32 disable_reqs;
  279. u32 get_attr_reqs;
  280. u32 dbg_sync;
  281. u32 dbg_dump;
  282. u32 unknown_reqs;
  283. };
  284. /*
  285. * IOC driver stats
  286. */
  287. struct bfa_ioc_drv_stats_s {
  288. u32 ioc_isrs;
  289. u32 ioc_enables;
  290. u32 ioc_disables;
  291. u32 ioc_hbfails;
  292. u32 ioc_boots;
  293. u32 stats_tmos;
  294. u32 hb_count;
  295. u32 disable_reqs;
  296. u32 enable_reqs;
  297. u32 disable_replies;
  298. u32 enable_replies;
  299. u32 rsvd;
  300. };
  301. /*
  302. * IOC statistics
  303. */
  304. struct bfa_ioc_stats_s {
  305. struct bfa_ioc_drv_stats_s drv_stats; /* driver IOC stats */
  306. struct bfa_fw_ioc_stats_s fw_stats; /* firmware IOC stats */
  307. };
  308. enum bfa_ioc_type_e {
  309. BFA_IOC_TYPE_FC = 1,
  310. BFA_IOC_TYPE_FCoE = 2,
  311. BFA_IOC_TYPE_LL = 3,
  312. };
  313. /*
  314. * IOC attributes returned in queries
  315. */
  316. struct bfa_ioc_attr_s {
  317. enum bfa_ioc_type_e ioc_type;
  318. enum bfa_ioc_state state; /* IOC state */
  319. struct bfa_adapter_attr_s adapter_attr; /* HBA attributes */
  320. struct bfa_ioc_driver_attr_s driver_attr; /* driver attr */
  321. struct bfa_ioc_pci_attr_s pci_attr;
  322. u8 port_id; /* port number */
  323. u8 port_mode; /* bfa_mode_s */
  324. u8 cap_bm; /* capability */
  325. u8 port_mode_cfg; /* bfa_mode_s */
  326. u8 rsvd[4]; /* 64bit align */
  327. };
  328. /*
  329. * ---------------------- mfg definitions ------------
  330. */
  331. /*
  332. * Checksum size
  333. */
  334. #define BFA_MFG_CHKSUM_SIZE 16
  335. #define BFA_MFG_PARTNUM_SIZE 14
  336. #define BFA_MFG_SUPPLIER_ID_SIZE 10
  337. #define BFA_MFG_SUPPLIER_PARTNUM_SIZE 20
  338. #define BFA_MFG_SUPPLIER_SERIALNUM_SIZE 20
  339. #define BFA_MFG_SUPPLIER_REVISION_SIZE 4
  340. /*
  341. * Initial capability definition
  342. */
  343. #define BFA_MFG_IC_FC 0x01
  344. #define BFA_MFG_IC_ETH 0x02
  345. /*
  346. * Adapter capability mask definition
  347. */
  348. #define BFA_CM_HBA 0x01
  349. #define BFA_CM_CNA 0x02
  350. #define BFA_CM_NIC 0x04
  351. #define BFA_CM_FC16G 0x08
  352. #define BFA_CM_SRIOV 0x10
  353. #define BFA_CM_MEZZ 0x20
  354. #pragma pack(1)
  355. /*
  356. * All numerical fields are in big-endian format.
  357. */
  358. struct bfa_mfg_block_s {
  359. u8 version; /*!< manufacturing block version */
  360. u8 mfg_sig[3]; /*!< characters 'M', 'F', 'G' */
  361. u16 mfgsize; /*!< mfg block size */
  362. u16 u16_chksum; /*!< old u16 checksum */
  363. char brcd_serialnum[STRSZ(BFA_MFG_SERIALNUM_SIZE)];
  364. char brcd_partnum[STRSZ(BFA_MFG_PARTNUM_SIZE)];
  365. u8 mfg_day; /*!< manufacturing day */
  366. u8 mfg_month; /*!< manufacturing month */
  367. u16 mfg_year; /*!< manufacturing year */
  368. wwn_t mfg_wwn; /*!< wwn base for this adapter */
  369. u8 num_wwn; /*!< number of wwns assigned */
  370. u8 mfg_speeds; /*!< speeds allowed for this adapter */
  371. u8 rsv[2];
  372. char supplier_id[STRSZ(BFA_MFG_SUPPLIER_ID_SIZE)];
  373. char supplier_partnum[STRSZ(BFA_MFG_SUPPLIER_PARTNUM_SIZE)];
  374. char supplier_serialnum[STRSZ(BFA_MFG_SUPPLIER_SERIALNUM_SIZE)];
  375. char supplier_revision[STRSZ(BFA_MFG_SUPPLIER_REVISION_SIZE)];
  376. mac_t mfg_mac; /*!< base mac address */
  377. u8 num_mac; /*!< number of mac addresses */
  378. u8 rsv2;
  379. u32 card_type; /*!< card type */
  380. char cap_nic; /*!< capability nic */
  381. char cap_cna; /*!< capability cna */
  382. char cap_hba; /*!< capability hba */
  383. char cap_fc16g; /*!< capability fc 16g */
  384. char cap_sriov; /*!< capability sriov */
  385. char cap_mezz; /*!< capability mezz */
  386. u8 rsv3;
  387. u8 mfg_nports; /*!< number of ports */
  388. char media[8]; /*!< xfi/xaui */
  389. char initial_mode[8]; /*!< initial mode: hba/cna/nic */
  390. u8 rsv4[84];
  391. u8 md5_chksum[BFA_MFG_CHKSUM_SIZE]; /*!< md5 checksum */
  392. };
  393. #pragma pack()
  394. /*
  395. * ---------------------- pci definitions ------------
  396. */
  397. /*
  398. * PCI device and vendor ID information
  399. */
  400. enum {
  401. BFA_PCI_VENDOR_ID_BROCADE = 0x1657,
  402. BFA_PCI_DEVICE_ID_FC_8G2P = 0x13,
  403. BFA_PCI_DEVICE_ID_FC_8G1P = 0x17,
  404. BFA_PCI_DEVICE_ID_CT = 0x14,
  405. BFA_PCI_DEVICE_ID_CT_FC = 0x21,
  406. BFA_PCI_DEVICE_ID_CT2 = 0x22,
  407. };
  408. #define bfa_asic_id_cb(__d) \
  409. ((__d) == BFA_PCI_DEVICE_ID_FC_8G2P || \
  410. (__d) == BFA_PCI_DEVICE_ID_FC_8G1P)
  411. #define bfa_asic_id_ct(__d) \
  412. ((__d) == BFA_PCI_DEVICE_ID_CT || \
  413. (__d) == BFA_PCI_DEVICE_ID_CT_FC)
  414. #define bfa_asic_id_ct2(__d) ((__d) == BFA_PCI_DEVICE_ID_CT2)
  415. #define bfa_asic_id_ctc(__d) \
  416. (bfa_asic_id_ct(__d) || bfa_asic_id_ct2(__d))
  417. /*
  418. * PCI sub-system device and vendor ID information
  419. */
  420. enum {
  421. BFA_PCI_FCOE_SSDEVICE_ID = 0x14,
  422. BFA_PCI_CT2_SSID_FCoE = 0x22,
  423. BFA_PCI_CT2_SSID_ETH = 0x23,
  424. BFA_PCI_CT2_SSID_FC = 0x24,
  425. };
  426. /*
  427. * Maximum number of device address ranges mapped through different BAR(s)
  428. */
  429. #define BFA_PCI_ACCESS_RANGES 1
  430. /*
  431. * Port speed settings. Each specific speed is a bit field. Use multiple
  432. * bits to specify speeds to be selected for auto-negotiation.
  433. */
  434. enum bfa_port_speed {
  435. BFA_PORT_SPEED_UNKNOWN = 0,
  436. BFA_PORT_SPEED_1GBPS = 1,
  437. BFA_PORT_SPEED_2GBPS = 2,
  438. BFA_PORT_SPEED_4GBPS = 4,
  439. BFA_PORT_SPEED_8GBPS = 8,
  440. BFA_PORT_SPEED_10GBPS = 10,
  441. BFA_PORT_SPEED_16GBPS = 16,
  442. BFA_PORT_SPEED_AUTO = 0xf,
  443. };
  444. #define bfa_port_speed_t enum bfa_port_speed
  445. enum {
  446. BFA_BOOT_BOOTLUN_MAX = 4, /* maximum boot lun per IOC */
  447. BFA_PREBOOT_BOOTLUN_MAX = 8, /* maximum preboot lun per IOC */
  448. };
  449. #define BOOT_CFG_REV1 1
  450. #define BOOT_CFG_VLAN 1
  451. /*
  452. * Boot options setting. Boot options setting determines from where
  453. * to get the boot lun information
  454. */
  455. enum bfa_boot_bootopt {
  456. BFA_BOOT_AUTO_DISCOVER = 0, /* Boot from blun provided by fabric */
  457. BFA_BOOT_STORED_BLUN = 1, /* Boot from bluns stored in flash */
  458. BFA_BOOT_FIRST_LUN = 2, /* Boot from first discovered blun */
  459. BFA_BOOT_PBC = 3, /* Boot from pbc configured blun */
  460. };
  461. #pragma pack(1)
  462. /*
  463. * Boot lun information.
  464. */
  465. struct bfa_boot_bootlun_s {
  466. wwn_t pwwn; /* port wwn of target */
  467. struct scsi_lun lun; /* 64-bit lun */
  468. };
  469. #pragma pack()
  470. /*
  471. * BOOT boot configuraton
  472. */
  473. struct bfa_boot_pbc_s {
  474. u8 enable; /* enable/disable SAN boot */
  475. u8 speed; /* boot speed settings */
  476. u8 topology; /* boot topology setting */
  477. u8 rsvd1;
  478. u32 nbluns; /* number of boot luns */
  479. struct bfa_boot_bootlun_s pblun[BFA_PREBOOT_BOOTLUN_MAX];
  480. };
  481. /*
  482. * ASIC block configuration related structures
  483. */
  484. #define BFA_ABLK_MAX_PORTS 2
  485. #define BFA_ABLK_MAX_PFS 16
  486. #define BFA_ABLK_MAX 2
  487. #pragma pack(1)
  488. enum bfa_mode_s {
  489. BFA_MODE_HBA = 1,
  490. BFA_MODE_CNA = 2,
  491. BFA_MODE_NIC = 3
  492. };
  493. struct bfa_adapter_cfg_mode_s {
  494. u16 max_pf;
  495. u16 max_vf;
  496. enum bfa_mode_s mode;
  497. };
  498. struct bfa_ablk_cfg_pf_s {
  499. u16 pers;
  500. u8 port_id;
  501. u8 optrom;
  502. u8 valid;
  503. u8 sriov;
  504. u8 max_vfs;
  505. u8 rsvd[1];
  506. u16 num_qpairs;
  507. u16 num_vectors;
  508. u32 bw;
  509. };
  510. struct bfa_ablk_cfg_port_s {
  511. u8 mode;
  512. u8 type;
  513. u8 max_pfs;
  514. u8 rsvd[5];
  515. };
  516. struct bfa_ablk_cfg_inst_s {
  517. u8 nports;
  518. u8 max_pfs;
  519. u8 rsvd[6];
  520. struct bfa_ablk_cfg_pf_s pf_cfg[BFA_ABLK_MAX_PFS];
  521. struct bfa_ablk_cfg_port_s port_cfg[BFA_ABLK_MAX_PORTS];
  522. };
  523. struct bfa_ablk_cfg_s {
  524. struct bfa_ablk_cfg_inst_s inst[BFA_ABLK_MAX];
  525. };
  526. /*
  527. * SFP module specific
  528. */
  529. #define SFP_DIAGMON_SIZE 10 /* num bytes of diag monitor data */
  530. enum bfa_defs_sfp_media_e {
  531. BFA_SFP_MEDIA_UNKNOWN = 0x00,
  532. BFA_SFP_MEDIA_CU = 0x01,
  533. BFA_SFP_MEDIA_LW = 0x02,
  534. BFA_SFP_MEDIA_SW = 0x03,
  535. BFA_SFP_MEDIA_EL = 0x04,
  536. BFA_SFP_MEDIA_UNSUPPORT = 0x05,
  537. };
  538. /*
  539. * values for xmtr_tech above
  540. */
  541. enum {
  542. SFP_XMTR_TECH_CU = (1 << 0), /* copper FC-BaseT */
  543. SFP_XMTR_TECH_CP = (1 << 1), /* copper passive */
  544. SFP_XMTR_TECH_CA = (1 << 2), /* copper active */
  545. SFP_XMTR_TECH_LL = (1 << 3), /* longwave laser */
  546. SFP_XMTR_TECH_SL = (1 << 4), /* shortwave laser w/ OFC */
  547. SFP_XMTR_TECH_SN = (1 << 5), /* shortwave laser w/o OFC */
  548. SFP_XMTR_TECH_EL_INTRA = (1 << 6), /* elec intra-enclosure */
  549. SFP_XMTR_TECH_EL_INTER = (1 << 7), /* elec inter-enclosure */
  550. SFP_XMTR_TECH_LC = (1 << 8), /* longwave laser */
  551. SFP_XMTR_TECH_SA = (1 << 9)
  552. };
  553. /*
  554. * Serial ID: Data Fields -- Address A0h
  555. * Basic ID field total 64 bytes
  556. */
  557. struct sfp_srlid_base_s {
  558. u8 id; /* 00: Identifier */
  559. u8 extid; /* 01: Extended Identifier */
  560. u8 connector; /* 02: Connector */
  561. u8 xcvr[8]; /* 03-10: Transceiver */
  562. u8 encoding; /* 11: Encoding */
  563. u8 br_norm; /* 12: BR, Nominal */
  564. u8 rate_id; /* 13: Rate Identifier */
  565. u8 len_km; /* 14: Length single mode km */
  566. u8 len_100m; /* 15: Length single mode 100m */
  567. u8 len_om2; /* 16: Length om2 fiber 10m */
  568. u8 len_om1; /* 17: Length om1 fiber 10m */
  569. u8 len_cu; /* 18: Length copper 1m */
  570. u8 len_om3; /* 19: Length om3 fiber 10m */
  571. u8 vendor_name[16];/* 20-35 */
  572. u8 unalloc1;
  573. u8 vendor_oui[3]; /* 37-39 */
  574. u8 vendor_pn[16]; /* 40-55 */
  575. u8 vendor_rev[4]; /* 56-59 */
  576. u8 wavelen[2]; /* 60-61 */
  577. u8 unalloc2;
  578. u8 cc_base; /* 63: check code for base id field */
  579. };
  580. /*
  581. * Serial ID: Data Fields -- Address A0h
  582. * Extended id field total 32 bytes
  583. */
  584. struct sfp_srlid_ext_s {
  585. u8 options[2];
  586. u8 br_max;
  587. u8 br_min;
  588. u8 vendor_sn[16];
  589. u8 date_code[8];
  590. u8 diag_mon_type; /* 92: Diagnostic Monitoring type */
  591. u8 en_options;
  592. u8 sff_8472;
  593. u8 cc_ext;
  594. };
  595. /*
  596. * Diagnostic: Data Fields -- Address A2h
  597. * Diagnostic and control/status base field total 96 bytes
  598. */
  599. struct sfp_diag_base_s {
  600. /*
  601. * Alarm and warning Thresholds 40 bytes
  602. */
  603. u8 temp_high_alarm[2]; /* 00-01 */
  604. u8 temp_low_alarm[2]; /* 02-03 */
  605. u8 temp_high_warning[2]; /* 04-05 */
  606. u8 temp_low_warning[2]; /* 06-07 */
  607. u8 volt_high_alarm[2]; /* 08-09 */
  608. u8 volt_low_alarm[2]; /* 10-11 */
  609. u8 volt_high_warning[2]; /* 12-13 */
  610. u8 volt_low_warning[2]; /* 14-15 */
  611. u8 bias_high_alarm[2]; /* 16-17 */
  612. u8 bias_low_alarm[2]; /* 18-19 */
  613. u8 bias_high_warning[2]; /* 20-21 */
  614. u8 bias_low_warning[2]; /* 22-23 */
  615. u8 tx_pwr_high_alarm[2]; /* 24-25 */
  616. u8 tx_pwr_low_alarm[2]; /* 26-27 */
  617. u8 tx_pwr_high_warning[2]; /* 28-29 */
  618. u8 tx_pwr_low_warning[2]; /* 30-31 */
  619. u8 rx_pwr_high_alarm[2]; /* 32-33 */
  620. u8 rx_pwr_low_alarm[2]; /* 34-35 */
  621. u8 rx_pwr_high_warning[2]; /* 36-37 */
  622. u8 rx_pwr_low_warning[2]; /* 38-39 */
  623. u8 unallocate_1[16];
  624. /*
  625. * ext_cal_const[36]
  626. */
  627. u8 rx_pwr[20];
  628. u8 tx_i[4];
  629. u8 tx_pwr[4];
  630. u8 temp[4];
  631. u8 volt[4];
  632. u8 unallocate_2[3];
  633. u8 cc_dmi;
  634. };
  635. /*
  636. * Diagnostic: Data Fields -- Address A2h
  637. * Diagnostic and control/status extended field total 24 bytes
  638. */
  639. struct sfp_diag_ext_s {
  640. u8 diag[SFP_DIAGMON_SIZE];
  641. u8 unalloc1[4];
  642. u8 status_ctl;
  643. u8 rsvd;
  644. u8 alarm_flags[2];
  645. u8 unalloc2[2];
  646. u8 warning_flags[2];
  647. u8 ext_status_ctl[2];
  648. };
  649. struct sfp_mem_s {
  650. struct sfp_srlid_base_s srlid_base;
  651. struct sfp_srlid_ext_s srlid_ext;
  652. struct sfp_diag_base_s diag_base;
  653. struct sfp_diag_ext_s diag_ext;
  654. };
  655. /*
  656. * transceiver codes (SFF-8472 Rev 10.2 Table 3.5)
  657. */
  658. union sfp_xcvr_e10g_code_u {
  659. u8 b;
  660. struct {
  661. #ifdef __BIGENDIAN
  662. u8 e10g_unall:1; /* 10G Ethernet compliance */
  663. u8 e10g_lrm:1;
  664. u8 e10g_lr:1;
  665. u8 e10g_sr:1;
  666. u8 ib_sx:1; /* Infiniband compliance */
  667. u8 ib_lx:1;
  668. u8 ib_cu_a:1;
  669. u8 ib_cu_p:1;
  670. #else
  671. u8 ib_cu_p:1;
  672. u8 ib_cu_a:1;
  673. u8 ib_lx:1;
  674. u8 ib_sx:1; /* Infiniband compliance */
  675. u8 e10g_sr:1;
  676. u8 e10g_lr:1;
  677. u8 e10g_lrm:1;
  678. u8 e10g_unall:1; /* 10G Ethernet compliance */
  679. #endif
  680. } r;
  681. };
  682. union sfp_xcvr_so1_code_u {
  683. u8 b;
  684. struct {
  685. u8 escon:2; /* ESCON compliance code */
  686. u8 oc192_reach:1; /* SONET compliance code */
  687. u8 so_reach:2;
  688. u8 oc48_reach:3;
  689. } r;
  690. };
  691. union sfp_xcvr_so2_code_u {
  692. u8 b;
  693. struct {
  694. u8 reserved:1;
  695. u8 oc12_reach:3; /* OC12 reach */
  696. u8 reserved1:1;
  697. u8 oc3_reach:3; /* OC3 reach */
  698. } r;
  699. };
  700. union sfp_xcvr_eth_code_u {
  701. u8 b;
  702. struct {
  703. u8 base_px:1;
  704. u8 base_bx10:1;
  705. u8 e100base_fx:1;
  706. u8 e100base_lx:1;
  707. u8 e1000base_t:1;
  708. u8 e1000base_cx:1;
  709. u8 e1000base_lx:1;
  710. u8 e1000base_sx:1;
  711. } r;
  712. };
  713. struct sfp_xcvr_fc1_code_s {
  714. u8 link_len:5; /* FC link length */
  715. u8 xmtr_tech2:3;
  716. u8 xmtr_tech1:7; /* FC transmitter technology */
  717. u8 reserved1:1;
  718. };
  719. union sfp_xcvr_fc2_code_u {
  720. u8 b;
  721. struct {
  722. u8 tw_media:1; /* twin axial pair (tw) */
  723. u8 tp_media:1; /* shielded twisted pair (sp) */
  724. u8 mi_media:1; /* miniature coax (mi) */
  725. u8 tv_media:1; /* video coax (tv) */
  726. u8 m6_media:1; /* multimode, 62.5m (m6) */
  727. u8 m5_media:1; /* multimode, 50m (m5) */
  728. u8 reserved:1;
  729. u8 sm_media:1; /* single mode (sm) */
  730. } r;
  731. };
  732. union sfp_xcvr_fc3_code_u {
  733. u8 b;
  734. struct {
  735. #ifdef __BIGENDIAN
  736. u8 rsv4:1;
  737. u8 mb800:1; /* 800 Mbytes/sec */
  738. u8 mb1600:1; /* 1600 Mbytes/sec */
  739. u8 mb400:1; /* 400 Mbytes/sec */
  740. u8 rsv2:1;
  741. u8 mb200:1; /* 200 Mbytes/sec */
  742. u8 rsv1:1;
  743. u8 mb100:1; /* 100 Mbytes/sec */
  744. #else
  745. u8 mb100:1; /* 100 Mbytes/sec */
  746. u8 rsv1:1;
  747. u8 mb200:1; /* 200 Mbytes/sec */
  748. u8 rsv2:1;
  749. u8 mb400:1; /* 400 Mbytes/sec */
  750. u8 mb1600:1; /* 1600 Mbytes/sec */
  751. u8 mb800:1; /* 800 Mbytes/sec */
  752. u8 rsv4:1;
  753. #endif
  754. } r;
  755. };
  756. struct sfp_xcvr_s {
  757. union sfp_xcvr_e10g_code_u e10g;
  758. union sfp_xcvr_so1_code_u so1;
  759. union sfp_xcvr_so2_code_u so2;
  760. union sfp_xcvr_eth_code_u eth;
  761. struct sfp_xcvr_fc1_code_s fc1;
  762. union sfp_xcvr_fc2_code_u fc2;
  763. union sfp_xcvr_fc3_code_u fc3;
  764. };
  765. /*
  766. * Flash module specific
  767. */
  768. #define BFA_FLASH_PART_ENTRY_SIZE 32 /* partition entry size */
  769. #define BFA_FLASH_PART_MAX 32 /* maximal # of partitions */
  770. enum bfa_flash_part_type {
  771. BFA_FLASH_PART_OPTROM = 1, /* option rom partition */
  772. BFA_FLASH_PART_FWIMG = 2, /* firmware image partition */
  773. BFA_FLASH_PART_FWCFG = 3, /* firmware tuneable config */
  774. BFA_FLASH_PART_DRV = 4, /* IOC driver config */
  775. BFA_FLASH_PART_BOOT = 5, /* boot config */
  776. BFA_FLASH_PART_ASIC = 6, /* asic bootstrap configuration */
  777. BFA_FLASH_PART_MFG = 7, /* manufacturing block partition */
  778. BFA_FLASH_PART_OPTROM2 = 8, /* 2nd option rom partition */
  779. BFA_FLASH_PART_VPD = 9, /* vpd data of OEM info */
  780. BFA_FLASH_PART_PBC = 10, /* pre-boot config */
  781. BFA_FLASH_PART_BOOTOVL = 11, /* boot overlay partition */
  782. BFA_FLASH_PART_LOG = 12, /* firmware log partition */
  783. BFA_FLASH_PART_PXECFG = 13, /* pxe boot config partition */
  784. BFA_FLASH_PART_PXEOVL = 14, /* pxe boot overlay partition */
  785. BFA_FLASH_PART_PORTCFG = 15, /* port cfg partition */
  786. BFA_FLASH_PART_ASICBK = 16, /* asic backup partition */
  787. };
  788. /*
  789. * flash partition attributes
  790. */
  791. struct bfa_flash_part_attr_s {
  792. u32 part_type; /* partition type */
  793. u32 part_instance; /* partition instance */
  794. u32 part_off; /* partition offset */
  795. u32 part_size; /* partition size */
  796. u32 part_len; /* partition content length */
  797. u32 part_status; /* partition status */
  798. char rsv[BFA_FLASH_PART_ENTRY_SIZE - 24];
  799. };
  800. /*
  801. * flash attributes
  802. */
  803. struct bfa_flash_attr_s {
  804. u32 status; /* flash overall status */
  805. u32 npart; /* num of partitions */
  806. struct bfa_flash_part_attr_s part[BFA_FLASH_PART_MAX];
  807. };
  808. /*
  809. * DIAG module specific
  810. */
  811. #define LB_PATTERN_DEFAULT 0xB5B5B5B5
  812. #define QTEST_CNT_DEFAULT 10
  813. #define QTEST_PAT_DEFAULT LB_PATTERN_DEFAULT
  814. struct bfa_diag_memtest_s {
  815. u8 algo;
  816. u8 rsvd[7];
  817. };
  818. struct bfa_diag_memtest_result {
  819. u32 status;
  820. u32 addr;
  821. u32 exp; /* expect value read from reg */
  822. u32 act; /* actually value read */
  823. u32 err_status; /* error status reg */
  824. u32 err_status1; /* extra error info reg */
  825. u32 err_addr; /* error address reg */
  826. u8 algo;
  827. u8 rsv[3];
  828. };
  829. struct bfa_diag_loopback_result_s {
  830. u32 numtxmfrm; /* no. of transmit frame */
  831. u32 numosffrm; /* no. of outstanding frame */
  832. u32 numrcvfrm; /* no. of received good frame */
  833. u32 badfrminf; /* mis-match info */
  834. u32 badfrmnum; /* mis-match fram number */
  835. u8 status; /* loopback test result */
  836. u8 rsvd[3];
  837. };
  838. struct bfa_diag_ledtest_s {
  839. u32 cmd; /* bfa_led_op_t */
  840. u32 color; /* bfa_led_color_t */
  841. u16 freq; /* no. of blinks every 10 secs */
  842. u8 led; /* bitmap of LEDs to be tested */
  843. u8 rsvd[5];
  844. };
  845. struct bfa_diag_loopback_s {
  846. u32 loopcnt;
  847. u32 pattern;
  848. u8 lb_mode; /* bfa_port_opmode_t */
  849. u8 speed; /* bfa_port_speed_t */
  850. u8 rsvd[2];
  851. };
  852. /*
  853. * PHY module specific
  854. */
  855. enum bfa_phy_status_e {
  856. BFA_PHY_STATUS_GOOD = 0, /* phy is good */
  857. BFA_PHY_STATUS_NOT_PRESENT = 1, /* phy does not exist */
  858. BFA_PHY_STATUS_BAD = 2, /* phy is bad */
  859. };
  860. /*
  861. * phy attributes for phy query
  862. */
  863. struct bfa_phy_attr_s {
  864. u32 status; /* phy present/absent status */
  865. u32 length; /* firmware length */
  866. u32 fw_ver; /* firmware version */
  867. u32 an_status; /* AN status */
  868. u32 pma_pmd_status; /* PMA/PMD link status */
  869. u32 pma_pmd_signal; /* PMA/PMD signal detect */
  870. u32 pcs_status; /* PCS link status */
  871. };
  872. /*
  873. * phy stats
  874. */
  875. struct bfa_phy_stats_s {
  876. u32 status; /* phy stats status */
  877. u32 link_breaks; /* Num of link breaks after linkup */
  878. u32 pma_pmd_fault; /* NPMA/PMD fault */
  879. u32 pcs_fault; /* PCS fault */
  880. u32 speed_neg; /* Num of speed negotiation */
  881. u32 tx_eq_training; /* Num of TX EQ training */
  882. u32 tx_eq_timeout; /* Num of TX EQ timeout */
  883. u32 crc_error; /* Num of CRC errors */
  884. };
  885. #pragma pack()
  886. #endif /* __BFA_DEFS_H__ */