isp_library.h revision 155228
161985Scokane/* $FreeBSD: head/sys/dev/isp/isp_library.h 155228 2006-02-02 21:31:34Z mjacob $ */
261985Scokane/*-
361985Scokane * Qlogic Host Adapter Library Functions
461985Scokane *
561985Scokane * Copyright (c) 1999-2006 by Matthew Jacob
661985Scokane * All rights reserved.
761985Scokane *
861985Scokane * Redistribution and use in source and binary forms, with or without
961985Scokane * modification, are permitted provided that the following conditions
1061985Scokane * are met:
1161985Scokane * 1. Redistributions of source code must retain the above copyright
1261985Scokane *    notice immediately at the beginning of the file, without modification,
1361985Scokane *    this list of conditions, and the following disclaimer.
1461985Scokane * 2. The name of the author may not be used to endorse or promote products
1561985Scokane *    derived from this software without specific prior written permission.
1661985Scokane *
1761985Scokane * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1861985Scokane * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1961985Scokane * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2061985Scokane * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
2161985Scokane * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2261985Scokane * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2361985Scokane * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2461985Scokane * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2561985Scokane * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2661985Scokane * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2761985Scokane * SUCH DAMAGE.
2861985Scokane *
2961985Scokane */
3061985Scokane#ifndef	_ISP_LIBRARY_H
3161985Scokane#define	_ISP_LIBRARY_H
3261985Scokane
3361985Scokaneextern int isp_save_xs(ispsoftc_t *, XS_T *, u_int16_t *);
3461985Scokaneextern XS_T *isp_find_xs(ispsoftc_t *, u_int16_t);
3561985Scokaneextern u_int16_t isp_find_handle(ispsoftc_t *, XS_T *);
3661985Scokaneextern int isp_handle_index(u_int16_t);
3761985Scokaneextern u_int16_t isp_index_handle(int);
3861985Scokaneextern void isp_destroy_handle(ispsoftc_t *, u_int16_t);
3961985Scokaneextern int isp_getrqentry(ispsoftc_t *, u_int16_t *, u_int16_t *, void **);
4061985Scokaneextern void isp_print_qentry (ispsoftc_t *, char *, int, void *);
4161985Scokaneextern void isp_print_bytes(ispsoftc_t *, char *, int, void *);
4261985Scokaneextern int isp_fc_runstate(ispsoftc_t *, int);
4361985Scokaneextern void isp_copy_out_hdr(ispsoftc_t *, isphdr_t *, isphdr_t *);
4461985Scokaneextern void isp_copy_in_hdr(ispsoftc_t *, isphdr_t *, isphdr_t *);
4562028Scokaneextern int isp_get_response_type(ispsoftc_t *, isphdr_t *);
4662028Scokaneextern void
4761985Scokaneisp_put_request(ispsoftc_t *, ispreq_t *, ispreq_t *);
4862028Scokaneextern void
4961985Scokaneisp_put_request_t2(ispsoftc_t *, ispreqt2_t *, ispreqt2_t *);
5061985Scokaneextern void
5162028Scokaneisp_put_request_t2e(ispsoftc_t *, ispreqt2e_t *, ispreqt2e_t *);
5262028Scokaneextern void
5362028Scokaneisp_put_request_t3(ispsoftc_t *, ispreqt3_t *, ispreqt3_t *);
5461985Scokaneextern void
5561985Scokaneisp_put_request_t3e(ispsoftc_t *, ispreqt3e_t *, ispreqt3e_t *);
5661985Scokaneextern void
5761985Scokaneisp_put_extended_request(ispsoftc_t *, ispextreq_t *, ispextreq_t *);
5861985Scokaneextern void
5961985Scokaneisp_put_cont_req(ispsoftc_t *, ispcontreq_t *, ispcontreq_t *);
6061985Scokaneextern void
6161985Scokaneisp_put_cont64_req(ispsoftc_t *, ispcontreq64_t *, ispcontreq64_t *);
62extern void
63isp_get_response(ispsoftc_t *, ispstatusreq_t *, ispstatusreq_t *);
64extern void
65isp_get_response_x(ispsoftc_t *, ispstatus_cont_t *, ispstatus_cont_t *);
66extern void
67isp_get_rio2(ispsoftc_t *, isp_rio2_t *, isp_rio2_t *);
68extern void
69isp_put_icb(ispsoftc_t *, isp_icb_t *, isp_icb_t *);
70extern void
71isp_get_pdb(ispsoftc_t *, isp_pdb_t *, isp_pdb_t *);
72extern void
73isp_get_ct_hdr(ispsoftc_t *isp, ct_hdr_t *, ct_hdr_t *);
74extern void
75isp_put_sns_request(ispsoftc_t *, sns_screq_t *, sns_screq_t *);
76extern void
77isp_put_gid_ft_request(ispsoftc_t *, sns_gid_ft_req_t *,
78    sns_gid_ft_req_t *);
79extern void
80isp_put_gxn_id_request(ispsoftc_t *, sns_gxn_id_req_t *,
81    sns_gxn_id_req_t *);
82extern void
83isp_get_sns_response(ispsoftc_t *, sns_scrsp_t *, sns_scrsp_t *, int);
84extern void
85isp_get_gid_ft_response(ispsoftc_t *, sns_gid_ft_rsp_t *,
86    sns_gid_ft_rsp_t *, int);
87extern void
88isp_get_gxn_id_response(ispsoftc_t *, sns_gxn_id_rsp_t *,
89    sns_gxn_id_rsp_t *);
90extern void
91isp_get_gff_id_response(ispsoftc_t *, sns_gff_id_rsp_t *,
92    sns_gff_id_rsp_t *);
93extern void
94isp_get_ga_nxt_response(ispsoftc_t *, sns_ga_nxt_rsp_t *,
95    sns_ga_nxt_rsp_t *);
96
97#ifdef	ISP_TARGET_MODE
98#include <dev/isp/isp_target.h>
99
100extern int isp_save_xs_tgt(ispsoftc_t *, void *, u_int16_t *);
101extern void *isp_find_xs_tgt(ispsoftc_t *, u_int16_t);
102extern u_int16_t isp_find_tgt_handle(ispsoftc_t *, void *);
103extern void isp_destroy_tgt_handle(ispsoftc_t *, u_int16_t);
104
105extern void
106isp_put_atio(ispsoftc_t *, at_entry_t *, at_entry_t *);
107extern void
108isp_get_atio(ispsoftc_t *, at_entry_t *, at_entry_t *);
109extern void
110isp_put_atio2(ispsoftc_t *, at2_entry_t *, at2_entry_t *);
111extern void
112isp_put_atio2e(ispsoftc_t *, at2e_entry_t *, at2e_entry_t *);
113extern void
114isp_get_atio2(ispsoftc_t *, at2_entry_t *, at2_entry_t *);
115extern void
116isp_get_atio2e(ispsoftc_t *, at2e_entry_t *, at2e_entry_t *);
117extern void
118isp_put_ctio(ispsoftc_t *, ct_entry_t *, ct_entry_t *);
119extern void
120isp_get_ctio(ispsoftc_t *, ct_entry_t *, ct_entry_t *);
121extern void
122isp_put_ctio2(ispsoftc_t *, ct2_entry_t *, ct2_entry_t *);
123extern void
124isp_put_ctio2e(ispsoftc_t *, ct2e_entry_t *, ct2e_entry_t *);
125extern void
126isp_get_ctio2(ispsoftc_t *, ct2_entry_t *, ct2_entry_t *);
127extern void
128isp_get_ctio2e(ispsoftc_t *, ct2e_entry_t *, ct2e_entry_t *);
129extern void
130isp_put_enable_lun(ispsoftc_t *, lun_entry_t *, lun_entry_t *);
131extern void
132isp_get_enable_lun(ispsoftc_t *, lun_entry_t *, lun_entry_t *);
133extern void
134isp_put_notify(ispsoftc_t *, in_entry_t *, in_entry_t *);
135extern void
136isp_get_notify(ispsoftc_t *, in_entry_t *, in_entry_t *);
137extern void
138isp_put_notify_fc(ispsoftc_t *, in_fcentry_t *, in_fcentry_t *);
139extern void
140isp_put_notify_fc_e(ispsoftc_t *, in_fcentry_e_t *, in_fcentry_e_t *);
141extern void
142isp_get_notify_fc(ispsoftc_t *, in_fcentry_t *, in_fcentry_t *);
143extern void
144isp_get_notify_fc_e(ispsoftc_t *, in_fcentry_e_t *, in_fcentry_e_t *);
145extern void
146isp_put_notify_ack(ispsoftc_t *, na_entry_t *, na_entry_t *);
147extern void
148isp_get_notify_ack(ispsoftc_t *, na_entry_t *, na_entry_t *);
149extern void
150isp_put_notify_ack_fc(ispsoftc_t *, na_fcentry_t *, na_fcentry_t *);
151extern void
152isp_put_notify_ack_fc_e(ispsoftc_t *, na_fcentry_e_t *, na_fcentry_e_t *);
153extern void
154isp_get_notify_ack_fc(ispsoftc_t *, na_fcentry_t *, na_fcentry_t *);
155extern void
156isp_get_notify_ack_fc_e(ispsoftc_t *, na_fcentry_e_t *, na_fcentry_e_t *);
157#endif	/* ISP_TARGET_MODE */
158#endif	/* _ISP_LIBRARY_H */
159