blob: e4bfe4d5bbe4b6ed206b7365fdc286a3591a7488 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/********************************************************************************
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>
8482e112005-04-17 15:04:54 -050027#include <scsi/scsi_transport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29extern void qla2x00_remove_one(struct pci_dev *);
30extern int qla2x00_probe_one(struct pci_dev *, struct qla_board_info *);
31
32/*
33 * Global Function Prototypes in qla_init.c source file.
34 */
35extern int qla2x00_initialize_adapter(scsi_qla_host_t *);
36extern fc_port_t *qla2x00_alloc_fcport(scsi_qla_host_t *, int);
37
38extern int qla2x00_loop_resync(scsi_qla_host_t *);
39
40extern int qla2x00_find_new_loop_id(scsi_qla_host_t *, fc_port_t *);
41extern int qla2x00_fabric_login(scsi_qla_host_t *, fc_port_t *, uint16_t *);
42extern int qla2x00_local_device_login(scsi_qla_host_t *, uint16_t);
43
44extern void qla2x00_restart_queues(scsi_qla_host_t *, uint8_t);
45
46extern void qla2x00_rescan_fcports(scsi_qla_host_t *);
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048extern int qla2x00_abort_isp(scsi_qla_host_t *);
49
8482e112005-04-17 15:04:54 -050050extern void qla2x00_reg_remote_port(scsi_qla_host_t *, fc_port_t *);
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
53 * Global Data in qla_os.c source file.
54 */
55extern char qla2x00_version_str[];
56
57extern int num_hosts;
58extern int apiHBAInstance;
59
60extern struct _qla2x00stats qla2x00_stats;
61extern int ql2xretrycount;
62extern int ql2xlogintimeout;
63extern int qlport_down_retry;
64extern int ql2xmaxqdepth;
65extern int displayConfig;
66extern int ql2xplogiabsentdevice;
67extern int ql2xenablezio;
68extern int ql2xintrdelaytimer;
69extern int ql2xloginretrycount;
70
71extern int ConfigRequired;
72
73extern int Bind;
74extern int ql2xsuspendcount;
75#if defined(MODULE)
76extern char *ql2xopts;
77#endif
f4f051e2005-04-17 15:02:26 -050078extern void qla2x00_sp_compl(scsi_qla_host_t *, srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *);
81
82extern void qla2x00_cmd_timeout(srb_t *);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int);
85extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087extern void qla2x00_blink_led(scsi_qla_host_t *);
88
89extern int qla2x00_down_timeout(struct semaphore *, unsigned long);
90
91/*
92 * Global Function Prototypes in qla_iocb.c source file.
93 */
94extern void qla2x00_isp_cmd(scsi_qla_host_t *);
95
96extern uint16_t qla2x00_calc_iocbs_32(uint16_t);
97extern uint16_t qla2x00_calc_iocbs_64(uint16_t);
98extern void qla2x00_build_scsi_iocbs_32(srb_t *, cmd_entry_t *, uint16_t);
99extern void qla2x00_build_scsi_iocbs_64(srb_t *, cmd_entry_t *, uint16_t);
100extern int qla2x00_start_scsi(srb_t *sp);
101int qla2x00_marker(scsi_qla_host_t *, uint16_t, uint16_t, uint8_t);
102int __qla2x00_marker(scsi_qla_host_t *, uint16_t, uint16_t, uint8_t);
103
104/*
105 * Global Function Prototypes in qla_mbx.c source file.
106 */
107extern int
108qla2x00_load_ram(scsi_qla_host_t *, dma_addr_t, uint16_t, uint16_t);
109
110extern int
111qla2x00_load_ram_ext(scsi_qla_host_t *, dma_addr_t, uint32_t, uint16_t);
112
113extern int
114qla2x00_execute_fw(scsi_qla_host_t *);
115
116extern void
117qla2x00_get_fw_version(scsi_qla_host_t *, uint16_t *,
118 uint16_t *, uint16_t *, uint16_t *, uint32_t *);
119
120extern int
121qla2x00_get_fw_options(scsi_qla_host_t *, uint16_t *);
122
123extern int
124qla2x00_set_fw_options(scsi_qla_host_t *, uint16_t *);
125
126extern int
127qla2x00_mbx_reg_test(scsi_qla_host_t *);
128
129extern int
130qla2x00_verify_checksum(scsi_qla_host_t *);
131
132extern int
133qla2x00_issue_iocb(scsi_qla_host_t *, void *, dma_addr_t, size_t);
134
135extern int
136qla2x00_abort_command(scsi_qla_host_t *, srb_t *);
137
138#if USE_ABORT_TGT
139extern int
140qla2x00_abort_target(fc_port_t *fcport);
141#endif
142
143extern int
bdf79622005-04-17 15:06:53 -0500144qla2x00_target_reset(scsi_qla_host_t *, struct fc_port *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146extern int
147qla2x00_get_adapter_id(scsi_qla_host_t *, uint16_t *, uint8_t *, uint8_t *,
148 uint8_t *, uint16_t *);
149
150extern int
151qla2x00_get_retry_cnt(scsi_qla_host_t *, uint8_t *, uint8_t *, uint16_t *);
152
153extern int
154qla2x00_init_firmware(scsi_qla_host_t *, uint16_t);
155
156extern int
157qla2x00_get_port_database(scsi_qla_host_t *, fc_port_t *, uint8_t);
158
159extern int
160qla2x00_get_firmware_state(scsi_qla_host_t *, uint16_t *);
161
162extern int
163qla2x00_get_port_name(scsi_qla_host_t *, uint16_t, uint8_t *, uint8_t);
164
165extern int
166qla2x00_lip_reset(scsi_qla_host_t *);
167
168extern int
169qla2x00_send_sns(scsi_qla_host_t *, dma_addr_t, uint16_t, size_t);
170
171extern int
172qla2x00_login_fabric(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t,
173 uint16_t *, uint8_t);
174
175extern int
176qla2x00_login_local_device(scsi_qla_host_t *, uint16_t, uint16_t *, uint8_t);
177
178extern int
179qla2x00_fabric_logout(scsi_qla_host_t *ha, uint16_t loop_id);
180
181extern int
182qla2x00_full_login_lip(scsi_qla_host_t *ha);
183
184extern int
185qla2x00_get_id_list(scsi_qla_host_t *, void *, dma_addr_t, uint16_t *);
186
187extern int
188qla2x00_get_resource_cnts(scsi_qla_host_t *, uint16_t *, uint16_t *, uint16_t *,
189 uint16_t *);
190
191extern int
192qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map);
193
194/*
195 * Global Function Prototypes in qla_isr.c source file.
196 */
197extern irqreturn_t qla2100_intr_handler(int, void *, struct pt_regs *);
198extern irqreturn_t qla2300_intr_handler(int, void *, struct pt_regs *);
199extern void qla2x00_process_response_queue(struct scsi_qla_host *);
200
201/*
202 * Global Function Prototypes in qla_sup.c source file.
203 */
204extern void qla2x00_lock_nvram_access(scsi_qla_host_t *);
205extern void qla2x00_unlock_nvram_access(scsi_qla_host_t *);
206extern void qla2x00_release_nvram_protection(scsi_qla_host_t *);
207extern uint16_t qla2x00_get_nvram_word(scsi_qla_host_t *, uint32_t);
208extern void qla2x00_write_nvram_word(scsi_qla_host_t *, uint32_t, uint16_t);
209/*
210 * Global Function Prototypes in qla_dbg.c source file.
211 */
212extern void qla2100_fw_dump(scsi_qla_host_t *, int);
213extern void qla2300_fw_dump(scsi_qla_host_t *, int);
214extern void qla2100_ascii_fw_dump(scsi_qla_host_t *);
215extern void qla2300_ascii_fw_dump(scsi_qla_host_t *);
216extern void qla2x00_dump_regs(scsi_qla_host_t *);
217extern void qla2x00_dump_buffer(uint8_t *, uint32_t);
218extern void qla2x00_print_scsi_cmd(struct scsi_cmnd *);
219
220/*
221 * Global Function Prototypes in qla_gs.c source file.
222 */
223extern int qla2x00_ga_nxt(scsi_qla_host_t *, fc_port_t *);
224extern int qla2x00_gid_pt(scsi_qla_host_t *, sw_info_t *);
225extern int qla2x00_gpn_id(scsi_qla_host_t *, sw_info_t *);
226extern int qla2x00_gnn_id(scsi_qla_host_t *, sw_info_t *);
227extern int qla2x00_rft_id(scsi_qla_host_t *);
228extern int qla2x00_rff_id(scsi_qla_host_t *);
229extern int qla2x00_rnn_id(scsi_qla_host_t *);
230extern int qla2x00_rsnn_nn(scsi_qla_host_t *);
231
232/*
233 * Global Function Prototypes in qla_rscn.c source file.
234 */
235extern fc_port_t *qla2x00_alloc_rscn_fcport(scsi_qla_host_t *, int);
236extern int qla2x00_handle_port_rscn(scsi_qla_host_t *, uint32_t, fc_port_t *,
237 int);
238extern void qla2x00_process_iodesc(scsi_qla_host_t *, struct mbx_entry *);
239extern void qla2x00_cancel_io_descriptors(scsi_qla_host_t *);
240
241/*
242 * Global Function Prototypes in qla_xioctl.c source file.
243 */
244#define qla2x00_enqueue_aen(ha, cmd, mode) do { } while (0)
245#define qla2x00_alloc_ioctl_mem(ha) (0)
246#define qla2x00_free_ioctl_mem(ha) do { } while (0)
247
8482e112005-04-17 15:04:54 -0500248/*
249 * Global Function Prototypes in qla_attr.c source file.
250 */
251extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *);
252extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *);
253extern struct scsi_transport_template *qla2x00_alloc_transport_tmpl(void);
254extern void qla2x00_init_host_attr(scsi_qla_host_t *);
255extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *);
256extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257#endif /* _QLA_GBL_H */