1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 /* 27 * Fault Management for Nexus Device Drivers 28 * 29 * In addition to implementing and supporting Fault Management for Device 30 * Drivers (ddifm.c), nexus drivers must support their children by 31 * reporting FM capabilities, intializing interrupt block cookies 32 * for error handling callbacks and caching mapped resources for lookup 33 * during the detection of an IO transaction error. 34 * 35 * It is typically the nexus driver that receives an error indication 36 * for a fault that may have occurred in the data path of an IO transaction. 37 * Errors may be detected or received via an interrupt, a callback from 38 * another subsystem (e.g. a cpu trap) or examination of control data. 39 * 40 * Upon detection of an error, the nexus has a responsibility to alert 41 * its children of the error and the transaction associated with that 42 * error. The actual implementation may vary depending upon the capabilities 43 * of the nexus, its underlying hardware and its children. In this file, 44 * we provide support for typical nexus driver fault management tasks. 45 * 46 * Fault Management Initialization 47 * 48 * Nexus drivers must implement two new busops, bus_fm_init() and 49 * bus_fm_fini(). bus_fm_init() is called from a child nexus or device 50 * driver and is expected to initialize any per-child state and return 51 * the FM and error interrupt priority levels of the nexus driver. 52 * Similarly, bus_fm_fini() is called by child drivers and should 53 * clean-up any resources allocated during bus_fm_init(). 54 * These functions are called from passive kernel context, typically from 55 * driver attach(9F) and detach(9F) entry points. 56 * 57 * Error Handler Dispatching 58 * 59 * Nexus drivers implemented to support error handler capabilities 60 * should invoke registered error handler callbacks for child drivers 61 * thought to be involved in the error. 62 * ndi_fm_handler_dispatch() is used to invoke 63 * all error handlers and returns one of the following status 64 * indications: 65 * 66 * DDI_FM_OK - No errors found by any child 67 * DDI_FM_FATAL - one or more children have detected a fatal error 68 * DDI_FM_NONFATAL - no fatal errors, but one or more children have 69 * detected a non-fatal error 70 * 71 * ndi_fm_handler_dispatch() may be called in any context 72 * subject to the constraints specified by the interrupt iblock cookie 73 * returned during initialization. 74 * 75 * Protected Accesses 76 * 77 * When an access handle is mapped or a DMA handle is bound via the 78 * standard busops, bus_map() or bus_dma_bindhdl(), a child driver 79 * implemented to support DDI_FM_ACCCHK_CAPABLE or 80 * DDI_FM_DMACHK_CAPABLE capabilites 81 * expects the nexus to flag any errors detected for transactions 82 * associated with the mapped or bound handles. 83 * 84 * Children nexus or device drivers will set the following flags 85 * in their ddi_device_access or dma_attr_flags when requesting 86 * the an access or DMA handle mapping: 87 * 88 * DDI_DMA_FLAGERR - nexus should set error status for any errors 89 * detected for a failed DMA transaction. 90 * DDI_ACC_FLAGERR - nexus should set error status for any errors 91 * detected for a failed PIO transaction. 92 * 93 * A nexus is expected to provide additional error detection and 94 * handling for handles with these flags set. 95 * 96 * Exclusive Bus Access 97 * 98 * In cases where a driver requires a high level of fault tolerance 99 * for a programmed IO transaction, it is neccessary to grant exclusive 100 * access to the bus resource. Exclusivity guarantees that a fault 101 * resulting from a transaction on the bus can be easily traced and 102 * reported to the driver requesting the transaction. 103 * 104 * Nexus drivers must implement two new busops to support exclusive 105 * access, bus_fm_access_enter() and bus_fm_access_exit(). The IO 106 * framework will use these functions when it must set-up access 107 * handles that set devacc_attr_access to DDI_ACC_CAUTIOUS in 108 * their ddi_device_acc_attr_t request. 109 * 110 * Upon receipt of a bus_fm_access_enter() request, the nexus must prevent 111 * all other access requests until it receives bus_fm_access_exit() 112 * for the requested bus instance. bus_fm_access_enter() and 113 * bus_fm_access_exit() may be called from user, kernel or kernel 114 * interrupt context. 115 * 116 * Access and DMA Handle Caching 117 * 118 * To aid a nexus driver in associating access or DMA handles with 119 * a detected error, the nexus should cache all handles that are 120 * associated with DDI_ACC_FLAGERR, DDI_ACC_CAUTIOUS_ACC or 121 * DDI_DMA_FLAGERR requests from its children. ndi_fmc_insert() is 122 * called by a nexus to cache handles with the above protection flags 123 * and ndi_fmc_remove() is called when that handle is unmapped or 124 * unbound by the requesting child. ndi_fmc_insert() and 125 * ndi_fmc_remove() may be called from any user or kernel context. 126 * 127 * FM cache element is implemented by kmem_cache. The elements are 128 * stored in a doubly-linked searchable list. When a handle is created, 129 * ndi_fm_insert() allocates an entry from the kmem_cache and inserts 130 * the entry to the head of the list. When a handle is unmapped 131 * or unbound, ndi_fm_remove() removes its associated cache entry from 132 * the list. 133 * 134 * Upon detection of an error, the nexus may invoke ndi_fmc_error() to 135 * iterate over the handle cache of one or more of its FM compliant 136 * children. A comparison callback function is provided upon each 137 * invocation of ndi_fmc_error() to tell the IO framework if a 138 * handle is associated with an error. If so, the framework will 139 * set the error status for that handle before returning from 140 * ndi_fmc_error(). 141 * 142 * ndi_fmc_error() may be called in any context 143 * subject to the constraints specified by the interrupt iblock cookie 144 * returned during initialization of the nexus and its children. 145 * 146 */ 147 148 #include <sys/types.h> 149 #include <sys/param.h> 150 #include <sys/debug.h> 151 #include <sys/sunddi.h> 152 #include <sys/sunndi.h> 153 #include <sys/ddi.h> 154 #include <sys/ndi_impldefs.h> 155 #include <sys/devctl.h> 156 #include <sys/nvpair.h> 157 #include <sys/ddifm.h> 158 #include <sys/ndifm.h> 159 #include <sys/spl.h> 160 #include <sys/sysmacros.h> 161 #include <sys/devops.h> 162 #include <sys/atomic.h> 163 #include <sys/kmem.h> 164 #include <sys/fm/io/ddi.h> 165 166 kmem_cache_t *ndi_fm_entry_cache; 167 168 void 169 ndi_fm_init(void) 170 { 171 ndi_fm_entry_cache = kmem_cache_create("ndi_fm_entry_cache", 172 sizeof (ndi_fmcentry_t), 0, NULL, NULL, NULL, NULL, NULL, 0); 173 } 174 175 /* 176 * Allocate and initialize a fault management resource cache 177 * A fault management cache consists of a set of cache elements that 178 * are allocated from "ndi_fm_entry_cache". 179 */ 180 /* ARGSUSED */ 181 void 182 i_ndi_fmc_create(ndi_fmc_t **fcpp, int qlen, ddi_iblock_cookie_t ibc) 183 { 184 ndi_fmc_t *fcp; 185 186 fcp = kmem_zalloc(sizeof (ndi_fmc_t), KM_SLEEP); 187 mutex_init(&fcp->fc_lock, NULL, MUTEX_DRIVER, ibc); 188 189 *fcpp = fcp; 190 } 191 192 /* 193 * Destroy and resources associated with the given fault management cache. 194 */ 195 void 196 i_ndi_fmc_destroy(ndi_fmc_t *fcp) 197 { 198 ndi_fmcentry_t *fep, *pp; 199 200 if (fcp == NULL) 201 return; 202 203 /* Free all the cached entries, this should not happen though */ 204 mutex_enter(&fcp->fc_lock); 205 for (fep = fcp->fc_head; fep != NULL; fep = pp) { 206 pp = fep->fce_next; 207 kmem_cache_free(ndi_fm_entry_cache, fep); 208 } 209 mutex_exit(&fcp->fc_lock); 210 mutex_destroy(&fcp->fc_lock); 211 kmem_free(fcp, sizeof (ndi_fmc_t)); 212 } 213 214 /* 215 * ndi_fmc_insert - 216 * Add a new entry to the specified cache. 217 * 218 * This function must be called at or below LOCK_LEVEL 219 */ 220 void 221 ndi_fmc_insert(dev_info_t *dip, int flag, void *resource, void *bus_specific) 222 { 223 struct dev_info *devi = DEVI(dip); 224 ndi_fmc_t *fcp; 225 ndi_fmcentry_t *fep, **fpp; 226 struct i_ddi_fmhdl *fmhdl; 227 228 ASSERT(devi); 229 ASSERT(flag == DMA_HANDLE || flag == ACC_HANDLE); 230 231 fmhdl = devi->devi_fmhdl; 232 if (fmhdl == NULL) { 233 i_ddi_drv_ereport_post(dip, DVR_EFMCAP, NULL, DDI_NOSLEEP); 234 return; 235 } 236 237 if (flag == DMA_HANDLE) { 238 if (!DDI_FM_DMA_ERR_CAP(fmhdl->fh_cap)) { 239 i_ddi_drv_ereport_post(dip, DVR_EFMCAP, NULL, 240 DDI_NOSLEEP); 241 return; 242 } 243 fcp = fmhdl->fh_dma_cache; 244 fpp = &((ddi_dma_impl_t *)resource)->dmai_error.err_fep; 245 } else if (flag == ACC_HANDLE) { 246 if (!DDI_FM_ACC_ERR_CAP(fmhdl->fh_cap)) { 247 i_ddi_drv_ereport_post(dip, DVR_EFMCAP, NULL, 248 DDI_NOSLEEP); 249 return; 250 } 251 fcp = fmhdl->fh_acc_cache; 252 fpp = &((ddi_acc_impl_t *)resource)->ahi_err->err_fep; 253 } 254 255 fep = kmem_cache_alloc(ndi_fm_entry_cache, KM_NOSLEEP); 256 if (fep == NULL) { 257 atomic_inc_64(&fmhdl->fh_kstat.fek_fmc_full.value.ui64); 258 return; 259 } 260 261 /* 262 * Set-up the handle resource and bus_specific information. 263 * Also remember the pointer back to the cache for quick removal. 264 */ 265 fep->fce_bus_specific = bus_specific; 266 fep->fce_resource = resource; 267 fep->fce_next = NULL; 268 269 /* Add entry to the end of the active list */ 270 mutex_enter(&fcp->fc_lock); 271 ASSERT(*fpp == NULL); 272 *fpp = fep; 273 fep->fce_prev = fcp->fc_tail; 274 if (fcp->fc_tail != NULL) 275 fcp->fc_tail->fce_next = fep; 276 else 277 fcp->fc_head = fep; 278 fcp->fc_tail = fep; 279 mutex_exit(&fcp->fc_lock); 280 } 281 282 /* 283 * Remove an entry from the specified cache of access or dma mappings 284 * 285 * This function must be called at or below LOCK_LEVEL. 286 */ 287 void 288 ndi_fmc_remove(dev_info_t *dip, int flag, const void *resource) 289 { 290 ndi_fmc_t *fcp; 291 ndi_fmcentry_t *fep; 292 struct dev_info *devi = DEVI(dip); 293 struct i_ddi_fmhdl *fmhdl; 294 295 ASSERT(devi); 296 ASSERT(flag == DMA_HANDLE || flag == ACC_HANDLE); 297 298 fmhdl = devi->devi_fmhdl; 299 if (fmhdl == NULL) { 300 i_ddi_drv_ereport_post(dip, DVR_EFMCAP, NULL, DDI_NOSLEEP); 301 return; 302 } 303 304 /* Find cache entry pointer for this resource */ 305 if (flag == DMA_HANDLE) { 306 if (!DDI_FM_DMA_ERR_CAP(fmhdl->fh_cap)) { 307 i_ddi_drv_ereport_post(dip, DVR_EFMCAP, NULL, 308 DDI_NOSLEEP); 309 return; 310 } 311 fcp = fmhdl->fh_dma_cache; 312 313 ASSERT(fcp); 314 315 mutex_enter(&fcp->fc_lock); 316 fep = ((ddi_dma_impl_t *)resource)->dmai_error.err_fep; 317 ((ddi_dma_impl_t *)resource)->dmai_error.err_fep = NULL; 318 } else if (flag == ACC_HANDLE) { 319 if (!DDI_FM_ACC_ERR_CAP(fmhdl->fh_cap)) { 320 i_ddi_drv_ereport_post(dip, DVR_EFMCAP, NULL, 321 DDI_NOSLEEP); 322 return; 323 } 324 fcp = fmhdl->fh_acc_cache; 325 326 ASSERT(fcp); 327 328 mutex_enter(&fcp->fc_lock); 329 fep = ((ddi_acc_impl_t *)resource)->ahi_err->err_fep; 330 ((ddi_acc_impl_t *)resource)->ahi_err->err_fep = NULL; 331 } else { 332 return; 333 } 334 335 /* 336 * Resource not in cache, return 337 */ 338 if (fep == NULL) { 339 mutex_exit(&fcp->fc_lock); 340 atomic_inc_64(&fmhdl->fh_kstat.fek_fmc_miss.value.ui64); 341 return; 342 } 343 344 /* 345 * Updates to FM cache pointers require us to grab fmc_lock 346 * to synchronize access to the cache for ndi_fmc_insert() 347 * and ndi_fmc_error() 348 */ 349 if (fep == fcp->fc_head) 350 fcp->fc_head = fep->fce_next; 351 else 352 fep->fce_prev->fce_next = fep->fce_next; 353 if (fep == fcp->fc_tail) 354 fcp->fc_tail = fep->fce_prev; 355 else 356 fep->fce_next->fce_prev = fep->fce_prev; 357 mutex_exit(&fcp->fc_lock); 358 359 kmem_cache_free(ndi_fm_entry_cache, fep); 360 } 361 362 int 363 ndi_fmc_entry_error(dev_info_t *dip, int flag, ddi_fm_error_t *derr, 364 const void *bus_err_state) 365 { 366 int status, fatal = 0, nonfatal = 0; 367 ndi_fmc_t *fcp = NULL; 368 ndi_fmcentry_t *fep; 369 struct i_ddi_fmhdl *fmhdl; 370 371 ASSERT(flag == DMA_HANDLE || flag == ACC_HANDLE); 372 373 fmhdl = DEVI(dip)->devi_fmhdl; 374 ASSERT(fmhdl); 375 status = DDI_FM_UNKNOWN; 376 377 if (flag == DMA_HANDLE && DDI_FM_DMA_ERR_CAP(fmhdl->fh_cap)) { 378 fcp = fmhdl->fh_dma_cache; 379 ASSERT(fcp); 380 } else if (flag == ACC_HANDLE && DDI_FM_ACC_ERR_CAP(fmhdl->fh_cap)) { 381 fcp = fmhdl->fh_acc_cache; 382 ASSERT(fcp); 383 } 384 385 if (fcp != NULL) { 386 387 /* 388 * Check active resource entries 389 */ 390 mutex_enter(&fcp->fc_lock); 391 for (fep = fcp->fc_head; fep != NULL; fep = fep->fce_next) { 392 ddi_fmcompare_t compare_func; 393 394 /* 395 * Compare captured error state with handle 396 * resources. During the comparison and 397 * subsequent error handling, we block 398 * attempts to free the cache entry. 399 */ 400 compare_func = (flag == ACC_HANDLE) ? 401 i_ddi_fm_acc_err_cf_get((ddi_acc_handle_t) 402 fep->fce_resource) : 403 i_ddi_fm_dma_err_cf_get((ddi_dma_handle_t) 404 fep->fce_resource); 405 406 status = compare_func(dip, fep->fce_resource, 407 bus_err_state, fep->fce_bus_specific); 408 if (status == DDI_FM_UNKNOWN || status == DDI_FM_OK) 409 continue; 410 411 if (status == DDI_FM_FATAL) 412 ++fatal; 413 else if (status == DDI_FM_NONFATAL) 414 ++nonfatal; 415 416 /* Set the error for this resource handle */ 417 if (flag == ACC_HANDLE) { 418 ddi_acc_handle_t ap = fep->fce_resource; 419 420 i_ddi_fm_acc_err_set(ap, derr->fme_ena, status, 421 DDI_FM_ERR_UNEXPECTED); 422 ddi_fm_acc_err_get(ap, derr, DDI_FME_VERSION); 423 derr->fme_acc_handle = ap; 424 } else { 425 ddi_dma_handle_t dp = fep->fce_resource; 426 427 i_ddi_fm_dma_err_set(dp, derr->fme_ena, status, 428 DDI_FM_ERR_UNEXPECTED); 429 ddi_fm_dma_err_get(dp, derr, DDI_FME_VERSION); 430 derr->fme_dma_handle = dp; 431 } 432 } 433 mutex_exit(&fcp->fc_lock); 434 } 435 return (fatal ? DDI_FM_FATAL : nonfatal ? DDI_FM_NONFATAL : 436 DDI_FM_UNKNOWN); 437 } 438 439 /* 440 * Check error state against the handle resource stored in the specified 441 * FM cache. If tdip != NULL, we check only the cache entries for tdip. 442 * The caller must ensure that tdip is valid throughout the call and 443 * all FM data structures can be safely accesses. 444 * 445 * If tdip == NULL, we check all children that have registered their 446 * FM_DMA_CHK or FM_ACC_CHK capabilities. 447 * 448 * The following status values may be returned: 449 * 450 * DDI_FM_FATAL - if at least one cache entry comparison yields a 451 * fatal error. 452 * 453 * DDI_FM_NONFATAL - if at least one cache entry comparison yields a 454 * non-fatal error and no comparison yields a fatal error. 455 * 456 * DDI_FM_UNKNOWN - cache entry comparisons did not yield fatal or 457 * non-fatal errors. 458 * 459 */ 460 int 461 ndi_fmc_error(dev_info_t *dip, dev_info_t *tdip, int flag, uint64_t ena, 462 const void *bus_err_state) 463 { 464 int status, fatal = 0, nonfatal = 0; 465 ddi_fm_error_t derr; 466 struct i_ddi_fmhdl *fmhdl; 467 struct i_ddi_fmtgt *tgt; 468 469 ASSERT(flag == DMA_HANDLE || flag == ACC_HANDLE); 470 471 i_ddi_fm_handler_enter(dip); 472 fmhdl = DEVI(dip)->devi_fmhdl; 473 ASSERT(fmhdl); 474 475 bzero(&derr, sizeof (ddi_fm_error_t)); 476 derr.fme_version = DDI_FME_VERSION; 477 derr.fme_flag = DDI_FM_ERR_UNEXPECTED; 478 derr.fme_ena = ena; 479 480 for (tgt = fmhdl->fh_tgts; tgt != NULL; tgt = tgt->ft_next) { 481 482 if (tdip != NULL && tdip != tgt->ft_dip) 483 continue; 484 485 /* 486 * Attempt to find the entry in this childs handle cache 487 */ 488 status = ndi_fmc_entry_error(tgt->ft_dip, flag, &derr, 489 bus_err_state); 490 491 if (status == DDI_FM_FATAL) 492 ++fatal; 493 else if (status == DDI_FM_NONFATAL) 494 ++nonfatal; 495 else 496 continue; 497 498 /* 499 * Call our child to process this error. 500 */ 501 status = tgt->ft_errhdl->eh_func(tgt->ft_dip, &derr, 502 tgt->ft_errhdl->eh_impl); 503 504 if (status == DDI_FM_FATAL) 505 ++fatal; 506 else if (status == DDI_FM_NONFATAL) 507 ++nonfatal; 508 } 509 510 i_ddi_fm_handler_exit(dip); 511 512 if (fatal) 513 return (DDI_FM_FATAL); 514 else if (nonfatal) 515 return (DDI_FM_NONFATAL); 516 517 return (DDI_FM_UNKNOWN); 518 } 519 520 int 521 ndi_fmc_entry_error_all(dev_info_t *dip, int flag, ddi_fm_error_t *derr) 522 { 523 ndi_fmc_t *fcp = NULL; 524 ndi_fmcentry_t *fep; 525 struct i_ddi_fmhdl *fmhdl; 526 int nonfatal = 0; 527 528 ASSERT(flag == DMA_HANDLE || flag == ACC_HANDLE); 529 530 fmhdl = DEVI(dip)->devi_fmhdl; 531 ASSERT(fmhdl); 532 533 if (flag == DMA_HANDLE && DDI_FM_DMA_ERR_CAP(fmhdl->fh_cap)) { 534 fcp = fmhdl->fh_dma_cache; 535 ASSERT(fcp); 536 } else if (flag == ACC_HANDLE && DDI_FM_ACC_ERR_CAP(fmhdl->fh_cap)) { 537 fcp = fmhdl->fh_acc_cache; 538 ASSERT(fcp); 539 } 540 541 if (fcp != NULL) { 542 /* 543 * Check active resource entries 544 */ 545 mutex_enter(&fcp->fc_lock); 546 for (fep = fcp->fc_head; fep != NULL; fep = fep->fce_next) { 547 /* Set the error for this resource handle */ 548 nonfatal++; 549 if (flag == ACC_HANDLE) { 550 ddi_acc_handle_t ap = fep->fce_resource; 551 552 i_ddi_fm_acc_err_set(ap, derr->fme_ena, 553 DDI_FM_NONFATAL, DDI_FM_ERR_UNEXPECTED); 554 ddi_fm_acc_err_get(ap, derr, DDI_FME_VERSION); 555 derr->fme_acc_handle = ap; 556 } else { 557 ddi_dma_handle_t dp = fep->fce_resource; 558 559 i_ddi_fm_dma_err_set(dp, derr->fme_ena, 560 DDI_FM_NONFATAL, DDI_FM_ERR_UNEXPECTED); 561 ddi_fm_dma_err_get(dp, derr, DDI_FME_VERSION); 562 derr->fme_dma_handle = dp; 563 } 564 } 565 mutex_exit(&fcp->fc_lock); 566 } 567 return (nonfatal ? DDI_FM_NONFATAL : DDI_FM_UNKNOWN); 568 } 569 570 /* 571 * Dispatch registered error handlers for dip. If tdip != NULL, only 572 * the error handler (if available) for tdip is invoked. Otherwise, 573 * all registered error handlers are invoked. 574 * 575 * The following status values may be returned: 576 * 577 * DDI_FM_FATAL - if at least one error handler returns a 578 * fatal error. 579 * 580 * DDI_FM_NONFATAL - if at least one error handler returns a 581 * non-fatal error and none returned a fatal error. 582 * 583 * DDI_FM_UNKNOWN - if at least one error handler returns 584 * unknown status and none return fatal or non-fatal. 585 * 586 * DDI_FM_OK - if all error handlers return DDI_FM_OK 587 */ 588 int 589 ndi_fm_handler_dispatch(dev_info_t *dip, dev_info_t *tdip, 590 const ddi_fm_error_t *nerr) 591 { 592 int status; 593 int unknown = 0, fatal = 0, nonfatal = 0; 594 struct i_ddi_fmhdl *hdl; 595 struct i_ddi_fmtgt *tgt; 596 597 status = DDI_FM_UNKNOWN; 598 599 i_ddi_fm_handler_enter(dip); 600 hdl = DEVI(dip)->devi_fmhdl; 601 tgt = hdl->fh_tgts; 602 while (tgt != NULL) { 603 if (tdip == NULL || tdip == tgt->ft_dip) { 604 struct i_ddi_errhdl *errhdl; 605 606 errhdl = tgt->ft_errhdl; 607 status = errhdl->eh_func(tgt->ft_dip, nerr, 608 errhdl->eh_impl); 609 610 if (status == DDI_FM_FATAL) 611 ++fatal; 612 else if (status == DDI_FM_NONFATAL) 613 ++nonfatal; 614 else if (status == DDI_FM_UNKNOWN) 615 ++unknown; 616 617 /* Only interested in one target */ 618 if (tdip != NULL) 619 break; 620 } 621 tgt = tgt->ft_next; 622 } 623 i_ddi_fm_handler_exit(dip); 624 625 if (fatal) 626 return (DDI_FM_FATAL); 627 else if (nonfatal) 628 return (DDI_FM_NONFATAL); 629 else if (unknown) 630 return (DDI_FM_UNKNOWN); 631 else 632 return (DDI_FM_OK); 633 } 634 635 /* 636 * Set error status for specified access or DMA handle 637 * 638 * May be called in any context but caller must insure validity of 639 * handle. 640 */ 641 void 642 ndi_fm_acc_err_set(ddi_acc_handle_t handle, ddi_fm_error_t *dfe) 643 { 644 i_ddi_fm_acc_err_set(handle, dfe->fme_ena, dfe->fme_status, 645 dfe->fme_flag); 646 } 647 648 void 649 ndi_fm_dma_err_set(ddi_dma_handle_t handle, ddi_fm_error_t *dfe) 650 { 651 i_ddi_fm_dma_err_set(handle, dfe->fme_ena, dfe->fme_status, 652 dfe->fme_flag); 653 } 654 655 /* 656 * Call parent busop fm initialization routine. 657 * 658 * Called during driver attach(1M) 659 */ 660 int 661 i_ndi_busop_fm_init(dev_info_t *dip, int tcap, ddi_iblock_cookie_t *ibc) 662 { 663 int pcap; 664 dev_info_t *pdip = (dev_info_t *)DEVI(dip)->devi_parent; 665 666 if (dip == ddi_root_node()) 667 return (ddi_system_fmcap | DDI_FM_EREPORT_CAPABLE); 668 669 /* Valid operation for BUSO_REV_6 and above */ 670 if (DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_6) 671 return (DDI_FM_NOT_CAPABLE); 672 673 if (DEVI(pdip)->devi_ops->devo_bus_ops->bus_fm_init == NULL) 674 return (DDI_FM_NOT_CAPABLE); 675 676 pcap = (*DEVI(pdip)->devi_ops->devo_bus_ops->bus_fm_init) 677 (pdip, dip, tcap, ibc); 678 679 return (pcap); 680 } 681 682 /* 683 * Call parent busop fm clean-up routine. 684 * 685 * Called during driver detach(1M) 686 */ 687 void 688 i_ndi_busop_fm_fini(dev_info_t *dip) 689 { 690 dev_info_t *pdip = (dev_info_t *)DEVI(dip)->devi_parent; 691 692 if (dip == ddi_root_node()) 693 return; 694 695 /* Valid operation for BUSO_REV_6 and above */ 696 if (DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_6) 697 return; 698 699 if (DEVI(pdip)->devi_ops->devo_bus_ops->bus_fm_fini == NULL) 700 return; 701 702 (*DEVI(pdip)->devi_ops->devo_bus_ops->bus_fm_fini)(pdip, dip); 703 } 704 705 /* 706 * The following routines provide exclusive access to a nexus resource 707 * 708 * These busops may be called in user or kernel driver context. 709 */ 710 void 711 i_ndi_busop_access_enter(dev_info_t *dip, ddi_acc_handle_t handle) 712 { 713 dev_info_t *pdip = (dev_info_t *)DEVI(dip)->devi_parent; 714 715 /* Valid operation for BUSO_REV_6 and above */ 716 if (DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_6) 717 return; 718 719 if (DEVI(pdip)->devi_ops->devo_bus_ops->bus_fm_access_enter == NULL) 720 return; 721 722 (*DEVI(pdip)->devi_ops->devo_bus_ops->bus_fm_access_enter) 723 (pdip, handle); 724 } 725 726 void 727 i_ndi_busop_access_exit(dev_info_t *dip, ddi_acc_handle_t handle) 728 { 729 dev_info_t *pdip = (dev_info_t *)DEVI(dip)->devi_parent; 730 731 /* Valid operation for BUSO_REV_6 and above */ 732 if (DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_6) 733 return; 734 735 if (DEVI(pdip)->devi_ops->devo_bus_ops->bus_fm_access_exit == NULL) 736 return; 737 738 (*DEVI(pdip)->devi_ops->devo_bus_ops->bus_fm_access_exit)(pdip, handle); 739 } 740