Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 1 | /* |
| 2 | * QLogic Fibre Channel HBA Driver |
| 3 | * Copyright (c) 2003-2005 QLogic Corporation |
| 4 | * |
| 5 | * See LICENSE.qla2xxx for copyright and licensing details. |
| 6 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #ifndef __QLA_GBL_H |
| 8 | #define __QLA_GBL_H |
| 9 | |
| 10 | #include <linux/interrupt.h> |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | /* |
| 13 | * Global Function Prototypes in qla_init.c source file. |
| 14 | */ |
| 15 | extern int qla2x00_initialize_adapter(scsi_qla_host_t *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 16 | |
| 17 | extern int qla2100_pci_config(struct scsi_qla_host *); |
| 18 | extern int qla2300_pci_config(struct scsi_qla_host *); |
Andrew Vasquez | 0107109e | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 19 | extern int qla24xx_pci_config(scsi_qla_host_t *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 20 | extern void qla2x00_reset_chip(struct scsi_qla_host *); |
Andrew Vasquez | 0107109e | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 21 | extern void qla24xx_reset_chip(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 22 | extern int qla2x00_chip_diag(struct scsi_qla_host *); |
Andrew Vasquez | 0107109e | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 23 | extern int qla24xx_chip_diag(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 24 | extern void qla2x00_config_rings(struct scsi_qla_host *); |
Andrew Vasquez | 0107109e | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 25 | extern void qla24xx_config_rings(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 26 | extern void qla2x00_reset_adapter(struct scsi_qla_host *); |
Andrew Vasquez | 0107109e | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 27 | extern void qla24xx_reset_adapter(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 28 | extern int qla2x00_nvram_config(struct scsi_qla_host *); |
Andrew Vasquez | 0107109e | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 29 | extern int qla24xx_nvram_config(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 30 | extern void qla2x00_update_fw_options(struct scsi_qla_host *); |
Andrew Vasquez | 0107109e | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 31 | extern void qla24xx_update_fw_options(scsi_qla_host_t *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 32 | extern int qla2x00_load_risc(struct scsi_qla_host *, uint32_t *); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 33 | extern int qla24xx_load_risc(scsi_qla_host_t *, uint32_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | extern int qla2x00_loop_resync(scsi_qla_host_t *); |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | extern int qla2x00_fabric_login(scsi_qla_host_t *, fc_port_t *, uint16_t *); |
andrew.vasquez@qlogic.com | 9a52a57 | 2006-03-09 14:27:44 -0800 | [diff] [blame] | 38 | extern int qla2x00_local_device_login(scsi_qla_host_t *, fc_port_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | extern void qla2x00_restart_queues(scsi_qla_host_t *, uint8_t); |
| 41 | |
| 42 | extern void qla2x00_rescan_fcports(scsi_qla_host_t *); |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 43 | extern void qla2x00_update_fcports(scsi_qla_host_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | extern int qla2x00_abort_isp(scsi_qla_host_t *); |
| 46 | |
andrew.vasquez@qlogic.com | 052c40c | 2006-01-20 14:53:19 -0800 | [diff] [blame] | 47 | extern void qla2x00_update_fcport(scsi_qla_host_t *, fc_port_t *); |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 48 | extern void qla2x00_reg_remote_port(scsi_qla_host_t *, fc_port_t *); |
| 49 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 50 | extern void qla2x00_alloc_fw_dump(scsi_qla_host_t *); |
Andrew Vasquez | 18c6c12 | 2006-10-13 09:33:38 -0700 | [diff] [blame] | 51 | extern void qla2x00_try_to_stop_firmware(scsi_qla_host_t *); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /* |
| 54 | * Global Data in qla_os.c source file. |
| 55 | */ |
| 56 | extern char qla2x00_version_str[]; |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | extern int ql2xlogintimeout; |
| 59 | extern int qlport_down_retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | extern int ql2xplogiabsentdevice; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | extern int ql2xloginretrycount; |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 62 | extern int ql2xfdmienable; |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 63 | extern int ql2xallocfwdump; |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 64 | extern int ql2xextended_error_logging; |
Andrew Vasquez | df7baa5 | 2006-10-13 09:33:39 -0700 | [diff] [blame] | 65 | extern int ql2xqfullrampup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 67 | extern void qla2x00_sp_compl(scsi_qla_host_t *, srb_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *); |
| 70 | |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 71 | extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int, int); |
| 72 | extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | extern int qla2x00_down_timeout(struct semaphore *, unsigned long); |
| 75 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 76 | extern struct fw_blob *qla2x00_request_firmware(scsi_qla_host_t *); |
| 77 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 78 | extern int qla2x00_wait_for_hba_online(scsi_qla_host_t *); |
| 79 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 80 | extern void qla2xxx_wake_dpc(scsi_qla_host_t *); |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | /* |
| 83 | * Global Function Prototypes in qla_iocb.c source file. |
| 84 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | extern uint16_t qla2x00_calc_iocbs_32(uint16_t); |
| 86 | extern uint16_t qla2x00_calc_iocbs_64(uint16_t); |
| 87 | extern void qla2x00_build_scsi_iocbs_32(srb_t *, cmd_entry_t *, uint16_t); |
| 88 | extern void qla2x00_build_scsi_iocbs_64(srb_t *, cmd_entry_t *, uint16_t); |
| 89 | extern int qla2x00_start_scsi(srb_t *sp); |
Andrew Vasquez | 2b6c0ce | 2005-07-06 10:31:17 -0700 | [diff] [blame] | 90 | extern int qla24xx_start_scsi(srb_t *sp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | int qla2x00_marker(scsi_qla_host_t *, uint16_t, uint16_t, uint8_t); |
| 92 | int __qla2x00_marker(scsi_qla_host_t *, uint16_t, uint16_t, uint8_t); |
| 93 | |
| 94 | /* |
| 95 | * Global Function Prototypes in qla_mbx.c source file. |
| 96 | */ |
| 97 | extern int |
andrew.vasquez@qlogic.com | 590f98e | 2006-01-13 17:05:37 -0800 | [diff] [blame] | 98 | qla2x00_load_ram(scsi_qla_host_t *, dma_addr_t, uint32_t, uint32_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | extern int |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 101 | qla2x00_execute_fw(scsi_qla_host_t *, uint32_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
| 103 | extern void |
| 104 | qla2x00_get_fw_version(scsi_qla_host_t *, uint16_t *, |
| 105 | uint16_t *, uint16_t *, uint16_t *, uint32_t *); |
| 106 | |
| 107 | extern int |
| 108 | qla2x00_get_fw_options(scsi_qla_host_t *, uint16_t *); |
| 109 | |
| 110 | extern int |
| 111 | qla2x00_set_fw_options(scsi_qla_host_t *, uint16_t *); |
| 112 | |
| 113 | extern int |
| 114 | qla2x00_mbx_reg_test(scsi_qla_host_t *); |
| 115 | |
| 116 | extern int |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 117 | qla2x00_verify_checksum(scsi_qla_host_t *, uint32_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | extern int |
| 120 | qla2x00_issue_iocb(scsi_qla_host_t *, void *, dma_addr_t, size_t); |
| 121 | |
| 122 | extern int |
| 123 | qla2x00_abort_command(scsi_qla_host_t *, srb_t *); |
| 124 | |
| 125 | #if USE_ABORT_TGT |
| 126 | extern int |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 127 | qla2x00_abort_target(fc_port_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | #endif |
| 129 | |
| 130 | extern int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | qla2x00_get_adapter_id(scsi_qla_host_t *, uint16_t *, uint8_t *, uint8_t *, |
| 132 | uint8_t *, uint16_t *); |
| 133 | |
| 134 | extern int |
| 135 | qla2x00_get_retry_cnt(scsi_qla_host_t *, uint8_t *, uint8_t *, uint16_t *); |
| 136 | |
| 137 | extern int |
| 138 | qla2x00_init_firmware(scsi_qla_host_t *, uint16_t); |
| 139 | |
| 140 | extern int |
| 141 | qla2x00_get_port_database(scsi_qla_host_t *, fc_port_t *, uint8_t); |
| 142 | |
| 143 | extern int |
| 144 | qla2x00_get_firmware_state(scsi_qla_host_t *, uint16_t *); |
| 145 | |
| 146 | extern int |
| 147 | qla2x00_get_port_name(scsi_qla_host_t *, uint16_t, uint8_t *, uint8_t); |
| 148 | |
| 149 | extern int |
| 150 | qla2x00_lip_reset(scsi_qla_host_t *); |
| 151 | |
| 152 | extern int |
| 153 | qla2x00_send_sns(scsi_qla_host_t *, dma_addr_t, uint16_t, size_t); |
| 154 | |
| 155 | extern int |
| 156 | qla2x00_login_fabric(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t, |
| 157 | uint16_t *, uint8_t); |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 158 | extern int |
| 159 | qla24xx_login_fabric(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t, |
| 160 | uint16_t *, uint8_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
| 162 | extern int |
andrew.vasquez@qlogic.com | 9a52a57 | 2006-03-09 14:27:44 -0800 | [diff] [blame] | 163 | qla2x00_login_local_device(scsi_qla_host_t *, fc_port_t *, uint16_t *, |
| 164 | uint8_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
| 166 | extern int |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 167 | qla2x00_fabric_logout(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t); |
| 168 | |
| 169 | extern int |
| 170 | qla24xx_fabric_logout(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
| 172 | extern int |
| 173 | qla2x00_full_login_lip(scsi_qla_host_t *ha); |
| 174 | |
| 175 | extern int |
| 176 | qla2x00_get_id_list(scsi_qla_host_t *, void *, dma_addr_t, uint16_t *); |
| 177 | |
| 178 | extern int |
| 179 | qla2x00_get_resource_cnts(scsi_qla_host_t *, uint16_t *, uint16_t *, uint16_t *, |
| 180 | uint16_t *); |
| 181 | |
| 182 | extern int |
| 183 | qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map); |
| 184 | |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 185 | extern int |
| 186 | qla2x00_get_link_status(scsi_qla_host_t *, uint16_t, link_stat_t *, |
| 187 | uint16_t *); |
| 188 | |
| 189 | extern int |
| 190 | qla24xx_get_isp_stats(scsi_qla_host_t *, uint32_t *, uint32_t, uint16_t *); |
| 191 | |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 192 | extern int qla24xx_abort_command(scsi_qla_host_t *, srb_t *); |
| 193 | extern int qla24xx_abort_target(fc_port_t *); |
| 194 | |
| 195 | extern int qla2x00_system_error(scsi_qla_host_t *); |
| 196 | |
| 197 | extern int |
| 198 | qla2x00_get_serdes_params(scsi_qla_host_t *, uint16_t *, uint16_t *, |
| 199 | uint16_t *); |
| 200 | |
| 201 | extern int |
| 202 | qla2x00_set_serdes_params(scsi_qla_host_t *, uint16_t, uint16_t, uint16_t); |
| 203 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 204 | extern int |
| 205 | qla2x00_stop_firmware(scsi_qla_host_t *); |
| 206 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 207 | extern int |
| 208 | qla2x00_trace_control(scsi_qla_host_t *, uint16_t, dma_addr_t, uint16_t); |
| 209 | |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 210 | extern int |
| 211 | qla2x00_read_sfp(scsi_qla_host_t *, dma_addr_t, uint16_t, uint16_t, uint16_t); |
| 212 | |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 213 | extern int |
| 214 | qla2x00_get_idma_speed(scsi_qla_host_t *, uint16_t, uint16_t *, uint16_t *); |
| 215 | |
| 216 | extern int |
| 217 | qla2x00_set_idma_speed(scsi_qla_host_t *, uint16_t, uint16_t, uint16_t *); |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | /* |
| 220 | * Global Function Prototypes in qla_isr.c source file. |
| 221 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 222 | extern irqreturn_t qla2100_intr_handler(int, void *); |
| 223 | extern irqreturn_t qla2300_intr_handler(int, void *); |
| 224 | extern irqreturn_t qla24xx_intr_handler(int, void *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | extern void qla2x00_process_response_queue(struct scsi_qla_host *); |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 226 | extern void qla24xx_process_response_queue(struct scsi_qla_host *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
| 228 | /* |
| 229 | * Global Function Prototypes in qla_sup.c source file. |
| 230 | */ |
| 231 | extern void qla2x00_lock_nvram_access(scsi_qla_host_t *); |
| 232 | extern void qla2x00_unlock_nvram_access(scsi_qla_host_t *); |
| 233 | extern void qla2x00_release_nvram_protection(scsi_qla_host_t *); |
| 234 | extern uint16_t qla2x00_get_nvram_word(scsi_qla_host_t *, uint32_t); |
| 235 | extern void qla2x00_write_nvram_word(scsi_qla_host_t *, uint32_t, uint16_t); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 236 | extern uint32_t *qla24xx_read_flash_data(scsi_qla_host_t *, uint32_t *, |
| 237 | uint32_t, uint32_t); |
| 238 | extern uint8_t *qla2x00_read_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 239 | uint32_t); |
| 240 | extern uint8_t *qla24xx_read_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 241 | uint32_t); |
| 242 | extern int qla2x00_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 243 | uint32_t); |
| 244 | extern int qla24xx_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 245 | uint32_t); |
| 246 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 247 | extern int qla2x00_beacon_on(struct scsi_qla_host *); |
| 248 | extern int qla2x00_beacon_off(struct scsi_qla_host *); |
| 249 | extern void qla2x00_beacon_blink(struct scsi_qla_host *); |
| 250 | extern int qla24xx_beacon_on(struct scsi_qla_host *); |
| 251 | extern int qla24xx_beacon_off(struct scsi_qla_host *); |
| 252 | extern void qla24xx_beacon_blink(struct scsi_qla_host *); |
| 253 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 254 | extern uint8_t *qla2x00_read_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 255 | uint32_t, uint32_t); |
| 256 | extern int qla2x00_write_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 257 | uint32_t, uint32_t); |
| 258 | extern uint8_t *qla24xx_read_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 259 | uint32_t, uint32_t); |
| 260 | extern int qla24xx_write_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 261 | uint32_t, uint32_t); |
| 262 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | /* |
| 264 | * Global Function Prototypes in qla_dbg.c source file. |
| 265 | */ |
| 266 | extern void qla2100_fw_dump(scsi_qla_host_t *, int); |
| 267 | extern void qla2300_fw_dump(scsi_qla_host_t *, int); |
Andrew Vasquez | 6d9b61e | 2005-07-06 10:30:36 -0700 | [diff] [blame] | 268 | extern void qla24xx_fw_dump(scsi_qla_host_t *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | extern void qla2x00_dump_regs(scsi_qla_host_t *); |
| 270 | extern void qla2x00_dump_buffer(uint8_t *, uint32_t); |
| 271 | extern void qla2x00_print_scsi_cmd(struct scsi_cmnd *); |
Andrew Vasquez | 6d9b61e | 2005-07-06 10:30:36 -0700 | [diff] [blame] | 272 | extern void qla2x00_dump_pkt(void *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | /* |
| 275 | * Global Function Prototypes in qla_gs.c source file. |
| 276 | */ |
Andrew Vasquez | 8c958a9 | 2005-07-06 10:30:47 -0700 | [diff] [blame] | 277 | extern void *qla2x00_prep_ms_iocb(scsi_qla_host_t *, uint32_t, uint32_t); |
| 278 | extern void *qla24xx_prep_ms_iocb(scsi_qla_host_t *, uint32_t, uint32_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | extern int qla2x00_ga_nxt(scsi_qla_host_t *, fc_port_t *); |
| 280 | extern int qla2x00_gid_pt(scsi_qla_host_t *, sw_info_t *); |
| 281 | extern int qla2x00_gpn_id(scsi_qla_host_t *, sw_info_t *); |
| 282 | extern int qla2x00_gnn_id(scsi_qla_host_t *, sw_info_t *); |
| 283 | extern int qla2x00_rft_id(scsi_qla_host_t *); |
| 284 | extern int qla2x00_rff_id(scsi_qla_host_t *); |
| 285 | extern int qla2x00_rnn_id(scsi_qla_host_t *); |
| 286 | extern int qla2x00_rsnn_nn(scsi_qla_host_t *); |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 287 | extern void *qla2x00_prep_ms_fdmi_iocb(scsi_qla_host_t *, uint32_t, uint32_t); |
| 288 | extern void *qla24xx_prep_ms_fdmi_iocb(scsi_qla_host_t *, uint32_t, uint32_t); |
| 289 | extern int qla2x00_fdmi_register(scsi_qla_host_t *); |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 290 | extern int qla2x00_gfpn_id(scsi_qla_host_t *, sw_info_t *); |
| 291 | extern int qla2x00_gpsc(scsi_qla_host_t *, sw_info_t *); |
Andrew Vasquez | 1620f7c | 2006-10-02 12:00:44 -0700 | [diff] [blame] | 292 | extern void qla2x00_get_sym_node_name(scsi_qla_host_t *, uint8_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
| 294 | /* |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 295 | * Global Function Prototypes in qla_attr.c source file. |
| 296 | */ |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 297 | struct class_device_attribute; |
| 298 | extern struct class_device_attribute *qla2x00_host_attrs[]; |
Andrew Vasquez | 1c97a12 | 2005-04-21 16:13:36 -0400 | [diff] [blame] | 299 | struct fc_function_template; |
| 300 | extern struct fc_function_template qla2xxx_transport_functions; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 301 | extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *); |
| 302 | extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *); |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 303 | extern void qla2x00_init_host_attr(scsi_qla_host_t *); |
| 304 | extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *); |
| 305 | extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | #endif /* _QLA_GBL_H */ |