Changeset 39590 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Dec 12, 2011 6:07:45 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75356
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS-new/ahci.c
r39589 r39590 120 120 #define AHCI_REG_PORT_IS 0x10 121 121 # define AHCI_REG_PORT_IS_DHRS RT_BIT_32(0) 122 # define AHCI_REG_PORT_IS_TFES RT_BIT_32(30) 122 123 #define AHCI_REG_PORT_IE 0x14 123 124 #define AHCI_REG_PORT_CMD 0x18 … … 258 259 DBG_AHCI("AHCI: Waiting for D2H FIS\n"); 259 260 while (ahci_ctrl_is_bit_set(io_base, AHCI_PORT_REG(port, AHCI_REG_PORT_IS), 260 AHCI_REG_PORT_IS_DHRS ) == 0)261 AHCI_REG_PORT_IS_DHRS | AHCI_REG_PORT_IS_TFES) == 0) 261 262 { 262 263 // This is where we'd need some kind of a yield functionality...
Note:
See TracChangeset
for help on using the changeset viewer.