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, Version 1.0 only 6 * (the "License"). You may not use this file except in compliance 7 * with the License. 8 * 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 * or http://www.opensolaris.org/os/licensing. 11 * See the License for the specific language governing permissions 12 * and limitations under the License. 13 * 14 * When distributing Covered Code, include this CDDL HEADER in each 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 * If applicable, add the following below this CDDL HEADER, with the 17 * fields enclosed by brackets "[]" replaced with your own identifying 18 * information: Portions Copyright [yyyy] [name of copyright owner] 19 * 20 * CDDL HEADER END 21 */ 22 /* 23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #pragma ident "%Z%%M% %I% %E% SMI" 28 29 #include <sys/types.h> 30 #include <sys/sysmacros.h> 31 #include <sys/ddi.h> 32 #include <sys/sunddi.h> 33 #include <sys/ddifm.h> 34 #include <sys/fm/protocol.h> 35 #include <sys/vmem.h> 36 #include <sys/intr.h> 37 #include <sys/ivintr.h> 38 #include <sys/errno.h> 39 #include <sys/hypervisor_api.h> 40 #include <px_obj.h> 41 #include <sys/machsystm.h> 42 #include "px_lib4v.h" 43 #include "px_err.h" 44 45 /* mask for the ranges property in calculating the real PFN range */ 46 uint_t px_ranges_phi_mask = ((1 << 28) -1); 47 48 int 49 px_lib_dev_init(dev_info_t *dip, devhandle_t *dev_hdl) 50 { 51 px_nexus_regspec_t *rp; 52 uint_t reglen; 53 int ret; 54 55 DBG(DBG_ATTACH, dip, "px_lib_dev_init: dip 0x%p\n", dip); 56 57 ret = ddi_prop_lookup_byte_array(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS, 58 "reg", (uchar_t **)&rp, ®len); 59 if (ret != DDI_PROP_SUCCESS) { 60 DBG(DBG_ATTACH, dip, "px_lib_dev_init failed ret=%d\n", ret); 61 return (DDI_FAILURE); 62 } 63 64 /* 65 * Initilize device handle. The device handle uniquely identifies 66 * a SUN4V device. It consists of the lower 28-bits of the hi-cell 67 * of the first entry of the SUN4V device's "reg" property as 68 * defined by the SUN4V Bus Binding to Open Firmware. 69 */ 70 *dev_hdl = (devhandle_t)((rp->phys_addr >> 32) & DEVHDLE_MASK); 71 72 ddi_prop_free(rp); 73 74 DBG(DBG_ATTACH, dip, "px_lib_dev_init: dev_hdl 0x%llx\n", *dev_hdl); 75 76 return (DDI_SUCCESS); 77 } 78 79 /*ARGSUSED*/ 80 int 81 px_lib_dev_fini(dev_info_t *dip) 82 { 83 DBG(DBG_DETACH, dip, "px_lib_dev_fini: dip 0x%p\n", dip); 84 85 return (DDI_SUCCESS); 86 } 87 88 /*ARGSUSED*/ 89 int 90 px_lib_intr_devino_to_sysino(dev_info_t *dip, devino_t devino, 91 sysino_t *sysino) 92 { 93 uint64_t ret; 94 95 DBG(DBG_LIB_INT, dip, "px_lib_intr_devino_to_sysino: dip 0x%p " 96 "devino 0x%x\n", dip, devino); 97 98 if ((ret = hvio_intr_devino_to_sysino(DIP_TO_HANDLE(dip), 99 devino, sysino)) != H_EOK) { 100 DBG(DBG_LIB_INT, dip, 101 "hvio_intr_devino_to_sysino failed, ret 0x%lx\n", ret); 102 return (DDI_FAILURE); 103 } 104 105 DBG(DBG_LIB_INT, dip, "px_lib_intr_devino_to_sysino: sysino 0x%llx\n", 106 *sysino); 107 108 return (DDI_SUCCESS); 109 } 110 111 /*ARGSUSED*/ 112 int 113 px_lib_intr_getvalid(dev_info_t *dip, sysino_t sysino, 114 intr_valid_state_t *intr_valid_state) 115 { 116 uint64_t ret; 117 118 DBG(DBG_LIB_INT, dip, "px_lib_intr_getvalid: dip 0x%p sysino 0x%llx\n", 119 dip, sysino); 120 121 if ((ret = hvio_intr_getvalid(sysino, 122 (int *)intr_valid_state)) != H_EOK) { 123 DBG(DBG_LIB_INT, dip, "hvio_intr_getvalid failed, ret 0x%lx\n", 124 ret); 125 return (DDI_FAILURE); 126 } 127 128 DBG(DBG_LIB_INT, dip, "px_lib_intr_getvalid: intr_valid_state 0x%x\n", 129 *intr_valid_state); 130 131 return (DDI_SUCCESS); 132 } 133 134 /*ARGSUSED*/ 135 int 136 px_lib_intr_setvalid(dev_info_t *dip, sysino_t sysino, 137 intr_valid_state_t intr_valid_state) 138 { 139 uint64_t ret; 140 141 DBG(DBG_LIB_INT, dip, "px_lib_intr_setvalid: dip 0x%p sysino 0x%llx " 142 "intr_valid_state 0x%x\n", dip, sysino, intr_valid_state); 143 144 if ((ret = hvio_intr_setvalid(sysino, intr_valid_state)) != H_EOK) { 145 DBG(DBG_LIB_INT, dip, "hvio_intr_setvalid failed, ret 0x%lx\n", 146 ret); 147 return (DDI_FAILURE); 148 } 149 150 return (DDI_SUCCESS); 151 } 152 153 /*ARGSUSED*/ 154 int 155 px_lib_intr_getstate(dev_info_t *dip, sysino_t sysino, 156 intr_state_t *intr_state) 157 { 158 uint64_t ret; 159 160 DBG(DBG_LIB_INT, dip, "px_lib_intr_getstate: dip 0x%p sysino 0x%llx\n", 161 dip, sysino); 162 163 if ((ret = hvio_intr_getstate(sysino, (int *)intr_state)) != H_EOK) { 164 DBG(DBG_LIB_INT, dip, "hvio_intr_getstate failed, ret 0x%lx\n", 165 ret); 166 return (DDI_FAILURE); 167 } 168 169 DBG(DBG_LIB_INT, dip, "px_lib_intr_getstate: intr_state 0x%x\n", 170 *intr_state); 171 172 return (DDI_SUCCESS); 173 } 174 175 /*ARGSUSED*/ 176 int 177 px_lib_intr_setstate(dev_info_t *dip, sysino_t sysino, 178 intr_state_t intr_state) 179 { 180 uint64_t ret; 181 182 DBG(DBG_LIB_INT, dip, "px_lib_intr_setstate: dip 0x%p sysino 0x%llx " 183 "intr_state 0x%x\n", dip, sysino, intr_state); 184 185 if ((ret = hvio_intr_setstate(sysino, intr_state)) != H_EOK) { 186 DBG(DBG_LIB_INT, dip, "hvio_intr_setstate failed, ret 0x%lx\n", 187 ret); 188 return (DDI_FAILURE); 189 } 190 191 return (DDI_SUCCESS); 192 } 193 194 /*ARGSUSED*/ 195 int 196 px_lib_intr_gettarget(dev_info_t *dip, sysino_t sysino, cpuid_t *cpuid) 197 { 198 uint64_t ret; 199 200 DBG(DBG_LIB_INT, dip, "px_lib_intr_gettarget: dip 0x%p sysino 0x%llx\n", 201 dip, sysino); 202 203 if ((ret = hvio_intr_gettarget(sysino, cpuid)) != H_EOK) { 204 DBG(DBG_LIB_INT, dip, 205 "hvio_intr_gettarget failed, ret 0x%lx\n", ret); 206 return (DDI_FAILURE); 207 } 208 209 DBG(DBG_LIB_INT, dip, "px_lib_intr_gettarget: cpuid 0x%x\n", cpuid); 210 211 return (DDI_SUCCESS); 212 } 213 214 /*ARGSUSED*/ 215 int 216 px_lib_intr_settarget(dev_info_t *dip, sysino_t sysino, cpuid_t cpuid) 217 { 218 uint64_t ret; 219 220 DBG(DBG_LIB_INT, dip, "px_lib_intr_settarget: dip 0x%p sysino 0x%llx " 221 "cpuid 0x%x\n", dip, sysino, cpuid); 222 223 if ((ret = hvio_intr_settarget(sysino, cpuid)) != H_EOK) { 224 DBG(DBG_LIB_INT, dip, 225 "hvio_intr_settarget failed, ret 0x%lx\n", ret); 226 return (DDI_FAILURE); 227 } 228 229 return (DDI_SUCCESS); 230 } 231 232 /*ARGSUSED*/ 233 int 234 px_lib_intr_reset(dev_info_t *dip) 235 { 236 DBG(DBG_LIB_INT, dip, "px_lib_intr_reset: dip 0x%p\n", dip); 237 238 return (DDI_SUCCESS); 239 } 240 241 /*ARGSUSED*/ 242 int 243 px_lib_iommu_map(dev_info_t *dip, tsbid_t tsbid, pages_t pages, 244 io_attributes_t io_attributes, void *addr, size_t pfn_index, 245 int flag) 246 { 247 pages_t pgs_mapped = 0, pgs_cnt = 0; 248 pages_t pgs = pages; 249 tsbnum_t tsb_num = PCI_TSBID_TO_TSBNUM(tsbid); 250 tsbindex_t tsbindex = PCI_TSBID_TO_TSBINDEX(tsbid); 251 io_page_list_t *io_page_list_p, *ptr; 252 int i, err = DDI_SUCCESS; 253 uint64_t ret; 254 255 DBG(DBG_LIB_DMA, dip, "px_lib_iommu_map: dip 0x%p tsbid 0x%llx " 256 "pages 0x%x atrr 0x%x addr 0x%p pfn_index 0x%llx, flag 0x%x\n", 257 dip, tsbid, pages, io_attributes, addr, pfn_index, flag); 258 259 if ((ptr = kmem_zalloc((pages * sizeof (io_page_list_t)), 260 KM_NOSLEEP)) == NULL) { 261 DBG(DBG_LIB_DMA, dip, "px_lib_iommu_map: kmem_zalloc failed\n"); 262 return (DDI_FAILURE); 263 } 264 265 io_page_list_p = (io_page_list_t *)ptr; 266 267 if (flag == MMU_MAP_MP) { 268 ddi_dma_impl_t *mp = (ddi_dma_impl_t *)addr; 269 270 for (i = 0; i < pages; i++, pfn_index++) { 271 px_iopfn_t pfn = PX_GET_MP_PFN(mp, pfn_index); 272 io_page_list_p[i] = MMU_PTOB(pfn); 273 } 274 } else { 275 caddr_t a = (caddr_t)addr; 276 277 for (i = 0; i < pages; i++, a += MMU_PAGE_SIZE) { 278 px_iopfn_t pfn = hat_getpfnum(kas.a_hat, a); 279 io_page_list_p[i] = MMU_PTOB(pfn); 280 } 281 } 282 283 io_page_list_p = (io_page_list_t *)va_to_pa(ptr); 284 pgs_mapped = 0; 285 286 while (pgs) { 287 if ((ret = hvio_iommu_map(DIP_TO_HANDLE(dip), 288 PCI_TSBID(tsb_num, tsbindex), pgs, io_attributes, 289 io_page_list_p, &pgs_cnt)) != H_EOK) { 290 DBG(DBG_LIB_DMA, dip, 291 "hvio_iommu_map failed, ret 0x%lx\n", ret); 292 err = DDI_FAILURE; 293 break; 294 } 295 296 pgs_mapped += pgs_cnt; 297 pgs -= pgs_cnt; 298 tsbindex += pgs_cnt; 299 io_page_list_p += pgs_cnt; 300 pgs_cnt = 0; 301 } 302 303 if ((err == DDI_FAILURE) && (pgs_mapped)) 304 (void) px_lib_iommu_demap(dip, tsbid, pgs_mapped); 305 306 kmem_free(ptr, (pages * sizeof (io_page_list_t))); 307 308 return (err); 309 } 310 311 /*ARGSUSED*/ 312 int 313 px_lib_iommu_demap(dev_info_t *dip, tsbid_t tsbid, pages_t pages) 314 { 315 tsbnum_t tsb_num = PCI_TSBID_TO_TSBNUM(tsbid); 316 tsbindex_t tsbindex = PCI_TSBID_TO_TSBINDEX(tsbid); 317 pages_t pgs_cnt = 0; 318 uint64_t ret; 319 320 DBG(DBG_LIB_DMA, dip, "px_lib_iommu_demap: dip 0x%p tsbid 0x%llx " 321 "pages 0x%x\n", dip, tsbid, pages); 322 323 while (pages) { 324 if ((ret = hvio_iommu_demap(DIP_TO_HANDLE(dip), 325 PCI_TSBID(tsb_num, tsbindex), pages, 326 &pgs_cnt)) != H_EOK) { 327 DBG(DBG_LIB_DMA, dip, 328 "hvio_iommu_demap failed, ret 0x%lx\n", ret); 329 return (DDI_FAILURE); 330 } 331 332 pages -= pgs_cnt; 333 tsbindex += pgs_cnt; 334 pgs_cnt = 0; 335 } 336 337 return (DDI_SUCCESS); 338 } 339 340 /*ARGSUSED*/ 341 int 342 px_lib_iommu_getmap(dev_info_t *dip, tsbid_t tsbid, 343 io_attributes_t *attributes_p, r_addr_t *r_addr_p) 344 { 345 uint64_t ret; 346 347 DBG(DBG_LIB_DMA, dip, "px_lib_iommu_getmap: dip 0x%p tsbid 0x%llx\n", 348 dip, tsbid); 349 350 if ((ret = hvio_iommu_getmap(DIP_TO_HANDLE(dip), tsbid, 351 attributes_p, r_addr_p)) != H_EOK) { 352 DBG(DBG_LIB_DMA, dip, 353 "hvio_iommu_getmap failed, ret 0x%lx\n", ret); 354 355 return ((ret == H_ENOMAP) ? DDI_DMA_NOMAPPING:DDI_FAILURE); 356 } 357 358 DBG(DBG_LIB_DMA, dip, "px_lib_iommu_getmap: attr 0x%x r_addr 0x%llx\n", 359 *attributes_p, *r_addr_p); 360 361 return (DDI_SUCCESS); 362 } 363 364 365 /* 366 * Checks dma attributes against system bypass ranges 367 * A sun4v device must be capable of generating the entire 64-bit 368 * address in order to perform bypass DMA. 369 */ 370 /*ARGSUSED*/ 371 int 372 px_lib_dma_bypass_rngchk(ddi_dma_attr_t *attrp, uint64_t *lo_p, uint64_t *hi_p) 373 { 374 if ((attrp->dma_attr_addr_lo != 0ull) || 375 (attrp->dma_attr_addr_hi != UINT64_MAX)) { 376 377 return (DDI_DMA_BADATTR); 378 } 379 380 *lo_p = 0ull; 381 *hi_p = UINT64_MAX; 382 383 return (DDI_SUCCESS); 384 } 385 386 387 /*ARGSUSED*/ 388 int 389 px_lib_iommu_getbypass(dev_info_t *dip, r_addr_t ra, 390 io_attributes_t io_attributes, io_addr_t *io_addr_p) 391 { 392 uint64_t ret; 393 394 DBG(DBG_LIB_DMA, dip, "px_lib_iommu_getbypass: dip 0x%p ra 0x%llx " 395 "attr 0x%x\n", dip, ra, io_attributes); 396 397 if ((ret = hvio_iommu_getbypass(DIP_TO_HANDLE(dip), ra, 398 io_attributes, io_addr_p)) != H_EOK) { 399 DBG(DBG_LIB_DMA, dip, 400 "hvio_iommu_getbypass failed, ret 0x%lx\n", ret); 401 return (ret == H_ENOTSUPPORTED ? DDI_ENOTSUP : DDI_FAILURE); 402 } 403 404 DBG(DBG_LIB_DMA, dip, "px_lib_iommu_getbypass: io_addr 0x%llx\n", 405 *io_addr_p); 406 407 return (DDI_SUCCESS); 408 } 409 410 /*ARGSUSED*/ 411 int 412 px_lib_dma_sync(dev_info_t *dip, dev_info_t *rdip, ddi_dma_handle_t handle, 413 off_t off, size_t len, uint_t cache_flags) 414 { 415 ddi_dma_impl_t *mp = (ddi_dma_impl_t *)handle; 416 uint64_t sync_dir; 417 px_dvma_addr_t dvma_addr, pg_off; 418 size_t num_sync; 419 uint64_t status = H_EOK; 420 421 DBG(DBG_LIB_DMA, dip, "px_lib_dma_sync: dip 0x%p rdip 0x%p " 422 "handle 0x%llx off 0x%x len 0x%x flags 0x%x\n", 423 dip, rdip, handle, off, len, cache_flags); 424 425 if (!(mp->dmai_flags & DMAI_FLAGS_INUSE)) { 426 cmn_err(CE_WARN, "%s%d: Unbound dma handle %p.", 427 ddi_driver_name(rdip), ddi_get_instance(rdip), (void *)mp); 428 return (DDI_FAILURE); 429 } 430 431 if (mp->dmai_flags & DMAI_FLAGS_NOSYNC) 432 return (DDI_SUCCESS); 433 434 if (!len) 435 len = mp->dmai_size; 436 437 pg_off = mp->dmai_offset; /* start min */ 438 dvma_addr = MAX(off, pg_off); /* lo */ 439 pg_off += mp->dmai_size; /* end max */ 440 pg_off = MIN(off + len, pg_off); /* hi */ 441 if (dvma_addr >= pg_off) { /* lo >= hi ? */ 442 cmn_err(CE_WARN, "%s%d: %lx + %lx out of window [%lx,%lx]", 443 ddi_driver_name(rdip), ddi_get_instance(rdip), 444 off, len, mp->dmai_offset, 445 mp->dmai_offset + mp->dmai_size); 446 return (DDI_FAILURE); 447 } 448 449 len = pg_off - dvma_addr; /* sz = hi - lo */ 450 dvma_addr += mp->dmai_mapping; /* start addr */ 451 452 if (mp->dmai_rflags & DDI_DMA_READ) 453 sync_dir = HVIO_DMA_SYNC_DIR_FROM_DEV; 454 else 455 sync_dir = HVIO_DMA_SYNC_DIR_TO_DEV; 456 457 for (; ((len > 0) && (status == H_EOK)); len -= num_sync) { 458 status = hvio_dma_sync(DIP_TO_HANDLE(dip), dvma_addr, len, 459 sync_dir, &num_sync); 460 dvma_addr += num_sync; 461 } 462 463 return ((status == H_EOK) ? DDI_SUCCESS : DDI_FAILURE); 464 } 465 466 467 /* 468 * MSIQ Functions: 469 */ 470 471 /*ARGSUSED*/ 472 int 473 px_lib_msiq_init(dev_info_t *dip) 474 { 475 px_t *px_p = DIP_TO_STATE(dip); 476 px_msiq_state_t *msiq_state_p = &px_p->px_ib_p->ib_msiq_state; 477 uint64_t *msiq_addr, ra; 478 size_t msiq_size; 479 uint_t rec_cnt; 480 int i, err = DDI_SUCCESS; 481 uint64_t ret; 482 483 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_init: dip 0x%p\n", dip); 484 485 msiq_addr = (uint64_t *)(((uint64_t)msiq_state_p->msiq_buf_p + 486 (MMU_PAGE_SIZE - 1)) >> MMU_PAGE_SHIFT << MMU_PAGE_SHIFT); 487 488 msiq_size = msiq_state_p->msiq_rec_cnt * sizeof (msiq_rec_t); 489 490 for (i = 0; i < msiq_state_p->msiq_cnt; i++) { 491 ra = (r_addr_t)va_to_pa((caddr_t)msiq_addr + (i * msiq_size)); 492 493 if ((ret = hvio_msiq_conf(DIP_TO_HANDLE(dip), 494 (i + msiq_state_p->msiq_1st_msiq_id), 495 ra, msiq_state_p->msiq_rec_cnt)) != H_EOK) { 496 DBG(DBG_LIB_MSIQ, dip, 497 "hvio_msiq_conf failed, ret 0x%lx\n", ret); 498 err = DDI_FAILURE; 499 break; 500 } 501 502 if ((err = px_lib_msiq_info(dip, 503 (i + msiq_state_p->msiq_1st_msiq_id), 504 &ra, &rec_cnt)) != DDI_SUCCESS) { 505 DBG(DBG_LIB_MSIQ, dip, 506 "px_lib_msiq_info failed, ret 0x%x\n", err); 507 err = DDI_FAILURE; 508 break; 509 } 510 511 DBG(DBG_LIB_MSIQ, dip, 512 "px_lib_msiq_init: ra 0x%p rec_cnt 0x%x\n", ra, rec_cnt); 513 } 514 515 return (err); 516 } 517 518 /*ARGSUSED*/ 519 int 520 px_lib_msiq_fini(dev_info_t *dip) 521 { 522 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_fini: dip 0x%p\n", dip); 523 524 return (DDI_SUCCESS); 525 } 526 527 /*ARGSUSED*/ 528 int 529 px_lib_msiq_info(dev_info_t *dip, msiqid_t msiq_id, r_addr_t *ra_p, 530 uint_t *msiq_rec_cnt_p) 531 { 532 uint64_t ret; 533 534 DBG(DBG_LIB_MSIQ, dip, "px_msiq_info: dip 0x%p msiq_id 0x%x\n", 535 dip, msiq_id); 536 537 if ((ret = hvio_msiq_info(DIP_TO_HANDLE(dip), 538 msiq_id, ra_p, msiq_rec_cnt_p)) != H_EOK) { 539 DBG(DBG_LIB_MSIQ, dip, 540 "hvio_msiq_info failed, ret 0x%lx\n", ret); 541 return (DDI_FAILURE); 542 } 543 544 DBG(DBG_LIB_MSIQ, dip, "px_msiq_info: ra_p 0x%p msiq_rec_cnt 0x%x\n", 545 ra_p, *msiq_rec_cnt_p); 546 547 return (DDI_SUCCESS); 548 } 549 550 /*ARGSUSED*/ 551 int 552 px_lib_msiq_getvalid(dev_info_t *dip, msiqid_t msiq_id, 553 pci_msiq_valid_state_t *msiq_valid_state) 554 { 555 uint64_t ret; 556 557 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_getvalid: dip 0x%p msiq_id 0x%x\n", 558 dip, msiq_id); 559 560 if ((ret = hvio_msiq_getvalid(DIP_TO_HANDLE(dip), 561 msiq_id, msiq_valid_state)) != H_EOK) { 562 DBG(DBG_LIB_MSIQ, dip, 563 "hvio_msiq_getvalid failed, ret 0x%lx\n", ret); 564 return (DDI_FAILURE); 565 } 566 567 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_getvalid: msiq_valid_state 0x%x\n", 568 *msiq_valid_state); 569 570 return (DDI_SUCCESS); 571 } 572 573 /*ARGSUSED*/ 574 int 575 px_lib_msiq_setvalid(dev_info_t *dip, msiqid_t msiq_id, 576 pci_msiq_valid_state_t msiq_valid_state) 577 { 578 uint64_t ret; 579 580 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_setvalid: dip 0x%p msiq_id 0x%x " 581 "msiq_valid_state 0x%x\n", dip, msiq_id, msiq_valid_state); 582 583 if ((ret = hvio_msiq_setvalid(DIP_TO_HANDLE(dip), 584 msiq_id, msiq_valid_state)) != H_EOK) { 585 DBG(DBG_LIB_MSIQ, dip, 586 "hvio_msiq_setvalid failed, ret 0x%lx\n", ret); 587 return (DDI_FAILURE); 588 } 589 590 return (DDI_SUCCESS); 591 } 592 593 /*ARGSUSED*/ 594 int 595 px_lib_msiq_getstate(dev_info_t *dip, msiqid_t msiq_id, 596 pci_msiq_state_t *msiq_state) 597 { 598 uint64_t ret; 599 600 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_getstate: dip 0x%p msiq_id 0x%x\n", 601 dip, msiq_id); 602 603 if ((ret = hvio_msiq_getstate(DIP_TO_HANDLE(dip), 604 msiq_id, msiq_state)) != H_EOK) { 605 DBG(DBG_LIB_MSIQ, dip, 606 "hvio_msiq_getstate failed, ret 0x%lx\n", ret); 607 return (DDI_FAILURE); 608 } 609 610 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_getstate: msiq_state 0x%x\n", 611 *msiq_state); 612 613 return (DDI_SUCCESS); 614 } 615 616 /*ARGSUSED*/ 617 int 618 px_lib_msiq_setstate(dev_info_t *dip, msiqid_t msiq_id, 619 pci_msiq_state_t msiq_state) 620 { 621 uint64_t ret; 622 623 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_setstate: dip 0x%p msiq_id 0x%x " 624 "msiq_state 0x%x\n", dip, msiq_id, msiq_state); 625 626 if ((ret = hvio_msiq_setstate(DIP_TO_HANDLE(dip), 627 msiq_id, msiq_state)) != H_EOK) { 628 DBG(DBG_LIB_MSIQ, dip, 629 "hvio_msiq_setstate failed, ret 0x%lx\n", ret); 630 return (DDI_FAILURE); 631 } 632 633 return (DDI_SUCCESS); 634 } 635 636 /*ARGSUSED*/ 637 int 638 px_lib_msiq_gethead(dev_info_t *dip, msiqid_t msiq_id, 639 msiqhead_t *msiq_head_p) 640 { 641 uint64_t ret; 642 643 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_gethead: dip 0x%p msiq_id 0x%x\n", 644 dip, msiq_id); 645 646 if ((ret = hvio_msiq_gethead(DIP_TO_HANDLE(dip), 647 msiq_id, msiq_head_p)) != H_EOK) { 648 DBG(DBG_LIB_MSIQ, dip, 649 "hvio_msiq_gethead failed, ret 0x%lx\n", ret); 650 return (DDI_FAILURE); 651 } 652 653 *msiq_head_p = (*msiq_head_p / sizeof (msiq_rec_t)); 654 655 DBG(DBG_LIB_MSIQ, dip, "px_msiq_gethead: msiq_head 0x%x\n", 656 *msiq_head_p); 657 658 return (DDI_SUCCESS); 659 } 660 661 /*ARGSUSED*/ 662 int 663 px_lib_msiq_sethead(dev_info_t *dip, msiqid_t msiq_id, 664 msiqhead_t msiq_head) 665 { 666 uint64_t ret; 667 668 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_sethead: dip 0x%p msiq_id 0x%x " 669 "msiq_head 0x%x\n", dip, msiq_id, msiq_head); 670 671 if ((ret = hvio_msiq_sethead(DIP_TO_HANDLE(dip), 672 msiq_id, msiq_head * sizeof (msiq_rec_t))) != H_EOK) { 673 DBG(DBG_LIB_MSIQ, dip, 674 "hvio_msiq_sethead failed, ret 0x%lx\n", ret); 675 return (DDI_FAILURE); 676 } 677 678 return (DDI_SUCCESS); 679 } 680 681 /*ARGSUSED*/ 682 int 683 px_lib_msiq_gettail(dev_info_t *dip, msiqid_t msiq_id, 684 msiqtail_t *msiq_tail_p) 685 { 686 uint64_t ret; 687 688 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_gettail: dip 0x%p msiq_id 0x%x\n", 689 dip, msiq_id); 690 691 if ((ret = hvio_msiq_gettail(DIP_TO_HANDLE(dip), 692 msiq_id, msiq_tail_p)) != H_EOK) { 693 DBG(DBG_LIB_MSIQ, dip, 694 "hvio_msiq_gettail failed, ret 0x%lx\n", ret); 695 return (DDI_FAILURE); 696 } 697 698 *msiq_tail_p = (*msiq_tail_p / sizeof (msiq_rec_t)); 699 DBG(DBG_LIB_MSIQ, dip, "px_lib_msiq_gettail: msiq_tail 0x%x\n", 700 *msiq_tail_p); 701 702 return (DDI_SUCCESS); 703 } 704 705 /*ARGSUSED*/ 706 void 707 px_lib_get_msiq_rec(dev_info_t *dip, px_msiq_t *msiq_p, msiq_rec_t *msiq_rec_p) 708 { 709 msiq_rec_t *curr_msiq_rec_p = (msiq_rec_t *)msiq_p->msiq_curr; 710 711 DBG(DBG_LIB_MSIQ, dip, "px_lib_get_msiq_rec: dip 0x%p\n", dip); 712 713 if (!curr_msiq_rec_p->msiq_rec_type) 714 return; 715 716 *msiq_rec_p = *curr_msiq_rec_p; 717 718 /* Zero out msiq_rec_type field */ 719 curr_msiq_rec_p->msiq_rec_type = 0; 720 } 721 722 /* 723 * MSI Functions: 724 */ 725 726 /*ARGSUSED*/ 727 int 728 px_lib_msi_init(dev_info_t *dip) 729 { 730 DBG(DBG_LIB_MSI, dip, "px_lib_msi_init: dip 0x%p\n", dip); 731 732 /* Noop */ 733 return (DDI_SUCCESS); 734 } 735 736 /*ARGSUSED*/ 737 int 738 px_lib_msi_getmsiq(dev_info_t *dip, msinum_t msi_num, 739 msiqid_t *msiq_id) 740 { 741 uint64_t ret; 742 743 DBG(DBG_LIB_MSI, dip, "px_lib_msi_getmsiq: dip 0x%p msi_num 0x%x\n", 744 dip, msi_num); 745 746 if ((ret = hvio_msi_getmsiq(DIP_TO_HANDLE(dip), 747 msi_num, msiq_id)) != H_EOK) { 748 DBG(DBG_LIB_MSI, dip, 749 "hvio_msi_getmsiq failed, ret 0x%lx\n", ret); 750 return (DDI_FAILURE); 751 } 752 753 DBG(DBG_LIB_MSI, dip, "px_lib_msi_getmsiq: msiq_id 0x%x\n", 754 *msiq_id); 755 756 return (DDI_SUCCESS); 757 } 758 759 /*ARGSUSED*/ 760 int 761 px_lib_msi_setmsiq(dev_info_t *dip, msinum_t msi_num, 762 msiqid_t msiq_id, msi_type_t msitype) 763 { 764 uint64_t ret; 765 766 DBG(DBG_LIB_MSI, dip, "px_lib_msi_setmsiq: dip 0x%p msi_num 0x%x " 767 "msq_id 0x%x\n", dip, msi_num, msiq_id); 768 769 if ((ret = hvio_msi_setmsiq(DIP_TO_HANDLE(dip), 770 msi_num, msiq_id, msitype)) != H_EOK) { 771 DBG(DBG_LIB_MSI, dip, 772 "hvio_msi_setmsiq failed, ret 0x%lx\n", ret); 773 return (DDI_FAILURE); 774 } 775 776 return (DDI_SUCCESS); 777 } 778 779 /*ARGSUSED*/ 780 int 781 px_lib_msi_getvalid(dev_info_t *dip, msinum_t msi_num, 782 pci_msi_valid_state_t *msi_valid_state) 783 { 784 uint64_t ret; 785 786 DBG(DBG_LIB_MSI, dip, "px_lib_msi_getvalid: dip 0x%p msi_num 0x%x\n", 787 dip, msi_num); 788 789 if ((ret = hvio_msi_getvalid(DIP_TO_HANDLE(dip), 790 msi_num, msi_valid_state)) != H_EOK) { 791 DBG(DBG_LIB_MSI, dip, 792 "hvio_msi_getvalid failed, ret 0x%lx\n", ret); 793 return (DDI_FAILURE); 794 } 795 796 DBG(DBG_LIB_MSI, dip, "px_lib_msi_getvalid: msiq_id 0x%x\n", 797 *msi_valid_state); 798 799 return (DDI_SUCCESS); 800 } 801 802 /*ARGSUSED*/ 803 int 804 px_lib_msi_setvalid(dev_info_t *dip, msinum_t msi_num, 805 pci_msi_valid_state_t msi_valid_state) 806 { 807 uint64_t ret; 808 809 DBG(DBG_LIB_MSI, dip, "px_lib_msi_setvalid: dip 0x%p msi_num 0x%x " 810 "msi_valid_state 0x%x\n", dip, msi_num, msi_valid_state); 811 812 if ((ret = hvio_msi_setvalid(DIP_TO_HANDLE(dip), 813 msi_num, msi_valid_state)) != H_EOK) { 814 DBG(DBG_LIB_MSI, dip, 815 "hvio_msi_setvalid failed, ret 0x%lx\n", ret); 816 return (DDI_FAILURE); 817 } 818 819 return (DDI_SUCCESS); 820 } 821 822 /*ARGSUSED*/ 823 int 824 px_lib_msi_getstate(dev_info_t *dip, msinum_t msi_num, 825 pci_msi_state_t *msi_state) 826 { 827 uint64_t ret; 828 829 DBG(DBG_LIB_MSI, dip, "px_lib_msi_getstate: dip 0x%p msi_num 0x%x\n", 830 dip, msi_num); 831 832 if ((ret = hvio_msi_getstate(DIP_TO_HANDLE(dip), 833 msi_num, msi_state)) != H_EOK) { 834 DBG(DBG_LIB_MSI, dip, 835 "hvio_msi_getstate failed, ret 0x%lx\n", ret); 836 return (DDI_FAILURE); 837 } 838 839 DBG(DBG_LIB_MSI, dip, "px_lib_msi_getstate: msi_state 0x%x\n", 840 *msi_state); 841 842 return (DDI_SUCCESS); 843 } 844 845 /*ARGSUSED*/ 846 int 847 px_lib_msi_setstate(dev_info_t *dip, msinum_t msi_num, 848 pci_msi_state_t msi_state) 849 { 850 uint64_t ret; 851 852 DBG(DBG_LIB_MSI, dip, "px_lib_msi_setstate: dip 0x%p msi_num 0x%x " 853 "msi_state 0x%x\n", dip, msi_num, msi_state); 854 855 if ((ret = hvio_msi_setstate(DIP_TO_HANDLE(dip), 856 msi_num, msi_state)) != H_EOK) { 857 DBG(DBG_LIB_MSI, dip, 858 "hvio_msi_setstate failed, ret 0x%lx\n", ret); 859 return (DDI_FAILURE); 860 } 861 862 return (DDI_SUCCESS); 863 } 864 865 /* 866 * MSG Functions: 867 */ 868 869 /*ARGSUSED*/ 870 int 871 px_lib_msg_getmsiq(dev_info_t *dip, pcie_msg_type_t msg_type, 872 msiqid_t *msiq_id) 873 { 874 uint64_t ret; 875 876 DBG(DBG_LIB_MSG, dip, "px_lib_msg_getmsiq: dip 0x%p msg_type 0x%x\n", 877 dip, msg_type); 878 879 if ((ret = hvio_msg_getmsiq(DIP_TO_HANDLE(dip), 880 msg_type, msiq_id)) != H_EOK) { 881 DBG(DBG_LIB_MSG, dip, 882 "hvio_msg_getmsiq failed, ret 0x%lx\n", ret); 883 return (DDI_FAILURE); 884 } 885 886 DBG(DBG_LIB_MSI, dip, "px_lib_msg_getmsiq: msiq_id 0x%x\n", 887 *msiq_id); 888 889 return (DDI_SUCCESS); 890 } 891 892 /*ARGSUSED*/ 893 int 894 px_lib_msg_setmsiq(dev_info_t *dip, pcie_msg_type_t msg_type, 895 msiqid_t msiq_id) 896 { 897 uint64_t ret; 898 899 DBG(DBG_LIB_MSG, dip, "px_lib_msg_setmsiq: dip 0x%p msg_type 0x%x " 900 "msq_id 0x%x\n", dip, msg_type, msiq_id); 901 902 if ((ret = hvio_msg_setmsiq(DIP_TO_HANDLE(dip), 903 msg_type, msiq_id)) != H_EOK) { 904 DBG(DBG_LIB_MSG, dip, 905 "hvio_msg_setmsiq failed, ret 0x%lx\n", ret); 906 return (DDI_FAILURE); 907 } 908 909 return (DDI_SUCCESS); 910 } 911 912 /*ARGSUSED*/ 913 int 914 px_lib_msg_getvalid(dev_info_t *dip, pcie_msg_type_t msg_type, 915 pcie_msg_valid_state_t *msg_valid_state) 916 { 917 uint64_t ret; 918 919 DBG(DBG_LIB_MSG, dip, "px_lib_msg_getvalid: dip 0x%p msg_type 0x%x\n", 920 dip, msg_type); 921 922 if ((ret = hvio_msg_getvalid(DIP_TO_HANDLE(dip), msg_type, 923 msg_valid_state)) != H_EOK) { 924 DBG(DBG_LIB_MSG, dip, 925 "hvio_msg_getvalid failed, ret 0x%lx\n", ret); 926 return (DDI_FAILURE); 927 } 928 929 DBG(DBG_LIB_MSI, dip, "px_lib_msg_getvalid: msg_valid_state 0x%x\n", 930 *msg_valid_state); 931 932 return (DDI_SUCCESS); 933 } 934 935 /*ARGSUSED*/ 936 int 937 px_lib_msg_setvalid(dev_info_t *dip, pcie_msg_type_t msg_type, 938 pcie_msg_valid_state_t msg_valid_state) 939 { 940 uint64_t ret; 941 942 DBG(DBG_LIB_MSG, dip, "px_lib_msg_setvalid: dip 0x%p msg_type 0x%x " 943 "msg_valid_state 0x%x\n", dip, msg_type, msg_valid_state); 944 945 if ((ret = hvio_msg_setvalid(DIP_TO_HANDLE(dip), msg_type, 946 msg_valid_state)) != H_EOK) { 947 DBG(DBG_LIB_MSG, dip, 948 "hvio_msg_setvalid failed, ret 0x%lx\n", ret); 949 return (DDI_FAILURE); 950 } 951 952 return (DDI_SUCCESS); 953 } 954 955 /* 956 * Suspend/Resume Functions: 957 * Currently unsupported by hypervisor and all functions are noops. 958 */ 959 /*ARGSUSED*/ 960 int 961 px_lib_suspend(dev_info_t *dip) 962 { 963 DBG(DBG_ATTACH, dip, "px_lib_suspend: Not supported\n"); 964 965 /* Not supported */ 966 return (DDI_FAILURE); 967 } 968 969 /*ARGSUSED*/ 970 void 971 px_lib_resume(dev_info_t *dip) 972 { 973 DBG(DBG_ATTACH, dip, "px_lib_resume: Not supported\n"); 974 975 /* Noop */ 976 } 977 978 /* 979 * PCI tool Functions: 980 * Currently unsupported by hypervisor and all functions are noops. 981 */ 982 /*ARGSUSED*/ 983 int 984 px_lib_tools_dev_reg_ops(dev_info_t *dip, void *arg, int cmd, int mode) 985 { 986 DBG(DBG_TOOLS, dip, "px_lib_tools_dev_reg_ops: Not supported\n"); 987 988 return (DDI_FAILURE); 989 } 990 991 /*ARGSUSED*/ 992 int 993 px_lib_tools_bus_reg_ops(dev_info_t *dip, void *arg, int cmd, int mode) 994 { 995 DBG(DBG_TOOLS, dip, "px_lib_tools_bus_reg_ops: Not supported\n"); 996 997 return (DDI_FAILURE); 998 } 999 1000 /*ARGSUSED*/ 1001 int 1002 px_lib_tools_intr_admn(dev_info_t *dip, void *arg, int cmd, int mode) 1003 { 1004 DBG(DBG_TOOLS, dip, "px_lib_tools_intr_admn: Not supported\n"); 1005 1006 return (DDI_FAILURE); 1007 } 1008 1009 /* 1010 * Misc Functions: 1011 * Currently unsupported by hypervisor and all functions are noops. 1012 */ 1013 /*ARGSUSED*/ 1014 uint64_t 1015 px_lib_get_cb(dev_info_t *dip) 1016 { 1017 return (DDI_SUCCESS); 1018 } 1019 1020 /*ARGSUSED*/ 1021 void 1022 px_lib_set_cb(dev_info_t *dip, uint64_t val) 1023 { 1024 /* Noop */ 1025 } 1026 1027 /*ARGSUSED*/ 1028 static int 1029 px_lib_config_get(dev_info_t *dip, pci_device_t bdf, pci_config_offset_t off, 1030 uint8_t size, pci_cfg_data_t *data_p) 1031 { 1032 uint64_t ret; 1033 1034 DBG(DBG_LIB_CFG, dip, "px_lib_config_get: dip 0x%p, bdf 0x%llx " 1035 "off 0x%x size 0x%x\n", dip, bdf, off, size); 1036 1037 if ((ret = hvio_config_get(DIP_TO_HANDLE(dip), bdf, off, 1038 size, data_p)) != H_EOK) { 1039 DBG(DBG_LIB_CFG, dip, 1040 "hvio_config_get failed, ret 0x%lx\n", ret); 1041 return (DDI_FAILURE); 1042 } 1043 DBG(DBG_LIB_CFG, dip, "px_config_get: data 0x%x\n", data_p->dw); 1044 1045 return (DDI_SUCCESS); 1046 } 1047 1048 /*ARGSUSED*/ 1049 static int 1050 px_lib_config_put(dev_info_t *dip, pci_device_t bdf, pci_config_offset_t off, 1051 uint8_t size, pci_cfg_data_t data) 1052 { 1053 uint64_t ret; 1054 1055 DBG(DBG_LIB_CFG, dip, "px_lib_config_put: dip 0x%p, bdf 0x%llx " 1056 "off 0x%x size 0x%x data 0x%llx\n", dip, bdf, off, size, data.qw); 1057 1058 if ((ret = hvio_config_put(DIP_TO_HANDLE(dip), bdf, off, 1059 size, data)) != H_EOK) { 1060 DBG(DBG_LIB_CFG, dip, 1061 "hvio_config_put failed, ret 0x%lx\n", ret); 1062 return (DDI_FAILURE); 1063 } 1064 1065 return (DDI_SUCCESS); 1066 } 1067 1068 static uint32_t 1069 px_pci_config_get(ddi_acc_impl_t *handle, uint32_t *addr, int size) 1070 { 1071 px_config_acc_pvt_t *px_pvt = (px_config_acc_pvt_t *) 1072 handle->ahi_common.ah_bus_private; 1073 uint32_t pci_dev_addr = px_pvt->raddr; 1074 uint32_t vaddr = px_pvt->vaddr; 1075 uint16_t off = (uint16_t)(addr - vaddr) & 0xfff; 1076 uint32_t rdata = 0; 1077 1078 if (px_lib_config_get(px_pvt->dip, pci_dev_addr, off, 1079 size, (pci_cfg_data_t *)&rdata) != DDI_SUCCESS) 1080 /* XXX update error kstats */ 1081 return (0xffffffff); 1082 return (rdata); 1083 } 1084 1085 static void 1086 px_pci_config_put(ddi_acc_impl_t *handle, uint32_t *addr, 1087 int size, pci_cfg_data_t wdata) 1088 { 1089 px_config_acc_pvt_t *px_pvt = (px_config_acc_pvt_t *) 1090 handle->ahi_common.ah_bus_private; 1091 uint32_t pci_dev_addr = px_pvt->raddr; 1092 uint32_t vaddr = px_pvt->vaddr; 1093 uint16_t off = (uint16_t)(addr - vaddr) & 0xfff; 1094 1095 if (px_lib_config_put(px_pvt->dip, pci_dev_addr, off, 1096 size, wdata) != DDI_SUCCESS) { 1097 /*EMPTY*/ 1098 /* XXX update error kstats */ 1099 } 1100 } 1101 1102 static uint8_t 1103 px_pci_config_get8(ddi_acc_impl_t *handle, uint8_t *addr) 1104 { 1105 return ((uint8_t)px_pci_config_get(handle, (uint32_t *)addr, 1)); 1106 } 1107 1108 static uint16_t 1109 px_pci_config_get16(ddi_acc_impl_t *handle, uint16_t *addr) 1110 { 1111 return ((uint16_t)px_pci_config_get(handle, (uint32_t *)addr, 2)); 1112 } 1113 1114 static uint32_t 1115 px_pci_config_get32(ddi_acc_impl_t *handle, uint32_t *addr) 1116 { 1117 return ((uint32_t)px_pci_config_get(handle, (uint32_t *)addr, 4)); 1118 } 1119 1120 static uint64_t 1121 px_pci_config_get64(ddi_acc_impl_t *handle, uint64_t *addr) 1122 { 1123 uint32_t rdatah, rdatal; 1124 1125 rdatal = (uint32_t)px_pci_config_get(handle, (uint32_t *)addr, 4); 1126 rdatah = (uint32_t)px_pci_config_get(handle, 1127 (uint32_t *)((char *)addr+4), 4); 1128 return (((uint64_t)rdatah << 32) | rdatal); 1129 } 1130 1131 static void 1132 px_pci_config_put8(ddi_acc_impl_t *handle, uint8_t *addr, uint8_t data) 1133 { 1134 pci_cfg_data_t wdata = { 0 }; 1135 1136 wdata.qw = (uint8_t)data; 1137 px_pci_config_put(handle, (uint32_t *)addr, 1, wdata); 1138 } 1139 1140 static void 1141 px_pci_config_put16(ddi_acc_impl_t *handle, uint16_t *addr, uint16_t data) 1142 { 1143 pci_cfg_data_t wdata = { 0 }; 1144 1145 wdata.qw = (uint16_t)data; 1146 px_pci_config_put(handle, (uint32_t *)addr, 2, wdata); 1147 } 1148 1149 static void 1150 px_pci_config_put32(ddi_acc_impl_t *handle, uint32_t *addr, uint32_t data) 1151 { 1152 pci_cfg_data_t wdata = { 0 }; 1153 1154 wdata.qw = (uint32_t)data; 1155 px_pci_config_put(handle, (uint32_t *)addr, 4, wdata); 1156 } 1157 1158 static void 1159 px_pci_config_put64(ddi_acc_impl_t *handle, uint64_t *addr, uint64_t data) 1160 { 1161 pci_cfg_data_t wdata = { 0 }; 1162 1163 wdata.qw = (uint32_t)(data & 0xffffffff); 1164 px_pci_config_put(handle, (uint32_t *)addr, 4, wdata); 1165 wdata.qw = (uint32_t)((data >> 32) & 0xffffffff); 1166 px_pci_config_put(handle, (uint32_t *)((char *)addr+4), 4, wdata); 1167 } 1168 1169 static void 1170 px_pci_config_rep_get8(ddi_acc_impl_t *handle, uint8_t *host_addr, 1171 uint8_t *dev_addr, size_t repcount, uint_t flags) 1172 { 1173 if (flags == DDI_DEV_AUTOINCR) 1174 for (; repcount; repcount--) 1175 *host_addr++ = px_pci_config_get8(handle, dev_addr++); 1176 else 1177 for (; repcount; repcount--) 1178 *host_addr++ = px_pci_config_get8(handle, dev_addr); 1179 } 1180 1181 /* 1182 * Function to rep read 16 bit data off the PCI configuration space behind 1183 * the 21554's host interface. 1184 */ 1185 static void 1186 px_pci_config_rep_get16(ddi_acc_impl_t *handle, uint16_t *host_addr, 1187 uint16_t *dev_addr, size_t repcount, uint_t flags) 1188 { 1189 if (flags == DDI_DEV_AUTOINCR) 1190 for (; repcount; repcount--) 1191 *host_addr++ = px_pci_config_get16(handle, dev_addr++); 1192 else 1193 for (; repcount; repcount--) 1194 *host_addr++ = px_pci_config_get16(handle, dev_addr); 1195 } 1196 1197 /* 1198 * Function to rep read 32 bit data off the PCI configuration space behind 1199 * the 21554's host interface. 1200 */ 1201 static void 1202 px_pci_config_rep_get32(ddi_acc_impl_t *handle, uint32_t *host_addr, 1203 uint32_t *dev_addr, size_t repcount, uint_t flags) 1204 { 1205 if (flags == DDI_DEV_AUTOINCR) 1206 for (; repcount; repcount--) 1207 *host_addr++ = px_pci_config_get32(handle, dev_addr++); 1208 else 1209 for (; repcount; repcount--) 1210 *host_addr++ = px_pci_config_get32(handle, dev_addr); 1211 } 1212 1213 /* 1214 * Function to rep read 64 bit data off the PCI configuration space behind 1215 * the 21554's host interface. 1216 */ 1217 static void 1218 px_pci_config_rep_get64(ddi_acc_impl_t *handle, uint64_t *host_addr, 1219 uint64_t *dev_addr, size_t repcount, uint_t flags) 1220 { 1221 if (flags == DDI_DEV_AUTOINCR) 1222 for (; repcount; repcount--) 1223 *host_addr++ = px_pci_config_get64(handle, dev_addr++); 1224 else 1225 for (; repcount; repcount--) 1226 *host_addr++ = px_pci_config_get64(handle, dev_addr); 1227 } 1228 1229 /* 1230 * Function to rep write 8 bit data into the PCI configuration space behind 1231 * the 21554's host interface. 1232 */ 1233 static void 1234 px_pci_config_rep_put8(ddi_acc_impl_t *handle, uint8_t *host_addr, 1235 uint8_t *dev_addr, size_t repcount, uint_t flags) 1236 { 1237 if (flags == DDI_DEV_AUTOINCR) 1238 for (; repcount; repcount--) 1239 px_pci_config_put8(handle, dev_addr++, *host_addr++); 1240 else 1241 for (; repcount; repcount--) 1242 px_pci_config_put8(handle, dev_addr, *host_addr++); 1243 } 1244 1245 /* 1246 * Function to rep write 16 bit data into the PCI configuration space behind 1247 * the 21554's host interface. 1248 */ 1249 static void 1250 px_pci_config_rep_put16(ddi_acc_impl_t *handle, uint16_t *host_addr, 1251 uint16_t *dev_addr, size_t repcount, uint_t flags) 1252 { 1253 if (flags == DDI_DEV_AUTOINCR) 1254 for (; repcount; repcount--) 1255 px_pci_config_put16(handle, dev_addr++, *host_addr++); 1256 else 1257 for (; repcount; repcount--) 1258 px_pci_config_put16(handle, dev_addr, *host_addr++); 1259 } 1260 1261 /* 1262 * Function to rep write 32 bit data into the PCI configuration space behind 1263 * the 21554's host interface. 1264 */ 1265 static void 1266 px_pci_config_rep_put32(ddi_acc_impl_t *handle, uint32_t *host_addr, 1267 uint32_t *dev_addr, size_t repcount, uint_t flags) 1268 { 1269 if (flags == DDI_DEV_AUTOINCR) 1270 for (; repcount; repcount--) 1271 px_pci_config_put32(handle, dev_addr++, *host_addr++); 1272 else 1273 for (; repcount; repcount--) 1274 px_pci_config_put32(handle, dev_addr, *host_addr++); 1275 } 1276 1277 /* 1278 * Function to rep write 64 bit data into the PCI configuration space behind 1279 * the 21554's host interface. 1280 */ 1281 static void 1282 px_pci_config_rep_put64(ddi_acc_impl_t *handle, uint64_t *host_addr, 1283 uint64_t *dev_addr, size_t repcount, uint_t flags) 1284 { 1285 if (flags == DDI_DEV_AUTOINCR) 1286 for (; repcount; repcount--) 1287 px_pci_config_put64(handle, dev_addr++, *host_addr++); 1288 else 1289 for (; repcount; repcount--) 1290 px_pci_config_put64(handle, dev_addr, *host_addr++); 1291 } 1292 1293 /* 1294 * Provide a private access handle to route config access calls to Hypervisor. 1295 * Beware: Do all error checking for config space accesses before calling 1296 * this function. ie. do error checking from the calling function. 1297 * Due to a lack of meaningful error code in DDI, the gauranteed return of 1298 * DDI_SUCCESS from here makes the code organization readable/easier from 1299 * the generic code. 1300 */ 1301 /*ARGSUSED*/ 1302 int 1303 px_lib_map_vconfig(dev_info_t *dip, 1304 ddi_map_req_t *mp, pci_config_offset_t off, 1305 pci_regspec_t *rp, caddr_t *addrp) 1306 { 1307 ddi_acc_hdl_t *hp; 1308 ddi_acc_impl_t *ap; 1309 uchar_t busnum; /* bus number */ 1310 uchar_t devnum; /* device number */ 1311 uchar_t funcnum; /* function number */ 1312 px_config_acc_pvt_t *px_pvt; 1313 1314 hp = (ddi_acc_hdl_t *)mp->map_handlep; 1315 ap = (ddi_acc_impl_t *)hp->ah_platform_private; 1316 1317 /* Check for mapping teardown operation */ 1318 if ((mp->map_op == DDI_MO_UNMAP) || 1319 (mp->map_op == DDI_MO_UNLOCK)) { 1320 /* free up memory allocated for the private access handle. */ 1321 px_pvt = (px_config_acc_pvt_t *)hp->ah_bus_private; 1322 kmem_free((void *)px_pvt, sizeof (px_config_acc_pvt_t)); 1323 1324 /* unmap operation of PCI IO/config space. */ 1325 return (DDI_SUCCESS); 1326 } 1327 1328 ap->ahi_get8 = px_pci_config_get8; 1329 ap->ahi_get16 = px_pci_config_get16; 1330 ap->ahi_get32 = px_pci_config_get32; 1331 ap->ahi_get64 = px_pci_config_get64; 1332 ap->ahi_put8 = px_pci_config_put8; 1333 ap->ahi_put16 = px_pci_config_put16; 1334 ap->ahi_put32 = px_pci_config_put32; 1335 ap->ahi_put64 = px_pci_config_put64; 1336 ap->ahi_rep_get8 = px_pci_config_rep_get8; 1337 ap->ahi_rep_get16 = px_pci_config_rep_get16; 1338 ap->ahi_rep_get32 = px_pci_config_rep_get32; 1339 ap->ahi_rep_get64 = px_pci_config_rep_get64; 1340 ap->ahi_rep_put8 = px_pci_config_rep_put8; 1341 ap->ahi_rep_put16 = px_pci_config_rep_put16; 1342 ap->ahi_rep_put32 = px_pci_config_rep_put32; 1343 ap->ahi_rep_put64 = px_pci_config_rep_put64; 1344 1345 /* Initialize to default check/notify functions */ 1346 ap->ahi_fault = 0; 1347 ap->ahi_fault_check = i_ddi_acc_fault_check; 1348 ap->ahi_fault_notify = i_ddi_acc_fault_notify; 1349 1350 /* allocate memory for our private handle */ 1351 px_pvt = (px_config_acc_pvt_t *) 1352 kmem_zalloc(sizeof (px_config_acc_pvt_t), KM_SLEEP); 1353 hp->ah_bus_private = (void *)px_pvt; 1354 1355 busnum = PCI_REG_BUS_G(rp->pci_phys_hi); 1356 devnum = PCI_REG_DEV_G(rp->pci_phys_hi); 1357 funcnum = PCI_REG_FUNC_G(rp->pci_phys_hi); 1358 1359 /* set up private data for use during IO routines */ 1360 1361 /* addr needed by the HV APIs */ 1362 px_pvt->raddr = busnum << 16 | devnum << 11 | funcnum << 8; 1363 /* 1364 * Address that specifies the actual offset into the 256MB 1365 * memory mapped configuration space, 4K per device. 1366 * First 12bits form the offset into 4K config space. 1367 * This address is only used during the IO routines to calculate 1368 * the offset at which the transaction must be performed. 1369 * Drivers bypassing DDI functions to access PCI config space will 1370 * panic the system since the following is a bogus virtual address. 1371 */ 1372 px_pvt->vaddr = busnum << 20 | devnum << 15 | funcnum << 12 | off; 1373 px_pvt->dip = dip; 1374 1375 DBG(DBG_LIB_CFG, dip, "px_config_setup: raddr 0x%x, vaddr 0x%x\n", 1376 px_pvt->raddr, px_pvt->vaddr); 1377 *addrp = (caddr_t)px_pvt->vaddr; 1378 return (DDI_SUCCESS); 1379 } 1380 1381 /* 1382 * px_lib_log_safeacc_err: 1383 * Imitate a cpu/mem trap call when a peek/poke fails. 1384 * This will initiate something similar to px_fm_callback. 1385 */ 1386 static void 1387 px_lib_log_safeacc_err(px_t *px_p, ddi_acc_handle_t handle, int fme_flag) 1388 { 1389 ddi_acc_impl_t *hp = (ddi_acc_impl_t *)handle; 1390 px_cb_t *cb_p = px_p->px_cb_p; 1391 ddi_fm_error_t derr; 1392 1393 derr.fme_status = DDI_FM_NONFATAL; 1394 derr.fme_version = DDI_FME_VERSION; 1395 derr.fme_flag = fme_flag; 1396 derr.fme_ena = fm_ena_generate(0, FM_ENA_FMT1); 1397 derr.fme_acc_handle = handle; 1398 if (hp) 1399 hp->ahi_err->err_expected = DDI_FM_ERR_EXPECTED; 1400 1401 mutex_enter(&cb_p->xbc_fm_mutex); 1402 1403 (void) ndi_fm_handler_dispatch(px_p->px_dip, NULL, &derr); 1404 1405 mutex_exit(&cb_p->xbc_fm_mutex); 1406 } 1407 1408 1409 #ifdef DEBUG 1410 int px_peekfault_cnt = 0; 1411 int px_pokefault_cnt = 0; 1412 #endif /* DEBUG */ 1413 1414 static int 1415 px_lib_bdf_from_dip(dev_info_t *rdip, uint32_t *bdf) 1416 { 1417 /* Start with an array of 8 reg spaces for now to cover most devices. */ 1418 pci_regspec_t regspec_array[8]; 1419 pci_regspec_t *regspec = regspec_array; 1420 int buflen = sizeof (regspec_array); 1421 boolean_t kmalloced = B_FALSE; 1422 int status; 1423 1424 status = ddi_getlongprop_buf(DDI_DEV_T_ANY, rdip, 1425 DDI_PROP_DONTPASS, "reg", (caddr_t)regspec, &buflen); 1426 1427 /* If need more space, fallback to kmem_alloc. */ 1428 if (status == DDI_PROP_BUF_TOO_SMALL) { 1429 regspec = kmem_alloc(buflen, KM_SLEEP); 1430 1431 status = ddi_getlongprop_buf(DDI_DEV_T_ANY, rdip, 1432 DDI_PROP_DONTPASS, "reg", (caddr_t)regspec, &buflen); 1433 1434 kmalloced = B_TRUE; 1435 } 1436 1437 /* Get phys_hi from first element. All have same bdf. */ 1438 if (status == DDI_PROP_SUCCESS) 1439 *bdf = regspec->pci_phys_hi & (PCI_REG_BDFR_M ^ PCI_REG_REG_M); 1440 1441 if (kmalloced) 1442 kmem_free(regspec, buflen); 1443 1444 return ((status == DDI_PROP_SUCCESS) ? DDI_SUCCESS : DDI_FAILURE); 1445 } 1446 1447 /* 1448 * Do a safe write to a device. 1449 * 1450 * When this function is given a handle (cautious access), all errors are 1451 * suppressed. 1452 * 1453 * When this function is not given a handle (poke), only Unsupported Request 1454 * and Completer Abort errors are suppressed. 1455 * 1456 * In all cases, all errors are returned in the function return status. 1457 */ 1458 1459 int 1460 px_lib_ctlops_poke(dev_info_t *dip, dev_info_t *rdip, 1461 peekpoke_ctlops_t *in_args) 1462 { 1463 px_t *px_p = DIP_TO_STATE(dip); 1464 px_pec_t *pec_p = px_p->px_pec_p; 1465 ddi_acc_impl_t *hp = (ddi_acc_impl_t *)in_args->handle; 1466 1467 size_t repcount = in_args->repcount; 1468 size_t size = in_args->size; 1469 uintptr_t dev_addr = in_args->dev_addr; 1470 uintptr_t host_addr = in_args->host_addr; 1471 1472 int err = DDI_SUCCESS; 1473 uint64_t hvio_poke_status; 1474 uint32_t bdf; 1475 uint32_t wrt_stat; 1476 1477 r_addr_t ra; 1478 uint64_t pokeval; 1479 1480 /* 1481 * Used only to notify error handling peek/poke is occuring 1482 * One scenario is when a fabric err as a result of peek/poke. 1483 * However there is no way to guarantee that the fabric error 1484 * handler will occur in the window where otd is set. 1485 */ 1486 on_trap_data_t otd; 1487 1488 if (px_lib_bdf_from_dip(rdip, &bdf) != DDI_SUCCESS) { 1489 DBG(DBG_LIB_DMA, px_p->px_dip, 1490 "poke: px_lib_bdf_from_dip failed\n"); 1491 err = DDI_FAILURE; 1492 goto done; 1493 } 1494 1495 ra = (r_addr_t)va_to_pa((void *)dev_addr); 1496 for (; repcount; repcount--) { 1497 1498 switch (size) { 1499 case sizeof (uint8_t): 1500 pokeval = *(uint8_t *)host_addr; 1501 break; 1502 case sizeof (uint16_t): 1503 pokeval = *(uint16_t *)host_addr; 1504 break; 1505 case sizeof (uint32_t): 1506 pokeval = *(uint32_t *)host_addr; 1507 break; 1508 case sizeof (uint64_t): 1509 pokeval = *(uint64_t *)host_addr; 1510 break; 1511 default: 1512 DBG(DBG_MAP, px_p->px_dip, 1513 "poke: invalid size %d passed\n", size); 1514 err = DDI_FAILURE; 1515 goto done; 1516 } 1517 1518 /* 1519 * Grab pokefault mutex since hypervisor does not guarantee 1520 * poke serialization. 1521 */ 1522 if (hp) { 1523 i_ndi_busop_access_enter(hp->ahi_common.ah_dip, 1524 (ddi_acc_handle_t)hp); 1525 pec_p->pec_safeacc_type = DDI_FM_ERR_EXPECTED; 1526 } else { 1527 mutex_enter(&pec_p->pec_pokefault_mutex); 1528 pec_p->pec_safeacc_type = DDI_FM_ERR_POKE; 1529 } 1530 pec_p->pec_ontrap_data = &otd; 1531 1532 hvio_poke_status = hvio_poke(px_p->px_dev_hdl, ra, size, 1533 pokeval, bdf, &wrt_stat); 1534 1535 if (otd.ot_trap & OT_DATA_ACCESS) 1536 err = DDI_FAILURE; 1537 1538 if ((hvio_poke_status != H_EOK) || (wrt_stat != H_EOK)) { 1539 err = DDI_FAILURE; 1540 #ifdef DEBUG 1541 px_pokefault_cnt++; 1542 #endif 1543 /* 1544 * For CAUTIOUS and POKE access, notify FMA to 1545 * cleanup. Imitate a cpu/mem trap call like in sun4u. 1546 */ 1547 px_lib_log_safeacc_err(px_p, (ddi_acc_handle_t)hp, 1548 (hp ? DDI_FM_ERR_EXPECTED : 1549 DDI_FM_ERR_POKE)); 1550 1551 pec_p->pec_ontrap_data = NULL; 1552 pec_p->pec_safeacc_type = DDI_FM_ERR_UNEXPECTED; 1553 if (hp) { 1554 i_ndi_busop_access_exit(hp->ahi_common.ah_dip, 1555 (ddi_acc_handle_t)hp); 1556 } else { 1557 mutex_exit(&pec_p->pec_pokefault_mutex); 1558 } 1559 goto done; 1560 } 1561 1562 pec_p->pec_ontrap_data = NULL; 1563 pec_p->pec_safeacc_type = DDI_FM_ERR_UNEXPECTED; 1564 if (hp) { 1565 i_ndi_busop_access_exit(hp->ahi_common.ah_dip, 1566 (ddi_acc_handle_t)hp); 1567 } else { 1568 mutex_exit(&pec_p->pec_pokefault_mutex); 1569 } 1570 1571 host_addr += size; 1572 1573 if (in_args->flags == DDI_DEV_AUTOINCR) { 1574 dev_addr += size; 1575 ra = (r_addr_t)va_to_pa((void *)dev_addr); 1576 } 1577 } 1578 1579 done: 1580 return (err); 1581 } 1582 1583 1584 /*ARGSUSED*/ 1585 int 1586 px_lib_ctlops_peek(dev_info_t *dip, dev_info_t *rdip, 1587 peekpoke_ctlops_t *in_args, void *result) 1588 { 1589 px_t *px_p = DIP_TO_STATE(dip); 1590 px_pec_t *pec_p = px_p->px_pec_p; 1591 ddi_acc_impl_t *hp = (ddi_acc_impl_t *)in_args->handle; 1592 1593 size_t repcount = in_args->repcount; 1594 uintptr_t dev_addr = in_args->dev_addr; 1595 uintptr_t host_addr = in_args->host_addr; 1596 1597 r_addr_t ra; 1598 uint32_t read_status; 1599 uint64_t hvio_peek_status; 1600 uint64_t peekval; 1601 int err = DDI_SUCCESS; 1602 1603 /* 1604 * Used only to notify error handling peek/poke is occuring 1605 * One scenario is when a fabric err as a result of peek/poke. 1606 * However there is no way to guarantee that the fabric error 1607 * handler will occur in the window where otd is set. 1608 */ 1609 on_trap_data_t otd; 1610 1611 result = (void *)in_args->host_addr; 1612 1613 ra = (r_addr_t)va_to_pa((void *)dev_addr); 1614 for (; repcount; repcount--) { 1615 1616 /* Lock pokefault mutex so read doesn't mask a poke fault. */ 1617 if (hp) { 1618 i_ndi_busop_access_enter(hp->ahi_common.ah_dip, 1619 (ddi_acc_handle_t)hp); 1620 pec_p->pec_safeacc_type = DDI_FM_ERR_EXPECTED; 1621 } else { 1622 mutex_enter(&pec_p->pec_pokefault_mutex); 1623 pec_p->pec_safeacc_type = DDI_FM_ERR_PEEK; 1624 } 1625 pec_p->pec_ontrap_data = &otd; 1626 1627 hvio_peek_status = hvio_peek(px_p->px_dev_hdl, ra, 1628 in_args->size, &read_status, &peekval); 1629 1630 if ((hvio_peek_status != H_EOK) || (read_status != H_EOK)) { 1631 err = DDI_FAILURE; 1632 1633 /* 1634 * For CAUTIOUS and PEEK access, notify FMA to 1635 * cleanup. Imitate a cpu/mem trap call like in sun4u. 1636 */ 1637 px_lib_log_safeacc_err(px_p, (ddi_acc_handle_t)hp, 1638 (hp ? DDI_FM_ERR_EXPECTED : 1639 DDI_FM_ERR_PEEK)); 1640 1641 /* Stuff FFs in host addr if peek. */ 1642 if (hp == NULL) { 1643 int i; 1644 uint8_t *ff_addr = (uint8_t *)host_addr; 1645 for (i = 0; i < in_args->size; i++) 1646 *ff_addr++ = 0xff; 1647 } 1648 #ifdef DEBUG 1649 px_peekfault_cnt++; 1650 #endif 1651 pec_p->pec_ontrap_data = NULL; 1652 pec_p->pec_safeacc_type = DDI_FM_ERR_UNEXPECTED; 1653 if (hp) { 1654 i_ndi_busop_access_exit(hp->ahi_common.ah_dip, 1655 (ddi_acc_handle_t)hp); 1656 } else { 1657 mutex_exit(&pec_p->pec_pokefault_mutex); 1658 } 1659 goto done; 1660 1661 } 1662 pec_p->pec_ontrap_data = NULL; 1663 pec_p->pec_safeacc_type = DDI_FM_ERR_UNEXPECTED; 1664 if (hp) { 1665 i_ndi_busop_access_exit(hp->ahi_common.ah_dip, 1666 (ddi_acc_handle_t)hp); 1667 } else { 1668 mutex_exit(&pec_p->pec_pokefault_mutex); 1669 } 1670 1671 switch (in_args->size) { 1672 case sizeof (uint8_t): 1673 *(uint8_t *)host_addr = (uint8_t)peekval; 1674 break; 1675 case sizeof (uint16_t): 1676 *(uint16_t *)host_addr = (uint16_t)peekval; 1677 break; 1678 case sizeof (uint32_t): 1679 *(uint32_t *)host_addr = (uint32_t)peekval; 1680 break; 1681 case sizeof (uint64_t): 1682 *(uint64_t *)host_addr = (uint64_t)peekval; 1683 break; 1684 default: 1685 DBG(DBG_MAP, px_p->px_dip, 1686 "peek: invalid size %d passed\n", 1687 in_args->size); 1688 err = DDI_FAILURE; 1689 goto done; 1690 } 1691 1692 host_addr += in_args->size; 1693 1694 if (in_args->flags == DDI_DEV_AUTOINCR) { 1695 dev_addr += in_args->size; 1696 ra = (r_addr_t)va_to_pa((void *)dev_addr); 1697 } 1698 } 1699 done: 1700 return (err); 1701 } 1702 1703 1704 /* add interrupt vector */ 1705 int 1706 px_err_add_intr(px_fault_t *px_fault_p) 1707 { 1708 int ret; 1709 px_t *px_p = DIP_TO_STATE(px_fault_p->px_fh_dip); 1710 1711 DBG(DBG_LIB_INT, px_p->px_dip, 1712 "px_err_add_intr: calling add_ivintr"); 1713 ret = add_ivintr(px_fault_p->px_fh_sysino, PX_ERR_PIL, 1714 px_fault_p->px_err_func, (caddr_t)px_fault_p, 1715 (caddr_t)&px_fault_p->px_intr_payload[0]); 1716 1717 if (ret != DDI_SUCCESS) { 1718 DBG(DBG_LIB_INT, px_p->px_dip, 1719 "add_ivintr returns %d, faultp: %p", ret, px_fault_p); 1720 1721 return (ret); 1722 } 1723 DBG(DBG_LIB_INT, px_p->px_dip, 1724 "px_err_add_intr: ib_intr_enable "); 1725 1726 px_ib_intr_enable(px_p, intr_dist_cpuid(), px_fault_p->px_intr_ino); 1727 1728 return (ret); 1729 } 1730 1731 1732 /* remove interrupt vector */ 1733 void 1734 px_err_rem_intr(px_fault_t *px_fault_p) 1735 { 1736 px_t *px_p = DIP_TO_STATE(px_fault_p->px_fh_dip); 1737 1738 rem_ivintr(px_fault_p->px_fh_sysino, NULL); 1739 1740 px_ib_intr_disable(px_p->px_ib_p, px_fault_p->px_intr_ino, 1741 IB_INTR_WAIT); 1742 } 1743 1744 1745 #ifdef FMA 1746 void 1747 px_fill_rc_status(px_fault_t *px_fault_p, pciex_rc_error_regs_t *rc_status) 1748 { 1749 px_pec_err_t *err_pkt; 1750 1751 err_pkt = (px_pec_err_t *)px_fault_p->px_intr_payload; 1752 1753 /* initialise all the structure members */ 1754 rc_status->status_valid = 0; 1755 1756 if (err_pkt->pec_descr.P) { 1757 /* PCI Status Register */ 1758 rc_status->pci_err_status = err_pkt->pci_err_status; 1759 rc_status->status_valid |= PCI_ERR_STATUS_VALID; 1760 } 1761 1762 if (err_pkt->pec_descr.E) { 1763 /* PCIe Status Register */ 1764 rc_status->pcie_err_status = err_pkt->pcie_err_status; 1765 rc_status->status_valid |= PCIE_ERR_STATUS_VALID; 1766 } 1767 1768 if (err_pkt->pec_descr.U) { 1769 rc_status->ue_status = err_pkt->ue_reg_status; 1770 rc_status->status_valid |= UE_STATUS_VALID; 1771 } 1772 1773 if (err_pkt->pec_descr.H) { 1774 rc_status->ue_hdr1 = err_pkt->hdr[0]; 1775 rc_status->status_valid |= UE_HDR1_VALID; 1776 } 1777 1778 if (err_pkt->pec_descr.I) { 1779 rc_status->ue_hdr2 = err_pkt->hdr[1]; 1780 rc_status->status_valid |= UE_HDR2_VALID; 1781 } 1782 1783 /* ue_fst_err_ptr - not available for sun4v?? */ 1784 1785 1786 if (err_pkt->pec_descr.S) { 1787 rc_status->source_id = err_pkt->err_src_reg; 1788 rc_status->status_valid |= SOURCE_ID_VALID; 1789 } 1790 1791 if (err_pkt->pec_descr.R) { 1792 rc_status->root_err_status = err_pkt->root_err_status; 1793 rc_status->status_valid |= CE_STATUS_VALID; 1794 } 1795 } 1796 #endif 1797 1798 /*ARGSUSED*/ 1799 int 1800 px_lib_pmctl(int cmd, px_t *px_p) 1801 { 1802 return (DDI_FAILURE); 1803 } 1804 1805 /*ARGSUSED*/ 1806 uint_t 1807 px_lup_softintr(caddr_t arg) 1808 { 1809 return (DDI_INTR_CLAIMED); 1810 } 1811 1812 /*ARGSUSED*/ 1813 uint_t 1814 px_pmeq_intr(caddr_t arg) 1815 { 1816 return (DDI_INTR_CLAIMED); 1817 } 1818 1819 /* 1820 * Unprotected raw reads/writes of fabric device's config space. 1821 * Only used for temporary PCI-E Fabric Error Handling. 1822 */ 1823 uint32_t 1824 px_fab_get(px_t *px_p, pcie_req_id_t bdf, uint16_t offset) { 1825 uint32_t data = 0; 1826 1827 (void) hvio_config_get(px_p->px_dev_hdl, 1828 (bdf << PX_RA_BDF_SHIFT), offset, 4, 1829 (pci_cfg_data_t *)&data); 1830 1831 return (data); 1832 } 1833 1834 void 1835 px_fab_set(px_t *px_p, pcie_req_id_t bdf, uint16_t offset, 1836 uint32_t val) { 1837 pci_cfg_data_t wdata = { 0 }; 1838 1839 wdata.qw = (uint32_t)val; 1840 (void) hvio_config_put(px_p->px_dev_hdl, 1841 (bdf << PX_RA_BDF_SHIFT), offset, 4, wdata); 1842 } 1843 1844 /* Dummy cpr add callback */ 1845 /*ARGSUSED*/ 1846 void 1847 px_cpr_add_callb(px_t *px_p) 1848 { 1849 } 1850 1851 /* Dummy cpr rem callback */ 1852 /*ARGSUSED*/ 1853 void 1854 px_cpr_rem_callb(px_t *px_p) 1855 { 1856 } 1857