bfa_defs.h 35 KB

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