1 /*- 2 * Copyright (c) 2001,2002,2003 S�ren Schmidt <sos@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer, 10 * without modification, immediately at the beginning of the file. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. The name of the author may not be used to endorse or promote products 15 * derived from this software without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * $FreeBSD$ 29 */ 30 31 #include <sys/param.h> 32 #include <sys/systm.h> 33 #include <sys/kernel.h> 34 #include <sys/module.h> 35 #include <sys/bus.h> 36 #include <sys/bio.h> 37 #include <sys/malloc.h> 38 #include <sys/lock.h> 39 #include <sys/mutex.h> 40 #include <vm/vm.h> 41 #include <vm/pmap.h> 42 #include <machine/stdarg.h> 43 #include <machine/resource.h> 44 #include <machine/bus.h> 45 #include <sys/rman.h> 46 #include <pci/pcivar.h> 47 #include <pci/pcireg.h> 48 49 #include "dev/pst/pst-iop.h" 50 51 struct iop_request { 52 struct i2o_single_reply *reply; 53 u_int32_t mfa; 54 }; 55 56 /* local vars */ 57 MALLOC_DEFINE(M_PSTIOP, "PSTIOP", "Promise SuperTrak IOP driver"); 58 59 int 60 iop_init(struct iop_softc *sc) 61 { 62 int mfa, timeout = 10000; 63 64 while ((mfa = sc->reg->iqueue) == 0xffffffff && --timeout) 65 DELAY(1000); 66 if (!timeout) { 67 printf("pstiop: no free mfa\n"); 68 return 0; 69 } 70 iop_free_mfa(sc, mfa); 71 72 sc->reg->oqueue_intr_mask = 0xffffffff; 73 74 if (!iop_reset(sc)) { 75 printf("pstiop: no reset response\n"); 76 return 0; 77 } 78 79 if (!iop_init_outqueue(sc)) { 80 printf("pstiop: init outbound queue failed\n"); 81 return 0; 82 } 83 84 /* register iop_attach to be run when interrupts are enabled */ 85 if (!(sc->iop_delayed_attach = (struct intr_config_hook *) 86 malloc(sizeof(struct intr_config_hook), 87 M_PSTIOP, M_NOWAIT | M_ZERO))) { 88 printf("pstiop: malloc of delayed attach hook failed\n"); 89 return 0; 90 } 91 sc->iop_delayed_attach->ich_func = (void *)iop_attach; 92 sc->iop_delayed_attach->ich_arg = (void *)sc; 93 if (config_intrhook_establish(sc->iop_delayed_attach)) { 94 printf("pstiop: config_intrhook_establish failed\n"); 95 free(sc->iop_delayed_attach, M_PSTIOP); 96 } 97 return 1; 98 } 99 100 void 101 iop_attach(struct iop_softc *sc) 102 { 103 int i; 104 105 if (sc->iop_delayed_attach) { 106 config_intrhook_disestablish(sc->iop_delayed_attach); 107 free(sc->iop_delayed_attach, M_PSTIOP); 108 sc->iop_delayed_attach = NULL; 109 } 110 111 if (!iop_get_lct(sc)) { 112 printf("pstiop: get LCT failed\n"); 113 return; 114 } 115 116 /* figure out what devices are here and config as needed */ 117 for (i = 0; sc->lct[i].entry_size == I2O_LCT_ENTRYSIZE; i++) { 118 #ifdef PSTDEBUG 119 struct i2o_get_param_reply *reply; 120 121 printf("pstiop: LCT entry %d ", i); 122 printf("class=%04x ", sc->lct[i].class); 123 printf("sub=%04x ", sc->lct[i].sub_class); 124 printf("localtid=%04x ", sc->lct[i].local_tid); 125 printf("usertid=%04x ", sc->lct[i].user_tid); 126 printf("parentid=%04x\n", sc->lct[i].parent_tid); 127 128 if ((reply = iop_get_util_params(sc, sc->lct[i].local_tid, 129 I2O_PARAMS_OPERATION_FIELD_GET, 130 I2O_UTIL_DEVICE_IDENTITY_GROUP_NO))) { 131 struct i2o_device_identity *ident = 132 (struct i2o_device_identity *)reply->result; 133 printf("pstiop: vendor=<%.16s> product=<%.16s>\n", 134 ident->vendor, ident->product); 135 printf("pstiop: description=<%.16s> revision=<%.8s>\n", 136 ident->description, ident->revision); 137 contigfree(reply, PAGE_SIZE, M_PSTIOP); 138 } 139 #endif 140 141 if (sc->lct[i].user_tid != I2O_TID_NONE && 142 sc->lct[i].user_tid != I2O_TID_HOST) 143 continue; 144 145 switch (sc->lct[i].class) { 146 case I2O_CLASS_DDM: 147 if (sc->lct[i].sub_class == I2O_SUBCLASS_ISM) 148 sc->ism = sc->lct[i].local_tid; 149 break; 150 151 case I2O_CLASS_RANDOM_BLOCK_STORAGE: 152 pst_add_raid(sc, &sc->lct[i]); 153 break; 154 } 155 } 156 157 /* setup and enable interrupts */ 158 bus_setup_intr(sc->dev, sc->r_irq, INTR_TYPE_BIO|INTR_ENTROPY|INTR_MPSAFE, 159 iop_intr, sc, &sc->handle); 160 sc->reg->oqueue_intr_mask = 0x0; 161 } 162 163 void 164 iop_intr(void *data) 165 { 166 struct iop_softc *sc = (struct iop_softc *)data; 167 struct i2o_single_reply *reply; 168 u_int32_t mfa; 169 170 /* we might get more than one finished request pr interrupt */ 171 mtx_lock(&sc->mtx); 172 while (1) { 173 if ((mfa = sc->reg->oqueue) == 0xffffffff) 174 if ((mfa = sc->reg->oqueue) == 0xffffffff) 175 break; 176 177 reply = (struct i2o_single_reply *)(sc->obase + (mfa - sc->phys_obase)); 178 179 /* if this is an event register reply, shout! */ 180 if (reply->function == I2O_UTIL_EVENT_REGISTER) { 181 struct i2o_util_event_reply_message *event = 182 (struct i2o_util_event_reply_message *)reply; 183 184 printf("pstiop: EVENT!! idx=%08x data=%08x\n", 185 event->event_mask, event->event_data[0]); 186 break; 187 } 188 189 /* if reply is a failurenotice we need to free the original mfa */ 190 if (reply->message_flags & I2O_MESSAGE_FLAGS_FAIL) 191 iop_free_mfa(sc,((struct i2o_fault_reply *)(reply))->preserved_mfa); 192 193 /* reply->initiator_context points to the service routine */ 194 ((void (*)(struct iop_softc *, u_int32_t, struct i2o_single_reply *)) 195 (reply->initiator_context))(sc, mfa, reply); 196 } 197 mtx_unlock(&sc->mtx); 198 } 199 200 int 201 iop_reset(struct iop_softc *sc) 202 { 203 struct i2o_exec_iop_reset_message *msg; 204 int mfa, timeout = 5000; 205 volatile u_int32_t reply = 0; 206 207 mfa = iop_get_mfa(sc); 208 msg = (struct i2o_exec_iop_reset_message *)(sc->ibase + mfa); 209 bzero(msg, sizeof(struct i2o_exec_iop_reset_message)); 210 msg->version_offset = 0x1; 211 msg->message_flags = 0x0; 212 msg->message_size = sizeof(struct i2o_exec_iop_reset_message) >> 2; 213 msg->target_address = I2O_TID_IOP; 214 msg->initiator_address = I2O_TID_HOST; 215 msg->function = I2O_EXEC_IOP_RESET; 216 msg->status_word_low_addr = vtophys(&reply); 217 msg->status_word_high_addr = 0; 218 219 sc->reg->iqueue = mfa; 220 221 while (--timeout && !reply) 222 DELAY(1000); 223 224 /* wait for iqueue ready */ 225 timeout = 10000; 226 while ((mfa = sc->reg->iqueue) == 0xffffffff && --timeout) 227 DELAY(1000); 228 229 iop_free_mfa(sc, mfa); 230 return reply; 231 } 232 233 int 234 iop_init_outqueue(struct iop_softc *sc) 235 { 236 struct i2o_exec_init_outqueue_message *msg; 237 int i, mfa, timeout = 5000; 238 volatile u_int32_t reply = 0; 239 240 if (!(sc->obase = contigmalloc(I2O_IOP_OUTBOUND_FRAME_COUNT * 241 I2O_IOP_OUTBOUND_FRAME_SIZE, 242 M_PSTIOP, M_NOWAIT, 243 0x00010000, 0xFFFFFFFF, 244 PAGE_SIZE, 0))) { 245 printf("pstiop: contigmalloc of outqueue buffers failed!\n"); 246 return 0; 247 } 248 sc->phys_obase = vtophys(sc->obase); 249 mfa = iop_get_mfa(sc); 250 msg = (struct i2o_exec_init_outqueue_message *)(sc->ibase + mfa); 251 bzero(msg, sizeof(struct i2o_exec_init_outqueue_message)); 252 msg->version_offset = 0x61; 253 msg->message_flags = 0x0; 254 msg->message_size = sizeof(struct i2o_exec_init_outqueue_message) >> 2; 255 msg->target_address = I2O_TID_IOP; 256 msg->initiator_address = I2O_TID_HOST; 257 msg->function = I2O_EXEC_OUTBOUND_INIT; 258 msg->host_pagesize = PAGE_SIZE; 259 msg->init_code = 0x00; /* SOS XXX should be 0x80 == OS */ 260 msg->queue_framesize = I2O_IOP_OUTBOUND_FRAME_SIZE / sizeof(u_int32_t); 261 msg->sgl[0].flags = I2O_SGL_SIMPLE | I2O_SGL_END | I2O_SGL_EOB; 262 msg->sgl[0].count = sizeof(reply); 263 msg->sgl[0].phys_addr[0] = vtophys(&reply); 264 msg->sgl[1].flags = I2O_SGL_END | I2O_SGL_EOB; 265 msg->sgl[1].count = 1; 266 msg->sgl[1].phys_addr[0] = 0; 267 268 sc->reg->iqueue = mfa; 269 270 /* wait for init to complete */ 271 while (--timeout && reply != I2O_EXEC_OUTBOUND_INIT_COMPLETE) 272 DELAY(1000); 273 274 if (!timeout) { 275 printf("pstiop: timeout waiting for init-complete response\n"); 276 iop_free_mfa(sc, mfa); 277 return 0; 278 } 279 280 /* now init our oqueue bufs */ 281 for (i = 0; i < I2O_IOP_OUTBOUND_FRAME_COUNT; i++) { 282 sc->reg->oqueue = sc->phys_obase + (i * I2O_IOP_OUTBOUND_FRAME_SIZE); 283 DELAY(1000); 284 } 285 286 return 1; 287 } 288 289 int 290 iop_get_lct(struct iop_softc *sc) 291 { 292 struct i2o_exec_get_lct_message *msg; 293 struct i2o_get_lct_reply *reply; 294 int mfa; 295 #define ALLOCSIZE (PAGE_SIZE + (256 * sizeof(struct i2o_lct_entry))) 296 297 if (!(reply = contigmalloc(ALLOCSIZE, M_PSTIOP, M_NOWAIT | M_ZERO, 298 0x00010000, 0xFFFFFFFF, PAGE_SIZE, 0))) 299 return 0; 300 301 mfa = iop_get_mfa(sc); 302 msg = (struct i2o_exec_get_lct_message *)(sc->ibase + mfa); 303 bzero(msg, sizeof(struct i2o_exec_get_lct_message)); 304 msg->version_offset = 0x61; 305 msg->message_flags = 0x0; 306 msg->message_size = sizeof(struct i2o_exec_get_lct_message) >> 2; 307 msg->target_address = I2O_TID_IOP; 308 msg->initiator_address = I2O_TID_HOST; 309 msg->function = I2O_EXEC_LCT_NOTIFY; 310 msg->class = I2O_CLASS_MATCH_ANYCLASS; 311 msg->last_change_id = 0; 312 313 msg->sgl.flags = I2O_SGL_SIMPLE | I2O_SGL_END | I2O_SGL_EOB; 314 msg->sgl.count = ALLOCSIZE; 315 msg->sgl.phys_addr[0] = vtophys(reply); 316 317 if (iop_queue_wait_msg(sc, mfa, (struct i2o_basic_message *)msg)) { 318 contigfree(reply, ALLOCSIZE, M_PSTIOP); 319 return 0; 320 } 321 if (!(sc->lct = malloc(reply->table_size * sizeof(struct i2o_lct_entry), 322 M_PSTIOP, M_NOWAIT | M_ZERO))) { 323 contigfree(reply, ALLOCSIZE, M_PSTIOP); 324 return 0; 325 } 326 bcopy(&reply->entry[0], sc->lct, 327 reply->table_size * sizeof(struct i2o_lct_entry)); 328 sc->lct_count = reply->table_size; 329 contigfree(reply, ALLOCSIZE, M_PSTIOP); 330 return 1; 331 } 332 333 struct i2o_get_param_reply * 334 iop_get_util_params(struct iop_softc *sc, int target, int operation, int group) 335 { 336 struct i2o_util_get_param_message *msg; 337 struct i2o_get_param_operation *param; 338 struct i2o_get_param_reply *reply; 339 int mfa; 340 341 if (!(param = contigmalloc(PAGE_SIZE, M_PSTIOP, M_NOWAIT | M_ZERO, 342 0x00010000, 0xFFFFFFFF, PAGE_SIZE, 0))) 343 return NULL; 344 345 if (!(reply = contigmalloc(PAGE_SIZE, M_PSTIOP, M_NOWAIT | M_ZERO, 346 0x00010000, 0xFFFFFFFF, PAGE_SIZE, 0))) 347 return NULL; 348 349 mfa = iop_get_mfa(sc); 350 msg = (struct i2o_util_get_param_message *)(sc->ibase + mfa); 351 bzero(msg, sizeof(struct i2o_util_get_param_message)); 352 msg->version_offset = 0x51; 353 msg->message_flags = 0x0; 354 msg->message_size = sizeof(struct i2o_util_get_param_message) >> 2; 355 msg->target_address = target; 356 msg->initiator_address = I2O_TID_HOST; 357 msg->function = I2O_UTIL_PARAMS_GET; 358 msg->operation_flags = 0; 359 360 param->operation_count = 1; 361 param->operation[0].operation = operation; 362 param->operation[0].group = group; 363 param->operation[0].field_count = 0xffff; 364 365 msg->sgl[0].flags = I2O_SGL_SIMPLE | I2O_SGL_DIR | I2O_SGL_EOB; 366 msg->sgl[0].count = sizeof(struct i2o_get_param_operation); 367 msg->sgl[0].phys_addr[0] = vtophys(param); 368 369 msg->sgl[1].flags = I2O_SGL_SIMPLE | I2O_SGL_END | I2O_SGL_EOB; 370 msg->sgl[1].count = PAGE_SIZE; 371 msg->sgl[1].phys_addr[0] = vtophys(reply); 372 373 if (iop_queue_wait_msg(sc, mfa, (struct i2o_basic_message *)msg) || 374 reply->error_info_size) { 375 contigfree(reply, PAGE_SIZE, M_PSTIOP); 376 reply = NULL; 377 } 378 contigfree(param, PAGE_SIZE, M_PSTIOP); 379 return reply; 380 } 381 382 u_int32_t 383 iop_get_mfa(struct iop_softc *sc) 384 { 385 u_int32_t mfa; 386 int timeout = 10000; 387 388 while ((mfa = sc->reg->iqueue) == 0xffffffff && timeout) { 389 DELAY(1000); 390 timeout--; 391 } 392 if (!timeout) 393 printf("pstiop: no free mfa\n"); 394 return mfa; 395 } 396 397 void 398 iop_free_mfa(struct iop_softc *sc, int mfa) 399 { 400 struct i2o_basic_message *msg = (struct i2o_basic_message *)(sc->ibase+mfa); 401 402 bzero(msg, sizeof(struct i2o_basic_message)); 403 msg->version = 0x01; 404 msg->message_flags = 0x0; 405 msg->message_size = sizeof(struct i2o_basic_message) >> 2; 406 msg->target_address = I2O_TID_IOP; 407 msg->initiator_address = I2O_TID_HOST; 408 msg->function = I2O_UTIL_NOP; 409 sc->reg->iqueue = mfa; 410 } 411 412 static void 413 iop_done(struct iop_softc *sc, u_int32_t mfa, struct i2o_single_reply *reply) 414 { 415 struct iop_request *request = 416 (struct iop_request *)reply->transaction_context; 417 418 request->reply = reply; 419 request->mfa = mfa; 420 wakeup(request); 421 } 422 423 int 424 iop_queue_wait_msg(struct iop_softc *sc, int mfa, struct i2o_basic_message *msg) 425 { 426 struct i2o_single_reply *reply; 427 struct iop_request request; 428 u_int32_t out_mfa; 429 int status, timeout = 10000; 430 431 mtx_lock(&sc->mtx); 432 if (!(sc->reg->oqueue_intr_mask & 0x08)) { 433 msg->transaction_context = (u_int32_t)&request; 434 msg->initiator_context = (u_int32_t)iop_done; 435 sc->reg->iqueue = mfa; 436 if (msleep(&request, &sc->mtx, PRIBIO, "pstwt", 10 * hz)) { 437 printf("pstiop: timeout waiting for message response\n"); 438 iop_free_mfa(sc, mfa); 439 mtx_unlock(&sc->mtx); 440 return -1; 441 } 442 status = request.reply->status; 443 sc->reg->oqueue = request.mfa; 444 } 445 else { 446 sc->reg->iqueue = mfa; 447 while (--timeout && ((out_mfa = sc->reg->oqueue) == 0xffffffff)) 448 DELAY(1000); 449 if (!timeout) { 450 printf("pstiop: timeout waiting for message response\n"); 451 iop_free_mfa(sc, mfa); 452 mtx_unlock(&sc->mtx); 453 return -1; 454 } 455 reply = (struct i2o_single_reply *)(sc->obase+(out_mfa-sc->phys_obase)); 456 status = reply->status; 457 sc->reg->oqueue = out_mfa; 458 } 459 mtx_unlock(&sc->mtx); 460 return status; 461 } 462 463 int 464 iop_create_sgl(struct i2o_basic_message *msg, caddr_t data, int count, int dir) 465 { 466 struct i2o_sgl *sgl = (struct i2o_sgl *)((int32_t *)msg + msg->offset); 467 u_int32_t sgl_count, sgl_phys; 468 int i = 0; 469 470 if (((uintptr_t)data & 3) || (count & 3)) { 471 printf("pstiop: non aligned DMA transfer attempted\n"); 472 return 0; 473 } 474 if (!count) { 475 printf("pstiop: zero length DMA transfer attempted\n"); 476 return 0; 477 } 478 479 sgl_count = min(count, (PAGE_SIZE - ((uintptr_t)data & PAGE_MASK))); 480 sgl_phys = vtophys(data); 481 sgl->flags = dir | I2O_SGL_PAGELIST | I2O_SGL_EOB | I2O_SGL_END; 482 sgl->count = count; 483 data += sgl_count; 484 count -= sgl_count; 485 486 while (count) { 487 sgl->phys_addr[i] = sgl_phys; 488 sgl_phys = vtophys(data); 489 data += min(count, PAGE_SIZE); 490 count -= min(count, PAGE_SIZE); 491 if (++i >= I2O_SGL_MAX_SEGS) { 492 printf("pstiop: too many segments in SGL\n"); 493 return 0; 494 } 495 } 496 sgl->phys_addr[i] = sgl_phys; 497 msg->message_size += i; 498 return 1; 499 } 500