]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/isp/isp_library.h
This commit was generated by cvs2svn to compensate for changes in r161655,
[FreeBSD/FreeBSD.git] / sys / dev / isp / isp_library.h
1 /* $FreeBSD$ */
2 /*-
3  * Qlogic Host Adapter Library Functions
4  *
5  * Copyright (c) 1999-2006 by Matthew Jacob
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice immediately at the beginning of the file, without modification,
13  *    this list of conditions, and the following disclaimer.
14  * 2. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  */
30 #ifndef _ISP_LIBRARY_H
31 #define _ISP_LIBRARY_H
32
33 extern int isp_save_xs(ispsoftc_t *, XS_T *, uint16_t *);
34 extern XS_T *isp_find_xs(ispsoftc_t *, uint16_t);
35 extern uint16_t isp_find_handle(ispsoftc_t *, XS_T *);
36 extern int isp_handle_index(uint16_t);
37 extern uint16_t isp_index_handle(int);
38 extern void isp_destroy_handle(ispsoftc_t *, uint16_t);
39 extern int isp_getrqentry(ispsoftc_t *, uint16_t *, uint16_t *, void **);
40 extern void isp_print_qentry (ispsoftc_t *, char *, int, void *);
41 extern void isp_print_bytes(ispsoftc_t *, char *, int, void *);
42 extern int isp_fc_runstate(ispsoftc_t *, int);
43 extern void isp_copy_out_hdr(ispsoftc_t *, isphdr_t *, isphdr_t *);
44 extern void isp_copy_in_hdr(ispsoftc_t *, isphdr_t *, isphdr_t *);
45 extern int isp_get_response_type(ispsoftc_t *, isphdr_t *);
46 extern void
47 isp_put_request(ispsoftc_t *, ispreq_t *, ispreq_t *);
48 extern void
49 isp_put_request_t2(ispsoftc_t *, ispreqt2_t *, ispreqt2_t *);
50 extern void
51 isp_put_request_t2e(ispsoftc_t *, ispreqt2e_t *, ispreqt2e_t *);
52 extern void
53 isp_put_request_t3(ispsoftc_t *, ispreqt3_t *, ispreqt3_t *);
54 extern void
55 isp_put_request_t3e(ispsoftc_t *, ispreqt3e_t *, ispreqt3e_t *);
56 extern void
57 isp_put_extended_request(ispsoftc_t *, ispextreq_t *, ispextreq_t *);
58 extern void
59 isp_put_cont_req(ispsoftc_t *, ispcontreq_t *, ispcontreq_t *);
60 extern void
61 isp_put_cont64_req(ispsoftc_t *, ispcontreq64_t *, ispcontreq64_t *);
62 extern void
63 isp_get_response(ispsoftc_t *, ispstatusreq_t *, ispstatusreq_t *);
64 extern void
65 isp_get_response_x(ispsoftc_t *, ispstatus_cont_t *, ispstatus_cont_t *);
66 extern void
67 isp_get_rio2(ispsoftc_t *, isp_rio2_t *, isp_rio2_t *);
68 extern void
69 isp_put_icb(ispsoftc_t *, isp_icb_t *, isp_icb_t *);
70 extern void
71 isp_get_pdb(ispsoftc_t *, isp_pdb_t *, isp_pdb_t *);
72 extern void
73 isp_get_ct_hdr(ispsoftc_t *isp, ct_hdr_t *, ct_hdr_t *);
74 extern void
75 isp_put_sns_request(ispsoftc_t *, sns_screq_t *, sns_screq_t *);
76 extern void
77 isp_put_gid_ft_request(ispsoftc_t *, sns_gid_ft_req_t *,
78     sns_gid_ft_req_t *);
79 extern void
80 isp_put_gxn_id_request(ispsoftc_t *, sns_gxn_id_req_t *,
81     sns_gxn_id_req_t *);
82 extern void
83 isp_get_sns_response(ispsoftc_t *, sns_scrsp_t *, sns_scrsp_t *, int);
84 extern void
85 isp_get_gid_ft_response(ispsoftc_t *, sns_gid_ft_rsp_t *,
86     sns_gid_ft_rsp_t *, int);
87 extern void
88 isp_get_gxn_id_response(ispsoftc_t *, sns_gxn_id_rsp_t *,
89     sns_gxn_id_rsp_t *);
90 extern void
91 isp_get_gff_id_response(ispsoftc_t *, sns_gff_id_rsp_t *,
92     sns_gff_id_rsp_t *);
93 extern void
94 isp_get_ga_nxt_response(ispsoftc_t *, sns_ga_nxt_rsp_t *,
95     sns_ga_nxt_rsp_t *);
96
97 #ifdef  ISP_TARGET_MODE
98 #if     defined(__NetBSD__) || defined(__OpenBSD__)
99 #include <dev/ic/isp_target.h>
100 #elif   defined(__FreeBSD__)
101 #include <dev/isp/isp_target.h>
102 #else
103 #include "isp_target.h"
104 #endif
105
106 extern int isp_save_xs_tgt(ispsoftc_t *, void *, uint16_t *);
107 extern void *isp_find_xs_tgt(ispsoftc_t *, uint16_t);
108 extern uint16_t isp_find_tgt_handle(ispsoftc_t *, void *);
109 extern void isp_destroy_tgt_handle(ispsoftc_t *, uint16_t);
110
111 extern void
112 isp_put_atio(ispsoftc_t *, at_entry_t *, at_entry_t *);
113 extern void
114 isp_get_atio(ispsoftc_t *, at_entry_t *, at_entry_t *);
115 extern void
116 isp_put_atio2(ispsoftc_t *, at2_entry_t *, at2_entry_t *);
117 extern void
118 isp_put_atio2e(ispsoftc_t *, at2e_entry_t *, at2e_entry_t *);
119 extern void
120 isp_get_atio2(ispsoftc_t *, at2_entry_t *, at2_entry_t *);
121 extern void
122 isp_get_atio2e(ispsoftc_t *, at2e_entry_t *, at2e_entry_t *);
123 extern void
124 isp_put_ctio(ispsoftc_t *, ct_entry_t *, ct_entry_t *);
125 extern void
126 isp_get_ctio(ispsoftc_t *, ct_entry_t *, ct_entry_t *);
127 extern void
128 isp_put_ctio2(ispsoftc_t *, ct2_entry_t *, ct2_entry_t *);
129 extern void
130 isp_put_ctio2e(ispsoftc_t *, ct2e_entry_t *, ct2e_entry_t *);
131 extern void
132 isp_get_ctio2(ispsoftc_t *, ct2_entry_t *, ct2_entry_t *);
133 extern void
134 isp_get_ctio2e(ispsoftc_t *, ct2e_entry_t *, ct2e_entry_t *);
135 extern void
136 isp_put_enable_lun(ispsoftc_t *, lun_entry_t *, lun_entry_t *);
137 extern void
138 isp_get_enable_lun(ispsoftc_t *, lun_entry_t *, lun_entry_t *);
139 extern void
140 isp_put_notify(ispsoftc_t *, in_entry_t *, in_entry_t *);
141 extern void
142 isp_get_notify(ispsoftc_t *, in_entry_t *, in_entry_t *);
143 extern void
144 isp_put_notify_fc(ispsoftc_t *, in_fcentry_t *, in_fcentry_t *);
145 extern void
146 isp_put_notify_fc_e(ispsoftc_t *, in_fcentry_e_t *, in_fcentry_e_t *);
147 extern void
148 isp_get_notify_fc(ispsoftc_t *, in_fcentry_t *, in_fcentry_t *);
149 extern void
150 isp_get_notify_fc_e(ispsoftc_t *, in_fcentry_e_t *, in_fcentry_e_t *);
151 extern void
152 isp_put_notify_ack(ispsoftc_t *, na_entry_t *, na_entry_t *);
153 extern void
154 isp_get_notify_ack(ispsoftc_t *, na_entry_t *, na_entry_t *);
155 extern void
156 isp_put_notify_ack_fc(ispsoftc_t *, na_fcentry_t *, na_fcentry_t *);
157 extern void
158 isp_put_notify_ack_fc_e(ispsoftc_t *, na_fcentry_e_t *, na_fcentry_e_t *);
159 extern void
160 isp_get_notify_ack_fc(ispsoftc_t *, na_fcentry_t *, na_fcentry_t *);
161 extern void
162 isp_get_notify_ack_fc_e(ispsoftc_t *, na_fcentry_e_t *, na_fcentry_e_t *);
163 #endif  /* ISP_TARGET_MODE */
164 #endif  /* _ISP_LIBRARY_H */