]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/scsi/qla2xxx/qla_gbl.h
Merge remote-tracking branches 'asoc/topic/rockchip', 'asoc/topic/rt5514', 'asoc...
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / qla2xxx / qla_gbl.h
CommitLineData
fa90c54f
AV
1/*
2 * QLogic Fibre Channel HBA Driver
bd21eaf9 3 * Copyright (c) 2003-2014 QLogic Corporation
fa90c54f
AV
4 *
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
1da177e4
LT
7#ifndef __QLA_GBL_H
8#define __QLA_GBL_H
9
10#include <linux/interrupt.h>
11
1da177e4
LT
12/*
13 * Global Function Prototypes in qla_init.c source file.
14 */
15extern int qla2x00_initialize_adapter(scsi_qla_host_t *);
abbd8870
AV
16
17extern int qla2100_pci_config(struct scsi_qla_host *);
18extern int qla2300_pci_config(struct scsi_qla_host *);
0107109e 19extern int qla24xx_pci_config(scsi_qla_host_t *);
c3a2f0df 20extern int qla25xx_pci_config(scsi_qla_host_t *);
abbd8870 21extern void qla2x00_reset_chip(struct scsi_qla_host *);
0107109e 22extern void qla24xx_reset_chip(struct scsi_qla_host *);
abbd8870 23extern int qla2x00_chip_diag(struct scsi_qla_host *);
0107109e 24extern int qla24xx_chip_diag(struct scsi_qla_host *);
abbd8870 25extern void qla2x00_config_rings(struct scsi_qla_host *);
0107109e 26extern void qla24xx_config_rings(struct scsi_qla_host *);
abbd8870 27extern void qla2x00_reset_adapter(struct scsi_qla_host *);
0107109e 28extern void qla24xx_reset_adapter(struct scsi_qla_host *);
abbd8870 29extern int qla2x00_nvram_config(struct scsi_qla_host *);
0107109e 30extern int qla24xx_nvram_config(struct scsi_qla_host *);
3a03eb79 31extern int qla81xx_nvram_config(struct scsi_qla_host *);
abbd8870 32extern void qla2x00_update_fw_options(struct scsi_qla_host *);
0107109e 33extern void qla24xx_update_fw_options(scsi_qla_host_t *);
3a03eb79 34extern void qla81xx_update_fw_options(scsi_qla_host_t *);
abbd8870 35extern int qla2x00_load_risc(struct scsi_qla_host *, uint32_t *);
5433383e 36extern int qla24xx_load_risc(scsi_qla_host_t *, uint32_t *);
eaac30be 37extern int qla81xx_load_risc(scsi_qla_host_t *, uint32_t *);
1da177e4 38
579d12b5 39extern int qla2x00_perform_loop_resync(scsi_qla_host_t *);
1da177e4
LT
40extern int qla2x00_loop_resync(scsi_qla_host_t *);
41
03bcfb57
JC
42extern int qla2x00_find_new_loop_id(scsi_qla_host_t *, fc_port_t *);
43
1da177e4 44extern int qla2x00_fabric_login(scsi_qla_host_t *, fc_port_t *, uint16_t *);
9a52a57c 45extern int qla2x00_local_device_login(scsi_qla_host_t *, fc_port_t *);
6eb54715
HM
46
47extern int qla24xx_els_dcmd_iocb(scsi_qla_host_t *, int, port_id_t);
1da177e4 48
d97994dc 49extern void qla2x00_update_fcports(scsi_qla_host_t *);
1da177e4 50
1da177e4 51extern int qla2x00_abort_isp(scsi_qla_host_t *);
a9083016 52extern void qla2x00_abort_isp_cleanup(scsi_qla_host_t *);
8fcd6b8b 53extern void qla2x00_quiesce_io(scsi_qla_host_t *);
1da177e4 54
052c40c8 55extern void qla2x00_update_fcport(scsi_qla_host_t *, fc_port_t *);
8482e118 56
a7a167bf 57extern void qla2x00_alloc_fw_dump(scsi_qla_host_t *);
18c6c127 58extern void qla2x00_try_to_stop_firmware(scsi_qla_host_t *);
a7a167bf 59
fe52f6e1 60extern int qla2x00_get_thermal_temp(scsi_qla_host_t *, uint16_t *);
794a5691 61
4d4df193
HK
62extern void qla84xx_put_chip(struct scsi_qla_host *);
63
ac280b67
AV
64extern int qla2x00_async_login(struct scsi_qla_host *, fc_port_t *,
65 uint16_t *);
66extern int qla2x00_async_logout(struct scsi_qla_host *, fc_port_t *);
5ff1d584
AV
67extern int qla2x00_async_adisc(struct scsi_qla_host *, fc_port_t *,
68 uint16_t *);
3822263e 69extern int qla2x00_async_tm_cmd(fc_port_t *, uint32_t, uint32_t, uint32_t);
4916392b 70extern void qla2x00_async_login_done(struct scsi_qla_host *, fc_port_t *,
ac280b67 71 uint16_t *);
4916392b 72extern void qla2x00_async_logout_done(struct scsi_qla_host *, fc_port_t *,
ac280b67 73 uint16_t *);
4916392b 74extern void qla2x00_async_adisc_done(struct scsi_qla_host *, fc_port_t *,
5ff1d584 75 uint16_t *);
726b8548
QT
76struct qla_work_evt *qla2x00_alloc_work(struct scsi_qla_host *,
77 enum qla_work_type);
78extern int qla24xx_async_gnl(struct scsi_qla_host *, fc_port_t *);
79int qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e);
d94d10e7 80extern void *qla2x00_alloc_iocbs(struct scsi_qla_host *, srb_t *);
b6a029e1 81extern void *qla2x00_alloc_iocbs_ready(struct scsi_qla_host *, srb_t *);
21090cbe 82extern int qla24xx_update_fcport_fcp_prio(scsi_qla_host_t *, fc_port_t *);
ac280b67 83
9a069e19
GM
84extern fc_port_t *
85qla2x00_alloc_fcport(scsi_qla_host_t *, gfp_t );
7d613ac6
SV
86
87extern int __qla83xx_set_idc_control(scsi_qla_host_t *, uint32_t);
88extern int __qla83xx_get_idc_control(scsi_qla_host_t *, uint32_t *);
89extern void qla83xx_idc_audit(scsi_qla_host_t *, int);
90extern int qla83xx_nic_core_reset(scsi_qla_host_t *);
91extern void qla83xx_reset_ownership(scsi_qla_host_t *);
81178772 92extern int qla2xxx_mctp_dump(scsi_qla_host_t *);
7d613ac6 93
8d93f550
CD
94extern int
95qla2x00_alloc_outstanding_cmds(struct qla_hw_data *, struct req_que *);
8ae6d9c7 96extern int qla2x00_init_rings(scsi_qla_host_t *);
4243c115 97extern uint8_t qla27xx_find_valid_image(struct scsi_qla_host *);
d7459527
MH
98extern struct qla_qpair *qla2xxx_create_qpair(struct scsi_qla_host *,
99 int, int);
100extern int qla2xxx_delete_qpair(struct scsi_qla_host *, struct qla_qpair *);
726b8548
QT
101void qla2x00_fcport_event_handler(scsi_qla_host_t *, struct event_arg *);
102int qla24xx_async_gpdb(struct scsi_qla_host *, fc_port_t *, u8);
103int qla24xx_async_notify_ack(scsi_qla_host_t *, fc_port_t *,
104 struct imm_ntfy_from_isp *, int);
105int qla24xx_post_newsess_work(struct scsi_qla_host *, port_id_t *, u8 *,
106 void *);
107int qla24xx_fcport_handle_login(struct scsi_qla_host *, fc_port_t *);
8d93f550 108
1da177e4
LT
109/*
110 * Global Data in qla_os.c source file.
111 */
112extern char qla2x00_version_str[];
113
d7459527
MH
114extern struct kmem_cache *srb_cachep;
115
1da177e4
LT
116extern int ql2xlogintimeout;
117extern int qlport_down_retry;
1da177e4 118extern int ql2xplogiabsentdevice;
1da177e4 119extern int ql2xloginretrycount;
cca5335c 120extern int ql2xfdmienable;
a7a167bf 121extern int ql2xallocfwdump;
11010fec 122extern int ql2xextended_error_logging;
e5896bd5 123extern int ql2xiidmaenable;
d7459527 124extern int ql2xmqsupport;
e337d907 125extern int ql2xfwloadbin;
ae97c91e 126extern int ql2xetsenable;
a9083016
GM
127extern int ql2xshiftctondsd;
128extern int ql2xdbwr;
3822263e 129extern int ql2xasynctmfenable;
4da26e16 130extern int ql2xgffidenable;
bad75002
AE
131extern int ql2xenabledif;
132extern int ql2xenablehba_err_chk;
f4c496c1 133extern int ql2xtargetreset;
ed0de87c 134extern int ql2xdontresethba;
1abf635d 135extern uint64_t ql2xmaxlun;
08de2844
GM
136extern int ql2xmdcapmask;
137extern int ql2xmdenable;
b0d6cabd 138extern int ql2xexlogins;
2f56a7f1 139extern int ql2xexchoffld;
f198cafa 140extern int ql2xfwholdabts;
41dc529a 141extern int ql2xmvasynctoatio;
2c3dfe3f 142
a4722cf2 143extern int qla2x00_loop_reset(scsi_qla_host_t *);
df4bf0bb 144extern void qla2x00_abort_all_cmds(scsi_qla_host_t *, int);
0971de7f
AV
145extern int qla2x00_post_aen_work(struct scsi_qla_host *, enum
146 fc_host_event_code, u32);
8a659571 147extern int qla2x00_post_idc_ack_work(struct scsi_qla_host *, uint16_t *);
ac280b67
AV
148extern int qla2x00_post_async_login_work(struct scsi_qla_host *, fc_port_t *,
149 uint16_t *);
ac280b67
AV
150extern int qla2x00_post_async_logout_work(struct scsi_qla_host *, fc_port_t *,
151 uint16_t *);
152extern int qla2x00_post_async_logout_done_work(struct scsi_qla_host *,
153 fc_port_t *, uint16_t *);
5ff1d584
AV
154extern int qla2x00_post_async_adisc_work(struct scsi_qla_host *, fc_port_t *,
155 uint16_t *);
156extern int qla2x00_post_async_adisc_done_work(struct scsi_qla_host *,
157 fc_port_t *, uint16_t *);
b0d6cabd
HM
158extern int qla2x00_set_exlogins_buffer(struct scsi_qla_host *);
159extern void qla2x00_free_exlogin_buffer(struct qla_hw_data *);
2f56a7f1
HM
160extern int qla2x00_set_exchoffld_buffer(struct scsi_qla_host *);
161extern void qla2x00_free_exchoffld_buffer(struct qla_hw_data *);
ac280b67 162
6e181be5 163extern int qla81xx_restart_mpi_firmware(scsi_qla_host_t *);
a4722cf2 164
7b867cf7
AC
165extern struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *,
166 struct qla_hw_data *);
167extern void qla2x00_free_host(struct scsi_qla_host *);
168extern void qla2x00_relogin(struct scsi_qla_host *);
ac280b67 169extern void qla2x00_do_work(struct scsi_qla_host *);
8867048b 170extern void qla2x00_free_fcports(struct scsi_qla_host *);
ac280b67 171
7d613ac6
SV
172extern void qla83xx_schedule_work(scsi_qla_host_t *, int);
173extern void qla83xx_service_idc_aen(struct work_struct *);
174extern void qla83xx_nic_core_unrecoverable_work(struct work_struct *);
175extern void qla83xx_idc_state_handler_work(struct work_struct *);
176extern void qla83xx_nic_core_reset_work(struct work_struct *);
177
178extern void qla83xx_idc_lock(scsi_qla_host_t *, uint16_t);
179extern void qla83xx_idc_unlock(scsi_qla_host_t *, uint16_t);
180extern int qla83xx_idc_state_handler(scsi_qla_host_t *);
181extern int qla83xx_set_drv_presence(scsi_qla_host_t *vha);
182extern int __qla83xx_set_drv_presence(scsi_qla_host_t *vha);
183extern int qla83xx_clear_drv_presence(scsi_qla_host_t *vha);
184extern int __qla83xx_clear_drv_presence(scsi_qla_host_t *vha);
8ae6d9c7 185extern int qla2x00_post_uevent_work(struct scsi_qla_host *, u32);
7d613ac6 186
f3ddac19
CD
187extern int qla2x00_post_uevent_work(struct scsi_qla_host *, u32);
188extern void qla2x00_disable_board_on_pci_error(struct work_struct *);
25ff6af1
JC
189extern void qla2x00_sp_compl(void *, int);
190extern void qla2xxx_qpair_sp_free_dma(void *);
191extern void qla2xxx_qpair_sp_compl(void *, int);
726b8548
QT
192extern int qla24xx_post_upd_fcport_work(struct scsi_qla_host *, fc_port_t *);
193void qla2x00_handle_login_done_event(struct scsi_qla_host *, fc_port_t *,
194 uint16_t *);
195int qla24xx_post_gnl_work(struct scsi_qla_host *, fc_port_t *);
15f30a57 196int qla24xx_async_abort_cmd(srb_t *);
f3ddac19 197
2c3dfe3f
SJ
198/*
199 * Global Functions in qla_mid.c source file.
200 */
a5326f86 201extern struct scsi_host_template qla2xxx_driver_template;
2c3dfe3f 202extern struct scsi_transport_template *qla2xxx_transport_vport_template;
2c3dfe3f
SJ
203extern void qla2x00_timer(scsi_qla_host_t *);
204extern void qla2x00_start_timer(scsi_qla_host_t *, void *, unsigned long);
2c3dfe3f
SJ
205extern void qla24xx_deallocate_vp_id(scsi_qla_host_t *);
206extern int qla24xx_disable_vp (scsi_qla_host_t *);
207extern int qla24xx_enable_vp (scsi_qla_host_t *);
2c3dfe3f
SJ
208extern int qla24xx_control_vp(scsi_qla_host_t *, int );
209extern int qla24xx_modify_vp_config(scsi_qla_host_t *);
210extern int qla2x00_send_change_request(scsi_qla_host_t *, uint16_t, uint16_t);
211extern void qla2x00_vp_stop_timer(scsi_qla_host_t *);
212extern int qla24xx_configure_vhba (scsi_qla_host_t *);
2c3dfe3f
SJ
213extern void qla24xx_report_id_acquisition(scsi_qla_host_t *,
214 struct vp_rpt_id_entry_24xx *);
2c3dfe3f
SJ
215extern void qla2x00_do_dpc_all_vps(scsi_qla_host_t *);
216extern int qla24xx_vport_create_req_sanity_check(struct fc_vport *);
217extern scsi_qla_host_t * qla24xx_create_vhost(struct fc_vport *);
1da177e4 218
25ff6af1 219extern void qla2x00_sp_free_dma(void *);
1da177e4
LT
220extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *);
221
d97994dc
AV
222extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int, int);
223extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *, int);
1da177e4 224
5433383e 225extern struct fw_blob *qla2x00_request_firmware(scsi_qla_host_t *);
1da177e4 226
854165f4 227extern int qla2x00_wait_for_hba_online(scsi_qla_host_t *);
2533cf67 228extern int qla2x00_wait_for_chip_reset(scsi_qla_host_t *);
a9083016 229extern int qla2x00_wait_for_fcoe_ctx_reset(scsi_qla_host_t *);
854165f4 230
7b867cf7 231extern void qla2xxx_wake_dpc(struct scsi_qla_host *);
73208dfd
AC
232extern void qla2x00_alert_all_vps(struct rsp_que *, uint16_t *);
233extern void qla2x00_async_event(scsi_qla_host_t *, struct rsp_que *,
234 uint16_t *);
7b867cf7 235extern int qla2x00_vp_abort_isp(scsi_qla_host_t *);
39a11240 236
1da177e4
LT
237/*
238 * Global Function Prototypes in qla_iocb.c source file.
239 */
2d70c103 240
1da177e4
LT
241extern uint16_t qla2x00_calc_iocbs_32(uint16_t);
242extern uint16_t qla2x00_calc_iocbs_64(uint16_t);
243extern void qla2x00_build_scsi_iocbs_32(srb_t *, cmd_entry_t *, uint16_t);
244extern void qla2x00_build_scsi_iocbs_64(srb_t *, cmd_entry_t *, uint16_t);
d7459527
MH
245extern void qla24xx_build_scsi_iocbs(srb_t *, struct cmd_type_7 *,
246 uint16_t, struct req_que *);
1da177e4 247extern int qla2x00_start_scsi(srb_t *sp);
2b6c0cee 248extern int qla24xx_start_scsi(srb_t *sp);
73208dfd 249int qla2x00_marker(struct scsi_qla_host *, struct req_que *, struct rsp_que *,
9cb78c16 250 uint16_t, uint64_t, uint8_t);
ac280b67 251extern int qla2x00_start_sp(srb_t *);
bad75002 252extern int qla24xx_dif_start_scsi(srb_t *);
a9b6f722 253extern int qla2x00_start_bidir(srb_t *, struct scsi_qla_host *, uint32_t);
d7459527 254extern int qla2xxx_dif_start_scsi_mq(srb_t *);
a9b6f722 255extern unsigned long qla2x00_get_async_timeout(struct scsi_qla_host *);
a9083016 256
2d70c103
NB
257extern void *qla2x00_alloc_iocbs(scsi_qla_host_t *, srb_t *);
258extern int qla2x00_issue_marker(scsi_qla_host_t *, int);
f83adb61 259extern int qla24xx_walk_and_build_sglist_no_difb(struct qla_hw_data *, srb_t *,
be25152c 260 uint32_t *, uint16_t, struct qla_tc_param *);
f83adb61 261extern int qla24xx_walk_and_build_sglist(struct qla_hw_data *, srb_t *,
be25152c 262 uint32_t *, uint16_t, struct qla_tc_param *);
f83adb61 263extern int qla24xx_walk_and_build_prot_sglist(struct qla_hw_data *, srb_t *,
be25152c 264 uint32_t *, uint16_t, struct qla_tc_param *);
d7459527
MH
265extern int qla24xx_get_one_block_sg(uint32_t, struct qla2_sgx *, uint32_t *);
266extern int qla24xx_configure_prot_mode(srb_t *, uint16_t *);
267extern int qla24xx_build_scsi_crc_2_iocbs(srb_t *,
268 struct cmd_type_crc_2 *, uint16_t, uint16_t, uint16_t);
1da177e4
LT
269
270/*
271 * Global Function Prototypes in qla_mbx.c source file.
272 */
273extern int
590f98e5 274qla2x00_load_ram(scsi_qla_host_t *, dma_addr_t, uint32_t, uint32_t);
1da177e4 275
338c9161
AV
276extern int
277qla2x00_dump_ram(scsi_qla_host_t *, dma_addr_t, uint32_t, uint32_t);
278
1da177e4 279extern int
1c7c6357 280qla2x00_execute_fw(scsi_qla_host_t *, uint32_t);
1da177e4 281
ca9e9c3e 282extern int
6246b8a1 283qla2x00_get_fw_version(scsi_qla_host_t *);
1da177e4
LT
284
285extern int
286qla2x00_get_fw_options(scsi_qla_host_t *, uint16_t *);
287
288extern int
289qla2x00_set_fw_options(scsi_qla_host_t *, uint16_t *);
290
291extern int
292qla2x00_mbx_reg_test(scsi_qla_host_t *);
293
294extern int
1c7c6357 295qla2x00_verify_checksum(scsi_qla_host_t *, uint32_t);
1da177e4
LT
296
297extern int
298qla2x00_issue_iocb(scsi_qla_host_t *, void *, dma_addr_t, size_t);
299
300extern int
2afa19a9 301qla2x00_abort_command(srb_t *);
1da177e4 302
1da177e4 303extern int
9cb78c16 304qla2x00_abort_target(struct fc_port *, uint64_t, int);
523ec773
AV
305
306extern int
9cb78c16 307qla2x00_lun_reset(struct fc_port *, uint64_t, int);
1da177e4 308
1da177e4
LT
309extern int
310qla2x00_get_adapter_id(scsi_qla_host_t *, uint16_t *, uint8_t *, uint8_t *,
2c3dfe3f 311 uint8_t *, uint16_t *, uint16_t *);
1da177e4
LT
312
313extern int
314qla2x00_get_retry_cnt(scsi_qla_host_t *, uint8_t *, uint8_t *, uint16_t *);
315
316extern int
317qla2x00_init_firmware(scsi_qla_host_t *, uint16_t);
318
319extern int
320qla2x00_get_port_database(scsi_qla_host_t *, fc_port_t *, uint8_t);
321
322extern int
323qla2x00_get_firmware_state(scsi_qla_host_t *, uint16_t *);
324
325extern int
326qla2x00_get_port_name(scsi_qla_host_t *, uint16_t, uint8_t *, uint8_t);
327
61e1b269
JC
328extern int
329qla24xx_link_initialize(scsi_qla_host_t *);
330
1da177e4
LT
331extern int
332qla2x00_lip_reset(scsi_qla_host_t *);
333
334extern int
335qla2x00_send_sns(scsi_qla_host_t *, dma_addr_t, uint16_t, size_t);
336
337extern int
338qla2x00_login_fabric(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t,
339 uint16_t *, uint8_t);
1c7c6357
AV
340extern int
341qla24xx_login_fabric(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t,
342 uint16_t *, uint8_t);
1da177e4
LT
343
344extern int
9a52a57c
AV
345qla2x00_login_local_device(scsi_qla_host_t *, fc_port_t *, uint16_t *,
346 uint8_t);
1da177e4
LT
347
348extern int
1c7c6357
AV
349qla2x00_fabric_logout(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t);
350
351extern int
352qla24xx_fabric_logout(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t);
1da177e4
LT
353
354extern int
355qla2x00_full_login_lip(scsi_qla_host_t *ha);
356
357extern int
358qla2x00_get_id_list(scsi_qla_host_t *, void *, dma_addr_t, uint16_t *);
359
360extern int
03e8c680 361qla2x00_get_resource_cnts(scsi_qla_host_t *);
1da177e4
LT
362
363extern int
364qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map);
365
392e2f65 366extern int
43ef0580
AV
367qla2x00_get_link_status(scsi_qla_host_t *, uint16_t, struct link_statistics *,
368 dma_addr_t);
392e2f65
AV
369
370extern int
43ef0580 371qla24xx_get_isp_stats(scsi_qla_host_t *, struct link_statistics *,
15f30a57 372 dma_addr_t, uint16_t);
392e2f65 373
2afa19a9 374extern int qla24xx_abort_command(srb_t *);
4440e46d 375extern int qla24xx_async_abort_command(srb_t *);
2afa19a9 376extern int
9cb78c16 377qla24xx_abort_target(struct fc_port *, uint64_t, int);
2afa19a9 378extern int
9cb78c16 379qla24xx_lun_reset(struct fc_port *, uint64_t, int);
4d78c973
GM
380extern int
381qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *, unsigned int,
9cb78c16 382 uint64_t, enum nexus_wait_type);
68af0811
AV
383extern int
384qla2x00_system_error(scsi_qla_host_t *);
385
db64e930
JC
386extern int
387qla2x00_write_serdes_word(scsi_qla_host_t *, uint16_t, uint16_t);
388extern int
389qla2x00_read_serdes_word(scsi_qla_host_t *, uint16_t, uint16_t *);
390
e8887c51
JC
391extern int
392qla8044_write_serdes_word(scsi_qla_host_t *, uint32_t, uint32_t);
393extern int
394qla8044_read_serdes_word(scsi_qla_host_t *, uint32_t, uint32_t *);
395
1c7c6357
AV
396extern int
397qla2x00_set_serdes_params(scsi_qla_host_t *, uint16_t, uint16_t, uint16_t);
398
f6ef3b18
AV
399extern int
400qla2x00_stop_firmware(scsi_qla_host_t *);
401
a7a167bf 402extern int
00b6bd25
AV
403qla2x00_enable_eft_trace(scsi_qla_host_t *, dma_addr_t, uint16_t);
404extern int
405qla2x00_disable_eft_trace(scsi_qla_host_t *);
a7a167bf 406
df613b96
AV
407extern int
408qla2x00_enable_fce_trace(scsi_qla_host_t *, dma_addr_t, uint16_t , uint16_t *,
409 uint32_t *);
410
411extern int
412qla2x00_disable_fce_trace(scsi_qla_host_t *, uint64_t *, uint64_t *);
413
c46e65c7
JC
414extern int
415qla82xx_set_driver_version(scsi_qla_host_t *, char *);
416
417extern int
418qla25xx_set_driver_version(scsi_qla_host_t *, char *);
419
88729e53 420extern int
6766df9e
JC
421qla2x00_read_sfp(scsi_qla_host_t *, dma_addr_t, uint8_t *,
422 uint16_t, uint16_t, uint16_t, uint16_t);
88729e53 423
ad0ecd61 424extern int
6766df9e
JC
425qla2x00_write_sfp(scsi_qla_host_t *, dma_addr_t, uint8_t *,
426 uint16_t, uint16_t, uint16_t, uint16_t);
ad0ecd61 427
d8b45213
AV
428extern int
429qla2x00_set_idma_speed(scsi_qla_host_t *, uint16_t, uint16_t, uint16_t *);
430
4d4df193
HK
431extern int qla84xx_verify_chip(struct scsi_qla_host *, uint16_t *);
432
8a659571
AV
433extern int qla81xx_idc_ack(scsi_qla_host_t *, uint16_t *);
434
1d2874de
JC
435extern int
436qla81xx_fac_get_sector_size(scsi_qla_host_t *, uint32_t *);
437
438extern int
439qla81xx_fac_do_write_enable(scsi_qla_host_t *, int);
440
441extern int
442qla81xx_fac_erase_sector(scsi_qla_host_t *, uint32_t, uint32_t);
443
ce0423f4
AV
444extern int
445qla2x00_get_xgmac_stats(scsi_qla_host_t *, dma_addr_t, uint16_t, uint16_t *);
446
11bbc1d8
AV
447extern int
448qla2x00_get_dcbx_params(scsi_qla_host_t *, dma_addr_t, uint16_t);
449
18e7555a
AV
450extern int
451qla2x00_read_ram_word(scsi_qla_host_t *, uint32_t, uint32_t *);
452
453extern int
454qla2x00_write_ram_word(scsi_qla_host_t *, uint32_t, uint32_t);
455
b1d46989
MI
456extern int
457qla81xx_write_mpi_register(scsi_qla_host_t *, uint16_t *);
3064ff39 458extern int qla2x00_get_data_rate(scsi_qla_host_t *);
09ff701a
SR
459extern int qla24xx_set_fcp_prio(scsi_qla_host_t *, uint16_t, uint16_t,
460 uint16_t *);
23f2ebd1
SR
461extern int
462qla81xx_get_port_config(scsi_qla_host_t *, uint16_t *);
463
464extern int
465qla81xx_set_port_config(scsi_qla_host_t *, uint16_t *);
09ff701a 466
af11f64d
AV
467extern int
468qla2x00_port_logout(scsi_qla_host_t *, struct fc_port *);
469
81178772
SK
470extern int
471qla2x00_dump_mctp_data(scsi_qla_host_t *, dma_addr_t, uint32_t, uint32_t);
472
ec891462
JC
473extern int
474qla26xx_dport_diagnostics(scsi_qla_host_t *, void *, uint, uint);
475
15f30a57
QT
476int qla24xx_send_mb_cmd(struct scsi_qla_host *, mbx_cmd_t *);
477int qla24xx_gpdb_wait(struct scsi_qla_host *, fc_port_t *, u8);
478int qla24xx_gidlist_wait(struct scsi_qla_host *, void *, dma_addr_t,
479 uint16_t *);
480int __qla24xx_parse_gpdb(struct scsi_qla_host *, fc_port_t *,
481 struct port_database_24xx *);
482
1da177e4
LT
483/*
484 * Global Function Prototypes in qla_isr.c source file.
485 */
7d12e780
DH
486extern irqreturn_t qla2100_intr_handler(int, void *);
487extern irqreturn_t qla2300_intr_handler(int, void *);
488extern irqreturn_t qla24xx_intr_handler(int, void *);
73208dfd 489extern void qla2x00_process_response_queue(struct rsp_que *);
2afa19a9
AC
490extern void
491qla24xx_process_response_queue(struct scsi_qla_host *, struct rsp_que *);
73208dfd 492extern int qla2x00_request_irqs(struct qla_hw_data *, struct rsp_que *);
a8488abe
AV
493extern void qla2x00_free_irqs(scsi_qla_host_t *);
494
a9083016 495extern int qla2x00_get_data_rate(scsi_qla_host_t *);
d0297c9a 496extern const char *qla2x00_get_link_speed_str(struct qla_hw_data *, uint16_t);
8ae6d9c7
GM
497extern srb_t *
498qla2x00_get_sp_from_handle(scsi_qla_host_t *, const char *, struct req_que *,
499 void *);
500extern void
501qla2x00_process_completed_request(struct scsi_qla_host *, struct req_que *,
502 uint32_t);
d7459527
MH
503extern irqreturn_t
504qla2xxx_msix_rsp_q(int irq, void *dev_id);
726b8548
QT
505fc_port_t *qla2x00_find_fcport_by_loopid(scsi_qla_host_t *, uint16_t);
506fc_port_t *qla2x00_find_fcport_by_wwpn(scsi_qla_host_t *, u8 *, u8);
507fc_port_t *qla2x00_find_fcport_by_nportid(scsi_qla_host_t *, port_id_t *, u8);
daae62a3 508
1da177e4
LT
509/*
510 * Global Function Prototypes in qla_sup.c source file.
511 */
1da177e4 512extern void qla2x00_release_nvram_protection(scsi_qla_host_t *);
459c5378 513extern uint32_t *qla24xx_read_flash_data(scsi_qla_host_t *, uint32_t *,
7ec0effd 514 uint32_t, uint32_t);
459c5378 515extern uint8_t *qla2x00_read_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t,
7ec0effd 516 uint32_t);
459c5378 517extern uint8_t *qla24xx_read_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t,
7ec0effd 518 uint32_t);
459c5378 519extern int qla2x00_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t,
7ec0effd 520 uint32_t);
459c5378 521extern int qla24xx_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t,
7ec0effd 522 uint32_t);
c3a2f0df 523extern uint8_t *qla25xx_read_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t,
7ec0effd 524 uint32_t);
c3a2f0df 525extern int qla25xx_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t,
7ec0effd 526 uint32_t);
bb4cf5b7 527extern int qla2x00_is_a_vp_did(scsi_qla_host_t *, uint32_t);
c821e0d5
JL
528bool qla2x00_check_reg32_for_disconnect(scsi_qla_host_t *, uint32_t);
529bool qla2x00_check_reg16_for_disconnect(scsi_qla_host_t *, uint16_t);
459c5378 530
f6df144c
AV
531extern int qla2x00_beacon_on(struct scsi_qla_host *);
532extern int qla2x00_beacon_off(struct scsi_qla_host *);
533extern void qla2x00_beacon_blink(struct scsi_qla_host *);
534extern int qla24xx_beacon_on(struct scsi_qla_host *);
535extern int qla24xx_beacon_off(struct scsi_qla_host *);
536extern void qla24xx_beacon_blink(struct scsi_qla_host *);
6246b8a1 537extern void qla83xx_beacon_blink(struct scsi_qla_host *);
999916dc
SK
538extern int qla82xx_beacon_on(struct scsi_qla_host *);
539extern int qla82xx_beacon_off(struct scsi_qla_host *);
7d613ac6
SV
540extern int qla83xx_wr_reg(scsi_qla_host_t *, uint32_t, uint32_t);
541extern int qla83xx_rd_reg(scsi_qla_host_t *, uint32_t, uint32_t *);
542extern int qla83xx_restart_nic_firmware(scsi_qla_host_t *);
543extern int qla83xx_access_control(scsi_qla_host_t *, uint16_t, uint32_t,
7ec0effd 544 uint32_t, uint16_t *);
f6df144c 545
854165f4 546extern uint8_t *qla2x00_read_optrom_data(struct scsi_qla_host *, uint8_t *,
7ec0effd 547 uint32_t, uint32_t);
854165f4 548extern int qla2x00_write_optrom_data(struct scsi_qla_host *, uint8_t *,
7ec0effd 549 uint32_t, uint32_t);
854165f4 550extern uint8_t *qla24xx_read_optrom_data(struct scsi_qla_host *, uint8_t *,
7ec0effd 551 uint32_t, uint32_t);
854165f4 552extern int qla24xx_write_optrom_data(struct scsi_qla_host *, uint8_t *,
7ec0effd 553 uint32_t, uint32_t);
338c9161 554extern uint8_t *qla25xx_read_optrom_data(struct scsi_qla_host *, uint8_t *,
7ec0effd
AD
555 uint32_t, uint32_t);
556extern uint8_t *qla8044_read_optrom_data(struct scsi_qla_host *,
557 uint8_t *, uint32_t, uint32_t);
558extern void qla8044_watchdog(struct scsi_qla_host *vha);
854165f4 559
30c47662
AV
560extern int qla2x00_get_flash_version(scsi_qla_host_t *, void *);
561extern int qla24xx_get_flash_version(scsi_qla_host_t *, void *);
7ec0effd 562extern int qla82xx_get_flash_version(scsi_qla_host_t *, void *);
30c47662 563
c00d8994 564extern int qla2xxx_get_flash_info(scsi_qla_host_t *);
1ee27146 565extern int qla2xxx_get_vpd_field(scsi_qla_host_t *, char *, char *, size_t);
7d232c74 566
272976ca 567extern void qla2xxx_flash_npiv_conf(scsi_qla_host_t *);
09ff701a 568extern int qla24xx_read_fcp_prio_cfg(scsi_qla_host_t *);
272976ca 569
1da177e4
LT
570/*
571 * Global Function Prototypes in qla_dbg.c source file.
572 */
573extern void qla2100_fw_dump(scsi_qla_host_t *, int);
574extern void qla2300_fw_dump(scsi_qla_host_t *, int);
6d9b61ed 575extern void qla24xx_fw_dump(scsi_qla_host_t *, int);
c3a2f0df 576extern void qla25xx_fw_dump(scsi_qla_host_t *, int);
3a03eb79 577extern void qla81xx_fw_dump(scsi_qla_host_t *, int);
a1b23c5a
CD
578extern void qla82xx_fw_dump(scsi_qla_host_t *, int);
579extern void qla8044_fw_dump(scsi_qla_host_t *, int);
f73cb695
CD
580
581extern void qla27xx_fwdump(scsi_qla_host_t *, int);
582extern ulong qla27xx_fwdt_calculate_dump_size(struct scsi_qla_host *);
583extern int qla27xx_fwdt_template_valid(void *);
584extern ulong qla27xx_fwdt_template_size(void *);
585extern const void *qla27xx_fwdt_template_default(void);
586extern ulong qla27xx_fwdt_template_default_size(void);
587
1da177e4
LT
588extern void qla2x00_dump_regs(scsi_qla_host_t *);
589extern void qla2x00_dump_buffer(uint8_t *, uint32_t);
bad75002 590extern void qla2x00_dump_buffer_zipped(uint8_t *, uint32_t);
3ce8866c
SK
591extern void ql_dump_regs(uint32_t, scsi_qla_host_t *, int32_t);
592extern void ql_dump_buffer(uint32_t, scsi_qla_host_t *, int32_t,
7ec0effd 593 uint8_t *, uint32_t);
08de2844 594extern void qla2xxx_dump_post_process(scsi_qla_host_t *, int);
1da177e4
LT
595
596/*
597 * Global Function Prototypes in qla_gs.c source file.
598 */
726b8548
QT
599extern void *qla2x00_prep_ms_iocb(scsi_qla_host_t *, struct ct_arg *);
600extern void *qla24xx_prep_ms_iocb(scsi_qla_host_t *, struct ct_arg *);
1da177e4
LT
601extern int qla2x00_ga_nxt(scsi_qla_host_t *, fc_port_t *);
602extern int qla2x00_gid_pt(scsi_qla_host_t *, sw_info_t *);
603extern int qla2x00_gpn_id(scsi_qla_host_t *, sw_info_t *);
604extern int qla2x00_gnn_id(scsi_qla_host_t *, sw_info_t *);
e8c72ba5 605extern void qla2x00_gff_id(scsi_qla_host_t *, sw_info_t *);
1da177e4
LT
606extern int qla2x00_rft_id(scsi_qla_host_t *);
607extern int qla2x00_rff_id(scsi_qla_host_t *);
608extern int qla2x00_rnn_id(scsi_qla_host_t *);
609extern int qla2x00_rsnn_nn(scsi_qla_host_t *);
cca5335c
AV
610extern void *qla2x00_prep_ms_fdmi_iocb(scsi_qla_host_t *, uint32_t, uint32_t);
611extern void *qla24xx_prep_ms_fdmi_iocb(scsi_qla_host_t *, uint32_t, uint32_t);
612extern int qla2x00_fdmi_register(scsi_qla_host_t *);
d8b45213
AV
613extern int qla2x00_gfpn_id(scsi_qla_host_t *, sw_info_t *);
614extern int qla2x00_gpsc(scsi_qla_host_t *, sw_info_t *);
df57caba 615extern void qla2x00_get_sym_node_name(scsi_qla_host_t *, uint8_t *, size_t);
726b8548
QT
616extern int qla2x00_chk_ms_status(scsi_qla_host_t *, ms_iocb_entry_t *,
617 struct ct_sns_rsp *, const char *);
618extern void qla2x00_async_iocb_timeout(void *data);
619extern int qla24xx_async_gidpn(scsi_qla_host_t *, fc_port_t *);
620int qla24xx_post_gidpn_work(struct scsi_qla_host *, fc_port_t *);
621void qla24xx_handle_gidpn_event(scsi_qla_host_t *, struct event_arg *);
622
623extern void qla2x00_free_fcport(fc_port_t *);
624
625extern int qla24xx_post_gpnid_work(struct scsi_qla_host *, port_id_t *);
626extern int qla24xx_async_gpnid(scsi_qla_host_t *, port_id_t *);
627void qla24xx_async_gpnid_done(scsi_qla_host_t *, srb_t*);
628void qla24xx_handle_gpnid_event(scsi_qla_host_t *, struct event_arg *);
629
630int qla24xx_post_gpsc_work(struct scsi_qla_host *, fc_port_t *);
631int qla24xx_async_gpsc(scsi_qla_host_t *, fc_port_t *);
632int qla2x00_mgmt_svr_login(scsi_qla_host_t *);
1da177e4 633
8482e118
AV
634/*
635 * Global Function Prototypes in qla_attr.c source file.
636 */
ee959b00
TJ
637struct device_attribute;
638extern struct device_attribute *qla2x00_host_attrs[];
1c97a12a
AV
639struct fc_function_template;
640extern struct fc_function_template qla2xxx_transport_functions;
2c3dfe3f 641extern struct fc_function_template qla2xxx_transport_vport_functions;
8482e118 642extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *);
fe1b806f 643extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *, bool);
8482e118
AV
644extern void qla2x00_init_host_attr(scsi_qla_host_t *);
645extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *);
9a069e19 646extern int qla2x00_loopback_test(scsi_qla_host_t *, struct msg_echo_lb *, uint16_t *);
09ff701a
SR
647extern int qla2x00_echo_test(scsi_qla_host_t *,
648 struct msg_echo_lb *, uint16_t *);
649extern int qla24xx_update_all_fcp_prio(scsi_qla_host_t *);
7c3df132
SK
650extern int qla24xx_fcp_prio_cfg_valid(scsi_qla_host_t *,
651 struct qla_fcp_prio_cfg *, uint8_t);
df613b96
AV
652
653/*
654 * Global Function Prototypes in qla_dfs.c source file.
655 */
656extern int qla2x00_dfs_setup(scsi_qla_host_t *);
657extern int qla2x00_dfs_remove(scsi_qla_host_t *);
73208dfd
AC
658
659/* Globa function prototypes for multi-q */
d7459527
MH
660extern int qla25xx_request_irq(struct qla_hw_data *, struct qla_qpair *,
661 struct qla_msix_entry *, int);
618a7523
AC
662extern int qla25xx_init_req_que(struct scsi_qla_host *, struct req_que *);
663extern int qla25xx_init_rsp_que(struct scsi_qla_host *, struct rsp_que *);
73208dfd 664extern int qla25xx_create_req_que(struct qla_hw_data *, uint16_t, uint8_t,
2afa19a9 665 uint16_t, int, uint8_t);
73208dfd 666extern int qla25xx_create_rsp_que(struct qla_hw_data *, uint16_t, uint8_t,
d7459527
MH
667 uint16_t, struct qla_qpair *);
668
73208dfd
AC
669extern void qla2x00_init_response_q_entries(struct rsp_que *);
670extern int qla25xx_delete_req_que(struct scsi_qla_host *, struct req_que *);
d7459527 671extern int qla25xx_delete_rsp_que(struct scsi_qla_host *, struct rsp_que *);
2afa19a9 672extern int qla25xx_delete_queues(struct scsi_qla_host *);
17d98630
AC
673extern uint16_t qla24xx_rd_req_reg(struct qla_hw_data *, uint16_t);
674extern uint16_t qla25xx_rd_req_reg(struct qla_hw_data *, uint16_t);
675extern void qla24xx_wrt_req_reg(struct qla_hw_data *, uint16_t, uint16_t);
676extern void qla25xx_wrt_req_reg(struct qla_hw_data *, uint16_t, uint16_t);
677extern void qla25xx_wrt_rsp_reg(struct qla_hw_data *, uint16_t, uint16_t);
678extern void qla24xx_wrt_rsp_reg(struct qla_hw_data *, uint16_t, uint16_t);
2afa19a9 679
8ae6d9c7
GM
680/* qlafx00 related functions */
681extern int qlafx00_pci_config(struct scsi_qla_host *);
682extern int qlafx00_initialize_adapter(struct scsi_qla_host *);
683extern void qlafx00_soft_reset(scsi_qla_host_t *);
684extern int qlafx00_chip_diag(scsi_qla_host_t *);
685extern void qlafx00_config_rings(struct scsi_qla_host *);
686extern char *qlafx00_pci_info_str(struct scsi_qla_host *, char *);
df57caba 687extern char *qlafx00_fw_version_str(struct scsi_qla_host *, char *, size_t);
8ae6d9c7
GM
688extern irqreturn_t qlafx00_intr_handler(int, void *);
689extern void qlafx00_enable_intrs(struct qla_hw_data *);
690extern void qlafx00_disable_intrs(struct qla_hw_data *);
9cb78c16
HR
691extern int qlafx00_abort_target(fc_port_t *, uint64_t, int);
692extern int qlafx00_lun_reset(fc_port_t *, uint64_t, int);
8ae6d9c7
GM
693extern int qlafx00_start_scsi(srb_t *);
694extern int qlafx00_abort_isp(scsi_qla_host_t *);
695extern int qlafx00_iospace_config(struct qla_hw_data *);
696extern int qlafx00_init_firmware(scsi_qla_host_t *, uint16_t);
42479343 697extern int qlafx00_driver_shutdown(scsi_qla_host_t *, int);
8ae6d9c7
GM
698extern int qlafx00_fw_ready(scsi_qla_host_t *);
699extern int qlafx00_configure_devices(scsi_qla_host_t *);
700extern int qlafx00_reset_initialize(scsi_qla_host_t *);
1f8deefe 701extern int qlafx00_fx_disc(scsi_qla_host_t *, fc_port_t *, uint16_t);
8ae6d9c7
GM
702extern int qlafx00_process_aen(struct scsi_qla_host *, struct qla_work_evt *);
703extern int qlafx00_post_aenfx_work(struct scsi_qla_host *, uint32_t,
704 uint32_t *, int);
705extern uint32_t qlafx00_fw_state_show(struct device *,
706 struct device_attribute *, char *);
707extern void qlafx00_get_host_speed(struct Scsi_Host *);
708extern void qlafx00_init_response_q_entries(struct rsp_que *);
709
710extern void qlafx00_tm_iocb(srb_t *, struct tsk_mgmt_entry_fx00 *);
711extern void qlafx00_abort_iocb(srb_t *, struct abort_iocb_entry_fx00 *);
712extern void qlafx00_fxdisc_iocb(srb_t *, struct fxdisc_entry_fx00 *);
713extern void qlafx00_timer_routine(scsi_qla_host_t *);
714extern int qlafx00_rescan_isp(scsi_qla_host_t *);
5854771e 715extern int qlafx00_loop_reset(scsi_qla_host_t *vha);
8ae6d9c7 716
a9083016
GM
717/* qla82xx related functions */
718
719/* PCI related functions */
720extern int qla82xx_pci_config(struct scsi_qla_host *);
721extern int qla82xx_pci_mem_read_2M(struct qla_hw_data *, u64, void *, int);
a9083016 722extern int qla82xx_pci_region_offset(struct pci_dev *, int);
a9083016
GM
723extern int qla82xx_iospace_config(struct qla_hw_data *);
724
725/* Initialization related functions */
726extern void qla82xx_reset_chip(struct scsi_qla_host *);
727extern void qla82xx_config_rings(struct scsi_qla_host *);
a9083016 728extern void qla82xx_watchdog(scsi_qla_host_t *);
a5b36321 729extern int qla82xx_start_firmware(scsi_qla_host_t *);
a9083016
GM
730
731/* Firmware and flash related functions */
732extern int qla82xx_load_risc(scsi_qla_host_t *, uint32_t *);
733extern uint8_t *qla82xx_read_optrom_data(struct scsi_qla_host *, uint8_t *,
7ec0effd 734 uint32_t, uint32_t);
a9083016 735extern int qla82xx_write_optrom_data(struct scsi_qla_host *, uint8_t *,
7ec0effd 736 uint32_t, uint32_t);
a9083016
GM
737
738/* Mailbox related functions */
739extern int qla82xx_abort_isp(scsi_qla_host_t *);
740extern int qla82xx_restart_isp(scsi_qla_host_t *);
741
742/* IOCB related functions */
743extern int qla82xx_start_scsi(srb_t *);
25ff6af1 744extern void qla2x00_sp_free(void *);
9ba56b95 745extern void qla2x00_sp_timeout(unsigned long);
25ff6af1
JC
746extern void qla2x00_bsg_job_done(void *, int);
747extern void qla2x00_bsg_sp_free(void *);
2d70c103 748extern void qla2x00_start_iocbs(struct scsi_qla_host *, struct req_que *);
a9083016
GM
749
750/* Interrupt related */
751extern irqreturn_t qla82xx_intr_handler(int, void *);
752extern irqreturn_t qla82xx_msi_handler(int, void *);
753extern irqreturn_t qla82xx_msix_default(int, void *);
754extern irqreturn_t qla82xx_msix_rsp_q(int, void *);
755extern void qla82xx_enable_intrs(struct qla_hw_data *);
756extern void qla82xx_disable_intrs(struct qla_hw_data *);
a9083016
GM
757extern void qla82xx_poll(int, void *);
758extern void qla82xx_init_flags(struct qla_hw_data *);
759
760/* ISP 8021 hardware related */
a5b36321 761extern void qla82xx_set_drv_active(scsi_qla_host_t *);
a9083016
GM
762extern int qla82xx_wr_32(struct qla_hw_data *, ulong, u32);
763extern int qla82xx_rd_32(struct qla_hw_data *, ulong);
764extern int qla82xx_rdmem(struct qla_hw_data *, u64, void *, int);
765extern int qla82xx_wrmem(struct qla_hw_data *, u64, void *, int);
a9083016
GM
766
767/* ISP 8021 IDC */
768extern void qla82xx_clear_drv_active(struct qla_hw_data *);
579d12b5 769extern uint32_t qla82xx_wait_for_state_change(scsi_qla_host_t *, uint32_t);
a9083016
GM
770extern int qla82xx_idc_lock(struct qla_hw_data *);
771extern void qla82xx_idc_unlock(struct qla_hw_data *);
772extern int qla82xx_device_state_handler(scsi_qla_host_t *);
7d613ac6 773extern void qla8xxx_dev_failed_handler(scsi_qla_host_t *);
579d12b5 774extern void qla82xx_clear_qsnt_ready(scsi_qla_host_t *);
a9083016
GM
775
776extern void qla2x00_set_model_info(scsi_qla_host_t *, uint8_t *,
7ec0effd 777 size_t, char *);
a9083016
GM
778extern int qla82xx_mbx_intr_enable(scsi_qla_host_t *);
779extern int qla82xx_mbx_intr_disable(scsi_qla_host_t *);
5162cf0c 780extern void qla82xx_start_iocbs(scsi_qla_host_t *);
a9083016 781extern int qla82xx_fcoe_ctx_reset(scsi_qla_host_t *);
3173167f 782extern int qla82xx_check_md_needed(scsi_qla_host_t *);
7190575f 783extern void qla82xx_chip_reset_cleanup(scsi_qla_host_t *);
6246b8a1
GM
784extern int qla81xx_set_led_config(scsi_qla_host_t *, uint16_t *);
785extern int qla81xx_get_led_config(scsi_qla_host_t *, uint16_t *);
999916dc 786extern int qla82xx_mbx_beacon_ctl(scsi_qla_host_t *, int);
08de2844 787extern char *qdev_state(uint32_t);
c8f6544e 788extern void qla82xx_clear_pending_mbx(scsi_qla_host_t *);
1ae47cf3
JC
789extern int qla82xx_read_temperature(scsi_qla_host_t *);
790extern int qla8044_read_temperature(scsi_qla_host_t *);
a9083016 791
6e98016c 792/* BSG related functions */
75cc8cfc
JT
793extern int qla24xx_bsg_request(struct bsg_job *);
794extern int qla24xx_bsg_timeout(struct bsg_job *);
6e98016c
GM
795extern int qla84xx_reset_chip(scsi_qla_host_t *, uint16_t);
796extern int qla2x00_issue_iocb_timeout(scsi_qla_host_t *, void *,
797 dma_addr_t, size_t, uint32_t);
798extern int qla2x00_get_idma_speed(scsi_qla_host_t *, uint16_t,
799 uint16_t *, uint16_t *);
08de2844 800
6246b8a1
GM
801/* 83xx related functions */
802extern void qla83xx_fw_dump(scsi_qla_host_t *, int);
803
08de2844
GM
804/* Minidump related functions */
805extern int qla82xx_md_get_template_size(scsi_qla_host_t *);
806extern int qla82xx_md_get_template(scsi_qla_host_t *);
807extern int qla82xx_md_alloc(scsi_qla_host_t *);
808extern void qla82xx_md_free(scsi_qla_host_t *);
809extern int qla82xx_md_collect(scsi_qla_host_t *);
810extern void qla82xx_md_prep(scsi_qla_host_t *);
811extern void qla82xx_set_reset_owner(scsi_qla_host_t *);
7ec0effd
AD
812extern int qla82xx_validate_template_chksum(scsi_qla_host_t *vha);
813
814/* Function declarations for ISP8044 */
815extern int qla8044_idc_lock(struct qla_hw_data *ha);
816extern void qla8044_idc_unlock(struct qla_hw_data *ha);
817extern uint32_t qla8044_rd_reg(struct qla_hw_data *ha, ulong addr);
818extern void qla8044_wr_reg(struct qla_hw_data *ha, ulong addr, uint32_t val);
819extern void qla8044_read_reset_template(struct scsi_qla_host *ha);
820extern void qla8044_set_idc_dontreset(struct scsi_qla_host *ha);
821extern int qla8044_rd_direct(struct scsi_qla_host *vha, const uint32_t crb_reg);
822extern void qla8044_wr_direct(struct scsi_qla_host *vha,
823 const uint32_t crb_reg, const uint32_t value);
7ec0effd
AD
824extern int qla8044_device_state_handler(struct scsi_qla_host *vha);
825extern void qla8044_clear_qsnt_ready(struct scsi_qla_host *vha);
c41afc9a 826extern void qla8044_clear_drv_active(struct qla_hw_data *);
7ec0effd
AD
827void qla8044_get_minidump(struct scsi_qla_host *vha);
828int qla8044_collect_md_data(struct scsi_qla_host *vha);
829extern int qla8044_md_get_template(scsi_qla_host_t *);
830extern int qla8044_write_optrom_data(struct scsi_qla_host *, uint8_t *,
831 uint32_t, uint32_t);
832extern irqreturn_t qla8044_intr_handler(int, void *);
833extern void qla82xx_mbx_completion(scsi_qla_host_t *, uint16_t);
834extern int qla8044_abort_isp(scsi_qla_host_t *);
835extern int qla8044_check_fw_alive(struct scsi_qla_host *);
08de2844 836
c0cb4496 837extern void qlt_host_reset_handler(struct qla_hw_data *ha);
b0d6cabd
HM
838extern int qla_get_exlogin_status(scsi_qla_host_t *, uint16_t *,
839 uint16_t *);
840extern int qla_set_exlogin_mem_cfg(scsi_qla_host_t *vha, dma_addr_t phys_addr);
2f56a7f1
HM
841extern int qla_get_exchoffld_status(scsi_qla_host_t *, uint16_t *, uint16_t *);
842extern int qla_set_exchoffld_mem_cfg(scsi_qla_host_t *, dma_addr_t);
2f424b9b 843extern void qlt_handle_abts_recv(struct scsi_qla_host *, response_t *);
b0d6cabd 844
726b8548
QT
845int qla24xx_async_notify_ack(scsi_qla_host_t *, fc_port_t *,
846 struct imm_ntfy_from_isp *, int);
847void qla24xx_do_nack_work(struct scsi_qla_host *, struct qla_work_evt *);
848void qlt_plogi_ack_link(struct scsi_qla_host *, struct qlt_plogi_ack_t *,
849 struct fc_port *, enum qlt_plogi_link_t);
850void qlt_plogi_ack_unref(struct scsi_qla_host *, struct qlt_plogi_ack_t *);
851extern void qlt_schedule_sess_for_deletion(struct fc_port *, bool);
852extern void qlt_schedule_sess_for_deletion_lock(struct fc_port *);
853extern struct fc_port *qlt_find_sess_invalidate_other(scsi_qla_host_t *,
854 uint64_t wwn, port_id_t port_id, uint16_t loop_id, struct fc_port **);
855void qla24xx_delete_sess_fn(struct work_struct *);
41dc529a 856void qlt_unknown_atio_work_fn(struct work_struct *);
482c9dc7
QT
857void qlt_update_host_map(struct scsi_qla_host *, port_id_t);
858void qlt_remove_target_resources(struct qla_hw_data *);
726b8548 859
1da177e4 860#endif /* _QLA_GBL_H */