1984a2ea9SAlexander Motin /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3f24882ecSPedro F. Giffuni * 4984a2ea9SAlexander Motin * Copyright (c) 2014 Alexander Motin <mav@FreeBSD.org> 5984a2ea9SAlexander Motin * All rights reserved. 6984a2ea9SAlexander Motin * 7984a2ea9SAlexander Motin * Redistribution and use in source and binary forms, with or without 8984a2ea9SAlexander Motin * modification, are permitted provided that the following conditions 9984a2ea9SAlexander Motin * are met: 10984a2ea9SAlexander Motin * 1. Redistributions of source code must retain the above copyright 11984a2ea9SAlexander Motin * notice, this list of conditions and the following disclaimer, 12984a2ea9SAlexander Motin * without modification, immediately at the beginning of the file. 13984a2ea9SAlexander Motin * 2. Redistributions in binary form must reproduce the above copyright 14984a2ea9SAlexander Motin * notice, this list of conditions and the following disclaimer in the 15984a2ea9SAlexander Motin * documentation and/or other materials provided with the distribution. 16984a2ea9SAlexander Motin * 17984a2ea9SAlexander Motin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18984a2ea9SAlexander Motin * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19984a2ea9SAlexander Motin * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20984a2ea9SAlexander Motin * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21984a2ea9SAlexander Motin * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22984a2ea9SAlexander Motin * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23984a2ea9SAlexander Motin * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24984a2ea9SAlexander Motin * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25984a2ea9SAlexander Motin * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26984a2ea9SAlexander Motin * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27984a2ea9SAlexander Motin */ 28984a2ea9SAlexander Motin 29984a2ea9SAlexander Motin #ifndef _CTL_TPC_H 30984a2ea9SAlexander Motin #define _CTL_TPC_H 1 31984a2ea9SAlexander Motin 32984a2ea9SAlexander Motin void tpc_done(union ctl_io *io); 33984a2ea9SAlexander Motin 349602f436SAlexander Motin uint64_t tpcl_resolve(struct ctl_softc *softc, int init_port, 35fee04ef7SAlexander Motin struct scsi_ec_cscd *cscd, uint32_t *ss, uint32_t *ps, uint32_t *pso); 36984a2ea9SAlexander Motin union ctl_io * tpcl_alloc_io(void); 37984a2ea9SAlexander Motin int tpcl_queue(union ctl_io *io, uint64_t lun); 38984a2ea9SAlexander Motin 39984a2ea9SAlexander Motin #endif /* _CTL_TPC_H */ 40