bfa_defs.h 33 KB

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