Changeset 25989 in vbox
- Timestamp:
- Jan 24, 2010 9:36:21 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56855
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r25985 r25989 295 295 RCPTRTYPE(struct ATACONTROLLER *) pControllerRC; 296 296 297 /** The serial num nber to use for IDENTIFY DEVICE commands. */297 /** The serial number to use for IDENTIFY DEVICE commands. */ 298 298 char szSerialNumber[ATA_SERIAL_NUMBER_LENGTH+1]; 299 299 /** The firmware revision to use for IDENTIFY DEVICE commands. */ … … 1148 1148 } 1149 1149 1150 static uint32_t ataChecksum(void* p, size_t count) 1151 { 1152 uint8_t sum = 0xa5, *pp = (uint8_t*)p; 1153 size_t i; 1154 1155 for (i = 0; i < count; i++) 1156 { 1157 sum += pp[i]; 1158 count--; 1159 } 1160 1161 return (uint8_t)-(int32_t)sum; 1162 } 1150 1163 1151 1164 static bool ataIdentifySS(ATADevState *s) … … 1230 1243 p[103] = RT_H2LE_U16(s->cTotalSectors >> 48); 1231 1244 } 1245 uint32_t uCsum = ataChecksum(p, 510); 1246 p[255] = RT_H2LE_U16(0xa5 | (uCsum << 8)); /* Integrity word */ 1232 1247 s->iSourceSink = ATAFN_SS_NULL; 1233 1248 ataCmdOK(s, ATA_STAT_SEEK); … … 1257 1272 return false; 1258 1273 } 1259 1260 1274 1261 1275 static bool atapiIdentifySS(ATADevState *s) … … 1299 1313 p[88] = RT_H2LE_U16(ATA_TRANSFER_ID(ATA_MODE_UDMA, ATA_UDMA_MODE_MAX, s->uATATransferMode)); /* UDMA modes supported / mode enabled */ 1300 1314 p[93] = RT_H2LE_U16((1 | 1 << 1) << ((s->iLUN & 1) == 0 ? 0 : 8) | 1 << 13 | 1 << 14); 1315 /* According to ATAPI-5 spec: 1316 * 1317 * The use of this word is optional. 1318 * If bits 7:0 of this word contain the signature A5h, bits 15:8 1319 * contain the data 1320 * structure checksum. 1321 * The data structure checksum is the twos complement of the sum of 1322 * all bytes in words 0 through 254 and the byte consisting of 1323 * bits 7:0 in word 255. 1324 * Each byte shall be added with unsigned arithmetic, 1325 * and overflow shall be ignored. 1326 * The sum of all 512 bytes is zero when the checksum is correct. 1327 */ 1328 uint32_t uCsum = ataChecksum(p, 510); 1329 p[255] = RT_H2LE_U16(0xa5 | (uCsum << 8)); /* Integrity word */ 1330 1301 1331 s->iSourceSink = ATAFN_SS_NULL; 1302 1332 ataCmdOK(s, ATA_STAT_SEEK);
Note:
See TracChangeset
for help on using the changeset viewer.