[SCSI] qla2xxx: Generalize SNS generic-services routines.
[linux-2.6-block.git] / drivers / scsi / qla2xxx / qla_gbl.h
CommitLineData
1da177e4
LT
1/********************************************************************************
2* QLOGIC LINUX SOFTWARE
3*
4* QLogic ISP2x00 device driver for Linux 2.6.x
5* Copyright (C) 2003-2004 QLogic Corporation
6* (www.qlogic.com)
7*
8* This program is free software; you can redistribute it and/or modify it
9* under the terms of the GNU General Public License as published by the
10* Free Software Foundation; either version 2, or (at your option) any
11* later version.
12*
13* This program is distributed in the hope that it will be useful, but
14* WITHOUT ANY WARRANTY; without even the implied warranty of
15* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16* General Public License for more details.
17*
18******************************************************************************
19* Global include file.
20******************************************************************************/
21
22
23#ifndef __QLA_GBL_H
24#define __QLA_GBL_H
25
26#include <linux/interrupt.h>
27
28extern void qla2x00_remove_one(struct pci_dev *);
29extern int qla2x00_probe_one(struct pci_dev *, struct qla_board_info *);
30
31/*
32 * Global Function Prototypes in qla_init.c source file.
33 */
34extern int qla2x00_initialize_adapter(scsi_qla_host_t *);
abbd8870
AV
35
36extern int qla2100_pci_config(struct scsi_qla_host *);
37extern int qla2300_pci_config(struct scsi_qla_host *);
38extern void qla2x00_reset_chip(struct scsi_qla_host *);
39extern int qla2x00_chip_diag(struct scsi_qla_host *);
40extern void qla2x00_config_rings(struct scsi_qla_host *);
41extern void qla2x00_reset_adapter(struct scsi_qla_host *);
42extern int qla2x00_nvram_config(struct scsi_qla_host *);
43extern void qla2x00_update_fw_options(struct scsi_qla_host *);
44extern int qla2x00_load_risc(struct scsi_qla_host *, uint32_t *);
45
1da177e4
LT
46extern fc_port_t *qla2x00_alloc_fcport(scsi_qla_host_t *, int);
47
48extern int qla2x00_loop_resync(scsi_qla_host_t *);
49
50extern int qla2x00_find_new_loop_id(scsi_qla_host_t *, fc_port_t *);
51extern int qla2x00_fabric_login(scsi_qla_host_t *, fc_port_t *, uint16_t *);
52extern int qla2x00_local_device_login(scsi_qla_host_t *, uint16_t);
53
54extern void qla2x00_restart_queues(scsi_qla_host_t *, uint8_t);
55
56extern void qla2x00_rescan_fcports(scsi_qla_host_t *);
57
1da177e4
LT
58extern int qla2x00_abort_isp(scsi_qla_host_t *);
59
8482e118 60extern void qla2x00_reg_remote_port(scsi_qla_host_t *, fc_port_t *);
61
1da177e4
LT
62/*
63 * Global Data in qla_os.c source file.
64 */
65extern char qla2x00_version_str[];
66
1da177e4
LT
67extern int ql2xlogintimeout;
68extern int qlport_down_retry;
1da177e4
LT
69extern int ql2xplogiabsentdevice;
70extern int ql2xenablezio;
71extern int ql2xintrdelaytimer;
72extern int ql2xloginretrycount;
73
f4f051eb 74extern void qla2x00_sp_compl(scsi_qla_host_t *, srb_t *);
1da177e4
LT
75
76extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *);
77
78extern void qla2x00_cmd_timeout(srb_t *);
79
1da177e4
LT
80extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int);
81extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *);
82
1da177e4
LT
83extern void qla2x00_blink_led(scsi_qla_host_t *);
84
85extern int qla2x00_down_timeout(struct semaphore *, unsigned long);
86
87/*
88 * Global Function Prototypes in qla_iocb.c source file.
89 */
90extern void qla2x00_isp_cmd(scsi_qla_host_t *);
91
92extern uint16_t qla2x00_calc_iocbs_32(uint16_t);
93extern uint16_t qla2x00_calc_iocbs_64(uint16_t);
94extern void qla2x00_build_scsi_iocbs_32(srb_t *, cmd_entry_t *, uint16_t);
95extern void qla2x00_build_scsi_iocbs_64(srb_t *, cmd_entry_t *, uint16_t);
96extern int qla2x00_start_scsi(srb_t *sp);
97int qla2x00_marker(scsi_qla_host_t *, uint16_t, uint16_t, uint8_t);
98int __qla2x00_marker(scsi_qla_host_t *, uint16_t, uint16_t, uint8_t);
99
100/*
101 * Global Function Prototypes in qla_mbx.c source file.
102 */
103extern int
104qla2x00_load_ram(scsi_qla_host_t *, dma_addr_t, uint16_t, uint16_t);
105
106extern int
107qla2x00_load_ram_ext(scsi_qla_host_t *, dma_addr_t, uint32_t, uint16_t);
108
109extern int
110qla2x00_execute_fw(scsi_qla_host_t *);
111
112extern void
113qla2x00_get_fw_version(scsi_qla_host_t *, uint16_t *,
114 uint16_t *, uint16_t *, uint16_t *, uint32_t *);
115
116extern int
117qla2x00_get_fw_options(scsi_qla_host_t *, uint16_t *);
118
119extern int
120qla2x00_set_fw_options(scsi_qla_host_t *, uint16_t *);
121
122extern int
123qla2x00_mbx_reg_test(scsi_qla_host_t *);
124
125extern int
126qla2x00_verify_checksum(scsi_qla_host_t *);
127
128extern int
129qla2x00_issue_iocb(scsi_qla_host_t *, void *, dma_addr_t, size_t);
130
131extern int
132qla2x00_abort_command(scsi_qla_host_t *, srb_t *);
133
134#if USE_ABORT_TGT
135extern int
136qla2x00_abort_target(fc_port_t *fcport);
137#endif
138
139extern int
bdf79621 140qla2x00_target_reset(scsi_qla_host_t *, struct fc_port *);
1da177e4
LT
141
142extern int
143qla2x00_get_adapter_id(scsi_qla_host_t *, uint16_t *, uint8_t *, uint8_t *,
144 uint8_t *, uint16_t *);
145
146extern int
147qla2x00_get_retry_cnt(scsi_qla_host_t *, uint8_t *, uint8_t *, uint16_t *);
148
149extern int
150qla2x00_init_firmware(scsi_qla_host_t *, uint16_t);
151
152extern int
153qla2x00_get_port_database(scsi_qla_host_t *, fc_port_t *, uint8_t);
154
155extern int
156qla2x00_get_firmware_state(scsi_qla_host_t *, uint16_t *);
157
158extern int
159qla2x00_get_port_name(scsi_qla_host_t *, uint16_t, uint8_t *, uint8_t);
160
161extern int
162qla2x00_lip_reset(scsi_qla_host_t *);
163
164extern int
165qla2x00_send_sns(scsi_qla_host_t *, dma_addr_t, uint16_t, size_t);
166
167extern int
168qla2x00_login_fabric(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t,
169 uint16_t *, uint8_t);
170
171extern int
172qla2x00_login_local_device(scsi_qla_host_t *, uint16_t, uint16_t *, uint8_t);
173
174extern int
175qla2x00_fabric_logout(scsi_qla_host_t *ha, uint16_t loop_id);
176
177extern int
178qla2x00_full_login_lip(scsi_qla_host_t *ha);
179
180extern int
181qla2x00_get_id_list(scsi_qla_host_t *, void *, dma_addr_t, uint16_t *);
182
183extern int
184qla2x00_get_resource_cnts(scsi_qla_host_t *, uint16_t *, uint16_t *, uint16_t *,
185 uint16_t *);
186
187extern int
188qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map);
189
190/*
191 * Global Function Prototypes in qla_isr.c source file.
192 */
193extern irqreturn_t qla2100_intr_handler(int, void *, struct pt_regs *);
194extern irqreturn_t qla2300_intr_handler(int, void *, struct pt_regs *);
195extern void qla2x00_process_response_queue(struct scsi_qla_host *);
196
197/*
198 * Global Function Prototypes in qla_sup.c source file.
199 */
200extern void qla2x00_lock_nvram_access(scsi_qla_host_t *);
201extern void qla2x00_unlock_nvram_access(scsi_qla_host_t *);
202extern void qla2x00_release_nvram_protection(scsi_qla_host_t *);
203extern uint16_t qla2x00_get_nvram_word(scsi_qla_host_t *, uint32_t);
204extern void qla2x00_write_nvram_word(scsi_qla_host_t *, uint32_t, uint16_t);
205/*
206 * Global Function Prototypes in qla_dbg.c source file.
207 */
208extern void qla2100_fw_dump(scsi_qla_host_t *, int);
209extern void qla2300_fw_dump(scsi_qla_host_t *, int);
6d9b61ed 210extern void qla24xx_fw_dump(scsi_qla_host_t *, int);
1da177e4
LT
211extern void qla2100_ascii_fw_dump(scsi_qla_host_t *);
212extern void qla2300_ascii_fw_dump(scsi_qla_host_t *);
6d9b61ed 213extern void qla24xx_ascii_fw_dump(scsi_qla_host_t *);
1da177e4
LT
214extern void qla2x00_dump_regs(scsi_qla_host_t *);
215extern void qla2x00_dump_buffer(uint8_t *, uint32_t);
216extern void qla2x00_print_scsi_cmd(struct scsi_cmnd *);
6d9b61ed 217extern void qla2x00_dump_pkt(void *);
1da177e4
LT
218
219/*
220 * Global Function Prototypes in qla_gs.c source file.
221 */
8c958a99
AV
222extern void *qla2x00_prep_ms_iocb(scsi_qla_host_t *, uint32_t, uint32_t);
223extern void *qla24xx_prep_ms_iocb(scsi_qla_host_t *, uint32_t, uint32_t);
1da177e4
LT
224extern int qla2x00_ga_nxt(scsi_qla_host_t *, fc_port_t *);
225extern int qla2x00_gid_pt(scsi_qla_host_t *, sw_info_t *);
226extern int qla2x00_gpn_id(scsi_qla_host_t *, sw_info_t *);
227extern int qla2x00_gnn_id(scsi_qla_host_t *, sw_info_t *);
228extern int qla2x00_rft_id(scsi_qla_host_t *);
229extern int qla2x00_rff_id(scsi_qla_host_t *);
230extern int qla2x00_rnn_id(scsi_qla_host_t *);
231extern int qla2x00_rsnn_nn(scsi_qla_host_t *);
232
233/*
234 * Global Function Prototypes in qla_rscn.c source file.
235 */
236extern fc_port_t *qla2x00_alloc_rscn_fcport(scsi_qla_host_t *, int);
237extern int qla2x00_handle_port_rscn(scsi_qla_host_t *, uint32_t, fc_port_t *,
238 int);
239extern void qla2x00_process_iodesc(scsi_qla_host_t *, struct mbx_entry *);
240extern void qla2x00_cancel_io_descriptors(scsi_qla_host_t *);
241
242/*
243 * Global Function Prototypes in qla_xioctl.c source file.
244 */
245#define qla2x00_enqueue_aen(ha, cmd, mode) do { } while (0)
246#define qla2x00_alloc_ioctl_mem(ha) (0)
247#define qla2x00_free_ioctl_mem(ha) do { } while (0)
248
8482e118 249/*
250 * Global Function Prototypes in qla_attr.c source file.
251 */
1c97a12a
AV
252struct fc_function_template;
253extern struct fc_function_template qla2xxx_transport_functions;
8482e118 254extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *);
255extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *);
8482e118 256extern void qla2x00_init_host_attr(scsi_qla_host_t *);
257extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *);
258extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *);
1da177e4 259#endif /* _QLA_GBL_H */