VirtualBox

Changeset 25989 in vbox


Ignore:
Timestamp:
Jan 24, 2010 9:36:21 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
56855
Message:

ATA: implement integrity word

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Storage/DevATA.cpp

    r25985 r25989  
    295295    RCPTRTYPE(struct ATACONTROLLER *)   pControllerRC;
    296296
    297     /** The serial numnber to use for IDENTIFY DEVICE commands. */
     297    /** The serial number to use for IDENTIFY DEVICE commands. */
    298298    char                                szSerialNumber[ATA_SERIAL_NUMBER_LENGTH+1];
    299299    /** The firmware revision to use for IDENTIFY DEVICE commands. */
     
    11481148}
    11491149
     1150static 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}
    11501163
    11511164static bool ataIdentifySS(ATADevState *s)
     
    12301243        p[103] = RT_H2LE_U16(s->cTotalSectors >> 48);
    12311244    }
     1245    uint32_t uCsum = ataChecksum(p, 510);
     1246    p[255] = RT_H2LE_U16(0xa5 | (uCsum << 8)); /* Integrity word */
    12321247    s->iSourceSink = ATAFN_SS_NULL;
    12331248    ataCmdOK(s, ATA_STAT_SEEK);
     
    12571272    return false;
    12581273}
    1259 
    12601274
    12611275static bool atapiIdentifySS(ATADevState *s)
     
    12991313    p[88] = RT_H2LE_U16(ATA_TRANSFER_ID(ATA_MODE_UDMA, ATA_UDMA_MODE_MAX, s->uATATransferMode)); /* UDMA modes supported / mode enabled */
    13001314    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
    13011331    s->iSourceSink = ATAFN_SS_NULL;
    13021332    ataCmdOK(s, ATA_STAT_SEEK);
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