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 /* 30 * PCI-IDE bus nexus driver 31 */ 32 33 #include <sys/types.h> 34 #include <sys/cmn_err.h> 35 #include <sys/conf.h> 36 #include <sys/errno.h> 37 #include <sys/debug.h> 38 #include <sys/ddidmareq.h> 39 #include <sys/ddi_impldefs.h> 40 #include <sys/dma_engine.h> 41 #include <sys/modctl.h> 42 #include <sys/ddi.h> 43 #include <sys/sunddi.h> 44 #include <sys/kmem.h> 45 #include <sys/pci.h> 46 #include <sys/promif.h> 47 #include <sys/pci_intr_lib.h> 48 49 int pciide_attach(dev_info_t *dip, ddi_attach_cmd_t cmd); 50 51 #define PCIIDE_NATIVE_MODE(dip) \ 52 (!ddi_prop_exists(DDI_DEV_T_ANY, (dip), DDI_PROP_DONTPASS, \ 53 "compatibility-mode")) 54 55 #define PCIIDE_PRE26(dip) \ 56 ddi_prop_exists(DDI_DEV_T_ANY, (dip), 0, "ignore-hardware-nodes") 57 58 #define PCI_IDE_IF_BM_CAP_MASK 0x80 59 60 #define PCIIDE_PDSIZE (sizeof (struct ddi_parent_private_data) + \ 61 sizeof (struct intrspec)) 62 63 #ifdef DEBUG 64 static int pci_ide_debug = 0; 65 #define PDBG(fmt) \ 66 if (pci_ide_debug) { \ 67 prom_printf fmt; \ 68 } 69 #else 70 #define PDBG(fmt) 71 #endif 72 73 #ifndef TRUE 74 #define TRUE 1 75 #endif 76 #ifndef FALSE 77 #define FALSE 0 78 #endif 79 80 /* 81 * bus_ops functions 82 */ 83 84 static int pciide_bus_map(dev_info_t *dip, dev_info_t *rdip, 85 ddi_map_req_t *mp, off_t offset, off_t len, 86 caddr_t *vaddrp); 87 88 static int pciide_ddi_ctlops(dev_info_t *dip, dev_info_t *rdip, 89 ddi_ctl_enum_t ctlop, void *arg, 90 void *result); 91 92 static int pciide_get_pri(dev_info_t *dip, dev_info_t *rdip, 93 ddi_intr_handle_impl_t *hdlp, int *pri); 94 95 static int pciide_intr_ops(dev_info_t *dip, dev_info_t *rdip, 96 ddi_intr_op_t intr_op, 97 ddi_intr_handle_impl_t *hdlp, void *result); 98 99 static struct intrspec *pciide_get_ispec(dev_info_t *dip, dev_info_t *rdip, 100 int inum); 101 102 /* 103 * Local Functions 104 */ 105 static int pciide_initchild(dev_info_t *mydip, dev_info_t *cdip); 106 107 static void pciide_compat_setup(dev_info_t *mydip, dev_info_t *cdip, 108 int dev); 109 static int pciide_pre26_rnumber_map(dev_info_t *mydip, int rnumber); 110 static int pciide_map_rnumber(int canonical_rnumber, int pri_native, 111 int sec_native); 112 113 114 /* 115 * Config information 116 */ 117 118 struct bus_ops pciide_bus_ops = { 119 BUSO_REV, 120 pciide_bus_map, 121 0, 122 0, 123 0, 124 i_ddi_map_fault, 125 ddi_dma_map, 126 ddi_dma_allochdl, 127 ddi_dma_freehdl, 128 ddi_dma_bindhdl, 129 ddi_dma_unbindhdl, 130 ddi_dma_flush, 131 ddi_dma_win, 132 ddi_dma_mctl, 133 pciide_ddi_ctlops, 134 ddi_bus_prop_op, 135 0, /* (*bus_get_eventcookie)(); */ 136 0, /* (*bus_add_eventcall)(); */ 137 0, /* (*bus_remove_eventcall)(); */ 138 0, /* (*bus_post_event)(); */ 139 0, 140 0, 141 0, 142 0, 143 0, 144 0, 145 0, 146 0, 147 pciide_intr_ops 148 }; 149 150 struct dev_ops pciide_ops = { 151 DEVO_REV, /* devo_rev, */ 152 0, /* refcnt */ 153 ddi_no_info, /* info */ 154 nulldev, /* identify */ 155 nulldev, /* probe */ 156 pciide_attach, /* attach */ 157 nodev, /* detach */ 158 nodev, /* reset */ 159 (struct cb_ops *)0, /* driver operations */ 160 &pciide_bus_ops /* bus operations */ 161 162 }; 163 164 /* 165 * Module linkage information for the kernel. 166 */ 167 168 static struct modldrv modldrv = { 169 &mod_driverops, /* Type of module. This is PCI-IDE bus driver */ 170 "pciide nexus driver for 'PCI-IDE' %I%", 171 &pciide_ops, /* driver ops */ 172 }; 173 174 static struct modlinkage modlinkage = { 175 MODREV_1, 176 &modldrv, 177 NULL 178 }; 179 180 181 int 182 _init(void) 183 { 184 return (mod_install(&modlinkage)); 185 } 186 187 int 188 _fini(void) 189 { 190 return (mod_remove(&modlinkage)); 191 } 192 193 int 194 _info(struct modinfo *modinfop) 195 { 196 return (mod_info(&modlinkage, modinfop)); 197 } 198 199 int 200 pciide_attach(dev_info_t *dip, ddi_attach_cmd_t cmd) 201 { 202 uint16_t cmdreg; 203 ddi_acc_handle_t conf_hdl = NULL; 204 int rc; 205 206 207 if (cmd == DDI_ATTACH) { 208 209 /* 210 * Make sure bus-mastering is enabled, even if 211 * BIOS didn't. 212 */ 213 rc = pci_config_setup(dip, &conf_hdl); 214 215 /* 216 * In case of error, return SUCCESS. This is because 217 * bus-mastering could be already enabled by BIOS. 218 */ 219 if (rc != DDI_SUCCESS) 220 return (DDI_SUCCESS); 221 222 cmdreg = pci_config_get16(conf_hdl, PCI_CONF_COMM); 223 if ((cmdreg & PCI_COMM_ME) == 0) { 224 pci_config_put16(conf_hdl, PCI_CONF_COMM, 225 cmdreg | PCI_COMM_ME); 226 } 227 pci_config_teardown(&conf_hdl); 228 229 return (DDI_SUCCESS); 230 } else { 231 return (DDI_FAILURE); 232 } 233 } 234 235 236 /*ARGSUSED*/ 237 static int 238 pciide_ddi_ctlops(dev_info_t *dip, dev_info_t *rdip, ddi_ctl_enum_t ctlop, 239 void *arg, void *result) 240 { 241 dev_info_t *cdip; 242 int controller; 243 void *pdptr; 244 int rnumber; 245 off_t tmp; 246 int rc; 247 248 PDBG(("pciide_bus_ctl\n")); 249 250 switch (ctlop) { 251 case DDI_CTLOPS_INITCHILD: 252 cdip = (dev_info_t *)arg; 253 return (pciide_initchild(dip, cdip)); 254 255 case DDI_CTLOPS_UNINITCHILD: 256 cdip = (dev_info_t *)arg; 257 pdptr = ddi_get_parent_data(cdip); 258 ddi_set_parent_data(cdip, NULL); 259 ddi_set_name_addr(cdip, NULL); 260 kmem_free(pdptr, PCIIDE_PDSIZE); 261 return (DDI_SUCCESS); 262 263 case DDI_CTLOPS_NREGS: 264 *(int *)result = 3; 265 return (DDI_SUCCESS); 266 267 case DDI_CTLOPS_REGSIZE: 268 /* 269 * Adjust the rnumbers based on which controller instance 270 * is requested; adjust for the 2 tuples per controller. 271 */ 272 if (strcmp("0", ddi_get_name_addr(rdip)) == 0) 273 controller = 0; 274 else 275 controller = 1; 276 277 278 switch (rnumber = *(int *)arg) { 279 case 0: 280 case 1: 281 rnumber += (2 * controller); 282 break; 283 case 2: 284 rnumber = 4; 285 break; 286 default: 287 PDBG(("pciide_ctlops invalid rnumber\n")); 288 return (DDI_FAILURE); 289 } 290 291 292 if (PCIIDE_PRE26(dip)) { 293 int old_rnumber; 294 int new_rnumber; 295 296 old_rnumber = rnumber; 297 new_rnumber 298 = pciide_pre26_rnumber_map(dip, old_rnumber); 299 PDBG(("pciide rnumber old %d new %d\n", 300 old_rnumber, new_rnumber)); 301 rnumber = new_rnumber; 302 } 303 304 /* 305 * Add 1 to skip over the PCI config space tuple 306 */ 307 rnumber++; 308 309 /* 310 * If it's not tuple #2 pass the adjusted request to my parent 311 */ 312 if (*(int *)arg != 2) { 313 return (ddi_ctlops(dip, dip, ctlop, &rnumber, result)); 314 } 315 316 /* 317 * Handle my child's reg-tuple #2 here by splitting my 16 byte 318 * reg-tuple #4 into two 8 byte ranges based on the 319 * the child's controller #. 320 */ 321 322 tmp = 8; 323 rc = ddi_ctlops(dip, dip, ctlop, &rnumber, &tmp); 324 325 /* 326 * Allow for the possibility of less than 16 bytes by 327 * by checking what's actually returned for my reg-tuple #4. 328 */ 329 if (controller == 1) { 330 if (tmp < 8) 331 tmp = 0; 332 else 333 tmp -= 8; 334 } 335 if (tmp > 8) 336 tmp = 8; 337 *(off_t *)result = tmp; 338 339 return (rc); 340 341 default: 342 return (ddi_ctlops(dip, rdip, ctlop, arg, result)); 343 } 344 } 345 346 /* 347 * IEEE 1275 Working Group Proposal #414 says that the Primary 348 * controller is "ata@0" and the Secondary controller "ata@1". 349 * 350 * By the time we get here, boot Bootconf (2.6+) has created devinfo 351 * nodes with the appropriate "reg", "assigned-addresses" and "interrupts" 352 * properites on the pci-ide node and both ide child nodes. 353 * 354 * In compatibility mode the "reg" and "assigned-addresses" properties 355 * of the pci-ide node are set up like this: 356 * 357 * 1. PCI-IDE Nexus 358 * 359 * interrupts=0 360 * (addr-hi addr-mid addr-low size-hi size-low) 361 * reg= assigned-addresses=00000000.00000000.00000000.00000000.00000000 362 * 81000000.00000000.000001f0.00000000.00000008 363 * 81000000.00000000.000003f4.00000000.00000004 364 * 81000000.00000000,00000170.00000000.00000008 365 * 81000000.00000000,00000374.00000000.00000004 366 * 01000020.00000000,-[BAR4]-.00000000.00000010 367 * 368 * In native PCI mode the "reg" and "assigned-addresses" properties 369 * would be set up like this: 370 * 371 * 2. PCI-IDE Nexus 372 * 373 * interrupts=0 374 * reg= assigned-addresses=00000000.00000000.00000000.00000000.00000000 375 * 01000010.00000000.-[BAR0]-.00000000.00000008 376 * 01000014,00000000.-[BAR1]-.00000000.00000004 377 * 01000018.00000000.-[BAR2]-.00000000.00000008 378 * 0100001c.00000000.-[BAR3]-.00000000.00000004 379 * 01000020.00000000.-[BAR4]-.00000000.00000010 380 * 381 * 382 * In both modes the child nodes simply have the following: 383 * 384 * 2. primary controller (compatibility mode) 385 * 386 * interrupts=14 387 * reg=00000000 388 * 389 * 3. secondary controller 390 * 391 * interrupts=15 392 * reg=00000001 393 * 394 * The pciide_bus_map() function is responsible for turning requests 395 * to map primary or secondary controller rnumbers into mapping requests 396 * of the appropriate regspec on the pci-ide node. 397 * 398 */ 399 400 static int 401 pciide_initchild(dev_info_t *mydip, dev_info_t *cdip) 402 { 403 struct ddi_parent_private_data *pdptr; 404 struct intrspec *ispecp; 405 int vec; 406 int *rp; 407 uint_t proplen; 408 char name[80]; 409 int dev; 410 411 PDBG(("pciide_initchild\n")); 412 413 /* 414 * Set the address portion of the node name based on 415 * the controller number (0 or 1) from the 'reg' property. 416 */ 417 if (ddi_prop_lookup_int_array(DDI_DEV_T_ANY, cdip, DDI_PROP_DONTPASS, 418 "reg", &rp, (uint_t *)&proplen) != DDI_PROP_SUCCESS) { 419 PDBG(("pciide_intchild prop error\n")); 420 return (DDI_NOT_WELL_FORMED); 421 } 422 423 /* 424 * copy the controller number and 425 * free the memory allocated by ddi_prop_lookup_int_array 426 */ 427 dev = *rp; 428 ddi_prop_free(rp); 429 430 /* 431 * I only support two controllers per device, determine 432 * which this one is and set its unit address. 433 */ 434 if (dev > 1) { 435 PDBG(("pciide_initchild bad dev\n")); 436 return (DDI_NOT_WELL_FORMED); 437 } 438 (void) sprintf(name, "%d", dev); 439 ddi_set_name_addr(cdip, name); 440 441 /* 442 * determine if this instance is running in native or compat mode 443 */ 444 pciide_compat_setup(mydip, cdip, dev); 445 446 /* interrupts property is required */ 447 if (PCIIDE_NATIVE_MODE(cdip)) { 448 vec = 1; 449 } else { 450 /* 451 * In compatibility mode, dev 0 should always be 452 * IRQ 14 and dev 1 is IRQ 15. If for some reason 453 * this needs to be changed, do it via the interrupts 454 * property in the ata.conf file. 455 */ 456 vec = ddi_prop_get_int(DDI_DEV_T_ANY, cdip, DDI_PROP_DONTPASS, 457 "interrupts", -1); 458 if (vec == -1) { 459 /* setup compatibility mode interrupts */ 460 if (dev == 0) { 461 vec = 14; 462 } else if (dev == 1) { 463 vec = 15; 464 } else { 465 PDBG(("pciide_initchild bad intr\n")); 466 return (DDI_NOT_WELL_FORMED); 467 } 468 } 469 } 470 471 pdptr = kmem_zalloc(PCIIDE_PDSIZE, KM_SLEEP); 472 ispecp = (struct intrspec *)(pdptr + 1); 473 pdptr->par_nintr = 1; 474 pdptr->par_intr = ispecp; 475 ispecp->intrspec_vec = vec; 476 ddi_set_parent_data(cdip, pdptr); 477 478 PDBG(("pciide_initchild okay\n")); 479 return (DDI_SUCCESS); 480 } 481 482 static int 483 pciide_bus_map(dev_info_t *dip, dev_info_t *rdip, ddi_map_req_t *mp, 484 off_t offset, off_t len, caddr_t *vaddrp) 485 { 486 dev_info_t *pdip; 487 int rnumber = mp->map_obj.rnumber; 488 int controller; 489 int rc; 490 491 PDBG(("pciide_bus_map\n")); 492 493 if (strcmp("0", ddi_get_name_addr(rdip)) == 0) 494 controller = 0; 495 else 496 controller = 1; 497 498 /* 499 * Adjust the rnumbers based on which controller instance 500 * is being mapped; adjust for the 2 tuples per controller. 501 */ 502 503 switch (rnumber) { 504 case 0: 505 case 1: 506 mp->map_obj.rnumber += (controller * 2); 507 break; 508 case 2: 509 /* 510 * split the 16 I/O ports into two 8 port ranges 511 */ 512 mp->map_obj.rnumber = 4; 513 if (offset + len > 8) { 514 PDBG(("pciide_bus_map offset\n")); 515 return (DDI_FAILURE); 516 } 517 if (len == 0) 518 len = 8 - offset; 519 offset += 8 * controller; 520 break; 521 default: 522 PDBG(("pciide_bus_map default\n")); 523 return (DDI_FAILURE); 524 } 525 526 if (PCIIDE_PRE26(dip)) { 527 int old_rnumber; 528 int new_rnumber; 529 530 old_rnumber = mp->map_obj.rnumber; 531 new_rnumber = pciide_pre26_rnumber_map(dip, old_rnumber); 532 PDBG(("pciide rnumber old %d new %d\n", 533 old_rnumber, new_rnumber)); 534 mp->map_obj.rnumber = new_rnumber; 535 } 536 537 /* 538 * Add 1 to skip over the PCI config space tuple 539 */ 540 mp->map_obj.rnumber++; 541 542 543 /* 544 * pass the adjusted request to my parent 545 */ 546 pdip = ddi_get_parent(dip); 547 rc = ((*(DEVI(pdip)->devi_ops->devo_bus_ops->bus_map)) 548 (pdip, dip, mp, offset, len, vaddrp)); 549 550 PDBG(("pciide_bus_map %s\n", rc == DDI_SUCCESS ? "okay" : "!ok")); 551 552 return (rc); 553 } 554 555 556 static struct intrspec * 557 pciide_get_ispec(dev_info_t *dip, dev_info_t *rdip, int inumber) 558 { 559 struct ddi_parent_private_data *ppdptr; 560 561 PDBG(("pciide_get_ispec\n")); 562 563 /* 564 * Native mode PCI-IDE controllers share the parent's 565 * PCI interrupt line. 566 * 567 * Compatibility mode PCI-IDE controllers have their 568 * own intrspec which specifies ISA IRQ 14 or 15. 569 * 570 */ 571 if (PCIIDE_NATIVE_MODE(rdip)) { 572 ddi_intrspec_t is; 573 574 is = pci_intx_get_ispec(dip, dip, inumber); 575 PDBG(("pciide_get_ispec okay\n")); 576 return ((struct intrspec *)is); 577 } 578 579 /* Else compatibility mode, use the ISA IRQ */ 580 if ((ppdptr = ddi_get_parent_data(rdip)) == NULL) { 581 PDBG(("pciide_get_ispec null\n")); 582 return (NULL); 583 } 584 585 /* validate the interrupt number */ 586 if (inumber >= ppdptr->par_nintr) { 587 PDBG(("pciide_get_inum\n")); 588 return (NULL); 589 } 590 591 PDBG(("pciide_get_ispec ok\n")); 592 593 return ((struct intrspec *)&ppdptr->par_intr[inumber]); 594 } 595 596 static int 597 pciide_get_pri(dev_info_t *dip, dev_info_t *rdip, 598 ddi_intr_handle_impl_t *hdlp, int *pri) 599 { 600 struct intrspec *ispecp; 601 int *intpriorities; 602 uint_t num_intpriorities; 603 604 PDBG(("pciide_get_pri\n")); 605 606 if ((ispecp = pciide_get_ispec(dip, rdip, hdlp->ih_inum)) == NULL) { 607 PDBG(("pciide_get_pri null\n")); 608 return (DDI_FAILURE); 609 } 610 611 if (PCIIDE_NATIVE_MODE(rdip)) { 612 *pri = ispecp->intrspec_pri; 613 PDBG(("pciide_get_pri ok\n")); 614 return (DDI_SUCCESS); 615 } 616 617 /* check if the intrspec has been initialized */ 618 if (ispecp->intrspec_pri != 0) { 619 *pri = ispecp->intrspec_pri; 620 PDBG(("pciide_get_pri ok2\n")); 621 return (DDI_SUCCESS); 622 } 623 624 /* Use a default of level 5 */ 625 ispecp->intrspec_pri = 5; 626 627 /* 628 * If there's an interrupt-priorities property, use it to 629 * over-ride the default interrupt priority. 630 */ 631 if (ddi_prop_lookup_int_array(DDI_DEV_T_ANY, rdip, DDI_PROP_DONTPASS, 632 "interrupt-priorities", &intpriorities, &num_intpriorities) == 633 DDI_PROP_SUCCESS) { 634 if (hdlp->ih_inum < num_intpriorities) 635 ispecp->intrspec_pri = intpriorities[hdlp->ih_inum]; 636 ddi_prop_free(intpriorities); 637 } 638 *pri = ispecp->intrspec_pri; 639 640 PDBG(("pciide_get_pri ok3\n")); 641 642 return (DDI_SUCCESS); 643 } 644 645 static int 646 pciide_intr_ops(dev_info_t *dip, dev_info_t *rdip, ddi_intr_op_t intr_op, 647 ddi_intr_handle_impl_t *hdlp, void *result) 648 { 649 struct ddi_parent_private_data *ppdptr; 650 struct intrspec *ispecp; 651 int rc; 652 int pri = 0; 653 654 PDBG(("pciide_intr_ops: dip %p rdip %p op %x hdlp %p\n", 655 (void *)dip, (void *)rdip, intr_op, (void *)hdlp)); 656 657 switch (intr_op) { 658 case DDI_INTROP_SUPPORTED_TYPES: 659 *(int *)result = DDI_INTR_TYPE_FIXED; 660 break; 661 case DDI_INTROP_GETCAP: 662 if (i_ddi_intr_ops(dip, rdip, intr_op, hdlp, result) 663 == DDI_FAILURE) 664 *(int *)result = 0; 665 break; 666 case DDI_INTROP_NINTRS: 667 if (!PCIIDE_NATIVE_MODE(rdip)) { 668 if ((ppdptr = ddi_get_parent_data(rdip)) == NULL) { 669 *(int *)result = 0; 670 return (DDI_FAILURE); 671 } 672 *(int *)result = ppdptr->par_nintr; 673 } else 674 *(int *)result = 1; 675 break; 676 case DDI_INTROP_ALLOC: 677 if ((ispecp = pciide_get_ispec(dip, rdip, hdlp->ih_inum)) == 678 NULL) 679 return (DDI_FAILURE); 680 *(int *)result = hdlp->ih_scratch1; 681 hdlp->ih_private = (void *)ispecp; 682 break; 683 case DDI_INTROP_FREE: 684 hdlp->ih_private = NULL; 685 break; 686 case DDI_INTROP_GETPRI: 687 if (pciide_get_pri(dip, rdip, hdlp, &pri) != DDI_SUCCESS) { 688 *(int *)result = 0; 689 return (DDI_FAILURE); 690 } 691 *(int *)result = pri; 692 break; 693 case DDI_INTROP_ADDISR: 694 if ((ispecp = pciide_get_ispec(dip, rdip, hdlp->ih_inum)) == 695 NULL) 696 return (DDI_FAILURE); 697 hdlp->ih_private = (void *)ispecp; 698 ispecp->intrspec_func = hdlp->ih_cb_func; 699 break; 700 case DDI_INTROP_REMISR: 701 if ((ispecp = pciide_get_ispec(dip, rdip, hdlp->ih_inum)) == 702 NULL) 703 return (DDI_FAILURE); 704 ispecp->intrspec_func = (uint_t (*)()) 0; 705 break; 706 case DDI_INTROP_ENABLE: 707 /* FALLTHRU */ 708 case DDI_INTROP_DISABLE: 709 if (PCIIDE_NATIVE_MODE(rdip)) { 710 rdip = dip; 711 dip = ddi_get_parent(dip); 712 } else { /* get ptr to the root node */ 713 dip = ddi_root_node(); 714 } 715 716 rc = (*(DEVI(dip)->devi_ops->devo_bus_ops->bus_intr_op))(dip, 717 rdip, intr_op, hdlp, result); 718 719 #ifdef DEBUG 720 if (intr_op == DDI_INTROP_ENABLE) { 721 PDBG(("pciide_enable rc=%d", rc)); 722 } else 723 PDBG(("pciide_disable rc=%d", rc)); 724 #endif /* DEBUG */ 725 return (rc); 726 case DDI_INTROP_NAVAIL: 727 *(int *)result = 1; 728 break; 729 default: 730 return (DDI_FAILURE); 731 } 732 733 return (DDI_SUCCESS); 734 } 735 736 /* 737 * This is one of the places where controller specific setup needs to be 738 * considered. 739 * At this point the controller was already pre-qualified as a known and 740 * supported pciide controller. 741 * Some controllers do not provide PCI_MASS_IDE sub-class code and IDE 742 * programming interface code but rather PCI_MASS_OTHER sub-class code 743 * without any additional data. 744 * For those controllers IDE programming interface cannot be extracted 745 * from PCI class - we assume that they are pci-native type and we fix 746 * the programming interface used by other functions. 747 * The programming interface byte is set to indicate pci-native mode 748 * for both controllers and the Bus Master DMA capabilitiy of the controller. 749 */ 750 static void 751 pciide_compat_setup(dev_info_t *mydip, dev_info_t *cdip, int dev) 752 { 753 int class_code; 754 int rc = DDI_PROP_SUCCESS; 755 756 class_code = ddi_prop_get_int(DDI_DEV_T_ANY, mydip, 757 DDI_PROP_DONTPASS, "class-code", 0); 758 759 if (((class_code & 0x00FF00) >> 8) == PCI_MASS_IDE) { 760 /* 761 * Controller provides PCI_MASS_IDE sub-class code first 762 * (implied IDE programming interface) 763 */ 764 if ((dev == 0 && !(class_code & PCI_IDE_IF_NATIVE_PRI)) || 765 (dev == 1 && !(class_code & PCI_IDE_IF_NATIVE_SEC))) { 766 rc = ddi_prop_update_int(DDI_DEV_T_NONE, cdip, 767 "compatibility-mode", 1); 768 if (rc != DDI_PROP_SUCCESS) 769 cmn_err(CE_WARN, 770 "pciide prop error %d compat-mode", rc); 771 } 772 } else { 773 /* 774 * Pci-ide controllers not providing PCI_MASS_IDE sub-class are 775 * assumed to be of pci-native type and bus master DMA capable. 776 * Programming interface part of the class-code property is 777 * fixed here. 778 */ 779 class_code &= 0x00ffff00; 780 class_code |= PCI_IDE_IF_BM_CAP_MASK | 781 PCI_IDE_IF_NATIVE_PRI | PCI_IDE_IF_NATIVE_SEC; 782 rc = ddi_prop_update_int(DDI_DEV_T_NONE, mydip, 783 "class-code", class_code); 784 if (rc != DDI_PROP_SUCCESS) 785 cmn_err(CE_WARN, 786 "pciide prop error %d class-code", rc); 787 } 788 } 789 790 791 static int 792 pciide_pre26_rnumber_map(dev_info_t *mydip, int rnumber) 793 { 794 int pri_native; 795 int sec_native; 796 int class_code; 797 798 class_code = ddi_prop_get_int(DDI_DEV_T_ANY, mydip, DDI_PROP_DONTPASS, 799 "class-code", 0); 800 801 pri_native = (class_code & PCI_IDE_IF_NATIVE_PRI) ? TRUE : FALSE; 802 sec_native = (class_code & PCI_IDE_IF_NATIVE_SEC) ? TRUE : FALSE; 803 804 return (pciide_map_rnumber(rnumber, pri_native, sec_native)); 805 806 } 807 808 /* 809 * The canonical order of the reg property tuples for the 810 * Base Address Registers is supposed to be: 811 * 812 * primary controller (BAR 0) 813 * primary controller (BAR 1) 814 * secondary controller (BAR 2) 815 * secondary controller (BAR 3) 816 * bus mastering regs (BAR 4) 817 * 818 * For 2.6, bootconf has been fixed to always generate the 819 * reg property (and assigned-addresses property) tuples 820 * in the above order. 821 * 822 * But in releases prior to 2.6 the order varies depending 823 * on whether compatibility or native mode is being used for 824 * each controller. There ends up being four possible 825 * orders: 826 * 827 * BM, P0, P1, S0, S1 primary compatible, secondary compatible 828 * S0, S1, BM, P0, P1 primary compatible, secondary native 829 * P0, P1, BM, S0, S1 primary native, secondary compatible 830 * P0, P1, S0, S1, BM primary native, secondary native 831 * 832 * where: Px is the primary tuples, Sx the secondary tuples, and 833 * B the Bus Master tuple. 834 * 835 * Here's the results for each of the four states: 836 * 837 * 0, 1, 2, 3, 4 838 * 839 * CC 1, 2, 3, 4, 0 840 * CN 3, 4, 0, 1, 2 841 * NC 0, 1, 3, 4, 2 842 * NN 0, 1, 2, 3, 4 843 * 844 * C = compatible(!native) == 0 845 * N = native == 1 846 * 847 * Here's the transformation matrix: 848 */ 849 850 static int pciide_transform[2][2][5] = { 851 /* P S */ 852 /* [C][C] */ +1, +1, +1, +1, -4, 853 /* [C][N] */ +3, +3, -2, -2, -2, 854 /* [N][C] */ +0, +0, +1, +1, -2, 855 /* [N][N] */ +0, +0, +0, +0, +0 856 }; 857 858 859 static int 860 pciide_map_rnumber(int rnumber, int pri_native, int sec_native) 861 { 862 /* transform flags into indexes */ 863 pri_native = pri_native ? 1 : 0; 864 sec_native = sec_native ? 1 : 0; 865 866 rnumber += pciide_transform[pri_native][sec_native][rnumber]; 867 return (rnumber); 868 } 869