153af7d22SMatt Jacob /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni *
41b760be4SAlexander Motin * Copyright (c) 2009-2020 Alexander Motin <mav@FreeBSD.org>
52df76c16SMatt Jacob * Copyright (c) 1997-2009 by Matthew Jacob
653af7d22SMatt Jacob * All rights reserved.
753af7d22SMatt Jacob *
853af7d22SMatt Jacob * Redistribution and use in source and binary forms, with or without
953af7d22SMatt Jacob * modification, are permitted provided that the following conditions
1053af7d22SMatt Jacob * are met:
1153af7d22SMatt Jacob *
12e48b2487SMatt Jacob * 1. Redistributions of source code must retain the above copyright
13e48b2487SMatt Jacob * notice, this list of conditions and the following disclaimer.
14e48b2487SMatt Jacob * 2. Redistributions in binary form must reproduce the above copyright
15e48b2487SMatt Jacob * notice, this list of conditions and the following disclaimer in the
16e48b2487SMatt Jacob * documentation and/or other materials provided with the distribution.
17e48b2487SMatt Jacob *
18e48b2487SMatt Jacob * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1953af7d22SMatt Jacob * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2053af7d22SMatt Jacob * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21e48b2487SMatt Jacob * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
22e48b2487SMatt Jacob * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2353af7d22SMatt Jacob * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2453af7d22SMatt Jacob * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2553af7d22SMatt Jacob * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2653af7d22SMatt Jacob * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2753af7d22SMatt Jacob * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2853af7d22SMatt Jacob * SUCH DAMAGE.
292df76c16SMatt Jacob *
3053af7d22SMatt Jacob */
3153af7d22SMatt Jacob #ifndef _ISP_LIBRARY_H
3253af7d22SMatt Jacob #define _ISP_LIBRARY_H
3353af7d22SMatt Jacob
342df76c16SMatt Jacob /*
352df76c16SMatt Jacob * Common command shipping routine.
362df76c16SMatt Jacob *
372df76c16SMatt Jacob * This used to be platform specific, but basically once you get the segment
382df76c16SMatt Jacob * stuff figured out, you can make all the code in one spot.
392df76c16SMatt Jacob */
40f6854a0cSAlexander Motin int isp_send_cmd(ispsoftc_t *, void *, void *, uint32_t);
412df76c16SMatt Jacob
422df76c16SMatt Jacob /*
432df76c16SMatt Jacob * Handle management functions.
442df76c16SMatt Jacob *
452df76c16SMatt Jacob * These handles are associate with a command.
462df76c16SMatt Jacob */
47970ceb2fSAlexander Motin uint32_t isp_allocate_handle(ispsoftc_t *, void *, int);
48970ceb2fSAlexander Motin void *isp_find_xs(ispsoftc_t *, uint32_t);
49970ceb2fSAlexander Motin uint32_t isp_find_handle(ispsoftc_t *, void *);
502df76c16SMatt Jacob void isp_destroy_handle(ispsoftc_t *, uint32_t);
512df76c16SMatt Jacob
522df76c16SMatt Jacob /*
532df76c16SMatt Jacob * Request Queue allocation
542df76c16SMatt Jacob */
55a93d2db0SAlexander Motin static inline int
isp_rqentry_avail(ispsoftc_t * isp,uint32_t num)560f99cb55SAlexander Motin isp_rqentry_avail(ispsoftc_t *isp, uint32_t num)
570f99cb55SAlexander Motin {
580f99cb55SAlexander Motin if (ISP_QAVAIL(isp) >= num)
590f99cb55SAlexander Motin return (1);
600f99cb55SAlexander Motin /* We don't have enough in cached. Reread the hardware. */
610f99cb55SAlexander Motin isp->isp_reqodx = ISP_READ(isp, BIU2400_REQOUTP);
620f99cb55SAlexander Motin return (ISP_QAVAIL(isp) >= num);
630f99cb55SAlexander Motin }
640f99cb55SAlexander Motin
65a93d2db0SAlexander Motin static inline void *
isp_getrqentry(ispsoftc_t * isp)660f99cb55SAlexander Motin isp_getrqentry(ispsoftc_t *isp)
670f99cb55SAlexander Motin {
680f99cb55SAlexander Motin if (!isp_rqentry_avail(isp, 1))
690f99cb55SAlexander Motin return (NULL);
700f99cb55SAlexander Motin return (ISP_QUEUE_ENTRY(isp->isp_rquest, isp->isp_reqidx));
710f99cb55SAlexander Motin }
722df76c16SMatt Jacob
732df76c16SMatt Jacob /*
742df76c16SMatt Jacob * Queue Entry debug functions
752df76c16SMatt Jacob */
762df76c16SMatt Jacob void isp_print_qentry (ispsoftc_t *, const char *, int, void *);
772df76c16SMatt Jacob void isp_print_bytes(ispsoftc_t *, const char *, int, void *);
782df76c16SMatt Jacob
792df76c16SMatt Jacob /*
802df76c16SMatt Jacob * Fibre Channel specific routines and data.
812df76c16SMatt Jacob */
822df76c16SMatt Jacob extern const char *isp_class3_roles[4];
832df76c16SMatt Jacob int isp_fc_runstate(ispsoftc_t *, int, int);
842df76c16SMatt Jacob void isp_dump_portdb(ispsoftc_t *, int);
85387d8239SMatt Jacob void isp_gen_role_str(char *, size_t, uint16_t);
862df76c16SMatt Jacob
872df76c16SMatt Jacob const char *isp_fc_fw_statename(int);
882df76c16SMatt Jacob const char *isp_fc_loop_statename(int);
892df76c16SMatt Jacob const char *isp_fc_toponame(fcparam *);
902df76c16SMatt Jacob
912df76c16SMatt Jacob /*
922df76c16SMatt Jacob * Cleanup
932df76c16SMatt Jacob */
942df76c16SMatt Jacob void isp_clear_commands(ispsoftc_t *);
952df76c16SMatt Jacob
962df76c16SMatt Jacob /*
972df76c16SMatt Jacob * Put/Get routines to push from CPU view to device view
982df76c16SMatt Jacob * or to pull from device view to CPU view for various
992df76c16SMatt Jacob * data structures (IOCB)
1002df76c16SMatt Jacob */
1012df76c16SMatt Jacob void isp_put_hdr(ispsoftc_t *, isphdr_t *, isphdr_t *);
1022df76c16SMatt Jacob void isp_get_hdr(ispsoftc_t *, isphdr_t *, isphdr_t *);
1032df76c16SMatt Jacob int isp_get_response_type(ispsoftc_t *, isphdr_t *);
1042df76c16SMatt Jacob void isp_put_marker_24xx(ispsoftc_t *, isp_marker_24xx_t *, isp_marker_24xx_t *);
1052df76c16SMatt Jacob void isp_put_request_t7(ispsoftc_t *, ispreqt7_t *, ispreqt7_t *);
1062df76c16SMatt Jacob void isp_put_24xx_tmf(ispsoftc_t *, isp24xx_tmf_t *, isp24xx_tmf_t *);
1072df76c16SMatt Jacob void isp_put_24xx_abrt(ispsoftc_t *, isp24xx_abrt_t *, isp24xx_abrt_t *);
1082df76c16SMatt Jacob void isp_put_cont64_req(ispsoftc_t *, ispcontreq64_t *, ispcontreq64_t *);
109387d8239SMatt Jacob void isp_get_cont_response(ispsoftc_t *, ispstatus_cont_t *, ispstatus_cont_t *);
1102df76c16SMatt Jacob void isp_get_24xx_response(ispsoftc_t *, isp24xx_statusreq_t *, isp24xx_statusreq_t *);
1112df76c16SMatt Jacob void isp_get_24xx_abrt(ispsoftc_t *, isp24xx_abrt_t *, isp24xx_abrt_t *);
1122df76c16SMatt Jacob void isp_put_icb_2400(ispsoftc_t *, isp_icb_2400_t *, isp_icb_2400_t *);
1132df76c16SMatt Jacob void isp_put_icb_2400_vpinfo(ispsoftc_t *, isp_icb_2400_vpinfo_t *, isp_icb_2400_vpinfo_t *);
1142df76c16SMatt Jacob void isp_put_vp_port_info(ispsoftc_t *, vp_port_info_t *, vp_port_info_t *);
1152df76c16SMatt Jacob void isp_get_vp_port_info(ispsoftc_t *, vp_port_info_t *, vp_port_info_t *);
1162df76c16SMatt Jacob void isp_put_vp_ctrl_info(ispsoftc_t *, vp_ctrl_info_t *, vp_ctrl_info_t *);
1172df76c16SMatt Jacob void isp_get_vp_ctrl_info(ispsoftc_t *, vp_ctrl_info_t *, vp_ctrl_info_t *);
1182df76c16SMatt Jacob void isp_put_vp_modify(ispsoftc_t *, vp_modify_t *, vp_modify_t *);
1192df76c16SMatt Jacob void isp_get_vp_modify(ispsoftc_t *, vp_modify_t *, vp_modify_t *);
1202df76c16SMatt Jacob void isp_get_pdb_24xx(ispsoftc_t *, isp_pdb_24xx_t *, isp_pdb_24xx_t *);
121b6983e5fSAlexander Motin void isp_get_pnhle_24xx(ispsoftc_t *, isp_pnhle_24xx_t *, isp_pnhle_24xx_t *);
1222df76c16SMatt Jacob void isp_get_ridacq(ispsoftc_t *, isp_ridacq_t *, isp_ridacq_t *);
1232df76c16SMatt Jacob void isp_get_plogx(ispsoftc_t *, isp_plogx_t *, isp_plogx_t *);
1242df76c16SMatt Jacob void isp_put_plogx(ispsoftc_t *, isp_plogx_t *, isp_plogx_t *);
1252df76c16SMatt Jacob void isp_get_ct_pt(ispsoftc_t *isp, isp_ct_pt_t *, isp_ct_pt_t *);
1262df76c16SMatt Jacob void isp_put_ct_pt(ispsoftc_t *isp, isp_ct_pt_t *, isp_ct_pt_t *);
1272df76c16SMatt Jacob void isp_put_gid_ft_request(ispsoftc_t *, sns_gid_ft_req_t *, sns_gid_ft_req_t *);
128a94fab67SAlexander Motin void isp_get_gid_xx_response(ispsoftc_t *, sns_gid_xx_rsp_t *, sns_gid_xx_rsp_t *, int);
1292df76c16SMatt Jacob void isp_get_gxn_id_response(ispsoftc_t *, sns_gxn_id_rsp_t *, sns_gxn_id_rsp_t *);
130a94fab67SAlexander Motin void isp_get_gft_id_response(ispsoftc_t *, sns_gft_id_rsp_t *, sns_gft_id_rsp_t *);
1312df76c16SMatt Jacob void isp_get_gff_id_response(ispsoftc_t *, sns_gff_id_rsp_t *, sns_gff_id_rsp_t *);
1322df76c16SMatt Jacob void isp_get_ga_nxt_response(ispsoftc_t *, sns_ga_nxt_rsp_t *, sns_ga_nxt_rsp_t *);
1332df76c16SMatt Jacob void isp_get_fc_hdr(ispsoftc_t *, fc_hdr_t *, fc_hdr_t *);
134387d8239SMatt Jacob void isp_put_fc_hdr(ispsoftc_t *, fc_hdr_t *, fc_hdr_t *);
1352df76c16SMatt Jacob void isp_get_fcp_cmnd_iu(ispsoftc_t *, fcp_cmnd_iu_t *, fcp_cmnd_iu_t *);
1362df76c16SMatt Jacob void isp_put_rft_id(ispsoftc_t *, rft_id_t *, rft_id_t *);
1377e53e7acSAlexander Motin void isp_put_rspn_id(ispsoftc_t *, rspn_id_t *, rspn_id_t *);
13892056a05SAlexander Motin void isp_put_rff_id(ispsoftc_t *, rff_id_t *, rff_id_t *);
1397e53e7acSAlexander Motin void isp_put_rsnn_nn(ispsoftc_t *, rsnn_nn_t *, rsnn_nn_t *);
1402df76c16SMatt Jacob void isp_get_ct_hdr(ispsoftc_t *isp, ct_hdr_t *, ct_hdr_t *);
1412df76c16SMatt Jacob void isp_put_ct_hdr(ispsoftc_t *isp, ct_hdr_t *, ct_hdr_t *);
142387d8239SMatt Jacob void isp_put_fcp_rsp_iu(ispsoftc_t *isp, fcp_rsp_iu_t *, fcp_rsp_iu_t *);
143156c1ebeSAlexander Motin void isp_get_atio7(ispsoftc_t *isp, at7_entry_t *, at7_entry_t *);
144156c1ebeSAlexander Motin void isp_put_ctio7(ispsoftc_t *, ct7_entry_t *, ct7_entry_t *);
145156c1ebeSAlexander Motin void isp_get_ctio7(ispsoftc_t *, ct7_entry_t *, ct7_entry_t *);
146156c1ebeSAlexander Motin void isp_put_notify_24xx(ispsoftc_t *, in_fcentry_24xx_t *, in_fcentry_24xx_t *);
147156c1ebeSAlexander Motin void isp_get_notify_24xx(ispsoftc_t *, in_fcentry_24xx_t *, in_fcentry_24xx_t *);
148156c1ebeSAlexander Motin void isp_put_notify_ack_24xx(ispsoftc_t *, na_fcentry_24xx_t *, na_fcentry_24xx_t *);
149156c1ebeSAlexander Motin void isp_get_notify_ack_24xx(ispsoftc_t *, na_fcentry_24xx_t *, na_fcentry_24xx_t *);
150156c1ebeSAlexander Motin void isp_get_abts(ispsoftc_t *, abts_t *, abts_t *);
151156c1ebeSAlexander Motin void isp_put_abts_rsp(ispsoftc_t *, abts_rsp_t *, abts_rsp_t *);
152156c1ebeSAlexander Motin void isp_get_abts_rsp(ispsoftc_t *, abts_rsp_t *, abts_rsp_t *);
153156c1ebeSAlexander Motin
154156c1ebeSAlexander Motin void isp_put_entry(ispsoftc_t *, void *, void *);
155156c1ebeSAlexander Motin void isp_get_entry(ispsoftc_t *, void *, void *);
156156c1ebeSAlexander Motin int isp_send_entry(ispsoftc_t *, void *);
157156c1ebeSAlexander Motin int isp_exec_entry_mbox(ispsoftc_t *, void *, void *, int);
158156c1ebeSAlexander Motin int isp_exec_entry_queue(ispsoftc_t *, void *, void *, int);
15953af7d22SMatt Jacob
1609a1b0d43SMatt Jacob #define ISP_HANDLE_MASK 0x7fff
1619a1b0d43SMatt Jacob
16253af7d22SMatt Jacob #ifdef ISP_TARGET_MODE
1631dae40ebSMatt Jacob #if defined(__NetBSD__) || defined(__OpenBSD__)
1641dae40ebSMatt Jacob #include <dev/ic/isp_target.h>
1651dae40ebSMatt Jacob #elif defined(__FreeBSD__)
16653af7d22SMatt Jacob #include <dev/isp/isp_target.h>
1671dae40ebSMatt Jacob #else
1681dae40ebSMatt Jacob #include "isp_target.h"
1691dae40ebSMatt Jacob #endif
170e68eef14SAlexander Motin #endif
1717e31684eSAlexander Motin
172eea52482SAlexander Motin int isp_find_pdb_empty(ispsoftc_t *, int, fcportdb_t **);
173eea52482SAlexander Motin int isp_find_pdb_by_wwpn(ispsoftc_t *, int, uint64_t, fcportdb_t **);
174c5fd36edSAlexander Motin int isp_find_pdb_by_handle(ispsoftc_t *, int, uint16_t, fcportdb_t **);
175eea52482SAlexander Motin int isp_find_pdb_by_portid(ispsoftc_t *, int, uint32_t, fcportdb_t **);
176eea52482SAlexander Motin #ifdef ISP_TARGET_MODE
1772df76c16SMatt Jacob void isp_find_chan_by_did(ispsoftc_t *, uint32_t, uint16_t *);
17837a7daacSAlexander Motin void isp_add_wwn_entry(ispsoftc_t *, int, uint64_t, uint64_t, uint16_t, uint32_t, uint16_t);
1792df76c16SMatt Jacob void isp_del_wwn_entry(ispsoftc_t *, int, uint64_t, uint16_t, uint32_t);
18053af7d22SMatt Jacob #endif /* ISP_TARGET_MODE */
18153af7d22SMatt Jacob #endif /* _ISP_LIBRARY_H */
182