2 * QLogic qlcnic NIC Driver
3 * Copyright (c) 2009-2013 QLogic Corporation
5 * See LICENSE.qlcnic for copyright and licensing details.
8 #ifndef __QLCNIC_83XX_HW_H
9 #define __QLCNIC_83XX_HW_H
11 #include <linux/types.h>
12 #include <linux/etherdevice.h>
14 #include "qlcnic_hw.h"
16 #define QLCNIC_83XX_BAR0_LENGTH 0x4000
18 /* Directly mapped registers */
19 #define QLC_83XX_CRB_WIN_BASE 0x3800
20 #define QLC_83XX_CRB_WIN_FUNC(f) (QLC_83XX_CRB_WIN_BASE+((f)*4))
21 #define QLC_83XX_SEM_LOCK_BASE 0x3840
22 #define QLC_83XX_SEM_UNLOCK_BASE 0x3844
23 #define QLC_83XX_SEM_LOCK_FUNC(f) (QLC_83XX_SEM_LOCK_BASE+((f)*8))
24 #define QLC_83XX_SEM_UNLOCK_FUNC(f) (QLC_83XX_SEM_UNLOCK_BASE+((f)*8))
25 #define QLC_83XX_LINK_STATE(f) (0x3698+((f) > 7 ? 4 : 0))
26 #define QLC_83XX_LINK_SPEED(f) (0x36E0+(((f) >> 2) * 4))
27 #define QLC_83XX_LINK_SPEED_FACTOR 10
28 #define QLC_83xx_FUNC_VAL(v, f) ((v) & (1 << (f * 4)))
29 #define QLC_83XX_INTX_PTR 0x38C0
30 #define QLC_83XX_INTX_TRGR 0x38C4
31 #define QLC_83XX_INTX_MASK 0x38C8
33 #define QLC_83XX_DRV_LOCK_WAIT_COUNTER 100
34 #define QLC_83XX_DRV_LOCK_WAIT_DELAY 20
35 #define QLC_83XX_NEED_DRV_LOCK_RECOVERY 1
36 #define QLC_83XX_DRV_LOCK_RECOVERY_IN_PROGRESS 2
37 #define QLC_83XX_MAX_DRV_LOCK_RECOVERY_ATTEMPT 3
38 #define QLC_83XX_DRV_LOCK_RECOVERY_DELAY 200
39 #define QLC_83XX_DRV_LOCK_RECOVERY_STATUS_MASK 0x3
40 #define QLC_83XX_LB_WAIT_COUNT 250
41 #define QLC_83XX_LB_MSLEEP_COUNT 20
42 #define QLC_83XX_NO_NIC_RESOURCE 0x5
43 #define QLC_83XX_MAC_PRESENT 0xC
44 #define QLC_83XX_MAC_ABSENT 0xD
47 #define QLC_83XX_FLASH_SECTOR_SIZE (64 * 1024)
49 /* PEG status definitions */
50 #define QLC_83XX_CMDPEG_COMPLETE 0xff01
51 #define QLC_83XX_VALID_INTX_BIT30(val) ((val) & BIT_30)
52 #define QLC_83XX_VALID_INTX_BIT31(val) ((val) & BIT_31)
53 #define QLC_83XX_INTX_FUNC(val) ((val) & 0xFF)
54 #define QLC_83XX_LEGACY_INTX_MAX_RETRY 100
55 #define QLC_83XX_LEGACY_INTX_DELAY 4
56 #define QLC_83XX_REG_DESC 1
57 #define QLC_83XX_LRO_DESC 2
58 #define QLC_83XX_CTRL_DESC 3
59 #define QLC_83XX_FW_CAPABILITY_TSO BIT_6
60 #define QLC_83XX_FW_CAP_LRO_MSS BIT_17
61 #define QLC_83XX_HOST_RDS_MODE_UNIQUE 0
62 #define QLC_83XX_HOST_SDS_MBX_IDX 8
64 #define QLCNIC_HOST_RDS_MBX_IDX 88
66 /* Pause control registers */
67 #define QLC_83XX_SRE_SHIM_REG 0x0D200284
68 #define QLC_83XX_PORT0_THRESHOLD 0x0B2003A4
69 #define QLC_83XX_PORT1_THRESHOLD 0x0B2013A4
70 #define QLC_83XX_PORT0_TC_MC_REG 0x0B200388
71 #define QLC_83XX_PORT1_TC_MC_REG 0x0B201388
72 #define QLC_83XX_PORT0_TC_STATS 0x0B20039C
73 #define QLC_83XX_PORT1_TC_STATS 0x0B20139C
74 #define QLC_83XX_PORT2_IFB_THRESHOLD 0x0B200704
75 #define QLC_83XX_PORT3_IFB_THRESHOLD 0x0B201704
77 /* Peg PC status registers */
78 #define QLC_83XX_CRB_PEG_NET_0 0x3400003c
79 #define QLC_83XX_CRB_PEG_NET_1 0x3410003c
80 #define QLC_83XX_CRB_PEG_NET_2 0x3420003c
81 #define QLC_83XX_CRB_PEG_NET_3 0x3430003c
82 #define QLC_83XX_CRB_PEG_NET_4 0x34b0003c
84 /* Firmware image definitions */
85 #define QLC_83XX_BOOTLOADER_FLASH_ADDR 0x10000
86 #define QLC_83XX_FW_FILE_NAME "83xx_fw.bin"
87 #define QLC_83XX_POST_FW_FILE_NAME "83xx_post_fw.bin"
88 #define QLC_84XX_FW_FILE_NAME "84xx_fw.bin"
89 #define QLC_83XX_BOOT_FROM_FLASH 0
90 #define QLC_83XX_BOOT_FROM_FILE 0x12345678
92 #define QLC_FW_FILE_NAME_LEN 20
93 #define QLC_83XX_MAX_RESET_SEQ_ENTRIES 16
95 #define QLC_83XX_MBX_POST_BC_OP 0x1
96 #define QLC_83XX_MBX_COMPLETION 0x0
97 #define QLC_83XX_MBX_REQUEST 0x1
99 #define QLC_83XX_MBX_TIMEOUT (5 * HZ)
100 #define QLC_83XX_MBX_CMD_LOOP 5000000
102 /* status descriptor mailbox data
103 * @phy_addr_{low|high}: physical address of buffer
104 * @sds_ring_size: buffer size
105 * @intrpt_id: interrupt id
106 * @intrpt_val: source of interrupt
108 struct qlcnic_sds_mbx
{
112 #if defined(__LITTLE_ENDIAN)
119 #elif defined(__BIG_ENDIAN)
130 /* receive descriptor buffer data
131 * phy_addr_reg_{low|high}: physical address of regular buffer
132 * phy_addr_jmb_{low|high}: physical address of jumbo buffer
133 * reg_ring_sz: size of regular buffer
134 * reg_ring_len: no. of entries in regular buffer
135 * jmb_ring_len: no. of entries in jumbo buffer
136 * jmb_ring_sz: size of jumbo buffer
138 struct qlcnic_rds_mbx
{
139 u32 phy_addr_reg_low
;
140 u32 phy_addr_reg_high
;
141 u32 phy_addr_jmb_low
;
142 u32 phy_addr_jmb_high
;
143 #if defined(__LITTLE_ENDIAN)
148 #elif defined(__BIG_ENDIAN)
156 /* host producers for regular and jumbo rings */
157 struct __host_producer_mbx
{
162 /* Receive context mailbox data outbox registers
163 * @state: state of the context
164 * @vport_id: virtual port id
165 * @context_id: receive context id
166 * @num_pci_func: number of pci functions of the port
167 * @phy_port: physical port id
169 struct qlcnic_rcv_mbx_out
{
170 #if defined(__LITTLE_ENDIAN)
178 #elif defined(__BIG_ENDIAN)
187 u32 host_csmr
[QLCNIC_MAX_SDS_RINGS
];
188 struct __host_producer_mbx host_prod
[QLCNIC_MAX_SDS_RINGS
];
191 struct qlcnic_add_rings_mbx_out
{
192 #if defined(__LITTLE_ENDIAN)
196 #elif defined(__BIG_ENDIAN)
201 u32 host_csmr
[QLCNIC_MAX_SDS_RINGS
];
202 struct __host_producer_mbx host_prod
[QLCNIC_MAX_SDS_RINGS
];
205 /* Transmit context mailbox inbox registers
206 * @phys_addr_{low|high}: DMA address of the transmit buffer
207 * @cnsmr_index_{low|high}: host consumer index
208 * @size: legth of transmit buffer ring
209 * @intr_id: interrupt id
210 * @src: src of interrupt
212 struct qlcnic_tx_mbx
{
216 u32 cnsmr_index_high
;
217 #if defined(__LITTLE_ENDIAN)
222 #elif defined(__BIG_ENDIAN)
230 /* Transmit context mailbox outbox registers
231 * @host_prod: host producer index
232 * @ctx_id: transmit context id
233 * @state: state of the transmit context
236 struct qlcnic_tx_mbx_out
{
238 #if defined(__LITTLE_ENDIAN)
242 #elif defined(__BIG_ENDIAN)
249 struct qlcnic_intrpt_config
{
256 struct qlcnic_macvlan_mbx
{
257 #if defined(__LITTLE_ENDIAN)
265 #elif defined(__BIG_ENDIAN)
276 struct qlc_83xx_fw_info
{
277 const struct firmware
*fw
;
278 char fw_file_name
[QLC_FW_FILE_NAME_LEN
];
281 struct qlc_83xx_reset
{
282 struct qlc_83xx_reset_hdr
*hdr
;
286 u32 array
[QLC_83XX_MAX_RESET_SEQ_ENTRIES
];
295 #define QLC_83XX_IDC_DISABLE_FW_RESET_RECOVERY 0x1
296 #define QLC_83XX_IDC_GRACEFULL_RESET 0x2
297 #define QLC_83XX_IDC_DISABLE_FW_DUMP 0x4
298 #define QLC_83XX_IDC_TIMESTAMP 0
299 #define QLC_83XX_IDC_DURATION 1
300 #define QLC_83XX_IDC_INIT_TIMEOUT_SECS 30
301 #define QLC_83XX_IDC_RESET_ACK_TIMEOUT_SECS 10
302 #define QLC_83XX_IDC_RESET_TIMEOUT_SECS 10
303 #define QLC_83XX_IDC_QUIESCE_ACK_TIMEOUT_SECS 20
304 #define QLC_83XX_IDC_FW_POLL_DELAY (1 * HZ)
305 #define QLC_83XX_IDC_FW_FAIL_THRESH 2
306 #define QLC_83XX_IDC_MAX_FUNC_PER_PARTITION_INFO 8
307 #define QLC_83XX_IDC_MAX_CNA_FUNCTIONS 16
308 #define QLC_83XX_IDC_MAJOR_VERSION 1
309 #define QLC_83XX_IDC_MINOR_VERSION 0
310 #define QLC_83XX_IDC_FLASH_PARAM_ADDR 0x3e8020
312 struct qlcnic_adapter
;
313 struct qlcnic_fw_dump
;
315 struct qlc_83xx_idc
{
316 int (*state_entry
) (struct qlcnic_adapter
*);
319 unsigned long status
;
331 enum qlcnic_vlan_operations
{
337 enum qlcnic_83xx_states
{
338 QLC_83XX_IDC_DEV_UNKNOWN
,
339 QLC_83XX_IDC_DEV_COLD
,
340 QLC_83XX_IDC_DEV_INIT
,
341 QLC_83XX_IDC_DEV_READY
,
342 QLC_83XX_IDC_DEV_NEED_RESET
,
343 QLC_83XX_IDC_DEV_NEED_QUISCENT
,
344 QLC_83XX_IDC_DEV_FAILED
,
345 QLC_83XX_IDC_DEV_QUISCENT
348 #define QLCNIC_MBX_RSP(reg) LSW(reg)
349 #define QLCNIC_MBX_NUM_REGS(reg) (MSW(reg) & 0x1FF)
350 #define QLCNIC_MBX_STATUS(reg) (((reg) >> 25) & 0x7F)
351 #define QLCNIC_MBX_HOST(ahw, i) ((ahw)->pci_base0 + ((i) * 4))
352 #define QLCNIC_MBX_FW(ahw, i) ((ahw)->pci_base0 + 0x800 + ((i) * 4))
354 /* Mailbox process AEN count */
355 #define QLC_83XX_IDC_COMP_AEN 3
356 #define QLC_83XX_MBX_AEN_CNT 5
357 #define QLC_83XX_MODULE_LOADED 1
358 #define QLC_83XX_MBX_READY 2
359 #define QLC_83XX_MBX_AEN_ACK 3
360 #define QLC_83XX_SFP_PRESENT(data) ((data) & 3)
361 #define QLC_83XX_SFP_ERR(data) (((data) >> 2) & 3)
362 #define QLC_83XX_SFP_MODULE_TYPE(data) (((data) >> 4) & 0x1F)
363 #define QLC_83XX_SFP_CU_LENGTH(data) (LSB((data) >> 16))
364 #define QLC_83XX_SFP_TX_FAULT(data) ((data) & BIT_10)
365 #define QLC_83XX_LINK_STATS(data) ((data) & BIT_0)
366 #define QLC_83XX_CURRENT_LINK_SPEED(data) (((data) >> 3) & 7)
367 #define QLC_83XX_LINK_PAUSE(data) (((data) >> 6) & 3)
368 #define QLC_83XX_LINK_LB(data) (((data) >> 8) & 7)
369 #define QLC_83XX_LINK_FEC(data) ((data) & BIT_12)
370 #define QLC_83XX_LINK_EEE(data) ((data) & BIT_13)
371 #define QLC_83XX_DCBX(data) (((data) >> 28) & 7)
372 #define QLC_83XX_AUTONEG(data) ((data) & BIT_15)
373 #define QLC_83XX_TX_PAUSE 0x10
374 #define QLC_83XX_RX_PAUSE 0x20
375 #define QLC_83XX_TX_RX_PAUSE 0x30
376 #define QLC_83XX_CFG_STD_PAUSE (1 << 5)
377 #define QLC_83XX_CFG_STD_TX_PAUSE (1 << 20)
378 #define QLC_83XX_CFG_STD_RX_PAUSE (2 << 20)
379 #define QLC_83XX_CFG_STD_TX_RX_PAUSE (3 << 20)
380 #define QLC_83XX_ENABLE_AUTONEG (1 << 15)
381 #define QLC_83XX_CFG_LOOPBACK_HSS (2 << 1)
382 #define QLC_83XX_CFG_LOOPBACK_PHY (3 << 1)
383 #define QLC_83XX_CFG_LOOPBACK_EXT (4 << 1)
385 /* LED configuration settings */
386 #define QLC_83XX_ENABLE_BEACON 0xe
387 #define QLC_83XX_BEACON_ON 1
388 #define QLC_83XX_BEACON_OFF 0
389 #define QLC_83XX_LED_RATE 0xff
390 #define QLC_83XX_LED_ACT (1 << 10)
391 #define QLC_83XX_LED_MOD (0 << 13)
392 #define QLC_83XX_LED_CONFIG (QLC_83XX_LED_RATE | QLC_83XX_LED_ACT | \
395 #define QLC_83XX_10M_LINK 1
396 #define QLC_83XX_100M_LINK 2
397 #define QLC_83XX_1G_LINK 3
398 #define QLC_83XX_10G_LINK 4
399 #define QLC_83XX_STAT_TX 3
400 #define QLC_83XX_STAT_RX 2
401 #define QLC_83XX_STAT_MAC 1
402 #define QLC_83XX_TX_STAT_REGS 14
403 #define QLC_83XX_RX_STAT_REGS 40
404 #define QLC_83XX_MAC_STAT_REGS 94
406 #define QLC_83XX_GET_FUNC_PRIVILEGE(VAL, FN) (0x3 & ((VAL) >> (FN * 2)))
407 #define QLC_83XX_SET_FUNC_OPMODE(VAL, FN) ((VAL) << (FN * 2))
408 #define QLC_83XX_DEFAULT_OPMODE 0x55555555
409 #define QLC_83XX_PRIVLEGED_FUNC 0x1
410 #define QLC_83XX_VIRTUAL_FUNC 0x2
412 #define QLC_83XX_LB_MAX_FILTERS 2048
413 #define QLC_83XX_LB_BUCKET_SIZE 256
414 #define QLC_83XX_MINIMUM_VECTOR 3
415 #define QLC_83XX_MAX_MC_COUNT 38
416 #define QLC_83XX_MAX_UC_COUNT 4096
418 #define QLC_83XX_PVID_STRIP_CAPABILITY BIT_22
419 #define QLC_83XX_GET_FUNC_MODE_FROM_NPAR_INFO(val) (val & 0x80000000)
420 #define QLC_83XX_GET_LRO_CAPABILITY(val) (val & 0x20)
421 #define QLC_83XX_GET_LSO_CAPABILITY(val) (val & 0x40)
422 #define QLC_83XX_GET_HW_LRO_CAPABILITY(val) (val & 0x400)
423 #define QLC_83XX_GET_VLAN_ALIGN_CAPABILITY(val) (val & 0x4000)
424 #define QLC_83XX_GET_FW_LRO_MSS_CAPABILITY(val) (val & 0x20000)
425 #define QLC_83XX_ESWITCH_CAPABILITY BIT_23
426 #define QLC_83XX_SRIOV_MODE 0x1
427 #define QLCNIC_BRDTYPE_83XX_10G 0x0083
429 #define QLC_83XX_FLASH_SPI_STATUS 0x2808E010
430 #define QLC_83XX_FLASH_SPI_CONTROL 0x2808E014
431 #define QLC_83XX_FLASH_STATUS 0x42100004
432 #define QLC_83XX_FLASH_CONTROL 0x42110004
433 #define QLC_83XX_FLASH_ADDR 0x42110008
434 #define QLC_83XX_FLASH_WRDATA 0x4211000C
435 #define QLC_83XX_FLASH_RDDATA 0x42110018
436 #define QLC_83XX_FLASH_DIRECT_WINDOW 0x42110030
437 #define QLC_83XX_FLASH_DIRECT_DATA(DATA) (0x42150000 | (0x0000FFFF&DATA))
438 #define QLC_83XX_FLASH_SECTOR_ERASE_CMD 0xdeadbeef
439 #define QLC_83XX_FLASH_WRITE_CMD 0xdacdacda
440 #define QLC_83XX_FLASH_BULK_WRITE_CMD 0xcadcadca
441 #define QLC_83XX_FLASH_READ_RETRY_COUNT 5000
442 #define QLC_83XX_FLASH_STATUS_READY 0x6
443 #define QLC_83XX_FLASH_WRITE_MIN 2
444 #define QLC_83XX_FLASH_WRITE_MAX 64
445 #define QLC_83XX_FLASH_STATUS_REG_POLL_DELAY 1
446 #define QLC_83XX_ERASE_MODE 1
447 #define QLC_83XX_WRITE_MODE 2
448 #define QLC_83XX_BULK_WRITE_MODE 3
449 #define QLC_83XX_FLASH_FDT_WRITE_DEF_SIG 0xFD0100
450 #define QLC_83XX_FLASH_FDT_ERASE_DEF_SIG 0xFD0300
451 #define QLC_83XX_FLASH_FDT_READ_MFG_ID_VAL 0xFD009F
452 #define QLC_83XX_FLASH_OEM_ERASE_SIG 0xFD03D8
453 #define QLC_83XX_FLASH_OEM_WRITE_SIG 0xFD0101
454 #define QLC_83XX_FLASH_OEM_READ_SIG 0xFD0005
455 #define QLC_83XX_FLASH_ADDR_TEMP_VAL 0x00800000
456 #define QLC_83XX_FLASH_ADDR_SECOND_TEMP_VAL 0x00800001
457 #define QLC_83XX_FLASH_WRDATA_DEF 0x0
458 #define QLC_83XX_FLASH_READ_CTRL 0x3F
459 #define QLC_83XX_FLASH_SPI_CTRL 0x4
460 #define QLC_83XX_FLASH_FIRST_ERASE_MS_VAL 0x2
461 #define QLC_83XX_FLASH_SECOND_ERASE_MS_VAL 0x5
462 #define QLC_83XX_FLASH_LAST_ERASE_MS_VAL 0x3D
463 #define QLC_83XX_FLASH_FIRST_MS_PATTERN 0x43
464 #define QLC_83XX_FLASH_SECOND_MS_PATTERN 0x7F
465 #define QLC_83XX_FLASH_LAST_MS_PATTERN 0x7D
466 #define QLC_83xx_FLASH_MAX_WAIT_USEC 100
467 #define QLC_83XX_FLASH_LOCK_TIMEOUT 10000
469 enum qlc_83xx_mbx_cmd_type
{
470 QLC_83XX_MBX_CMD_WAIT
= 0,
471 QLC_83XX_MBX_CMD_NO_WAIT
,
472 QLC_83XX_MBX_CMD_BUSY_WAIT
,
475 enum qlc_83xx_mbx_response_states
{
476 QLC_83XX_MBX_RESPONSE_WAIT
= 0,
477 QLC_83XX_MBX_RESPONSE_ARRIVED
,
480 #define QLC_83XX_MBX_RESPONSE_FAILED 0x2
481 #define QLC_83XX_MBX_RESPONSE_UNKNOWN 0x3
483 /* Additional registers in 83xx */
484 enum qlc_83xx_ext_regs
{
485 QLCNIC_GLOBAL_RESET
= 0,
488 QLCNIC_HOST_MBX_CTRL
,
490 QLCNIC_BOOTLOADER_ADDR
,
491 QLCNIC_BOOTLOADER_SIZE
,
492 QLCNIC_FW_IMAGE_ADDR
,
493 QLCNIC_MBX_INTR_ENBL
,
496 QLC_83XX_IDC_MAJ_VERSION
,
497 QLC_83XX_IDC_DEV_STATE
,
498 QLC_83XX_IDC_DRV_PRESENCE
,
499 QLC_83XX_IDC_DRV_ACK
,
501 QLC_83XX_IDC_DRV_AUDIT
,
502 QLC_83XX_IDC_MIN_VERSION
,
503 QLC_83XX_RECOVER_DRV_LOCK
,
520 QLC_83XX_IDC_DEV_PARTITION_INFO_1
,
521 QLC_83XX_IDC_DEV_PARTITION_INFO_2
,
522 QLC_83XX_DRV_OP_MODE
,
526 QLC_83XX_DRV_LOCK_ID
,
530 /* Initialize/Stop NIC command bit definitions */
531 #define QLC_REGISTER_LB_IDC BIT_0
532 #define QLC_REGISTER_DCB_AEN BIT_1
533 #define QLC_83XX_MULTI_TENANCY_INFO BIT_29
534 #define QLC_INIT_FW_RESOURCES BIT_31
537 int qlcnic_83xx_get_fw_version(struct qlcnic_adapter
*);
538 int qlcnic_83xx_issue_cmd(struct qlcnic_adapter
*, struct qlcnic_cmd_args
*);
539 int qlcnic_83xx_setup_intr(struct qlcnic_adapter
*);
540 void qlcnic_83xx_get_func_no(struct qlcnic_adapter
*);
541 int qlcnic_83xx_cam_lock(struct qlcnic_adapter
*);
542 void qlcnic_83xx_cam_unlock(struct qlcnic_adapter
*);
543 int qlcnic_send_ctrl_op(struct qlcnic_adapter
*, struct qlcnic_cmd_args
*, u32
);
544 void qlcnic_83xx_add_sysfs(struct qlcnic_adapter
*);
545 void qlcnic_83xx_remove_sysfs(struct qlcnic_adapter
*);
546 void qlcnic_83xx_write_crb(struct qlcnic_adapter
*, char *, loff_t
, size_t);
547 void qlcnic_83xx_read_crb(struct qlcnic_adapter
*, char *, loff_t
, size_t);
548 int qlcnic_83xx_rd_reg_indirect(struct qlcnic_adapter
*, ulong
, int *);
549 int qlcnic_83xx_wrt_reg_indirect(struct qlcnic_adapter
*, ulong
, u32
);
550 int qlcnic_83xx_nic_set_promisc(struct qlcnic_adapter
*, u32
);
551 int qlcnic_83xx_config_hw_lro(struct qlcnic_adapter
*, int);
552 int qlcnic_83xx_config_rss(struct qlcnic_adapter
*, int);
553 void qlcnic_83xx_change_l2_filter(struct qlcnic_adapter
*adapter
, u64
*addr
,
554 u16 vlan
, struct qlcnic_host_tx_ring
*ring
);
555 int qlcnic_83xx_get_pci_info(struct qlcnic_adapter
*, struct qlcnic_pci_info
*);
556 int qlcnic_83xx_set_nic_info(struct qlcnic_adapter
*, struct qlcnic_info
*);
557 void qlcnic_83xx_initialize_nic(struct qlcnic_adapter
*, int);
559 int qlcnic_83xx_napi_add(struct qlcnic_adapter
*, struct net_device
*);
560 void qlcnic_83xx_napi_del(struct qlcnic_adapter
*);
561 void qlcnic_83xx_napi_enable(struct qlcnic_adapter
*);
562 void qlcnic_83xx_napi_disable(struct qlcnic_adapter
*);
563 int qlcnic_83xx_config_led(struct qlcnic_adapter
*, u32
, u32
);
564 int qlcnic_ind_wr(struct qlcnic_adapter
*, u32
, u32
);
565 int qlcnic_ind_rd(struct qlcnic_adapter
*, u32
);
566 int qlcnic_83xx_create_rx_ctx(struct qlcnic_adapter
*);
567 int qlcnic_83xx_create_tx_ctx(struct qlcnic_adapter
*,
568 struct qlcnic_host_tx_ring
*, int);
569 void qlcnic_83xx_del_rx_ctx(struct qlcnic_adapter
*);
570 void qlcnic_83xx_del_tx_ctx(struct qlcnic_adapter
*,
571 struct qlcnic_host_tx_ring
*);
572 int qlcnic_83xx_get_nic_info(struct qlcnic_adapter
*, struct qlcnic_info
*, u8
);
573 int qlcnic_83xx_setup_link_event(struct qlcnic_adapter
*, int);
574 void qlcnic_83xx_process_rcv_ring_diag(struct qlcnic_host_sds_ring
*);
575 int qlcnic_83xx_config_intrpt(struct qlcnic_adapter
*, bool);
576 int qlcnic_83xx_sre_macaddr_change(struct qlcnic_adapter
*, u8
*, u16
, u8
);
577 int qlcnic_83xx_get_mac_address(struct qlcnic_adapter
*, u8
*, u8
);
578 int qlcnic_83xx_alloc_mbx_args(struct qlcnic_cmd_args
*,
579 struct qlcnic_adapter
*, u32
);
580 void qlcnic_free_mbx_args(struct qlcnic_cmd_args
*);
581 void qlcnic_set_npar_data(struct qlcnic_adapter
*, const struct qlcnic_info
*,
582 struct qlcnic_info
*);
583 int qlcnic_83xx_config_intr_coal(struct qlcnic_adapter
*,
584 struct ethtool_coalesce
*);
585 int qlcnic_83xx_set_rx_tx_intr_coal(struct qlcnic_adapter
*);
586 int qlcnic_83xx_get_port_info(struct qlcnic_adapter
*);
587 void qlcnic_83xx_enable_mbx_interrupt(struct qlcnic_adapter
*);
588 void qlcnic_83xx_disable_mbx_intr(struct qlcnic_adapter
*);
589 irqreturn_t
qlcnic_83xx_clear_legacy_intr(struct qlcnic_adapter
*);
590 irqreturn_t
qlcnic_83xx_intr(int, void *);
591 irqreturn_t
qlcnic_83xx_tmp_intr(int, void *);
592 void qlcnic_83xx_check_vf(struct qlcnic_adapter
*,
593 const struct pci_device_id
*);
594 int qlcnic_83xx_config_default_opmode(struct qlcnic_adapter
*);
595 int qlcnic_83xx_setup_mbx_intr(struct qlcnic_adapter
*);
596 void qlcnic_83xx_free_mbx_intr(struct qlcnic_adapter
*);
597 void qlcnic_83xx_register_map(struct qlcnic_hardware_context
*);
598 void qlcnic_83xx_idc_aen_work(struct work_struct
*);
599 void qlcnic_83xx_config_ipaddr(struct qlcnic_adapter
*, __be32
, int);
601 int qlcnic_83xx_erase_flash_sector(struct qlcnic_adapter
*, u32
);
602 int qlcnic_83xx_flash_bulk_write(struct qlcnic_adapter
*, u32
, u32
*, int);
603 int qlcnic_83xx_flash_write32(struct qlcnic_adapter
*, u32
, u32
*);
604 int qlcnic_83xx_lock_flash(struct qlcnic_adapter
*);
605 void qlcnic_83xx_unlock_flash(struct qlcnic_adapter
*);
606 int qlcnic_83xx_save_flash_status(struct qlcnic_adapter
*);
607 int qlcnic_83xx_restore_flash_status(struct qlcnic_adapter
*, int);
608 int qlcnic_83xx_read_flash_mfg_id(struct qlcnic_adapter
*);
609 int qlcnic_83xx_read_flash_descriptor_table(struct qlcnic_adapter
*);
610 int qlcnic_83xx_flash_read32(struct qlcnic_adapter
*, u32
, u8
*, int);
611 int qlcnic_83xx_lockless_flash_read32(struct qlcnic_adapter
*,
613 int qlcnic_83xx_init(struct qlcnic_adapter
*, int);
614 int qlcnic_83xx_idc_ready_state_entry(struct qlcnic_adapter
*);
615 void qlcnic_83xx_idc_poll_dev_state(struct work_struct
*);
616 void qlcnic_83xx_idc_exit(struct qlcnic_adapter
*);
617 void qlcnic_83xx_idc_request_reset(struct qlcnic_adapter
*, u32
);
618 int qlcnic_83xx_lock_driver(struct qlcnic_adapter
*);
619 void qlcnic_83xx_unlock_driver(struct qlcnic_adapter
*);
620 int qlcnic_83xx_set_default_offload_settings(struct qlcnic_adapter
*);
621 int qlcnic_83xx_idc_vnic_pf_entry(struct qlcnic_adapter
*);
622 int qlcnic_83xx_disable_vnic_mode(struct qlcnic_adapter
*, int);
623 int qlcnic_83xx_config_vnic_opmode(struct qlcnic_adapter
*);
624 int qlcnic_83xx_get_vnic_vport_info(struct qlcnic_adapter
*,
625 struct qlcnic_info
*, u8
);
626 int qlcnic_83xx_get_vnic_pf_info(struct qlcnic_adapter
*, struct qlcnic_info
*);
627 int qlcnic_83xx_set_port_eswitch_status(struct qlcnic_adapter
*, int, int *);
629 void qlcnic_83xx_get_minidump_template(struct qlcnic_adapter
*);
630 void qlcnic_83xx_get_stats(struct qlcnic_adapter
*adapter
, u64
*data
);
631 int qlcnic_83xx_extend_md_capab(struct qlcnic_adapter
*);
632 int qlcnic_83xx_get_link_ksettings(struct qlcnic_adapter
*adapter
,
633 struct ethtool_link_ksettings
*ecmd
);
634 int qlcnic_83xx_set_link_ksettings(struct qlcnic_adapter
*adapter
,
635 const struct ethtool_link_ksettings
*ecmd
);
636 void qlcnic_83xx_get_pauseparam(struct qlcnic_adapter
*,
637 struct ethtool_pauseparam
*);
638 int qlcnic_83xx_set_pauseparam(struct qlcnic_adapter
*,
639 struct ethtool_pauseparam
*);
640 int qlcnic_83xx_test_link(struct qlcnic_adapter
*);
641 void qlcnic_83xx_get_port_type(struct qlcnic_adapter
*adapter
);
642 int qlcnic_83xx_reg_test(struct qlcnic_adapter
*);
643 int qlcnic_83xx_get_regs_len(struct qlcnic_adapter
*);
644 int qlcnic_83xx_get_registers(struct qlcnic_adapter
*, u32
*);
645 int qlcnic_83xx_loopback_test(struct net_device
*, u8
);
646 int qlcnic_83xx_interrupt_test(struct net_device
*);
647 int qlcnic_83xx_set_led(struct net_device
*, enum ethtool_phys_id_state
);
648 int qlcnic_83xx_flash_test(struct qlcnic_adapter
*);
649 int qlcnic_83xx_enable_flash_write(struct qlcnic_adapter
*);
650 int qlcnic_83xx_disable_flash_write(struct qlcnic_adapter
*);
651 void qlcnic_83xx_enable_mbx_poll(struct qlcnic_adapter
*);
652 void qlcnic_83xx_disable_mbx_poll(struct qlcnic_adapter
*);
653 int qlcnic_83xx_idc_init(struct qlcnic_adapter
*);
654 int qlcnic_83xx_idc_reattach_driver(struct qlcnic_adapter
*);
655 int qlcnic_83xx_set_vnic_opmode(struct qlcnic_adapter
*);
656 int qlcnic_83xx_check_vnic_state(struct qlcnic_adapter
*);
657 void qlcnic_83xx_aer_stop_poll_work(struct qlcnic_adapter
*);
658 int qlcnic_83xx_aer_reset(struct qlcnic_adapter
*);
659 void qlcnic_83xx_aer_start_poll_work(struct qlcnic_adapter
*);
660 u32
qlcnic_83xx_get_saved_state(void *, u32
);
661 void qlcnic_83xx_set_saved_state(void *, u32
, u32
);
662 void qlcnic_83xx_cache_tmpl_hdr_values(struct qlcnic_fw_dump
*);
663 u32
qlcnic_83xx_get_cap_size(void *, int);
664 void qlcnic_83xx_set_sys_info(void *, int, u32
);
665 void qlcnic_83xx_store_cap_mask(void *, u32
);
666 int qlcnic_ms_mem_write128(struct qlcnic_adapter
*, u64
, u32
*, u32
);