Changeset 17828 in vbox
- Timestamp:
- Mar 13, 2009 2:37:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r17733 r17828 6208 6208 pThis->dev.config[0x4A] = 0x00; /* UDMATIM */ 6209 6209 pThis->dev.config[0x4B] = 0x00; 6210 { 6211 /* 6212 * See www.intel.com/Assets/PDF/manual/298600.pdf p. 30 6213 * Report 6214 * WR_Ping-Pong_EN: must be set 6215 * PCR0, PCR1: 80-pin primary cable reporting for both disks 6216 * SCR0, SCR1: 80-pin secondary cable reporting for both disks 6217 */ 6218 uint16_t u16Config = (1<<10) | (1<<7) | (1<<6) | (1<<5) | (1<<4) ; 6219 pThis->dev.config[0x54] = u16Config & 0xff; 6220 pThis->dev.config[0x55] = u16Config >> 8; 6221 } 6210 6222 break; 6211 6223 case CHIPSET_PIIX4:
Note:
See TracChangeset
for help on using the changeset viewer.