i40e_adminq_cmd.h 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406
  1. /*******************************************************************************
  2. *
  3. * Intel Ethernet Controller XL710 Family Linux Driver
  4. * Copyright(c) 2013 - 2014 Intel Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * The full GNU General Public License is included in this distribution in
  19. * the file called "COPYING".
  20. *
  21. * Contact Information:
  22. * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
  23. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  24. *
  25. ******************************************************************************/
  26. #ifndef _I40E_ADMINQ_CMD_H_
  27. #define _I40E_ADMINQ_CMD_H_
  28. /* This header file defines the i40e Admin Queue commands and is shared between
  29. * i40e Firmware and Software.
  30. *
  31. * This file needs to comply with the Linux Kernel coding style.
  32. */
  33. #define I40E_FW_API_VERSION_MAJOR 0x0001
  34. #define I40E_FW_API_VERSION_MINOR 0x0004
  35. struct i40e_aq_desc {
  36. __le16 flags;
  37. __le16 opcode;
  38. __le16 datalen;
  39. __le16 retval;
  40. __le32 cookie_high;
  41. __le32 cookie_low;
  42. union {
  43. struct {
  44. __le32 param0;
  45. __le32 param1;
  46. __le32 param2;
  47. __le32 param3;
  48. } internal;
  49. struct {
  50. __le32 param0;
  51. __le32 param1;
  52. __le32 addr_high;
  53. __le32 addr_low;
  54. } external;
  55. u8 raw[16];
  56. } params;
  57. };
  58. /* Flags sub-structure
  59. * |0 |1 |2 |3 |4 |5 |6 |7 |8 |9 |10 |11 |12 |13 |14 |15 |
  60. * |DD |CMP|ERR|VFE| * * RESERVED * * |LB |RD |VFC|BUF|SI |EI |FE |
  61. */
  62. /* command flags and offsets*/
  63. #define I40E_AQ_FLAG_DD_SHIFT 0
  64. #define I40E_AQ_FLAG_CMP_SHIFT 1
  65. #define I40E_AQ_FLAG_ERR_SHIFT 2
  66. #define I40E_AQ_FLAG_VFE_SHIFT 3
  67. #define I40E_AQ_FLAG_LB_SHIFT 9
  68. #define I40E_AQ_FLAG_RD_SHIFT 10
  69. #define I40E_AQ_FLAG_VFC_SHIFT 11
  70. #define I40E_AQ_FLAG_BUF_SHIFT 12
  71. #define I40E_AQ_FLAG_SI_SHIFT 13
  72. #define I40E_AQ_FLAG_EI_SHIFT 14
  73. #define I40E_AQ_FLAG_FE_SHIFT 15
  74. #define I40E_AQ_FLAG_DD (1 << I40E_AQ_FLAG_DD_SHIFT) /* 0x1 */
  75. #define I40E_AQ_FLAG_CMP (1 << I40E_AQ_FLAG_CMP_SHIFT) /* 0x2 */
  76. #define I40E_AQ_FLAG_ERR (1 << I40E_AQ_FLAG_ERR_SHIFT) /* 0x4 */
  77. #define I40E_AQ_FLAG_VFE (1 << I40E_AQ_FLAG_VFE_SHIFT) /* 0x8 */
  78. #define I40E_AQ_FLAG_LB (1 << I40E_AQ_FLAG_LB_SHIFT) /* 0x200 */
  79. #define I40E_AQ_FLAG_RD (1 << I40E_AQ_FLAG_RD_SHIFT) /* 0x400 */
  80. #define I40E_AQ_FLAG_VFC (1 << I40E_AQ_FLAG_VFC_SHIFT) /* 0x800 */
  81. #define I40E_AQ_FLAG_BUF (1 << I40E_AQ_FLAG_BUF_SHIFT) /* 0x1000 */
  82. #define I40E_AQ_FLAG_SI (1 << I40E_AQ_FLAG_SI_SHIFT) /* 0x2000 */
  83. #define I40E_AQ_FLAG_EI (1 << I40E_AQ_FLAG_EI_SHIFT) /* 0x4000 */
  84. #define I40E_AQ_FLAG_FE (1 << I40E_AQ_FLAG_FE_SHIFT) /* 0x8000 */
  85. /* error codes */
  86. enum i40e_admin_queue_err {
  87. I40E_AQ_RC_OK = 0, /* success */
  88. I40E_AQ_RC_EPERM = 1, /* Operation not permitted */
  89. I40E_AQ_RC_ENOENT = 2, /* No such element */
  90. I40E_AQ_RC_ESRCH = 3, /* Bad opcode */
  91. I40E_AQ_RC_EINTR = 4, /* operation interrupted */
  92. I40E_AQ_RC_EIO = 5, /* I/O error */
  93. I40E_AQ_RC_ENXIO = 6, /* No such resource */
  94. I40E_AQ_RC_E2BIG = 7, /* Arg too long */
  95. I40E_AQ_RC_EAGAIN = 8, /* Try again */
  96. I40E_AQ_RC_ENOMEM = 9, /* Out of memory */
  97. I40E_AQ_RC_EACCES = 10, /* Permission denied */
  98. I40E_AQ_RC_EFAULT = 11, /* Bad address */
  99. I40E_AQ_RC_EBUSY = 12, /* Device or resource busy */
  100. I40E_AQ_RC_EEXIST = 13, /* object already exists */
  101. I40E_AQ_RC_EINVAL = 14, /* Invalid argument */
  102. I40E_AQ_RC_ENOTTY = 15, /* Not a typewriter */
  103. I40E_AQ_RC_ENOSPC = 16, /* No space left or alloc failure */
  104. I40E_AQ_RC_ENOSYS = 17, /* Function not implemented */
  105. I40E_AQ_RC_ERANGE = 18, /* Parameter out of range */
  106. I40E_AQ_RC_EFLUSHED = 19, /* Cmd flushed due to prev cmd error */
  107. I40E_AQ_RC_BAD_ADDR = 20, /* Descriptor contains a bad pointer */
  108. I40E_AQ_RC_EMODE = 21, /* Op not allowed in current dev mode */
  109. I40E_AQ_RC_EFBIG = 22, /* File too large */
  110. };
  111. /* Admin Queue command opcodes */
  112. enum i40e_admin_queue_opc {
  113. /* aq commands */
  114. i40e_aqc_opc_get_version = 0x0001,
  115. i40e_aqc_opc_driver_version = 0x0002,
  116. i40e_aqc_opc_queue_shutdown = 0x0003,
  117. i40e_aqc_opc_set_pf_context = 0x0004,
  118. /* resource ownership */
  119. i40e_aqc_opc_request_resource = 0x0008,
  120. i40e_aqc_opc_release_resource = 0x0009,
  121. i40e_aqc_opc_list_func_capabilities = 0x000A,
  122. i40e_aqc_opc_list_dev_capabilities = 0x000B,
  123. /* LAA */
  124. i40e_aqc_opc_mac_address_read = 0x0107,
  125. i40e_aqc_opc_mac_address_write = 0x0108,
  126. /* PXE */
  127. i40e_aqc_opc_clear_pxe_mode = 0x0110,
  128. /* internal switch commands */
  129. i40e_aqc_opc_get_switch_config = 0x0200,
  130. i40e_aqc_opc_add_statistics = 0x0201,
  131. i40e_aqc_opc_remove_statistics = 0x0202,
  132. i40e_aqc_opc_set_port_parameters = 0x0203,
  133. i40e_aqc_opc_get_switch_resource_alloc = 0x0204,
  134. i40e_aqc_opc_add_vsi = 0x0210,
  135. i40e_aqc_opc_update_vsi_parameters = 0x0211,
  136. i40e_aqc_opc_get_vsi_parameters = 0x0212,
  137. i40e_aqc_opc_add_pv = 0x0220,
  138. i40e_aqc_opc_update_pv_parameters = 0x0221,
  139. i40e_aqc_opc_get_pv_parameters = 0x0222,
  140. i40e_aqc_opc_add_veb = 0x0230,
  141. i40e_aqc_opc_update_veb_parameters = 0x0231,
  142. i40e_aqc_opc_get_veb_parameters = 0x0232,
  143. i40e_aqc_opc_delete_element = 0x0243,
  144. i40e_aqc_opc_add_macvlan = 0x0250,
  145. i40e_aqc_opc_remove_macvlan = 0x0251,
  146. i40e_aqc_opc_add_vlan = 0x0252,
  147. i40e_aqc_opc_remove_vlan = 0x0253,
  148. i40e_aqc_opc_set_vsi_promiscuous_modes = 0x0254,
  149. i40e_aqc_opc_add_tag = 0x0255,
  150. i40e_aqc_opc_remove_tag = 0x0256,
  151. i40e_aqc_opc_add_multicast_etag = 0x0257,
  152. i40e_aqc_opc_remove_multicast_etag = 0x0258,
  153. i40e_aqc_opc_update_tag = 0x0259,
  154. i40e_aqc_opc_add_control_packet_filter = 0x025A,
  155. i40e_aqc_opc_remove_control_packet_filter = 0x025B,
  156. i40e_aqc_opc_add_cloud_filters = 0x025C,
  157. i40e_aqc_opc_remove_cloud_filters = 0x025D,
  158. i40e_aqc_opc_add_mirror_rule = 0x0260,
  159. i40e_aqc_opc_delete_mirror_rule = 0x0261,
  160. /* DCB commands */
  161. i40e_aqc_opc_dcb_ignore_pfc = 0x0301,
  162. i40e_aqc_opc_dcb_updated = 0x0302,
  163. /* TX scheduler */
  164. i40e_aqc_opc_configure_vsi_bw_limit = 0x0400,
  165. i40e_aqc_opc_configure_vsi_ets_sla_bw_limit = 0x0406,
  166. i40e_aqc_opc_configure_vsi_tc_bw = 0x0407,
  167. i40e_aqc_opc_query_vsi_bw_config = 0x0408,
  168. i40e_aqc_opc_query_vsi_ets_sla_config = 0x040A,
  169. i40e_aqc_opc_configure_switching_comp_bw_limit = 0x0410,
  170. i40e_aqc_opc_enable_switching_comp_ets = 0x0413,
  171. i40e_aqc_opc_modify_switching_comp_ets = 0x0414,
  172. i40e_aqc_opc_disable_switching_comp_ets = 0x0415,
  173. i40e_aqc_opc_configure_switching_comp_ets_bw_limit = 0x0416,
  174. i40e_aqc_opc_configure_switching_comp_bw_config = 0x0417,
  175. i40e_aqc_opc_query_switching_comp_ets_config = 0x0418,
  176. i40e_aqc_opc_query_port_ets_config = 0x0419,
  177. i40e_aqc_opc_query_switching_comp_bw_config = 0x041A,
  178. i40e_aqc_opc_suspend_port_tx = 0x041B,
  179. i40e_aqc_opc_resume_port_tx = 0x041C,
  180. i40e_aqc_opc_configure_partition_bw = 0x041D,
  181. /* hmc */
  182. i40e_aqc_opc_query_hmc_resource_profile = 0x0500,
  183. i40e_aqc_opc_set_hmc_resource_profile = 0x0501,
  184. /* phy commands*/
  185. i40e_aqc_opc_get_phy_abilities = 0x0600,
  186. i40e_aqc_opc_set_phy_config = 0x0601,
  187. i40e_aqc_opc_set_mac_config = 0x0603,
  188. i40e_aqc_opc_set_link_restart_an = 0x0605,
  189. i40e_aqc_opc_get_link_status = 0x0607,
  190. i40e_aqc_opc_set_phy_int_mask = 0x0613,
  191. i40e_aqc_opc_get_local_advt_reg = 0x0614,
  192. i40e_aqc_opc_set_local_advt_reg = 0x0615,
  193. i40e_aqc_opc_get_partner_advt = 0x0616,
  194. i40e_aqc_opc_set_lb_modes = 0x0618,
  195. i40e_aqc_opc_get_phy_wol_caps = 0x0621,
  196. i40e_aqc_opc_set_phy_debug = 0x0622,
  197. i40e_aqc_opc_upload_ext_phy_fm = 0x0625,
  198. /* NVM commands */
  199. i40e_aqc_opc_nvm_read = 0x0701,
  200. i40e_aqc_opc_nvm_erase = 0x0702,
  201. i40e_aqc_opc_nvm_update = 0x0703,
  202. i40e_aqc_opc_nvm_config_read = 0x0704,
  203. i40e_aqc_opc_nvm_config_write = 0x0705,
  204. /* virtualization commands */
  205. i40e_aqc_opc_send_msg_to_pf = 0x0801,
  206. i40e_aqc_opc_send_msg_to_vf = 0x0802,
  207. i40e_aqc_opc_send_msg_to_peer = 0x0803,
  208. /* alternate structure */
  209. i40e_aqc_opc_alternate_write = 0x0900,
  210. i40e_aqc_opc_alternate_write_indirect = 0x0901,
  211. i40e_aqc_opc_alternate_read = 0x0902,
  212. i40e_aqc_opc_alternate_read_indirect = 0x0903,
  213. i40e_aqc_opc_alternate_write_done = 0x0904,
  214. i40e_aqc_opc_alternate_set_mode = 0x0905,
  215. i40e_aqc_opc_alternate_clear_port = 0x0906,
  216. /* LLDP commands */
  217. i40e_aqc_opc_lldp_get_mib = 0x0A00,
  218. i40e_aqc_opc_lldp_update_mib = 0x0A01,
  219. i40e_aqc_opc_lldp_add_tlv = 0x0A02,
  220. i40e_aqc_opc_lldp_update_tlv = 0x0A03,
  221. i40e_aqc_opc_lldp_delete_tlv = 0x0A04,
  222. i40e_aqc_opc_lldp_stop = 0x0A05,
  223. i40e_aqc_opc_lldp_start = 0x0A06,
  224. i40e_aqc_opc_get_cee_dcb_cfg = 0x0A07,
  225. i40e_aqc_opc_lldp_set_local_mib = 0x0A08,
  226. i40e_aqc_opc_lldp_stop_start_spec_agent = 0x0A09,
  227. /* Tunnel commands */
  228. i40e_aqc_opc_add_udp_tunnel = 0x0B00,
  229. i40e_aqc_opc_del_udp_tunnel = 0x0B01,
  230. i40e_aqc_opc_set_rss_key = 0x0B02,
  231. i40e_aqc_opc_set_rss_lut = 0x0B03,
  232. i40e_aqc_opc_get_rss_key = 0x0B04,
  233. i40e_aqc_opc_get_rss_lut = 0x0B05,
  234. /* Async Events */
  235. i40e_aqc_opc_event_lan_overflow = 0x1001,
  236. /* OEM commands */
  237. i40e_aqc_opc_oem_parameter_change = 0xFE00,
  238. i40e_aqc_opc_oem_device_status_change = 0xFE01,
  239. i40e_aqc_opc_oem_ocsd_initialize = 0xFE02,
  240. i40e_aqc_opc_oem_ocbb_initialize = 0xFE03,
  241. /* debug commands */
  242. i40e_aqc_opc_debug_read_reg = 0xFF03,
  243. i40e_aqc_opc_debug_write_reg = 0xFF04,
  244. i40e_aqc_opc_debug_modify_reg = 0xFF07,
  245. i40e_aqc_opc_debug_dump_internals = 0xFF08,
  246. };
  247. /* command structures and indirect data structures */
  248. /* Structure naming conventions:
  249. * - no suffix for direct command descriptor structures
  250. * - _data for indirect sent data
  251. * - _resp for indirect return data (data which is both will use _data)
  252. * - _completion for direct return data
  253. * - _element_ for repeated elements (may also be _data or _resp)
  254. *
  255. * Command structures are expected to overlay the params.raw member of the basic
  256. * descriptor, and as such cannot exceed 16 bytes in length.
  257. */
  258. /* This macro is used to generate a compilation error if a structure
  259. * is not exactly the correct length. It gives a divide by zero error if the
  260. * structure is not of the correct size, otherwise it creates an enum that is
  261. * never used.
  262. */
  263. #define I40E_CHECK_STRUCT_LEN(n, X) enum i40e_static_assert_enum_##X \
  264. { i40e_static_assert_##X = (n)/((sizeof(struct X) == (n)) ? 1 : 0) }
  265. /* This macro is used extensively to ensure that command structures are 16
  266. * bytes in length as they have to map to the raw array of that size.
  267. */
  268. #define I40E_CHECK_CMD_LENGTH(X) I40E_CHECK_STRUCT_LEN(16, X)
  269. /* internal (0x00XX) commands */
  270. /* Get version (direct 0x0001) */
  271. struct i40e_aqc_get_version {
  272. __le32 rom_ver;
  273. __le32 fw_build;
  274. __le16 fw_major;
  275. __le16 fw_minor;
  276. __le16 api_major;
  277. __le16 api_minor;
  278. };
  279. I40E_CHECK_CMD_LENGTH(i40e_aqc_get_version);
  280. /* Send driver version (indirect 0x0002) */
  281. struct i40e_aqc_driver_version {
  282. u8 driver_major_ver;
  283. u8 driver_minor_ver;
  284. u8 driver_build_ver;
  285. u8 driver_subbuild_ver;
  286. u8 reserved[4];
  287. __le32 address_high;
  288. __le32 address_low;
  289. };
  290. I40E_CHECK_CMD_LENGTH(i40e_aqc_driver_version);
  291. /* Queue Shutdown (direct 0x0003) */
  292. struct i40e_aqc_queue_shutdown {
  293. __le32 driver_unloading;
  294. #define I40E_AQ_DRIVER_UNLOADING 0x1
  295. u8 reserved[12];
  296. };
  297. I40E_CHECK_CMD_LENGTH(i40e_aqc_queue_shutdown);
  298. /* Set PF context (0x0004, direct) */
  299. struct i40e_aqc_set_pf_context {
  300. u8 pf_id;
  301. u8 reserved[15];
  302. };
  303. I40E_CHECK_CMD_LENGTH(i40e_aqc_set_pf_context);
  304. /* Request resource ownership (direct 0x0008)
  305. * Release resource ownership (direct 0x0009)
  306. */
  307. #define I40E_AQ_RESOURCE_NVM 1
  308. #define I40E_AQ_RESOURCE_SDP 2
  309. #define I40E_AQ_RESOURCE_ACCESS_READ 1
  310. #define I40E_AQ_RESOURCE_ACCESS_WRITE 2
  311. #define I40E_AQ_RESOURCE_NVM_READ_TIMEOUT 3000
  312. #define I40E_AQ_RESOURCE_NVM_WRITE_TIMEOUT 180000
  313. struct i40e_aqc_request_resource {
  314. __le16 resource_id;
  315. __le16 access_type;
  316. __le32 timeout;
  317. __le32 resource_number;
  318. u8 reserved[4];
  319. };
  320. I40E_CHECK_CMD_LENGTH(i40e_aqc_request_resource);
  321. /* Get function capabilities (indirect 0x000A)
  322. * Get device capabilities (indirect 0x000B)
  323. */
  324. struct i40e_aqc_list_capabilites {
  325. u8 command_flags;
  326. #define I40E_AQ_LIST_CAP_PF_INDEX_EN 1
  327. u8 pf_index;
  328. u8 reserved[2];
  329. __le32 count;
  330. __le32 addr_high;
  331. __le32 addr_low;
  332. };
  333. I40E_CHECK_CMD_LENGTH(i40e_aqc_list_capabilites);
  334. struct i40e_aqc_list_capabilities_element_resp {
  335. __le16 id;
  336. u8 major_rev;
  337. u8 minor_rev;
  338. __le32 number;
  339. __le32 logical_id;
  340. __le32 phys_id;
  341. u8 reserved[16];
  342. };
  343. /* list of caps */
  344. #define I40E_AQ_CAP_ID_SWITCH_MODE 0x0001
  345. #define I40E_AQ_CAP_ID_MNG_MODE 0x0002
  346. #define I40E_AQ_CAP_ID_NPAR_ACTIVE 0x0003
  347. #define I40E_AQ_CAP_ID_OS2BMC_CAP 0x0004
  348. #define I40E_AQ_CAP_ID_FUNCTIONS_VALID 0x0005
  349. #define I40E_AQ_CAP_ID_ALTERNATE_RAM 0x0006
  350. #define I40E_AQ_CAP_ID_SRIOV 0x0012
  351. #define I40E_AQ_CAP_ID_VF 0x0013
  352. #define I40E_AQ_CAP_ID_VMDQ 0x0014
  353. #define I40E_AQ_CAP_ID_8021QBG 0x0015
  354. #define I40E_AQ_CAP_ID_8021QBR 0x0016
  355. #define I40E_AQ_CAP_ID_VSI 0x0017
  356. #define I40E_AQ_CAP_ID_DCB 0x0018
  357. #define I40E_AQ_CAP_ID_FCOE 0x0021
  358. #define I40E_AQ_CAP_ID_ISCSI 0x0022
  359. #define I40E_AQ_CAP_ID_RSS 0x0040
  360. #define I40E_AQ_CAP_ID_RXQ 0x0041
  361. #define I40E_AQ_CAP_ID_TXQ 0x0042
  362. #define I40E_AQ_CAP_ID_MSIX 0x0043
  363. #define I40E_AQ_CAP_ID_VF_MSIX 0x0044
  364. #define I40E_AQ_CAP_ID_FLOW_DIRECTOR 0x0045
  365. #define I40E_AQ_CAP_ID_1588 0x0046
  366. #define I40E_AQ_CAP_ID_IWARP 0x0051
  367. #define I40E_AQ_CAP_ID_LED 0x0061
  368. #define I40E_AQ_CAP_ID_SDP 0x0062
  369. #define I40E_AQ_CAP_ID_MDIO 0x0063
  370. #define I40E_AQ_CAP_ID_FLEX10 0x00F1
  371. #define I40E_AQ_CAP_ID_CEM 0x00F2
  372. /* Set CPPM Configuration (direct 0x0103) */
  373. struct i40e_aqc_cppm_configuration {
  374. __le16 command_flags;
  375. #define I40E_AQ_CPPM_EN_LTRC 0x0800
  376. #define I40E_AQ_CPPM_EN_DMCTH 0x1000
  377. #define I40E_AQ_CPPM_EN_DMCTLX 0x2000
  378. #define I40E_AQ_CPPM_EN_HPTC 0x4000
  379. #define I40E_AQ_CPPM_EN_DMARC 0x8000
  380. __le16 ttlx;
  381. __le32 dmacr;
  382. __le16 dmcth;
  383. u8 hptc;
  384. u8 reserved;
  385. __le32 pfltrc;
  386. };
  387. I40E_CHECK_CMD_LENGTH(i40e_aqc_cppm_configuration);
  388. /* Set ARP Proxy command / response (indirect 0x0104) */
  389. struct i40e_aqc_arp_proxy_data {
  390. __le16 command_flags;
  391. #define I40E_AQ_ARP_INIT_IPV4 0x0008
  392. #define I40E_AQ_ARP_UNSUP_CTL 0x0010
  393. #define I40E_AQ_ARP_ENA 0x0020
  394. #define I40E_AQ_ARP_ADD_IPV4 0x0040
  395. #define I40E_AQ_ARP_DEL_IPV4 0x0080
  396. __le16 table_id;
  397. __le32 pfpm_proxyfc;
  398. __le32 ip_addr;
  399. u8 mac_addr[6];
  400. u8 reserved[2];
  401. };
  402. I40E_CHECK_STRUCT_LEN(0x14, i40e_aqc_arp_proxy_data);
  403. /* Set NS Proxy Table Entry Command (indirect 0x0105) */
  404. struct i40e_aqc_ns_proxy_data {
  405. __le16 table_idx_mac_addr_0;
  406. __le16 table_idx_mac_addr_1;
  407. __le16 table_idx_ipv6_0;
  408. __le16 table_idx_ipv6_1;
  409. __le16 control;
  410. #define I40E_AQ_NS_PROXY_ADD_0 0x0100
  411. #define I40E_AQ_NS_PROXY_DEL_0 0x0200
  412. #define I40E_AQ_NS_PROXY_ADD_1 0x0400
  413. #define I40E_AQ_NS_PROXY_DEL_1 0x0800
  414. #define I40E_AQ_NS_PROXY_ADD_IPV6_0 0x1000
  415. #define I40E_AQ_NS_PROXY_DEL_IPV6_0 0x2000
  416. #define I40E_AQ_NS_PROXY_ADD_IPV6_1 0x4000
  417. #define I40E_AQ_NS_PROXY_DEL_IPV6_1 0x8000
  418. #define I40E_AQ_NS_PROXY_COMMAND_SEQ 0x0001
  419. #define I40E_AQ_NS_PROXY_INIT_IPV6_TBL 0x0002
  420. #define I40E_AQ_NS_PROXY_INIT_MAC_TBL 0x0004
  421. u8 mac_addr_0[6];
  422. u8 mac_addr_1[6];
  423. u8 local_mac_addr[6];
  424. u8 ipv6_addr_0[16]; /* Warning! spec specifies BE byte order */
  425. u8 ipv6_addr_1[16];
  426. };
  427. I40E_CHECK_STRUCT_LEN(0x3c, i40e_aqc_ns_proxy_data);
  428. /* Manage LAA Command (0x0106) - obsolete */
  429. struct i40e_aqc_mng_laa {
  430. __le16 command_flags;
  431. #define I40E_AQ_LAA_FLAG_WR 0x8000
  432. u8 reserved[2];
  433. __le32 sal;
  434. __le16 sah;
  435. u8 reserved2[6];
  436. };
  437. I40E_CHECK_CMD_LENGTH(i40e_aqc_mng_laa);
  438. /* Manage MAC Address Read Command (indirect 0x0107) */
  439. struct i40e_aqc_mac_address_read {
  440. __le16 command_flags;
  441. #define I40E_AQC_LAN_ADDR_VALID 0x10
  442. #define I40E_AQC_SAN_ADDR_VALID 0x20
  443. #define I40E_AQC_PORT_ADDR_VALID 0x40
  444. #define I40E_AQC_WOL_ADDR_VALID 0x80
  445. #define I40E_AQC_MC_MAG_EN_VALID 0x100
  446. #define I40E_AQC_ADDR_VALID_MASK 0x1F0
  447. u8 reserved[6];
  448. __le32 addr_high;
  449. __le32 addr_low;
  450. };
  451. I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_read);
  452. struct i40e_aqc_mac_address_read_data {
  453. u8 pf_lan_mac[6];
  454. u8 pf_san_mac[6];
  455. u8 port_mac[6];
  456. u8 pf_wol_mac[6];
  457. };
  458. I40E_CHECK_STRUCT_LEN(24, i40e_aqc_mac_address_read_data);
  459. /* Manage MAC Address Write Command (0x0108) */
  460. struct i40e_aqc_mac_address_write {
  461. __le16 command_flags;
  462. #define I40E_AQC_WRITE_TYPE_LAA_ONLY 0x0000
  463. #define I40E_AQC_WRITE_TYPE_LAA_WOL 0x4000
  464. #define I40E_AQC_WRITE_TYPE_PORT 0x8000
  465. #define I40E_AQC_WRITE_TYPE_UPDATE_MC_MAG 0xC000
  466. #define I40E_AQC_WRITE_TYPE_MASK 0xC000
  467. __le16 mac_sah;
  468. __le32 mac_sal;
  469. u8 reserved[8];
  470. };
  471. I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_write);
  472. /* PXE commands (0x011x) */
  473. /* Clear PXE Command and response (direct 0x0110) */
  474. struct i40e_aqc_clear_pxe {
  475. u8 rx_cnt;
  476. u8 reserved[15];
  477. };
  478. I40E_CHECK_CMD_LENGTH(i40e_aqc_clear_pxe);
  479. /* Switch configuration commands (0x02xx) */
  480. /* Used by many indirect commands that only pass an seid and a buffer in the
  481. * command
  482. */
  483. struct i40e_aqc_switch_seid {
  484. __le16 seid;
  485. u8 reserved[6];
  486. __le32 addr_high;
  487. __le32 addr_low;
  488. };
  489. I40E_CHECK_CMD_LENGTH(i40e_aqc_switch_seid);
  490. /* Get Switch Configuration command (indirect 0x0200)
  491. * uses i40e_aqc_switch_seid for the descriptor
  492. */
  493. struct i40e_aqc_get_switch_config_header_resp {
  494. __le16 num_reported;
  495. __le16 num_total;
  496. u8 reserved[12];
  497. };
  498. I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_config_header_resp);
  499. struct i40e_aqc_switch_config_element_resp {
  500. u8 element_type;
  501. #define I40E_AQ_SW_ELEM_TYPE_MAC 1
  502. #define I40E_AQ_SW_ELEM_TYPE_PF 2
  503. #define I40E_AQ_SW_ELEM_TYPE_VF 3
  504. #define I40E_AQ_SW_ELEM_TYPE_EMP 4
  505. #define I40E_AQ_SW_ELEM_TYPE_BMC 5
  506. #define I40E_AQ_SW_ELEM_TYPE_PV 16
  507. #define I40E_AQ_SW_ELEM_TYPE_VEB 17
  508. #define I40E_AQ_SW_ELEM_TYPE_PA 18
  509. #define I40E_AQ_SW_ELEM_TYPE_VSI 19
  510. u8 revision;
  511. #define I40E_AQ_SW_ELEM_REV_1 1
  512. __le16 seid;
  513. __le16 uplink_seid;
  514. __le16 downlink_seid;
  515. u8 reserved[3];
  516. u8 connection_type;
  517. #define I40E_AQ_CONN_TYPE_REGULAR 0x1
  518. #define I40E_AQ_CONN_TYPE_DEFAULT 0x2
  519. #define I40E_AQ_CONN_TYPE_CASCADED 0x3
  520. __le16 scheduler_id;
  521. __le16 element_info;
  522. };
  523. I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_config_element_resp);
  524. /* Get Switch Configuration (indirect 0x0200)
  525. * an array of elements are returned in the response buffer
  526. * the first in the array is the header, remainder are elements
  527. */
  528. struct i40e_aqc_get_switch_config_resp {
  529. struct i40e_aqc_get_switch_config_header_resp header;
  530. struct i40e_aqc_switch_config_element_resp element[1];
  531. };
  532. I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_get_switch_config_resp);
  533. /* Add Statistics (direct 0x0201)
  534. * Remove Statistics (direct 0x0202)
  535. */
  536. struct i40e_aqc_add_remove_statistics {
  537. __le16 seid;
  538. __le16 vlan;
  539. __le16 stat_index;
  540. u8 reserved[10];
  541. };
  542. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_statistics);
  543. /* Set Port Parameters command (direct 0x0203) */
  544. struct i40e_aqc_set_port_parameters {
  545. __le16 command_flags;
  546. #define I40E_AQ_SET_P_PARAMS_SAVE_BAD_PACKETS 1
  547. #define I40E_AQ_SET_P_PARAMS_PAD_SHORT_PACKETS 2 /* must set! */
  548. #define I40E_AQ_SET_P_PARAMS_DOUBLE_VLAN_ENA 4
  549. __le16 bad_frame_vsi;
  550. __le16 default_seid; /* reserved for command */
  551. u8 reserved[10];
  552. };
  553. I40E_CHECK_CMD_LENGTH(i40e_aqc_set_port_parameters);
  554. /* Get Switch Resource Allocation (indirect 0x0204) */
  555. struct i40e_aqc_get_switch_resource_alloc {
  556. u8 num_entries; /* reserved for command */
  557. u8 reserved[7];
  558. __le32 addr_high;
  559. __le32 addr_low;
  560. };
  561. I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_resource_alloc);
  562. /* expect an array of these structs in the response buffer */
  563. struct i40e_aqc_switch_resource_alloc_element_resp {
  564. u8 resource_type;
  565. #define I40E_AQ_RESOURCE_TYPE_VEB 0x0
  566. #define I40E_AQ_RESOURCE_TYPE_VSI 0x1
  567. #define I40E_AQ_RESOURCE_TYPE_MACADDR 0x2
  568. #define I40E_AQ_RESOURCE_TYPE_STAG 0x3
  569. #define I40E_AQ_RESOURCE_TYPE_ETAG 0x4
  570. #define I40E_AQ_RESOURCE_TYPE_MULTICAST_HASH 0x5
  571. #define I40E_AQ_RESOURCE_TYPE_UNICAST_HASH 0x6
  572. #define I40E_AQ_RESOURCE_TYPE_VLAN 0x7
  573. #define I40E_AQ_RESOURCE_TYPE_VSI_LIST_ENTRY 0x8
  574. #define I40E_AQ_RESOURCE_TYPE_ETAG_LIST_ENTRY 0x9
  575. #define I40E_AQ_RESOURCE_TYPE_VLAN_STAT_POOL 0xA
  576. #define I40E_AQ_RESOURCE_TYPE_MIRROR_RULE 0xB
  577. #define I40E_AQ_RESOURCE_TYPE_QUEUE_SETS 0xC
  578. #define I40E_AQ_RESOURCE_TYPE_VLAN_FILTERS 0xD
  579. #define I40E_AQ_RESOURCE_TYPE_INNER_MAC_FILTERS 0xF
  580. #define I40E_AQ_RESOURCE_TYPE_IP_FILTERS 0x10
  581. #define I40E_AQ_RESOURCE_TYPE_GRE_VN_KEYS 0x11
  582. #define I40E_AQ_RESOURCE_TYPE_VN2_KEYS 0x12
  583. #define I40E_AQ_RESOURCE_TYPE_TUNNEL_PORTS 0x13
  584. u8 reserved1;
  585. __le16 guaranteed;
  586. __le16 total;
  587. __le16 used;
  588. __le16 total_unalloced;
  589. u8 reserved2[6];
  590. };
  591. I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_resource_alloc_element_resp);
  592. /* Add VSI (indirect 0x0210)
  593. * this indirect command uses struct i40e_aqc_vsi_properties_data
  594. * as the indirect buffer (128 bytes)
  595. *
  596. * Update VSI (indirect 0x211)
  597. * uses the same data structure as Add VSI
  598. *
  599. * Get VSI (indirect 0x0212)
  600. * uses the same completion and data structure as Add VSI
  601. */
  602. struct i40e_aqc_add_get_update_vsi {
  603. __le16 uplink_seid;
  604. u8 connection_type;
  605. #define I40E_AQ_VSI_CONN_TYPE_NORMAL 0x1
  606. #define I40E_AQ_VSI_CONN_TYPE_DEFAULT 0x2
  607. #define I40E_AQ_VSI_CONN_TYPE_CASCADED 0x3
  608. u8 reserved1;
  609. u8 vf_id;
  610. u8 reserved2;
  611. __le16 vsi_flags;
  612. #define I40E_AQ_VSI_TYPE_SHIFT 0x0
  613. #define I40E_AQ_VSI_TYPE_MASK (0x3 << I40E_AQ_VSI_TYPE_SHIFT)
  614. #define I40E_AQ_VSI_TYPE_VF 0x0
  615. #define I40E_AQ_VSI_TYPE_VMDQ2 0x1
  616. #define I40E_AQ_VSI_TYPE_PF 0x2
  617. #define I40E_AQ_VSI_TYPE_EMP_MNG 0x3
  618. #define I40E_AQ_VSI_FLAG_CASCADED_PV 0x4
  619. __le32 addr_high;
  620. __le32 addr_low;
  621. };
  622. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi);
  623. struct i40e_aqc_add_get_update_vsi_completion {
  624. __le16 seid;
  625. __le16 vsi_number;
  626. __le16 vsi_used;
  627. __le16 vsi_free;
  628. __le32 addr_high;
  629. __le32 addr_low;
  630. };
  631. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi_completion);
  632. struct i40e_aqc_vsi_properties_data {
  633. /* first 96 byte are written by SW */
  634. __le16 valid_sections;
  635. #define I40E_AQ_VSI_PROP_SWITCH_VALID 0x0001
  636. #define I40E_AQ_VSI_PROP_SECURITY_VALID 0x0002
  637. #define I40E_AQ_VSI_PROP_VLAN_VALID 0x0004
  638. #define I40E_AQ_VSI_PROP_CAS_PV_VALID 0x0008
  639. #define I40E_AQ_VSI_PROP_INGRESS_UP_VALID 0x0010
  640. #define I40E_AQ_VSI_PROP_EGRESS_UP_VALID 0x0020
  641. #define I40E_AQ_VSI_PROP_QUEUE_MAP_VALID 0x0040
  642. #define I40E_AQ_VSI_PROP_QUEUE_OPT_VALID 0x0080
  643. #define I40E_AQ_VSI_PROP_OUTER_UP_VALID 0x0100
  644. #define I40E_AQ_VSI_PROP_SCHED_VALID 0x0200
  645. /* switch section */
  646. __le16 switch_id; /* 12bit id combined with flags below */
  647. #define I40E_AQ_VSI_SW_ID_SHIFT 0x0000
  648. #define I40E_AQ_VSI_SW_ID_MASK (0xFFF << I40E_AQ_VSI_SW_ID_SHIFT)
  649. #define I40E_AQ_VSI_SW_ID_FLAG_NOT_STAG 0x1000
  650. #define I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB 0x2000
  651. #define I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB 0x4000
  652. u8 sw_reserved[2];
  653. /* security section */
  654. u8 sec_flags;
  655. #define I40E_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD 0x01
  656. #define I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK 0x02
  657. #define I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK 0x04
  658. u8 sec_reserved;
  659. /* VLAN section */
  660. __le16 pvid; /* VLANS include priority bits */
  661. __le16 fcoe_pvid;
  662. u8 port_vlan_flags;
  663. #define I40E_AQ_VSI_PVLAN_MODE_SHIFT 0x00
  664. #define I40E_AQ_VSI_PVLAN_MODE_MASK (0x03 << \
  665. I40E_AQ_VSI_PVLAN_MODE_SHIFT)
  666. #define I40E_AQ_VSI_PVLAN_MODE_TAGGED 0x01
  667. #define I40E_AQ_VSI_PVLAN_MODE_UNTAGGED 0x02
  668. #define I40E_AQ_VSI_PVLAN_MODE_ALL 0x03
  669. #define I40E_AQ_VSI_PVLAN_INSERT_PVID 0x04
  670. #define I40E_AQ_VSI_PVLAN_EMOD_SHIFT 0x03
  671. #define I40E_AQ_VSI_PVLAN_EMOD_MASK (0x3 << \
  672. I40E_AQ_VSI_PVLAN_EMOD_SHIFT)
  673. #define I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH 0x0
  674. #define I40E_AQ_VSI_PVLAN_EMOD_STR_UP 0x08
  675. #define I40E_AQ_VSI_PVLAN_EMOD_STR 0x10
  676. #define I40E_AQ_VSI_PVLAN_EMOD_NOTHING 0x18
  677. u8 pvlan_reserved[3];
  678. /* ingress egress up sections */
  679. __le32 ingress_table; /* bitmap, 3 bits per up */
  680. #define I40E_AQ_VSI_UP_TABLE_UP0_SHIFT 0
  681. #define I40E_AQ_VSI_UP_TABLE_UP0_MASK (0x7 << \
  682. I40E_AQ_VSI_UP_TABLE_UP0_SHIFT)
  683. #define I40E_AQ_VSI_UP_TABLE_UP1_SHIFT 3
  684. #define I40E_AQ_VSI_UP_TABLE_UP1_MASK (0x7 << \
  685. I40E_AQ_VSI_UP_TABLE_UP1_SHIFT)
  686. #define I40E_AQ_VSI_UP_TABLE_UP2_SHIFT 6
  687. #define I40E_AQ_VSI_UP_TABLE_UP2_MASK (0x7 << \
  688. I40E_AQ_VSI_UP_TABLE_UP2_SHIFT)
  689. #define I40E_AQ_VSI_UP_TABLE_UP3_SHIFT 9
  690. #define I40E_AQ_VSI_UP_TABLE_UP3_MASK (0x7 << \
  691. I40E_AQ_VSI_UP_TABLE_UP3_SHIFT)
  692. #define I40E_AQ_VSI_UP_TABLE_UP4_SHIFT 12
  693. #define I40E_AQ_VSI_UP_TABLE_UP4_MASK (0x7 << \
  694. I40E_AQ_VSI_UP_TABLE_UP4_SHIFT)
  695. #define I40E_AQ_VSI_UP_TABLE_UP5_SHIFT 15
  696. #define I40E_AQ_VSI_UP_TABLE_UP5_MASK (0x7 << \
  697. I40E_AQ_VSI_UP_TABLE_UP5_SHIFT)
  698. #define I40E_AQ_VSI_UP_TABLE_UP6_SHIFT 18
  699. #define I40E_AQ_VSI_UP_TABLE_UP6_MASK (0x7 << \
  700. I40E_AQ_VSI_UP_TABLE_UP6_SHIFT)
  701. #define I40E_AQ_VSI_UP_TABLE_UP7_SHIFT 21
  702. #define I40E_AQ_VSI_UP_TABLE_UP7_MASK (0x7 << \
  703. I40E_AQ_VSI_UP_TABLE_UP7_SHIFT)
  704. __le32 egress_table; /* same defines as for ingress table */
  705. /* cascaded PV section */
  706. __le16 cas_pv_tag;
  707. u8 cas_pv_flags;
  708. #define I40E_AQ_VSI_CAS_PV_TAGX_SHIFT 0x00
  709. #define I40E_AQ_VSI_CAS_PV_TAGX_MASK (0x03 << \
  710. I40E_AQ_VSI_CAS_PV_TAGX_SHIFT)
  711. #define I40E_AQ_VSI_CAS_PV_TAGX_LEAVE 0x00
  712. #define I40E_AQ_VSI_CAS_PV_TAGX_REMOVE 0x01
  713. #define I40E_AQ_VSI_CAS_PV_TAGX_COPY 0x02
  714. #define I40E_AQ_VSI_CAS_PV_INSERT_TAG 0x10
  715. #define I40E_AQ_VSI_CAS_PV_ETAG_PRUNE 0x20
  716. #define I40E_AQ_VSI_CAS_PV_ACCEPT_HOST_TAG 0x40
  717. u8 cas_pv_reserved;
  718. /* queue mapping section */
  719. __le16 mapping_flags;
  720. #define I40E_AQ_VSI_QUE_MAP_CONTIG 0x0
  721. #define I40E_AQ_VSI_QUE_MAP_NONCONTIG 0x1
  722. __le16 queue_mapping[16];
  723. #define I40E_AQ_VSI_QUEUE_SHIFT 0x0
  724. #define I40E_AQ_VSI_QUEUE_MASK (0x7FF << I40E_AQ_VSI_QUEUE_SHIFT)
  725. __le16 tc_mapping[8];
  726. #define I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT 0
  727. #define I40E_AQ_VSI_TC_QUE_OFFSET_MASK (0x1FF << \
  728. I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT)
  729. #define I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT 9
  730. #define I40E_AQ_VSI_TC_QUE_NUMBER_MASK (0x7 << \
  731. I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT)
  732. /* queueing option section */
  733. u8 queueing_opt_flags;
  734. #define I40E_AQ_VSI_QUE_OPT_MULTICAST_UDP_ENA 0x04
  735. #define I40E_AQ_VSI_QUE_OPT_UNICAST_UDP_ENA 0x08
  736. #define I40E_AQ_VSI_QUE_OPT_TCP_ENA 0x10
  737. #define I40E_AQ_VSI_QUE_OPT_FCOE_ENA 0x20
  738. #define I40E_AQ_VSI_QUE_OPT_RSS_LUT_PF 0x00
  739. #define I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI 0x40
  740. u8 queueing_opt_reserved[3];
  741. /* scheduler section */
  742. u8 up_enable_bits;
  743. u8 sched_reserved;
  744. /* outer up section */
  745. __le32 outer_up_table; /* same structure and defines as ingress tbl */
  746. u8 cmd_reserved[8];
  747. /* last 32 bytes are written by FW */
  748. __le16 qs_handle[8];
  749. #define I40E_AQ_VSI_QS_HANDLE_INVALID 0xFFFF
  750. __le16 stat_counter_idx;
  751. __le16 sched_id;
  752. u8 resp_reserved[12];
  753. };
  754. I40E_CHECK_STRUCT_LEN(128, i40e_aqc_vsi_properties_data);
  755. /* Add Port Virtualizer (direct 0x0220)
  756. * also used for update PV (direct 0x0221) but only flags are used
  757. * (IS_CTRL_PORT only works on add PV)
  758. */
  759. struct i40e_aqc_add_update_pv {
  760. __le16 command_flags;
  761. #define I40E_AQC_PV_FLAG_PV_TYPE 0x1
  762. #define I40E_AQC_PV_FLAG_FWD_UNKNOWN_STAG_EN 0x2
  763. #define I40E_AQC_PV_FLAG_FWD_UNKNOWN_ETAG_EN 0x4
  764. #define I40E_AQC_PV_FLAG_IS_CTRL_PORT 0x8
  765. __le16 uplink_seid;
  766. __le16 connected_seid;
  767. u8 reserved[10];
  768. };
  769. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv);
  770. struct i40e_aqc_add_update_pv_completion {
  771. /* reserved for update; for add also encodes error if rc == ENOSPC */
  772. __le16 pv_seid;
  773. #define I40E_AQC_PV_ERR_FLAG_NO_PV 0x1
  774. #define I40E_AQC_PV_ERR_FLAG_NO_SCHED 0x2
  775. #define I40E_AQC_PV_ERR_FLAG_NO_COUNTER 0x4
  776. #define I40E_AQC_PV_ERR_FLAG_NO_ENTRY 0x8
  777. u8 reserved[14];
  778. };
  779. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv_completion);
  780. /* Get PV Params (direct 0x0222)
  781. * uses i40e_aqc_switch_seid for the descriptor
  782. */
  783. struct i40e_aqc_get_pv_params_completion {
  784. __le16 seid;
  785. __le16 default_stag;
  786. __le16 pv_flags; /* same flags as add_pv */
  787. #define I40E_AQC_GET_PV_PV_TYPE 0x1
  788. #define I40E_AQC_GET_PV_FRWD_UNKNOWN_STAG 0x2
  789. #define I40E_AQC_GET_PV_FRWD_UNKNOWN_ETAG 0x4
  790. u8 reserved[8];
  791. __le16 default_port_seid;
  792. };
  793. I40E_CHECK_CMD_LENGTH(i40e_aqc_get_pv_params_completion);
  794. /* Add VEB (direct 0x0230) */
  795. struct i40e_aqc_add_veb {
  796. __le16 uplink_seid;
  797. __le16 downlink_seid;
  798. __le16 veb_flags;
  799. #define I40E_AQC_ADD_VEB_FLOATING 0x1
  800. #define I40E_AQC_ADD_VEB_PORT_TYPE_SHIFT 1
  801. #define I40E_AQC_ADD_VEB_PORT_TYPE_MASK (0x3 << \
  802. I40E_AQC_ADD_VEB_PORT_TYPE_SHIFT)
  803. #define I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT 0x2
  804. #define I40E_AQC_ADD_VEB_PORT_TYPE_DATA 0x4
  805. #define I40E_AQC_ADD_VEB_ENABLE_L2_FILTER 0x8
  806. u8 enable_tcs;
  807. u8 reserved[9];
  808. };
  809. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb);
  810. struct i40e_aqc_add_veb_completion {
  811. u8 reserved[6];
  812. __le16 switch_seid;
  813. /* also encodes error if rc == ENOSPC; codes are the same as add_pv */
  814. __le16 veb_seid;
  815. #define I40E_AQC_VEB_ERR_FLAG_NO_VEB 0x1
  816. #define I40E_AQC_VEB_ERR_FLAG_NO_SCHED 0x2
  817. #define I40E_AQC_VEB_ERR_FLAG_NO_COUNTER 0x4
  818. #define I40E_AQC_VEB_ERR_FLAG_NO_ENTRY 0x8
  819. __le16 statistic_index;
  820. __le16 vebs_used;
  821. __le16 vebs_free;
  822. };
  823. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb_completion);
  824. /* Get VEB Parameters (direct 0x0232)
  825. * uses i40e_aqc_switch_seid for the descriptor
  826. */
  827. struct i40e_aqc_get_veb_parameters_completion {
  828. __le16 seid;
  829. __le16 switch_id;
  830. __le16 veb_flags; /* only the first/last flags from 0x0230 is valid */
  831. __le16 statistic_index;
  832. __le16 vebs_used;
  833. __le16 vebs_free;
  834. u8 reserved[4];
  835. };
  836. I40E_CHECK_CMD_LENGTH(i40e_aqc_get_veb_parameters_completion);
  837. /* Delete Element (direct 0x0243)
  838. * uses the generic i40e_aqc_switch_seid
  839. */
  840. /* Add MAC-VLAN (indirect 0x0250) */
  841. /* used for the command for most vlan commands */
  842. struct i40e_aqc_macvlan {
  843. __le16 num_addresses;
  844. __le16 seid[3];
  845. #define I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT 0
  846. #define I40E_AQC_MACVLAN_CMD_SEID_NUM_MASK (0x3FF << \
  847. I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT)
  848. #define I40E_AQC_MACVLAN_CMD_SEID_VALID 0x8000
  849. __le32 addr_high;
  850. __le32 addr_low;
  851. };
  852. I40E_CHECK_CMD_LENGTH(i40e_aqc_macvlan);
  853. /* indirect data for command and response */
  854. struct i40e_aqc_add_macvlan_element_data {
  855. u8 mac_addr[6];
  856. __le16 vlan_tag;
  857. __le16 flags;
  858. #define I40E_AQC_MACVLAN_ADD_PERFECT_MATCH 0x0001
  859. #define I40E_AQC_MACVLAN_ADD_HASH_MATCH 0x0002
  860. #define I40E_AQC_MACVLAN_ADD_IGNORE_VLAN 0x0004
  861. #define I40E_AQC_MACVLAN_ADD_TO_QUEUE 0x0008
  862. __le16 queue_number;
  863. #define I40E_AQC_MACVLAN_CMD_QUEUE_SHIFT 0
  864. #define I40E_AQC_MACVLAN_CMD_QUEUE_MASK (0x7FF << \
  865. I40E_AQC_MACVLAN_CMD_SEID_NUM_SHIFT)
  866. /* response section */
  867. u8 match_method;
  868. #define I40E_AQC_MM_PERFECT_MATCH 0x01
  869. #define I40E_AQC_MM_HASH_MATCH 0x02
  870. #define I40E_AQC_MM_ERR_NO_RES 0xFF
  871. u8 reserved1[3];
  872. };
  873. struct i40e_aqc_add_remove_macvlan_completion {
  874. __le16 perfect_mac_used;
  875. __le16 perfect_mac_free;
  876. __le16 unicast_hash_free;
  877. __le16 multicast_hash_free;
  878. __le32 addr_high;
  879. __le32 addr_low;
  880. };
  881. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_macvlan_completion);
  882. /* Remove MAC-VLAN (indirect 0x0251)
  883. * uses i40e_aqc_macvlan for the descriptor
  884. * data points to an array of num_addresses of elements
  885. */
  886. struct i40e_aqc_remove_macvlan_element_data {
  887. u8 mac_addr[6];
  888. __le16 vlan_tag;
  889. u8 flags;
  890. #define I40E_AQC_MACVLAN_DEL_PERFECT_MATCH 0x01
  891. #define I40E_AQC_MACVLAN_DEL_HASH_MATCH 0x02
  892. #define I40E_AQC_MACVLAN_DEL_IGNORE_VLAN 0x08
  893. #define I40E_AQC_MACVLAN_DEL_ALL_VSIS 0x10
  894. u8 reserved[3];
  895. /* reply section */
  896. u8 error_code;
  897. #define I40E_AQC_REMOVE_MACVLAN_SUCCESS 0x0
  898. #define I40E_AQC_REMOVE_MACVLAN_FAIL 0xFF
  899. u8 reply_reserved[3];
  900. };
  901. /* Add VLAN (indirect 0x0252)
  902. * Remove VLAN (indirect 0x0253)
  903. * use the generic i40e_aqc_macvlan for the command
  904. */
  905. struct i40e_aqc_add_remove_vlan_element_data {
  906. __le16 vlan_tag;
  907. u8 vlan_flags;
  908. /* flags for add VLAN */
  909. #define I40E_AQC_ADD_VLAN_LOCAL 0x1
  910. #define I40E_AQC_ADD_PVLAN_TYPE_SHIFT 1
  911. #define I40E_AQC_ADD_PVLAN_TYPE_MASK (0x3 << I40E_AQC_ADD_PVLAN_TYPE_SHIFT)
  912. #define I40E_AQC_ADD_PVLAN_TYPE_REGULAR 0x0
  913. #define I40E_AQC_ADD_PVLAN_TYPE_PRIMARY 0x2
  914. #define I40E_AQC_ADD_PVLAN_TYPE_SECONDARY 0x4
  915. #define I40E_AQC_VLAN_PTYPE_SHIFT 3
  916. #define I40E_AQC_VLAN_PTYPE_MASK (0x3 << I40E_AQC_VLAN_PTYPE_SHIFT)
  917. #define I40E_AQC_VLAN_PTYPE_REGULAR_VSI 0x0
  918. #define I40E_AQC_VLAN_PTYPE_PROMISC_VSI 0x8
  919. #define I40E_AQC_VLAN_PTYPE_COMMUNITY_VSI 0x10
  920. #define I40E_AQC_VLAN_PTYPE_ISOLATED_VSI 0x18
  921. /* flags for remove VLAN */
  922. #define I40E_AQC_REMOVE_VLAN_ALL 0x1
  923. u8 reserved;
  924. u8 result;
  925. /* flags for add VLAN */
  926. #define I40E_AQC_ADD_VLAN_SUCCESS 0x0
  927. #define I40E_AQC_ADD_VLAN_FAIL_REQUEST 0xFE
  928. #define I40E_AQC_ADD_VLAN_FAIL_RESOURCE 0xFF
  929. /* flags for remove VLAN */
  930. #define I40E_AQC_REMOVE_VLAN_SUCCESS 0x0
  931. #define I40E_AQC_REMOVE_VLAN_FAIL 0xFF
  932. u8 reserved1[3];
  933. };
  934. struct i40e_aqc_add_remove_vlan_completion {
  935. u8 reserved[4];
  936. __le16 vlans_used;
  937. __le16 vlans_free;
  938. __le32 addr_high;
  939. __le32 addr_low;
  940. };
  941. /* Set VSI Promiscuous Modes (direct 0x0254) */
  942. struct i40e_aqc_set_vsi_promiscuous_modes {
  943. __le16 promiscuous_flags;
  944. __le16 valid_flags;
  945. /* flags used for both fields above */
  946. #define I40E_AQC_SET_VSI_PROMISC_UNICAST 0x01
  947. #define I40E_AQC_SET_VSI_PROMISC_MULTICAST 0x02
  948. #define I40E_AQC_SET_VSI_PROMISC_BROADCAST 0x04
  949. #define I40E_AQC_SET_VSI_DEFAULT 0x08
  950. #define I40E_AQC_SET_VSI_PROMISC_VLAN 0x10
  951. __le16 seid;
  952. #define I40E_AQC_VSI_PROM_CMD_SEID_MASK 0x3FF
  953. __le16 vlan_tag;
  954. #define I40E_AQC_SET_VSI_VLAN_MASK 0x0FFF
  955. #define I40E_AQC_SET_VSI_VLAN_VALID 0x8000
  956. u8 reserved[8];
  957. };
  958. I40E_CHECK_CMD_LENGTH(i40e_aqc_set_vsi_promiscuous_modes);
  959. /* Add S/E-tag command (direct 0x0255)
  960. * Uses generic i40e_aqc_add_remove_tag_completion for completion
  961. */
  962. struct i40e_aqc_add_tag {
  963. __le16 flags;
  964. #define I40E_AQC_ADD_TAG_FLAG_TO_QUEUE 0x0001
  965. __le16 seid;
  966. #define I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT 0
  967. #define I40E_AQC_ADD_TAG_CMD_SEID_NUM_MASK (0x3FF << \
  968. I40E_AQC_ADD_TAG_CMD_SEID_NUM_SHIFT)
  969. __le16 tag;
  970. __le16 queue_number;
  971. u8 reserved[8];
  972. };
  973. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_tag);
  974. struct i40e_aqc_add_remove_tag_completion {
  975. u8 reserved[12];
  976. __le16 tags_used;
  977. __le16 tags_free;
  978. };
  979. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_tag_completion);
  980. /* Remove S/E-tag command (direct 0x0256)
  981. * Uses generic i40e_aqc_add_remove_tag_completion for completion
  982. */
  983. struct i40e_aqc_remove_tag {
  984. __le16 seid;
  985. #define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT 0
  986. #define I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_MASK (0x3FF << \
  987. I40E_AQC_REMOVE_TAG_CMD_SEID_NUM_SHIFT)
  988. __le16 tag;
  989. u8 reserved[12];
  990. };
  991. I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_tag);
  992. /* Add multicast E-Tag (direct 0x0257)
  993. * del multicast E-Tag (direct 0x0258) only uses pv_seid and etag fields
  994. * and no external data
  995. */
  996. struct i40e_aqc_add_remove_mcast_etag {
  997. __le16 pv_seid;
  998. __le16 etag;
  999. u8 num_unicast_etags;
  1000. u8 reserved[3];
  1001. __le32 addr_high; /* address of array of 2-byte s-tags */
  1002. __le32 addr_low;
  1003. };
  1004. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag);
  1005. struct i40e_aqc_add_remove_mcast_etag_completion {
  1006. u8 reserved[4];
  1007. __le16 mcast_etags_used;
  1008. __le16 mcast_etags_free;
  1009. __le32 addr_high;
  1010. __le32 addr_low;
  1011. };
  1012. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag_completion);
  1013. /* Update S/E-Tag (direct 0x0259) */
  1014. struct i40e_aqc_update_tag {
  1015. __le16 seid;
  1016. #define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT 0
  1017. #define I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_MASK (0x3FF << \
  1018. I40E_AQC_UPDATE_TAG_CMD_SEID_NUM_SHIFT)
  1019. __le16 old_tag;
  1020. __le16 new_tag;
  1021. u8 reserved[10];
  1022. };
  1023. I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag);
  1024. struct i40e_aqc_update_tag_completion {
  1025. u8 reserved[12];
  1026. __le16 tags_used;
  1027. __le16 tags_free;
  1028. };
  1029. I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag_completion);
  1030. /* Add Control Packet filter (direct 0x025A)
  1031. * Remove Control Packet filter (direct 0x025B)
  1032. * uses the i40e_aqc_add_oveb_cloud,
  1033. * and the generic direct completion structure
  1034. */
  1035. struct i40e_aqc_add_remove_control_packet_filter {
  1036. u8 mac[6];
  1037. __le16 etype;
  1038. __le16 flags;
  1039. #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC 0x0001
  1040. #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP 0x0002
  1041. #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TO_QUEUE 0x0004
  1042. #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX 0x0008
  1043. #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_RX 0x0000
  1044. __le16 seid;
  1045. #define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT 0
  1046. #define I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_MASK (0x3FF << \
  1047. I40E_AQC_ADD_CONTROL_PACKET_CMD_SEID_NUM_SHIFT)
  1048. __le16 queue;
  1049. u8 reserved[2];
  1050. };
  1051. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter);
  1052. struct i40e_aqc_add_remove_control_packet_filter_completion {
  1053. __le16 mac_etype_used;
  1054. __le16 etype_used;
  1055. __le16 mac_etype_free;
  1056. __le16 etype_free;
  1057. u8 reserved[8];
  1058. };
  1059. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter_completion);
  1060. /* Add Cloud filters (indirect 0x025C)
  1061. * Remove Cloud filters (indirect 0x025D)
  1062. * uses the i40e_aqc_add_remove_cloud_filters,
  1063. * and the generic indirect completion structure
  1064. */
  1065. struct i40e_aqc_add_remove_cloud_filters {
  1066. u8 num_filters;
  1067. u8 reserved;
  1068. __le16 seid;
  1069. #define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT 0
  1070. #define I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_MASK (0x3FF << \
  1071. I40E_AQC_ADD_CLOUD_CMD_SEID_NUM_SHIFT)
  1072. u8 reserved2[4];
  1073. __le32 addr_high;
  1074. __le32 addr_low;
  1075. };
  1076. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_cloud_filters);
  1077. struct i40e_aqc_add_remove_cloud_filters_element_data {
  1078. u8 outer_mac[6];
  1079. u8 inner_mac[6];
  1080. __le16 inner_vlan;
  1081. union {
  1082. struct {
  1083. u8 reserved[12];
  1084. u8 data[4];
  1085. } v4;
  1086. struct {
  1087. u8 data[16];
  1088. } v6;
  1089. } ipaddr;
  1090. __le16 flags;
  1091. #define I40E_AQC_ADD_CLOUD_FILTER_SHIFT 0
  1092. #define I40E_AQC_ADD_CLOUD_FILTER_MASK (0x3F << \
  1093. I40E_AQC_ADD_CLOUD_FILTER_SHIFT)
  1094. /* 0x0000 reserved */
  1095. #define I40E_AQC_ADD_CLOUD_FILTER_OIP 0x0001
  1096. /* 0x0002 reserved */
  1097. #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN 0x0003
  1098. #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN_TEN_ID 0x0004
  1099. /* 0x0005 reserved */
  1100. #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_TEN_ID 0x0006
  1101. /* 0x0007 reserved */
  1102. /* 0x0008 reserved */
  1103. #define I40E_AQC_ADD_CLOUD_FILTER_OMAC 0x0009
  1104. #define I40E_AQC_ADD_CLOUD_FILTER_IMAC 0x000A
  1105. #define I40E_AQC_ADD_CLOUD_FILTER_OMAC_TEN_ID_IMAC 0x000B
  1106. #define I40E_AQC_ADD_CLOUD_FILTER_IIP 0x000C
  1107. #define I40E_AQC_ADD_CLOUD_FLAGS_TO_QUEUE 0x0080
  1108. #define I40E_AQC_ADD_CLOUD_VNK_SHIFT 6
  1109. #define I40E_AQC_ADD_CLOUD_VNK_MASK 0x00C0
  1110. #define I40E_AQC_ADD_CLOUD_FLAGS_IPV4 0
  1111. #define I40E_AQC_ADD_CLOUD_FLAGS_IPV6 0x0100
  1112. #define I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT 9
  1113. #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK 0x1E00
  1114. #define I40E_AQC_ADD_CLOUD_TNL_TYPE_XVLAN 0
  1115. #define I40E_AQC_ADD_CLOUD_TNL_TYPE_NVGRE_OMAC 1
  1116. #define I40E_AQC_ADD_CLOUD_TNL_TYPE_NGE 2
  1117. #define I40E_AQC_ADD_CLOUD_TNL_TYPE_IP 3
  1118. __le32 tenant_id;
  1119. u8 reserved[4];
  1120. __le16 queue_number;
  1121. #define I40E_AQC_ADD_CLOUD_QUEUE_SHIFT 0
  1122. #define I40E_AQC_ADD_CLOUD_QUEUE_MASK (0x7FF << \
  1123. I40E_AQC_ADD_CLOUD_QUEUE_SHIFT)
  1124. u8 reserved2[14];
  1125. /* response section */
  1126. u8 allocation_result;
  1127. #define I40E_AQC_ADD_CLOUD_FILTER_SUCCESS 0x0
  1128. #define I40E_AQC_ADD_CLOUD_FILTER_FAIL 0xFF
  1129. u8 response_reserved[7];
  1130. };
  1131. struct i40e_aqc_remove_cloud_filters_completion {
  1132. __le16 perfect_ovlan_used;
  1133. __le16 perfect_ovlan_free;
  1134. __le16 vlan_used;
  1135. __le16 vlan_free;
  1136. __le32 addr_high;
  1137. __le32 addr_low;
  1138. };
  1139. I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_cloud_filters_completion);
  1140. /* Add Mirror Rule (indirect or direct 0x0260)
  1141. * Delete Mirror Rule (indirect or direct 0x0261)
  1142. * note: some rule types (4,5) do not use an external buffer.
  1143. * take care to set the flags correctly.
  1144. */
  1145. struct i40e_aqc_add_delete_mirror_rule {
  1146. __le16 seid;
  1147. __le16 rule_type;
  1148. #define I40E_AQC_MIRROR_RULE_TYPE_SHIFT 0
  1149. #define I40E_AQC_MIRROR_RULE_TYPE_MASK (0x7 << \
  1150. I40E_AQC_MIRROR_RULE_TYPE_SHIFT)
  1151. #define I40E_AQC_MIRROR_RULE_TYPE_VPORT_INGRESS 1
  1152. #define I40E_AQC_MIRROR_RULE_TYPE_VPORT_EGRESS 2
  1153. #define I40E_AQC_MIRROR_RULE_TYPE_VLAN 3
  1154. #define I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS 4
  1155. #define I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS 5
  1156. __le16 num_entries;
  1157. __le16 destination; /* VSI for add, rule id for delete */
  1158. __le32 addr_high; /* address of array of 2-byte VSI or VLAN ids */
  1159. __le32 addr_low;
  1160. };
  1161. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule);
  1162. struct i40e_aqc_add_delete_mirror_rule_completion {
  1163. u8 reserved[2];
  1164. __le16 rule_id; /* only used on add */
  1165. __le16 mirror_rules_used;
  1166. __le16 mirror_rules_free;
  1167. __le32 addr_high;
  1168. __le32 addr_low;
  1169. };
  1170. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule_completion);
  1171. /* DCB 0x03xx*/
  1172. /* PFC Ignore (direct 0x0301)
  1173. * the command and response use the same descriptor structure
  1174. */
  1175. struct i40e_aqc_pfc_ignore {
  1176. u8 tc_bitmap;
  1177. u8 command_flags; /* unused on response */
  1178. #define I40E_AQC_PFC_IGNORE_SET 0x80
  1179. #define I40E_AQC_PFC_IGNORE_CLEAR 0x0
  1180. u8 reserved[14];
  1181. };
  1182. I40E_CHECK_CMD_LENGTH(i40e_aqc_pfc_ignore);
  1183. /* DCB Update (direct 0x0302) uses the i40e_aq_desc structure
  1184. * with no parameters
  1185. */
  1186. /* TX scheduler 0x04xx */
  1187. /* Almost all the indirect commands use
  1188. * this generic struct to pass the SEID in param0
  1189. */
  1190. struct i40e_aqc_tx_sched_ind {
  1191. __le16 vsi_seid;
  1192. u8 reserved[6];
  1193. __le32 addr_high;
  1194. __le32 addr_low;
  1195. };
  1196. I40E_CHECK_CMD_LENGTH(i40e_aqc_tx_sched_ind);
  1197. /* Several commands respond with a set of queue set handles */
  1198. struct i40e_aqc_qs_handles_resp {
  1199. __le16 qs_handles[8];
  1200. };
  1201. /* Configure VSI BW limits (direct 0x0400) */
  1202. struct i40e_aqc_configure_vsi_bw_limit {
  1203. __le16 vsi_seid;
  1204. u8 reserved[2];
  1205. __le16 credit;
  1206. u8 reserved1[2];
  1207. u8 max_credit; /* 0-3, limit = 2^max */
  1208. u8 reserved2[7];
  1209. };
  1210. I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_vsi_bw_limit);
  1211. /* Configure VSI Bandwidth Limit per Traffic Type (indirect 0x0406)
  1212. * responds with i40e_aqc_qs_handles_resp
  1213. */
  1214. struct i40e_aqc_configure_vsi_ets_sla_bw_data {
  1215. u8 tc_valid_bits;
  1216. u8 reserved[15];
  1217. __le16 tc_bw_credits[8]; /* FW writesback QS handles here */
  1218. /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
  1219. __le16 tc_bw_max[2];
  1220. u8 reserved1[28];
  1221. };
  1222. I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_configure_vsi_ets_sla_bw_data);
  1223. /* Configure VSI Bandwidth Allocation per Traffic Type (indirect 0x0407)
  1224. * responds with i40e_aqc_qs_handles_resp
  1225. */
  1226. struct i40e_aqc_configure_vsi_tc_bw_data {
  1227. u8 tc_valid_bits;
  1228. u8 reserved[3];
  1229. u8 tc_bw_credits[8];
  1230. u8 reserved1[4];
  1231. __le16 qs_handles[8];
  1232. };
  1233. I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_vsi_tc_bw_data);
  1234. /* Query vsi bw configuration (indirect 0x0408) */
  1235. struct i40e_aqc_query_vsi_bw_config_resp {
  1236. u8 tc_valid_bits;
  1237. u8 tc_suspended_bits;
  1238. u8 reserved[14];
  1239. __le16 qs_handles[8];
  1240. u8 reserved1[4];
  1241. __le16 port_bw_limit;
  1242. u8 reserved2[2];
  1243. u8 max_bw; /* 0-3, limit = 2^max */
  1244. u8 reserved3[23];
  1245. };
  1246. I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_vsi_bw_config_resp);
  1247. /* Query VSI Bandwidth Allocation per Traffic Type (indirect 0x040A) */
  1248. struct i40e_aqc_query_vsi_ets_sla_config_resp {
  1249. u8 tc_valid_bits;
  1250. u8 reserved[3];
  1251. u8 share_credits[8];
  1252. __le16 credits[8];
  1253. /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
  1254. __le16 tc_bw_max[2];
  1255. };
  1256. I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_vsi_ets_sla_config_resp);
  1257. /* Configure Switching Component Bandwidth Limit (direct 0x0410) */
  1258. struct i40e_aqc_configure_switching_comp_bw_limit {
  1259. __le16 seid;
  1260. u8 reserved[2];
  1261. __le16 credit;
  1262. u8 reserved1[2];
  1263. u8 max_bw; /* 0-3, limit = 2^max */
  1264. u8 reserved2[7];
  1265. };
  1266. I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_switching_comp_bw_limit);
  1267. /* Enable Physical Port ETS (indirect 0x0413)
  1268. * Modify Physical Port ETS (indirect 0x0414)
  1269. * Disable Physical Port ETS (indirect 0x0415)
  1270. */
  1271. struct i40e_aqc_configure_switching_comp_ets_data {
  1272. u8 reserved[4];
  1273. u8 tc_valid_bits;
  1274. u8 seepage;
  1275. #define I40E_AQ_ETS_SEEPAGE_EN_MASK 0x1
  1276. u8 tc_strict_priority_flags;
  1277. u8 reserved1[17];
  1278. u8 tc_bw_share_credits[8];
  1279. u8 reserved2[96];
  1280. };
  1281. I40E_CHECK_STRUCT_LEN(0x80, i40e_aqc_configure_switching_comp_ets_data);
  1282. /* Configure Switching Component Bandwidth Limits per Tc (indirect 0x0416) */
  1283. struct i40e_aqc_configure_switching_comp_ets_bw_limit_data {
  1284. u8 tc_valid_bits;
  1285. u8 reserved[15];
  1286. __le16 tc_bw_credit[8];
  1287. /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
  1288. __le16 tc_bw_max[2];
  1289. u8 reserved1[28];
  1290. };
  1291. I40E_CHECK_STRUCT_LEN(0x40,
  1292. i40e_aqc_configure_switching_comp_ets_bw_limit_data);
  1293. /* Configure Switching Component Bandwidth Allocation per Tc
  1294. * (indirect 0x0417)
  1295. */
  1296. struct i40e_aqc_configure_switching_comp_bw_config_data {
  1297. u8 tc_valid_bits;
  1298. u8 reserved[2];
  1299. u8 absolute_credits; /* bool */
  1300. u8 tc_bw_share_credits[8];
  1301. u8 reserved1[20];
  1302. };
  1303. I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_switching_comp_bw_config_data);
  1304. /* Query Switching Component Configuration (indirect 0x0418) */
  1305. struct i40e_aqc_query_switching_comp_ets_config_resp {
  1306. u8 tc_valid_bits;
  1307. u8 reserved[35];
  1308. __le16 port_bw_limit;
  1309. u8 reserved1[2];
  1310. u8 tc_bw_max; /* 0-3, limit = 2^max */
  1311. u8 reserved2[23];
  1312. };
  1313. I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_switching_comp_ets_config_resp);
  1314. /* Query PhysicalPort ETS Configuration (indirect 0x0419) */
  1315. struct i40e_aqc_query_port_ets_config_resp {
  1316. u8 reserved[4];
  1317. u8 tc_valid_bits;
  1318. u8 reserved1;
  1319. u8 tc_strict_priority_bits;
  1320. u8 reserved2;
  1321. u8 tc_bw_share_credits[8];
  1322. __le16 tc_bw_limits[8];
  1323. /* 4 bits per tc 0-7, 4th bit reserved, limit = 2^max */
  1324. __le16 tc_bw_max[2];
  1325. u8 reserved3[32];
  1326. };
  1327. I40E_CHECK_STRUCT_LEN(0x44, i40e_aqc_query_port_ets_config_resp);
  1328. /* Query Switching Component Bandwidth Allocation per Traffic Type
  1329. * (indirect 0x041A)
  1330. */
  1331. struct i40e_aqc_query_switching_comp_bw_config_resp {
  1332. u8 tc_valid_bits;
  1333. u8 reserved[2];
  1334. u8 absolute_credits_enable; /* bool */
  1335. u8 tc_bw_share_credits[8];
  1336. __le16 tc_bw_limits[8];
  1337. /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
  1338. __le16 tc_bw_max[2];
  1339. };
  1340. I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_switching_comp_bw_config_resp);
  1341. /* Suspend/resume port TX traffic
  1342. * (direct 0x041B and 0x041C) uses the generic SEID struct
  1343. */
  1344. /* Configure partition BW
  1345. * (indirect 0x041D)
  1346. */
  1347. struct i40e_aqc_configure_partition_bw_data {
  1348. __le16 pf_valid_bits;
  1349. u8 min_bw[16]; /* guaranteed bandwidth */
  1350. u8 max_bw[16]; /* bandwidth limit */
  1351. };
  1352. I40E_CHECK_STRUCT_LEN(0x22, i40e_aqc_configure_partition_bw_data);
  1353. /* Get and set the active HMC resource profile and status.
  1354. * (direct 0x0500) and (direct 0x0501)
  1355. */
  1356. struct i40e_aq_get_set_hmc_resource_profile {
  1357. u8 pm_profile;
  1358. u8 pe_vf_enabled;
  1359. u8 reserved[14];
  1360. };
  1361. I40E_CHECK_CMD_LENGTH(i40e_aq_get_set_hmc_resource_profile);
  1362. enum i40e_aq_hmc_profile {
  1363. /* I40E_HMC_PROFILE_NO_CHANGE = 0, reserved */
  1364. I40E_HMC_PROFILE_DEFAULT = 1,
  1365. I40E_HMC_PROFILE_FAVOR_VF = 2,
  1366. I40E_HMC_PROFILE_EQUAL = 3,
  1367. };
  1368. #define I40E_AQ_GET_HMC_RESOURCE_PROFILE_PM_MASK 0xF
  1369. #define I40E_AQ_GET_HMC_RESOURCE_PROFILE_COUNT_MASK 0x3F
  1370. /* Get PHY Abilities (indirect 0x0600) uses the generic indirect struct */
  1371. /* set in param0 for get phy abilities to report qualified modules */
  1372. #define I40E_AQ_PHY_REPORT_QUALIFIED_MODULES 0x0001
  1373. #define I40E_AQ_PHY_REPORT_INITIAL_VALUES 0x0002
  1374. enum i40e_aq_phy_type {
  1375. I40E_PHY_TYPE_SGMII = 0x0,
  1376. I40E_PHY_TYPE_1000BASE_KX = 0x1,
  1377. I40E_PHY_TYPE_10GBASE_KX4 = 0x2,
  1378. I40E_PHY_TYPE_10GBASE_KR = 0x3,
  1379. I40E_PHY_TYPE_40GBASE_KR4 = 0x4,
  1380. I40E_PHY_TYPE_XAUI = 0x5,
  1381. I40E_PHY_TYPE_XFI = 0x6,
  1382. I40E_PHY_TYPE_SFI = 0x7,
  1383. I40E_PHY_TYPE_XLAUI = 0x8,
  1384. I40E_PHY_TYPE_XLPPI = 0x9,
  1385. I40E_PHY_TYPE_40GBASE_CR4_CU = 0xA,
  1386. I40E_PHY_TYPE_10GBASE_CR1_CU = 0xB,
  1387. I40E_PHY_TYPE_10GBASE_AOC = 0xC,
  1388. I40E_PHY_TYPE_40GBASE_AOC = 0xD,
  1389. I40E_PHY_TYPE_100BASE_TX = 0x11,
  1390. I40E_PHY_TYPE_1000BASE_T = 0x12,
  1391. I40E_PHY_TYPE_10GBASE_T = 0x13,
  1392. I40E_PHY_TYPE_10GBASE_SR = 0x14,
  1393. I40E_PHY_TYPE_10GBASE_LR = 0x15,
  1394. I40E_PHY_TYPE_10GBASE_SFPP_CU = 0x16,
  1395. I40E_PHY_TYPE_10GBASE_CR1 = 0x17,
  1396. I40E_PHY_TYPE_40GBASE_CR4 = 0x18,
  1397. I40E_PHY_TYPE_40GBASE_SR4 = 0x19,
  1398. I40E_PHY_TYPE_40GBASE_LR4 = 0x1A,
  1399. I40E_PHY_TYPE_1000BASE_SX = 0x1B,
  1400. I40E_PHY_TYPE_1000BASE_LX = 0x1C,
  1401. I40E_PHY_TYPE_1000BASE_T_OPTICAL = 0x1D,
  1402. I40E_PHY_TYPE_20GBASE_KR2 = 0x1E,
  1403. I40E_PHY_TYPE_MAX
  1404. };
  1405. #define I40E_LINK_SPEED_100MB_SHIFT 0x1
  1406. #define I40E_LINK_SPEED_1000MB_SHIFT 0x2
  1407. #define I40E_LINK_SPEED_10GB_SHIFT 0x3
  1408. #define I40E_LINK_SPEED_40GB_SHIFT 0x4
  1409. #define I40E_LINK_SPEED_20GB_SHIFT 0x5
  1410. enum i40e_aq_link_speed {
  1411. I40E_LINK_SPEED_UNKNOWN = 0,
  1412. I40E_LINK_SPEED_100MB = (1 << I40E_LINK_SPEED_100MB_SHIFT),
  1413. I40E_LINK_SPEED_1GB = (1 << I40E_LINK_SPEED_1000MB_SHIFT),
  1414. I40E_LINK_SPEED_10GB = (1 << I40E_LINK_SPEED_10GB_SHIFT),
  1415. I40E_LINK_SPEED_40GB = (1 << I40E_LINK_SPEED_40GB_SHIFT),
  1416. I40E_LINK_SPEED_20GB = (1 << I40E_LINK_SPEED_20GB_SHIFT)
  1417. };
  1418. struct i40e_aqc_module_desc {
  1419. u8 oui[3];
  1420. u8 reserved1;
  1421. u8 part_number[16];
  1422. u8 revision[4];
  1423. u8 reserved2[8];
  1424. };
  1425. I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_module_desc);
  1426. struct i40e_aq_get_phy_abilities_resp {
  1427. __le32 phy_type; /* bitmap using the above enum for offsets */
  1428. u8 link_speed; /* bitmap using the above enum bit patterns */
  1429. u8 abilities;
  1430. #define I40E_AQ_PHY_FLAG_PAUSE_TX 0x01
  1431. #define I40E_AQ_PHY_FLAG_PAUSE_RX 0x02
  1432. #define I40E_AQ_PHY_FLAG_LOW_POWER 0x04
  1433. #define I40E_AQ_PHY_LINK_ENABLED 0x08
  1434. #define I40E_AQ_PHY_AN_ENABLED 0x10
  1435. #define I40E_AQ_PHY_FLAG_MODULE_QUAL 0x20
  1436. __le16 eee_capability;
  1437. #define I40E_AQ_EEE_100BASE_TX 0x0002
  1438. #define I40E_AQ_EEE_1000BASE_T 0x0004
  1439. #define I40E_AQ_EEE_10GBASE_T 0x0008
  1440. #define I40E_AQ_EEE_1000BASE_KX 0x0010
  1441. #define I40E_AQ_EEE_10GBASE_KX4 0x0020
  1442. #define I40E_AQ_EEE_10GBASE_KR 0x0040
  1443. __le32 eeer_val;
  1444. u8 d3_lpan;
  1445. #define I40E_AQ_SET_PHY_D3_LPAN_ENA 0x01
  1446. u8 reserved[3];
  1447. u8 phy_id[4];
  1448. u8 module_type[3];
  1449. u8 qualified_module_count;
  1450. #define I40E_AQ_PHY_MAX_QMS 16
  1451. struct i40e_aqc_module_desc qualified_module[I40E_AQ_PHY_MAX_QMS];
  1452. };
  1453. I40E_CHECK_STRUCT_LEN(0x218, i40e_aq_get_phy_abilities_resp);
  1454. /* Set PHY Config (direct 0x0601) */
  1455. struct i40e_aq_set_phy_config { /* same bits as above in all */
  1456. __le32 phy_type;
  1457. u8 link_speed;
  1458. u8 abilities;
  1459. /* bits 0-2 use the values from get_phy_abilities_resp */
  1460. #define I40E_AQ_PHY_ENABLE_LINK 0x08
  1461. #define I40E_AQ_PHY_ENABLE_AN 0x10
  1462. #define I40E_AQ_PHY_ENABLE_ATOMIC_LINK 0x20
  1463. __le16 eee_capability;
  1464. __le32 eeer;
  1465. u8 low_power_ctrl;
  1466. u8 reserved[3];
  1467. };
  1468. I40E_CHECK_CMD_LENGTH(i40e_aq_set_phy_config);
  1469. /* Set MAC Config command data structure (direct 0x0603) */
  1470. struct i40e_aq_set_mac_config {
  1471. __le16 max_frame_size;
  1472. u8 params;
  1473. #define I40E_AQ_SET_MAC_CONFIG_CRC_EN 0x04
  1474. #define I40E_AQ_SET_MAC_CONFIG_PACING_MASK 0x78
  1475. #define I40E_AQ_SET_MAC_CONFIG_PACING_SHIFT 3
  1476. #define I40E_AQ_SET_MAC_CONFIG_PACING_NONE 0x0
  1477. #define I40E_AQ_SET_MAC_CONFIG_PACING_1B_13TX 0xF
  1478. #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_9TX 0x9
  1479. #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_4TX 0x8
  1480. #define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_7TX 0x7
  1481. #define I40E_AQ_SET_MAC_CONFIG_PACING_2DW_3TX 0x6
  1482. #define I40E_AQ_SET_MAC_CONFIG_PACING_1DW_1TX 0x5
  1483. #define I40E_AQ_SET_MAC_CONFIG_PACING_3DW_2TX 0x4
  1484. #define I40E_AQ_SET_MAC_CONFIG_PACING_7DW_3TX 0x3
  1485. #define I40E_AQ_SET_MAC_CONFIG_PACING_4DW_1TX 0x2
  1486. #define I40E_AQ_SET_MAC_CONFIG_PACING_9DW_1TX 0x1
  1487. u8 tx_timer_priority; /* bitmap */
  1488. __le16 tx_timer_value;
  1489. __le16 fc_refresh_threshold;
  1490. u8 reserved[8];
  1491. };
  1492. I40E_CHECK_CMD_LENGTH(i40e_aq_set_mac_config);
  1493. /* Restart Auto-Negotiation (direct 0x605) */
  1494. struct i40e_aqc_set_link_restart_an {
  1495. u8 command;
  1496. #define I40E_AQ_PHY_RESTART_AN 0x02
  1497. #define I40E_AQ_PHY_LINK_ENABLE 0x04
  1498. u8 reserved[15];
  1499. };
  1500. I40E_CHECK_CMD_LENGTH(i40e_aqc_set_link_restart_an);
  1501. /* Get Link Status cmd & response data structure (direct 0x0607) */
  1502. struct i40e_aqc_get_link_status {
  1503. __le16 command_flags; /* only field set on command */
  1504. #define I40E_AQ_LSE_MASK 0x3
  1505. #define I40E_AQ_LSE_NOP 0x0
  1506. #define I40E_AQ_LSE_DISABLE 0x2
  1507. #define I40E_AQ_LSE_ENABLE 0x3
  1508. /* only response uses this flag */
  1509. #define I40E_AQ_LSE_IS_ENABLED 0x1
  1510. u8 phy_type; /* i40e_aq_phy_type */
  1511. u8 link_speed; /* i40e_aq_link_speed */
  1512. u8 link_info;
  1513. #define I40E_AQ_LINK_UP 0x01 /* obsolete */
  1514. #define I40E_AQ_LINK_UP_FUNCTION 0x01
  1515. #define I40E_AQ_LINK_FAULT 0x02
  1516. #define I40E_AQ_LINK_FAULT_TX 0x04
  1517. #define I40E_AQ_LINK_FAULT_RX 0x08
  1518. #define I40E_AQ_LINK_FAULT_REMOTE 0x10
  1519. #define I40E_AQ_LINK_UP_PORT 0x20
  1520. #define I40E_AQ_MEDIA_AVAILABLE 0x40
  1521. #define I40E_AQ_SIGNAL_DETECT 0x80
  1522. u8 an_info;
  1523. #define I40E_AQ_AN_COMPLETED 0x01
  1524. #define I40E_AQ_LP_AN_ABILITY 0x02
  1525. #define I40E_AQ_PD_FAULT 0x04
  1526. #define I40E_AQ_FEC_EN 0x08
  1527. #define I40E_AQ_PHY_LOW_POWER 0x10
  1528. #define I40E_AQ_LINK_PAUSE_TX 0x20
  1529. #define I40E_AQ_LINK_PAUSE_RX 0x40
  1530. #define I40E_AQ_QUALIFIED_MODULE 0x80
  1531. u8 ext_info;
  1532. #define I40E_AQ_LINK_PHY_TEMP_ALARM 0x01
  1533. #define I40E_AQ_LINK_XCESSIVE_ERRORS 0x02
  1534. #define I40E_AQ_LINK_TX_SHIFT 0x02
  1535. #define I40E_AQ_LINK_TX_MASK (0x03 << I40E_AQ_LINK_TX_SHIFT)
  1536. #define I40E_AQ_LINK_TX_ACTIVE 0x00
  1537. #define I40E_AQ_LINK_TX_DRAINED 0x01
  1538. #define I40E_AQ_LINK_TX_FLUSHED 0x03
  1539. #define I40E_AQ_LINK_FORCED_40G 0x10
  1540. u8 loopback; /* use defines from i40e_aqc_set_lb_mode */
  1541. __le16 max_frame_size;
  1542. u8 config;
  1543. #define I40E_AQ_CONFIG_CRC_ENA 0x04
  1544. #define I40E_AQ_CONFIG_PACING_MASK 0x78
  1545. u8 reserved[5];
  1546. };
  1547. I40E_CHECK_CMD_LENGTH(i40e_aqc_get_link_status);
  1548. /* Set event mask command (direct 0x613) */
  1549. struct i40e_aqc_set_phy_int_mask {
  1550. u8 reserved[8];
  1551. __le16 event_mask;
  1552. #define I40E_AQ_EVENT_LINK_UPDOWN 0x0002
  1553. #define I40E_AQ_EVENT_MEDIA_NA 0x0004
  1554. #define I40E_AQ_EVENT_LINK_FAULT 0x0008
  1555. #define I40E_AQ_EVENT_PHY_TEMP_ALARM 0x0010
  1556. #define I40E_AQ_EVENT_EXCESSIVE_ERRORS 0x0020
  1557. #define I40E_AQ_EVENT_SIGNAL_DETECT 0x0040
  1558. #define I40E_AQ_EVENT_AN_COMPLETED 0x0080
  1559. #define I40E_AQ_EVENT_MODULE_QUAL_FAIL 0x0100
  1560. #define I40E_AQ_EVENT_PORT_TX_SUSPENDED 0x0200
  1561. u8 reserved1[6];
  1562. };
  1563. I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_int_mask);
  1564. /* Get Local AN advt register (direct 0x0614)
  1565. * Set Local AN advt register (direct 0x0615)
  1566. * Get Link Partner AN advt register (direct 0x0616)
  1567. */
  1568. struct i40e_aqc_an_advt_reg {
  1569. __le32 local_an_reg0;
  1570. __le16 local_an_reg1;
  1571. u8 reserved[10];
  1572. };
  1573. I40E_CHECK_CMD_LENGTH(i40e_aqc_an_advt_reg);
  1574. /* Set Loopback mode (0x0618) */
  1575. struct i40e_aqc_set_lb_mode {
  1576. __le16 lb_mode;
  1577. #define I40E_AQ_LB_PHY_LOCAL 0x01
  1578. #define I40E_AQ_LB_PHY_REMOTE 0x02
  1579. #define I40E_AQ_LB_MAC_LOCAL 0x04
  1580. u8 reserved[14];
  1581. };
  1582. I40E_CHECK_CMD_LENGTH(i40e_aqc_set_lb_mode);
  1583. /* Set PHY Debug command (0x0622) */
  1584. struct i40e_aqc_set_phy_debug {
  1585. u8 command_flags;
  1586. #define I40E_AQ_PHY_DEBUG_RESET_INTERNAL 0x02
  1587. #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT 2
  1588. #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_MASK (0x03 << \
  1589. I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SHIFT)
  1590. #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_NONE 0x00
  1591. #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_HARD 0x01
  1592. #define I40E_AQ_PHY_DEBUG_RESET_EXTERNAL_SOFT 0x02
  1593. #define I40E_AQ_PHY_DEBUG_DISABLE_LINK_FW 0x10
  1594. u8 reserved[15];
  1595. };
  1596. I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_debug);
  1597. enum i40e_aq_phy_reg_type {
  1598. I40E_AQC_PHY_REG_INTERNAL = 0x1,
  1599. I40E_AQC_PHY_REG_EXERNAL_BASET = 0x2,
  1600. I40E_AQC_PHY_REG_EXERNAL_MODULE = 0x3
  1601. };
  1602. /* NVM Read command (indirect 0x0701)
  1603. * NVM Erase commands (direct 0x0702)
  1604. * NVM Update commands (indirect 0x0703)
  1605. */
  1606. struct i40e_aqc_nvm_update {
  1607. u8 command_flags;
  1608. #define I40E_AQ_NVM_LAST_CMD 0x01
  1609. #define I40E_AQ_NVM_FLASH_ONLY 0x80
  1610. u8 module_pointer;
  1611. __le16 length;
  1612. __le32 offset;
  1613. __le32 addr_high;
  1614. __le32 addr_low;
  1615. };
  1616. I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_update);
  1617. /* NVM Config Read (indirect 0x0704) */
  1618. struct i40e_aqc_nvm_config_read {
  1619. __le16 cmd_flags;
  1620. #define I40E_AQ_ANVM_SINGLE_OR_MULTIPLE_FEATURES_MASK 1
  1621. #define I40E_AQ_ANVM_READ_SINGLE_FEATURE 0
  1622. #define I40E_AQ_ANVM_READ_MULTIPLE_FEATURES 1
  1623. __le16 element_count;
  1624. __le16 element_id; /* Feature/field ID */
  1625. __le16 element_id_msw; /* MSWord of field ID */
  1626. __le32 address_high;
  1627. __le32 address_low;
  1628. };
  1629. I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_read);
  1630. /* NVM Config Write (indirect 0x0705) */
  1631. struct i40e_aqc_nvm_config_write {
  1632. __le16 cmd_flags;
  1633. __le16 element_count;
  1634. u8 reserved[4];
  1635. __le32 address_high;
  1636. __le32 address_low;
  1637. };
  1638. I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_write);
  1639. /* Used for 0x0704 as well as for 0x0705 commands */
  1640. #define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT 1
  1641. #define I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_MASK \
  1642. (1 << I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_SHIFT)
  1643. #define I40E_AQ_ANVM_FEATURE 0
  1644. #define I40E_AQ_ANVM_IMMEDIATE_FIELD (1 << FEATURE_OR_IMMEDIATE_SHIFT)
  1645. struct i40e_aqc_nvm_config_data_feature {
  1646. __le16 feature_id;
  1647. #define I40E_AQ_ANVM_FEATURE_OPTION_OEM_ONLY 0x01
  1648. #define I40E_AQ_ANVM_FEATURE_OPTION_DWORD_MAP 0x08
  1649. #define I40E_AQ_ANVM_FEATURE_OPTION_POR_CSR 0x10
  1650. __le16 feature_options;
  1651. __le16 feature_selection;
  1652. };
  1653. I40E_CHECK_STRUCT_LEN(0x6, i40e_aqc_nvm_config_data_feature);
  1654. struct i40e_aqc_nvm_config_data_immediate_field {
  1655. __le32 field_id;
  1656. __le32 field_value;
  1657. __le16 field_options;
  1658. __le16 reserved;
  1659. };
  1660. I40E_CHECK_STRUCT_LEN(0xc, i40e_aqc_nvm_config_data_immediate_field);
  1661. /* Send to PF command (indirect 0x0801) id is only used by PF
  1662. * Send to VF command (indirect 0x0802) id is only used by PF
  1663. * Send to Peer PF command (indirect 0x0803)
  1664. */
  1665. struct i40e_aqc_pf_vf_message {
  1666. __le32 id;
  1667. u8 reserved[4];
  1668. __le32 addr_high;
  1669. __le32 addr_low;
  1670. };
  1671. I40E_CHECK_CMD_LENGTH(i40e_aqc_pf_vf_message);
  1672. /* Alternate structure */
  1673. /* Direct write (direct 0x0900)
  1674. * Direct read (direct 0x0902)
  1675. */
  1676. struct i40e_aqc_alternate_write {
  1677. __le32 address0;
  1678. __le32 data0;
  1679. __le32 address1;
  1680. __le32 data1;
  1681. };
  1682. I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write);
  1683. /* Indirect write (indirect 0x0901)
  1684. * Indirect read (indirect 0x0903)
  1685. */
  1686. struct i40e_aqc_alternate_ind_write {
  1687. __le32 address;
  1688. __le32 length;
  1689. __le32 addr_high;
  1690. __le32 addr_low;
  1691. };
  1692. I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_ind_write);
  1693. /* Done alternate write (direct 0x0904)
  1694. * uses i40e_aq_desc
  1695. */
  1696. struct i40e_aqc_alternate_write_done {
  1697. __le16 cmd_flags;
  1698. #define I40E_AQ_ALTERNATE_MODE_BIOS_MASK 1
  1699. #define I40E_AQ_ALTERNATE_MODE_BIOS_LEGACY 0
  1700. #define I40E_AQ_ALTERNATE_MODE_BIOS_UEFI 1
  1701. #define I40E_AQ_ALTERNATE_RESET_NEEDED 2
  1702. u8 reserved[14];
  1703. };
  1704. I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write_done);
  1705. /* Set OEM mode (direct 0x0905) */
  1706. struct i40e_aqc_alternate_set_mode {
  1707. __le32 mode;
  1708. #define I40E_AQ_ALTERNATE_MODE_NONE 0
  1709. #define I40E_AQ_ALTERNATE_MODE_OEM 1
  1710. u8 reserved[12];
  1711. };
  1712. I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_set_mode);
  1713. /* Clear port Alternate RAM (direct 0x0906) uses i40e_aq_desc */
  1714. /* async events 0x10xx */
  1715. /* Lan Queue Overflow Event (direct, 0x1001) */
  1716. struct i40e_aqc_lan_overflow {
  1717. __le32 prtdcb_rupto;
  1718. __le32 otx_ctl;
  1719. u8 reserved[8];
  1720. };
  1721. I40E_CHECK_CMD_LENGTH(i40e_aqc_lan_overflow);
  1722. /* Get LLDP MIB (indirect 0x0A00) */
  1723. struct i40e_aqc_lldp_get_mib {
  1724. u8 type;
  1725. u8 reserved1;
  1726. #define I40E_AQ_LLDP_MIB_TYPE_MASK 0x3
  1727. #define I40E_AQ_LLDP_MIB_LOCAL 0x0
  1728. #define I40E_AQ_LLDP_MIB_REMOTE 0x1
  1729. #define I40E_AQ_LLDP_MIB_LOCAL_AND_REMOTE 0x2
  1730. #define I40E_AQ_LLDP_BRIDGE_TYPE_MASK 0xC
  1731. #define I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT 0x2
  1732. #define I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE 0x0
  1733. #define I40E_AQ_LLDP_BRIDGE_TYPE_NON_TPMR 0x1
  1734. #define I40E_AQ_LLDP_TX_SHIFT 0x4
  1735. #define I40E_AQ_LLDP_TX_MASK (0x03 << I40E_AQ_LLDP_TX_SHIFT)
  1736. /* TX pause flags use I40E_AQ_LINK_TX_* above */
  1737. __le16 local_len;
  1738. __le16 remote_len;
  1739. u8 reserved2[2];
  1740. __le32 addr_high;
  1741. __le32 addr_low;
  1742. };
  1743. I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_get_mib);
  1744. /* Configure LLDP MIB Change Event (direct 0x0A01)
  1745. * also used for the event (with type in the command field)
  1746. */
  1747. struct i40e_aqc_lldp_update_mib {
  1748. u8 command;
  1749. #define I40E_AQ_LLDP_MIB_UPDATE_ENABLE 0x0
  1750. #define I40E_AQ_LLDP_MIB_UPDATE_DISABLE 0x1
  1751. u8 reserved[7];
  1752. __le32 addr_high;
  1753. __le32 addr_low;
  1754. };
  1755. I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_mib);
  1756. /* Add LLDP TLV (indirect 0x0A02)
  1757. * Delete LLDP TLV (indirect 0x0A04)
  1758. */
  1759. struct i40e_aqc_lldp_add_tlv {
  1760. u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
  1761. u8 reserved1[1];
  1762. __le16 len;
  1763. u8 reserved2[4];
  1764. __le32 addr_high;
  1765. __le32 addr_low;
  1766. };
  1767. I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_add_tlv);
  1768. /* Update LLDP TLV (indirect 0x0A03) */
  1769. struct i40e_aqc_lldp_update_tlv {
  1770. u8 type; /* only nearest bridge and non-TPMR from 0x0A00 */
  1771. u8 reserved;
  1772. __le16 old_len;
  1773. __le16 new_offset;
  1774. __le16 new_len;
  1775. __le32 addr_high;
  1776. __le32 addr_low;
  1777. };
  1778. I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_tlv);
  1779. /* Stop LLDP (direct 0x0A05) */
  1780. struct i40e_aqc_lldp_stop {
  1781. u8 command;
  1782. #define I40E_AQ_LLDP_AGENT_STOP 0x0
  1783. #define I40E_AQ_LLDP_AGENT_SHUTDOWN 0x1
  1784. u8 reserved[15];
  1785. };
  1786. I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop);
  1787. /* Start LLDP (direct 0x0A06) */
  1788. struct i40e_aqc_lldp_start {
  1789. u8 command;
  1790. #define I40E_AQ_LLDP_AGENT_START 0x1
  1791. u8 reserved[15];
  1792. };
  1793. I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_start);
  1794. /* Get CEE DCBX Oper Config (0x0A07)
  1795. * uses the generic descriptor struct
  1796. * returns below as indirect response
  1797. */
  1798. #define I40E_AQC_CEE_APP_FCOE_SHIFT 0x0
  1799. #define I40E_AQC_CEE_APP_FCOE_MASK (0x7 << I40E_AQC_CEE_APP_FCOE_SHIFT)
  1800. #define I40E_AQC_CEE_APP_ISCSI_SHIFT 0x3
  1801. #define I40E_AQC_CEE_APP_ISCSI_MASK (0x7 << I40E_AQC_CEE_APP_ISCSI_SHIFT)
  1802. #define I40E_AQC_CEE_APP_FIP_SHIFT 0x8
  1803. #define I40E_AQC_CEE_APP_FIP_MASK (0x7 << I40E_AQC_CEE_APP_FIP_SHIFT)
  1804. #define I40E_AQC_CEE_PG_STATUS_SHIFT 0x0
  1805. #define I40E_AQC_CEE_PG_STATUS_MASK (0x7 << I40E_AQC_CEE_PG_STATUS_SHIFT)
  1806. #define I40E_AQC_CEE_PFC_STATUS_SHIFT 0x3
  1807. #define I40E_AQC_CEE_PFC_STATUS_MASK (0x7 << I40E_AQC_CEE_PFC_STATUS_SHIFT)
  1808. #define I40E_AQC_CEE_APP_STATUS_SHIFT 0x8
  1809. #define I40E_AQC_CEE_APP_STATUS_MASK (0x7 << I40E_AQC_CEE_APP_STATUS_SHIFT)
  1810. #define I40E_AQC_CEE_FCOE_STATUS_SHIFT 0x8
  1811. #define I40E_AQC_CEE_FCOE_STATUS_MASK (0x7 << I40E_AQC_CEE_FCOE_STATUS_SHIFT)
  1812. #define I40E_AQC_CEE_ISCSI_STATUS_SHIFT 0xB
  1813. #define I40E_AQC_CEE_ISCSI_STATUS_MASK (0x7 << I40E_AQC_CEE_ISCSI_STATUS_SHIFT)
  1814. #define I40E_AQC_CEE_FIP_STATUS_SHIFT 0x10
  1815. #define I40E_AQC_CEE_FIP_STATUS_MASK (0x7 << I40E_AQC_CEE_FIP_STATUS_SHIFT)
  1816. /* struct i40e_aqc_get_cee_dcb_cfg_v1_resp was originally defined with
  1817. * word boundary layout issues, which the Linux compilers silently deal
  1818. * with by adding padding, making the actual struct larger than designed.
  1819. * However, the FW compiler for the NIC is less lenient and complains
  1820. * about the struct. Hence, the struct defined here has an extra byte in
  1821. * fields reserved3 and reserved4 to directly acknowledge that padding,
  1822. * and the new length is used in the length check macro.
  1823. */
  1824. struct i40e_aqc_get_cee_dcb_cfg_v1_resp {
  1825. u8 reserved1;
  1826. u8 oper_num_tc;
  1827. u8 oper_prio_tc[4];
  1828. u8 reserved2;
  1829. u8 oper_tc_bw[8];
  1830. u8 oper_pfc_en;
  1831. u8 reserved3[2];
  1832. __le16 oper_app_prio;
  1833. u8 reserved4[2];
  1834. __le16 tlv_status;
  1835. };
  1836. I40E_CHECK_STRUCT_LEN(0x18, i40e_aqc_get_cee_dcb_cfg_v1_resp);
  1837. struct i40e_aqc_get_cee_dcb_cfg_resp {
  1838. u8 oper_num_tc;
  1839. u8 oper_prio_tc[4];
  1840. u8 oper_tc_bw[8];
  1841. u8 oper_pfc_en;
  1842. __le16 oper_app_prio;
  1843. #define I40E_AQC_CEE_APP_FCOE_SHIFT 0x0
  1844. #define I40E_AQC_CEE_APP_FCOE_MASK (0x7 << I40E_AQC_CEE_APP_FCOE_SHIFT)
  1845. #define I40E_AQC_CEE_APP_ISCSI_SHIFT 0x3
  1846. #define I40E_AQC_CEE_APP_ISCSI_MASK (0x7 << I40E_AQC_CEE_APP_ISCSI_SHIFT)
  1847. #define I40E_AQC_CEE_APP_FIP_SHIFT 0x8
  1848. #define I40E_AQC_CEE_APP_FIP_MASK (0x7 << I40E_AQC_CEE_APP_FIP_SHIFT)
  1849. #define I40E_AQC_CEE_APP_FIP_MASK (0x7 << I40E_AQC_CEE_APP_FIP_SHIFT)
  1850. __le32 tlv_status;
  1851. #define I40E_AQC_CEE_PG_STATUS_SHIFT 0x0
  1852. #define I40E_AQC_CEE_PG_STATUS_MASK (0x7 << I40E_AQC_CEE_PG_STATUS_SHIFT)
  1853. #define I40E_AQC_CEE_PFC_STATUS_SHIFT 0x3
  1854. #define I40E_AQC_CEE_PFC_STATUS_MASK (0x7 << I40E_AQC_CEE_PFC_STATUS_SHIFT)
  1855. #define I40E_AQC_CEE_APP_STATUS_SHIFT 0x8
  1856. #define I40E_AQC_CEE_APP_STATUS_MASK (0x7 << I40E_AQC_CEE_APP_STATUS_SHIFT)
  1857. u8 reserved[12];
  1858. };
  1859. I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_get_cee_dcb_cfg_resp);
  1860. /* Set Local LLDP MIB (indirect 0x0A08)
  1861. * Used to replace the local MIB of a given LLDP agent. e.g. DCBx
  1862. */
  1863. struct i40e_aqc_lldp_set_local_mib {
  1864. #define SET_LOCAL_MIB_AC_TYPE_DCBX_SHIFT 0
  1865. #define SET_LOCAL_MIB_AC_TYPE_DCBX_MASK (1 << SET_LOCAL_MIB_AC_TYPE_DCBX_SHIFT)
  1866. #define SET_LOCAL_MIB_AC_TYPE_DCBX_MASK (1 << \
  1867. SET_LOCAL_MIB_AC_TYPE_DCBX_SHIFT)
  1868. #define SET_LOCAL_MIB_AC_TYPE_LOCAL_MIB 0x0
  1869. #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_SHIFT (1)
  1870. #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_MASK (1 << \
  1871. SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_SHIFT)
  1872. #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS 0x1
  1873. u8 type;
  1874. u8 reserved0;
  1875. __le16 length;
  1876. u8 reserved1[4];
  1877. __le32 address_high;
  1878. __le32 address_low;
  1879. };
  1880. I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_set_local_mib);
  1881. /* Stop/Start LLDP Agent (direct 0x0A09)
  1882. * Used for stopping/starting specific LLDP agent. e.g. DCBx
  1883. */
  1884. struct i40e_aqc_lldp_stop_start_specific_agent {
  1885. #define I40E_AQC_START_SPECIFIC_AGENT_SHIFT 0
  1886. #define I40E_AQC_START_SPECIFIC_AGENT_MASK \
  1887. (1 << I40E_AQC_START_SPECIFIC_AGENT_SHIFT)
  1888. u8 command;
  1889. u8 reserved[15];
  1890. };
  1891. I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop_start_specific_agent);
  1892. /* Add Udp Tunnel command and completion (direct 0x0B00) */
  1893. struct i40e_aqc_add_udp_tunnel {
  1894. __le16 udp_port;
  1895. u8 reserved0[3];
  1896. u8 protocol_type;
  1897. #define I40E_AQC_TUNNEL_TYPE_VXLAN 0x00
  1898. #define I40E_AQC_TUNNEL_TYPE_NGE 0x01
  1899. #define I40E_AQC_TUNNEL_TYPE_TEREDO 0x10
  1900. u8 reserved1[10];
  1901. };
  1902. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel);
  1903. struct i40e_aqc_add_udp_tunnel_completion {
  1904. __le16 udp_port;
  1905. u8 filter_entry_index;
  1906. u8 multiple_pfs;
  1907. #define I40E_AQC_SINGLE_PF 0x0
  1908. #define I40E_AQC_MULTIPLE_PFS 0x1
  1909. u8 total_filters;
  1910. u8 reserved[11];
  1911. };
  1912. I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel_completion);
  1913. /* remove UDP Tunnel command (0x0B01) */
  1914. struct i40e_aqc_remove_udp_tunnel {
  1915. u8 reserved[2];
  1916. u8 index; /* 0 to 15 */
  1917. u8 reserved2[13];
  1918. };
  1919. I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_udp_tunnel);
  1920. struct i40e_aqc_del_udp_tunnel_completion {
  1921. __le16 udp_port;
  1922. u8 index; /* 0 to 15 */
  1923. u8 multiple_pfs;
  1924. u8 total_filters_used;
  1925. u8 reserved1[11];
  1926. };
  1927. I40E_CHECK_CMD_LENGTH(i40e_aqc_del_udp_tunnel_completion);
  1928. struct i40e_aqc_get_set_rss_key {
  1929. #define I40E_AQC_SET_RSS_KEY_VSI_VALID (0x1 << 15)
  1930. #define I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT 0
  1931. #define I40E_AQC_SET_RSS_KEY_VSI_ID_MASK (0x3FF << \
  1932. I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT)
  1933. __le16 vsi_id;
  1934. u8 reserved[6];
  1935. __le32 addr_high;
  1936. __le32 addr_low;
  1937. };
  1938. I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_key);
  1939. struct i40e_aqc_get_set_rss_key_data {
  1940. u8 standard_rss_key[0x28];
  1941. u8 extended_hash_key[0xc];
  1942. };
  1943. I40E_CHECK_STRUCT_LEN(0x34, i40e_aqc_get_set_rss_key_data);
  1944. struct i40e_aqc_get_set_rss_lut {
  1945. #define I40E_AQC_SET_RSS_LUT_VSI_VALID (0x1 << 15)
  1946. #define I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT 0
  1947. #define I40E_AQC_SET_RSS_LUT_VSI_ID_MASK (0x3FF << \
  1948. I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT)
  1949. __le16 vsi_id;
  1950. #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT 0
  1951. #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK (0x1 << \
  1952. I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT)
  1953. #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI 0
  1954. #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF 1
  1955. __le16 flags;
  1956. u8 reserved[4];
  1957. __le32 addr_high;
  1958. __le32 addr_low;
  1959. };
  1960. I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_lut);
  1961. /* tunnel key structure 0x0B10 */
  1962. struct i40e_aqc_tunnel_key_structure {
  1963. u8 key1_off;
  1964. u8 key2_off;
  1965. u8 key1_len; /* 0 to 15 */
  1966. u8 key2_len; /* 0 to 15 */
  1967. u8 flags;
  1968. #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDE 0x01
  1969. /* response flags */
  1970. #define I40E_AQC_TUNNEL_KEY_STRUCT_SUCCESS 0x01
  1971. #define I40E_AQC_TUNNEL_KEY_STRUCT_MODIFIED 0x02
  1972. #define I40E_AQC_TUNNEL_KEY_STRUCT_OVERRIDDEN 0x03
  1973. u8 network_key_index;
  1974. #define I40E_AQC_NETWORK_KEY_INDEX_VXLAN 0x0
  1975. #define I40E_AQC_NETWORK_KEY_INDEX_NGE 0x1
  1976. #define I40E_AQC_NETWORK_KEY_INDEX_FLEX_MAC_IN_UDP 0x2
  1977. #define I40E_AQC_NETWORK_KEY_INDEX_GRE 0x3
  1978. u8 reserved[10];
  1979. };
  1980. I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure);
  1981. /* OEM mode commands (direct 0xFE0x) */
  1982. struct i40e_aqc_oem_param_change {
  1983. __le32 param_type;
  1984. #define I40E_AQ_OEM_PARAM_TYPE_PF_CTL 0
  1985. #define I40E_AQ_OEM_PARAM_TYPE_BW_CTL 1
  1986. #define I40E_AQ_OEM_PARAM_MAC 2
  1987. __le32 param_value1;
  1988. __le16 param_value2;
  1989. u8 reserved[6];
  1990. };
  1991. I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_param_change);
  1992. struct i40e_aqc_oem_state_change {
  1993. __le32 state;
  1994. #define I40E_AQ_OEM_STATE_LINK_DOWN 0x0
  1995. #define I40E_AQ_OEM_STATE_LINK_UP 0x1
  1996. u8 reserved[12];
  1997. };
  1998. I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_state_change);
  1999. /* Initialize OCSD (0xFE02, direct) */
  2000. struct i40e_aqc_opc_oem_ocsd_initialize {
  2001. u8 type_status;
  2002. u8 reserved1[3];
  2003. __le32 ocsd_memory_block_addr_high;
  2004. __le32 ocsd_memory_block_addr_low;
  2005. __le32 requested_update_interval;
  2006. };
  2007. I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocsd_initialize);
  2008. /* Initialize OCBB (0xFE03, direct) */
  2009. struct i40e_aqc_opc_oem_ocbb_initialize {
  2010. u8 type_status;
  2011. u8 reserved1[3];
  2012. __le32 ocbb_memory_block_addr_high;
  2013. __le32 ocbb_memory_block_addr_low;
  2014. u8 reserved2[4];
  2015. };
  2016. I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocbb_initialize);
  2017. /* debug commands */
  2018. /* get device id (0xFF00) uses the generic structure */
  2019. /* set test more (0xFF01, internal) */
  2020. struct i40e_acq_set_test_mode {
  2021. u8 mode;
  2022. #define I40E_AQ_TEST_PARTIAL 0
  2023. #define I40E_AQ_TEST_FULL 1
  2024. #define I40E_AQ_TEST_NVM 2
  2025. u8 reserved[3];
  2026. u8 command;
  2027. #define I40E_AQ_TEST_OPEN 0
  2028. #define I40E_AQ_TEST_CLOSE 1
  2029. #define I40E_AQ_TEST_INC 2
  2030. u8 reserved2[3];
  2031. __le32 address_high;
  2032. __le32 address_low;
  2033. };
  2034. I40E_CHECK_CMD_LENGTH(i40e_acq_set_test_mode);
  2035. /* Debug Read Register command (0xFF03)
  2036. * Debug Write Register command (0xFF04)
  2037. */
  2038. struct i40e_aqc_debug_reg_read_write {
  2039. __le32 reserved;
  2040. __le32 address;
  2041. __le32 value_high;
  2042. __le32 value_low;
  2043. };
  2044. I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_reg_read_write);
  2045. /* Scatter/gather Reg Read (indirect 0xFF05)
  2046. * Scatter/gather Reg Write (indirect 0xFF06)
  2047. */
  2048. /* i40e_aq_desc is used for the command */
  2049. struct i40e_aqc_debug_reg_sg_element_data {
  2050. __le32 address;
  2051. __le32 value;
  2052. };
  2053. /* Debug Modify register (direct 0xFF07) */
  2054. struct i40e_aqc_debug_modify_reg {
  2055. __le32 address;
  2056. __le32 value;
  2057. __le32 clear_mask;
  2058. __le32 set_mask;
  2059. };
  2060. I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_reg);
  2061. /* dump internal data (0xFF08, indirect) */
  2062. #define I40E_AQ_CLUSTER_ID_AUX 0
  2063. #define I40E_AQ_CLUSTER_ID_SWITCH_FLU 1
  2064. #define I40E_AQ_CLUSTER_ID_TXSCHED 2
  2065. #define I40E_AQ_CLUSTER_ID_HMC 3
  2066. #define I40E_AQ_CLUSTER_ID_MAC0 4
  2067. #define I40E_AQ_CLUSTER_ID_MAC1 5
  2068. #define I40E_AQ_CLUSTER_ID_MAC2 6
  2069. #define I40E_AQ_CLUSTER_ID_MAC3 7
  2070. #define I40E_AQ_CLUSTER_ID_DCB 8
  2071. #define I40E_AQ_CLUSTER_ID_EMP_MEM 9
  2072. #define I40E_AQ_CLUSTER_ID_PKT_BUF 10
  2073. #define I40E_AQ_CLUSTER_ID_ALTRAM 11
  2074. struct i40e_aqc_debug_dump_internals {
  2075. u8 cluster_id;
  2076. u8 table_id;
  2077. __le16 data_size;
  2078. __le32 idx;
  2079. __le32 address_high;
  2080. __le32 address_low;
  2081. };
  2082. I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_dump_internals);
  2083. struct i40e_aqc_debug_modify_internals {
  2084. u8 cluster_id;
  2085. u8 cluster_specific_params[7];
  2086. __le32 address_high;
  2087. __le32 address_low;
  2088. };
  2089. I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_internals);
  2090. #endif