qlcnic.h 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  1. /*
  2. * QLogic qlcnic NIC Driver
  3. * Copyright (c) 2009-2013 QLogic Corporation
  4. *
  5. * See LICENSE.qlcnic for copyright and licensing details.
  6. */
  7. #ifndef _QLCNIC_H_
  8. #define _QLCNIC_H_
  9. #include <linux/module.h>
  10. #include <linux/kernel.h>
  11. #include <linux/types.h>
  12. #include <linux/ioport.h>
  13. #include <linux/pci.h>
  14. #include <linux/netdevice.h>
  15. #include <linux/etherdevice.h>
  16. #include <linux/ip.h>
  17. #include <linux/in.h>
  18. #include <linux/tcp.h>
  19. #include <linux/skbuff.h>
  20. #include <linux/firmware.h>
  21. #include <linux/ethtool.h>
  22. #include <linux/mii.h>
  23. #include <linux/timer.h>
  24. #include <linux/vmalloc.h>
  25. #include <linux/io.h>
  26. #include <asm/byteorder.h>
  27. #include <linux/bitops.h>
  28. #include <linux/if_vlan.h>
  29. #include "qlcnic_hdr.h"
  30. #include "qlcnic_hw.h"
  31. #include "qlcnic_83xx_hw.h"
  32. #define _QLCNIC_LINUX_MAJOR 5
  33. #define _QLCNIC_LINUX_MINOR 3
  34. #define _QLCNIC_LINUX_SUBVERSION 47
  35. #define QLCNIC_LINUX_VERSIONID "5.3.47"
  36. #define QLCNIC_DRV_IDC_VER 0x01
  37. #define QLCNIC_DRIVER_VERSION ((_QLCNIC_LINUX_MAJOR << 16) |\
  38. (_QLCNIC_LINUX_MINOR << 8) | (_QLCNIC_LINUX_SUBVERSION))
  39. #define QLCNIC_VERSION_CODE(a, b, c) (((a) << 24) + ((b) << 16) + (c))
  40. #define _major(v) (((v) >> 24) & 0xff)
  41. #define _minor(v) (((v) >> 16) & 0xff)
  42. #define _build(v) ((v) & 0xffff)
  43. /* version in image has weird encoding:
  44. * 7:0 - major
  45. * 15:8 - minor
  46. * 31:16 - build (little endian)
  47. */
  48. #define QLCNIC_DECODE_VERSION(v) \
  49. QLCNIC_VERSION_CODE(((v) & 0xff), (((v) >> 8) & 0xff), ((v) >> 16))
  50. #define QLCNIC_MIN_FW_VERSION QLCNIC_VERSION_CODE(4, 4, 2)
  51. #define QLCNIC_NUM_FLASH_SECTORS (64)
  52. #define QLCNIC_FLASH_SECTOR_SIZE (64 * 1024)
  53. #define QLCNIC_FLASH_TOTAL_SIZE (QLCNIC_NUM_FLASH_SECTORS \
  54. * QLCNIC_FLASH_SECTOR_SIZE)
  55. #define RCV_DESC_RINGSIZE(rds_ring) \
  56. (sizeof(struct rcv_desc) * (rds_ring)->num_desc)
  57. #define RCV_BUFF_RINGSIZE(rds_ring) \
  58. (sizeof(struct qlcnic_rx_buffer) * rds_ring->num_desc)
  59. #define STATUS_DESC_RINGSIZE(sds_ring) \
  60. (sizeof(struct status_desc) * (sds_ring)->num_desc)
  61. #define TX_BUFF_RINGSIZE(tx_ring) \
  62. (sizeof(struct qlcnic_cmd_buffer) * tx_ring->num_desc)
  63. #define TX_DESC_RINGSIZE(tx_ring) \
  64. (sizeof(struct cmd_desc_type0) * tx_ring->num_desc)
  65. #define QLCNIC_P3P_A0 0x50
  66. #define QLCNIC_P3P_C0 0x58
  67. #define QLCNIC_IS_REVISION_P3P(REVISION) (REVISION >= QLCNIC_P3P_A0)
  68. #define FIRST_PAGE_GROUP_START 0
  69. #define FIRST_PAGE_GROUP_END 0x100000
  70. #define P3P_MAX_MTU (9600)
  71. #define P3P_MIN_MTU (68)
  72. #define QLCNIC_MAX_ETHERHDR 32 /* This contains some padding */
  73. #define QLCNIC_P3P_RX_BUF_MAX_LEN (QLCNIC_MAX_ETHERHDR + ETH_DATA_LEN)
  74. #define QLCNIC_P3P_RX_JUMBO_BUF_MAX_LEN (QLCNIC_MAX_ETHERHDR + P3P_MAX_MTU)
  75. #define QLCNIC_CT_DEFAULT_RX_BUF_LEN 2048
  76. #define QLCNIC_LRO_BUFFER_EXTRA 2048
  77. /* Tx defines */
  78. #define QLCNIC_MAX_FRAGS_PER_TX 14
  79. #define MAX_TSO_HEADER_DESC 2
  80. #define MGMT_CMD_DESC_RESV 4
  81. #define TX_STOP_THRESH ((MAX_SKB_FRAGS >> 2) + MAX_TSO_HEADER_DESC \
  82. + MGMT_CMD_DESC_RESV)
  83. #define QLCNIC_MAX_TX_TIMEOUTS 2
  84. #define QLCNIC_MAX_TX_RINGS 8
  85. #define QLCNIC_MAX_SDS_RINGS 8
  86. /*
  87. * Following are the states of the Phantom. Phantom will set them and
  88. * Host will read to check if the fields are correct.
  89. */
  90. #define PHAN_INITIALIZE_FAILED 0xffff
  91. #define PHAN_INITIALIZE_COMPLETE 0xff01
  92. /* Host writes the following to notify that it has done the init-handshake */
  93. #define PHAN_INITIALIZE_ACK 0xf00f
  94. #define PHAN_PEG_RCV_INITIALIZED 0xff01
  95. #define NUM_RCV_DESC_RINGS 3
  96. #define RCV_RING_NORMAL 0
  97. #define RCV_RING_JUMBO 1
  98. #define MIN_CMD_DESCRIPTORS 64
  99. #define MIN_RCV_DESCRIPTORS 64
  100. #define MIN_JUMBO_DESCRIPTORS 32
  101. #define MAX_CMD_DESCRIPTORS 1024
  102. #define MAX_RCV_DESCRIPTORS_1G 4096
  103. #define MAX_RCV_DESCRIPTORS_10G 8192
  104. #define MAX_RCV_DESCRIPTORS_VF 2048
  105. #define MAX_JUMBO_RCV_DESCRIPTORS_1G 512
  106. #define MAX_JUMBO_RCV_DESCRIPTORS_10G 1024
  107. #define DEFAULT_RCV_DESCRIPTORS_1G 2048
  108. #define DEFAULT_RCV_DESCRIPTORS_10G 4096
  109. #define DEFAULT_RCV_DESCRIPTORS_VF 1024
  110. #define MAX_RDS_RINGS 2
  111. #define get_next_index(index, length) \
  112. (((index) + 1) & ((length) - 1))
  113. /*
  114. * Following data structures describe the descriptors that will be used.
  115. * Added fileds of tcpHdrSize and ipHdrSize, The driver needs to do it only when
  116. * we are doing LSO (above the 1500 size packet) only.
  117. */
  118. struct cmd_desc_type0 {
  119. u8 tcp_hdr_offset; /* For LSO only */
  120. u8 ip_hdr_offset; /* For LSO only */
  121. __le16 flags_opcode; /* 15:13 unused, 12:7 opcode, 6:0 flags */
  122. __le32 nfrags__length; /* 31:8 total len, 7:0 frag count */
  123. __le64 addr_buffer2;
  124. __le16 reference_handle;
  125. __le16 mss;
  126. u8 port_ctxid; /* 7:4 ctxid 3:0 port */
  127. u8 total_hdr_length; /* LSO only : MAC+IP+TCP Hdr size */
  128. __le16 conn_id; /* IPSec offoad only */
  129. __le64 addr_buffer3;
  130. __le64 addr_buffer1;
  131. __le16 buffer_length[4];
  132. __le64 addr_buffer4;
  133. u8 eth_addr[ETH_ALEN];
  134. __le16 vlan_TCI;
  135. } __attribute__ ((aligned(64)));
  136. /* Note: sizeof(rcv_desc) should always be a mutliple of 2 */
  137. struct rcv_desc {
  138. __le16 reference_handle;
  139. __le16 reserved;
  140. __le32 buffer_length; /* allocated buffer length (usually 2K) */
  141. __le64 addr_buffer;
  142. } __packed;
  143. struct status_desc {
  144. __le64 status_desc_data[2];
  145. } __attribute__ ((aligned(16)));
  146. /* UNIFIED ROMIMAGE */
  147. #define QLCNIC_UNI_FW_MIN_SIZE 0xc8000
  148. #define QLCNIC_UNI_DIR_SECT_PRODUCT_TBL 0x0
  149. #define QLCNIC_UNI_DIR_SECT_BOOTLD 0x6
  150. #define QLCNIC_UNI_DIR_SECT_FW 0x7
  151. /*Offsets */
  152. #define QLCNIC_UNI_CHIP_REV_OFF 10
  153. #define QLCNIC_UNI_FLAGS_OFF 11
  154. #define QLCNIC_UNI_BIOS_VERSION_OFF 12
  155. #define QLCNIC_UNI_BOOTLD_IDX_OFF 27
  156. #define QLCNIC_UNI_FIRMWARE_IDX_OFF 29
  157. struct uni_table_desc{
  158. __le32 findex;
  159. __le32 num_entries;
  160. __le32 entry_size;
  161. __le32 reserved[5];
  162. };
  163. struct uni_data_desc{
  164. __le32 findex;
  165. __le32 size;
  166. __le32 reserved[5];
  167. };
  168. /* Flash Defines and Structures */
  169. #define QLCNIC_FLT_LOCATION 0x3F1000
  170. #define QLCNIC_FDT_LOCATION 0x3F0000
  171. #define QLCNIC_B0_FW_IMAGE_REGION 0x74
  172. #define QLCNIC_C0_FW_IMAGE_REGION 0x97
  173. #define QLCNIC_BOOTLD_REGION 0X72
  174. struct qlcnic_flt_header {
  175. u16 version;
  176. u16 len;
  177. u16 checksum;
  178. u16 reserved;
  179. };
  180. struct qlcnic_flt_entry {
  181. u8 region;
  182. u8 reserved0;
  183. u8 attrib;
  184. u8 reserved1;
  185. u32 size;
  186. u32 start_addr;
  187. u32 end_addr;
  188. };
  189. /* Flash Descriptor Table */
  190. struct qlcnic_fdt {
  191. u32 valid;
  192. u16 ver;
  193. u16 len;
  194. u16 cksum;
  195. u16 unused;
  196. u8 model[16];
  197. u16 mfg_id;
  198. u16 id;
  199. u8 flag;
  200. u8 erase_cmd;
  201. u8 alt_erase_cmd;
  202. u8 write_enable_cmd;
  203. u8 write_enable_bits;
  204. u8 write_statusreg_cmd;
  205. u8 unprotected_sec_cmd;
  206. u8 read_manuf_cmd;
  207. u32 block_size;
  208. u32 alt_block_size;
  209. u32 flash_size;
  210. u32 write_enable_data;
  211. u8 readid_addr_len;
  212. u8 write_disable_bits;
  213. u8 read_dev_id_len;
  214. u8 chip_erase_cmd;
  215. u16 read_timeo;
  216. u8 protected_sec_cmd;
  217. u8 resvd[65];
  218. };
  219. /* Magic number to let user know flash is programmed */
  220. #define QLCNIC_BDINFO_MAGIC 0x12345678
  221. #define QLCNIC_BRDTYPE_P3P_REF_QG 0x0021
  222. #define QLCNIC_BRDTYPE_P3P_HMEZ 0x0022
  223. #define QLCNIC_BRDTYPE_P3P_10G_CX4_LP 0x0023
  224. #define QLCNIC_BRDTYPE_P3P_4_GB 0x0024
  225. #define QLCNIC_BRDTYPE_P3P_IMEZ 0x0025
  226. #define QLCNIC_BRDTYPE_P3P_10G_SFP_PLUS 0x0026
  227. #define QLCNIC_BRDTYPE_P3P_10000_BASE_T 0x0027
  228. #define QLCNIC_BRDTYPE_P3P_XG_LOM 0x0028
  229. #define QLCNIC_BRDTYPE_P3P_4_GB_MM 0x0029
  230. #define QLCNIC_BRDTYPE_P3P_10G_SFP_CT 0x002a
  231. #define QLCNIC_BRDTYPE_P3P_10G_SFP_QT 0x002b
  232. #define QLCNIC_BRDTYPE_P3P_10G_CX4 0x0031
  233. #define QLCNIC_BRDTYPE_P3P_10G_XFP 0x0032
  234. #define QLCNIC_BRDTYPE_P3P_10G_TP 0x0080
  235. #define QLCNIC_MSIX_TABLE_OFFSET 0x44
  236. /* Flash memory map */
  237. #define QLCNIC_BRDCFG_START 0x4000 /* board config */
  238. #define QLCNIC_BOOTLD_START 0x10000 /* bootld */
  239. #define QLCNIC_IMAGE_START 0x43000 /* compressed image */
  240. #define QLCNIC_USER_START 0x3E8000 /* Firmare info */
  241. #define QLCNIC_FW_VERSION_OFFSET (QLCNIC_USER_START+0x408)
  242. #define QLCNIC_FW_SIZE_OFFSET (QLCNIC_USER_START+0x40c)
  243. #define QLCNIC_FW_SERIAL_NUM_OFFSET (QLCNIC_USER_START+0x81c)
  244. #define QLCNIC_BIOS_VERSION_OFFSET (QLCNIC_USER_START+0x83c)
  245. #define QLCNIC_BRDTYPE_OFFSET (QLCNIC_BRDCFG_START+0x8)
  246. #define QLCNIC_FW_MAGIC_OFFSET (QLCNIC_BRDCFG_START+0x128)
  247. #define QLCNIC_FW_MIN_SIZE (0x3fffff)
  248. #define QLCNIC_UNIFIED_ROMIMAGE 0
  249. #define QLCNIC_FLASH_ROMIMAGE 1
  250. #define QLCNIC_UNKNOWN_ROMIMAGE 0xff
  251. #define QLCNIC_UNIFIED_ROMIMAGE_NAME "phanfw.bin"
  252. #define QLCNIC_FLASH_ROMIMAGE_NAME "flash"
  253. extern char qlcnic_driver_name[];
  254. extern int qlcnic_use_msi;
  255. extern int qlcnic_use_msi_x;
  256. extern int qlcnic_auto_fw_reset;
  257. extern int qlcnic_load_fw_file;
  258. /* Number of status descriptors to handle per interrupt */
  259. #define MAX_STATUS_HANDLE (64)
  260. /*
  261. * qlcnic_skb_frag{} is to contain mapping info for each SG list. This
  262. * has to be freed when DMA is complete. This is part of qlcnic_tx_buffer{}.
  263. */
  264. struct qlcnic_skb_frag {
  265. u64 dma;
  266. u64 length;
  267. };
  268. /* Following defines are for the state of the buffers */
  269. #define QLCNIC_BUFFER_FREE 0
  270. #define QLCNIC_BUFFER_BUSY 1
  271. /*
  272. * There will be one qlcnic_buffer per skb packet. These will be
  273. * used to save the dma info for pci_unmap_page()
  274. */
  275. struct qlcnic_cmd_buffer {
  276. struct sk_buff *skb;
  277. struct qlcnic_skb_frag frag_array[MAX_SKB_FRAGS + 1];
  278. u32 frag_count;
  279. };
  280. /* In rx_buffer, we do not need multiple fragments as is a single buffer */
  281. struct qlcnic_rx_buffer {
  282. u16 ref_handle;
  283. struct sk_buff *skb;
  284. struct list_head list;
  285. u64 dma;
  286. };
  287. /* Board types */
  288. #define QLCNIC_GBE 0x01
  289. #define QLCNIC_XGBE 0x02
  290. /*
  291. * Interrupt coalescing defaults. The defaults are for 1500 MTU. It is
  292. * adjusted based on configured MTU.
  293. */
  294. #define QLCNIC_INTR_COAL_TYPE_RX 1
  295. #define QLCNIC_INTR_COAL_TYPE_TX 2
  296. #define QLCNIC_DEF_INTR_COALESCE_RX_TIME_US 3
  297. #define QLCNIC_DEF_INTR_COALESCE_RX_PACKETS 256
  298. #define QLCNIC_DEF_INTR_COALESCE_TX_TIME_US 64
  299. #define QLCNIC_DEF_INTR_COALESCE_TX_PACKETS 64
  300. #define QLCNIC_INTR_DEFAULT 0x04
  301. #define QLCNIC_CONFIG_INTR_COALESCE 3
  302. #define QLCNIC_DEV_INFO_SIZE 1
  303. struct qlcnic_nic_intr_coalesce {
  304. u8 type;
  305. u8 sts_ring_mask;
  306. u16 rx_packets;
  307. u16 rx_time_us;
  308. u16 tx_packets;
  309. u16 tx_time_us;
  310. u16 flag;
  311. u32 timer_out;
  312. };
  313. struct qlcnic_dump_template_hdr {
  314. u32 type;
  315. u32 offset;
  316. u32 size;
  317. u32 cap_mask;
  318. u32 num_entries;
  319. u32 version;
  320. u32 timestamp;
  321. u32 checksum;
  322. u32 drv_cap_mask;
  323. u32 sys_info[3];
  324. u32 saved_state[16];
  325. u32 cap_sizes[8];
  326. u32 ocm_wnd_reg[16];
  327. u32 rsvd[0];
  328. };
  329. struct qlcnic_fw_dump {
  330. u8 clr; /* flag to indicate if dump is cleared */
  331. u8 enable; /* enable/disable dump */
  332. u32 size; /* total size of the dump */
  333. void *data; /* dump data area */
  334. struct qlcnic_dump_template_hdr *tmpl_hdr;
  335. dma_addr_t phys_addr;
  336. void *dma_buffer;
  337. bool use_pex_dma;
  338. };
  339. /*
  340. * One hardware_context{} per adapter
  341. * contains interrupt info as well shared hardware info.
  342. */
  343. struct qlcnic_hardware_context {
  344. void __iomem *pci_base0;
  345. void __iomem *ocm_win_crb;
  346. unsigned long pci_len0;
  347. rwlock_t crb_lock;
  348. struct mutex mem_lock;
  349. u8 revision_id;
  350. u8 pci_func;
  351. u8 linkup;
  352. u8 loopback_state;
  353. u8 beacon_state;
  354. u8 has_link_events;
  355. u8 fw_type;
  356. u8 physical_port;
  357. u8 reset_context;
  358. u8 msix_supported;
  359. u8 max_mac_filters;
  360. u8 mc_enabled;
  361. u8 max_mc_count;
  362. u8 diag_test;
  363. u8 num_msix;
  364. u8 nic_mode;
  365. char diag_cnt;
  366. u16 max_uc_count;
  367. u16 port_type;
  368. u16 board_type;
  369. u16 supported_type;
  370. u16 link_speed;
  371. u16 link_duplex;
  372. u16 link_autoneg;
  373. u16 module_type;
  374. u16 op_mode;
  375. u16 switch_mode;
  376. u16 max_tx_ques;
  377. u16 max_rx_ques;
  378. u16 max_mtu;
  379. u32 msg_enable;
  380. u16 act_pci_func;
  381. u16 max_pci_func;
  382. u32 capabilities;
  383. u32 extra_capability[3];
  384. u32 temp;
  385. u32 int_vec_bit;
  386. u32 fw_hal_version;
  387. u32 port_config;
  388. struct qlcnic_hardware_ops *hw_ops;
  389. struct qlcnic_nic_intr_coalesce coal;
  390. struct qlcnic_fw_dump fw_dump;
  391. struct qlcnic_fdt fdt;
  392. struct qlc_83xx_reset reset;
  393. struct qlc_83xx_idc idc;
  394. struct qlc_83xx_fw_info fw_info;
  395. struct qlcnic_intrpt_config *intr_tbl;
  396. struct qlcnic_sriov *sriov;
  397. u32 *reg_tbl;
  398. u32 *ext_reg_tbl;
  399. u32 mbox_aen[QLC_83XX_MBX_AEN_CNT];
  400. u32 mbox_reg[4];
  401. struct qlcnic_mailbox *mailbox;
  402. u8 extend_lb_time;
  403. };
  404. struct qlcnic_adapter_stats {
  405. u64 xmitcalled;
  406. u64 xmitfinished;
  407. u64 rxdropped;
  408. u64 txdropped;
  409. u64 csummed;
  410. u64 rx_pkts;
  411. u64 lro_pkts;
  412. u64 rxbytes;
  413. u64 txbytes;
  414. u64 lrobytes;
  415. u64 lso_frames;
  416. u64 xmit_on;
  417. u64 xmit_off;
  418. u64 skb_alloc_failure;
  419. u64 null_rxbuf;
  420. u64 rx_dma_map_error;
  421. u64 tx_dma_map_error;
  422. u64 spurious_intr;
  423. u64 mac_filter_limit_overrun;
  424. };
  425. /*
  426. * Rcv Descriptor Context. One such per Rcv Descriptor. There may
  427. * be one Rcv Descriptor for normal packets, one for jumbo and may be others.
  428. */
  429. struct qlcnic_host_rds_ring {
  430. void __iomem *crb_rcv_producer;
  431. struct rcv_desc *desc_head;
  432. struct qlcnic_rx_buffer *rx_buf_arr;
  433. u32 num_desc;
  434. u32 producer;
  435. u32 dma_size;
  436. u32 skb_size;
  437. u32 flags;
  438. struct list_head free_list;
  439. spinlock_t lock;
  440. dma_addr_t phys_addr;
  441. } ____cacheline_internodealigned_in_smp;
  442. struct qlcnic_host_sds_ring {
  443. u32 consumer;
  444. u32 num_desc;
  445. void __iomem *crb_sts_consumer;
  446. struct qlcnic_host_tx_ring *tx_ring;
  447. struct status_desc *desc_head;
  448. struct qlcnic_adapter *adapter;
  449. struct napi_struct napi;
  450. struct list_head free_list[NUM_RCV_DESC_RINGS];
  451. void __iomem *crb_intr_mask;
  452. int irq;
  453. dma_addr_t phys_addr;
  454. char name[IFNAMSIZ + 12];
  455. } ____cacheline_internodealigned_in_smp;
  456. struct qlcnic_host_tx_ring {
  457. int irq;
  458. void __iomem *crb_intr_mask;
  459. char name[IFNAMSIZ + 12];
  460. u16 ctx_id;
  461. u32 state;
  462. u32 producer;
  463. u32 sw_consumer;
  464. u32 num_desc;
  465. u64 xmit_on;
  466. u64 xmit_off;
  467. u64 xmit_called;
  468. u64 xmit_finished;
  469. void __iomem *crb_cmd_producer;
  470. struct cmd_desc_type0 *desc_head;
  471. struct qlcnic_adapter *adapter;
  472. struct napi_struct napi;
  473. struct qlcnic_cmd_buffer *cmd_buf_arr;
  474. __le32 *hw_consumer;
  475. dma_addr_t phys_addr;
  476. dma_addr_t hw_cons_phys_addr;
  477. struct netdev_queue *txq;
  478. } ____cacheline_internodealigned_in_smp;
  479. /*
  480. * Receive context. There is one such structure per instance of the
  481. * receive processing. Any state information that is relevant to
  482. * the receive, and is must be in this structure. The global data may be
  483. * present elsewhere.
  484. */
  485. struct qlcnic_recv_context {
  486. struct qlcnic_host_rds_ring *rds_rings;
  487. struct qlcnic_host_sds_ring *sds_rings;
  488. u32 state;
  489. u16 context_id;
  490. u16 virt_port;
  491. };
  492. /* HW context creation */
  493. #define QLCNIC_OS_CRB_RETRY_COUNT 4000
  494. #define QLCNIC_CDRP_CMD_BIT 0x80000000
  495. /*
  496. * All responses must have the QLCNIC_CDRP_CMD_BIT cleared
  497. * in the crb QLCNIC_CDRP_CRB_OFFSET.
  498. */
  499. #define QLCNIC_CDRP_FORM_RSP(rsp) (rsp)
  500. #define QLCNIC_CDRP_IS_RSP(rsp) (((rsp) & QLCNIC_CDRP_CMD_BIT) == 0)
  501. #define QLCNIC_CDRP_RSP_OK 0x00000001
  502. #define QLCNIC_CDRP_RSP_FAIL 0x00000002
  503. #define QLCNIC_CDRP_RSP_TIMEOUT 0x00000003
  504. /*
  505. * All commands must have the QLCNIC_CDRP_CMD_BIT set in
  506. * the crb QLCNIC_CDRP_CRB_OFFSET.
  507. */
  508. #define QLCNIC_CDRP_FORM_CMD(cmd) (QLCNIC_CDRP_CMD_BIT | (cmd))
  509. #define QLCNIC_RCODE_SUCCESS 0
  510. #define QLCNIC_RCODE_INVALID_ARGS 6
  511. #define QLCNIC_RCODE_NOT_SUPPORTED 9
  512. #define QLCNIC_RCODE_NOT_PERMITTED 10
  513. #define QLCNIC_RCODE_NOT_IMPL 15
  514. #define QLCNIC_RCODE_INVALID 16
  515. #define QLCNIC_RCODE_TIMEOUT 17
  516. #define QLCNIC_DESTROY_CTX_RESET 0
  517. /*
  518. * Capabilities Announced
  519. */
  520. #define QLCNIC_CAP0_LEGACY_CONTEXT (1)
  521. #define QLCNIC_CAP0_LEGACY_MN (1 << 2)
  522. #define QLCNIC_CAP0_LSO (1 << 6)
  523. #define QLCNIC_CAP0_JUMBO_CONTIGUOUS (1 << 7)
  524. #define QLCNIC_CAP0_LRO_CONTIGUOUS (1 << 8)
  525. #define QLCNIC_CAP0_VALIDOFF (1 << 11)
  526. #define QLCNIC_CAP0_LRO_MSS (1 << 21)
  527. #define QLCNIC_CAP0_TX_MULTI (1 << 22)
  528. /*
  529. * Context state
  530. */
  531. #define QLCNIC_HOST_CTX_STATE_FREED 0
  532. #define QLCNIC_HOST_CTX_STATE_ACTIVE 2
  533. /*
  534. * Rx context
  535. */
  536. struct qlcnic_hostrq_sds_ring {
  537. __le64 host_phys_addr; /* Ring base addr */
  538. __le32 ring_size; /* Ring entries */
  539. __le16 msi_index;
  540. __le16 rsvd; /* Padding */
  541. } __packed;
  542. struct qlcnic_hostrq_rds_ring {
  543. __le64 host_phys_addr; /* Ring base addr */
  544. __le64 buff_size; /* Packet buffer size */
  545. __le32 ring_size; /* Ring entries */
  546. __le32 ring_kind; /* Class of ring */
  547. } __packed;
  548. struct qlcnic_hostrq_rx_ctx {
  549. __le64 host_rsp_dma_addr; /* Response dma'd here */
  550. __le32 capabilities[4]; /* Flag bit vector */
  551. __le32 host_int_crb_mode; /* Interrupt crb usage */
  552. __le32 host_rds_crb_mode; /* RDS crb usage */
  553. /* These ring offsets are relative to data[0] below */
  554. __le32 rds_ring_offset; /* Offset to RDS config */
  555. __le32 sds_ring_offset; /* Offset to SDS config */
  556. __le16 num_rds_rings; /* Count of RDS rings */
  557. __le16 num_sds_rings; /* Count of SDS rings */
  558. __le16 valid_field_offset;
  559. u8 txrx_sds_binding;
  560. u8 msix_handler;
  561. u8 reserved[128]; /* reserve space for future expansion*/
  562. /* MUST BE 64-bit aligned.
  563. The following is packed:
  564. - N hostrq_rds_rings
  565. - N hostrq_sds_rings */
  566. char data[0];
  567. } __packed;
  568. struct qlcnic_cardrsp_rds_ring{
  569. __le32 host_producer_crb; /* Crb to use */
  570. __le32 rsvd1; /* Padding */
  571. } __packed;
  572. struct qlcnic_cardrsp_sds_ring {
  573. __le32 host_consumer_crb; /* Crb to use */
  574. __le32 interrupt_crb; /* Crb to use */
  575. } __packed;
  576. struct qlcnic_cardrsp_rx_ctx {
  577. /* These ring offsets are relative to data[0] below */
  578. __le32 rds_ring_offset; /* Offset to RDS config */
  579. __le32 sds_ring_offset; /* Offset to SDS config */
  580. __le32 host_ctx_state; /* Starting State */
  581. __le32 num_fn_per_port; /* How many PCI fn share the port */
  582. __le16 num_rds_rings; /* Count of RDS rings */
  583. __le16 num_sds_rings; /* Count of SDS rings */
  584. __le16 context_id; /* Handle for context */
  585. u8 phys_port; /* Physical id of port */
  586. u8 virt_port; /* Virtual/Logical id of port */
  587. u8 reserved[128]; /* save space for future expansion */
  588. /* MUST BE 64-bit aligned.
  589. The following is packed:
  590. - N cardrsp_rds_rings
  591. - N cardrs_sds_rings */
  592. char data[0];
  593. } __packed;
  594. #define SIZEOF_HOSTRQ_RX(HOSTRQ_RX, rds_rings, sds_rings) \
  595. (sizeof(HOSTRQ_RX) + \
  596. (rds_rings)*(sizeof(struct qlcnic_hostrq_rds_ring)) + \
  597. (sds_rings)*(sizeof(struct qlcnic_hostrq_sds_ring)))
  598. #define SIZEOF_CARDRSP_RX(CARDRSP_RX, rds_rings, sds_rings) \
  599. (sizeof(CARDRSP_RX) + \
  600. (rds_rings)*(sizeof(struct qlcnic_cardrsp_rds_ring)) + \
  601. (sds_rings)*(sizeof(struct qlcnic_cardrsp_sds_ring)))
  602. /*
  603. * Tx context
  604. */
  605. struct qlcnic_hostrq_cds_ring {
  606. __le64 host_phys_addr; /* Ring base addr */
  607. __le32 ring_size; /* Ring entries */
  608. __le32 rsvd; /* Padding */
  609. } __packed;
  610. struct qlcnic_hostrq_tx_ctx {
  611. __le64 host_rsp_dma_addr; /* Response dma'd here */
  612. __le64 cmd_cons_dma_addr; /* */
  613. __le64 dummy_dma_addr; /* */
  614. __le32 capabilities[4]; /* Flag bit vector */
  615. __le32 host_int_crb_mode; /* Interrupt crb usage */
  616. __le32 rsvd1; /* Padding */
  617. __le16 rsvd2; /* Padding */
  618. __le16 interrupt_ctl;
  619. __le16 msi_index;
  620. __le16 rsvd3; /* Padding */
  621. struct qlcnic_hostrq_cds_ring cds_ring; /* Desc of cds ring */
  622. u8 reserved[128]; /* future expansion */
  623. } __packed;
  624. struct qlcnic_cardrsp_cds_ring {
  625. __le32 host_producer_crb; /* Crb to use */
  626. __le32 interrupt_crb; /* Crb to use */
  627. } __packed;
  628. struct qlcnic_cardrsp_tx_ctx {
  629. __le32 host_ctx_state; /* Starting state */
  630. __le16 context_id; /* Handle for context */
  631. u8 phys_port; /* Physical id of port */
  632. u8 virt_port; /* Virtual/Logical id of port */
  633. struct qlcnic_cardrsp_cds_ring cds_ring; /* Card cds settings */
  634. u8 reserved[128]; /* future expansion */
  635. } __packed;
  636. #define SIZEOF_HOSTRQ_TX(HOSTRQ_TX) (sizeof(HOSTRQ_TX))
  637. #define SIZEOF_CARDRSP_TX(CARDRSP_TX) (sizeof(CARDRSP_TX))
  638. /* CRB */
  639. #define QLCNIC_HOST_RDS_CRB_MODE_UNIQUE 0
  640. #define QLCNIC_HOST_RDS_CRB_MODE_SHARED 1
  641. #define QLCNIC_HOST_RDS_CRB_MODE_CUSTOM 2
  642. #define QLCNIC_HOST_RDS_CRB_MODE_MAX 3
  643. #define QLCNIC_HOST_INT_CRB_MODE_UNIQUE 0
  644. #define QLCNIC_HOST_INT_CRB_MODE_SHARED 1
  645. #define QLCNIC_HOST_INT_CRB_MODE_NORX 2
  646. #define QLCNIC_HOST_INT_CRB_MODE_NOTX 3
  647. #define QLCNIC_HOST_INT_CRB_MODE_NORXTX 4
  648. /* MAC */
  649. #define MC_COUNT_P3P 38
  650. #define QLCNIC_MAC_NOOP 0
  651. #define QLCNIC_MAC_ADD 1
  652. #define QLCNIC_MAC_DEL 2
  653. #define QLCNIC_MAC_VLAN_ADD 3
  654. #define QLCNIC_MAC_VLAN_DEL 4
  655. struct qlcnic_mac_list_s {
  656. struct list_head list;
  657. uint8_t mac_addr[ETH_ALEN+2];
  658. };
  659. /* MAC Learn */
  660. #define NO_MAC_LEARN 0
  661. #define DRV_MAC_LEARN 1
  662. #define FDB_MAC_LEARN 2
  663. #define QLCNIC_HOST_REQUEST 0x13
  664. #define QLCNIC_REQUEST 0x14
  665. #define QLCNIC_MAC_EVENT 0x1
  666. #define QLCNIC_IP_UP 2
  667. #define QLCNIC_IP_DOWN 3
  668. #define QLCNIC_ILB_MODE 0x1
  669. #define QLCNIC_ELB_MODE 0x2
  670. #define QLCNIC_LINKEVENT 0x1
  671. #define QLCNIC_LB_RESPONSE 0x2
  672. #define QLCNIC_IS_LB_CONFIGURED(VAL) \
  673. (VAL == (QLCNIC_LINKEVENT | QLCNIC_LB_RESPONSE))
  674. /*
  675. * Driver --> Firmware
  676. */
  677. #define QLCNIC_H2C_OPCODE_CONFIG_RSS 0x1
  678. #define QLCNIC_H2C_OPCODE_CONFIG_INTR_COALESCE 0x3
  679. #define QLCNIC_H2C_OPCODE_CONFIG_LED 0x4
  680. #define QLCNIC_H2C_OPCODE_LRO_REQUEST 0x7
  681. #define QLCNIC_H2C_OPCODE_SET_MAC_RECEIVE_MODE 0xc
  682. #define QLCNIC_H2C_OPCODE_CONFIG_IPADDR 0x12
  683. #define QLCNIC_H2C_OPCODE_GET_LINKEVENT 0x15
  684. #define QLCNIC_H2C_OPCODE_CONFIG_BRIDGING 0x17
  685. #define QLCNIC_H2C_OPCODE_CONFIG_HW_LRO 0x18
  686. #define QLCNIC_H2C_OPCODE_CONFIG_LOOPBACK 0x13
  687. /*
  688. * Firmware --> Driver
  689. */
  690. #define QLCNIC_C2H_OPCODE_CONFIG_LOOPBACK 0x8f
  691. #define QLCNIC_C2H_OPCODE_GET_LINKEVENT_RESPONSE 0x8D
  692. #define VPORT_MISS_MODE_DROP 0 /* drop all unmatched */
  693. #define VPORT_MISS_MODE_ACCEPT_ALL 1 /* accept all packets */
  694. #define VPORT_MISS_MODE_ACCEPT_MULTI 2 /* accept unmatched multicast */
  695. #define QLCNIC_LRO_REQUEST_CLEANUP 4
  696. /* Capabilites received */
  697. #define QLCNIC_FW_CAPABILITY_TSO BIT_1
  698. #define QLCNIC_FW_CAPABILITY_BDG BIT_8
  699. #define QLCNIC_FW_CAPABILITY_FVLANTX BIT_9
  700. #define QLCNIC_FW_CAPABILITY_HW_LRO BIT_10
  701. #define QLCNIC_FW_CAPABILITY_2_MULTI_TX BIT_4
  702. #define QLCNIC_FW_CAPABILITY_MULTI_LOOPBACK BIT_27
  703. #define QLCNIC_FW_CAPABILITY_MORE_CAPS BIT_31
  704. #define QLCNIC_FW_CAPABILITY_2_LRO_MAX_TCP_SEG BIT_2
  705. #define QLCNIC_FW_CAP2_HW_LRO_IPV6 BIT_3
  706. #define QLCNIC_FW_CAPABILITY_SET_DRV_VER BIT_5
  707. #define QLCNIC_FW_CAPABILITY_2_BEACON BIT_7
  708. /* module types */
  709. #define LINKEVENT_MODULE_NOT_PRESENT 1
  710. #define LINKEVENT_MODULE_OPTICAL_UNKNOWN 2
  711. #define LINKEVENT_MODULE_OPTICAL_SRLR 3
  712. #define LINKEVENT_MODULE_OPTICAL_LRM 4
  713. #define LINKEVENT_MODULE_OPTICAL_SFP_1G 5
  714. #define LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLE 6
  715. #define LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLELEN 7
  716. #define LINKEVENT_MODULE_TWINAX 8
  717. #define LINKSPEED_10GBPS 10000
  718. #define LINKSPEED_1GBPS 1000
  719. #define LINKSPEED_100MBPS 100
  720. #define LINKSPEED_10MBPS 10
  721. #define LINKSPEED_ENCODED_10MBPS 0
  722. #define LINKSPEED_ENCODED_100MBPS 1
  723. #define LINKSPEED_ENCODED_1GBPS 2
  724. #define LINKEVENT_AUTONEG_DISABLED 0
  725. #define LINKEVENT_AUTONEG_ENABLED 1
  726. #define LINKEVENT_HALF_DUPLEX 0
  727. #define LINKEVENT_FULL_DUPLEX 1
  728. #define LINKEVENT_LINKSPEED_MBPS 0
  729. #define LINKEVENT_LINKSPEED_ENCODED 1
  730. /* firmware response header:
  731. * 63:58 - message type
  732. * 57:56 - owner
  733. * 55:53 - desc count
  734. * 52:48 - reserved
  735. * 47:40 - completion id
  736. * 39:32 - opcode
  737. * 31:16 - error code
  738. * 15:00 - reserved
  739. */
  740. #define qlcnic_get_nic_msg_opcode(msg_hdr) \
  741. ((msg_hdr >> 32) & 0xFF)
  742. struct qlcnic_fw_msg {
  743. union {
  744. struct {
  745. u64 hdr;
  746. u64 body[7];
  747. };
  748. u64 words[8];
  749. };
  750. };
  751. struct qlcnic_nic_req {
  752. __le64 qhdr;
  753. __le64 req_hdr;
  754. __le64 words[6];
  755. } __packed;
  756. struct qlcnic_mac_req {
  757. u8 op;
  758. u8 tag;
  759. u8 mac_addr[6];
  760. };
  761. struct qlcnic_vlan_req {
  762. __le16 vlan_id;
  763. __le16 rsvd[3];
  764. } __packed;
  765. struct qlcnic_ipaddr {
  766. __be32 ipv4;
  767. __be32 ipv6[4];
  768. };
  769. #define QLCNIC_MSI_ENABLED 0x02
  770. #define QLCNIC_MSIX_ENABLED 0x04
  771. #define QLCNIC_LRO_ENABLED 0x01
  772. #define QLCNIC_LRO_DISABLED 0x00
  773. #define QLCNIC_BRIDGE_ENABLED 0X10
  774. #define QLCNIC_DIAG_ENABLED 0x20
  775. #define QLCNIC_ESWITCH_ENABLED 0x40
  776. #define QLCNIC_ADAPTER_INITIALIZED 0x80
  777. #define QLCNIC_TAGGING_ENABLED 0x100
  778. #define QLCNIC_MACSPOOF 0x200
  779. #define QLCNIC_MAC_OVERRIDE_DISABLED 0x400
  780. #define QLCNIC_PROMISC_DISABLED 0x800
  781. #define QLCNIC_NEED_FLR 0x1000
  782. #define QLCNIC_FW_RESET_OWNER 0x2000
  783. #define QLCNIC_FW_HANG 0x4000
  784. #define QLCNIC_FW_LRO_MSS_CAP 0x8000
  785. #define QLCNIC_TX_INTR_SHARED 0x10000
  786. #define QLCNIC_APP_CHANGED_FLAGS 0x20000
  787. #define QLCNIC_IS_MSI_FAMILY(adapter) \
  788. ((adapter)->flags & (QLCNIC_MSI_ENABLED | QLCNIC_MSIX_ENABLED))
  789. #define QLCNIC_IS_TSO_CAPABLE(adapter) \
  790. ((adapter)->ahw->capabilities & QLCNIC_FW_CAPABILITY_TSO)
  791. #define QLCNIC_BEACON_EANBLE 0xC
  792. #define QLCNIC_BEACON_DISABLE 0xD
  793. #define QLCNIC_DEF_NUM_STS_DESC_RINGS 4
  794. #define QLCNIC_DEF_NUM_TX_RINGS 4
  795. #define QLCNIC_MSIX_TBL_SPACE 8192
  796. #define QLCNIC_PCI_REG_MSIX_TBL 0x44
  797. #define QLCNIC_MSIX_TBL_PGSIZE 4096
  798. #define QLCNIC_NETDEV_WEIGHT 128
  799. #define QLCNIC_ADAPTER_UP_MAGIC 777
  800. #define __QLCNIC_FW_ATTACHED 0
  801. #define __QLCNIC_DEV_UP 1
  802. #define __QLCNIC_RESETTING 2
  803. #define __QLCNIC_START_FW 4
  804. #define __QLCNIC_AER 5
  805. #define __QLCNIC_DIAG_RES_ALLOC 6
  806. #define __QLCNIC_LED_ENABLE 7
  807. #define __QLCNIC_ELB_INPROGRESS 8
  808. #define __QLCNIC_MULTI_TX_UNIQUE 9
  809. #define __QLCNIC_SRIOV_ENABLE 10
  810. #define __QLCNIC_SRIOV_CAPABLE 11
  811. #define __QLCNIC_MBX_POLL_ENABLE 12
  812. #define __QLCNIC_DIAG_MODE 13
  813. #define QLCNIC_INTERRUPT_TEST 1
  814. #define QLCNIC_LOOPBACK_TEST 2
  815. #define QLCNIC_LED_TEST 3
  816. #define QLCNIC_FILTER_AGE 80
  817. #define QLCNIC_READD_AGE 20
  818. #define QLCNIC_LB_MAX_FILTERS 64
  819. #define QLCNIC_LB_BUCKET_SIZE 32
  820. #define QLCNIC_ILB_MAX_RCV_LOOP 10
  821. struct qlcnic_filter {
  822. struct hlist_node fnode;
  823. u8 faddr[ETH_ALEN];
  824. u16 vlan_id;
  825. unsigned long ftime;
  826. };
  827. struct qlcnic_filter_hash {
  828. struct hlist_head *fhead;
  829. u8 fnum;
  830. u16 fmax;
  831. u16 fbucket_size;
  832. };
  833. /* Mailbox specific data structures */
  834. struct qlcnic_mailbox {
  835. struct workqueue_struct *work_q;
  836. struct qlcnic_adapter *adapter;
  837. struct qlcnic_mbx_ops *ops;
  838. struct work_struct work;
  839. struct completion completion;
  840. struct list_head cmd_q;
  841. unsigned long status;
  842. spinlock_t queue_lock; /* Mailbox queue lock */
  843. spinlock_t aen_lock; /* Mailbox response/AEN lock */
  844. atomic_t rsp_status;
  845. u32 num_cmds;
  846. };
  847. struct qlcnic_adapter {
  848. struct qlcnic_hardware_context *ahw;
  849. struct qlcnic_recv_context *recv_ctx;
  850. struct qlcnic_host_tx_ring *tx_ring;
  851. struct net_device *netdev;
  852. struct pci_dev *pdev;
  853. unsigned long state;
  854. u32 flags;
  855. int max_drv_tx_rings;
  856. u16 num_txd;
  857. u16 num_rxd;
  858. u16 num_jumbo_rxd;
  859. u16 max_rxd;
  860. u16 max_jumbo_rxd;
  861. u8 max_rds_rings;
  862. u8 max_sds_rings;
  863. u8 rx_csum;
  864. u8 portnum;
  865. u8 fw_wait_cnt;
  866. u8 fw_fail_cnt;
  867. u8 tx_timeo_cnt;
  868. u8 need_fw_reset;
  869. u8 reset_ctx_cnt;
  870. u16 is_up;
  871. u16 rx_pvid;
  872. u16 tx_pvid;
  873. u32 irq;
  874. u32 heartbeat;
  875. u8 dev_state;
  876. u8 reset_ack_timeo;
  877. u8 dev_init_timeo;
  878. u8 mac_addr[ETH_ALEN];
  879. u64 dev_rst_time;
  880. bool drv_mac_learn;
  881. bool fdb_mac_learn;
  882. unsigned long vlans[BITS_TO_LONGS(VLAN_N_VID)];
  883. u8 flash_mfg_id;
  884. struct qlcnic_npar_info *npars;
  885. struct qlcnic_eswitch *eswitch;
  886. struct qlcnic_nic_template *nic_ops;
  887. struct qlcnic_adapter_stats stats;
  888. struct list_head mac_list;
  889. void __iomem *tgt_mask_reg;
  890. void __iomem *tgt_status_reg;
  891. void __iomem *crb_int_state_reg;
  892. void __iomem *isr_int_vec;
  893. struct msix_entry *msix_entries;
  894. struct workqueue_struct *qlcnic_wq;
  895. struct delayed_work fw_work;
  896. struct delayed_work idc_aen_work;
  897. struct delayed_work mbx_poll_work;
  898. struct qlcnic_filter_hash fhash;
  899. struct qlcnic_filter_hash rx_fhash;
  900. struct list_head vf_mc_list;
  901. spinlock_t tx_clean_lock;
  902. spinlock_t mac_learn_lock;
  903. /* spinlock for catching rcv filters for eswitch traffic */
  904. spinlock_t rx_mac_learn_lock;
  905. u32 file_prd_off; /*File fw product offset*/
  906. u32 fw_version;
  907. u32 offload_flags;
  908. const struct firmware *fw;
  909. };
  910. struct qlcnic_info_le {
  911. __le16 pci_func;
  912. __le16 op_mode; /* 1 = Priv, 2 = NP, 3 = NP passthru */
  913. __le16 phys_port;
  914. __le16 switch_mode; /* 0 = disabled, 1 = int, 2 = ext */
  915. __le32 capabilities;
  916. u8 max_mac_filters;
  917. u8 reserved1;
  918. __le16 max_mtu;
  919. __le16 max_tx_ques;
  920. __le16 max_rx_ques;
  921. __le16 min_tx_bw;
  922. __le16 max_tx_bw;
  923. __le32 op_type;
  924. __le16 max_bw_reg_offset;
  925. __le16 max_linkspeed_reg_offset;
  926. __le32 capability1;
  927. __le32 capability2;
  928. __le32 capability3;
  929. __le16 max_tx_mac_filters;
  930. __le16 max_rx_mcast_mac_filters;
  931. __le16 max_rx_ucast_mac_filters;
  932. __le16 max_rx_ip_addr;
  933. __le16 max_rx_lro_flow;
  934. __le16 max_rx_status_rings;
  935. __le16 max_rx_buf_rings;
  936. __le16 max_tx_vlan_keys;
  937. u8 total_pf;
  938. u8 total_rss_engines;
  939. __le16 max_vports;
  940. __le16 linkstate_reg_offset;
  941. __le16 bit_offsets;
  942. __le16 max_local_ipv6_addrs;
  943. __le16 max_remote_ipv6_addrs;
  944. u8 reserved2[56];
  945. } __packed;
  946. struct qlcnic_info {
  947. u16 pci_func;
  948. u16 op_mode;
  949. u16 phys_port;
  950. u16 switch_mode;
  951. u32 capabilities;
  952. u8 max_mac_filters;
  953. u16 max_mtu;
  954. u16 max_tx_ques;
  955. u16 max_rx_ques;
  956. u16 min_tx_bw;
  957. u16 max_tx_bw;
  958. u32 op_type;
  959. u16 max_bw_reg_offset;
  960. u16 max_linkspeed_reg_offset;
  961. u32 capability1;
  962. u32 capability2;
  963. u32 capability3;
  964. u16 max_tx_mac_filters;
  965. u16 max_rx_mcast_mac_filters;
  966. u16 max_rx_ucast_mac_filters;
  967. u16 max_rx_ip_addr;
  968. u16 max_rx_lro_flow;
  969. u16 max_rx_status_rings;
  970. u16 max_rx_buf_rings;
  971. u16 max_tx_vlan_keys;
  972. u8 total_pf;
  973. u8 total_rss_engines;
  974. u16 max_vports;
  975. u16 linkstate_reg_offset;
  976. u16 bit_offsets;
  977. u16 max_local_ipv6_addrs;
  978. u16 max_remote_ipv6_addrs;
  979. };
  980. struct qlcnic_pci_info_le {
  981. __le16 id; /* pci function id */
  982. __le16 active; /* 1 = Enabled */
  983. __le16 type; /* 1 = NIC, 2 = FCoE, 3 = iSCSI */
  984. __le16 default_port; /* default port number */
  985. __le16 tx_min_bw; /* Multiple of 100mbpc */
  986. __le16 tx_max_bw;
  987. __le16 reserved1[2];
  988. u8 mac[ETH_ALEN];
  989. __le16 func_count;
  990. u8 reserved2[104];
  991. } __packed;
  992. struct qlcnic_pci_info {
  993. u16 id;
  994. u16 active;
  995. u16 type;
  996. u16 default_port;
  997. u16 tx_min_bw;
  998. u16 tx_max_bw;
  999. u8 mac[ETH_ALEN];
  1000. u16 func_count;
  1001. };
  1002. struct qlcnic_npar_info {
  1003. u16 pvid;
  1004. u16 min_bw;
  1005. u16 max_bw;
  1006. u8 phy_port;
  1007. u8 type;
  1008. u8 active;
  1009. u8 enable_pm;
  1010. u8 dest_npar;
  1011. u8 discard_tagged;
  1012. u8 mac_override;
  1013. u8 mac_anti_spoof;
  1014. u8 promisc_mode;
  1015. u8 offload_flags;
  1016. u8 pci_func;
  1017. };
  1018. struct qlcnic_eswitch {
  1019. u8 port;
  1020. u8 active_vports;
  1021. u8 active_vlans;
  1022. u8 active_ucast_filters;
  1023. u8 max_ucast_filters;
  1024. u8 max_active_vlans;
  1025. u32 flags;
  1026. #define QLCNIC_SWITCH_ENABLE BIT_1
  1027. #define QLCNIC_SWITCH_VLAN_FILTERING BIT_2
  1028. #define QLCNIC_SWITCH_PROMISC_MODE BIT_3
  1029. #define QLCNIC_SWITCH_PORT_MIRRORING BIT_4
  1030. };
  1031. /* Return codes for Error handling */
  1032. #define QL_STATUS_INVALID_PARAM -1
  1033. #define MAX_BW 100 /* % of link speed */
  1034. #define MAX_VLAN_ID 4095
  1035. #define MIN_VLAN_ID 2
  1036. #define DEFAULT_MAC_LEARN 1
  1037. #define IS_VALID_VLAN(vlan) (vlan >= MIN_VLAN_ID && vlan < MAX_VLAN_ID)
  1038. #define IS_VALID_BW(bw) (bw <= MAX_BW)
  1039. struct qlcnic_pci_func_cfg {
  1040. u16 func_type;
  1041. u16 min_bw;
  1042. u16 max_bw;
  1043. u16 port_num;
  1044. u8 pci_func;
  1045. u8 func_state;
  1046. u8 def_mac_addr[6];
  1047. };
  1048. struct qlcnic_npar_func_cfg {
  1049. u32 fw_capab;
  1050. u16 port_num;
  1051. u16 min_bw;
  1052. u16 max_bw;
  1053. u16 max_tx_queues;
  1054. u16 max_rx_queues;
  1055. u8 pci_func;
  1056. u8 op_mode;
  1057. };
  1058. struct qlcnic_pm_func_cfg {
  1059. u8 pci_func;
  1060. u8 action;
  1061. u8 dest_npar;
  1062. u8 reserved[5];
  1063. };
  1064. struct qlcnic_esw_func_cfg {
  1065. u16 vlan_id;
  1066. u8 op_mode;
  1067. u8 op_type;
  1068. u8 pci_func;
  1069. u8 host_vlan_tag;
  1070. u8 promisc_mode;
  1071. u8 discard_tagged;
  1072. u8 mac_override;
  1073. u8 mac_anti_spoof;
  1074. u8 offload_flags;
  1075. u8 reserved[5];
  1076. };
  1077. #define QLCNIC_STATS_VERSION 1
  1078. #define QLCNIC_STATS_PORT 1
  1079. #define QLCNIC_STATS_ESWITCH 2
  1080. #define QLCNIC_QUERY_RX_COUNTER 0
  1081. #define QLCNIC_QUERY_TX_COUNTER 1
  1082. #define QLCNIC_STATS_NOT_AVAIL 0xffffffffffffffffULL
  1083. #define QLCNIC_FILL_STATS(VAL1) \
  1084. (((VAL1) == QLCNIC_STATS_NOT_AVAIL) ? 0 : VAL1)
  1085. #define QLCNIC_MAC_STATS 1
  1086. #define QLCNIC_ESW_STATS 2
  1087. #define QLCNIC_ADD_ESW_STATS(VAL1, VAL2)\
  1088. do { \
  1089. if (((VAL1) == QLCNIC_STATS_NOT_AVAIL) && \
  1090. ((VAL2) != QLCNIC_STATS_NOT_AVAIL)) \
  1091. (VAL1) = (VAL2); \
  1092. else if (((VAL1) != QLCNIC_STATS_NOT_AVAIL) && \
  1093. ((VAL2) != QLCNIC_STATS_NOT_AVAIL)) \
  1094. (VAL1) += (VAL2); \
  1095. } while (0)
  1096. struct qlcnic_mac_statistics_le {
  1097. __le64 mac_tx_frames;
  1098. __le64 mac_tx_bytes;
  1099. __le64 mac_tx_mcast_pkts;
  1100. __le64 mac_tx_bcast_pkts;
  1101. __le64 mac_tx_pause_cnt;
  1102. __le64 mac_tx_ctrl_pkt;
  1103. __le64 mac_tx_lt_64b_pkts;
  1104. __le64 mac_tx_lt_127b_pkts;
  1105. __le64 mac_tx_lt_255b_pkts;
  1106. __le64 mac_tx_lt_511b_pkts;
  1107. __le64 mac_tx_lt_1023b_pkts;
  1108. __le64 mac_tx_lt_1518b_pkts;
  1109. __le64 mac_tx_gt_1518b_pkts;
  1110. __le64 rsvd1[3];
  1111. __le64 mac_rx_frames;
  1112. __le64 mac_rx_bytes;
  1113. __le64 mac_rx_mcast_pkts;
  1114. __le64 mac_rx_bcast_pkts;
  1115. __le64 mac_rx_pause_cnt;
  1116. __le64 mac_rx_ctrl_pkt;
  1117. __le64 mac_rx_lt_64b_pkts;
  1118. __le64 mac_rx_lt_127b_pkts;
  1119. __le64 mac_rx_lt_255b_pkts;
  1120. __le64 mac_rx_lt_511b_pkts;
  1121. __le64 mac_rx_lt_1023b_pkts;
  1122. __le64 mac_rx_lt_1518b_pkts;
  1123. __le64 mac_rx_gt_1518b_pkts;
  1124. __le64 rsvd2[3];
  1125. __le64 mac_rx_length_error;
  1126. __le64 mac_rx_length_small;
  1127. __le64 mac_rx_length_large;
  1128. __le64 mac_rx_jabber;
  1129. __le64 mac_rx_dropped;
  1130. __le64 mac_rx_crc_error;
  1131. __le64 mac_align_error;
  1132. } __packed;
  1133. struct qlcnic_mac_statistics {
  1134. u64 mac_tx_frames;
  1135. u64 mac_tx_bytes;
  1136. u64 mac_tx_mcast_pkts;
  1137. u64 mac_tx_bcast_pkts;
  1138. u64 mac_tx_pause_cnt;
  1139. u64 mac_tx_ctrl_pkt;
  1140. u64 mac_tx_lt_64b_pkts;
  1141. u64 mac_tx_lt_127b_pkts;
  1142. u64 mac_tx_lt_255b_pkts;
  1143. u64 mac_tx_lt_511b_pkts;
  1144. u64 mac_tx_lt_1023b_pkts;
  1145. u64 mac_tx_lt_1518b_pkts;
  1146. u64 mac_tx_gt_1518b_pkts;
  1147. u64 rsvd1[3];
  1148. u64 mac_rx_frames;
  1149. u64 mac_rx_bytes;
  1150. u64 mac_rx_mcast_pkts;
  1151. u64 mac_rx_bcast_pkts;
  1152. u64 mac_rx_pause_cnt;
  1153. u64 mac_rx_ctrl_pkt;
  1154. u64 mac_rx_lt_64b_pkts;
  1155. u64 mac_rx_lt_127b_pkts;
  1156. u64 mac_rx_lt_255b_pkts;
  1157. u64 mac_rx_lt_511b_pkts;
  1158. u64 mac_rx_lt_1023b_pkts;
  1159. u64 mac_rx_lt_1518b_pkts;
  1160. u64 mac_rx_gt_1518b_pkts;
  1161. u64 rsvd2[3];
  1162. u64 mac_rx_length_error;
  1163. u64 mac_rx_length_small;
  1164. u64 mac_rx_length_large;
  1165. u64 mac_rx_jabber;
  1166. u64 mac_rx_dropped;
  1167. u64 mac_rx_crc_error;
  1168. u64 mac_align_error;
  1169. };
  1170. struct qlcnic_esw_stats_le {
  1171. __le16 context_id;
  1172. __le16 version;
  1173. __le16 size;
  1174. __le16 unused;
  1175. __le64 unicast_frames;
  1176. __le64 multicast_frames;
  1177. __le64 broadcast_frames;
  1178. __le64 dropped_frames;
  1179. __le64 errors;
  1180. __le64 local_frames;
  1181. __le64 numbytes;
  1182. __le64 rsvd[3];
  1183. } __packed;
  1184. struct __qlcnic_esw_statistics {
  1185. u16 context_id;
  1186. u16 version;
  1187. u16 size;
  1188. u16 unused;
  1189. u64 unicast_frames;
  1190. u64 multicast_frames;
  1191. u64 broadcast_frames;
  1192. u64 dropped_frames;
  1193. u64 errors;
  1194. u64 local_frames;
  1195. u64 numbytes;
  1196. u64 rsvd[3];
  1197. };
  1198. struct qlcnic_esw_statistics {
  1199. struct __qlcnic_esw_statistics rx;
  1200. struct __qlcnic_esw_statistics tx;
  1201. };
  1202. #define QLCNIC_DUMP_MASK_DEF 0x1f
  1203. #define QLCNIC_FORCE_FW_DUMP_KEY 0xdeadfeed
  1204. #define QLCNIC_ENABLE_FW_DUMP 0xaddfeed
  1205. #define QLCNIC_DISABLE_FW_DUMP 0xbadfeed
  1206. #define QLCNIC_FORCE_FW_RESET 0xdeaddead
  1207. #define QLCNIC_SET_QUIESCENT 0xadd00010
  1208. #define QLCNIC_RESET_QUIESCENT 0xadd00020
  1209. struct _cdrp_cmd {
  1210. u32 num;
  1211. u32 *arg;
  1212. };
  1213. struct qlcnic_cmd_args {
  1214. struct completion completion;
  1215. struct list_head list;
  1216. struct _cdrp_cmd req;
  1217. struct _cdrp_cmd rsp;
  1218. atomic_t rsp_status;
  1219. int pay_size;
  1220. u32 rsp_opcode;
  1221. u32 total_cmds;
  1222. u32 op_type;
  1223. u32 type;
  1224. u32 cmd_op;
  1225. u32 *hdr; /* Back channel message header */
  1226. u32 *pay; /* Back channel message payload */
  1227. u8 func_num;
  1228. };
  1229. int qlcnic_fw_cmd_get_minidump_temp(struct qlcnic_adapter *adapter);
  1230. int qlcnic_fw_cmd_set_port(struct qlcnic_adapter *adapter, u32 config);
  1231. int qlcnic_pci_mem_write_2M(struct qlcnic_adapter *, u64 off, u64 data);
  1232. int qlcnic_pci_mem_read_2M(struct qlcnic_adapter *, u64 off, u64 *data);
  1233. void qlcnic_pci_camqm_read_2M(struct qlcnic_adapter *, u64, u64 *);
  1234. void qlcnic_pci_camqm_write_2M(struct qlcnic_adapter *, u64, u64);
  1235. #define ADDR_IN_RANGE(addr, low, high) \
  1236. (((addr) < (high)) && ((addr) >= (low)))
  1237. #define QLCRD32(adapter, off, err) \
  1238. (adapter->ahw->hw_ops->read_reg)(adapter, off, err)
  1239. #define QLCWR32(adapter, off, val) \
  1240. adapter->ahw->hw_ops->write_reg(adapter, off, val)
  1241. int qlcnic_pcie_sem_lock(struct qlcnic_adapter *, int, u32);
  1242. void qlcnic_pcie_sem_unlock(struct qlcnic_adapter *, int);
  1243. #define qlcnic_rom_lock(a) \
  1244. qlcnic_pcie_sem_lock((a), 2, QLCNIC_ROM_LOCK_ID)
  1245. #define qlcnic_rom_unlock(a) \
  1246. qlcnic_pcie_sem_unlock((a), 2)
  1247. #define qlcnic_phy_lock(a) \
  1248. qlcnic_pcie_sem_lock((a), 3, QLCNIC_PHY_LOCK_ID)
  1249. #define qlcnic_phy_unlock(a) \
  1250. qlcnic_pcie_sem_unlock((a), 3)
  1251. #define qlcnic_sw_lock(a) \
  1252. qlcnic_pcie_sem_lock((a), 6, 0)
  1253. #define qlcnic_sw_unlock(a) \
  1254. qlcnic_pcie_sem_unlock((a), 6)
  1255. #define crb_win_lock(a) \
  1256. qlcnic_pcie_sem_lock((a), 7, QLCNIC_CRB_WIN_LOCK_ID)
  1257. #define crb_win_unlock(a) \
  1258. qlcnic_pcie_sem_unlock((a), 7)
  1259. #define __QLCNIC_MAX_LED_RATE 0xf
  1260. #define __QLCNIC_MAX_LED_STATE 0x2
  1261. #define MAX_CTL_CHECK 1000
  1262. int qlcnic_wol_supported(struct qlcnic_adapter *adapter);
  1263. void qlcnic_prune_lb_filters(struct qlcnic_adapter *adapter);
  1264. void qlcnic_delete_lb_filters(struct qlcnic_adapter *adapter);
  1265. int qlcnic_dump_fw(struct qlcnic_adapter *);
  1266. /* Functions from qlcnic_init.c */
  1267. void qlcnic_schedule_work(struct qlcnic_adapter *, work_func_t, int);
  1268. int qlcnic_load_firmware(struct qlcnic_adapter *adapter);
  1269. int qlcnic_need_fw_reset(struct qlcnic_adapter *adapter);
  1270. void qlcnic_request_firmware(struct qlcnic_adapter *adapter);
  1271. void qlcnic_release_firmware(struct qlcnic_adapter *adapter);
  1272. int qlcnic_pinit_from_rom(struct qlcnic_adapter *adapter);
  1273. int qlcnic_setup_idc_param(struct qlcnic_adapter *adapter);
  1274. int qlcnic_check_flash_fw_ver(struct qlcnic_adapter *adapter);
  1275. int qlcnic_rom_fast_read(struct qlcnic_adapter *adapter, u32 addr, u32 *valp);
  1276. int qlcnic_rom_fast_read_words(struct qlcnic_adapter *adapter, int addr,
  1277. u8 *bytes, size_t size);
  1278. int qlcnic_alloc_sw_resources(struct qlcnic_adapter *adapter);
  1279. void qlcnic_free_sw_resources(struct qlcnic_adapter *adapter);
  1280. void __iomem *qlcnic_get_ioaddr(struct qlcnic_hardware_context *, u32);
  1281. int qlcnic_alloc_hw_resources(struct qlcnic_adapter *adapter);
  1282. void qlcnic_free_hw_resources(struct qlcnic_adapter *adapter);
  1283. int qlcnic_fw_create_ctx(struct qlcnic_adapter *adapter);
  1284. void qlcnic_fw_destroy_ctx(struct qlcnic_adapter *adapter);
  1285. void qlcnic_reset_rx_buffers_list(struct qlcnic_adapter *adapter);
  1286. void qlcnic_release_rx_buffers(struct qlcnic_adapter *adapter);
  1287. void qlcnic_release_tx_buffers(struct qlcnic_adapter *,
  1288. struct qlcnic_host_tx_ring *);
  1289. int qlcnic_check_fw_status(struct qlcnic_adapter *adapter);
  1290. void qlcnic_watchdog_task(struct work_struct *work);
  1291. void qlcnic_post_rx_buffers(struct qlcnic_adapter *adapter,
  1292. struct qlcnic_host_rds_ring *rds_ring, u8 ring_id);
  1293. int qlcnic_process_rcv_ring(struct qlcnic_host_sds_ring *sds_ring, int max);
  1294. void qlcnic_set_multi(struct net_device *netdev);
  1295. void __qlcnic_set_multi(struct net_device *, u16);
  1296. int qlcnic_nic_add_mac(struct qlcnic_adapter *, const u8 *, u16);
  1297. int qlcnic_nic_del_mac(struct qlcnic_adapter *, const u8 *);
  1298. void qlcnic_82xx_free_mac_list(struct qlcnic_adapter *adapter);
  1299. int qlcnic_fw_cmd_set_mtu(struct qlcnic_adapter *adapter, int mtu);
  1300. int qlcnic_fw_cmd_set_drv_version(struct qlcnic_adapter *, u32);
  1301. int qlcnic_change_mtu(struct net_device *netdev, int new_mtu);
  1302. netdev_features_t qlcnic_fix_features(struct net_device *netdev,
  1303. netdev_features_t features);
  1304. int qlcnic_set_features(struct net_device *netdev, netdev_features_t features);
  1305. int qlcnic_config_bridged_mode(struct qlcnic_adapter *adapter, u32 enable);
  1306. int qlcnic_send_lro_cleanup(struct qlcnic_adapter *adapter);
  1307. void qlcnic_update_cmd_producer(struct qlcnic_host_tx_ring *);
  1308. /* Functions from qlcnic_ethtool.c */
  1309. int qlcnic_check_loopback_buff(unsigned char *, u8 []);
  1310. int qlcnic_do_lb_test(struct qlcnic_adapter *, u8);
  1311. int qlcnic_loopback_test(struct net_device *, u8);
  1312. /* Functions from qlcnic_main.c */
  1313. int qlcnic_reset_context(struct qlcnic_adapter *);
  1314. void qlcnic_diag_free_res(struct net_device *netdev, int max_sds_rings);
  1315. int qlcnic_diag_alloc_res(struct net_device *netdev, int test);
  1316. netdev_tx_t qlcnic_xmit_frame(struct sk_buff *skb, struct net_device *netdev);
  1317. int qlcnic_set_max_rss(struct qlcnic_adapter *, u8, int);
  1318. int qlcnic_validate_max_rss(struct qlcnic_adapter *, __u32);
  1319. int qlcnic_validate_max_tx_rings(struct qlcnic_adapter *, int);
  1320. void qlcnic_alloc_lb_filters_mem(struct qlcnic_adapter *adapter);
  1321. void qlcnic_82xx_set_mac_filter_count(struct qlcnic_adapter *);
  1322. int qlcnic_enable_msix(struct qlcnic_adapter *, u32);
  1323. void qlcnic_set_drv_version(struct qlcnic_adapter *);
  1324. /* eSwitch management functions */
  1325. int qlcnic_config_switch_port(struct qlcnic_adapter *,
  1326. struct qlcnic_esw_func_cfg *);
  1327. int qlcnic_get_eswitch_port_config(struct qlcnic_adapter *,
  1328. struct qlcnic_esw_func_cfg *);
  1329. int qlcnic_config_port_mirroring(struct qlcnic_adapter *, u8, u8, u8);
  1330. int qlcnic_get_port_stats(struct qlcnic_adapter *, const u8, const u8,
  1331. struct __qlcnic_esw_statistics *);
  1332. int qlcnic_get_eswitch_stats(struct qlcnic_adapter *, const u8, u8,
  1333. struct __qlcnic_esw_statistics *);
  1334. int qlcnic_clear_esw_stats(struct qlcnic_adapter *adapter, u8, u8, u8);
  1335. int qlcnic_get_mac_stats(struct qlcnic_adapter *, struct qlcnic_mac_statistics *);
  1336. void qlcnic_free_mbx_args(struct qlcnic_cmd_args *cmd);
  1337. int qlcnic_alloc_sds_rings(struct qlcnic_recv_context *, int);
  1338. void qlcnic_free_sds_rings(struct qlcnic_recv_context *);
  1339. void qlcnic_advert_link_change(struct qlcnic_adapter *, int);
  1340. void qlcnic_free_tx_rings(struct qlcnic_adapter *);
  1341. int qlcnic_alloc_tx_rings(struct qlcnic_adapter *, struct net_device *);
  1342. void qlcnic_dump_mbx(struct qlcnic_adapter *, struct qlcnic_cmd_args *);
  1343. void qlcnic_create_sysfs_entries(struct qlcnic_adapter *adapter);
  1344. void qlcnic_remove_sysfs_entries(struct qlcnic_adapter *adapter);
  1345. void qlcnic_create_diag_entries(struct qlcnic_adapter *adapter);
  1346. void qlcnic_remove_diag_entries(struct qlcnic_adapter *adapter);
  1347. void qlcnic_82xx_add_sysfs(struct qlcnic_adapter *adapter);
  1348. void qlcnic_82xx_remove_sysfs(struct qlcnic_adapter *adapter);
  1349. int qlcnic_82xx_get_settings(struct qlcnic_adapter *, struct ethtool_cmd *);
  1350. int qlcnicvf_config_bridged_mode(struct qlcnic_adapter *, u32);
  1351. int qlcnicvf_config_led(struct qlcnic_adapter *, u32, u32);
  1352. void qlcnic_set_vlan_config(struct qlcnic_adapter *,
  1353. struct qlcnic_esw_func_cfg *);
  1354. void qlcnic_set_eswitch_port_features(struct qlcnic_adapter *,
  1355. struct qlcnic_esw_func_cfg *);
  1356. void qlcnic_down(struct qlcnic_adapter *, struct net_device *);
  1357. int qlcnic_up(struct qlcnic_adapter *, struct net_device *);
  1358. void __qlcnic_down(struct qlcnic_adapter *, struct net_device *);
  1359. void qlcnic_detach(struct qlcnic_adapter *);
  1360. void qlcnic_teardown_intr(struct qlcnic_adapter *);
  1361. int qlcnic_attach(struct qlcnic_adapter *);
  1362. int __qlcnic_up(struct qlcnic_adapter *, struct net_device *);
  1363. void qlcnic_restore_indev_addr(struct net_device *, unsigned long);
  1364. int qlcnic_check_temp(struct qlcnic_adapter *);
  1365. int qlcnic_init_pci_info(struct qlcnic_adapter *);
  1366. int qlcnic_set_default_offload_settings(struct qlcnic_adapter *);
  1367. int qlcnic_reset_npar_config(struct qlcnic_adapter *);
  1368. int qlcnic_set_eswitch_port_config(struct qlcnic_adapter *);
  1369. void qlcnic_add_lb_filter(struct qlcnic_adapter *, struct sk_buff *, int, u16);
  1370. int qlcnic_get_beacon_state(struct qlcnic_adapter *, u8 *);
  1371. int qlcnic_83xx_configure_opmode(struct qlcnic_adapter *adapter);
  1372. int qlcnic_read_mac_addr(struct qlcnic_adapter *);
  1373. int qlcnic_setup_netdev(struct qlcnic_adapter *, struct net_device *, int);
  1374. void qlcnic_set_netdev_features(struct qlcnic_adapter *,
  1375. struct qlcnic_esw_func_cfg *);
  1376. void qlcnic_sriov_vf_schedule_multi(struct net_device *);
  1377. void qlcnic_vf_add_mc_list(struct net_device *, u16);
  1378. /*
  1379. * QLOGIC Board information
  1380. */
  1381. #define QLCNIC_MAX_BOARD_NAME_LEN 100
  1382. struct qlcnic_board_info {
  1383. unsigned short vendor;
  1384. unsigned short device;
  1385. unsigned short sub_vendor;
  1386. unsigned short sub_device;
  1387. char short_name[QLCNIC_MAX_BOARD_NAME_LEN];
  1388. };
  1389. static inline u32 qlcnic_tx_avail(struct qlcnic_host_tx_ring *tx_ring)
  1390. {
  1391. if (likely(tx_ring->producer < tx_ring->sw_consumer))
  1392. return tx_ring->sw_consumer - tx_ring->producer;
  1393. else
  1394. return tx_ring->sw_consumer + tx_ring->num_desc -
  1395. tx_ring->producer;
  1396. }
  1397. static inline int qlcnic_set_real_num_queues(struct qlcnic_adapter *adapter,
  1398. struct net_device *netdev)
  1399. {
  1400. int err, tx_q;
  1401. tx_q = adapter->max_drv_tx_rings;
  1402. netdev->num_tx_queues = tx_q;
  1403. netdev->real_num_tx_queues = tx_q;
  1404. err = netif_set_real_num_tx_queues(netdev, tx_q);
  1405. if (err)
  1406. dev_err(&adapter->pdev->dev, "failed to set %d Tx queues\n",
  1407. tx_q);
  1408. else
  1409. dev_info(&adapter->pdev->dev, "set %d Tx queues\n", tx_q);
  1410. return err;
  1411. }
  1412. struct qlcnic_nic_template {
  1413. int (*config_bridged_mode) (struct qlcnic_adapter *, u32);
  1414. int (*config_led) (struct qlcnic_adapter *, u32, u32);
  1415. int (*start_firmware) (struct qlcnic_adapter *);
  1416. int (*init_driver) (struct qlcnic_adapter *);
  1417. void (*request_reset) (struct qlcnic_adapter *, u32);
  1418. void (*cancel_idc_work) (struct qlcnic_adapter *);
  1419. int (*napi_add)(struct qlcnic_adapter *, struct net_device *);
  1420. void (*napi_del)(struct qlcnic_adapter *);
  1421. void (*config_ipaddr)(struct qlcnic_adapter *, __be32, int);
  1422. irqreturn_t (*clear_legacy_intr)(struct qlcnic_adapter *);
  1423. int (*shutdown)(struct pci_dev *);
  1424. int (*resume)(struct qlcnic_adapter *);
  1425. };
  1426. struct qlcnic_mbx_ops {
  1427. int (*enqueue_cmd) (struct qlcnic_adapter *,
  1428. struct qlcnic_cmd_args *, unsigned long *);
  1429. void (*dequeue_cmd) (struct qlcnic_adapter *, struct qlcnic_cmd_args *);
  1430. void (*decode_resp) (struct qlcnic_adapter *, struct qlcnic_cmd_args *);
  1431. void (*encode_cmd) (struct qlcnic_adapter *, struct qlcnic_cmd_args *);
  1432. void (*nofity_fw) (struct qlcnic_adapter *, u8);
  1433. };
  1434. int qlcnic_83xx_init_mailbox_work(struct qlcnic_adapter *);
  1435. void qlcnic_83xx_detach_mailbox_work(struct qlcnic_adapter *);
  1436. void qlcnic_83xx_reinit_mbx_work(struct qlcnic_mailbox *mbx);
  1437. void qlcnic_83xx_free_mailbox(struct qlcnic_mailbox *mbx);
  1438. /* Adapter hardware abstraction */
  1439. struct qlcnic_hardware_ops {
  1440. void (*read_crb) (struct qlcnic_adapter *, char *, loff_t, size_t);
  1441. void (*write_crb) (struct qlcnic_adapter *, char *, loff_t, size_t);
  1442. int (*read_reg) (struct qlcnic_adapter *, ulong, int *);
  1443. int (*write_reg) (struct qlcnic_adapter *, ulong, u32);
  1444. void (*get_ocm_win) (struct qlcnic_hardware_context *);
  1445. int (*get_mac_address) (struct qlcnic_adapter *, u8 *);
  1446. int (*setup_intr) (struct qlcnic_adapter *, u8, int);
  1447. int (*alloc_mbx_args)(struct qlcnic_cmd_args *,
  1448. struct qlcnic_adapter *, u32);
  1449. int (*mbx_cmd) (struct qlcnic_adapter *, struct qlcnic_cmd_args *);
  1450. void (*get_func_no) (struct qlcnic_adapter *);
  1451. int (*api_lock) (struct qlcnic_adapter *);
  1452. void (*api_unlock) (struct qlcnic_adapter *);
  1453. void (*add_sysfs) (struct qlcnic_adapter *);
  1454. void (*remove_sysfs) (struct qlcnic_adapter *);
  1455. void (*process_lb_rcv_ring_diag) (struct qlcnic_host_sds_ring *);
  1456. int (*create_rx_ctx) (struct qlcnic_adapter *);
  1457. int (*create_tx_ctx) (struct qlcnic_adapter *,
  1458. struct qlcnic_host_tx_ring *, int);
  1459. void (*del_rx_ctx) (struct qlcnic_adapter *);
  1460. void (*del_tx_ctx) (struct qlcnic_adapter *,
  1461. struct qlcnic_host_tx_ring *);
  1462. int (*setup_link_event) (struct qlcnic_adapter *, int);
  1463. int (*get_nic_info) (struct qlcnic_adapter *, struct qlcnic_info *, u8);
  1464. int (*get_pci_info) (struct qlcnic_adapter *, struct qlcnic_pci_info *);
  1465. int (*set_nic_info) (struct qlcnic_adapter *, struct qlcnic_info *);
  1466. int (*change_macvlan) (struct qlcnic_adapter *, u8*, u16, u8);
  1467. void (*napi_enable) (struct qlcnic_adapter *);
  1468. void (*napi_disable) (struct qlcnic_adapter *);
  1469. void (*config_intr_coal) (struct qlcnic_adapter *);
  1470. int (*config_rss) (struct qlcnic_adapter *, int);
  1471. int (*config_hw_lro) (struct qlcnic_adapter *, int);
  1472. int (*config_loopback) (struct qlcnic_adapter *, u8);
  1473. int (*clear_loopback) (struct qlcnic_adapter *, u8);
  1474. int (*config_promisc_mode) (struct qlcnic_adapter *, u32);
  1475. void (*change_l2_filter) (struct qlcnic_adapter *, u64 *, u16);
  1476. int (*get_board_info) (struct qlcnic_adapter *);
  1477. void (*set_mac_filter_count) (struct qlcnic_adapter *);
  1478. void (*free_mac_list) (struct qlcnic_adapter *);
  1479. };
  1480. extern struct qlcnic_nic_template qlcnic_vf_ops;
  1481. static inline int qlcnic_start_firmware(struct qlcnic_adapter *adapter)
  1482. {
  1483. return adapter->nic_ops->start_firmware(adapter);
  1484. }
  1485. static inline void qlcnic_read_crb(struct qlcnic_adapter *adapter, char *buf,
  1486. loff_t offset, size_t size)
  1487. {
  1488. adapter->ahw->hw_ops->read_crb(adapter, buf, offset, size);
  1489. }
  1490. static inline void qlcnic_write_crb(struct qlcnic_adapter *adapter, char *buf,
  1491. loff_t offset, size_t size)
  1492. {
  1493. adapter->ahw->hw_ops->write_crb(adapter, buf, offset, size);
  1494. }
  1495. static inline int qlcnic_hw_write_wx_2M(struct qlcnic_adapter *adapter,
  1496. ulong off, u32 data)
  1497. {
  1498. return adapter->ahw->hw_ops->write_reg(adapter, off, data);
  1499. }
  1500. static inline int qlcnic_get_mac_address(struct qlcnic_adapter *adapter,
  1501. u8 *mac)
  1502. {
  1503. return adapter->ahw->hw_ops->get_mac_address(adapter, mac);
  1504. }
  1505. static inline int qlcnic_setup_intr(struct qlcnic_adapter *adapter,
  1506. u8 num_intr, int txq)
  1507. {
  1508. return adapter->ahw->hw_ops->setup_intr(adapter, num_intr, txq);
  1509. }
  1510. static inline int qlcnic_alloc_mbx_args(struct qlcnic_cmd_args *mbx,
  1511. struct qlcnic_adapter *adapter, u32 arg)
  1512. {
  1513. return adapter->ahw->hw_ops->alloc_mbx_args(mbx, adapter, arg);
  1514. }
  1515. static inline int qlcnic_issue_cmd(struct qlcnic_adapter *adapter,
  1516. struct qlcnic_cmd_args *cmd)
  1517. {
  1518. if (adapter->ahw->hw_ops->mbx_cmd)
  1519. return adapter->ahw->hw_ops->mbx_cmd(adapter, cmd);
  1520. return -EIO;
  1521. }
  1522. static inline void qlcnic_get_func_no(struct qlcnic_adapter *adapter)
  1523. {
  1524. adapter->ahw->hw_ops->get_func_no(adapter);
  1525. }
  1526. static inline int qlcnic_api_lock(struct qlcnic_adapter *adapter)
  1527. {
  1528. return adapter->ahw->hw_ops->api_lock(adapter);
  1529. }
  1530. static inline void qlcnic_api_unlock(struct qlcnic_adapter *adapter)
  1531. {
  1532. adapter->ahw->hw_ops->api_unlock(adapter);
  1533. }
  1534. static inline void qlcnic_add_sysfs(struct qlcnic_adapter *adapter)
  1535. {
  1536. if (adapter->ahw->hw_ops->add_sysfs)
  1537. adapter->ahw->hw_ops->add_sysfs(adapter);
  1538. }
  1539. static inline void qlcnic_remove_sysfs(struct qlcnic_adapter *adapter)
  1540. {
  1541. if (adapter->ahw->hw_ops->remove_sysfs)
  1542. adapter->ahw->hw_ops->remove_sysfs(adapter);
  1543. }
  1544. static inline void
  1545. qlcnic_process_rcv_ring_diag(struct qlcnic_host_sds_ring *sds_ring)
  1546. {
  1547. sds_ring->adapter->ahw->hw_ops->process_lb_rcv_ring_diag(sds_ring);
  1548. }
  1549. static inline int qlcnic_fw_cmd_create_rx_ctx(struct qlcnic_adapter *adapter)
  1550. {
  1551. return adapter->ahw->hw_ops->create_rx_ctx(adapter);
  1552. }
  1553. static inline int qlcnic_fw_cmd_create_tx_ctx(struct qlcnic_adapter *adapter,
  1554. struct qlcnic_host_tx_ring *ptr,
  1555. int ring)
  1556. {
  1557. return adapter->ahw->hw_ops->create_tx_ctx(adapter, ptr, ring);
  1558. }
  1559. static inline void qlcnic_fw_cmd_del_rx_ctx(struct qlcnic_adapter *adapter)
  1560. {
  1561. return adapter->ahw->hw_ops->del_rx_ctx(adapter);
  1562. }
  1563. static inline void qlcnic_fw_cmd_del_tx_ctx(struct qlcnic_adapter *adapter,
  1564. struct qlcnic_host_tx_ring *ptr)
  1565. {
  1566. return adapter->ahw->hw_ops->del_tx_ctx(adapter, ptr);
  1567. }
  1568. static inline int qlcnic_linkevent_request(struct qlcnic_adapter *adapter,
  1569. int enable)
  1570. {
  1571. return adapter->ahw->hw_ops->setup_link_event(adapter, enable);
  1572. }
  1573. static inline int qlcnic_get_nic_info(struct qlcnic_adapter *adapter,
  1574. struct qlcnic_info *info, u8 id)
  1575. {
  1576. return adapter->ahw->hw_ops->get_nic_info(adapter, info, id);
  1577. }
  1578. static inline int qlcnic_get_pci_info(struct qlcnic_adapter *adapter,
  1579. struct qlcnic_pci_info *info)
  1580. {
  1581. return adapter->ahw->hw_ops->get_pci_info(adapter, info);
  1582. }
  1583. static inline int qlcnic_set_nic_info(struct qlcnic_adapter *adapter,
  1584. struct qlcnic_info *info)
  1585. {
  1586. return adapter->ahw->hw_ops->set_nic_info(adapter, info);
  1587. }
  1588. static inline int qlcnic_sre_macaddr_change(struct qlcnic_adapter *adapter,
  1589. u8 *addr, u16 id, u8 cmd)
  1590. {
  1591. return adapter->ahw->hw_ops->change_macvlan(adapter, addr, id, cmd);
  1592. }
  1593. static inline int qlcnic_napi_add(struct qlcnic_adapter *adapter,
  1594. struct net_device *netdev)
  1595. {
  1596. return adapter->nic_ops->napi_add(adapter, netdev);
  1597. }
  1598. static inline void qlcnic_napi_del(struct qlcnic_adapter *adapter)
  1599. {
  1600. adapter->nic_ops->napi_del(adapter);
  1601. }
  1602. static inline void qlcnic_napi_enable(struct qlcnic_adapter *adapter)
  1603. {
  1604. adapter->ahw->hw_ops->napi_enable(adapter);
  1605. }
  1606. static inline int __qlcnic_shutdown(struct pci_dev *pdev)
  1607. {
  1608. struct qlcnic_adapter *adapter = pci_get_drvdata(pdev);
  1609. return adapter->nic_ops->shutdown(pdev);
  1610. }
  1611. static inline int __qlcnic_resume(struct qlcnic_adapter *adapter)
  1612. {
  1613. return adapter->nic_ops->resume(adapter);
  1614. }
  1615. static inline void qlcnic_napi_disable(struct qlcnic_adapter *adapter)
  1616. {
  1617. adapter->ahw->hw_ops->napi_disable(adapter);
  1618. }
  1619. static inline void qlcnic_config_intr_coalesce(struct qlcnic_adapter *adapter)
  1620. {
  1621. adapter->ahw->hw_ops->config_intr_coal(adapter);
  1622. }
  1623. static inline int qlcnic_config_rss(struct qlcnic_adapter *adapter, int enable)
  1624. {
  1625. return adapter->ahw->hw_ops->config_rss(adapter, enable);
  1626. }
  1627. static inline int qlcnic_config_hw_lro(struct qlcnic_adapter *adapter,
  1628. int enable)
  1629. {
  1630. return adapter->ahw->hw_ops->config_hw_lro(adapter, enable);
  1631. }
  1632. static inline int qlcnic_set_lb_mode(struct qlcnic_adapter *adapter, u8 mode)
  1633. {
  1634. return adapter->ahw->hw_ops->config_loopback(adapter, mode);
  1635. }
  1636. static inline int qlcnic_clear_lb_mode(struct qlcnic_adapter *adapter, u8 mode)
  1637. {
  1638. return adapter->ahw->hw_ops->clear_loopback(adapter, mode);
  1639. }
  1640. static inline int qlcnic_nic_set_promisc(struct qlcnic_adapter *adapter,
  1641. u32 mode)
  1642. {
  1643. return adapter->ahw->hw_ops->config_promisc_mode(adapter, mode);
  1644. }
  1645. static inline void qlcnic_change_filter(struct qlcnic_adapter *adapter,
  1646. u64 *addr, u16 id)
  1647. {
  1648. adapter->ahw->hw_ops->change_l2_filter(adapter, addr, id);
  1649. }
  1650. static inline int qlcnic_get_board_info(struct qlcnic_adapter *adapter)
  1651. {
  1652. return adapter->ahw->hw_ops->get_board_info(adapter);
  1653. }
  1654. static inline void qlcnic_free_mac_list(struct qlcnic_adapter *adapter)
  1655. {
  1656. return adapter->ahw->hw_ops->free_mac_list(adapter);
  1657. }
  1658. static inline void qlcnic_set_mac_filter_count(struct qlcnic_adapter *adapter)
  1659. {
  1660. if (adapter->ahw->hw_ops->set_mac_filter_count)
  1661. adapter->ahw->hw_ops->set_mac_filter_count(adapter);
  1662. }
  1663. static inline void qlcnic_dev_request_reset(struct qlcnic_adapter *adapter,
  1664. u32 key)
  1665. {
  1666. if (adapter->nic_ops->request_reset)
  1667. adapter->nic_ops->request_reset(adapter, key);
  1668. }
  1669. static inline void qlcnic_cancel_idc_work(struct qlcnic_adapter *adapter)
  1670. {
  1671. if (adapter->nic_ops->cancel_idc_work)
  1672. adapter->nic_ops->cancel_idc_work(adapter);
  1673. }
  1674. static inline irqreturn_t
  1675. qlcnic_clear_legacy_intr(struct qlcnic_adapter *adapter)
  1676. {
  1677. return adapter->nic_ops->clear_legacy_intr(adapter);
  1678. }
  1679. static inline int qlcnic_config_led(struct qlcnic_adapter *adapter, u32 state,
  1680. u32 rate)
  1681. {
  1682. return adapter->nic_ops->config_led(adapter, state, rate);
  1683. }
  1684. static inline void qlcnic_config_ipaddr(struct qlcnic_adapter *adapter,
  1685. __be32 ip, int cmd)
  1686. {
  1687. adapter->nic_ops->config_ipaddr(adapter, ip, cmd);
  1688. }
  1689. static inline bool qlcnic_check_multi_tx(struct qlcnic_adapter *adapter)
  1690. {
  1691. return test_bit(__QLCNIC_MULTI_TX_UNIQUE, &adapter->state);
  1692. }
  1693. static inline void qlcnic_disable_multi_tx(struct qlcnic_adapter *adapter)
  1694. {
  1695. test_and_clear_bit(__QLCNIC_MULTI_TX_UNIQUE, &adapter->state);
  1696. adapter->max_drv_tx_rings = 1;
  1697. }
  1698. /* When operating in a muti tx mode, driver needs to write 0x1
  1699. * to src register, instead of 0x0 to disable receiving interrupt.
  1700. */
  1701. static inline void qlcnic_disable_int(struct qlcnic_host_sds_ring *sds_ring)
  1702. {
  1703. struct qlcnic_adapter *adapter = sds_ring->adapter;
  1704. if (qlcnic_check_multi_tx(adapter) &&
  1705. (adapter->flags & QLCNIC_MSIX_ENABLED))
  1706. writel(0x1, sds_ring->crb_intr_mask);
  1707. else
  1708. writel(0, sds_ring->crb_intr_mask);
  1709. }
  1710. /* When operating in a muti tx mode, driver needs to write 0x0
  1711. * to src register, instead of 0x1 to enable receiving interrupts.
  1712. */
  1713. static inline void qlcnic_enable_int(struct qlcnic_host_sds_ring *sds_ring)
  1714. {
  1715. struct qlcnic_adapter *adapter = sds_ring->adapter;
  1716. if (qlcnic_check_multi_tx(adapter) &&
  1717. (adapter->flags & QLCNIC_MSIX_ENABLED))
  1718. writel(0, sds_ring->crb_intr_mask);
  1719. else
  1720. writel(0x1, sds_ring->crb_intr_mask);
  1721. if (!QLCNIC_IS_MSI_FAMILY(adapter))
  1722. writel(0xfbff, adapter->tgt_mask_reg);
  1723. }
  1724. static inline int qlcnic_get_diag_lock(struct qlcnic_adapter *adapter)
  1725. {
  1726. return test_and_set_bit(__QLCNIC_DIAG_MODE, &adapter->state);
  1727. }
  1728. static inline void qlcnic_release_diag_lock(struct qlcnic_adapter *adapter)
  1729. {
  1730. clear_bit(__QLCNIC_DIAG_MODE, &adapter->state);
  1731. }
  1732. static inline int qlcnic_check_diag_status(struct qlcnic_adapter *adapter)
  1733. {
  1734. return test_bit(__QLCNIC_DIAG_MODE, &adapter->state);
  1735. }
  1736. extern const struct ethtool_ops qlcnic_sriov_vf_ethtool_ops;
  1737. extern const struct ethtool_ops qlcnic_ethtool_ops;
  1738. extern const struct ethtool_ops qlcnic_ethtool_failed_ops;
  1739. #define QLCDB(adapter, lvl, _fmt, _args...) do { \
  1740. if (NETIF_MSG_##lvl & adapter->ahw->msg_enable) \
  1741. printk(KERN_INFO "%s: %s: " _fmt, \
  1742. dev_name(&adapter->pdev->dev), \
  1743. __func__, ##_args); \
  1744. } while (0)
  1745. #define PCI_DEVICE_ID_QLOGIC_QLE824X 0x8020
  1746. #define PCI_DEVICE_ID_QLOGIC_QLE834X 0x8030
  1747. #define PCI_DEVICE_ID_QLOGIC_VF_QLE834X 0x8430
  1748. #define PCI_DEVICE_ID_QLOGIC_QLE844X 0x8040
  1749. #define PCI_DEVICE_ID_QLOGIC_VF_QLE844X 0x8440
  1750. static inline bool qlcnic_82xx_check(struct qlcnic_adapter *adapter)
  1751. {
  1752. unsigned short device = adapter->pdev->device;
  1753. return (device == PCI_DEVICE_ID_QLOGIC_QLE824X) ? true : false;
  1754. }
  1755. static inline bool qlcnic_83xx_check(struct qlcnic_adapter *adapter)
  1756. {
  1757. unsigned short device = adapter->pdev->device;
  1758. bool status;
  1759. status = ((device == PCI_DEVICE_ID_QLOGIC_QLE834X) ||
  1760. (device == PCI_DEVICE_ID_QLOGIC_QLE844X) ||
  1761. (device == PCI_DEVICE_ID_QLOGIC_VF_QLE844X) ||
  1762. (device == PCI_DEVICE_ID_QLOGIC_VF_QLE834X)) ? true : false;
  1763. return status;
  1764. }
  1765. static inline bool qlcnic_sriov_pf_check(struct qlcnic_adapter *adapter)
  1766. {
  1767. return (adapter->ahw->op_mode == QLCNIC_SRIOV_PF_FUNC) ? true : false;
  1768. }
  1769. static inline bool qlcnic_sriov_vf_check(struct qlcnic_adapter *adapter)
  1770. {
  1771. unsigned short device = adapter->pdev->device;
  1772. bool status;
  1773. status = ((device == PCI_DEVICE_ID_QLOGIC_VF_QLE834X) ||
  1774. (device == PCI_DEVICE_ID_QLOGIC_VF_QLE844X)) ? true : false;
  1775. return status;
  1776. }
  1777. #endif /* __QLCNIC_H_ */