be_cmds.h 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543
  1. /*
  2. * Copyright (C) 2005 - 2011 Emulex
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License version 2
  7. * as published by the Free Software Foundation. The full GNU General
  8. * Public License is included in this distribution in the file called COPYING.
  9. *
  10. * Contact Information:
  11. * linux-drivers@emulex.com
  12. *
  13. * Emulex
  14. * 3333 Susan Street
  15. * Costa Mesa, CA 92626
  16. */
  17. /*
  18. * The driver sends configuration and managements command requests to the
  19. * firmware in the BE. These requests are communicated to the processor
  20. * using Work Request Blocks (WRBs) submitted to the MCC-WRB ring or via one
  21. * WRB inside a MAILBOX.
  22. * The commands are serviced by the ARM processor in the BladeEngine's MPU.
  23. */
  24. struct be_sge {
  25. u32 pa_lo;
  26. u32 pa_hi;
  27. u32 len;
  28. };
  29. #define MCC_WRB_EMBEDDED_MASK 1 /* bit 0 of dword 0*/
  30. #define MCC_WRB_SGE_CNT_SHIFT 3 /* bits 3 - 7 of dword 0 */
  31. #define MCC_WRB_SGE_CNT_MASK 0x1F /* bits 3 - 7 of dword 0 */
  32. struct be_mcc_wrb {
  33. u32 embedded; /* dword 0 */
  34. u32 payload_length; /* dword 1 */
  35. u32 tag0; /* dword 2 */
  36. u32 tag1; /* dword 3 */
  37. u32 rsvd; /* dword 4 */
  38. union {
  39. u8 embedded_payload[236]; /* used by embedded cmds */
  40. struct be_sge sgl[19]; /* used by non-embedded cmds */
  41. } payload;
  42. };
  43. #define CQE_FLAGS_VALID_MASK (1 << 31)
  44. #define CQE_FLAGS_ASYNC_MASK (1 << 30)
  45. #define CQE_FLAGS_COMPLETED_MASK (1 << 28)
  46. #define CQE_FLAGS_CONSUMED_MASK (1 << 27)
  47. /* Completion Status */
  48. enum {
  49. MCC_STATUS_SUCCESS = 0,
  50. MCC_STATUS_FAILED = 1,
  51. MCC_STATUS_ILLEGAL_REQUEST = 2,
  52. MCC_STATUS_ILLEGAL_FIELD = 3,
  53. MCC_STATUS_INSUFFICIENT_BUFFER = 4,
  54. MCC_STATUS_UNAUTHORIZED_REQUEST = 5,
  55. MCC_STATUS_NOT_SUPPORTED = 66
  56. };
  57. #define CQE_STATUS_COMPL_MASK 0xFFFF
  58. #define CQE_STATUS_COMPL_SHIFT 0 /* bits 0 - 15 */
  59. #define CQE_STATUS_EXTD_MASK 0xFFFF
  60. #define CQE_STATUS_EXTD_SHIFT 16 /* bits 16 - 31 */
  61. struct be_mcc_compl {
  62. u32 status; /* dword 0 */
  63. u32 tag0; /* dword 1 */
  64. u32 tag1; /* dword 2 */
  65. u32 flags; /* dword 3 */
  66. };
  67. /* When the async bit of mcc_compl is set, the last 4 bytes of
  68. * mcc_compl is interpreted as follows:
  69. */
  70. #define ASYNC_TRAILER_EVENT_CODE_SHIFT 8 /* bits 8 - 15 */
  71. #define ASYNC_TRAILER_EVENT_CODE_MASK 0xFF
  72. #define ASYNC_TRAILER_EVENT_TYPE_SHIFT 16
  73. #define ASYNC_TRAILER_EVENT_TYPE_MASK 0xFF
  74. #define ASYNC_EVENT_CODE_LINK_STATE 0x1
  75. #define ASYNC_EVENT_CODE_GRP_5 0x5
  76. #define ASYNC_EVENT_QOS_SPEED 0x1
  77. #define ASYNC_EVENT_COS_PRIORITY 0x2
  78. #define ASYNC_EVENT_PVID_STATE 0x3
  79. struct be_async_event_trailer {
  80. u32 code;
  81. };
  82. enum {
  83. LINK_DOWN = 0x0,
  84. LINK_UP = 0x1
  85. };
  86. #define LINK_STATUS_MASK 0x1
  87. /* When the event code of an async trailer is link-state, the mcc_compl
  88. * must be interpreted as follows
  89. */
  90. struct be_async_event_link_state {
  91. u8 physical_port;
  92. u8 port_link_status;
  93. u8 port_duplex;
  94. u8 port_speed;
  95. u8 port_fault;
  96. u8 rsvd0[7];
  97. struct be_async_event_trailer trailer;
  98. } __packed;
  99. /* When the event code of an async trailer is GRP-5 and event_type is QOS_SPEED
  100. * the mcc_compl must be interpreted as follows
  101. */
  102. struct be_async_event_grp5_qos_link_speed {
  103. u8 physical_port;
  104. u8 rsvd[5];
  105. u16 qos_link_speed;
  106. u32 event_tag;
  107. struct be_async_event_trailer trailer;
  108. } __packed;
  109. /* When the event code of an async trailer is GRP5 and event type is
  110. * CoS-Priority, the mcc_compl must be interpreted as follows
  111. */
  112. struct be_async_event_grp5_cos_priority {
  113. u8 physical_port;
  114. u8 available_priority_bmap;
  115. u8 reco_default_priority;
  116. u8 valid;
  117. u8 rsvd0;
  118. u8 event_tag;
  119. struct be_async_event_trailer trailer;
  120. } __packed;
  121. /* When the event code of an async trailer is GRP5 and event type is
  122. * PVID state, the mcc_compl must be interpreted as follows
  123. */
  124. struct be_async_event_grp5_pvid_state {
  125. u8 enabled;
  126. u8 rsvd0;
  127. u16 tag;
  128. u32 event_tag;
  129. u32 rsvd1;
  130. struct be_async_event_trailer trailer;
  131. } __packed;
  132. struct be_mcc_mailbox {
  133. struct be_mcc_wrb wrb;
  134. struct be_mcc_compl compl;
  135. };
  136. #define CMD_SUBSYSTEM_COMMON 0x1
  137. #define CMD_SUBSYSTEM_ETH 0x3
  138. #define CMD_SUBSYSTEM_LOWLEVEL 0xb
  139. #define OPCODE_COMMON_NTWK_MAC_QUERY 1
  140. #define OPCODE_COMMON_NTWK_MAC_SET 2
  141. #define OPCODE_COMMON_NTWK_MULTICAST_SET 3
  142. #define OPCODE_COMMON_NTWK_VLAN_CONFIG 4
  143. #define OPCODE_COMMON_NTWK_LINK_STATUS_QUERY 5
  144. #define OPCODE_COMMON_READ_FLASHROM 6
  145. #define OPCODE_COMMON_WRITE_FLASHROM 7
  146. #define OPCODE_COMMON_CQ_CREATE 12
  147. #define OPCODE_COMMON_EQ_CREATE 13
  148. #define OPCODE_COMMON_MCC_CREATE 21
  149. #define OPCODE_COMMON_SET_QOS 28
  150. #define OPCODE_COMMON_MCC_CREATE_EXT 90
  151. #define OPCODE_COMMON_SEEPROM_READ 30
  152. #define OPCODE_COMMON_GET_CNTL_ATTRIBUTES 32
  153. #define OPCODE_COMMON_NTWK_RX_FILTER 34
  154. #define OPCODE_COMMON_GET_FW_VERSION 35
  155. #define OPCODE_COMMON_SET_FLOW_CONTROL 36
  156. #define OPCODE_COMMON_GET_FLOW_CONTROL 37
  157. #define OPCODE_COMMON_SET_FRAME_SIZE 39
  158. #define OPCODE_COMMON_MODIFY_EQ_DELAY 41
  159. #define OPCODE_COMMON_FIRMWARE_CONFIG 42
  160. #define OPCODE_COMMON_NTWK_INTERFACE_CREATE 50
  161. #define OPCODE_COMMON_NTWK_INTERFACE_DESTROY 51
  162. #define OPCODE_COMMON_MCC_DESTROY 53
  163. #define OPCODE_COMMON_CQ_DESTROY 54
  164. #define OPCODE_COMMON_EQ_DESTROY 55
  165. #define OPCODE_COMMON_QUERY_FIRMWARE_CONFIG 58
  166. #define OPCODE_COMMON_NTWK_PMAC_ADD 59
  167. #define OPCODE_COMMON_NTWK_PMAC_DEL 60
  168. #define OPCODE_COMMON_FUNCTION_RESET 61
  169. #define OPCODE_COMMON_MANAGE_FAT 68
  170. #define OPCODE_COMMON_ENABLE_DISABLE_BEACON 69
  171. #define OPCODE_COMMON_GET_BEACON_STATE 70
  172. #define OPCODE_COMMON_READ_TRANSRECV_DATA 73
  173. #define OPCODE_COMMON_GET_PHY_DETAILS 102
  174. #define OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP 103
  175. #define OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES 121
  176. #define OPCODE_COMMON_READ_OBJECT 171
  177. #define OPCODE_COMMON_WRITE_OBJECT 172
  178. #define OPCODE_ETH_RSS_CONFIG 1
  179. #define OPCODE_ETH_ACPI_CONFIG 2
  180. #define OPCODE_ETH_PROMISCUOUS 3
  181. #define OPCODE_ETH_GET_STATISTICS 4
  182. #define OPCODE_ETH_TX_CREATE 7
  183. #define OPCODE_ETH_RX_CREATE 8
  184. #define OPCODE_ETH_TX_DESTROY 9
  185. #define OPCODE_ETH_RX_DESTROY 10
  186. #define OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG 12
  187. #define OPCODE_ETH_GET_PPORT_STATS 18
  188. #define OPCODE_LOWLEVEL_HOST_DDR_DMA 17
  189. #define OPCODE_LOWLEVEL_LOOPBACK_TEST 18
  190. #define OPCODE_LOWLEVEL_SET_LOOPBACK_MODE 19
  191. struct be_cmd_req_hdr {
  192. u8 opcode; /* dword 0 */
  193. u8 subsystem; /* dword 0 */
  194. u8 port_number; /* dword 0 */
  195. u8 domain; /* dword 0 */
  196. u32 timeout; /* dword 1 */
  197. u32 request_length; /* dword 2 */
  198. u8 version; /* dword 3 */
  199. u8 rsvd[3]; /* dword 3 */
  200. };
  201. #define RESP_HDR_INFO_OPCODE_SHIFT 0 /* bits 0 - 7 */
  202. #define RESP_HDR_INFO_SUBSYS_SHIFT 8 /* bits 8 - 15 */
  203. struct be_cmd_resp_hdr {
  204. u32 info; /* dword 0 */
  205. u32 status; /* dword 1 */
  206. u32 response_length; /* dword 2 */
  207. u32 actual_resp_len; /* dword 3 */
  208. };
  209. struct phys_addr {
  210. u32 lo;
  211. u32 hi;
  212. };
  213. /**************************
  214. * BE Command definitions *
  215. **************************/
  216. /* Pseudo amap definition in which each bit of the actual structure is defined
  217. * as a byte: used to calculate offset/shift/mask of each field */
  218. struct amap_eq_context {
  219. u8 cidx[13]; /* dword 0*/
  220. u8 rsvd0[3]; /* dword 0*/
  221. u8 epidx[13]; /* dword 0*/
  222. u8 valid; /* dword 0*/
  223. u8 rsvd1; /* dword 0*/
  224. u8 size; /* dword 0*/
  225. u8 pidx[13]; /* dword 1*/
  226. u8 rsvd2[3]; /* dword 1*/
  227. u8 pd[10]; /* dword 1*/
  228. u8 count[3]; /* dword 1*/
  229. u8 solevent; /* dword 1*/
  230. u8 stalled; /* dword 1*/
  231. u8 armed; /* dword 1*/
  232. u8 rsvd3[4]; /* dword 2*/
  233. u8 func[8]; /* dword 2*/
  234. u8 rsvd4; /* dword 2*/
  235. u8 delaymult[10]; /* dword 2*/
  236. u8 rsvd5[2]; /* dword 2*/
  237. u8 phase[2]; /* dword 2*/
  238. u8 nodelay; /* dword 2*/
  239. u8 rsvd6[4]; /* dword 2*/
  240. u8 rsvd7[32]; /* dword 3*/
  241. } __packed;
  242. struct be_cmd_req_eq_create {
  243. struct be_cmd_req_hdr hdr;
  244. u16 num_pages; /* sword */
  245. u16 rsvd0; /* sword */
  246. u8 context[sizeof(struct amap_eq_context) / 8];
  247. struct phys_addr pages[8];
  248. } __packed;
  249. struct be_cmd_resp_eq_create {
  250. struct be_cmd_resp_hdr resp_hdr;
  251. u16 eq_id; /* sword */
  252. u16 rsvd0; /* sword */
  253. } __packed;
  254. /******************** Mac query ***************************/
  255. enum {
  256. MAC_ADDRESS_TYPE_STORAGE = 0x0,
  257. MAC_ADDRESS_TYPE_NETWORK = 0x1,
  258. MAC_ADDRESS_TYPE_PD = 0x2,
  259. MAC_ADDRESS_TYPE_MANAGEMENT = 0x3
  260. };
  261. struct mac_addr {
  262. u16 size_of_struct;
  263. u8 addr[ETH_ALEN];
  264. } __packed;
  265. struct be_cmd_req_mac_query {
  266. struct be_cmd_req_hdr hdr;
  267. u8 type;
  268. u8 permanent;
  269. u16 if_id;
  270. } __packed;
  271. struct be_cmd_resp_mac_query {
  272. struct be_cmd_resp_hdr hdr;
  273. struct mac_addr mac;
  274. };
  275. /******************** PMac Add ***************************/
  276. struct be_cmd_req_pmac_add {
  277. struct be_cmd_req_hdr hdr;
  278. u32 if_id;
  279. u8 mac_address[ETH_ALEN];
  280. u8 rsvd0[2];
  281. } __packed;
  282. struct be_cmd_resp_pmac_add {
  283. struct be_cmd_resp_hdr hdr;
  284. u32 pmac_id;
  285. };
  286. /******************** PMac Del ***************************/
  287. struct be_cmd_req_pmac_del {
  288. struct be_cmd_req_hdr hdr;
  289. u32 if_id;
  290. u32 pmac_id;
  291. };
  292. /******************** Create CQ ***************************/
  293. /* Pseudo amap definition in which each bit of the actual structure is defined
  294. * as a byte: used to calculate offset/shift/mask of each field */
  295. struct amap_cq_context_be {
  296. u8 cidx[11]; /* dword 0*/
  297. u8 rsvd0; /* dword 0*/
  298. u8 coalescwm[2]; /* dword 0*/
  299. u8 nodelay; /* dword 0*/
  300. u8 epidx[11]; /* dword 0*/
  301. u8 rsvd1; /* dword 0*/
  302. u8 count[2]; /* dword 0*/
  303. u8 valid; /* dword 0*/
  304. u8 solevent; /* dword 0*/
  305. u8 eventable; /* dword 0*/
  306. u8 pidx[11]; /* dword 1*/
  307. u8 rsvd2; /* dword 1*/
  308. u8 pd[10]; /* dword 1*/
  309. u8 eqid[8]; /* dword 1*/
  310. u8 stalled; /* dword 1*/
  311. u8 armed; /* dword 1*/
  312. u8 rsvd3[4]; /* dword 2*/
  313. u8 func[8]; /* dword 2*/
  314. u8 rsvd4[20]; /* dword 2*/
  315. u8 rsvd5[32]; /* dword 3*/
  316. } __packed;
  317. struct amap_cq_context_lancer {
  318. u8 rsvd0[12]; /* dword 0*/
  319. u8 coalescwm[2]; /* dword 0*/
  320. u8 nodelay; /* dword 0*/
  321. u8 rsvd1[12]; /* dword 0*/
  322. u8 count[2]; /* dword 0*/
  323. u8 valid; /* dword 0*/
  324. u8 rsvd2; /* dword 0*/
  325. u8 eventable; /* dword 0*/
  326. u8 eqid[16]; /* dword 1*/
  327. u8 rsvd3[15]; /* dword 1*/
  328. u8 armed; /* dword 1*/
  329. u8 rsvd4[32]; /* dword 2*/
  330. u8 rsvd5[32]; /* dword 3*/
  331. } __packed;
  332. struct be_cmd_req_cq_create {
  333. struct be_cmd_req_hdr hdr;
  334. u16 num_pages;
  335. u8 page_size;
  336. u8 rsvd0;
  337. u8 context[sizeof(struct amap_cq_context_be) / 8];
  338. struct phys_addr pages[8];
  339. } __packed;
  340. struct be_cmd_resp_cq_create {
  341. struct be_cmd_resp_hdr hdr;
  342. u16 cq_id;
  343. u16 rsvd0;
  344. } __packed;
  345. struct be_cmd_req_get_fat {
  346. struct be_cmd_req_hdr hdr;
  347. u32 fat_operation;
  348. u32 read_log_offset;
  349. u32 read_log_length;
  350. u32 data_buffer_size;
  351. u32 data_buffer[1];
  352. } __packed;
  353. struct be_cmd_resp_get_fat {
  354. struct be_cmd_resp_hdr hdr;
  355. u32 log_size;
  356. u32 read_log_length;
  357. u32 rsvd[2];
  358. u32 data_buffer[1];
  359. } __packed;
  360. /******************** Create MCCQ ***************************/
  361. /* Pseudo amap definition in which each bit of the actual structure is defined
  362. * as a byte: used to calculate offset/shift/mask of each field */
  363. struct amap_mcc_context_be {
  364. u8 con_index[14];
  365. u8 rsvd0[2];
  366. u8 ring_size[4];
  367. u8 fetch_wrb;
  368. u8 fetch_r2t;
  369. u8 cq_id[10];
  370. u8 prod_index[14];
  371. u8 fid[8];
  372. u8 pdid[9];
  373. u8 valid;
  374. u8 rsvd1[32];
  375. u8 rsvd2[32];
  376. } __packed;
  377. struct amap_mcc_context_lancer {
  378. u8 async_cq_id[16];
  379. u8 ring_size[4];
  380. u8 rsvd0[12];
  381. u8 rsvd1[31];
  382. u8 valid;
  383. u8 async_cq_valid[1];
  384. u8 rsvd2[31];
  385. u8 rsvd3[32];
  386. } __packed;
  387. struct be_cmd_req_mcc_create {
  388. struct be_cmd_req_hdr hdr;
  389. u16 num_pages;
  390. u16 cq_id;
  391. u8 context[sizeof(struct amap_mcc_context_be) / 8];
  392. struct phys_addr pages[8];
  393. } __packed;
  394. struct be_cmd_req_mcc_ext_create {
  395. struct be_cmd_req_hdr hdr;
  396. u16 num_pages;
  397. u16 cq_id;
  398. u32 async_event_bitmap[1];
  399. u8 context[sizeof(struct amap_mcc_context_be) / 8];
  400. struct phys_addr pages[8];
  401. } __packed;
  402. struct be_cmd_resp_mcc_create {
  403. struct be_cmd_resp_hdr hdr;
  404. u16 id;
  405. u16 rsvd0;
  406. } __packed;
  407. /******************** Create TxQ ***************************/
  408. #define BE_ETH_TX_RING_TYPE_STANDARD 2
  409. #define BE_ULP1_NUM 1
  410. /* Pseudo amap definition in which each bit of the actual structure is defined
  411. * as a byte: used to calculate offset/shift/mask of each field */
  412. struct amap_tx_context {
  413. u8 if_id[16]; /* dword 0 */
  414. u8 tx_ring_size[4]; /* dword 0 */
  415. u8 rsvd1[26]; /* dword 0 */
  416. u8 pci_func_id[8]; /* dword 1 */
  417. u8 rsvd2[9]; /* dword 1 */
  418. u8 ctx_valid; /* dword 1 */
  419. u8 cq_id_send[16]; /* dword 2 */
  420. u8 rsvd3[16]; /* dword 2 */
  421. u8 rsvd4[32]; /* dword 3 */
  422. u8 rsvd5[32]; /* dword 4 */
  423. u8 rsvd6[32]; /* dword 5 */
  424. u8 rsvd7[32]; /* dword 6 */
  425. u8 rsvd8[32]; /* dword 7 */
  426. u8 rsvd9[32]; /* dword 8 */
  427. u8 rsvd10[32]; /* dword 9 */
  428. u8 rsvd11[32]; /* dword 10 */
  429. u8 rsvd12[32]; /* dword 11 */
  430. u8 rsvd13[32]; /* dword 12 */
  431. u8 rsvd14[32]; /* dword 13 */
  432. u8 rsvd15[32]; /* dword 14 */
  433. u8 rsvd16[32]; /* dword 15 */
  434. } __packed;
  435. struct be_cmd_req_eth_tx_create {
  436. struct be_cmd_req_hdr hdr;
  437. u8 num_pages;
  438. u8 ulp_num;
  439. u8 type;
  440. u8 bound_port;
  441. u8 context[sizeof(struct amap_tx_context) / 8];
  442. struct phys_addr pages[8];
  443. } __packed;
  444. struct be_cmd_resp_eth_tx_create {
  445. struct be_cmd_resp_hdr hdr;
  446. u16 cid;
  447. u16 rsvd0;
  448. } __packed;
  449. /******************** Create RxQ ***************************/
  450. struct be_cmd_req_eth_rx_create {
  451. struct be_cmd_req_hdr hdr;
  452. u16 cq_id;
  453. u8 frag_size;
  454. u8 num_pages;
  455. struct phys_addr pages[2];
  456. u32 interface_id;
  457. u16 max_frame_size;
  458. u16 rsvd0;
  459. u32 rss_queue;
  460. } __packed;
  461. struct be_cmd_resp_eth_rx_create {
  462. struct be_cmd_resp_hdr hdr;
  463. u16 id;
  464. u8 rss_id;
  465. u8 rsvd0;
  466. } __packed;
  467. /******************** Q Destroy ***************************/
  468. /* Type of Queue to be destroyed */
  469. enum {
  470. QTYPE_EQ = 1,
  471. QTYPE_CQ,
  472. QTYPE_TXQ,
  473. QTYPE_RXQ,
  474. QTYPE_MCCQ
  475. };
  476. struct be_cmd_req_q_destroy {
  477. struct be_cmd_req_hdr hdr;
  478. u16 id;
  479. u16 bypass_flush; /* valid only for rx q destroy */
  480. } __packed;
  481. /************ I/f Create (it's actually I/f Config Create)**********/
  482. /* Capability flags for the i/f */
  483. enum be_if_flags {
  484. BE_IF_FLAGS_RSS = 0x4,
  485. BE_IF_FLAGS_PROMISCUOUS = 0x8,
  486. BE_IF_FLAGS_BROADCAST = 0x10,
  487. BE_IF_FLAGS_UNTAGGED = 0x20,
  488. BE_IF_FLAGS_ULP = 0x40,
  489. BE_IF_FLAGS_VLAN_PROMISCUOUS = 0x80,
  490. BE_IF_FLAGS_VLAN = 0x100,
  491. BE_IF_FLAGS_MCAST_PROMISCUOUS = 0x200,
  492. BE_IF_FLAGS_PASS_L2_ERRORS = 0x400,
  493. BE_IF_FLAGS_PASS_L3L4_ERRORS = 0x800,
  494. BE_IF_FLAGS_MULTICAST = 0x1000
  495. };
  496. /* An RX interface is an object with one or more MAC addresses and
  497. * filtering capabilities. */
  498. struct be_cmd_req_if_create {
  499. struct be_cmd_req_hdr hdr;
  500. u32 version; /* ignore currently */
  501. u32 capability_flags;
  502. u32 enable_flags;
  503. u8 mac_addr[ETH_ALEN];
  504. u8 rsvd0;
  505. u8 pmac_invalid; /* if set, don't attach the mac addr to the i/f */
  506. u32 vlan_tag; /* not used currently */
  507. } __packed;
  508. struct be_cmd_resp_if_create {
  509. struct be_cmd_resp_hdr hdr;
  510. u32 interface_id;
  511. u32 pmac_id;
  512. };
  513. /****** I/f Destroy(it's actually I/f Config Destroy )**********/
  514. struct be_cmd_req_if_destroy {
  515. struct be_cmd_req_hdr hdr;
  516. u32 interface_id;
  517. };
  518. /*************** HW Stats Get **********************************/
  519. struct be_port_rxf_stats_v0 {
  520. u32 rx_bytes_lsd; /* dword 0*/
  521. u32 rx_bytes_msd; /* dword 1*/
  522. u32 rx_total_frames; /* dword 2*/
  523. u32 rx_unicast_frames; /* dword 3*/
  524. u32 rx_multicast_frames; /* dword 4*/
  525. u32 rx_broadcast_frames; /* dword 5*/
  526. u32 rx_crc_errors; /* dword 6*/
  527. u32 rx_alignment_symbol_errors; /* dword 7*/
  528. u32 rx_pause_frames; /* dword 8*/
  529. u32 rx_control_frames; /* dword 9*/
  530. u32 rx_in_range_errors; /* dword 10*/
  531. u32 rx_out_range_errors; /* dword 11*/
  532. u32 rx_frame_too_long; /* dword 12*/
  533. u32 rx_address_match_errors; /* dword 13*/
  534. u32 rx_vlan_mismatch; /* dword 14*/
  535. u32 rx_dropped_too_small; /* dword 15*/
  536. u32 rx_dropped_too_short; /* dword 16*/
  537. u32 rx_dropped_header_too_small; /* dword 17*/
  538. u32 rx_dropped_tcp_length; /* dword 18*/
  539. u32 rx_dropped_runt; /* dword 19*/
  540. u32 rx_64_byte_packets; /* dword 20*/
  541. u32 rx_65_127_byte_packets; /* dword 21*/
  542. u32 rx_128_256_byte_packets; /* dword 22*/
  543. u32 rx_256_511_byte_packets; /* dword 23*/
  544. u32 rx_512_1023_byte_packets; /* dword 24*/
  545. u32 rx_1024_1518_byte_packets; /* dword 25*/
  546. u32 rx_1519_2047_byte_packets; /* dword 26*/
  547. u32 rx_2048_4095_byte_packets; /* dword 27*/
  548. u32 rx_4096_8191_byte_packets; /* dword 28*/
  549. u32 rx_8192_9216_byte_packets; /* dword 29*/
  550. u32 rx_ip_checksum_errs; /* dword 30*/
  551. u32 rx_tcp_checksum_errs; /* dword 31*/
  552. u32 rx_udp_checksum_errs; /* dword 32*/
  553. u32 rx_non_rss_packets; /* dword 33*/
  554. u32 rx_ipv4_packets; /* dword 34*/
  555. u32 rx_ipv6_packets; /* dword 35*/
  556. u32 rx_ipv4_bytes_lsd; /* dword 36*/
  557. u32 rx_ipv4_bytes_msd; /* dword 37*/
  558. u32 rx_ipv6_bytes_lsd; /* dword 38*/
  559. u32 rx_ipv6_bytes_msd; /* dword 39*/
  560. u32 rx_chute1_packets; /* dword 40*/
  561. u32 rx_chute2_packets; /* dword 41*/
  562. u32 rx_chute3_packets; /* dword 42*/
  563. u32 rx_management_packets; /* dword 43*/
  564. u32 rx_switched_unicast_packets; /* dword 44*/
  565. u32 rx_switched_multicast_packets; /* dword 45*/
  566. u32 rx_switched_broadcast_packets; /* dword 46*/
  567. u32 tx_bytes_lsd; /* dword 47*/
  568. u32 tx_bytes_msd; /* dword 48*/
  569. u32 tx_unicastframes; /* dword 49*/
  570. u32 tx_multicastframes; /* dword 50*/
  571. u32 tx_broadcastframes; /* dword 51*/
  572. u32 tx_pauseframes; /* dword 52*/
  573. u32 tx_controlframes; /* dword 53*/
  574. u32 tx_64_byte_packets; /* dword 54*/
  575. u32 tx_65_127_byte_packets; /* dword 55*/
  576. u32 tx_128_256_byte_packets; /* dword 56*/
  577. u32 tx_256_511_byte_packets; /* dword 57*/
  578. u32 tx_512_1023_byte_packets; /* dword 58*/
  579. u32 tx_1024_1518_byte_packets; /* dword 59*/
  580. u32 tx_1519_2047_byte_packets; /* dword 60*/
  581. u32 tx_2048_4095_byte_packets; /* dword 61*/
  582. u32 tx_4096_8191_byte_packets; /* dword 62*/
  583. u32 tx_8192_9216_byte_packets; /* dword 63*/
  584. u32 rx_fifo_overflow; /* dword 64*/
  585. u32 rx_input_fifo_overflow; /* dword 65*/
  586. };
  587. struct be_rxf_stats_v0 {
  588. struct be_port_rxf_stats_v0 port[2];
  589. u32 rx_drops_no_pbuf; /* dword 132*/
  590. u32 rx_drops_no_txpb; /* dword 133*/
  591. u32 rx_drops_no_erx_descr; /* dword 134*/
  592. u32 rx_drops_no_tpre_descr; /* dword 135*/
  593. u32 management_rx_port_packets; /* dword 136*/
  594. u32 management_rx_port_bytes; /* dword 137*/
  595. u32 management_rx_port_pause_frames; /* dword 138*/
  596. u32 management_rx_port_errors; /* dword 139*/
  597. u32 management_tx_port_packets; /* dword 140*/
  598. u32 management_tx_port_bytes; /* dword 141*/
  599. u32 management_tx_port_pause; /* dword 142*/
  600. u32 management_rx_port_rxfifo_overflow; /* dword 143*/
  601. u32 rx_drops_too_many_frags; /* dword 144*/
  602. u32 rx_drops_invalid_ring; /* dword 145*/
  603. u32 forwarded_packets; /* dword 146*/
  604. u32 rx_drops_mtu; /* dword 147*/
  605. u32 rsvd0[7];
  606. u32 port0_jabber_events;
  607. u32 port1_jabber_events;
  608. u32 rsvd1[6];
  609. };
  610. struct be_erx_stats_v0 {
  611. u32 rx_drops_no_fragments[44]; /* dwordS 0 to 43*/
  612. u32 rsvd[4];
  613. };
  614. struct be_pmem_stats {
  615. u32 eth_red_drops;
  616. u32 rsvd[5];
  617. };
  618. struct be_hw_stats_v0 {
  619. struct be_rxf_stats_v0 rxf;
  620. u32 rsvd[48];
  621. struct be_erx_stats_v0 erx;
  622. struct be_pmem_stats pmem;
  623. };
  624. struct be_cmd_req_get_stats_v0 {
  625. struct be_cmd_req_hdr hdr;
  626. u8 rsvd[sizeof(struct be_hw_stats_v0)];
  627. };
  628. struct be_cmd_resp_get_stats_v0 {
  629. struct be_cmd_resp_hdr hdr;
  630. struct be_hw_stats_v0 hw_stats;
  631. };
  632. struct lancer_pport_stats {
  633. u32 tx_packets_lo;
  634. u32 tx_packets_hi;
  635. u32 tx_unicast_packets_lo;
  636. u32 tx_unicast_packets_hi;
  637. u32 tx_multicast_packets_lo;
  638. u32 tx_multicast_packets_hi;
  639. u32 tx_broadcast_packets_lo;
  640. u32 tx_broadcast_packets_hi;
  641. u32 tx_bytes_lo;
  642. u32 tx_bytes_hi;
  643. u32 tx_unicast_bytes_lo;
  644. u32 tx_unicast_bytes_hi;
  645. u32 tx_multicast_bytes_lo;
  646. u32 tx_multicast_bytes_hi;
  647. u32 tx_broadcast_bytes_lo;
  648. u32 tx_broadcast_bytes_hi;
  649. u32 tx_discards_lo;
  650. u32 tx_discards_hi;
  651. u32 tx_errors_lo;
  652. u32 tx_errors_hi;
  653. u32 tx_pause_frames_lo;
  654. u32 tx_pause_frames_hi;
  655. u32 tx_pause_on_frames_lo;
  656. u32 tx_pause_on_frames_hi;
  657. u32 tx_pause_off_frames_lo;
  658. u32 tx_pause_off_frames_hi;
  659. u32 tx_internal_mac_errors_lo;
  660. u32 tx_internal_mac_errors_hi;
  661. u32 tx_control_frames_lo;
  662. u32 tx_control_frames_hi;
  663. u32 tx_packets_64_bytes_lo;
  664. u32 tx_packets_64_bytes_hi;
  665. u32 tx_packets_65_to_127_bytes_lo;
  666. u32 tx_packets_65_to_127_bytes_hi;
  667. u32 tx_packets_128_to_255_bytes_lo;
  668. u32 tx_packets_128_to_255_bytes_hi;
  669. u32 tx_packets_256_to_511_bytes_lo;
  670. u32 tx_packets_256_to_511_bytes_hi;
  671. u32 tx_packets_512_to_1023_bytes_lo;
  672. u32 tx_packets_512_to_1023_bytes_hi;
  673. u32 tx_packets_1024_to_1518_bytes_lo;
  674. u32 tx_packets_1024_to_1518_bytes_hi;
  675. u32 tx_packets_1519_to_2047_bytes_lo;
  676. u32 tx_packets_1519_to_2047_bytes_hi;
  677. u32 tx_packets_2048_to_4095_bytes_lo;
  678. u32 tx_packets_2048_to_4095_bytes_hi;
  679. u32 tx_packets_4096_to_8191_bytes_lo;
  680. u32 tx_packets_4096_to_8191_bytes_hi;
  681. u32 tx_packets_8192_to_9216_bytes_lo;
  682. u32 tx_packets_8192_to_9216_bytes_hi;
  683. u32 tx_lso_packets_lo;
  684. u32 tx_lso_packets_hi;
  685. u32 rx_packets_lo;
  686. u32 rx_packets_hi;
  687. u32 rx_unicast_packets_lo;
  688. u32 rx_unicast_packets_hi;
  689. u32 rx_multicast_packets_lo;
  690. u32 rx_multicast_packets_hi;
  691. u32 rx_broadcast_packets_lo;
  692. u32 rx_broadcast_packets_hi;
  693. u32 rx_bytes_lo;
  694. u32 rx_bytes_hi;
  695. u32 rx_unicast_bytes_lo;
  696. u32 rx_unicast_bytes_hi;
  697. u32 rx_multicast_bytes_lo;
  698. u32 rx_multicast_bytes_hi;
  699. u32 rx_broadcast_bytes_lo;
  700. u32 rx_broadcast_bytes_hi;
  701. u32 rx_unknown_protos;
  702. u32 rsvd_69; /* Word 69 is reserved */
  703. u32 rx_discards_lo;
  704. u32 rx_discards_hi;
  705. u32 rx_errors_lo;
  706. u32 rx_errors_hi;
  707. u32 rx_crc_errors_lo;
  708. u32 rx_crc_errors_hi;
  709. u32 rx_alignment_errors_lo;
  710. u32 rx_alignment_errors_hi;
  711. u32 rx_symbol_errors_lo;
  712. u32 rx_symbol_errors_hi;
  713. u32 rx_pause_frames_lo;
  714. u32 rx_pause_frames_hi;
  715. u32 rx_pause_on_frames_lo;
  716. u32 rx_pause_on_frames_hi;
  717. u32 rx_pause_off_frames_lo;
  718. u32 rx_pause_off_frames_hi;
  719. u32 rx_frames_too_long_lo;
  720. u32 rx_frames_too_long_hi;
  721. u32 rx_internal_mac_errors_lo;
  722. u32 rx_internal_mac_errors_hi;
  723. u32 rx_undersize_packets;
  724. u32 rx_oversize_packets;
  725. u32 rx_fragment_packets;
  726. u32 rx_jabbers;
  727. u32 rx_control_frames_lo;
  728. u32 rx_control_frames_hi;
  729. u32 rx_control_frames_unknown_opcode_lo;
  730. u32 rx_control_frames_unknown_opcode_hi;
  731. u32 rx_in_range_errors;
  732. u32 rx_out_of_range_errors;
  733. u32 rx_address_match_errors;
  734. u32 rx_vlan_mismatch_errors;
  735. u32 rx_dropped_too_small;
  736. u32 rx_dropped_too_short;
  737. u32 rx_dropped_header_too_small;
  738. u32 rx_dropped_invalid_tcp_length;
  739. u32 rx_dropped_runt;
  740. u32 rx_ip_checksum_errors;
  741. u32 rx_tcp_checksum_errors;
  742. u32 rx_udp_checksum_errors;
  743. u32 rx_non_rss_packets;
  744. u32 rsvd_111;
  745. u32 rx_ipv4_packets_lo;
  746. u32 rx_ipv4_packets_hi;
  747. u32 rx_ipv6_packets_lo;
  748. u32 rx_ipv6_packets_hi;
  749. u32 rx_ipv4_bytes_lo;
  750. u32 rx_ipv4_bytes_hi;
  751. u32 rx_ipv6_bytes_lo;
  752. u32 rx_ipv6_bytes_hi;
  753. u32 rx_nic_packets_lo;
  754. u32 rx_nic_packets_hi;
  755. u32 rx_tcp_packets_lo;
  756. u32 rx_tcp_packets_hi;
  757. u32 rx_iscsi_packets_lo;
  758. u32 rx_iscsi_packets_hi;
  759. u32 rx_management_packets_lo;
  760. u32 rx_management_packets_hi;
  761. u32 rx_switched_unicast_packets_lo;
  762. u32 rx_switched_unicast_packets_hi;
  763. u32 rx_switched_multicast_packets_lo;
  764. u32 rx_switched_multicast_packets_hi;
  765. u32 rx_switched_broadcast_packets_lo;
  766. u32 rx_switched_broadcast_packets_hi;
  767. u32 num_forwards_lo;
  768. u32 num_forwards_hi;
  769. u32 rx_fifo_overflow;
  770. u32 rx_input_fifo_overflow;
  771. u32 rx_drops_too_many_frags_lo;
  772. u32 rx_drops_too_many_frags_hi;
  773. u32 rx_drops_invalid_queue;
  774. u32 rsvd_141;
  775. u32 rx_drops_mtu_lo;
  776. u32 rx_drops_mtu_hi;
  777. u32 rx_packets_64_bytes_lo;
  778. u32 rx_packets_64_bytes_hi;
  779. u32 rx_packets_65_to_127_bytes_lo;
  780. u32 rx_packets_65_to_127_bytes_hi;
  781. u32 rx_packets_128_to_255_bytes_lo;
  782. u32 rx_packets_128_to_255_bytes_hi;
  783. u32 rx_packets_256_to_511_bytes_lo;
  784. u32 rx_packets_256_to_511_bytes_hi;
  785. u32 rx_packets_512_to_1023_bytes_lo;
  786. u32 rx_packets_512_to_1023_bytes_hi;
  787. u32 rx_packets_1024_to_1518_bytes_lo;
  788. u32 rx_packets_1024_to_1518_bytes_hi;
  789. u32 rx_packets_1519_to_2047_bytes_lo;
  790. u32 rx_packets_1519_to_2047_bytes_hi;
  791. u32 rx_packets_2048_to_4095_bytes_lo;
  792. u32 rx_packets_2048_to_4095_bytes_hi;
  793. u32 rx_packets_4096_to_8191_bytes_lo;
  794. u32 rx_packets_4096_to_8191_bytes_hi;
  795. u32 rx_packets_8192_to_9216_bytes_lo;
  796. u32 rx_packets_8192_to_9216_bytes_hi;
  797. };
  798. struct pport_stats_params {
  799. u16 pport_num;
  800. u8 rsvd;
  801. u8 reset_stats;
  802. };
  803. struct lancer_cmd_req_pport_stats {
  804. struct be_cmd_req_hdr hdr;
  805. union {
  806. struct pport_stats_params params;
  807. u8 rsvd[sizeof(struct lancer_pport_stats)];
  808. } cmd_params;
  809. };
  810. struct lancer_cmd_resp_pport_stats {
  811. struct be_cmd_resp_hdr hdr;
  812. struct lancer_pport_stats pport_stats;
  813. };
  814. static inline struct lancer_pport_stats*
  815. pport_stats_from_cmd(struct be_adapter *adapter)
  816. {
  817. struct lancer_cmd_resp_pport_stats *cmd = adapter->stats_cmd.va;
  818. return &cmd->pport_stats;
  819. }
  820. struct be_cmd_req_get_cntl_addnl_attribs {
  821. struct be_cmd_req_hdr hdr;
  822. u8 rsvd[8];
  823. };
  824. struct be_cmd_resp_get_cntl_addnl_attribs {
  825. struct be_cmd_resp_hdr hdr;
  826. u16 ipl_file_number;
  827. u8 ipl_file_version;
  828. u8 rsvd0;
  829. u8 on_die_temperature; /* in degrees centigrade*/
  830. u8 rsvd1[3];
  831. };
  832. struct be_cmd_req_vlan_config {
  833. struct be_cmd_req_hdr hdr;
  834. u8 interface_id;
  835. u8 promiscuous;
  836. u8 untagged;
  837. u8 num_vlan;
  838. u16 normal_vlan[64];
  839. } __packed;
  840. /******************* RX FILTER ******************************/
  841. #define BE_MAX_MC 64 /* set mcast promisc if > 64 */
  842. struct macaddr {
  843. u8 byte[ETH_ALEN];
  844. };
  845. struct be_cmd_req_rx_filter {
  846. struct be_cmd_req_hdr hdr;
  847. u32 global_flags_mask;
  848. u32 global_flags;
  849. u32 if_flags_mask;
  850. u32 if_flags;
  851. u32 if_id;
  852. u32 mcast_num;
  853. struct macaddr mcast_mac[BE_MAX_MC];
  854. };
  855. /******************** Link Status Query *******************/
  856. struct be_cmd_req_link_status {
  857. struct be_cmd_req_hdr hdr;
  858. u32 rsvd;
  859. };
  860. enum {
  861. PHY_LINK_DUPLEX_NONE = 0x0,
  862. PHY_LINK_DUPLEX_HALF = 0x1,
  863. PHY_LINK_DUPLEX_FULL = 0x2
  864. };
  865. enum {
  866. PHY_LINK_SPEED_ZERO = 0x0, /* => No link */
  867. PHY_LINK_SPEED_10MBPS = 0x1,
  868. PHY_LINK_SPEED_100MBPS = 0x2,
  869. PHY_LINK_SPEED_1GBPS = 0x3,
  870. PHY_LINK_SPEED_10GBPS = 0x4
  871. };
  872. struct be_cmd_resp_link_status {
  873. struct be_cmd_resp_hdr hdr;
  874. u8 physical_port;
  875. u8 mac_duplex;
  876. u8 mac_speed;
  877. u8 mac_fault;
  878. u8 mgmt_mac_duplex;
  879. u8 mgmt_mac_speed;
  880. u16 link_speed;
  881. u32 rsvd0;
  882. } __packed;
  883. /******************** Port Identification ***************************/
  884. /* Identifies the type of port attached to NIC */
  885. struct be_cmd_req_port_type {
  886. struct be_cmd_req_hdr hdr;
  887. u32 page_num;
  888. u32 port;
  889. };
  890. enum {
  891. TR_PAGE_A0 = 0xa0,
  892. TR_PAGE_A2 = 0xa2
  893. };
  894. struct be_cmd_resp_port_type {
  895. struct be_cmd_resp_hdr hdr;
  896. u32 page_num;
  897. u32 port;
  898. struct data {
  899. u8 identifier;
  900. u8 identifier_ext;
  901. u8 connector;
  902. u8 transceiver[8];
  903. u8 rsvd0[3];
  904. u8 length_km;
  905. u8 length_hm;
  906. u8 length_om1;
  907. u8 length_om2;
  908. u8 length_cu;
  909. u8 length_cu_m;
  910. u8 vendor_name[16];
  911. u8 rsvd;
  912. u8 vendor_oui[3];
  913. u8 vendor_pn[16];
  914. u8 vendor_rev[4];
  915. } data;
  916. };
  917. /******************** Get FW Version *******************/
  918. struct be_cmd_req_get_fw_version {
  919. struct be_cmd_req_hdr hdr;
  920. u8 rsvd0[FW_VER_LEN];
  921. u8 rsvd1[FW_VER_LEN];
  922. } __packed;
  923. struct be_cmd_resp_get_fw_version {
  924. struct be_cmd_resp_hdr hdr;
  925. u8 firmware_version_string[FW_VER_LEN];
  926. u8 fw_on_flash_version_string[FW_VER_LEN];
  927. } __packed;
  928. /******************** Set Flow Contrl *******************/
  929. struct be_cmd_req_set_flow_control {
  930. struct be_cmd_req_hdr hdr;
  931. u16 tx_flow_control;
  932. u16 rx_flow_control;
  933. } __packed;
  934. /******************** Get Flow Contrl *******************/
  935. struct be_cmd_req_get_flow_control {
  936. struct be_cmd_req_hdr hdr;
  937. u32 rsvd;
  938. };
  939. struct be_cmd_resp_get_flow_control {
  940. struct be_cmd_resp_hdr hdr;
  941. u16 tx_flow_control;
  942. u16 rx_flow_control;
  943. } __packed;
  944. /******************** Modify EQ Delay *******************/
  945. struct be_cmd_req_modify_eq_delay {
  946. struct be_cmd_req_hdr hdr;
  947. u32 num_eq;
  948. struct {
  949. u32 eq_id;
  950. u32 phase;
  951. u32 delay_multiplier;
  952. } delay[8];
  953. } __packed;
  954. struct be_cmd_resp_modify_eq_delay {
  955. struct be_cmd_resp_hdr hdr;
  956. u32 rsvd0;
  957. } __packed;
  958. /******************** Get FW Config *******************/
  959. #define BE_FUNCTION_CAPS_RSS 0x2
  960. /* The HW can come up in either of the following multi-channel modes
  961. * based on the skew/IPL.
  962. */
  963. #define FLEX10_MODE 0x400
  964. #define VNIC_MODE 0x20000
  965. #define UMC_ENABLED 0x1000000
  966. struct be_cmd_req_query_fw_cfg {
  967. struct be_cmd_req_hdr hdr;
  968. u32 rsvd[31];
  969. };
  970. struct be_cmd_resp_query_fw_cfg {
  971. struct be_cmd_resp_hdr hdr;
  972. u32 be_config_number;
  973. u32 asic_revision;
  974. u32 phys_port;
  975. u32 function_mode;
  976. u32 rsvd[26];
  977. u32 function_caps;
  978. };
  979. /******************** RSS Config *******************/
  980. /* RSS types */
  981. #define RSS_ENABLE_NONE 0x0
  982. #define RSS_ENABLE_IPV4 0x1
  983. #define RSS_ENABLE_TCP_IPV4 0x2
  984. #define RSS_ENABLE_IPV6 0x4
  985. #define RSS_ENABLE_TCP_IPV6 0x8
  986. struct be_cmd_req_rss_config {
  987. struct be_cmd_req_hdr hdr;
  988. u32 if_id;
  989. u16 enable_rss;
  990. u16 cpu_table_size_log2;
  991. u32 hash[10];
  992. u8 cpu_table[128];
  993. u8 flush;
  994. u8 rsvd0[3];
  995. };
  996. /******************** Port Beacon ***************************/
  997. #define BEACON_STATE_ENABLED 0x1
  998. #define BEACON_STATE_DISABLED 0x0
  999. struct be_cmd_req_enable_disable_beacon {
  1000. struct be_cmd_req_hdr hdr;
  1001. u8 port_num;
  1002. u8 beacon_state;
  1003. u8 beacon_duration;
  1004. u8 status_duration;
  1005. } __packed;
  1006. struct be_cmd_resp_enable_disable_beacon {
  1007. struct be_cmd_resp_hdr resp_hdr;
  1008. u32 rsvd0;
  1009. } __packed;
  1010. struct be_cmd_req_get_beacon_state {
  1011. struct be_cmd_req_hdr hdr;
  1012. u8 port_num;
  1013. u8 rsvd0;
  1014. u16 rsvd1;
  1015. } __packed;
  1016. struct be_cmd_resp_get_beacon_state {
  1017. struct be_cmd_resp_hdr resp_hdr;
  1018. u8 beacon_state;
  1019. u8 rsvd0[3];
  1020. } __packed;
  1021. /****************** Firmware Flash ******************/
  1022. struct flashrom_params {
  1023. u32 op_code;
  1024. u32 op_type;
  1025. u32 data_buf_size;
  1026. u32 offset;
  1027. u8 data_buf[4];
  1028. };
  1029. struct be_cmd_write_flashrom {
  1030. struct be_cmd_req_hdr hdr;
  1031. struct flashrom_params params;
  1032. };
  1033. /**************** Lancer Firmware Flash ************/
  1034. struct amap_lancer_write_obj_context {
  1035. u8 write_length[24];
  1036. u8 reserved1[7];
  1037. u8 eof;
  1038. } __packed;
  1039. struct lancer_cmd_req_write_object {
  1040. struct be_cmd_req_hdr hdr;
  1041. u8 context[sizeof(struct amap_lancer_write_obj_context) / 8];
  1042. u32 write_offset;
  1043. u8 object_name[104];
  1044. u32 descriptor_count;
  1045. u32 buf_len;
  1046. u32 addr_low;
  1047. u32 addr_high;
  1048. };
  1049. struct lancer_cmd_resp_write_object {
  1050. u8 opcode;
  1051. u8 subsystem;
  1052. u8 rsvd1[2];
  1053. u8 status;
  1054. u8 additional_status;
  1055. u8 rsvd2[2];
  1056. u32 resp_len;
  1057. u32 actual_resp_len;
  1058. u32 actual_write_len;
  1059. };
  1060. /************************ Lancer Read FW info **************/
  1061. #define LANCER_READ_FILE_CHUNK (32*1024)
  1062. #define LANCER_READ_FILE_EOF_MASK 0x80000000
  1063. #define LANCER_FW_DUMP_FILE "/dbg/dump.bin"
  1064. struct lancer_cmd_req_read_object {
  1065. struct be_cmd_req_hdr hdr;
  1066. u32 desired_read_len;
  1067. u32 read_offset;
  1068. u8 object_name[104];
  1069. u32 descriptor_count;
  1070. u32 buf_len;
  1071. u32 addr_low;
  1072. u32 addr_high;
  1073. };
  1074. struct lancer_cmd_resp_read_object {
  1075. u8 opcode;
  1076. u8 subsystem;
  1077. u8 rsvd1[2];
  1078. u8 status;
  1079. u8 additional_status;
  1080. u8 rsvd2[2];
  1081. u32 resp_len;
  1082. u32 actual_resp_len;
  1083. u32 actual_read_len;
  1084. u32 eof;
  1085. };
  1086. /************************ WOL *******************************/
  1087. struct be_cmd_req_acpi_wol_magic_config{
  1088. struct be_cmd_req_hdr hdr;
  1089. u32 rsvd0[145];
  1090. u8 magic_mac[6];
  1091. u8 rsvd2[2];
  1092. } __packed;
  1093. /********************** LoopBack test *********************/
  1094. struct be_cmd_req_loopback_test {
  1095. struct be_cmd_req_hdr hdr;
  1096. u32 loopback_type;
  1097. u32 num_pkts;
  1098. u64 pattern;
  1099. u32 src_port;
  1100. u32 dest_port;
  1101. u32 pkt_size;
  1102. };
  1103. struct be_cmd_resp_loopback_test {
  1104. struct be_cmd_resp_hdr resp_hdr;
  1105. u32 status;
  1106. u32 num_txfer;
  1107. u32 num_rx;
  1108. u32 miscomp_off;
  1109. u32 ticks_compl;
  1110. };
  1111. struct be_cmd_req_set_lmode {
  1112. struct be_cmd_req_hdr hdr;
  1113. u8 src_port;
  1114. u8 dest_port;
  1115. u8 loopback_type;
  1116. u8 loopback_state;
  1117. };
  1118. struct be_cmd_resp_set_lmode {
  1119. struct be_cmd_resp_hdr resp_hdr;
  1120. u8 rsvd0[4];
  1121. };
  1122. /********************** DDR DMA test *********************/
  1123. struct be_cmd_req_ddrdma_test {
  1124. struct be_cmd_req_hdr hdr;
  1125. u64 pattern;
  1126. u32 byte_count;
  1127. u32 rsvd0;
  1128. u8 snd_buff[4096];
  1129. u8 rsvd1[4096];
  1130. };
  1131. struct be_cmd_resp_ddrdma_test {
  1132. struct be_cmd_resp_hdr hdr;
  1133. u64 pattern;
  1134. u32 byte_cnt;
  1135. u32 snd_err;
  1136. u8 rsvd0[4096];
  1137. u8 rcv_buff[4096];
  1138. };
  1139. /*********************** SEEPROM Read ***********************/
  1140. #define BE_READ_SEEPROM_LEN 1024
  1141. struct be_cmd_req_seeprom_read {
  1142. struct be_cmd_req_hdr hdr;
  1143. u8 rsvd0[BE_READ_SEEPROM_LEN];
  1144. };
  1145. struct be_cmd_resp_seeprom_read {
  1146. struct be_cmd_req_hdr hdr;
  1147. u8 seeprom_data[BE_READ_SEEPROM_LEN];
  1148. };
  1149. enum {
  1150. PHY_TYPE_CX4_10GB = 0,
  1151. PHY_TYPE_XFP_10GB,
  1152. PHY_TYPE_SFP_1GB,
  1153. PHY_TYPE_SFP_PLUS_10GB,
  1154. PHY_TYPE_KR_10GB,
  1155. PHY_TYPE_KX4_10GB,
  1156. PHY_TYPE_BASET_10GB,
  1157. PHY_TYPE_BASET_1GB,
  1158. PHY_TYPE_DISABLED = 255
  1159. };
  1160. struct be_cmd_req_get_phy_info {
  1161. struct be_cmd_req_hdr hdr;
  1162. u8 rsvd0[24];
  1163. };
  1164. struct be_phy_info {
  1165. u16 phy_type;
  1166. u16 interface_type;
  1167. u32 misc_params;
  1168. u32 future_use[4];
  1169. };
  1170. struct be_cmd_resp_get_phy_info {
  1171. struct be_cmd_req_hdr hdr;
  1172. struct be_phy_info phy_info;
  1173. };
  1174. /*********************** Set QOS ***********************/
  1175. #define BE_QOS_BITS_NIC 1
  1176. struct be_cmd_req_set_qos {
  1177. struct be_cmd_req_hdr hdr;
  1178. u32 valid_bits;
  1179. u32 max_bps_nic;
  1180. u32 rsvd[7];
  1181. };
  1182. struct be_cmd_resp_set_qos {
  1183. struct be_cmd_resp_hdr hdr;
  1184. u32 rsvd;
  1185. };
  1186. /*********************** Controller Attributes ***********************/
  1187. struct be_cmd_req_cntl_attribs {
  1188. struct be_cmd_req_hdr hdr;
  1189. };
  1190. struct be_cmd_resp_cntl_attribs {
  1191. struct be_cmd_resp_hdr hdr;
  1192. struct mgmt_controller_attrib attribs;
  1193. };
  1194. /*********************** Set driver function ***********************/
  1195. #define CAPABILITY_SW_TIMESTAMPS 2
  1196. #define CAPABILITY_BE3_NATIVE_ERX_API 4
  1197. struct be_cmd_req_set_func_cap {
  1198. struct be_cmd_req_hdr hdr;
  1199. u32 valid_cap_flags;
  1200. u32 cap_flags;
  1201. u8 rsvd[212];
  1202. };
  1203. struct be_cmd_resp_set_func_cap {
  1204. struct be_cmd_resp_hdr hdr;
  1205. u32 valid_cap_flags;
  1206. u32 cap_flags;
  1207. u8 rsvd[212];
  1208. };
  1209. /*************** HW Stats Get v1 **********************************/
  1210. #define BE_TXP_SW_SZ 48
  1211. struct be_port_rxf_stats_v1 {
  1212. u32 rsvd0[12];
  1213. u32 rx_crc_errors;
  1214. u32 rx_alignment_symbol_errors;
  1215. u32 rx_pause_frames;
  1216. u32 rx_priority_pause_frames;
  1217. u32 rx_control_frames;
  1218. u32 rx_in_range_errors;
  1219. u32 rx_out_range_errors;
  1220. u32 rx_frame_too_long;
  1221. u32 rx_address_match_errors;
  1222. u32 rx_dropped_too_small;
  1223. u32 rx_dropped_too_short;
  1224. u32 rx_dropped_header_too_small;
  1225. u32 rx_dropped_tcp_length;
  1226. u32 rx_dropped_runt;
  1227. u32 rsvd1[10];
  1228. u32 rx_ip_checksum_errs;
  1229. u32 rx_tcp_checksum_errs;
  1230. u32 rx_udp_checksum_errs;
  1231. u32 rsvd2[7];
  1232. u32 rx_switched_unicast_packets;
  1233. u32 rx_switched_multicast_packets;
  1234. u32 rx_switched_broadcast_packets;
  1235. u32 rsvd3[3];
  1236. u32 tx_pauseframes;
  1237. u32 tx_priority_pauseframes;
  1238. u32 tx_controlframes;
  1239. u32 rsvd4[10];
  1240. u32 rxpp_fifo_overflow_drop;
  1241. u32 rx_input_fifo_overflow_drop;
  1242. u32 pmem_fifo_overflow_drop;
  1243. u32 jabber_events;
  1244. u32 rsvd5[3];
  1245. };
  1246. struct be_rxf_stats_v1 {
  1247. struct be_port_rxf_stats_v1 port[4];
  1248. u32 rsvd0[2];
  1249. u32 rx_drops_no_pbuf;
  1250. u32 rx_drops_no_txpb;
  1251. u32 rx_drops_no_erx_descr;
  1252. u32 rx_drops_no_tpre_descr;
  1253. u32 rsvd1[6];
  1254. u32 rx_drops_too_many_frags;
  1255. u32 rx_drops_invalid_ring;
  1256. u32 forwarded_packets;
  1257. u32 rx_drops_mtu;
  1258. u32 rsvd2[14];
  1259. };
  1260. struct be_erx_stats_v1 {
  1261. u32 rx_drops_no_fragments[68]; /* dwordS 0 to 67*/
  1262. u32 rsvd[4];
  1263. };
  1264. struct be_hw_stats_v1 {
  1265. struct be_rxf_stats_v1 rxf;
  1266. u32 rsvd0[BE_TXP_SW_SZ];
  1267. struct be_erx_stats_v1 erx;
  1268. struct be_pmem_stats pmem;
  1269. u32 rsvd1[3];
  1270. };
  1271. struct be_cmd_req_get_stats_v1 {
  1272. struct be_cmd_req_hdr hdr;
  1273. u8 rsvd[sizeof(struct be_hw_stats_v1)];
  1274. };
  1275. struct be_cmd_resp_get_stats_v1 {
  1276. struct be_cmd_resp_hdr hdr;
  1277. struct be_hw_stats_v1 hw_stats;
  1278. };
  1279. static inline void *hw_stats_from_cmd(struct be_adapter *adapter)
  1280. {
  1281. if (adapter->generation == BE_GEN3) {
  1282. struct be_cmd_resp_get_stats_v1 *cmd = adapter->stats_cmd.va;
  1283. return &cmd->hw_stats;
  1284. } else {
  1285. struct be_cmd_resp_get_stats_v0 *cmd = adapter->stats_cmd.va;
  1286. return &cmd->hw_stats;
  1287. }
  1288. }
  1289. static inline void *be_erx_stats_from_cmd(struct be_adapter *adapter)
  1290. {
  1291. if (adapter->generation == BE_GEN3) {
  1292. struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
  1293. return &hw_stats->erx;
  1294. } else {
  1295. struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
  1296. return &hw_stats->erx;
  1297. }
  1298. }
  1299. extern int be_pci_fnum_get(struct be_adapter *adapter);
  1300. extern int be_cmd_POST(struct be_adapter *adapter);
  1301. extern int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
  1302. u8 type, bool permanent, u32 if_handle);
  1303. extern int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
  1304. u32 if_id, u32 *pmac_id, u32 domain);
  1305. extern int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id,
  1306. int pmac_id, u32 domain);
  1307. extern int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags,
  1308. u32 en_flags, u8 *mac, u32 *if_handle, u32 *pmac_id,
  1309. u32 domain);
  1310. extern int be_cmd_if_destroy(struct be_adapter *adapter, int if_handle,
  1311. u32 domain);
  1312. extern int be_cmd_eq_create(struct be_adapter *adapter,
  1313. struct be_queue_info *eq, int eq_delay);
  1314. extern int be_cmd_cq_create(struct be_adapter *adapter,
  1315. struct be_queue_info *cq, struct be_queue_info *eq,
  1316. bool sol_evts, bool no_delay,
  1317. int num_cqe_dma_coalesce);
  1318. extern int be_cmd_mccq_create(struct be_adapter *adapter,
  1319. struct be_queue_info *mccq,
  1320. struct be_queue_info *cq);
  1321. extern int be_cmd_txq_create(struct be_adapter *adapter,
  1322. struct be_queue_info *txq,
  1323. struct be_queue_info *cq);
  1324. extern int be_cmd_rxq_create(struct be_adapter *adapter,
  1325. struct be_queue_info *rxq, u16 cq_id,
  1326. u16 frag_size, u16 max_frame_size, u32 if_id,
  1327. u32 rss, u8 *rss_id);
  1328. extern int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
  1329. int type);
  1330. extern int be_cmd_rxq_destroy(struct be_adapter *adapter,
  1331. struct be_queue_info *q);
  1332. extern int be_cmd_link_status_query(struct be_adapter *adapter,
  1333. u8 *mac_speed, u16 *link_speed, u32 dom);
  1334. extern int be_cmd_reset(struct be_adapter *adapter);
  1335. extern int be_cmd_get_stats(struct be_adapter *adapter,
  1336. struct be_dma_mem *nonemb_cmd);
  1337. extern int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
  1338. struct be_dma_mem *nonemb_cmd);
  1339. extern int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver,
  1340. char *fw_on_flash);
  1341. extern int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd);
  1342. extern int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id,
  1343. u16 *vtag_array, u32 num, bool untagged,
  1344. bool promiscuous);
  1345. extern int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 status);
  1346. extern int be_cmd_set_flow_control(struct be_adapter *adapter,
  1347. u32 tx_fc, u32 rx_fc);
  1348. extern int be_cmd_get_flow_control(struct be_adapter *adapter,
  1349. u32 *tx_fc, u32 *rx_fc);
  1350. extern int be_cmd_query_fw_cfg(struct be_adapter *adapter,
  1351. u32 *port_num, u32 *function_mode, u32 *function_caps);
  1352. extern int be_cmd_reset_function(struct be_adapter *adapter);
  1353. extern int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
  1354. u16 table_size);
  1355. extern int be_process_mcc(struct be_adapter *adapter, int *status);
  1356. extern int be_cmd_set_beacon_state(struct be_adapter *adapter,
  1357. u8 port_num, u8 beacon, u8 status, u8 state);
  1358. extern int be_cmd_get_beacon_state(struct be_adapter *adapter,
  1359. u8 port_num, u32 *state);
  1360. extern int be_cmd_write_flashrom(struct be_adapter *adapter,
  1361. struct be_dma_mem *cmd, u32 flash_oper,
  1362. u32 flash_opcode, u32 buf_size);
  1363. extern int lancer_cmd_write_object(struct be_adapter *adapter,
  1364. struct be_dma_mem *cmd,
  1365. u32 data_size, u32 data_offset,
  1366. const char *obj_name,
  1367. u32 *data_written, u8 *addn_status);
  1368. int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
  1369. u32 data_size, u32 data_offset, const char *obj_name,
  1370. u32 *data_read, u32 *eof, u8 *addn_status);
  1371. int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
  1372. int offset);
  1373. extern int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
  1374. struct be_dma_mem *nonemb_cmd);
  1375. extern int be_cmd_fw_init(struct be_adapter *adapter);
  1376. extern int be_cmd_fw_clean(struct be_adapter *adapter);
  1377. extern void be_async_mcc_enable(struct be_adapter *adapter);
  1378. extern void be_async_mcc_disable(struct be_adapter *adapter);
  1379. extern int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
  1380. u32 loopback_type, u32 pkt_size,
  1381. u32 num_pkts, u64 pattern);
  1382. extern int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
  1383. u32 byte_cnt, struct be_dma_mem *cmd);
  1384. extern int be_cmd_get_seeprom_data(struct be_adapter *adapter,
  1385. struct be_dma_mem *nonemb_cmd);
  1386. extern int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num,
  1387. u8 loopback_type, u8 enable);
  1388. extern int be_cmd_get_phy_info(struct be_adapter *adapter,
  1389. struct be_phy_info *phy_info);
  1390. extern int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain);
  1391. extern void be_detect_dump_ue(struct be_adapter *adapter);
  1392. extern int be_cmd_get_die_temperature(struct be_adapter *adapter);
  1393. extern int be_cmd_get_cntl_attributes(struct be_adapter *adapter);
  1394. extern int be_cmd_req_native_mode(struct be_adapter *adapter);
  1395. extern int be_cmd_get_reg_len(struct be_adapter *adapter, u32 *log_size);
  1396. extern void be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf);