1 1.29 andvar /* $NetBSD: icpsp.c,v 1.29 2024/01/16 21:08:52 andvar Exp $ */ 2 1.1 ad 3 1.1 ad /*- 4 1.1 ad * Copyright (c) 2002 The NetBSD Foundation, Inc. 5 1.1 ad * All rights reserved. 6 1.1 ad * 7 1.1 ad * This code is derived from software contributed to The NetBSD Foundation 8 1.1 ad * by Andrew Doran. 9 1.1 ad * 10 1.1 ad * Redistribution and use in source and binary forms, with or without 11 1.1 ad * modification, are permitted provided that the following conditions 12 1.1 ad * are met: 13 1.1 ad * 1. Redistributions of source code must retain the above copyright 14 1.1 ad * notice, this list of conditions and the following disclaimer. 15 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 ad * notice, this list of conditions and the following disclaimer in the 17 1.1 ad * documentation and/or other materials provided with the distribution. 18 1.1 ad * 19 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.1 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.1 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.1 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.1 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.1 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.1 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.1 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.1 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.1 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.1 ad * POSSIBILITY OF SUCH DAMAGE. 30 1.1 ad */ 31 1.1 ad 32 1.1 ad #include <sys/cdefs.h> 33 1.29 andvar __KERNEL_RCSID(0, "$NetBSD: icpsp.c,v 1.29 2024/01/16 21:08:52 andvar Exp $"); 34 1.1 ad 35 1.1 ad #include <sys/param.h> 36 1.1 ad #include <sys/systm.h> 37 1.1 ad #include <sys/kernel.h> 38 1.1 ad #include <sys/device.h> 39 1.1 ad #include <sys/queue.h> 40 1.1 ad #include <sys/proc.h> 41 1.1 ad #include <sys/buf.h> 42 1.1 ad #include <sys/endian.h> 43 1.1 ad #include <sys/malloc.h> 44 1.1 ad #include <sys/scsiio.h> 45 1.1 ad 46 1.13 dsl #include <sys/bswap.h> 47 1.18 ad #include <sys/bus.h> 48 1.1 ad 49 1.1 ad #include <dev/scsipi/scsi_all.h> 50 1.1 ad #include <dev/scsipi/scsi_disk.h> 51 1.1 ad #include <dev/scsipi/scsipi_all.h> 52 1.1 ad #include <dev/scsipi/scsiconf.h> 53 1.1 ad #include <dev/scsipi/scsi_message.h> 54 1.1 ad 55 1.1 ad #include <dev/ic/icpreg.h> 56 1.1 ad #include <dev/ic/icpvar.h> 57 1.1 ad 58 1.1 ad struct icpsp_softc { 59 1.25 chs device_t sc_dv; 60 1.1 ad struct scsipi_adapter sc_adapter; 61 1.1 ad struct scsipi_channel sc_channel; 62 1.1 ad int sc_busno; 63 1.8 thorpej int sc_openings; 64 1.1 ad }; 65 1.1 ad 66 1.23 cegger void icpsp_attach(device_t, device_t, void *); 67 1.1 ad void icpsp_intr(struct icp_ccb *); 68 1.23 cegger int icpsp_match(device_t, cfdata_t, void *); 69 1.1 ad void icpsp_scsipi_request(struct scsipi_channel *, scsipi_adapter_req_t, 70 1.1 ad void *); 71 1.1 ad 72 1.23 cegger void icpsp_adjqparam(device_t, int); 73 1.8 thorpej 74 1.25 chs CFATTACH_DECL_NEW(icpsp, sizeof(struct icpsp_softc), 75 1.6 thorpej icpsp_match, icpsp_attach, NULL, NULL); 76 1.1 ad 77 1.8 thorpej static const struct icp_servicecb icpsp_servicecb = { 78 1.8 thorpej icpsp_adjqparam, 79 1.8 thorpej }; 80 1.8 thorpej 81 1.1 ad int 82 1.23 cegger icpsp_match(device_t parent, cfdata_t match, 83 1.15 christos void *aux) 84 1.1 ad { 85 1.1 ad struct icp_attach_args *icpa; 86 1.1 ad 87 1.1 ad icpa = aux; 88 1.1 ad 89 1.1 ad return (icpa->icpa_unit >= ICPA_UNIT_SCSI); 90 1.1 ad } 91 1.1 ad 92 1.1 ad void 93 1.23 cegger icpsp_attach(device_t parent, device_t self, void *aux) 94 1.1 ad { 95 1.1 ad struct icp_attach_args *icpa; 96 1.1 ad struct icpsp_softc *sc; 97 1.1 ad struct icp_softc *icp; 98 1.1 ad 99 1.1 ad icpa = (struct icp_attach_args *)aux; 100 1.25 chs sc = device_private(self); 101 1.25 chs icp = device_private(parent); 102 1.1 ad 103 1.25 chs sc->sc_dv = self; 104 1.1 ad sc->sc_busno = icpa->icpa_unit - ICPA_UNIT_SCSI; 105 1.8 thorpej sc->sc_openings = icp->icp_openings; 106 1.1 ad printf(": physical SCSI channel %d\n", sc->sc_busno); 107 1.1 ad 108 1.8 thorpej icp_register_servicecb(icp, icpa->icpa_unit, &icpsp_servicecb); 109 1.8 thorpej 110 1.25 chs sc->sc_adapter.adapt_dev = sc->sc_dv; 111 1.1 ad sc->sc_adapter.adapt_nchannels = 1; 112 1.1 ad sc->sc_adapter.adapt_openings = icp->icp_openings; 113 1.1 ad sc->sc_adapter.adapt_max_periph = icp->icp_openings; 114 1.1 ad sc->sc_adapter.adapt_minphys = minphys; 115 1.1 ad sc->sc_adapter.adapt_request = icpsp_scsipi_request; 116 1.1 ad 117 1.1 ad sc->sc_channel.chan_adapter = &sc->sc_adapter; 118 1.1 ad sc->sc_channel.chan_bustype = &scsi_bustype; 119 1.1 ad sc->sc_channel.chan_channel = 0; 120 1.1 ad sc->sc_channel.chan_ntargets = ((icp->icp_class & ICP_FC) != 0 ? 121 1.1 ad 127 : 16); /* XXX bogus check */ 122 1.9 mycroft sc->sc_channel.chan_nluns = 8; 123 1.1 ad sc->sc_channel.chan_id = icp->icp_bus_id[sc->sc_busno]; 124 1.1 ad sc->sc_channel.chan_flags = SCSIPI_CHAN_NOSETTLE; 125 1.1 ad 126 1.28 thorpej config_found(self, &sc->sc_channel, scsiprint, CFARGS_NONE); 127 1.1 ad } 128 1.1 ad 129 1.1 ad void 130 1.1 ad icpsp_scsipi_request(struct scsipi_channel *chan, scsipi_adapter_req_t req, 131 1.1 ad void *arg) 132 1.1 ad { 133 1.1 ad struct scsipi_xfer *xs; 134 1.1 ad struct scsipi_periph *periph; 135 1.1 ad struct icpsp_softc *sc; 136 1.1 ad struct icp_rawcmd *rc; 137 1.1 ad struct icp_softc *icp; 138 1.1 ad struct icp_ccb *ic; 139 1.1 ad int rv, flags, s, soff; 140 1.1 ad 141 1.25 chs sc = device_private(chan->chan_adapter->adapt_dev); 142 1.25 chs icp = device_private(device_parent(sc->sc_dv)); 143 1.1 ad 144 1.1 ad switch (req) { 145 1.1 ad case ADAPTER_REQ_RUN_XFER: 146 1.1 ad xs = arg; 147 1.1 ad periph = xs->xs_periph; 148 1.1 ad flags = xs->xs_control; 149 1.1 ad 150 1.1 ad SC_DEBUG(periph, SCSIPI_DB2, ("icpsp_scsi_request run_xfer\n")); 151 1.1 ad 152 1.1 ad if ((flags & XS_CTL_RESET) != 0) { 153 1.1 ad /* XXX Unimplemented. */ 154 1.1 ad xs->error = XS_DRIVER_STUFFUP; 155 1.1 ad scsipi_done(xs); 156 1.1 ad return; 157 1.1 ad } 158 1.1 ad 159 1.1 ad #if defined(ICP_DEBUG) || defined(SCSIDEBUG) 160 1.1 ad if (xs->cmdlen > sizeof(rc->rc_cdb)) 161 1.25 chs panic("%s: CDB too large", device_xname(sc->sc_dv)); 162 1.1 ad #endif 163 1.1 ad 164 1.1 ad /* 165 1.1 ad * Allocate a CCB. 166 1.1 ad */ 167 1.7 thorpej if (__predict_false((ic = icp_ccb_alloc(icp)) == NULL)) { 168 1.7 thorpej xs->error = XS_RESOURCE_SHORTAGE; 169 1.7 thorpej scsipi_done(xs); 170 1.7 thorpej return; 171 1.7 thorpej } 172 1.1 ad rc = &ic->ic_cmd.cmd_packet.rc; 173 1.1 ad ic->ic_sg = rc->rc_sg; 174 1.1 ad ic->ic_service = ICP_SCSIRAWSERVICE; 175 1.1 ad soff = ICP_SCRATCH_SENSE + ic->ic_ident * 176 1.10 thorpej sizeof(struct scsi_sense_data); 177 1.1 ad 178 1.1 ad /* 179 1.1 ad * Build the command. We don't need to actively prevent 180 1.1 ad * access to array components, since the controller kindly 181 1.1 ad * takes care of that for us. 182 1.1 ad */ 183 1.1 ad ic->ic_cmd.cmd_opcode = htole16(ICP_WRITE); 184 1.1 ad memcpy(rc->rc_cdb, xs->cmd, xs->cmdlen); 185 1.1 ad 186 1.1 ad rc->rc_padding0 = 0; 187 1.1 ad rc->rc_direction = htole32((flags & XS_CTL_DATA_IN) != 0 ? 188 1.1 ad ICP_DATA_IN : ICP_DATA_OUT); 189 1.1 ad rc->rc_mdisc_time = 0; 190 1.1 ad rc->rc_mcon_time = 0; 191 1.1 ad rc->rc_clen = htole32(xs->cmdlen); 192 1.1 ad rc->rc_target = periph->periph_target; 193 1.1 ad rc->rc_lun = periph->periph_lun; 194 1.1 ad rc->rc_bus = sc->sc_busno; 195 1.1 ad rc->rc_priority = 0; 196 1.1 ad rc->rc_sense_len = htole32(sizeof(xs->sense.scsi_sense)); 197 1.1 ad rc->rc_sense_addr = 198 1.1 ad htole32(soff + icp->icp_scr_seg[0].ds_addr); 199 1.1 ad rc->rc_padding1 = 0; 200 1.1 ad 201 1.1 ad if (xs->datalen != 0) { 202 1.1 ad rv = icp_ccb_map(icp, ic, xs->data, xs->datalen, 203 1.1 ad (flags & XS_CTL_DATA_IN) != 0 ? IC_XFER_IN : 204 1.1 ad IC_XFER_OUT); 205 1.1 ad if (rv != 0) { 206 1.1 ad icp_ccb_free(icp, ic); 207 1.1 ad xs->error = XS_DRIVER_STUFFUP; 208 1.1 ad scsipi_done(xs); 209 1.1 ad return; 210 1.1 ad } 211 1.1 ad 212 1.1 ad rc->rc_nsgent = htole32(ic->ic_nsgent); 213 1.1 ad rc->rc_sdata = ~0; 214 1.1 ad rc->rc_sdlen = htole32(xs->datalen); 215 1.1 ad } else { 216 1.1 ad rc->rc_nsgent = 0; 217 1.1 ad rc->rc_sdata = 0; 218 1.1 ad rc->rc_sdlen = 0; 219 1.1 ad } 220 1.1 ad 221 1.1 ad ic->ic_cmdlen = (u_long)ic->ic_sg - (u_long)&ic->ic_cmd + 222 1.1 ad ic->ic_nsgent * sizeof(*ic->ic_sg); 223 1.1 ad 224 1.1 ad bus_dmamap_sync(icp->icp_dmat, icp->icp_scr_dmamap, soff, 225 1.1 ad sizeof(xs->sense.scsi_sense), BUS_DMASYNC_PREREAD); 226 1.1 ad 227 1.1 ad /* 228 1.1 ad * Fire it off to the controller. 229 1.1 ad */ 230 1.1 ad ic->ic_intr = icpsp_intr; 231 1.1 ad ic->ic_context = xs; 232 1.25 chs ic->ic_dv = sc->sc_dv; 233 1.1 ad 234 1.1 ad if ((flags & XS_CTL_POLL) != 0) { 235 1.1 ad s = splbio(); 236 1.1 ad rv = icp_ccb_poll(icp, ic, xs->timeout); 237 1.1 ad if (rv != 0) { 238 1.1 ad if (xs->datalen != 0) 239 1.1 ad icp_ccb_unmap(icp, ic); 240 1.1 ad icp_ccb_free(icp, ic); 241 1.1 ad xs->error = XS_TIMEOUT; 242 1.1 ad scsipi_done(xs); 243 1.1 ad 244 1.1 ad /* 245 1.1 ad * XXX We're now in a bad way, because we 246 1.11 perry * don't know how to abort the command. 247 1.1 ad * That shouldn't matter too much, since 248 1.1 ad * polled commands won't be used while the 249 1.1 ad * system is running. 250 1.1 ad */ 251 1.1 ad } 252 1.1 ad splx(s); 253 1.1 ad } else 254 1.1 ad icp_ccb_enqueue(icp, ic); 255 1.1 ad 256 1.1 ad break; 257 1.1 ad 258 1.1 ad case ADAPTER_REQ_GROW_RESOURCES: 259 1.1 ad case ADAPTER_REQ_SET_XFER_MODE: 260 1.1 ad /* 261 1.1 ad * Neither of these cases are supported, and neither of them 262 1.29 andvar * is particularly relevant, since we have an abstract view 263 1.1 ad * of the bus; the controller takes care of all the nitty 264 1.1 ad * gritty. 265 1.1 ad */ 266 1.1 ad break; 267 1.1 ad } 268 1.1 ad } 269 1.1 ad 270 1.1 ad void 271 1.1 ad icpsp_intr(struct icp_ccb *ic) 272 1.1 ad { 273 1.1 ad struct scsipi_xfer *xs; 274 1.1 ad struct icp_softc *icp; 275 1.1 ad int soff; 276 1.1 ad 277 1.26 skrll #ifdef DIAGNOSTIC 278 1.26 skrll struct icpsp_softc *sc = device_private(ic->ic_dv); 279 1.26 skrll #endif 280 1.25 chs xs = ic->ic_context; 281 1.25 chs icp = device_private(device_parent(ic->ic_dv)); 282 1.1 ad soff = ICP_SCRATCH_SENSE + ic->ic_ident * 283 1.10 thorpej sizeof(struct scsi_sense_data); 284 1.1 ad 285 1.1 ad SC_DEBUG(xs->xs_periph, SCSIPI_DB2, ("icpsp_intr\n")); 286 1.1 ad 287 1.1 ad bus_dmamap_sync(icp->icp_dmat, icp->icp_scr_dmamap, soff, 288 1.1 ad sizeof(xs->sense.scsi_sense), BUS_DMASYNC_POSTREAD); 289 1.1 ad 290 1.1 ad if (ic->ic_status == ICP_S_OK) { 291 1.1 ad xs->status = SCSI_OK; 292 1.1 ad xs->resid = 0; 293 1.1 ad } else if (ic->ic_status != ICP_S_RAW_SCSI || icp->icp_info >= 0x100) { 294 1.1 ad xs->error = XS_SELTIMEOUT; 295 1.1 ad xs->resid = xs->datalen; 296 1.1 ad } else { 297 1.1 ad xs->status = icp->icp_info; 298 1.1 ad 299 1.1 ad switch (xs->status) { 300 1.1 ad case SCSI_OK: 301 1.1 ad #ifdef DIAGNOSTIC 302 1.1 ad printf("%s: error return (%d), but SCSI_OK?\n", 303 1.25 chs device_xname(sc->sc_dv), icp->icp_info); 304 1.1 ad #endif 305 1.1 ad xs->resid = 0; 306 1.1 ad break; 307 1.1 ad case SCSI_CHECK: 308 1.17 christos memcpy(&xs->sense.scsi_sense, 309 1.17 christos (char *)icp->icp_scr + soff, 310 1.1 ad sizeof(xs->sense.scsi_sense)); 311 1.2 ad xs->error = XS_SENSE; 312 1.1 ad /* FALLTHROUGH */ 313 1.1 ad default: 314 1.1 ad /* 315 1.1 ad * XXX Don't know how to get residual count. 316 1.1 ad */ 317 1.1 ad xs->resid = xs->datalen; 318 1.1 ad break; 319 1.1 ad } 320 1.1 ad } 321 1.1 ad 322 1.1 ad if (xs->datalen != 0) 323 1.1 ad icp_ccb_unmap(icp, ic); 324 1.1 ad icp_ccb_free(icp, ic); 325 1.1 ad scsipi_done(xs); 326 1.8 thorpej } 327 1.8 thorpej 328 1.8 thorpej void 329 1.25 chs icpsp_adjqparam(device_t self, int openings) 330 1.8 thorpej { 331 1.25 chs struct icpsp_softc *sc = device_private(self); 332 1.8 thorpej int s; 333 1.8 thorpej 334 1.8 thorpej s = splbio(); 335 1.8 thorpej sc->sc_adapter.adapt_openings += openings - sc->sc_openings; 336 1.8 thorpej sc->sc_openings = openings; 337 1.8 thorpej splx(s); 338 1.1 ad } 339