VirtualBox

Changeset 29326 in vbox for trunk/src/VBox/Devices/PC/BIOS


Ignore:
Timestamp:
May 11, 2010 10:08:13 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
61431
Message:

LsiLogic: Make the SAS controller a separate device to make it possible to have both types in one VM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/BIOS/scsi.c

    r28800 r29326  
    2020/* The I/O port of the LsiLogic SCSI adapter. */
    2121#define LSILOGIC_ISA_IO_PORT 0x340
     22/* The I/O port of the LsiLogic SAS adapter. */
     23#define LSILOGIC_SAS_ISA_IO_PORT 0x350
    2224
    2325#define VBOXSCSI_REGISTER_STATUS   0
     
    284286
    285287    ebda_seg = read_word(0x0040, 0x000E);
    286 
    287     write_byte(ebda_seg, &EbdaData->scsi.hdcount, 0);
    288288
    289289    /* Go through target devices. */
     
    366366                    cylinders = (uint32_t)(sectors / (heads * sectors_per_track));
    367367                }
    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)
    369369                {
    370370                    /* This is from the BusLogic driver in the Linux kernel. */
     
    442442{
    443443    Bit8u identifier;
     444    Bit16u ebda_seg;
     445
     446
     447    ebda_seg = read_word(0x0040, 0x000E);
     448    write_byte(ebda_seg, &EbdaData->scsi.hdcount, 0);
    444449
    445450    identifier = 0;
     
    476481        VBOXSCSI_DEBUG("scsi_init: LsiLogic SCSI adapter not detected\n");
    477482    }
     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    }
    478499}
    479500
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette