blob: 7769307270589c56fad5f5ced1299bb6704102ff [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smart9413aff2007-04-25 09:53:35 -04004 * Copyright (C) 2004-2007 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
7 * *
8 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04009 * modify it under the terms of version 2 of the GNU General *
10 * Public License as published by the Free Software Foundation. *
11 * This program is distributed in the hope that it will be useful. *
12 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
13 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
14 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
15 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
16 * TO BE LEGALLY INVALID. See the GNU General Public License for *
17 * more details, a copy of which can be found in the file COPYING *
18 * included with this package. *
dea31012005-04-17 16:05:31 -050019 *******************************************************************/
20
James Smart685f0bf2007-04-25 09:53:08 -040021typedef int (*node_filter)(struct lpfc_nodelist *ndlp, void *param);
22
James Smartc01f3202006-08-18 17:47:08 -040023struct fc_rport;
dea31012005-04-17 16:05:31 -050024void lpfc_dump_mem(struct lpfc_hba *, LPFC_MBOXQ_t *, uint16_t);
25void lpfc_read_nv(struct lpfc_hba *, LPFC_MBOXQ_t *);
26int lpfc_read_la(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb,
27 struct lpfc_dmabuf *mp);
28void lpfc_clear_la(struct lpfc_hba *, LPFC_MBOXQ_t *);
James Smart2e0fef82007-06-17 19:56:36 -050029void lpfc_issue_clear_la(struct lpfc_hba *phba, struct lpfc_vport *vport);
dea31012005-04-17 16:05:31 -050030void lpfc_config_link(struct lpfc_hba *, LPFC_MBOXQ_t *);
31int lpfc_read_sparam(struct lpfc_hba *, LPFC_MBOXQ_t *);
32void lpfc_read_config(struct lpfc_hba *, LPFC_MBOXQ_t *);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -050033void lpfc_read_lnk_stat(struct lpfc_hba *, LPFC_MBOXQ_t *);
dea31012005-04-17 16:05:31 -050034int lpfc_reg_login(struct lpfc_hba *, uint32_t, uint8_t *, LPFC_MBOXQ_t *,
35 uint32_t);
36void lpfc_unreg_login(struct lpfc_hba *, uint32_t, LPFC_MBOXQ_t *);
37void lpfc_unreg_did(struct lpfc_hba *, uint32_t, LPFC_MBOXQ_t *);
38void lpfc_init_link(struct lpfc_hba *, LPFC_MBOXQ_t *, uint32_t, uint32_t);
39
dea31012005-04-17 16:05:31 -050040int lpfc_linkdown(struct lpfc_hba *);
41void lpfc_mbx_cmpl_read_la(struct lpfc_hba *, LPFC_MBOXQ_t *);
42
43void lpfc_mbx_cmpl_clear_la(struct lpfc_hba *, LPFC_MBOXQ_t *);
44void lpfc_mbx_cmpl_reg_login(struct lpfc_hba *, LPFC_MBOXQ_t *);
45void lpfc_mbx_cmpl_fabric_reg_login(struct lpfc_hba *, LPFC_MBOXQ_t *);
46void lpfc_mbx_cmpl_ns_reg_login(struct lpfc_hba *, LPFC_MBOXQ_t *);
47void lpfc_mbx_cmpl_fdmi_reg_login(struct lpfc_hba *, LPFC_MBOXQ_t *);
James Smart2e0fef82007-06-17 19:56:36 -050048void lpfc_dequeue_node(struct lpfc_vport *, struct lpfc_nodelist *);
49void lpfc_nlp_set_state(struct lpfc_vport *, struct lpfc_nodelist *, int);
50void lpfc_drop_node(struct lpfc_vport *, struct lpfc_nodelist *);
51void lpfc_set_disctmo(struct lpfc_vport *);
52int lpfc_can_disctmo(struct lpfc_vport *);
53int lpfc_unreg_rpi(struct lpfc_vport *, struct lpfc_nodelist *);
dea31012005-04-17 16:05:31 -050054int lpfc_check_sli_ndlp(struct lpfc_hba *, struct lpfc_sli_ring *,
James Smart2e0fef82007-06-17 19:56:36 -050055 struct lpfc_iocbq *, struct lpfc_nodelist *);
56void lpfc_nlp_init(struct lpfc_vport *, struct lpfc_nodelist *, uint32_t);
James Smart329f9bc2007-04-25 09:53:01 -040057struct lpfc_nodelist *lpfc_nlp_get(struct lpfc_nodelist *);
58int lpfc_nlp_put(struct lpfc_nodelist *);
James Smart2e0fef82007-06-17 19:56:36 -050059struct lpfc_nodelist *lpfc_setup_disc_node(struct lpfc_vport *, uint32_t);
60void lpfc_disc_list_loopmap(struct lpfc_vport *);
61void lpfc_disc_start(struct lpfc_vport *);
62void lpfc_disc_flush_list(struct lpfc_vport *);
dea31012005-04-17 16:05:31 -050063void lpfc_disc_timeout(unsigned long);
dea31012005-04-17 16:05:31 -050064
James Smart2e0fef82007-06-17 19:56:36 -050065struct lpfc_nodelist *__lpfc_findnode_rpi(struct lpfc_vport *, uint16_t);
66struct lpfc_nodelist *lpfc_findnode_rpi(struct lpfc_vport *, uint16_t);
dea31012005-04-17 16:05:31 -050067
68int lpfc_workq_post_event(struct lpfc_hba *, void *, void *, uint32_t);
69int lpfc_do_work(void *);
James Smart2e0fef82007-06-17 19:56:36 -050070int lpfc_disc_state_machine(struct lpfc_vport *, struct lpfc_nodelist *, void *,
dea31012005-04-17 16:05:31 -050071 uint32_t);
72
James Smart2e0fef82007-06-17 19:56:36 -050073int lpfc_check_sparm(struct lpfc_vport *, struct lpfc_nodelist *,
dea31012005-04-17 16:05:31 -050074 struct serv_parm *, uint32_t);
James Smart07951072007-04-25 09:51:38 -040075int lpfc_els_abort(struct lpfc_hba *, struct lpfc_nodelist * ndlp);
dea31012005-04-17 16:05:31 -050076int lpfc_els_abort_flogi(struct lpfc_hba *);
James Smart2e0fef82007-06-17 19:56:36 -050077int lpfc_initial_flogi(struct lpfc_vport *);
78int lpfc_issue_els_plogi(struct lpfc_vport *, uint32_t, uint8_t);
79int lpfc_issue_els_prli(struct lpfc_vport *, struct lpfc_nodelist *, uint8_t);
80int lpfc_issue_els_adisc(struct lpfc_vport *, struct lpfc_nodelist *, uint8_t);
81int lpfc_issue_els_logo(struct lpfc_vport *, struct lpfc_nodelist *, uint8_t);
82int lpfc_issue_els_scr(struct lpfc_vport *, uint32_t, uint8_t);
dea31012005-04-17 16:05:31 -050083int lpfc_els_free_iocb(struct lpfc_hba *, struct lpfc_iocbq *);
James Smart2e0fef82007-06-17 19:56:36 -050084int lpfc_els_rsp_acc(struct lpfc_vport *, uint32_t, struct lpfc_iocbq *,
dea31012005-04-17 16:05:31 -050085 struct lpfc_nodelist *, LPFC_MBOXQ_t *, uint8_t);
James Smart2e0fef82007-06-17 19:56:36 -050086int lpfc_els_rsp_reject(struct lpfc_vport *, uint32_t, struct lpfc_iocbq *,
dea31012005-04-17 16:05:31 -050087 struct lpfc_nodelist *);
James Smart2e0fef82007-06-17 19:56:36 -050088int lpfc_els_rsp_adisc_acc(struct lpfc_vport *, struct lpfc_iocbq *,
dea31012005-04-17 16:05:31 -050089 struct lpfc_nodelist *);
James Smart2e0fef82007-06-17 19:56:36 -050090int lpfc_els_rsp_prli_acc(struct lpfc_vport *, struct lpfc_iocbq *,
dea31012005-04-17 16:05:31 -050091 struct lpfc_nodelist *);
James Smart2e0fef82007-06-17 19:56:36 -050092void lpfc_cancel_retry_delay_tmo(struct lpfc_vport *, struct lpfc_nodelist *);
dea31012005-04-17 16:05:31 -050093void lpfc_els_retry_delay(unsigned long);
94void lpfc_els_retry_delay_handler(struct lpfc_nodelist *);
95void lpfc_els_unsol_event(struct lpfc_hba *, struct lpfc_sli_ring *,
96 struct lpfc_iocbq *);
James Smart2e0fef82007-06-17 19:56:36 -050097int lpfc_els_handle_rscn(struct lpfc_vport *);
98int lpfc_els_flush_rscn(struct lpfc_vport *);
99int lpfc_rscn_payload_check(struct lpfc_vport *, uint32_t);
100void lpfc_els_flush_cmd(struct lpfc_vport *);
101int lpfc_els_disc_adisc(struct lpfc_vport *);
102int lpfc_els_disc_plogi(struct lpfc_vport *);
dea31012005-04-17 16:05:31 -0500103void lpfc_els_timeout(unsigned long);
James Smart2e0fef82007-06-17 19:56:36 -0500104void lpfc_els_timeout_handler(struct lpfc_vport *);
dea31012005-04-17 16:05:31 -0500105
106void lpfc_ct_unsol_event(struct lpfc_hba *, struct lpfc_sli_ring *,
107 struct lpfc_iocbq *);
James Smart2e0fef82007-06-17 19:56:36 -0500108int lpfc_ns_cmd(struct lpfc_vport *, struct lpfc_nodelist *, int);
109int lpfc_fdmi_cmd(struct lpfc_vport *, struct lpfc_nodelist *, int);
dea31012005-04-17 16:05:31 -0500110void lpfc_fdmi_tmo(unsigned long);
James Smart2e0fef82007-06-17 19:56:36 -0500111void lpfc_fdmi_timeout_handler(struct lpfc_vport *vport);
dea31012005-04-17 16:05:31 -0500112
113int lpfc_config_port_prep(struct lpfc_hba *);
114int lpfc_config_port_post(struct lpfc_hba *);
115int lpfc_hba_down_prep(struct lpfc_hba *);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500116int lpfc_hba_down_post(struct lpfc_hba *);
dea31012005-04-17 16:05:31 -0500117void lpfc_hba_init(struct lpfc_hba *, uint32_t *);
118int lpfc_post_buffer(struct lpfc_hba *, struct lpfc_sli_ring *, int, int);
119void lpfc_decode_firmware_rev(struct lpfc_hba *, char *, int);
dea31012005-04-17 16:05:31 -0500120int lpfc_online(struct lpfc_hba *);
James Smart46fa3112007-04-25 09:51:45 -0400121void lpfc_block_mgmt_io(struct lpfc_hba *);
122void lpfc_unblock_mgmt_io(struct lpfc_hba *);
123void lpfc_offline_prep(struct lpfc_hba *);
124void lpfc_offline(struct lpfc_hba *);
dea31012005-04-17 16:05:31 -0500125
dea31012005-04-17 16:05:31 -0500126int lpfc_sli_setup(struct lpfc_hba *);
127int lpfc_sli_queue_setup(struct lpfc_hba *);
dea31012005-04-17 16:05:31 -0500128
129void lpfc_handle_eratt(struct lpfc_hba *);
130void lpfc_handle_latt(struct lpfc_hba *);
David Howells7d12e782006-10-05 14:55:46 +0100131irqreturn_t lpfc_intr_handler(int, void *);
dea31012005-04-17 16:05:31 -0500132
133void lpfc_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *);
134void lpfc_config_ring(struct lpfc_hba *, int, LPFC_MBOXQ_t *);
135void lpfc_config_port(struct lpfc_hba *, LPFC_MBOXQ_t *);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500136void lpfc_kill_board(struct lpfc_hba *, LPFC_MBOXQ_t *);
dea31012005-04-17 16:05:31 -0500137void lpfc_mbox_put(struct lpfc_hba *, LPFC_MBOXQ_t *);
138LPFC_MBOXQ_t *lpfc_mbox_get(struct lpfc_hba *);
James Smarta309a6b2006-08-01 07:33:43 -0400139int lpfc_mbox_tmo_val(struct lpfc_hba *, int);
dea31012005-04-17 16:05:31 -0500140
James Smarted957682007-06-17 19:56:37 -0500141void lpfc_config_hbq(struct lpfc_hba *, struct lpfc_hbq_init *, uint32_t ,
142 LPFC_MBOXQ_t *);
143struct lpfc_hbq_entry * lpfc_sli_next_hbq_slot(struct lpfc_hba *, uint32_t);
144
dea31012005-04-17 16:05:31 -0500145int lpfc_mem_alloc(struct lpfc_hba *);
146void lpfc_mem_free(struct lpfc_hba *);
147
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500148void lpfc_poll_timeout(unsigned long ptr);
149void lpfc_poll_start_timer(struct lpfc_hba * phba);
150void lpfc_sli_poll_fcp_ring(struct lpfc_hba * hba);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400151struct lpfc_iocbq * lpfc_sli_get_iocbq(struct lpfc_hba *);
James Bottomley604a3e32005-10-29 10:28:33 -0500152void lpfc_sli_release_iocbq(struct lpfc_hba * phba, struct lpfc_iocbq * iocb);
James Smart2e0fef82007-06-17 19:56:36 -0500153void __lpfc_sli_release_iocbq(struct lpfc_hba * phba, struct lpfc_iocbq * iocb);
James Bottomley604a3e32005-10-29 10:28:33 -0500154uint16_t lpfc_sli_next_iotag(struct lpfc_hba * phba, struct lpfc_iocbq * iocb);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500155
James Smart92908312006-03-07 15:04:13 -0500156void lpfc_reset_barrier(struct lpfc_hba * phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500157int lpfc_sli_brdready(struct lpfc_hba *, uint32_t);
158int lpfc_sli_brdkill(struct lpfc_hba *);
159int lpfc_sli_brdreset(struct lpfc_hba *);
160int lpfc_sli_brdrestart(struct lpfc_hba *);
dea31012005-04-17 16:05:31 -0500161int lpfc_sli_hba_setup(struct lpfc_hba *);
James Smart2e0fef82007-06-17 19:56:36 -0500162int lpfc_sli_host_down(struct lpfc_vport *);
dea31012005-04-17 16:05:31 -0500163int lpfc_sli_hba_down(struct lpfc_hba *);
164int lpfc_sli_issue_mbox(struct lpfc_hba *, LPFC_MBOXQ_t *, uint32_t);
165int lpfc_sli_handle_mb_event(struct lpfc_hba *);
James Smartb4c02652006-07-06 15:50:43 -0400166int lpfc_sli_flush_mbox_queue(struct lpfc_hba *);
dea31012005-04-17 16:05:31 -0500167int lpfc_sli_handle_slow_ring_event(struct lpfc_hba *,
168 struct lpfc_sli_ring *, uint32_t);
169void lpfc_sli_def_mbox_cmpl(struct lpfc_hba *, LPFC_MBOXQ_t *);
170int lpfc_sli_issue_iocb(struct lpfc_hba *, struct lpfc_sli_ring *,
171 struct lpfc_iocbq *, uint32_t);
172void lpfc_sli_pcimem_bcopy(void *, void *, uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -0500173void lpfc_sli_abort_iocb_ring(struct lpfc_hba *, struct lpfc_sli_ring *);
dea31012005-04-17 16:05:31 -0500174int lpfc_sli_ringpostbuf_put(struct lpfc_hba *, struct lpfc_sli_ring *,
175 struct lpfc_dmabuf *);
176struct lpfc_dmabuf *lpfc_sli_ringpostbuf_get(struct lpfc_hba *,
177 struct lpfc_sli_ring *,
178 dma_addr_t);
James Smarted957682007-06-17 19:56:37 -0500179int lpfc_sli_hbqbuf_fill_hbq(struct lpfc_hba *);
180void lpfc_sli_hbqbuf_free(struct lpfc_hba *, void *, dma_addr_t);
181void lpfc_sli_hbqbuf_free_all(struct lpfc_hba *);
182struct hbq_dmabuf *lpfc_sli_hbqbuf_find(struct lpfc_hba *, uint32_t);
183void lpfc_sli_free_hbq(struct lpfc_hba *, struct hbq_dmabuf *);
184int lpfc_sli_hbq_size(void);
James Smart07951072007-04-25 09:51:38 -0400185int lpfc_sli_issue_abort_iotag(struct lpfc_hba *, struct lpfc_sli_ring *,
186 struct lpfc_iocbq *);
dea31012005-04-17 16:05:31 -0500187int lpfc_sli_sum_iocb(struct lpfc_hba *, struct lpfc_sli_ring *, uint16_t,
James Smart2e0fef82007-06-17 19:56:36 -0500188 uint64_t, lpfc_ctx_cmd);
dea31012005-04-17 16:05:31 -0500189int lpfc_sli_abort_iocb(struct lpfc_hba *, struct lpfc_sli_ring *, uint16_t,
James Smart2e0fef82007-06-17 19:56:36 -0500190 uint64_t, uint32_t, lpfc_ctx_cmd);
dea31012005-04-17 16:05:31 -0500191
192void lpfc_mbox_timeout(unsigned long);
193void lpfc_mbox_timeout_handler(struct lpfc_hba *);
dea31012005-04-17 16:05:31 -0500194
James Smart2e0fef82007-06-17 19:56:36 -0500195struct lpfc_nodelist *lpfc_findnode_did(struct lpfc_vport *, uint32_t);
196struct lpfc_nodelist *lpfc_findnode_wwpn(struct lpfc_vport *,
197 struct lpfc_name *);
dea31012005-04-17 16:05:31 -0500198
199int lpfc_sli_issue_mbox_wait(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq,
200 uint32_t timeout);
201
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -0400202int lpfc_sli_issue_iocb_wait(struct lpfc_hba * phba,
203 struct lpfc_sli_ring * pring,
204 struct lpfc_iocbq * piocb,
205 struct lpfc_iocbq * prspiocbq,
206 uint32_t timeout);
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -0400207void lpfc_sli_abort_fcp_cmpl(struct lpfc_hba * phba,
208 struct lpfc_iocbq * cmdiocb,
209 struct lpfc_iocbq * rspiocb);
dea31012005-04-17 16:05:31 -0500210
James Smarted957682007-06-17 19:56:37 -0500211void *lpfc_hbq_alloc(struct lpfc_hba *, int, dma_addr_t *);
212void lpfc_hbq_free(struct lpfc_hba *, void *, dma_addr_t);
213
dea31012005-04-17 16:05:31 -0500214void *lpfc_mbuf_alloc(struct lpfc_hba *, int, dma_addr_t *);
James Smart2e0fef82007-06-17 19:56:36 -0500215void __lpfc_mbuf_free(struct lpfc_hba *, void *, dma_addr_t);
dea31012005-04-17 16:05:31 -0500216void lpfc_mbuf_free(struct lpfc_hba *, void *, dma_addr_t);
217
218/* Function prototypes. */
219const char* lpfc_info(struct Scsi_Host *);
James Smart47a86172007-04-25 09:53:22 -0400220void lpfc_scan_start(struct Scsi_Host *);
221int lpfc_scan_finished(struct Scsi_Host *, unsigned long);
222
dea31012005-04-17 16:05:31 -0500223void lpfc_get_cfgparam(struct lpfc_hba *);
James Smart2e0fef82007-06-17 19:56:36 -0500224int lpfc_alloc_sysfs_attr(struct lpfc_vport *);
225void lpfc_free_sysfs_attr(struct lpfc_vport *);
226extern struct class_device_attribute *lpfc_hba_attrs[];
dea31012005-04-17 16:05:31 -0500227extern struct scsi_host_template lpfc_template;
228extern struct fc_function_template lpfc_transport_functions;
James Smarted957682007-06-17 19:56:37 -0500229extern int lpfc_sli_mode;
dea31012005-04-17 16:05:31 -0500230
James Smart2e0fef82007-06-17 19:56:36 -0500231void lpfc_get_hba_sym_node_name(struct lpfc_hba *phba, uint8_t *symbp);
James Smartc01f3202006-08-18 17:47:08 -0400232void lpfc_terminate_rport_io(struct fc_rport *);
233void lpfc_dev_loss_tmo_callbk(struct fc_rport *rport);
dea31012005-04-17 16:05:31 -0500234
James Smart2e0fef82007-06-17 19:56:36 -0500235struct lpfc_vport *lpfc_create_port(struct lpfc_hba *, int);
236void lpfc_post_hba_setup_vport_init(struct lpfc_vport *);
237void destroy_port(struct lpfc_vport *);
238
dea31012005-04-17 16:05:31 -0500239#define ScsiResult(host_code, scsi_code) (((host_code) << 16) | scsi_code)