Changeset 29326 in vbox for trunk/src/VBox/Devices/PC/BIOS
- Timestamp:
- May 11, 2010 10:08:13 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61431
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/scsi.c
r28800 r29326 20 20 /* The I/O port of the LsiLogic SCSI adapter. */ 21 21 #define LSILOGIC_ISA_IO_PORT 0x340 22 /* The I/O port of the LsiLogic SAS adapter. */ 23 #define LSILOGIC_SAS_ISA_IO_PORT 0x350 22 24 23 25 #define VBOXSCSI_REGISTER_STATUS 0 … … 284 286 285 287 ebda_seg = read_word(0x0040, 0x000E); 286 287 write_byte(ebda_seg, &EbdaData->scsi.hdcount, 0);288 288 289 289 /* Go through target devices. */ … … 366 366 cylinders = (uint32_t)(sectors / (heads * sectors_per_track)); 367 367 } 368 else if (io_base == LSILOGIC_ISA_IO_PORT )368 else if (io_base == LSILOGIC_ISA_IO_PORT || io_base == LSILOGIC_SAS_ISA_IO_PORT) 369 369 { 370 370 /* This is from the BusLogic driver in the Linux kernel. */ … … 442 442 { 443 443 Bit8u identifier; 444 Bit16u ebda_seg; 445 446 447 ebda_seg = read_word(0x0040, 0x000E); 448 write_byte(ebda_seg, &EbdaData->scsi.hdcount, 0); 444 449 445 450 identifier = 0; … … 476 481 VBOXSCSI_DEBUG("scsi_init: LsiLogic SCSI adapter not detected\n"); 477 482 } 483 484 /* Detect LsiLogic SAS adapter. */ 485 outb(LSILOGIC_SAS_ISA_IO_PORT+VBOXSCSI_REGISTER_IDENTIFY, 0x55); 486 identifier = inb(LSILOGIC_SAS_ISA_IO_PORT+VBOXSCSI_REGISTER_IDENTIFY); 487 488 if (identifier == 0x55) 489 { 490 /* Detected - Enumerate attached devices. */ 491 VBOXSCSI_DEBUG("scsi_init: LsiLogic SAS adapter detected\n"); 492 outb(LSILOGIC_SAS_ISA_IO_PORT+VBOXSCSI_REGISTER_RESET, 0); 493 scsi_enumerate_attached_devices(LSILOGIC_SAS_ISA_IO_PORT); 494 } 495 else 496 { 497 VBOXSCSI_DEBUG("scsi_init: LsiLogic SAS adapter not detected\n"); 498 } 478 499 } 479 500
Note:
See TracChangeset
for help on using the changeset viewer.