1f366931cSScott Long /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni *
4f366931cSScott Long * Copyright 2007 Scott Long
5f366931cSScott Long * All rights reserved.
6f366931cSScott Long *
7f366931cSScott Long * Redistribution and use in source and binary forms, with or without
8f366931cSScott Long * modification, are permitted provided that the following conditions
9f366931cSScott Long * are met:
10f366931cSScott Long * 1. Redistributions of source code must retain the above copyright
11f366931cSScott Long * notice, this list of conditions and the following disclaimer.
12f366931cSScott Long * 2. Redistributions in binary form must reproduce the above copyright
13f366931cSScott Long * notice, this list of conditions and the following disclaimer in the
14f366931cSScott Long * documentation and/or other materials provided with the distribution.
15f366931cSScott Long *
16f366931cSScott Long * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17f366931cSScott Long * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18f366931cSScott Long * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19f366931cSScott Long * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20f366931cSScott Long * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21f366931cSScott Long * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22f366931cSScott Long * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23f366931cSScott Long * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24f366931cSScott Long * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25f366931cSScott Long * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26f366931cSScott Long * SUCH DAMAGE.
27f366931cSScott Long */
28f366931cSScott Long
29f366931cSScott Long #include <sys/cdefs.h>
30f366931cSScott Long #include "opt_mfi.h"
31f366931cSScott Long
32f366931cSScott Long #include <sys/param.h>
33f366931cSScott Long #include <sys/systm.h>
34f366931cSScott Long #include <sys/kernel.h>
35f366931cSScott Long #include <sys/malloc.h>
36f366931cSScott Long #include <sys/module.h>
37f366931cSScott Long #include <sys/selinfo.h>
38f366931cSScott Long #include <sys/bus.h>
39f366931cSScott Long #include <sys/conf.h>
40f366931cSScott Long #include <sys/eventhandler.h>
41f366931cSScott Long #include <sys/rman.h>
42f366931cSScott Long #include <sys/bio.h>
43f366931cSScott Long #include <sys/ioccom.h>
44f366931cSScott Long #include <sys/uio.h>
45f366931cSScott Long #include <sys/proc.h>
46f366931cSScott Long #include <sys/signalvar.h>
47d1c5fc76SJohn Baldwin #include <sys/sysctl.h>
48f366931cSScott Long
49f366931cSScott Long #include <cam/cam.h>
50f366931cSScott Long #include <cam/cam_ccb.h>
51f366931cSScott Long #include <cam/cam_debug.h>
5259ddd3e9SDoug Ambrisko #include <cam/cam_periph.h>
53f366931cSScott Long #include <cam/cam_sim.h>
5459ddd3e9SDoug Ambrisko #include <cam/cam_xpt_periph.h>
55f366931cSScott Long #include <cam/cam_xpt_sim.h>
56f366931cSScott Long #include <cam/scsi/scsi_all.h>
57f366931cSScott Long #include <cam/scsi/scsi_message.h>
58f366931cSScott Long
59f366931cSScott Long #include <machine/md_var.h>
60f366931cSScott Long #include <machine/bus.h>
61f366931cSScott Long #include <machine/resource.h>
62f366931cSScott Long
63f366931cSScott Long #include <dev/mfi/mfireg.h>
64f366931cSScott Long #include <dev/mfi/mfi_ioctl.h>
65f366931cSScott Long #include <dev/mfi/mfivar.h>
66f366931cSScott Long
6759ddd3e9SDoug Ambrisko enum mfip_state {
6859ddd3e9SDoug Ambrisko MFIP_STATE_NONE,
6959ddd3e9SDoug Ambrisko MFIP_STATE_DETACH,
7059ddd3e9SDoug Ambrisko MFIP_STATE_RESCAN
7159ddd3e9SDoug Ambrisko };
7259ddd3e9SDoug Ambrisko
73f366931cSScott Long struct mfip_softc {
74f366931cSScott Long device_t dev;
75f366931cSScott Long struct mfi_softc *mfi_sc;
76f366931cSScott Long struct cam_devq *devq;
77f366931cSScott Long struct cam_sim *sim;
78f366931cSScott Long struct cam_path *path;
7959ddd3e9SDoug Ambrisko enum mfip_state state;
80f366931cSScott Long };
81f366931cSScott Long
82f366931cSScott Long static int mfip_probe(device_t);
83f366931cSScott Long static int mfip_attach(device_t);
84f366931cSScott Long static int mfip_detach(device_t);
85f366931cSScott Long static void mfip_cam_action(struct cam_sim *, union ccb *);
86f366931cSScott Long static void mfip_cam_poll(struct cam_sim *);
8759ddd3e9SDoug Ambrisko static void mfip_cam_rescan(struct mfi_softc *, uint32_t tid);
88f366931cSScott Long static struct mfi_command * mfip_start(void *);
89f366931cSScott Long static void mfip_done(struct mfi_command *cm);
90f366931cSScott Long
9158ef3154SDoug Ambrisko static int mfi_allow_disks = 0;
92af3b2549SHans Petter Selasky SYSCTL_INT(_hw_mfi, OID_AUTO, allow_cam_disk_passthrough, CTLFLAG_RDTUN,
9358ef3154SDoug Ambrisko &mfi_allow_disks, 0, "event message locale");
9458ef3154SDoug Ambrisko
95f366931cSScott Long static device_method_t mfip_methods[] = {
96f366931cSScott Long DEVMETHOD(device_probe, mfip_probe),
97f366931cSScott Long DEVMETHOD(device_attach, mfip_attach),
98f366931cSScott Long DEVMETHOD(device_detach, mfip_detach),
9961bfd867SSofian Brabez
10061bfd867SSofian Brabez DEVMETHOD_END
101f366931cSScott Long };
102354f6c1cSJohn Baldwin
103f366931cSScott Long static driver_t mfip_driver = {
104f366931cSScott Long "mfip",
105f366931cSScott Long mfip_methods,
106f366931cSScott Long sizeof(struct mfip_softc)
107f366931cSScott Long };
108354f6c1cSJohn Baldwin
109354f6c1cSJohn Baldwin DRIVER_MODULE(mfip, mfi, mfip_driver, 0, 0);
110f366931cSScott Long MODULE_DEPEND(mfip, cam, 1, 1, 1);
1117765cff7SKonstantin Belousov MODULE_DEPEND(mfip, mfi, 1, 1, 1);
112f366931cSScott Long
113f366931cSScott Long #define ccb_mfip_ptr sim_priv.entries[0].ptr
114f366931cSScott Long
115f366931cSScott Long static int
mfip_probe(device_t dev)116f366931cSScott Long mfip_probe(device_t dev)
117f366931cSScott Long {
118f366931cSScott Long
119f366931cSScott Long device_set_desc(dev, "SCSI Passthrough Bus");
120f366931cSScott Long return (0);
121f366931cSScott Long }
122f366931cSScott Long
123f366931cSScott Long static int
mfip_attach(device_t dev)124f366931cSScott Long mfip_attach(device_t dev)
125f366931cSScott Long {
126f366931cSScott Long struct mfip_softc *sc;
127f366931cSScott Long struct mfi_softc *mfisc;
128f366931cSScott Long
129f366931cSScott Long sc = device_get_softc(dev);
130f366931cSScott Long if (sc == NULL)
131f366931cSScott Long return (EINVAL);
132f366931cSScott Long
133f366931cSScott Long mfisc = device_get_softc(device_get_parent(dev));
134f366931cSScott Long sc->dev = dev;
13559ddd3e9SDoug Ambrisko sc->state = MFIP_STATE_NONE;
136f366931cSScott Long sc->mfi_sc = mfisc;
137f366931cSScott Long mfisc->mfi_cam_start = mfip_start;
138f366931cSScott Long
139f366931cSScott Long if ((sc->devq = cam_simq_alloc(MFI_SCSI_MAX_CMDS)) == NULL)
140f366931cSScott Long return (ENOMEM);
141f366931cSScott Long
142f366931cSScott Long sc->sim = cam_sim_alloc(mfip_cam_action, mfip_cam_poll, "mfi", sc,
143f366931cSScott Long device_get_unit(dev), &mfisc->mfi_io_lock, 1,
144f366931cSScott Long MFI_SCSI_MAX_CMDS, sc->devq);
145f366931cSScott Long if (sc->sim == NULL) {
146f366931cSScott Long cam_simq_free(sc->devq);
14708c89430SSteven Hartland sc->devq = NULL;
148f366931cSScott Long device_printf(dev, "CAM SIM attach failed\n");
149f366931cSScott Long return (EINVAL);
150f366931cSScott Long }
151f366931cSScott Long
15259ddd3e9SDoug Ambrisko mfisc->mfi_cam_rescan_cb = mfip_cam_rescan;
15359ddd3e9SDoug Ambrisko
154f366931cSScott Long mtx_lock(&mfisc->mfi_io_lock);
155b50569b7SScott Long if (xpt_bus_register(sc->sim, dev, 0) != 0) {
156f366931cSScott Long device_printf(dev, "XPT bus registration failed\n");
157f366931cSScott Long cam_sim_free(sc->sim, FALSE);
15808c89430SSteven Hartland sc->sim = NULL;
159f366931cSScott Long cam_simq_free(sc->devq);
16008c89430SSteven Hartland sc->devq = NULL;
161f366931cSScott Long mtx_unlock(&mfisc->mfi_io_lock);
162f366931cSScott Long return (EINVAL);
163f366931cSScott Long }
164f366931cSScott Long mtx_unlock(&mfisc->mfi_io_lock);
165f366931cSScott Long
166f366931cSScott Long return (0);
167f366931cSScott Long }
168f366931cSScott Long
169f366931cSScott Long static int
mfip_detach(device_t dev)170f366931cSScott Long mfip_detach(device_t dev)
171f366931cSScott Long {
172f366931cSScott Long struct mfip_softc *sc;
173f366931cSScott Long
174f366931cSScott Long sc = device_get_softc(dev);
175f366931cSScott Long if (sc == NULL)
176f366931cSScott Long return (EINVAL);
177f366931cSScott Long
17859ddd3e9SDoug Ambrisko mtx_lock(&sc->mfi_sc->mfi_io_lock);
17959ddd3e9SDoug Ambrisko if (sc->state == MFIP_STATE_RESCAN) {
18059ddd3e9SDoug Ambrisko mtx_unlock(&sc->mfi_sc->mfi_io_lock);
18159ddd3e9SDoug Ambrisko return (EBUSY);
18259ddd3e9SDoug Ambrisko }
18359ddd3e9SDoug Ambrisko sc->state = MFIP_STATE_DETACH;
18459ddd3e9SDoug Ambrisko mtx_unlock(&sc->mfi_sc->mfi_io_lock);
18559ddd3e9SDoug Ambrisko
18659ddd3e9SDoug Ambrisko sc->mfi_sc->mfi_cam_rescan_cb = NULL;
18759ddd3e9SDoug Ambrisko
188f366931cSScott Long if (sc->sim != NULL) {
189f366931cSScott Long mtx_lock(&sc->mfi_sc->mfi_io_lock);
190f366931cSScott Long xpt_bus_deregister(cam_sim_path(sc->sim));
191f366931cSScott Long cam_sim_free(sc->sim, FALSE);
19208c89430SSteven Hartland sc->sim = NULL;
193f366931cSScott Long mtx_unlock(&sc->mfi_sc->mfi_io_lock);
194f366931cSScott Long }
195f366931cSScott Long
19608c89430SSteven Hartland if (sc->devq != NULL) {
197f366931cSScott Long cam_simq_free(sc->devq);
19808c89430SSteven Hartland sc->devq = NULL;
19908c89430SSteven Hartland }
200f366931cSScott Long
201f366931cSScott Long return (0);
202f366931cSScott Long }
203f366931cSScott Long
204f366931cSScott Long static void
mfip_cam_action(struct cam_sim * sim,union ccb * ccb)205f366931cSScott Long mfip_cam_action(struct cam_sim *sim, union ccb *ccb)
206f366931cSScott Long {
207f366931cSScott Long struct mfip_softc *sc = cam_sim_softc(sim);
208f366931cSScott Long struct mfi_softc *mfisc = sc->mfi_sc;
209f366931cSScott Long
210f366931cSScott Long mtx_assert(&mfisc->mfi_io_lock, MA_OWNED);
211f366931cSScott Long
212f366931cSScott Long switch (ccb->ccb_h.func_code) {
213f366931cSScott Long case XPT_PATH_INQ:
214f366931cSScott Long {
215f366931cSScott Long struct ccb_pathinq *cpi = &ccb->cpi;
216f366931cSScott Long
217f366931cSScott Long cpi->version_num = 1;
21823c628f7SAlexander Motin cpi->hba_inquiry = PI_TAG_ABLE;
219f366931cSScott Long cpi->target_sprt = 0;
220c33ce503SKonstantin Belousov cpi->hba_misc = PIM_NOBUSRESET | PIM_SEQSCAN | PIM_UNMAPPED;
221f366931cSScott Long cpi->hba_eng_cnt = 0;
222f366931cSScott Long cpi->max_target = MFI_SCSI_MAX_TARGETS;
223f366931cSScott Long cpi->max_lun = MFI_SCSI_MAX_LUNS;
224f366931cSScott Long cpi->initiator_id = MFI_SCSI_INITIATOR_ID;
2254195c7deSAlan Somers strlcpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
2264195c7deSAlan Somers strlcpy(cpi->hba_vid, "LSI", HBA_IDLEN);
2274195c7deSAlan Somers strlcpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
228f366931cSScott Long cpi->unit_number = cam_sim_unit(sim);
229f366931cSScott Long cpi->bus_id = cam_sim_bus(sim);
230f366931cSScott Long cpi->base_transfer_speed = 150000;
231b05e6558SScott Long cpi->transport = XPORT_SAS;
232b05e6558SScott Long cpi->transport_version = 0;
233f366931cSScott Long cpi->protocol = PROTO_SCSI;
234f366931cSScott Long cpi->protocol_version = SCSI_REV_2;
235f366931cSScott Long cpi->ccb_h.status = CAM_REQ_CMP;
236f366931cSScott Long break;
237f366931cSScott Long }
238f366931cSScott Long case XPT_RESET_BUS:
239f366931cSScott Long ccb->ccb_h.status = CAM_REQ_CMP;
240f366931cSScott Long break;
241f366931cSScott Long case XPT_RESET_DEV:
242f366931cSScott Long ccb->ccb_h.status = CAM_REQ_CMP;
243f366931cSScott Long break;
244f366931cSScott Long case XPT_GET_TRAN_SETTINGS:
245f366931cSScott Long {
24623c628f7SAlexander Motin struct ccb_trans_settings_scsi *scsi =
24723c628f7SAlexander Motin &ccb->cts.proto_specific.scsi;
248b05e6558SScott Long struct ccb_trans_settings_sas *sas =
249b05e6558SScott Long &ccb->cts.xport_specific.sas;
250f366931cSScott Long
251f366931cSScott Long ccb->cts.protocol = PROTO_SCSI;
252b05e6558SScott Long ccb->cts.protocol_version = SCSI_REV_2;
253b05e6558SScott Long ccb->cts.transport = XPORT_SAS;
254b05e6558SScott Long ccb->cts.transport_version = 0;
255b05e6558SScott Long
25623c628f7SAlexander Motin scsi->valid = CTS_SCSI_VALID_TQ;
25723c628f7SAlexander Motin scsi->flags = CTS_SCSI_FLAGS_TAG_ENB;
25823c628f7SAlexander Motin
259b05e6558SScott Long sas->valid &= ~CTS_SAS_VALID_SPEED;
260b05e6558SScott Long sas->bitrate = 150000;
261b05e6558SScott Long
262f366931cSScott Long ccb->ccb_h.status = CAM_REQ_CMP;
263f366931cSScott Long break;
264f366931cSScott Long }
265f366931cSScott Long case XPT_SET_TRAN_SETTINGS:
266f366931cSScott Long ccb->ccb_h.status = CAM_FUNC_NOTAVAIL;
267f366931cSScott Long break;
268f366931cSScott Long case XPT_SCSI_IO:
269f366931cSScott Long {
270f366931cSScott Long struct ccb_hdr *ccbh = &ccb->ccb_h;
271f366931cSScott Long struct ccb_scsiio *csio = &ccb->csio;
272f366931cSScott Long
273f366931cSScott Long ccbh->status = CAM_REQ_INPROG;
274f366931cSScott Long if (csio->cdb_len > MFI_SCSI_MAX_CDB_LEN) {
275f366931cSScott Long ccbh->status = CAM_REQ_INVALID;
276f366931cSScott Long break;
277f366931cSScott Long }
278f366931cSScott Long ccbh->ccb_mfip_ptr = sc;
279f366931cSScott Long TAILQ_INSERT_TAIL(&mfisc->mfi_cam_ccbq, ccbh, sim_links.tqe);
280f366931cSScott Long mfi_startio(mfisc);
281f366931cSScott Long return;
282f366931cSScott Long }
283f366931cSScott Long default:
284f366931cSScott Long ccb->ccb_h.status = CAM_REQ_INVALID;
285f366931cSScott Long break;
286f366931cSScott Long }
287f366931cSScott Long
288f366931cSScott Long xpt_done(ccb);
289f366931cSScott Long return;
290f366931cSScott Long }
291f366931cSScott Long
29259ddd3e9SDoug Ambrisko static void
mfip_cam_rescan(struct mfi_softc * sc,uint32_t tid)29359ddd3e9SDoug Ambrisko mfip_cam_rescan(struct mfi_softc *sc, uint32_t tid)
29459ddd3e9SDoug Ambrisko {
29559ddd3e9SDoug Ambrisko union ccb *ccb;
29659ddd3e9SDoug Ambrisko struct mfip_softc *camsc;
29759ddd3e9SDoug Ambrisko struct cam_sim *sim;
29859ddd3e9SDoug Ambrisko device_t mfip_dev;
29959ddd3e9SDoug Ambrisko
300c6df6f53SWarner Losh bus_topo_lock();
30159ddd3e9SDoug Ambrisko mfip_dev = device_find_child(sc->mfi_dev, "mfip", -1);
302c6df6f53SWarner Losh bus_topo_unlock();
30359ddd3e9SDoug Ambrisko if (mfip_dev == NULL) {
30459ddd3e9SDoug Ambrisko device_printf(sc->mfi_dev, "Couldn't find mfip child device!\n");
30559ddd3e9SDoug Ambrisko return;
30659ddd3e9SDoug Ambrisko }
30759ddd3e9SDoug Ambrisko
30859ddd3e9SDoug Ambrisko mtx_lock(&sc->mfi_io_lock);
30959ddd3e9SDoug Ambrisko camsc = device_get_softc(mfip_dev);
31059ddd3e9SDoug Ambrisko if (camsc->state == MFIP_STATE_DETACH) {
31159ddd3e9SDoug Ambrisko mtx_unlock(&sc->mfi_io_lock);
31259ddd3e9SDoug Ambrisko return;
31359ddd3e9SDoug Ambrisko }
31459ddd3e9SDoug Ambrisko camsc->state = MFIP_STATE_RESCAN;
31559ddd3e9SDoug Ambrisko
31659ddd3e9SDoug Ambrisko ccb = xpt_alloc_ccb_nowait();
31759ddd3e9SDoug Ambrisko if (ccb == NULL) {
31830e71983SMark Johnston mtx_unlock(&sc->mfi_io_lock);
31959ddd3e9SDoug Ambrisko device_printf(sc->mfi_dev,
32059ddd3e9SDoug Ambrisko "Cannot allocate ccb for bus rescan.\n");
32159ddd3e9SDoug Ambrisko return;
32259ddd3e9SDoug Ambrisko }
32359ddd3e9SDoug Ambrisko
32459ddd3e9SDoug Ambrisko sim = camsc->sim;
325e5dfa058SAlexander Motin if (xpt_create_path(&ccb->ccb_h.path, NULL, cam_sim_path(sim),
32659ddd3e9SDoug Ambrisko tid, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
32759ddd3e9SDoug Ambrisko xpt_free_ccb(ccb);
328f7469975SSean Bruno mtx_unlock(&sc->mfi_io_lock);
32959ddd3e9SDoug Ambrisko device_printf(sc->mfi_dev,
33059ddd3e9SDoug Ambrisko "Cannot create path for bus rescan.\n");
33159ddd3e9SDoug Ambrisko return;
33259ddd3e9SDoug Ambrisko }
33359ddd3e9SDoug Ambrisko xpt_rescan(ccb);
33459ddd3e9SDoug Ambrisko
33559ddd3e9SDoug Ambrisko camsc->state = MFIP_STATE_NONE;
33659ddd3e9SDoug Ambrisko mtx_unlock(&sc->mfi_io_lock);
33759ddd3e9SDoug Ambrisko }
33859ddd3e9SDoug Ambrisko
339f366931cSScott Long static struct mfi_command *
mfip_start(void * data)340f366931cSScott Long mfip_start(void *data)
341f366931cSScott Long {
342f366931cSScott Long union ccb *ccb = data;
343f366931cSScott Long struct ccb_hdr *ccbh = &ccb->ccb_h;
344f366931cSScott Long struct ccb_scsiio *csio = &ccb->csio;
345f366931cSScott Long struct mfip_softc *sc;
346f366931cSScott Long struct mfi_pass_frame *pt;
347f366931cSScott Long struct mfi_command *cm;
3480d9a4ef3SDoug Ambrisko uint32_t context = 0;
349f366931cSScott Long
350f366931cSScott Long sc = ccbh->ccb_mfip_ptr;
351f366931cSScott Long
352f366931cSScott Long if ((cm = mfi_dequeue_free(sc->mfi_sc)) == NULL)
353f366931cSScott Long return (NULL);
354f366931cSScott Long
3550d9a4ef3SDoug Ambrisko /* Zero out the MFI frame */
3560d9a4ef3SDoug Ambrisko context = cm->cm_frame->header.context;
3570d9a4ef3SDoug Ambrisko bzero(cm->cm_frame, sizeof(union mfi_frame));
3580d9a4ef3SDoug Ambrisko cm->cm_frame->header.context = context;
3590d9a4ef3SDoug Ambrisko
360f366931cSScott Long pt = &cm->cm_frame->pass;
361f366931cSScott Long pt->header.cmd = MFI_CMD_PD_SCSI_IO;
362f366931cSScott Long pt->header.cmd_status = 0;
363f366931cSScott Long pt->header.scsi_status = 0;
364f366931cSScott Long pt->header.target_id = ccbh->target_id;
365f366931cSScott Long pt->header.lun_id = ccbh->target_lun;
366f366931cSScott Long pt->header.flags = 0;
367f366931cSScott Long pt->header.timeout = 0;
368f366931cSScott Long pt->header.data_len = csio->dxfer_len;
369f366931cSScott Long pt->header.sense_len = MFI_SENSE_LEN;
370f366931cSScott Long pt->header.cdb_len = csio->cdb_len;
3717d96f12cSSean Bruno pt->sense_addr_lo = (uint32_t)cm->cm_sense_busaddr;
3727d96f12cSSean Bruno pt->sense_addr_hi = (uint32_t)((uint64_t)cm->cm_sense_busaddr >> 32);
373f366931cSScott Long if (ccbh->flags & CAM_CDB_POINTER)
374f366931cSScott Long bcopy(csio->cdb_io.cdb_ptr, &pt->cdb[0], csio->cdb_len);
375f366931cSScott Long else
376f366931cSScott Long bcopy(csio->cdb_io.cdb_bytes, &pt->cdb[0], csio->cdb_len);
377f366931cSScott Long cm->cm_complete = mfip_done;
378f366931cSScott Long cm->cm_private = ccb;
379f366931cSScott Long cm->cm_sg = &pt->sgl;
380f366931cSScott Long cm->cm_total_frame_size = MFI_PASS_FRAME_SIZE;
381dd0b4fb6SKonstantin Belousov cm->cm_data = ccb;
382f366931cSScott Long cm->cm_len = csio->dxfer_len;
383f366931cSScott Long switch (ccbh->flags & CAM_DIR_MASK) {
384f366931cSScott Long case CAM_DIR_IN:
385dd0b4fb6SKonstantin Belousov cm->cm_flags = MFI_CMD_DATAIN | MFI_CMD_CCB;
386f366931cSScott Long break;
387f366931cSScott Long case CAM_DIR_OUT:
388dd0b4fb6SKonstantin Belousov cm->cm_flags = MFI_CMD_DATAOUT | MFI_CMD_CCB;
389f366931cSScott Long break;
390f366931cSScott Long case CAM_DIR_NONE:
391f366931cSScott Long default:
392f366931cSScott Long cm->cm_data = NULL;
393f366931cSScott Long cm->cm_len = 0;
394f366931cSScott Long cm->cm_flags = 0;
395f366931cSScott Long break;
396f366931cSScott Long }
397f366931cSScott Long
398f366931cSScott Long TAILQ_REMOVE(&sc->mfi_sc->mfi_cam_ccbq, ccbh, sim_links.tqe);
399f366931cSScott Long return (cm);
400f366931cSScott Long }
401f366931cSScott Long
402f366931cSScott Long static void
mfip_done(struct mfi_command * cm)403f366931cSScott Long mfip_done(struct mfi_command *cm)
404f366931cSScott Long {
405f366931cSScott Long union ccb *ccb = cm->cm_private;
406f366931cSScott Long struct ccb_hdr *ccbh = &ccb->ccb_h;
407f366931cSScott Long struct ccb_scsiio *csio = &ccb->csio;
408f366931cSScott Long struct mfi_pass_frame *pt;
409f366931cSScott Long
410f366931cSScott Long pt = &cm->cm_frame->pass;
411f366931cSScott Long
412f366931cSScott Long switch (pt->header.cmd_status) {
413f366931cSScott Long case MFI_STAT_OK:
414f366931cSScott Long {
415f366931cSScott Long uint8_t command, device;
416f366931cSScott Long
417f366931cSScott Long ccbh->status = CAM_REQ_CMP;
418f366931cSScott Long csio->scsi_status = pt->header.scsi_status;
419f366931cSScott Long if (ccbh->flags & CAM_CDB_POINTER)
420b596082bSJohn Baldwin command = csio->cdb_io.cdb_ptr[0];
421f366931cSScott Long else
422b596082bSJohn Baldwin command = csio->cdb_io.cdb_bytes[0];
423f366931cSScott Long if (command == INQUIRY) {
424b596082bSJohn Baldwin device = csio->data_ptr[0] & 0x1f;
42558ef3154SDoug Ambrisko if ((!mfi_allow_disks && device == T_DIRECT) ||
42658ef3154SDoug Ambrisko (device == T_PROCESSOR))
427f366931cSScott Long csio->data_ptr[0] =
428b596082bSJohn Baldwin (csio->data_ptr[0] & 0xe0) | T_NODEVICE;
429f366931cSScott Long }
430f366931cSScott Long break;
431f366931cSScott Long }
432f366931cSScott Long case MFI_STAT_SCSI_DONE_WITH_ERROR:
433f366931cSScott Long {
434f366931cSScott Long int sense_len;
435f366931cSScott Long
436b05e6558SScott Long ccbh->status = CAM_SCSI_STATUS_ERROR | CAM_AUTOSNS_VALID;
437f366931cSScott Long csio->scsi_status = pt->header.scsi_status;
4381e5addb7SMarius Strobl if (pt->header.sense_len < csio->sense_len)
4391e5addb7SMarius Strobl csio->sense_resid = csio->sense_len -
4401e5addb7SMarius Strobl pt->header.sense_len;
4411e5addb7SMarius Strobl else
4421e5addb7SMarius Strobl csio->sense_resid = 0;
4431e5addb7SMarius Strobl sense_len = min(pt->header.sense_len,
4441e5addb7SMarius Strobl sizeof(struct scsi_sense_data));
445f366931cSScott Long bzero(&csio->sense_data, sizeof(struct scsi_sense_data));
446f366931cSScott Long bcopy(&cm->cm_sense->data[0], &csio->sense_data, sense_len);
447f366931cSScott Long break;
448f366931cSScott Long }
449f366931cSScott Long case MFI_STAT_DEVICE_NOT_FOUND:
450b05e6558SScott Long ccbh->status = CAM_SEL_TIMEOUT;
451f366931cSScott Long break;
452f366931cSScott Long case MFI_STAT_SCSI_IO_FAILED:
453f366931cSScott Long ccbh->status = CAM_REQ_CMP_ERR;
454f366931cSScott Long csio->scsi_status = pt->header.scsi_status;
455f366931cSScott Long break;
456f366931cSScott Long default:
457f366931cSScott Long ccbh->status = CAM_REQ_CMP_ERR;
458f366931cSScott Long csio->scsi_status = pt->header.scsi_status;
459f366931cSScott Long break;
460f366931cSScott Long }
461f366931cSScott Long
462f366931cSScott Long mfi_release_command(cm);
463f366931cSScott Long xpt_done(ccb);
464f366931cSScott Long }
465f366931cSScott Long
466f366931cSScott Long static void
mfip_cam_poll(struct cam_sim * sim)467f366931cSScott Long mfip_cam_poll(struct cam_sim *sim)
468f366931cSScott Long {
46958ef3154SDoug Ambrisko struct mfip_softc *sc = cam_sim_softc(sim);
47058ef3154SDoug Ambrisko struct mfi_softc *mfisc = sc->mfi_sc;
47158ef3154SDoug Ambrisko
47258ef3154SDoug Ambrisko mfisc->mfi_intr_ptr(mfisc);
473f366931cSScott Long }
474