qlcnic.h 50 KB

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