Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 1 | /* |
| 2 | * QLogic Fibre Channel HBA Driver |
Andrew Vasquez | 01e58d8 | 2008-04-03 13:13:13 -0700 | [diff] [blame] | 3 | * Copyright (c) 2003-2008 QLogic Corporation |
Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 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 | 0107109 | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 19 | extern int qla24xx_pci_config(scsi_qla_host_t *); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 20 | extern int qla25xx_pci_config(scsi_qla_host_t *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 21 | extern void qla2x00_reset_chip(struct scsi_qla_host *); |
Andrew Vasquez | 0107109 | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 22 | extern void qla24xx_reset_chip(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 23 | extern int qla2x00_chip_diag(struct scsi_qla_host *); |
Andrew Vasquez | 0107109 | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 24 | extern int qla24xx_chip_diag(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 25 | extern void qla2x00_config_rings(struct scsi_qla_host *); |
Andrew Vasquez | 0107109 | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 26 | extern void qla24xx_config_rings(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 27 | extern void qla2x00_reset_adapter(struct scsi_qla_host *); |
Andrew Vasquez | 0107109 | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 28 | extern void qla24xx_reset_adapter(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 29 | extern int qla2x00_nvram_config(struct scsi_qla_host *); |
Andrew Vasquez | 0107109 | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 30 | extern int qla24xx_nvram_config(struct scsi_qla_host *); |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 31 | extern int qla81xx_nvram_config(struct scsi_qla_host *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 32 | extern void qla2x00_update_fw_options(struct scsi_qla_host *); |
Andrew Vasquez | 0107109 | 2005-07-06 10:31:37 -0700 | [diff] [blame] | 33 | extern void qla24xx_update_fw_options(scsi_qla_host_t *); |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 34 | extern void qla81xx_update_fw_options(scsi_qla_host_t *); |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 35 | extern int qla2x00_load_risc(struct scsi_qla_host *, uint32_t *); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 36 | extern int qla24xx_load_risc(scsi_qla_host_t *, uint32_t *); |
Andrew Vasquez | eaac30b | 2009-01-22 09:45:32 -0800 | [diff] [blame] | 37 | extern int qla81xx_load_risc(scsi_qla_host_t *, uint32_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | extern int qla2x00_loop_resync(scsi_qla_host_t *); |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | 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] | 42 | 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] | 43 | |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 44 | extern void qla2x00_update_fcports(scsi_qla_host_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | extern int qla2x00_abort_isp(scsi_qla_host_t *); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 47 | extern void qla2x00_abort_isp_cleanup(scsi_qla_host_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
andrew.vasquez@qlogic.com | 052c40c | 2006-01-20 14:53:19 -0800 | [diff] [blame] | 49 | extern void qla2x00_update_fcport(scsi_qla_host_t *, fc_port_t *); |
| 8482e11 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 50 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 51 | extern void qla2x00_alloc_fw_dump(scsi_qla_host_t *); |
Andrew Vasquez | 18c6c12 | 2006-10-13 09:33:38 -0700 | [diff] [blame] | 52 | extern void qla2x00_try_to_stop_firmware(scsi_qla_host_t *); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 53 | |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 54 | extern void qla84xx_put_chip(struct scsi_qla_host *); |
| 55 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 56 | extern int qla2x00_async_login(struct scsi_qla_host *, fc_port_t *, |
| 57 | uint16_t *); |
| 58 | extern int qla2x00_async_logout(struct scsi_qla_host *, fc_port_t *); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 59 | extern int qla2x00_async_adisc(struct scsi_qla_host *, fc_port_t *, |
| 60 | uint16_t *); |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 61 | extern int qla2x00_async_tm_cmd(fc_port_t *, uint32_t, uint32_t, uint32_t); |
Madhuranath Iyengar | 4916392 | 2010-05-04 15:01:28 -0700 | [diff] [blame] | 62 | extern void qla2x00_async_login_done(struct scsi_qla_host *, fc_port_t *, |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 63 | uint16_t *); |
Madhuranath Iyengar | 4916392 | 2010-05-04 15:01:28 -0700 | [diff] [blame] | 64 | extern void qla2x00_async_logout_done(struct scsi_qla_host *, fc_port_t *, |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 65 | uint16_t *); |
Madhuranath Iyengar | 4916392 | 2010-05-04 15:01:28 -0700 | [diff] [blame] | 66 | extern void qla2x00_async_adisc_done(struct scsi_qla_host *, fc_port_t *, |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 67 | uint16_t *); |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 68 | extern void qla2x00_async_tm_cmd_done(struct scsi_qla_host *, fc_port_t *, |
| 69 | struct srb_iocb *); |
Giridhar Malavali | d94d10e | 2010-07-23 15:28:23 +0500 | [diff] [blame] | 70 | extern void *qla2x00_alloc_iocbs(struct scsi_qla_host *, srb_t *); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 71 | |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 72 | extern fc_port_t * |
| 73 | qla2x00_alloc_fcport(scsi_qla_host_t *, gfp_t ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* |
| 75 | * Global Data in qla_os.c source file. |
| 76 | */ |
| 77 | extern char qla2x00_version_str[]; |
| 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | extern int ql2xlogintimeout; |
| 80 | extern int qlport_down_retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | extern int ql2xplogiabsentdevice; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | extern int ql2xloginretrycount; |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 83 | extern int ql2xfdmienable; |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 84 | extern int ql2xallocfwdump; |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 85 | extern int ql2xextended_error_logging; |
Andrew Vasquez | e5896bd | 2008-07-10 16:55:52 -0700 | [diff] [blame] | 86 | extern int ql2xiidmaenable; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 87 | extern int ql2xmaxqueues; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 88 | extern int ql2xmultique_tag; |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 89 | extern int ql2xfwloadbin; |
Andrew Vasquez | ae97c91 | 2010-02-18 10:07:28 -0800 | [diff] [blame] | 90 | extern int ql2xetsenable; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 91 | extern int ql2xshiftctondsd; |
| 92 | extern int ql2xdbwr; |
| 93 | extern int ql2xdontresethba; |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 94 | extern int ql2xasynctmfenable; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 95 | extern int ql2xenabledif; |
| 96 | extern int ql2xenablehba_err_chk; |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 97 | extern int ql2xtargetreset; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 98 | |
Andrew Vasquez | a4722cf | 2008-01-17 09:02:12 -0800 | [diff] [blame] | 99 | extern int qla2x00_loop_reset(scsi_qla_host_t *); |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 100 | extern void qla2x00_abort_all_cmds(scsi_qla_host_t *, int); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 101 | extern int qla2x00_post_aen_work(struct scsi_qla_host *, enum |
| 102 | fc_host_event_code, u32); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 103 | extern int qla2x00_post_idc_ack_work(struct scsi_qla_host *, uint16_t *); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 104 | extern int qla2x00_post_async_login_work(struct scsi_qla_host *, fc_port_t *, |
| 105 | uint16_t *); |
| 106 | extern int qla2x00_post_async_login_done_work(struct scsi_qla_host *, |
| 107 | fc_port_t *, uint16_t *); |
| 108 | extern int qla2x00_post_async_logout_work(struct scsi_qla_host *, fc_port_t *, |
| 109 | uint16_t *); |
| 110 | extern int qla2x00_post_async_logout_done_work(struct scsi_qla_host *, |
| 111 | fc_port_t *, uint16_t *); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 112 | extern int qla2x00_post_async_adisc_work(struct scsi_qla_host *, fc_port_t *, |
| 113 | uint16_t *); |
| 114 | extern int qla2x00_post_async_adisc_done_work(struct scsi_qla_host *, |
| 115 | fc_port_t *, uint16_t *); |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 116 | extern int qla2x00_post_uevent_work(struct scsi_qla_host *, u32); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 117 | |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 118 | extern int qla81xx_restart_mpi_firmware(scsi_qla_host_t *); |
Andrew Vasquez | a4722cf | 2008-01-17 09:02:12 -0800 | [diff] [blame] | 119 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 120 | extern struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *, |
| 121 | struct qla_hw_data *); |
| 122 | extern void qla2x00_free_host(struct scsi_qla_host *); |
| 123 | extern void qla2x00_relogin(struct scsi_qla_host *); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 124 | extern void qla2x00_do_work(struct scsi_qla_host *); |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 125 | extern void qla2x00_free_fcports(struct scsi_qla_host *); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 126 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 127 | /* |
| 128 | * Global Functions in qla_mid.c source file. |
| 129 | */ |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 130 | extern struct scsi_host_template qla2xxx_driver_template; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 131 | extern struct scsi_transport_template *qla2xxx_transport_vport_template; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 132 | extern void qla2x00_timer(scsi_qla_host_t *); |
| 133 | extern void qla2x00_start_timer(scsi_qla_host_t *, void *, unsigned long); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 134 | extern void qla24xx_deallocate_vp_id(scsi_qla_host_t *); |
| 135 | extern int qla24xx_disable_vp (scsi_qla_host_t *); |
| 136 | extern int qla24xx_enable_vp (scsi_qla_host_t *); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 137 | extern int qla24xx_control_vp(scsi_qla_host_t *, int ); |
| 138 | extern int qla24xx_modify_vp_config(scsi_qla_host_t *); |
| 139 | extern int qla2x00_send_change_request(scsi_qla_host_t *, uint16_t, uint16_t); |
| 140 | extern void qla2x00_vp_stop_timer(scsi_qla_host_t *); |
| 141 | extern int qla24xx_configure_vhba (scsi_qla_host_t *); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 142 | extern void qla24xx_report_id_acquisition(scsi_qla_host_t *, |
| 143 | struct vp_rpt_id_entry_24xx *); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 144 | extern void qla2x00_do_dpc_all_vps(scsi_qla_host_t *); |
| 145 | extern int qla24xx_vport_create_req_sanity_check(struct fc_vport *); |
| 146 | extern scsi_qla_host_t * qla24xx_create_vhost(struct fc_vport *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 148 | extern void qla2x00_sp_compl(struct qla_hw_data *, srb_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *); |
| 151 | |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 152 | extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int, int); |
| 153 | extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 155 | extern struct fw_blob *qla2x00_request_firmware(scsi_qla_host_t *); |
| 156 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 157 | extern int qla2x00_wait_for_hba_online(scsi_qla_host_t *); |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 158 | extern int qla2x00_wait_for_chip_reset(scsi_qla_host_t *); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 159 | extern int qla2x00_wait_for_fcoe_ctx_reset(scsi_qla_host_t *); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 160 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 161 | extern void qla2xxx_wake_dpc(struct scsi_qla_host *); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 162 | extern void qla2x00_alert_all_vps(struct rsp_que *, uint16_t *); |
| 163 | extern void qla2x00_async_event(scsi_qla_host_t *, struct rsp_que *, |
| 164 | uint16_t *); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 165 | extern int qla2x00_vp_abort_isp(scsi_qla_host_t *); |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | /* |
| 168 | * Global Function Prototypes in qla_iocb.c source file. |
| 169 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | extern uint16_t qla2x00_calc_iocbs_32(uint16_t); |
| 171 | extern uint16_t qla2x00_calc_iocbs_64(uint16_t); |
| 172 | extern void qla2x00_build_scsi_iocbs_32(srb_t *, cmd_entry_t *, uint16_t); |
| 173 | extern void qla2x00_build_scsi_iocbs_64(srb_t *, cmd_entry_t *, uint16_t); |
| 174 | extern int qla2x00_start_scsi(srb_t *sp); |
Andrew Vasquez | 2b6c0ce | 2005-07-06 10:31:17 -0700 | [diff] [blame] | 175 | extern int qla24xx_start_scsi(srb_t *sp); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 176 | int qla2x00_marker(struct scsi_qla_host *, struct req_que *, struct rsp_que *, |
| 177 | uint16_t, uint16_t, uint8_t); |
| 178 | int __qla2x00_marker(struct scsi_qla_host *, struct req_que *, struct rsp_que *, |
| 179 | uint16_t, uint16_t, uint8_t); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 180 | extern int qla2x00_start_sp(srb_t *); |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 181 | extern void qla2x00_ctx_sp_free(srb_t *); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 182 | extern uint16_t qla24xx_calc_iocbs(uint16_t); |
| 183 | extern void qla24xx_build_scsi_iocbs(srb_t *, struct cmd_type_7 *, uint16_t); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 184 | extern int qla24xx_dif_start_scsi(srb_t *); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | /* |
| 188 | * Global Function Prototypes in qla_mbx.c source file. |
| 189 | */ |
| 190 | extern int |
andrew.vasquez@qlogic.com | 590f98e | 2006-01-13 17:05:37 -0800 | [diff] [blame] | 191 | 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] | 192 | |
| 193 | extern int |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 194 | qla2x00_dump_ram(scsi_qla_host_t *, dma_addr_t, uint32_t, uint32_t); |
| 195 | |
| 196 | extern int |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 197 | qla2x00_execute_fw(scsi_qla_host_t *, uint32_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Andrew Vasquez | ca9e9c3 | 2009-06-03 09:55:20 -0700 | [diff] [blame] | 199 | extern int |
Andrew Vasquez | 55a9615 | 2009-03-24 09:08:03 -0700 | [diff] [blame] | 200 | qla2x00_get_fw_version(scsi_qla_host_t *, uint16_t *, uint16_t *, uint16_t *, |
| 201 | uint16_t *, uint32_t *, uint8_t *, uint32_t *, uint8_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
| 203 | extern int |
| 204 | qla2x00_get_fw_options(scsi_qla_host_t *, uint16_t *); |
| 205 | |
| 206 | extern int |
| 207 | qla2x00_set_fw_options(scsi_qla_host_t *, uint16_t *); |
| 208 | |
| 209 | extern int |
| 210 | qla2x00_mbx_reg_test(scsi_qla_host_t *); |
| 211 | |
| 212 | extern int |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 213 | qla2x00_verify_checksum(scsi_qla_host_t *, uint32_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | extern int |
| 216 | qla2x00_issue_iocb(scsi_qla_host_t *, void *, dma_addr_t, size_t); |
| 217 | |
| 218 | extern int |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 219 | qla2x00_abort_command(srb_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | extern int |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 222 | qla2x00_abort_target(struct fc_port *, unsigned int, int); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 223 | |
| 224 | extern int |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 225 | qla2x00_lun_reset(struct fc_port *, unsigned int, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | extern int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | qla2x00_get_adapter_id(scsi_qla_host_t *, uint16_t *, uint8_t *, uint8_t *, |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 229 | uint8_t *, uint16_t *, uint16_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | extern int |
| 232 | qla2x00_get_retry_cnt(scsi_qla_host_t *, uint8_t *, uint8_t *, uint16_t *); |
| 233 | |
| 234 | extern int |
| 235 | qla2x00_init_firmware(scsi_qla_host_t *, uint16_t); |
| 236 | |
| 237 | extern int |
| 238 | qla2x00_get_port_database(scsi_qla_host_t *, fc_port_t *, uint8_t); |
| 239 | |
| 240 | extern int |
| 241 | qla2x00_get_firmware_state(scsi_qla_host_t *, uint16_t *); |
| 242 | |
| 243 | extern int |
| 244 | qla2x00_get_port_name(scsi_qla_host_t *, uint16_t, uint8_t *, uint8_t); |
| 245 | |
| 246 | extern int |
| 247 | qla2x00_lip_reset(scsi_qla_host_t *); |
| 248 | |
| 249 | extern int |
| 250 | qla2x00_send_sns(scsi_qla_host_t *, dma_addr_t, uint16_t, size_t); |
| 251 | |
| 252 | extern int |
| 253 | qla2x00_login_fabric(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t, |
| 254 | uint16_t *, uint8_t); |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 255 | extern int |
| 256 | qla24xx_login_fabric(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t, |
| 257 | uint16_t *, uint8_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
| 259 | extern int |
andrew.vasquez@qlogic.com | 9a52a57 | 2006-03-09 14:27:44 -0800 | [diff] [blame] | 260 | qla2x00_login_local_device(scsi_qla_host_t *, fc_port_t *, uint16_t *, |
| 261 | uint8_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | extern int |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 264 | qla2x00_fabric_logout(scsi_qla_host_t *, uint16_t, uint8_t, uint8_t, uint8_t); |
| 265 | |
| 266 | extern int |
| 267 | 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] | 268 | |
| 269 | extern int |
| 270 | qla2x00_full_login_lip(scsi_qla_host_t *ha); |
| 271 | |
| 272 | extern int |
| 273 | qla2x00_get_id_list(scsi_qla_host_t *, void *, dma_addr_t, uint16_t *); |
| 274 | |
| 275 | extern int |
Seokmann Ju | 4d0ea24 | 2007-09-20 14:07:43 -0700 | [diff] [blame] | 276 | qla2x00_get_resource_cnts(scsi_qla_host_t *, uint16_t *, uint16_t *, |
Andrew Vasquez | f3a0a77 | 2009-10-13 15:16:49 -0700 | [diff] [blame] | 277 | uint16_t *, uint16_t *, uint16_t *, uint16_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | extern int |
| 280 | qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map); |
| 281 | |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 282 | extern int |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 283 | qla2x00_get_link_status(scsi_qla_host_t *, uint16_t, struct link_statistics *, |
| 284 | dma_addr_t); |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 285 | |
| 286 | extern int |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 287 | qla24xx_get_isp_stats(scsi_qla_host_t *, struct link_statistics *, |
| 288 | dma_addr_t); |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 289 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 290 | extern int qla24xx_abort_command(srb_t *); |
| 291 | extern int |
| 292 | qla24xx_abort_target(struct fc_port *, unsigned int, int); |
| 293 | extern int |
| 294 | qla24xx_lun_reset(struct fc_port *, unsigned int, int); |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame^] | 295 | extern int |
| 296 | qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *, unsigned int, |
| 297 | unsigned int, enum nexus_wait_type); |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 298 | extern int |
Andrew Vasquez | 68af081 | 2008-05-12 22:21:13 -0700 | [diff] [blame] | 299 | qla2x00_system_error(scsi_qla_host_t *); |
| 300 | |
| 301 | extern int |
Andrew Vasquez | 1c7c635 | 2005-07-06 10:30:57 -0700 | [diff] [blame] | 302 | qla2x00_set_serdes_params(scsi_qla_host_t *, uint16_t, uint16_t, uint16_t); |
| 303 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 304 | extern int |
| 305 | qla2x00_stop_firmware(scsi_qla_host_t *); |
| 306 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 307 | extern int |
Andrew Vasquez | 00b6bd2 | 2008-01-17 09:02:16 -0800 | [diff] [blame] | 308 | qla2x00_enable_eft_trace(scsi_qla_host_t *, dma_addr_t, uint16_t); |
| 309 | extern int |
| 310 | qla2x00_disable_eft_trace(scsi_qla_host_t *); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 311 | |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 312 | extern int |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 313 | qla2x00_enable_fce_trace(scsi_qla_host_t *, dma_addr_t, uint16_t , uint16_t *, |
| 314 | uint32_t *); |
| 315 | |
| 316 | extern int |
| 317 | qla2x00_disable_fce_trace(scsi_qla_host_t *, uint64_t *, uint64_t *); |
| 318 | |
| 319 | extern int |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 320 | qla2x00_read_sfp(scsi_qla_host_t *, dma_addr_t, uint16_t, uint16_t, uint16_t); |
| 321 | |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 322 | extern int |
Joe Carnuccio | ad0ecd6 | 2009-03-24 09:08:12 -0700 | [diff] [blame] | 323 | qla2x00_read_edc(scsi_qla_host_t *, uint16_t, uint16_t, dma_addr_t, |
| 324 | uint8_t *, uint16_t, uint16_t); |
| 325 | |
| 326 | extern int |
| 327 | qla2x00_write_edc(scsi_qla_host_t *, uint16_t, uint16_t, dma_addr_t, |
| 328 | uint8_t *, uint16_t, uint16_t); |
| 329 | |
| 330 | extern int |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 331 | qla2x00_set_idma_speed(scsi_qla_host_t *, uint16_t, uint16_t, uint16_t *); |
| 332 | |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 333 | extern int qla84xx_verify_chip(struct scsi_qla_host *, uint16_t *); |
| 334 | |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 335 | extern int qla81xx_idc_ack(scsi_qla_host_t *, uint16_t *); |
| 336 | |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 337 | extern int |
| 338 | qla81xx_fac_get_sector_size(scsi_qla_host_t *, uint32_t *); |
| 339 | |
| 340 | extern int |
| 341 | qla81xx_fac_do_write_enable(scsi_qla_host_t *, int); |
| 342 | |
| 343 | extern int |
| 344 | qla81xx_fac_erase_sector(scsi_qla_host_t *, uint32_t, uint32_t); |
| 345 | |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 346 | extern int |
| 347 | qla2x00_get_xgmac_stats(scsi_qla_host_t *, dma_addr_t, uint16_t, uint16_t *); |
| 348 | |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 349 | extern int |
| 350 | qla2x00_get_dcbx_params(scsi_qla_host_t *, dma_addr_t, uint16_t); |
| 351 | |
Andrew Vasquez | 18e7555 | 2009-06-03 09:55:30 -0700 | [diff] [blame] | 352 | extern int |
| 353 | qla2x00_read_ram_word(scsi_qla_host_t *, uint32_t, uint32_t *); |
| 354 | |
| 355 | extern int |
| 356 | qla2x00_write_ram_word(scsi_qla_host_t *, uint32_t, uint32_t); |
| 357 | |
Michael Hernandez | 3064ff3 | 2009-12-15 21:29:44 -0800 | [diff] [blame] | 358 | extern int qla2x00_get_data_rate(scsi_qla_host_t *); |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 359 | extern int qla24xx_set_fcp_prio(scsi_qla_host_t *, uint16_t, uint16_t, |
| 360 | uint16_t *); |
Sarang Radke | 23f2ebd | 2010-05-28 15:08:21 -0700 | [diff] [blame] | 361 | extern int |
| 362 | qla81xx_get_port_config(scsi_qla_host_t *, uint16_t *); |
| 363 | |
| 364 | extern int |
| 365 | qla81xx_set_port_config(scsi_qla_host_t *, uint16_t *); |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | /* |
| 368 | * Global Function Prototypes in qla_isr.c source file. |
| 369 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 370 | extern irqreturn_t qla2100_intr_handler(int, void *); |
| 371 | extern irqreturn_t qla2300_intr_handler(int, void *); |
| 372 | extern irqreturn_t qla24xx_intr_handler(int, void *); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 373 | extern void qla2x00_process_response_queue(struct rsp_que *); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 374 | extern void |
| 375 | qla24xx_process_response_queue(struct scsi_qla_host *, struct rsp_que *); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 376 | extern int qla2x00_request_irqs(struct qla_hw_data *, struct rsp_que *); |
Andrew Vasquez | a8488ab | 2007-01-29 10:22:19 -0800 | [diff] [blame] | 377 | extern void qla2x00_free_irqs(scsi_qla_host_t *); |
| 378 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 379 | extern int qla2x00_get_data_rate(scsi_qla_host_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | /* |
| 381 | * Global Function Prototypes in qla_sup.c source file. |
| 382 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | extern void qla2x00_release_nvram_protection(scsi_qla_host_t *); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 384 | extern uint32_t *qla24xx_read_flash_data(scsi_qla_host_t *, uint32_t *, |
| 385 | uint32_t, uint32_t); |
| 386 | extern uint8_t *qla2x00_read_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 387 | uint32_t); |
| 388 | extern uint8_t *qla24xx_read_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 389 | uint32_t); |
| 390 | extern int qla2x00_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 391 | uint32_t); |
| 392 | extern int qla24xx_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 393 | uint32_t); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 394 | extern uint8_t *qla25xx_read_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 395 | uint32_t); |
| 396 | extern int qla25xx_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
| 397 | uint32_t); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 398 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 399 | extern int qla2x00_beacon_on(struct scsi_qla_host *); |
| 400 | extern int qla2x00_beacon_off(struct scsi_qla_host *); |
| 401 | extern void qla2x00_beacon_blink(struct scsi_qla_host *); |
| 402 | extern int qla24xx_beacon_on(struct scsi_qla_host *); |
| 403 | extern int qla24xx_beacon_off(struct scsi_qla_host *); |
| 404 | extern void qla24xx_beacon_blink(struct scsi_qla_host *); |
| 405 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 406 | extern uint8_t *qla2x00_read_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 407 | uint32_t, uint32_t); |
| 408 | extern int qla2x00_write_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 409 | uint32_t, uint32_t); |
| 410 | extern uint8_t *qla24xx_read_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 411 | uint32_t, uint32_t); |
| 412 | extern int qla24xx_write_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 413 | uint32_t, uint32_t); |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 414 | extern uint8_t *qla25xx_read_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 415 | uint32_t, uint32_t); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 416 | |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 417 | extern int qla2x00_get_flash_version(scsi_qla_host_t *, void *); |
| 418 | extern int qla24xx_get_flash_version(scsi_qla_host_t *, void *); |
| 419 | |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 420 | extern int qla2xxx_get_flash_info(scsi_qla_host_t *); |
Joe Carnuccio | 1ee2714 | 2008-07-10 16:55:53 -0700 | [diff] [blame] | 421 | extern int qla2xxx_get_vpd_field(scsi_qla_host_t *, char *, char *, size_t); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 422 | |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 423 | extern void qla2xxx_flash_npiv_conf(scsi_qla_host_t *); |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 424 | extern int qla24xx_read_fcp_prio_cfg(scsi_qla_host_t *); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | /* |
| 427 | * Global Function Prototypes in qla_dbg.c source file. |
| 428 | */ |
| 429 | extern void qla2100_fw_dump(scsi_qla_host_t *, int); |
| 430 | extern void qla2300_fw_dump(scsi_qla_host_t *, int); |
Andrew Vasquez | 6d9b61e | 2005-07-06 10:30:36 -0700 | [diff] [blame] | 431 | extern void qla24xx_fw_dump(scsi_qla_host_t *, int); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 432 | extern void qla25xx_fw_dump(scsi_qla_host_t *, int); |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 433 | extern void qla81xx_fw_dump(scsi_qla_host_t *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | extern void qla2x00_dump_regs(scsi_qla_host_t *); |
| 435 | extern void qla2x00_dump_buffer(uint8_t *, uint32_t); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 436 | extern void qla2x00_dump_buffer_zipped(uint8_t *, uint32_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | /* |
| 439 | * Global Function Prototypes in qla_gs.c source file. |
| 440 | */ |
Andrew Vasquez | 8c958a9 | 2005-07-06 10:30:47 -0700 | [diff] [blame] | 441 | extern void *qla2x00_prep_ms_iocb(scsi_qla_host_t *, uint32_t, uint32_t); |
| 442 | 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] | 443 | extern int qla2x00_ga_nxt(scsi_qla_host_t *, fc_port_t *); |
| 444 | extern int qla2x00_gid_pt(scsi_qla_host_t *, sw_info_t *); |
| 445 | extern int qla2x00_gpn_id(scsi_qla_host_t *, sw_info_t *); |
| 446 | extern int qla2x00_gnn_id(scsi_qla_host_t *, sw_info_t *); |
Chad Dupuis | e8c72ba | 2010-07-23 15:28:25 +0500 | [diff] [blame] | 447 | extern void qla2x00_gff_id(scsi_qla_host_t *, sw_info_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | extern int qla2x00_rft_id(scsi_qla_host_t *); |
| 449 | extern int qla2x00_rff_id(scsi_qla_host_t *); |
| 450 | extern int qla2x00_rnn_id(scsi_qla_host_t *); |
| 451 | extern int qla2x00_rsnn_nn(scsi_qla_host_t *); |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 452 | extern void *qla2x00_prep_ms_fdmi_iocb(scsi_qla_host_t *, uint32_t, uint32_t); |
| 453 | extern void *qla24xx_prep_ms_fdmi_iocb(scsi_qla_host_t *, uint32_t, uint32_t); |
| 454 | extern int qla2x00_fdmi_register(scsi_qla_host_t *); |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 455 | extern int qla2x00_gfpn_id(scsi_qla_host_t *, sw_info_t *); |
| 456 | extern int qla2x00_gpsc(scsi_qla_host_t *, sw_info_t *); |
Andrew Vasquez | 1620f7c | 2006-10-02 12:00:44 -0700 | [diff] [blame] | 457 | 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] | 458 | |
| 459 | /* |
| 8482e11 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 460 | * Global Function Prototypes in qla_attr.c source file. |
| 461 | */ |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 462 | struct device_attribute; |
| 463 | extern struct device_attribute *qla2x00_host_attrs[]; |
Andrew Vasquez | 1c97a12 | 2005-04-21 16:13:36 -0400 | [diff] [blame] | 464 | struct fc_function_template; |
| 465 | extern struct fc_function_template qla2xxx_transport_functions; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 466 | extern struct fc_function_template qla2xxx_transport_vport_functions; |
| 8482e11 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 467 | extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *); |
| 468 | extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *); |
| 8482e11 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 469 | extern void qla2x00_init_host_attr(scsi_qla_host_t *); |
| 470 | extern void qla2x00_alloc_sysfs_attr(scsi_qla_host_t *); |
| 471 | extern void qla2x00_free_sysfs_attr(scsi_qla_host_t *); |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 472 | extern int qla2x00_loopback_test(scsi_qla_host_t *, struct msg_echo_lb *, uint16_t *); |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 473 | extern int qla2x00_echo_test(scsi_qla_host_t *, |
| 474 | struct msg_echo_lb *, uint16_t *); |
| 475 | extern int qla24xx_update_all_fcp_prio(scsi_qla_host_t *); |
| 476 | extern int qla24xx_fcp_prio_cfg_valid(struct qla_fcp_prio_cfg *, uint8_t); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 477 | |
| 478 | /* |
| 479 | * Global Function Prototypes in qla_dfs.c source file. |
| 480 | */ |
| 481 | extern int qla2x00_dfs_setup(scsi_qla_host_t *); |
| 482 | extern int qla2x00_dfs_remove(scsi_qla_host_t *); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 483 | |
| 484 | /* Globa function prototypes for multi-q */ |
| 485 | extern int qla25xx_request_irq(struct rsp_que *); |
Anirban Chakraborty | 618a752 | 2009-02-08 20:50:11 -0800 | [diff] [blame] | 486 | extern int qla25xx_init_req_que(struct scsi_qla_host *, struct req_que *); |
| 487 | extern int qla25xx_init_rsp_que(struct scsi_qla_host *, struct rsp_que *); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 488 | extern int qla25xx_create_req_que(struct qla_hw_data *, uint16_t, uint8_t, |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 489 | uint16_t, int, uint8_t); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 490 | extern int qla25xx_create_rsp_que(struct qla_hw_data *, uint16_t, uint8_t, |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 491 | uint16_t, int); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 492 | extern int qla25xx_update_req_que(struct scsi_qla_host *, uint8_t, uint8_t); |
| 493 | extern void qla2x00_init_response_q_entries(struct rsp_que *); |
| 494 | extern int qla25xx_delete_req_que(struct scsi_qla_host *, struct req_que *); |
| 495 | extern int qla25xx_delete_rsp_que(struct scsi_qla_host *, struct rsp_que *); |
| 496 | extern int qla25xx_create_queues(struct scsi_qla_host *, uint8_t); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 497 | extern int qla25xx_delete_queues(struct scsi_qla_host *); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 498 | extern uint16_t qla24xx_rd_req_reg(struct qla_hw_data *, uint16_t); |
| 499 | extern uint16_t qla25xx_rd_req_reg(struct qla_hw_data *, uint16_t); |
| 500 | extern void qla24xx_wrt_req_reg(struct qla_hw_data *, uint16_t, uint16_t); |
| 501 | extern void qla25xx_wrt_req_reg(struct qla_hw_data *, uint16_t, uint16_t); |
| 502 | extern void qla25xx_wrt_rsp_reg(struct qla_hw_data *, uint16_t, uint16_t); |
| 503 | extern void qla24xx_wrt_rsp_reg(struct qla_hw_data *, uint16_t, uint16_t); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 504 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 505 | /* qla82xx related functions */ |
| 506 | |
| 507 | /* PCI related functions */ |
| 508 | extern int qla82xx_pci_config(struct scsi_qla_host *); |
| 509 | extern int qla82xx_pci_mem_read_2M(struct qla_hw_data *, u64, void *, int); |
| 510 | extern int qla82xx_pci_mem_write_2M(struct qla_hw_data *, u64, void *, int); |
| 511 | extern char *qla82xx_pci_info_str(struct scsi_qla_host *, char *); |
| 512 | extern int qla82xx_pci_region_offset(struct pci_dev *, int); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 513 | extern int qla82xx_iospace_config(struct qla_hw_data *); |
| 514 | |
| 515 | /* Initialization related functions */ |
| 516 | extern void qla82xx_reset_chip(struct scsi_qla_host *); |
| 517 | extern void qla82xx_config_rings(struct scsi_qla_host *); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 518 | extern int qla82xx_pinit_from_rom(scsi_qla_host_t *); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 519 | extern void qla82xx_watchdog(scsi_qla_host_t *); |
| 520 | |
| 521 | /* Firmware and flash related functions */ |
| 522 | extern int qla82xx_load_risc(scsi_qla_host_t *, uint32_t *); |
| 523 | extern uint8_t *qla82xx_read_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 524 | uint32_t, uint32_t); |
| 525 | extern int qla82xx_write_optrom_data(struct scsi_qla_host *, uint8_t *, |
| 526 | uint32_t, uint32_t); |
| 527 | |
| 528 | /* Mailbox related functions */ |
| 529 | extern int qla82xx_abort_isp(scsi_qla_host_t *); |
| 530 | extern int qla82xx_restart_isp(scsi_qla_host_t *); |
| 531 | |
| 532 | /* IOCB related functions */ |
| 533 | extern int qla82xx_start_scsi(srb_t *); |
| 534 | |
| 535 | /* Interrupt related */ |
| 536 | extern irqreturn_t qla82xx_intr_handler(int, void *); |
| 537 | extern irqreturn_t qla82xx_msi_handler(int, void *); |
| 538 | extern irqreturn_t qla82xx_msix_default(int, void *); |
| 539 | extern irqreturn_t qla82xx_msix_rsp_q(int, void *); |
| 540 | extern void qla82xx_enable_intrs(struct qla_hw_data *); |
| 541 | extern void qla82xx_disable_intrs(struct qla_hw_data *); |
| 542 | extern void qla82xx_mbx_completion(scsi_qla_host_t *, uint16_t); |
| 543 | extern void qla82xx_poll(int, void *); |
| 544 | extern void qla82xx_init_flags(struct qla_hw_data *); |
| 545 | |
| 546 | /* ISP 8021 hardware related */ |
| 547 | extern int qla82xx_crb_win_lock(struct qla_hw_data *); |
| 548 | extern void qla82xx_crb_win_unlock(struct qla_hw_data *); |
| 549 | extern int qla82xx_pci_get_crb_addr_2M(struct qla_hw_data *, ulong *); |
| 550 | extern int qla82xx_wr_32(struct qla_hw_data *, ulong, u32); |
| 551 | extern int qla82xx_rd_32(struct qla_hw_data *, ulong); |
| 552 | extern int qla82xx_rdmem(struct qla_hw_data *, u64, void *, int); |
| 553 | extern int qla82xx_wrmem(struct qla_hw_data *, u64, void *, int); |
| 554 | extern int qla82xx_check_for_bad_spd(struct qla_hw_data *); |
| 555 | extern int qla82xx_load_fw(scsi_qla_host_t *); |
| 556 | extern int qla82xx_rom_lock(struct qla_hw_data *); |
| 557 | extern void qla82xx_rom_unlock(struct qla_hw_data *); |
| 558 | extern int qla82xx_rom_fast_read(struct qla_hw_data *, int , int *); |
| 559 | extern int qla82xx_do_rom_fast_read(struct qla_hw_data *, int, int *); |
| 560 | extern unsigned long qla82xx_decode_crb_addr(unsigned long); |
| 561 | |
| 562 | /* ISP 8021 IDC */ |
| 563 | extern void qla82xx_clear_drv_active(struct qla_hw_data *); |
| 564 | extern int qla82xx_idc_lock(struct qla_hw_data *); |
| 565 | extern void qla82xx_idc_unlock(struct qla_hw_data *); |
| 566 | extern int qla82xx_device_state_handler(scsi_qla_host_t *); |
| 567 | |
| 568 | extern void qla2x00_set_model_info(scsi_qla_host_t *, uint8_t *, |
| 569 | size_t, char *); |
| 570 | extern int qla82xx_mbx_intr_enable(scsi_qla_host_t *); |
| 571 | extern int qla82xx_mbx_intr_disable(scsi_qla_host_t *); |
| 572 | extern void qla82xx_start_iocbs(srb_t *); |
| 573 | extern int qla82xx_fcoe_ctx_reset(scsi_qla_host_t *); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 574 | |
Giridhar Malavali | 6e98016 | 2010-03-19 17:03:58 -0700 | [diff] [blame] | 575 | /* BSG related functions */ |
| 576 | extern int qla24xx_bsg_request(struct fc_bsg_job *); |
| 577 | extern int qla24xx_bsg_timeout(struct fc_bsg_job *); |
| 578 | extern int qla84xx_reset_chip(scsi_qla_host_t *, uint16_t); |
| 579 | extern int qla2x00_issue_iocb_timeout(scsi_qla_host_t *, void *, |
| 580 | dma_addr_t, size_t, uint32_t); |
| 581 | extern int qla2x00_get_idma_speed(scsi_qla_host_t *, uint16_t, |
| 582 | uint16_t *, uint16_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | #endif /* _QLA_GBL_H */ |