Annotation of embedaddon/smartmontools/drivedb.h, revision 1.1.1.3

1.1       misho       1: /*
                      2:  * drivedb.h - smartmontools drive database file
                      3:  *
                      4:  * Home page of code is: http://smartmontools.sourceforge.net
                      5:  *
                      6:  * Copyright (C) 2003-11 Philip Williams, Bruce Allen
1.1.1.3 ! misho       7:  * Copyright (C) 2008-13 Christian Franke <smartmontools-support@lists.sourceforge.net>
1.1       misho       8:  *
                      9:  * This program is free software; you can redistribute it and/or modify
                     10:  * it under the terms of the GNU General Public License as published by
                     11:  * the Free Software Foundation; either version 2, or (at your option)
                     12:  * any later version.
                     13:  *
                     14:  * You should have received a copy of the GNU General Public License
                     15:  * (for example COPYING); If not, see <http://www.gnu.org/licenses/>.
                     16:  *
                     17:  */
                     18: 
                     19: /*
                     20:  * Structure used to store drive database entries:
                     21:  *
                     22:  * struct drive_settings {
                     23:  *   const char * modelfamily;
                     24:  *   const char * modelregexp;
                     25:  *   const char * firmwareregexp;
                     26:  *   const char * warningmsg;
                     27:  *   const char * presets;
                     28:  * };
                     29:  *
                     30:  * The elements are used in the following ways:
                     31:  *
                     32:  *  modelfamily     Informal string about the model family/series of a
                     33:  *                  device. Set to "" if no info (apart from device id)
                     34:  *                  known.  The entry is ignored if this string starts with
                     35:  *                  a dollar sign.  Must not start with "USB:", see below.
                     36:  *  modelregexp     POSIX extended regular expression to match the model of
                     37:  *                  a device.  This should never be "".
                     38:  *  firmwareregexp  POSIX extended regular expression to match a devices's
                     39:  *                  firmware.  This is optional and should be "" if it is not
                     40:  *                  to be used.  If it is nonempty then it will be used to
                     41:  *                  narrow the set of devices matched by modelregexp.
                     42:  *  warningmsg      A message that may be displayed for matching drives.  For
                     43:  *                  example, to inform the user that they may need to apply a
                     44:  *                  firmware patch.
                     45:  *  presets         String with vendor-specific attribute ('-v') and firmware
                     46:  *                  bug fix ('-F') options.  Same syntax as in smartctl command
                     47:  *                  line.  The user's own settings override these.
                     48:  *
                     49:  * The regular expressions for drive model and firmware must match the full
                     50:  * string.  The effect of "^FULLSTRING$" is identical to "FULLSTRING".
                     51:  * The form ".*SUBSTRING.*" can be used if substring match is desired.
                     52:  *
                     53:  * The table will be searched from the start to end or until the first match,
                     54:  * so the order in the table is important for distinct entries that could match
                     55:  * the same drive.
                     56:  *
                     57:  *
                     58:  * Format for USB ID entries:
                     59:  *
                     60:  *  modelfamily     String with format "USB: DEVICE; BRIDGE" where
                     61:  *                  DEVICE is the name of the device and BRIDGE is
                     62:  *                  the name of the USB bridge.  Both may be empty
                     63:  *                  if no info known.
                     64:  *  modelregexp     POSIX extended regular expression to match the USB
                     65:  *                  vendor:product ID in hex notation ("0x1234:0xabcd").
                     66:  *                  This should never be "".
                     67:  *  firmwareregexp  POSIX extended regular expression to match the USB
                     68:  *                  bcdDevice info.  Only compared during search if other
                     69:  *                  entries with same USB vendor:product ID exist.
                     70:  *  warningmsg      Not used yet.
                     71:  *  presets         String with one device type ('-d') option.
                     72:  *
                     73:  */
                     74: 
                     75: /*
                     76: const drive_settings builtin_knowndrives[] = {
                     77:  */
1.1.1.3 ! misho      78:   { "$Id: drivedb.h 3797 2013-03-14 17:52:59Z chrfranke $",
1.1       misho      79:     "-", "-",
                     80:     "This is a dummy entry to hold the SVN-Id of drivedb.h",
                     81:     ""
1.1.1.2   misho      82:   /* Default settings:
                     83:     "-v 1,raw48,Raw_Read_Error_Rate "
                     84:     "-v 2,raw48,Throughput_Performance "
                     85:     "-v 3,raw16(avg16),Spin_Up_Time "
                     86:     "-v 4,raw48,Start_Stop_Count "
                     87:     "-v 5,raw16(raw16),Reallocated_Sector_Ct "
1.1.1.3 ! misho      88:     "-v 6,raw48,Read_Channel_Margin "             // HDD only
        !            89:     "-v 7,raw48,Seek_Error_Rate "                 // HDD only
        !            90:     "-v 8,raw48,Seek_Time_Performance "           // HDD only
        !            91:     "-v 9,raw24(raw8),Power_On_Hours "
        !            92:     "-v 10,raw48,Spin_Retry_Count "               // HDD only
        !            93:     "-v 11,raw48,Calibration_Retry_Count "        // HDD only
1.1.1.2   misho      94:     "-v 12,raw48,Power_Cycle_Count "
                     95:     "-v 13,raw48,Read_Soft_Error_Rate "
                     96:     //  14-174 Unknown_Attribute
1.1.1.3 ! misho      97:     "-v 175,raw48,Program_Fail_Count_Chip "       // SSD only
        !            98:     "-v 176,raw48,Erase_Fail_Count_Chip "         // SSD only
        !            99:     "-v 177,raw48,Wear_Leveling_Count "           // SSD only
        !           100:     "-v 178,raw48,Used_Rsvd_Blk_Cnt_Chip "        // SSD only
        !           101:     "-v 179,raw48,Used_Rsvd_Blk_Cnt_Tot "         // SSD only
        !           102:     "-v 180,raw48,Unused_Rsvd_Blk_Cnt_Tot "       // SSD only
1.1.1.2   misho     103:     "-v 181,raw48,Program_Fail_Cnt_Total "
1.1.1.3 ! misho     104:     "-v 182,raw48,Erase_Fail_Count_Total "        // SSD only
1.1.1.2   misho     105:     "-v 183,raw48,Runtime_Bad_Block "
                    106:     "-v 184,raw48,End-to-End_Error "
                    107:     //  185-186 Unknown_Attribute
                    108:     "-v 187,raw48,Reported_Uncorrect "
                    109:     "-v 188,raw48,Command_Timeout "
1.1.1.3 ! misho     110:     "-v 189,raw48,High_Fly_Writes "               // HDD only
1.1.1.2   misho     111:     "-v 190,tempminmax,Airflow_Temperature_Cel "
1.1.1.3 ! misho     112:     "-v 191,raw48,G-Sense_Error_Rate "            // HDD only
1.1.1.2   misho     113:     "-v 192,raw48,Power-Off_Retract_Count "
1.1.1.3 ! misho     114:     "-v 193,raw48,Load_Cycle_Count "              // HDD only
1.1.1.2   misho     115:     "-v 194,tempminmax,Temperature_Celsius "
                    116:     "-v 195,raw48,Hardware_ECC_Recovered "
                    117:     "-v 196,raw16(raw16),Reallocated_Event_Count "
                    118:     "-v 197,raw48,Current_Pending_Sector "
                    119:     "-v 198,raw48,Offline_Uncorrectable "
                    120:     "-v 199,raw48,UDMA_CRC_Error_Count "
1.1.1.3 ! misho     121:     "-v 200,raw48,Multi_Zone_Error_Rate "         // HDD only
        !           122:     "-v 201,raw48,Soft_Read_Error_Rate "          // HDD only
        !           123:     "-v 202,raw48,Data_Address_Mark_Errs "        // HDD only
1.1.1.2   misho     124:     "-v 203,raw48,Run_Out_Cancel "
                    125:     "-v 204,raw48,Soft_ECC_Correction "
                    126:     "-v 205,raw48,Thermal_Asperity_Rate "
1.1.1.3 ! misho     127:     "-v 206,raw48,Flying_Height "                 // HDD only
        !           128:     "-v 207,raw48,Spin_High_Current "             // HDD only
        !           129:     "-v 208,raw48,Spin_Buzz "                     // HDD only
        !           130:     "-v 209,raw48,Offline_Seek_Performnce "       // HDD only
1.1.1.2   misho     131:     //  210-219 Unknown_Attribute
1.1.1.3 ! misho     132:     "-v 220,raw48,Disk_Shift "                    // HDD only
        !           133:     "-v 221,raw48,G-Sense_Error_Rate "            // HDD only
        !           134:     "-v 222,raw48,Loaded_Hours "                  // HDD only
        !           135:     "-v 223,raw48,Load_Retry_Count "              // HDD only
        !           136:     "-v 224,raw48,Load_Friction "                 // HDD only
        !           137:     "-v 225,raw48,Load_Cycle_Count "              // HDD only
        !           138:     "-v 226,raw48,Load-in_Time "                  // HDD only
        !           139:     "-v 227,raw48,Torq-amp_Count "                // HDD only
1.1.1.2   misho     140:     "-v 228,raw48,Power-off_Retract_Count "
                    141:     //  229 Unknown_Attribute
1.1.1.3 ! misho     142:     "-v 230,raw48,Head_Amplitude "                // HDD only
1.1.1.2   misho     143:     "-v 231,raw48,Temperature_Celsius "
                    144:     "-v 232,raw48,Available_Reservd_Space "
1.1.1.3 ! misho     145:     "-v 233,raw48,Media_Wearout_Indicator "       // SSD only
1.1.1.2   misho     146:     //  234-239 Unknown_Attribute
1.1.1.3 ! misho     147:     "-v 240,raw48,Head_Flying_Hours "             // HDD only
1.1.1.2   misho     148:     "-v 241,raw48,Total_LBAs_Written "
                    149:     "-v 242,raw48,Total_LBAs_Read "
                    150:     //  243-249 Unknown_Attribute
                    151:     "-v 250,raw48,Read_Error_Retry_Rate "
                    152:     //  251-253 Unknown_Attribute
1.1.1.3 ! misho     153:     "-v 254,raw48,Free_Fall_Sensor "              // HDD only
1.1.1.2   misho     154:   */
1.1       misho     155:   },
                    156:   { "Apple SSD SM128", // Samsung?
                    157:     "APPLE SSD SM128",
                    158:     "", "", ""
                    159:   },
                    160:   { "Asus-Phison SSD",
                    161:     "ASUS-PHISON SSD",
                    162:     "", "", ""
                    163:   },
1.1.1.3 ! misho     164:   { "Crucial/Micron RealSSD C300", // Marvell 88SS9174 BJP2
        !           165:     "C300-CTFDDA[AC](064|128|256)MAG", // tested with C300-CTFDDAC128MAG/0002,
        !           166:       // C300-CTFDDAC064MAG/0006
1.1       misho     167:     "", "",
                    168:   //"-v 1,raw48,Raw_Read_Error_Rate "
1.1.1.2   misho     169:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    170:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     171:   //"-v 12,raw48,Power_Cycle_Count "
                    172:     "-v 170,raw48,Grown_Failing_Block_Ct "
                    173:     "-v 171,raw48,Program_Fail_Count "
                    174:     "-v 172,raw48,Erase_Fail_Count "
1.1.1.3 ! misho     175:     "-v 173,raw48,Wear_Leveling_Count "
1.1       misho     176:     "-v 174,raw48,Unexpect_Power_Loss_Ct "
                    177:     "-v 181,raw16,Non4k_Aligned_Access "
                    178:     "-v 183,raw48,SATA_Iface_Downshift "
                    179:   //"-v 184,raw48,End-to-End_Error "
1.1.1.2   misho     180:   //"-v 187,raw48,Reported_Uncorrect "
                    181:   //"-v 188,raw48,Command_Timeout "
1.1       misho     182:     "-v 189,raw48,Factory_Bad_Block_Ct "
1.1.1.2   misho     183:   //"-v 194,tempminmax,Temperature_Celsius "
                    184:   //"-v 195,raw48,Hardware_ECC_Recovered "
                    185:   //"-v 196,raw16(raw16),Reallocated_Event_Count "
                    186:   //"-v 197,raw48,Current_Pending_Sector "
                    187:   //"-v 198,raw48,Offline_Uncorrectable "
                    188:   //"-v 199,raw48,UDMA_CRC_Error_Count "
1.1       misho     189:     "-v 202,raw48,Perc_Rated_Life_Used "
                    190:     "-v 206,raw48,Write_Error_Rate"
                    191:   },
1.1.1.3 ! misho     192:   { "Crucial/Micron RealSSD m4/C400", // Marvell 9176, fixed firmware
        !           193:     "C400-MTFDDA[ACK](064|128|256|512)MAM|"
        !           194:     "M4-CT(064|128|256|512)M4SSD[23]", // tested with M4-CT512M4SSD2/0309
        !           195:     "030[9-Z]|03[1-Z].|0[4-Z]..|[1-Z]....*", // >= "0309"
        !           196:     "",
        !           197:   //"-v 1,raw48,Raw_Read_Error_Rate "
        !           198:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
        !           199:   //"-v 9,raw24(raw8),Power_On_Hours "
        !           200:   //"-v 12,raw48,Power_Cycle_Count "
        !           201:     "-v 170,raw48,Grown_Failing_Block_Ct "
        !           202:     "-v 171,raw48,Program_Fail_Count "
        !           203:     "-v 172,raw48,Erase_Fail_Count "
        !           204:     "-v 173,raw48,Wear_Leveling_Count "
        !           205:     "-v 174,raw48,Unexpect_Power_Loss_Ct "
        !           206:     "-v 181,raw16,Non4k_Aligned_Access "
        !           207:     "-v 183,raw48,SATA_Iface_Downshift "
        !           208:   //"-v 184,raw48,End-to-End_Error "
        !           209:   //"-v 187,raw48,Reported_Uncorrect "
        !           210:   //"-v 188,raw48,Command_Timeout "
        !           211:     "-v 189,raw48,Factory_Bad_Block_Ct "
        !           212:   //"-v 194,tempminmax,Temperature_Celsius "
        !           213:   //"-v 195,raw48,Hardware_ECC_Recovered "
        !           214:   //"-v 196,raw16(raw16),Reallocated_Event_Count "
        !           215:   //"-v 197,raw48,Current_Pending_Sector "
        !           216:   //"-v 198,raw48,Offline_Uncorrectable "
        !           217:   //"-v 199,raw48,UDMA_CRC_Error_Count "
        !           218:     "-v 202,raw48,Perc_Rated_Life_Used "
        !           219:     "-v 206,raw48,Write_Error_Rate"
        !           220:   },
        !           221:   { "Crucial/Micron RealSSD m4/C400", // Marvell 9176, buggy or unknown firmware
        !           222:     "C400-MTFDDA[ACK](064|128|256|512)MAM|" // tested with C400-MTFDDAC256MAM/0002
        !           223:     "M4-CT(064|128|256|512)M4SSD[23]", // tested with M4-CT064M4SSD2/0002,
        !           224:       // M4-CT064M4SSD2/0009, M4-CT256M4SSD3/000F
        !           225:     "",
        !           226:     "This drive may hang after 5184 hours of power-on time:\n"
        !           227:     "http://www.tomshardware.com/news/Crucial-m4-Firmware-BSOD,14544.html\n"
        !           228:     "See the following web pages for firmware updates:\n"
        !           229:     "http://www.crucial.com/support/firmware.aspx\n"
        !           230:     "http://www.micron.com/products/solid-state-storage/client-ssd#software",
        !           231:     "-v 170,raw48,Grown_Failing_Block_Ct "
        !           232:     "-v 171,raw48,Program_Fail_Count "
        !           233:     "-v 172,raw48,Erase_Fail_Count "
        !           234:     "-v 173,raw48,Wear_Leveling_Count "
        !           235:     "-v 174,raw48,Unexpect_Power_Loss_Ct "
        !           236:     "-v 181,raw16,Non4k_Aligned_Access "
        !           237:     "-v 183,raw48,SATA_Iface_Downshift "
        !           238:     "-v 189,raw48,Factory_Bad_Block_Ct "
        !           239:     "-v 202,raw48,Perc_Rated_Life_Used "
        !           240:     "-v 206,raw48,Write_Error_Rate"
        !           241:   },
1.1       misho     242:   { "SandForce Driven SSDs",
                    243:     "SandForce 1st Ed\\.|" // Demo Drive, tested with firmware 320A13F0
1.1.1.3 ! misho     244:     "ADATA SSD S(396|510|599) .?..GB|" // tested with ADATA SSD S510 60GB/320ABBF0,
1.1.1.2   misho     245:       // ADATA SSD S599 256GB/3.1.0, 64GB/3.4.6
1.1.1.3 ! misho     246:     "Corsair CSSD-F(40|60|80|115|120|160|240)GBP?2.*|" // Corsair Force, tested with
        !           247:       // Corsair CSSD-F40GB2/1.1, Corsair CSSD-F115GB2-A/2.1a
        !           248:     "Corsair Force (3 SSD|GS|GT)|" // SF-2281, tested with
        !           249:       // Corsair Force 3 SSD/1.3.2, GT/1.3.3, GS/5.03
1.1.1.2   misho     250:     "FM-25S2S-(60|120|240)GBP2|" // G.SKILL Phoenix Pro, SF-1200, tested with
                    251:       // FM-25S2S-240GBP2/4.2
1.1       misho     252:     "FTM(06|12|24|48)CT25H|" // Supertalent TeraDrive CT, tested with
                    253:       // FTM24CT25H/STTMP2P1
1.1.1.3 ! misho     254:     "KINGSTON SH10[03]S3(90|120|240|480)G|" // HyperX (3K), SF-2281, tested with
        !           255:       // SH100S3240G/320ABBF0, SH103S3120G/505ABBF0
        !           256:     "KINGSTON SVP200S3(7A)?(60|90|120|240|480)G|" // V+ 200, SF-2281, tested with
        !           257:       // SVP200S37A480G/502ABBF0, SVP200S390G/332ABBF0
        !           258:     "KINGSTON SMS450S3(32|64|128)G|" // mSATA, SF-2281, tested with SMS450S3128G/503ABBF0
        !           259:     "KINGSTON (SV300|SKC100|SE100)S3.*G|" // other SF-2281
        !           260:     "MKNSSDCR(45|60|90|120|180|240|480)GB(-DX)?|" // Mushkin Chronos (deluxe), SF-2281,
        !           261:       // tested with MKNSSDCR120GB
        !           262:     "Mushkin MKNSSDCL(40|60|80|90|115|120|180|240|480)GB-DX2?|" // Mushkin Callisto deluxe,
        !           263:       // SF-1200/1222, Mushkin MKNSSDCL60GB-DX/361A13F0
1.1.1.2   misho     264:     "OCZ[ -](AGILITY2([ -]EX)?|COLOSSUS2|ONYX2|VERTEX(2|-LE))( [123]\\..*)?|" // SF-1200,
1.1       misho     265:       // tested with OCZ-VERTEX2/1.11, OCZ-VERTEX2 3.5/1.11
1.1.1.2   misho     266:     "OCZ-NOCTI|" // mSATA, SF-2100, tested with OCZ-NOCTI/2.15
                    267:     "OCZ-REVODRIVE3?( X2)?|" // PCIe, SF-1200/2281, tested with
                    268:       // OCZ-REVODRIVE( X2)?/1.20, OCZ-REVODRIVE3 X2/2.11
1.1       misho     269:     "OCZ[ -](VELO|VERTEX2[ -](EX|PRO))( [123]\\..*)?|" // SF-1500, tested with
                    270:       // OCZ VERTEX2-PRO/1.10 (Bogus thresholds for attribute 232 and 235)
1.1.1.2   misho     271:     "D2[CR]STK251...-....|" // OCZ Deneva 2 C/R, SF-22xx/25xx,
                    272:       // tested with D2CSTK251M11-0240/2.08, D2CSTK251A10-0240/2.15
                    273:     "OCZ-(AGILITY3|SOLID3|VERTEX3( MI)?)|"  // SF-2200, tested with OCZ-VERTEX3/2.02,
                    274:       // OCZ-AGILITY3/2.11, OCZ-SOLID3/2.15, OCZ-VERTEX3 MI/2.15
                    275:     "OCZ Z-DRIVE R4 [CR]M8[48]|" // PCIe, SF-2282/2582, tested with OCZ Z-DRIVE R4 CM84/2.13
                    276:       // (Bogus attributes under Linux)
1.1.1.3 ! misho     277:     "TALOS2|" // OCZ Talos 2 C/R, SAS (works with -d sat), 2*SF-2282, tested with TALOS2/3.20E
1.1       misho     278:     "(APOC|DENC|DENEVA|FTNC|GFGC|MANG|MMOC|NIMC|TMSC).*|" // other OCZ SF-1200,
                    279:       // tested with DENCSTE251M11-0120/1.33, DENEVA PCI-E/1.33
                    280:     "(DENR|DRSAK|EC188|NIMR|PSIR|TRSAK).*|" // other OCZ SF-1500
1.1.1.2   misho     281:     "OWC Mercury Electra [36]G SSD|" // tested with
                    282:       // OWC Mercury Electra 6G SSD/502ABBF0
1.1       misho     283:     "OWC Mercury Extreme Pro (RE )?SSD|" // tested with
                    284:       // OWC Mercury Extreme Pro SSD/360A13F0
1.1.1.2   misho     285:     "Patriot Pyro|" // tested with Patriot Pyro/332ABBF0
1.1.1.3 ! misho     286:     "SanDisk SDSSDX(60|120|240|480)GG25|" // SanDisk Extreme, SF-2281, tested with
        !           287:       // SDSSDX240GG25/R201
        !           288:     "SuperSSpeed S301 [0-9]*GB|" // SF-2281, tested with SuperSSpeed S301 128GB/503
        !           289:     "(TX32|TX31C1|VN0.?..GCNMK).*|" // Smart Storage Systems XceedSTOR
1.1.1.2   misho     290:     "(TX22D1|TX21B1).*|" // Smart Storage Systems XceedIOPS2
                    291:     "TX52D1.*|" // Smart Storage Systems Xcel-200
1.1.1.3 ! misho     292:     "TS(64|128|256|512)GSSD320|" // Transcend SSD320, SF-2281, tested with TS128GSSD320
1.1       misho     293:     "UGB(88P|99S)GC...H[BF].", // Unigen, tested with
                    294:       // UGB88PGC100HF2/MP Rev2, UGB99SGC100HB3/RC Rev3
                    295:     "", "",
                    296:     "-v 1,raw24/raw32,Raw_Read_Error_Rate "
                    297:     "-v 5,raw48,Retired_Block_Count "
                    298:     "-v 9,msec24hour32,Power_On_Hours_and_Msec "
                    299:   //"-v 12,raw48,Power_Cycle_Count "
                    300:     "-v 13,raw24/raw32,Soft_Read_Error_Rate "
                    301:     "-v 100,raw48,Gigabytes_Erased "
                    302:     "-v 170,raw48,Reserve_Block_Count "
                    303:     "-v 171,raw48,Program_Fail_Count "
                    304:     "-v 172,raw48,Erase_Fail_Count "
                    305:     "-v 174,raw48,Unexpect_Power_Loss_Ct "
                    306:     "-v 177,raw48,Wear_Range_Delta "
                    307:     "-v 181,raw48,Program_Fail_Count "
                    308:     "-v 182,raw48,Erase_Fail_Count "
                    309:     "-v 184,raw48,IO_Error_Detect_Code_Ct "
                    310:   //"-v 187,raw48,Reported_Uncorrect "
1.1.1.3 ! misho     311:     "-v 189,tempminmax,Airflow_Temperature_Cel "
1.1       misho     312:   //"-v 194,tempminmax,Temperature_Celsius "
                    313:     "-v 195,raw24/raw32,ECC_Uncorr_Error_Count "
1.1.1.2   misho     314:   //"-v 196,raw16(raw16),Reallocated_Event_Count "
1.1.1.3 ! misho     315:     "-v 198,raw24/raw32:210zr54,Uncorrectable_Sector_Ct " // KINGSTON SE100S3100G/510ABBF0
1.1       misho     316:     "-v 199,raw48,SATA_CRC_Error_Count "
                    317:     "-v 201,raw24/raw32,Unc_Soft_Read_Err_Rate "
                    318:     "-v 204,raw24/raw32,Soft_ECC_Correct_Rate "
                    319:     "-v 230,raw48,Life_Curve_Status "
                    320:     "-v 231,raw48,SSD_Life_Left "
                    321:   //"-v 232,raw48,Available_Reservd_Space "
                    322:     "-v 233,raw48,SandForce_Internal "
                    323:     "-v 234,raw48,SandForce_Internal "
                    324:     "-v 235,raw48,SuperCap_Health "
                    325:     "-v 241,raw48,Lifetime_Writes_GiB "
                    326:     "-v 242,raw48,Lifetime_Reads_GiB"
                    327:   },
                    328:   { "Indilinx Barefoot based SSDs",
1.1.1.2   misho     329:     "Corsair CSSD-V(32|60|64|128|256)GB2|" // Corsair Nova, tested with Corsair CSSD-V32GB2/2.2
1.1       misho     330:     "CRUCIAL_CT(64|128|256)M225|" // tested with CRUCIAL_CT64M225/1571
                    331:     "G.SKILL FALCON (64|128|256)GB SSD|" // tested with G.SKILL FALCON 128GB SSD/2030
                    332:     "OCZ[ -](AGILITY|ONYX|VERTEX( 1199|-TURBO)?)|" // tested with
                    333:       // OCZ-ONYX/1.6, OCZ-VERTEX 1199/00.P97, OCZ-VERTEX/1.30, OCZ VERTEX-TURBO/1.5
                    334:     "Patriot[ -]Torqx.*|"
                    335:     "RENICE Z2|" // tested with RENICE Z2/2030
                    336:     "STT_FT[MD](28|32|56|64)GX25H|" // Super Talent Ultradrive GX, tested with STT_FTM64GX25H/1916
                    337:     "TS(18|25)M(64|128)MLC(16|32|64|128|256|512)GSSD|" // ASAX Leopard Hunt II, tested with TS25M64MLC64GSSD/0.1
                    338:     "FM-25S2I-(64|128)GBFII|" // G.Skill FALCON II, tested with FM-25S2I-64GBFII
                    339:     "TS(60|120)GSSD25D-M", // Transcend Ultra SSD (SATA II), see also Ticket #80
                    340:     "", "",
                    341:     "-v 1,raw64 " // Raw_Read_Error_Rate
                    342:     "-v 9,raw64 " // Power_On_Hours
                    343:     "-v 12,raw64 " // Power_Cycle_Count
                    344:     "-v 184,raw64,Initial_Bad_Block_Count "
                    345:     "-v 195,raw64,Program_Failure_Blk_Ct "
                    346:     "-v 196,raw64,Erase_Failure_Blk_Ct "
                    347:     "-v 197,raw64,Read_Failure_Blk_Ct "
                    348:     "-v 198,raw64,Read_Sectors_Tot_Ct "
                    349:     "-v 199,raw64,Write_Sectors_Tot_Ct "
                    350:     "-v 200,raw64,Read_Commands_Tot_Ct "
                    351:     "-v 201,raw64,Write_Commands_Tot_Ct "
                    352:     "-v 202,raw64,Error_Bits_Flash_Tot_Ct "
                    353:     "-v 203,raw64,Corr_Read_Errors_Tot_Ct "
                    354:     "-v 204,raw64,Bad_Block_Full_Flag "
                    355:     "-v 205,raw64,Max_PE_Count_Spec "
                    356:     "-v 206,raw64,Min_Erase_Count "
                    357:     "-v 207,raw64,Max_Erase_Count "
                    358:     "-v 208,raw64,Average_Erase_Count "
                    359:     "-v 209,raw64,Remaining_Lifetime_Perc "
                    360:     "-v 210,raw64,Indilinx_Internal "
                    361:     "-v 211,raw64,SATA_Error_Ct_CRC "
                    362:     "-v 212,raw64,SATA_Error_Ct_Handshake "
                    363:     "-v 213,raw64,Indilinx_Internal"
                    364:   },
1.1.1.3 ! misho     365:   { "Indilinx Barefoot_2/Everest/Martini based SSDs",
        !           366:     "OCZ VERTEX[ -]PLUS|" // tested with OCZ VERTEX-PLUS/3.55, OCZ VERTEX PLUS/3.55
        !           367:     "OCZ-VERTEX PLUS R2|" // Barefoot 2, tested with OCZ-VERTEX PLUS R2/1.2
        !           368:     "OCZ-PETROL|" // Everest 1, tested with OCZ-PETROL/3.12
        !           369:     "OCZ-AGILITY4|" // Everest 2, tested with OCZ-AGILITY4/1.5.2
        !           370:     "OCZ-VERTEX4", // Everest 2, tested with OCZ-VERTEX4/1.5
1.1.1.2   misho     371:     "", "", ""
                    372:   //"-v 1,raw48,Raw_Read_Error_Rate "
                    373:   //"-v 3,raw16(avg16),Spin_Up_Time "
                    374:   //"-v 4,raw48,Start_Stop_Count "
                    375:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    376:   //"-v 9,raw24(raw8),Power_On_Hours "
                    377:   //"-v 12,raw48,Power_Cycle_Count "
1.1.1.3 ! misho     378:     "-v 232,raw48,Lifetime_Writes " // LBA?
1.1.1.2   misho     379:   //"-v 233,raw48,Media_Wearout_Indicator"
                    380:   },
1.1.1.3 ! misho     381:   { "Indilinx Barefoot 3 based SSDs",
        !           382:     "OCZ-VECTOR", // tested with OCZ-VECTOR/1.03
        !           383:     "", "", ""
        !           384:     "-v 5,raw48,Runtime_Bad_Block "
        !           385:   //"-v 9,raw24(raw8),Power_On_Hours "
        !           386:   //"-v 12,raw48,Power_Cycle_Count "
        !           387:     "-v 171,raw48,Avail_OP_Block_Count "
        !           388:     "-v 174,raw48,Pwr_Cycle_Ct_Unplanned "
        !           389:     "-v 187,raw48,Total_Unc_NAND_Reads "
        !           390:     "-v 195,raw48,Total_Prog_Failures "
        !           391:     "-v 196,raw48,Total_Erase_Failures "
        !           392:     "-v 197,raw48,Total_Unc_Read_Failures "
        !           393:     "-v 198,raw48,Host_Reads_GiB "
        !           394:     "-v 199,raw48,Host_Writes_GiB "
        !           395:     "-v 208,raw48,Average_Erase_Count "
        !           396:     "-v 210,raw48,SATA_CRC_Error_Count "
        !           397:     "-v 233,raw48,Remaining_Lifetime_Perc "
        !           398:     "-v 249,raw48,Total_NAND_Prog_Ct_GiB"
        !           399:   },
1.1       misho     400:   { "Intel X25-E SSDs",
                    401:     "SSDSA2SH(032|064)G1.* INTEL",  // G1 = first generation
                    402:     "", "",
1.1.1.2   misho     403:   //"-v 3,raw16(avg16),Spin_Up_Time "
1.1       misho     404:   //"-v 4,raw48,Start_Stop_Count "
1.1.1.2   misho     405:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    406:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     407:   //"-v 12,raw48,Power_Cycle_Count "
                    408:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    409:     "-v 225,raw48,Host_Writes_32MiB "
                    410:     "-v 226,raw48,Intel_Internal "
                    411:     "-v 227,raw48,Intel_Internal "
                    412:     "-v 228,raw48,Intel_Internal "
                    413:   //"-v 232,raw48,Available_Reservd_Space "
                    414:   //"-v 233,raw48,Media_Wearout_Indicator"
                    415:   },
                    416:   { "Intel X18-M/X25-M G1 SSDs",
                    417:     "INTEL SSDSA[12]MH(080|160)G1.*",  // G1 = first generation, 50nm
                    418:     "", "",
1.1.1.2   misho     419:   //"-v 3,raw16(avg16),Spin_Up_Time "
1.1       misho     420:   //"-v 4,raw48,Start_Stop_Count "
1.1.1.2   misho     421:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    422:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     423:   //"-v 12,raw48,Power_Cycle_Count "
                    424:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    425:     "-v 225,raw48,Host_Writes_32MiB "
                    426:     "-v 226,raw48,Intel_Internal "
                    427:     "-v 227,raw48,Intel_Internal "
                    428:     "-v 228,raw48,Intel_Internal "
                    429:   //"-v 232,raw48,Available_Reservd_Space "
                    430:   //"-v 233,raw48,Media_Wearout_Indicator"
                    431:   },
                    432:   { "Intel X18-M/X25-M/X25-V G2 SSDs", // fixed firmware
                    433:       // tested with INTEL SSDSA2M(080|160)G2GC/2CV102J8 (X25-M)
                    434:     "INTEL SSDSA[12]M(040|080|120|160)G2.*",  // G2 = second generation, 34nm
                    435:     "2CV102(J[89A-Z]|[K-Z].)", // >= "2CV102J8"
                    436:     "",
1.1.1.2   misho     437:   //"-v 3,raw16(avg16),Spin_Up_Time "
1.1       misho     438:   //"-v 4,raw48,Start_Stop_Count "
1.1.1.2   misho     439:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    440:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     441:   //"-v 12,raw48,Power_Cycle_Count "
                    442:   //"-v 184,raw48,End-to-End_Error " // G2 only
                    443:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    444:     "-v 225,raw48,Host_Writes_32MiB "
                    445:     "-v 226,raw48,Workld_Media_Wear_Indic " // Timed Workload Media Wear Indicator (percent*1024)
                    446:     "-v 227,raw48,Workld_Host_Reads_Perc "  // Timed Workload Host Reads Percentage
                    447:     "-v 228,raw48,Workload_Minutes " // 226,227,228 can be reset by 'smartctl -t vendor,0x40'
                    448:   //"-v 232,raw48,Available_Reservd_Space "
                    449:   //"-v 233,raw48,Media_Wearout_Indicator"
                    450:   },
                    451:   { "Intel X18-M/X25-M/X25-V G2 SSDs", // buggy or unknown firmware
                    452:       // tested with INTEL SSDSA2M040G2GC/2CV102HD (X25-V)
                    453:     "INTEL SSDSA[12]M(040|080|120|160)G2.*",
                    454:     "",
                    455:     "This drive may require a firmware update to\n"
                    456:     "fix possible drive hangs when reading SMART self-test log:\n"
                    457:     "http://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=18363",
                    458:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    459:     "-v 225,raw48,Host_Writes_32MiB "
                    460:     "-v 226,raw48,Workld_Media_Wear_Indic "
                    461:     "-v 227,raw48,Workld_Host_Reads_Perc "
                    462:     "-v 228,raw48,Workload_Minutes"
                    463:   },
1.1.1.3 ! misho     464:   { "Intel 320 Series SSDs", // tested with INTEL SSDSA2CT040G3/4PC10362,
        !           465:       // INTEL SSDSA2CW160G3/4PC10362, INTEL SSDSA2BT040G3/4PC10362
        !           466:     "INTEL SSDSA[12][BC][WT](040|080|120|160|300|600)G3",
1.1       misho     467:     "", "",
1.1.1.3 ! misho     468:     "-F nologdir "
1.1.1.2   misho     469:   //"-v 3,raw16(avg16),Spin_Up_Time "
1.1       misho     470:   //"-v 4,raw48,Start_Stop_Count "
1.1.1.2   misho     471:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    472:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     473:   //"-v 12,raw48,Power_Cycle_Count "
                    474:     "-v 170,raw48,Reserve_Block_Count "
                    475:     "-v 171,raw48,Program_Fail_Count "
                    476:     "-v 172,raw48,Erase_Fail_Count "
                    477:   //"-v 184,raw48,End-to-End_Error "
                    478:   //"-v 187,raw48,Reported_Uncorrect "
                    479:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    480:     "-v 225,raw48,Host_Writes_32MiB "
                    481:     "-v 226,raw48,Workld_Media_Wear_Indic " // Timed Workload Media Wear Indicator (percent*1024)
                    482:     "-v 227,raw48,Workld_Host_Reads_Perc "  // Timed Workload Host Reads Percentage
                    483:     "-v 228,raw48,Workload_Minutes " // 226,227,228 can be reset by 'smartctl -t vendor,0x40'
                    484:   //"-v 232,raw48,Available_Reservd_Space "
                    485:   //"-v 233,raw48,Media_Wearout_Indicator "
                    486:     "-v 241,raw48,Host_Writes_32MiB "
                    487:     "-v 242,raw48,Host_Reads_32MiB"
                    488:   },
1.1.1.3 ! misho     489:   { "Intel 710 Series SSDs", // tested with INTEL SSDSA2BZ[12]00G3/6PB10362
1.1       misho     490:     "INTEL SSDSA2BZ(100|200|300)G3",
                    491:     "", "",
1.1.1.3 ! misho     492:     "-F nologdir "
1.1.1.2   misho     493:   //"-v 3,raw16(avg16),Spin_Up_Time "
1.1       misho     494:   //"-v 4,raw48,Start_Stop_Count "
1.1.1.2   misho     495:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    496:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     497:   //"-v 12,raw48,Power_Cycle_Count "
                    498:     "-v 170,raw48,Reserve_Block_Count "
                    499:     "-v 171,raw48,Program_Fail_Count "
                    500:     "-v 172,raw48,Erase_Fail_Count "
1.1.1.3 ! misho     501:     "-v 174,raw48,Unexpect_Power_Loss_Ct " // Missing in 710 specification from September 2011
1.1       misho     502:     "-v 183,raw48,SATA_Downshift_Count "
                    503:   //"-v 184,raw48,End-to-End_Error "
                    504:   //"-v 187,raw48,Reported_Uncorrect "
1.1.1.2   misho     505:   //"-v 190,tempminmax,Airflow_Temperature_Cel "
1.1       misho     506:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    507:     "-v 225,raw48,Host_Writes_32MiB "
                    508:     "-v 226,raw48,Workld_Media_Wear_Indic " // Timed Workload Media Wear Indicator (percent*1024)
                    509:     "-v 227,raw48,Workld_Host_Reads_Perc "  // Timed Workload Host Reads Percentage
                    510:     "-v 228,raw48,Workload_Minutes " // 226,227,228 can be reset by 'smartctl -t vendor,0x40'
                    511:   //"-v 232,raw48,Available_Reservd_Space "
                    512:   //"-v 233,raw48,Media_Wearout_Indicator "
                    513:     "-v 241,raw48,Host_Writes_32MiB "
                    514:     "-v 242,raw48,Host_Reads_32MiB"
                    515:   },
                    516:   { "Intel 510 Series SSDs",
                    517:     "INTEL SSDSC2MH(120|250)A2",
                    518:     "", "",
1.1.1.2   misho     519:   //"-v 3,raw16(avg16),Spin_Up_Time "
1.1       misho     520:   //"-v 4,raw48,Start_Stop_Count "
1.1.1.2   misho     521:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    522:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     523:   //"-v 12,raw48,Power_Cycle_Count "
                    524:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    525:     "-v 225,raw48,Host_Writes_32MiB "
                    526:   //"-v 232,raw48,Available_Reservd_Space "
                    527:   //"-v 233,raw48,Media_Wearout_Indicator"
                    528:   },
1.1.1.3 ! misho     529:   { "Intel 520 Series SSDs", // tested with INTEL SSDSC2CW120A3/400i, SSDSC2BW480A3F/400i
        !           530:     "INTEL SSDSC2[BC]W(060|120|180|240|480)A3F?",
1.1.1.2   misho     531:     "", "",
                    532:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    533:     "-v 9,msec24hour32,Power_On_Hours_and_Msec "
                    534:   //"-v 12,raw48,Power_Cycle_Count "
                    535:     "-v 170,raw48,Available_Reservd_Space "
                    536:     "-v 171,raw48,Program_Fail_Count "
                    537:     "-v 172,raw48,Erase_Fail_Count "
                    538:     "-v 174,raw48,Unexpect_Power_Loss_Ct "
                    539:   //"-v 184,raw48,End-to-End_Error "
                    540:     "-v 187,raw48,Uncorrectable_Error_Cnt "
                    541:   //"-v 192,raw48,Power-Off_Retract_Count "
                    542:     "-v 225,raw48,Host_Writes_32MiB "
                    543:     "-v 226,raw48,Workld_Media_Wear_Indic "
                    544:     "-v 227,raw48,Workld_Host_Reads_Perc "
                    545:     "-v 228,raw48,Workload_Minutes "
                    546:   //"-v 232,raw48,Available_Reservd_Space "
                    547:   //"-v 233,raw48,Media_Wearout_Indicator "
                    548:     "-v 241,raw48,Host_Writes_32MiB "
                    549:     "-v 242,raw48,Host_Reads_32MiB "
                    550:     "-v 249,raw48,NAND_Writes_1GiB"
                    551:   },
                    552:   { "Intel 330 Series SSDs", // tested with INTEL SSDSC2CT180A3/300i
                    553:     "INTEL SSDSC2CT(060|120|180)A3",
                    554:     "", "",
                    555:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
                    556:     "-v 9,msec24hour32,Power_On_Hours_and_Msec "
                    557:   //"-v 12,raw48,Power_Cycle_Count "
                    558:   //"-v 181,raw48,Program_Fail_Cnt_Total " // ] Missing in 330 specification from April 2012
                    559:   //"-v 182,raw48,Erase_Fail_Count_Total " // ]
                    560:   //"-v 192,raw48,Power-Off_Retract_Count "
                    561:     "-v 225,raw48,Host_Writes_32MiB "
                    562:   //"-v 232,raw48,Available_Reservd_Space "
                    563:   //"-v 233,raw48,Media_Wearout_Indicator "
                    564:     "-v 241,raw48,Host_Writes_32MiB "
                    565:     "-v 242,raw48,Host_Reads_32MiB "
                    566:     "-v 249,raw48,NAND_Writes_1GiB"
                    567:   },
1.1.1.3 ! misho     568:   { "Intel DC S3700 Series SSDs", // tested with INTEL SSDSC2BA200G3/5DV10250
        !           569:     "INTEL SSDSC(1N|2B)A(100|200|400|800)G3",
        !           570:     "", "",
        !           571:   //"-v 3,raw16(avg16),Spin_Up_Time "
        !           572:   //"-v 4,raw48,Start_Stop_Count "
        !           573:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
        !           574:   //"-v 9,raw24(raw8),Power_On_Hours "
        !           575:   //"-v 12,raw48,Power_Cycle_Count "
        !           576:     "-v 170,raw48,Available_Reservd_Space "
        !           577:     "-v 171,raw48,Program_Fail_Count "
        !           578:     "-v 172,raw48,Erase_Fail_Count "
        !           579:     "-v 174,raw48,Unsafe_Shutdown_Count "
        !           580:     "-v 175,raw48,Power_Loss_Cap_Test "
        !           581:     "-v 183,raw48,SATA_Downshift_Count "
        !           582:   //"-v 184,raw48,End-to-End_Error "
        !           583:   //"-v 187,raw48,Reported_Uncorrect "
        !           584:     "-v 190,tempminmax,Temperature_Case "
        !           585:     "-v 192,raw48,Unsafe_Shutdown_Count "
        !           586:     "-v 194,tempminmax,Temperature_Internal "
        !           587:   //"-v 197,raw48,Current_Pending_Sector "
        !           588:     "-v 199,raw48,CRC_Error_Count "
        !           589:     "-v 225,raw48,Host_Writes_32MiB "
        !           590:     "-v 226,raw48,Workld_Media_Wear_Indic " // Timed Workload Media Wear Indicator (percent*1024)
        !           591:     "-v 227,raw48,Workld_Host_Reads_Perc "  // Timed Workload Host Reads Percentage
        !           592:     "-v 228,raw48,Workload_Minutes " // 226,227,228 can be reset by 'smartctl -t vendor,0x40'
        !           593:   //"-v 232,raw48,Available_Reservd_Space "
        !           594:   //"-v 233,raw48,Media_Wearout_Indicator "
        !           595:     "-v 234,raw48,Thermal_Throttle "
        !           596:     "-v 241,raw48,Host_Writes_32MiB "
        !           597:     "-v 242,raw48,Host_Reads_32MiB"
        !           598:   },
1.1       misho     599:   { "Kingston branded X25-V SSDs", // fixed firmware
                    600:     "KINGSTON SSDNow 40GB",
                    601:     "2CV102(J[89A-Z]|[K-Z].)", // >= "2CV102J8"
                    602:     "",
                    603:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    604:     "-v 225,raw48,Host_Writes_32MiB "
                    605:     "-v 226,raw48,Workld_Media_Wear_Indic "
                    606:     "-v 227,raw48,Workld_Host_Reads_Perc "
                    607:     "-v 228,raw48,Workload_Minutes"
                    608:   },
                    609:   { "Kingston branded X25-V SSDs", // buggy or unknown firmware
                    610:     "KINGSTON SSDNow 40GB",
                    611:     "",
                    612:     "This drive may require a firmware update to\n"
                    613:     "fix possible drive hangs when reading SMART self-test log.\n"
                    614:     "To update Kingston branded drives, a modified Intel update\n"
                    615:     "tool must be used. Search for \"kingston 40gb firmware\".",
                    616:     "-v 192,raw48,Unsafe_Shutdown_Count "
                    617:     "-v 225,raw48,Host_Writes_32MiB "
                    618:     "-v 226,raw48,Workld_Media_Wear_Indic "
                    619:     "-v 227,raw48,Workld_Host_Reads_Perc "
                    620:     "-v 228,raw48,Workload_Minutes"
                    621:   },
                    622:   { "JMicron based SSDs", // JMicron JMF60x
                    623:     "Kingston SSDNow V Series [0-9]*GB|" // tested with Kingston SSDNow V Series 64GB/B090522a
                    624:     "TS(2|4|8|16|32|64|128|192)GSSD25S?-(M|S)", // Transcend IDE and SATA, tested with TS32GSSD25-M/V090331
                    625:     "[BV].*", // other Transcend SSD versions will be catched by subsequent entry
                    626:     "",
1.1.1.2   misho     627:   //"-v 9,raw24(raw8),Power_On_Hours " // raw value always 0?
1.1       misho     628:   //"-v 12,raw48,Power_Cycle_Count "
                    629:   //"-v 194,tempminmax,Temperature_Celsius " // raw value always 0?
                    630:     "-v 229,hex64:w012345r,Halt_System/Flash_ID " // Halt, Flash[7]
                    631:     "-v 232,hex64:w012345r,Firmware_Version_Info " // "YYMMDD", #Channels, #Banks
                    632:     "-v 233,hex48:w01234,ECC_Fail_Record " // Fail number, Row[3], Channel, Bank
1.1.1.3 ! misho     633:     "-v 234,raw24/raw24:w01234,Avg/Max_Erase_Count "
        !           634:     "-v 235,raw24/raw24:w01z23,Good/Sys_Block_Count"
1.1       misho     635:   },
                    636:   { "JMicron based SSDs", // JMicron JMF61x
1.1.1.2   misho     637:     "ADATA S596 Turbo|"  // tested with ADATA S596 Turbo 256GB SATA SSD (JMicron JMF616)
                    638:     "APPLE SSD TS.*|"  // Toshiba?, tested with APPLE SSD TS064C/CJAA0201
1.1       misho     639:     "KINGSTON SNV425S2(64|128)GB|"  // SSDNow V Series (2. Generation, JMF618),
                    640:                                     // tested with KINGSTON SNV425S264GB/C091126a
1.1.1.3 ! misho     641:     "KINGSTON SSDNOW 30GB|" // tested with KINGSTON SSDNOW 30GB/AJXA0202
1.1       misho     642:     "KINGSTON SS100S2(8|16)G|"  // SSDNow S100 Series, tested with KINGSTON SS100S28G/D100309a
                    643:     "KINGSTON SVP?100S2B?(64|96|128|256|512)G|"  // SSDNow V100/V+100 Series,
                    644:                                                  // tested with KINGSTON SVP100S296G/CJR10202,
                    645:                                                  // KINGSTON SV100S2256G/D110225a
                    646:     "TOSHIBA THNS128GG4BBAA|"  // Toshiba / Super Talent UltraDrive DX,
                    647:                                // tested with Toshiba 128GB 2.5" SSD (built in MacBooks)
1.1.1.2   misho     648:     "TOSHIBA THNSNC128GMLJ|" // tested with THNSNC128GMLJ/CJTA0202 (built in Toshiba Protege/Dynabook)
1.1.1.3 ! misho     649:     "TS(8|16|32|64|128|192|256|512)GSSD25S?-(MD?|S)", // Transcend IDE and SATA (JMF612), tested with
        !           650:       // TS256GSSD25S-M/101028, TS32GSSD25-M/20101227
1.1       misho     651:     "", "",
                    652:   //"-v 1,raw48,Raw_Read_Error_Rate "
                    653:   //"-v 2,raw48,Throughput_Performance "
                    654:     "-v 3,raw48,Unknown_Attribute "
1.1.1.2   misho     655:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
1.1       misho     656:     "-v 7,raw48,Unknown_Attribute "
                    657:     "-v 8,raw48,Unknown_Attribute "
1.1.1.2   misho     658:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     659:     "-v 10,raw48,Unknown_Attribute "
                    660:   //"-v 12,raw48,Power_Cycle_Count "
1.1.1.2   misho     661:   //"-v 167,raw48,Unknown_Attribute "
1.1       misho     662:     "-v 168,raw48,SATA_Phy_Error_Count "
1.1.1.2   misho     663:   //"-v 169,raw48,Unknown_Attribute "
1.1       misho     664:     "-v 170,raw16,Bad_Block_Count "
                    665:     "-v 173,raw16,Erase_Count "
                    666:     "-v 175,raw48,Bad_Cluster_Table_Count "
                    667:     "-v 192,raw48,Unexpect_Power_Loss_Ct "
                    668:   //"-v 194,tempminmax,Temperature_Celsius "
                    669:   //"-v 197,raw48,Current_Pending_Sector "
                    670:     "-v 240,raw48,Unknown_Attribute"
                    671:   },
1.1.1.3 ! misho     672:   { "Plextor M3 (Pro) Series SSDs", // Marvell 9174, tested with PLEXTOR PX-128M3/1.01,
        !           673:       // PLEXTOR PX-128M3P/1.04, PLEXTOR PX-256M3/1.05
        !           674:       // (1.04/5 Firmware self-test log lifetime unit is bogus, possibly 1/256 hours)
        !           675:     "PLEXTOR PX-(64|128|256|512)M3P?",
        !           676:     "", "",
        !           677:   //"-v 1,raw48,Raw_Read_Error_Rate "
        !           678:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
        !           679:   //"-v 9,raw24(raw8),Power_On_Hours "
        !           680:   //"-v 12,raw48,Power_Cycle_Count "
        !           681:   //"-v 177,raw48,Wear_Leveling_Count "
        !           682:   //"-v 178,raw48,Used_Rsvd_Blk_Cnt_Chip "
        !           683:   //"-v 181,raw48,Program_Fail_Cnt_Total "
        !           684:   //"-v 182,raw48,Erase_Fail_Count_Total "
        !           685:   //"-v 187,raw48,Reported_Uncorrect "
        !           686:   //"-v 192,raw48,Power-Off_Retract_Count "
        !           687:   //"-v 196,raw16(raw16),Reallocated_Event_Count "
        !           688:   //"-v 198,raw48,Offline_Uncorrectable "
        !           689:   //"-v 199,raw48,UDMA_CRC_Error_Count "
        !           690:   //"-v 232,raw48,Available_Reservd_Space "
        !           691:     ""
        !           692:   },
1.1       misho     693:   { "Samsung based SSDs",
                    694:     "SAMSUNG SSD PM800 .*GB|"  // SAMSUNG PM800 SSDs, tested with SAMSUNG SSD PM800 TH 64GB/VBM25D1Q
                    695:     "SAMSUNG SSD PM810 .*GB|"  // SAMSUNG PM810 (470 series) SSDs, tested with SAMSUNG SSD PM810 2.5" 128GB/AXM06D1Q
1.1.1.2   misho     696:     "SAMSUNG 470 Series SSD|"  // tested with SAMSUNG 470 Series SSD 64GB/AXM09B1Q
1.1.1.3 ! misho     697:     "SAMSUNG SSD 830 Series|"  // tested with SAMSUNG SSD 830 Series 64GB/CXM03B1Q
        !           698:     "Samsung SSD 840 (PRO )?Series", // tested with Samsung SSD 840 PRO Series 128GB/DXM04B0Q,
        !           699:                                      // Samsung SSD 840 Series/DXT06B0Q
1.1       misho     700:     "", "",
1.1.1.3 ! misho     701:   //"-v 5,raw16(raw16),Reallocated_Sector_Ct "
1.1.1.2   misho     702:   //"-v 9,raw24(raw8),Power_On_Hours "
1.1       misho     703:   //"-v 12,raw48,Power_Cycle_Count "
                    704:   //"-v 175,raw48,Program_Fail_Count_Chip "
                    705:   //"-v 176,raw48,Erase_Fail_Count_Chip "
1.1.1.2   misho     706:   //"-v 177,raw48,Wear_Leveling_Count "
1.1       misho     707:   //"-v 178,raw48,Used_Rsvd_Blk_Cnt_Chip "
                    708:   //"-v 179,raw48,Used_Rsvd_Blk_Cnt_Tot "
                    709:   //"-v 180,raw48,Unused_Rsvd_Blk_Cnt_Tot "
                    710:   //"-v 181,raw48,Program_Fail_Cnt_Total "
                    711:   //"-v 182,raw48,Erase_Fail_Count_Total "
                    712:   //"-v 183,raw48,Runtime_Bad_Block "
                    713:     "-v 187,raw48,Uncorrectable_Error_Cnt "
1.1.1.2   misho     714:   //"-v 190,tempminmax,Airflow_Temperature_Cel "  // seems to be some sort of temperature value for 470 Series?
                    715:   //"-v 194,tempminmax,Temperature_Celsius "
1.1       misho     716:     "-v 195,raw48,ECC_Rate "
                    717:   //"-v 198,raw48,Offline_Uncorrectable "
                    718:     "-v 199,raw48,CRC_Error_Count "
                    719:     "-v 201,raw48,Supercap_Status "
1.1.1.2   misho     720:     "-v 202,raw48,Exception_Mode_Status "
1.1.1.3 ! misho     721:     "-v 235,raw48,POR_Recovery_Count " // 830/840 Series
        !           722:   //"-v 241,raw48,Total_LBAs_Written"
        !           723:   },
        !           724:   { "Smart Storage Systems Xcel-10 SSDs",  // based on http://www.smartm.com/files/salesLiterature/storage/xcel10.pdf
        !           725:     "SMART A25FD-(32|64|128)GI32N", // tested with SMART A25FD-128GI32N/B9F23D4K
        !           726:     "",
        !           727:     "", // attributes info from http://www.adtron.com/pdf/SMART_Attributes_Xcel-10_810800014_RevB.pdf
        !           728:     "-v 1,raw48,Not_Supported "
        !           729:     "-v 2,raw48,Not_Supported "
        !           730:   //"-v 9,raw24(raw8),Power_On_Hours "
        !           731:   //"-v 12,raw48,Power_Cycle_Count "
        !           732:     "-v 191,raw48,Not_Supported "
        !           733:   //"-v 192,raw48,Power-Off_Retract_Count "
        !           734:     "-v 197,raw48,ECC_Error_Count "
        !           735:   //"-v 198,raw48,Offline_Uncorrectable "
        !           736:   //"-v 199,raw48,UDMA_CRC_Error_Count "
        !           737:     "-v 251,raw48,Min_Spares_Remain_Perc " // percentage of the total number of spare blocks available
        !           738:     "-v 252,raw48,Added_Bad_Flash_Blk_Ct " // number of bad flash blocks
        !           739:     "-v 254,raw48,Total_Erase_Blocks_Ct" // number of times the drive has erased any erase block
1.1.1.2   misho     740:   },
                    741:   { "Smart Storage Systems XceedSecure2 SSDs",
                    742:     "(SMART|Adtron) ([AIS]25FBS|S35FCS).*",
                    743:     "", "",
                    744:     "-v 9,sec2hour,Power_On_Hours "
                    745:     "-v 194,hex64,Proprietary_194"
                    746:   },
                    747:   { "Smart Storage Systems XceedUltraX/Adtron A25FBX SSDs",
                    748:     "(SMART|Adtron) (A|I)25FBX.*",
                    749:     "", "",
                    750:     "-v 9,hex64,Proprietary_9 "
                    751:     "-v 194,hex48,Proprietary_194"
                    752:   },
                    753:   { "Smart Storage Systems Adtron A25FB 2xN SSDs",
                    754:     "(SMART|Adtron) A25FB.*2.N",
                    755:     "", "",
                    756:     "-v 110,hex64,Proprietary_HWC "
                    757:     "-v 111,hex64,Proprietary_MP "
                    758:     "-v 112,hex64,Proprietary_RtR "
                    759:     "-v 113,hex64,Proprietary_RR "
                    760:     "-v 120,hex64,Proprietary_HFAll "
                    761:     "-v 121,hex64,Proprietary_HF1st "
                    762:     "-v 122,hex64,Proprietary_HF2nd "
                    763:     "-v 123,hex64,Proprietary_HF3rd "
                    764:     "-v 125,hex64,Proprietary_SFAll "
                    765:     "-v 126,hex64,Proprietary_SF1st "
                    766:     "-v 127,hex64,Proprietary_SF2nd "
                    767:     "-v 128,hex64,Proprietary_SF3rd "
1.1.1.3 ! misho     768:     "-v 194,raw24/raw32:zvzzzw,Fractional_Temperature"
1.1.1.2   misho     769:   },
                    770:   { "Smart Storage Systems Adtron A25FB 3xN SSDs",
                    771:     "(SMART|Adtron) A25FB-.*3.N",
                    772:     "", "",
                    773:     "-v 9,sec2hour,Power_On_Hours "
                    774:     "-v 113,hex48,Proprietary_RR "
                    775:     "-v 130,raw48:54321,Minimum_Spares_All_Zs"
                    776:   //"-v 194,tempminmax,Temperature_Celsius"
1.1       misho     777:   },
1.1.1.3 ! misho     778:   { "STEC Mach2 CompactFlash Cards", // tested with STEC M2P CF 1.0.0/K1385MS
        !           779:     "STEC M2P CF 1.0.0",
        !           780:     "", "",
        !           781:     "-v 100,raw48,Erase_Program_Cycles "
        !           782:     "-v 103,raw48,Remaining_Energy_Storg "
        !           783:     "-v 170,raw48,Reserved_Block_Count "
        !           784:     "-v 171,raw48,Program_Fail_Count "
        !           785:     "-v 172,raw48,Erase_Fail_Count "
        !           786:     "-v 173,raw48,Wear_Leveling_Count "
        !           787:     "-v 174,raw48,Unexpect_Power_Loss_Ct "
        !           788:     "-v 211,raw48,Unknown_Attribute " // ] Missing in specification
        !           789:     "-v 212,raw48,Unknown_Attribute"  // ] from September 2012
        !           790:   },
1.1       misho     791:   { "Transcend CompactFlash Cards", // tested with TRANSCEND/20080820,
                    792:       // TS4GCF133/20100709, TS16GCF133/20100709
                    793:     "TRANSCEND|TS(4|8|16)GCF133",
                    794:     "", "",
                    795:     "-v 7,raw48,Unknown_Attribute "
                    796:     "-v 8,raw48,Unknown_Attribute"
                    797:   },
                    798:   { "Marvell SSD SD88SA024BA0 (SUN branded)",
                    799:     "MARVELL SD88SA024BA0 SUN24G 0902M0054V",
                    800:     "", "", ""
                    801:   },
                    802:   { "HP 1TB SATA disk GB1000EAFJL",
                    803:     "GB1000EAFJL",
                    804:     "", "", ""
                    805:   },
                    806:   { "HP 500GB SATA disk MM0500EANCR",
                    807:     "MM0500EANCR",
                    808:     "", "", ""
                    809:   },
                    810:   { "HP 250GB SATA disk VB0250EAVER",
                    811:     "VB0250EAVER",
                    812:     "", "", ""
                    813:   },
                    814:   { "IBM Deskstar 60GXP",  // ER60A46A firmware
                    815:     "(IBM-|Hitachi )?IC35L0[12346]0AVER07.*",
                    816:     "ER60A46A",
                    817:     "", ""
                    818:   },
                    819:   { "IBM Deskstar 60GXP",  // All other firmware
                    820:     "(IBM-|Hitachi )?IC35L0[12346]0AVER07.*",
                    821:     "",
                    822:     "IBM Deskstar 60GXP drives may need upgraded SMART firmware.\n"
1.1.1.2   misho     823:     "Please see http://haque.net/dtla_update/",
1.1       misho     824:     ""
                    825:   },
                    826:   { "IBM Deskstar 40GV & 75GXP (A5AA/A6AA firmware)",
                    827:     "(IBM-)?DTLA-30[57]0[123467][05].*",
                    828:     "T[WX][123468AG][OF]A[56]AA",
                    829:     "", ""
                    830:   },
                    831:   { "IBM Deskstar 40GV & 75GXP (all other firmware)",
                    832:     "(IBM-)?DTLA-30[57]0[123467][05].*",
                    833:     "",
                    834:     "IBM Deskstar 40GV and 75GXP drives may need upgraded SMART firmware.\n"
1.1.1.2   misho     835:     "Please see http://haque.net/dtla_update/",
1.1       misho     836:     ""
                    837:   },
                    838:   { "", // ExcelStor J240, J340, J360, J680, J880 and J8160
                    839:     "ExcelStor Technology J(24|34|36|68|88|816)0",
                    840:     "", "", ""
                    841:   },
                    842:   { "", // Fujitsu M1623TAU
                    843:     "FUJITSU M1623TAU",
                    844:     "",
                    845:     "",
                    846:     "-v 9,seconds"
                    847:   },
                    848:   { "Fujitsu MHG",
                    849:     "FUJITSU MHG2...ATU?.*",
                    850:     "",
                    851:     "",
                    852:     "-v 9,seconds"
                    853:   },
                    854:   { "Fujitsu MHH",
                    855:     "FUJITSU MHH2...ATU?.*",
                    856:     "",
                    857:     "",
                    858:     "-v 9,seconds"
                    859:   },
                    860:   { "Fujitsu MHJ",
                    861:     "FUJITSU MHJ2...ATU?.*",
                    862:     "",
                    863:     "",
                    864:     "-v 9,seconds"
                    865:   },
                    866:   { "Fujitsu MHK",
                    867:     "FUJITSU MHK2...ATU?.*",
                    868:     "",
                    869:     "",
                    870:     "-v 9,seconds"
                    871:   },
                    872:   { "",  // Fujitsu MHL2300AT
                    873:     "FUJITSU MHL2300AT",
                    874:     "",
                    875:     "This drive's firmware has a harmless Drive Identity Structure\n"
                    876:       "checksum error bug.",
                    877:     "-v 9,seconds"
                    878:   },
                    879:   { "",  // MHM2200AT, MHM2150AT, MHM2100AT, MHM2060AT
                    880:     "FUJITSU MHM2(20|15|10|06)0AT",
                    881:     "",
                    882:     "This drive's firmware has a harmless Drive Identity Structure\n"
                    883:       "checksum error bug.",
                    884:     "-v 9,seconds"
                    885:   },
                    886:   { "Fujitsu MHN",
                    887:     "FUJITSU MHN2...AT",
                    888:     "",
                    889:     "",
                    890:     "-v 9,seconds"
                    891:   },
                    892:   { "", // Fujitsu MHR2020AT
                    893:     "FUJITSU MHR2020AT",
                    894:     "",
                    895:     "",
                    896:     "-v 9,seconds"
                    897:   },
                    898:   { "", // Fujitsu MHR2040AT
                    899:     "FUJITSU MHR2040AT",
                    900:     "",    // Tested on 40BA
                    901:     "",
                    902:     "-v 9,seconds -v 192,emergencyretractcyclect "
                    903:     "-v 198,offlinescanuncsectorct -v 200,writeerrorcount"
                    904:   },
                    905:   { "Fujitsu MHS AT",
                    906:     "FUJITSU MHS20[6432]0AT(  .)?",
                    907:     "",
                    908:     "",
                    909:     "-v 9,seconds -v 192,emergencyretractcyclect "
                    910:     "-v 198,offlinescanuncsectorct -v 200,writeerrorcount "
                    911:     "-v 201,detectedtacount"
                    912:   },
                    913:   { "Fujitsu MHT", // tested with FUJITSU MHT2030AC/909B
                    914:     "FUJITSU MHT2...(AC|AH|AS|AT|BH)U?.*",
                    915:     "",
                    916:     "",
                    917:     "-v 9,seconds"
                    918:   },
                    919:   { "Fujitsu MHU",
                    920:     "FUJITSU MHU2...ATU?.*",
                    921:     "",
                    922:     "",
                    923:     "-v 9,seconds"
                    924:   },
                    925:   { "Fujitsu MHV",
                    926:     "FUJITSU MHV2...(AH|AS|AT|BH|BS|BT).*",
                    927:     "",
                    928:     "",
                    929:     "-v 9,seconds"
                    930:   },
                    931:   { "Fujitsu MPA..MPG",
                    932:     "FUJITSU MP[A-G]3...A[HTEV]U?.*",
                    933:     "",
                    934:     "",
                    935:     "-v 9,seconds"
                    936:   },
                    937:   { "Fujitsu MHY BH",
                    938:     "FUJITSU MHY2(04|06|08|10|12|16|20|25)0BH.*",
                    939:     "", "",
                    940:     "-v 240,raw48,Transfer_Error_Rate"
                    941:   },
                    942:   { "Fujitsu MHW AC", // tested with FUJITSU MHW2060AC/00900004
                    943:     "FUJITSU MHW20(40|60)AC",
                    944:     "", "", ""
                    945:   },
                    946:   { "Fujitsu MHW BH",
                    947:     "FUJITSU MHW2(04|06|08|10|12|16)0BH.*",
                    948:     "", "", ""
                    949:   },
                    950:   { "Fujitsu MHW BJ",
                    951:     "FUJITSU MHW2(08|12|16)0BJ.*",
                    952:     "", "", ""
                    953:   },
                    954:   { "Fujitsu MHZ BH",
                    955:     "FUJITSU MHZ2(04|08|12|16|20|25|32)0BH.*",
                    956:     "", "", ""
                    957:   },
                    958:   { "Fujitsu MHZ BJ",
                    959:     "FUJITSU MHZ2(08|12|16|20|25|32)0BJ.*",
                    960:     "",
                    961:     "",
                    962:     "-v 9,minutes"
                    963:   },
                    964:   { "Fujitsu MHZ BS",
                    965:     "FUJITSU MHZ2(12|25)0BS.*",
                    966:     "", "", ""
                    967:   },
                    968:   { "Fujitsu MHZ BK",
                    969:     "FUJITSU MHZ2(08|12|16|25)0BK.*",
                    970:     "", "", ""
                    971:   },
                    972:   { "Fujitsu MJA BH",
                    973:     "FUJITSU MJA2(08|12|16|25|32|40|50)0BH.*",
                    974:     "", "", ""
                    975:   },
                    976:   { "", // Samsung SV4012H (known firmware)
                    977:     "SAMSUNG SV4012H",
                    978:     "RM100-08",
                    979:     "",
                    980:     "-v 9,halfminutes -F samsung"
                    981:   },
                    982:   { "", // Samsung SV4012H (all other firmware)
                    983:     "SAMSUNG SV4012H",
                    984:     "",
                    985:     "May need -F samsung disabled; see manual for details.",
                    986:     "-v 9,halfminutes -F samsung"
                    987:   },
                    988:   { "", // Samsung SV0412H (known firmware)
                    989:     "SAMSUNG SV0412H",
                    990:     "SK100-01",
                    991:     "",
                    992:     "-v 9,halfminutes -v 194,10xCelsius -F samsung"
                    993:   },
                    994:   { "", // Samsung SV0412H (all other firmware)
                    995:     "SAMSUNG SV0412H",
                    996:     "",
                    997:     "May need -F samsung disabled; see manual for details.",
                    998:     "-v 9,halfminutes -v 194,10xCelsius -F samsung"
                    999:   },
                   1000:   { "", // Samsung SV1204H (known firmware)
                   1001:     "SAMSUNG SV1204H",
                   1002:     "RK100-1[3-5]",
                   1003:     "",
                   1004:     "-v 9,halfminutes -v 194,10xCelsius -F samsung"
                   1005:   },
                   1006:   { "", // Samsung SV1204H (all other firmware)
                   1007:     "SAMSUNG SV1204H",
                   1008:     "",
                   1009:     "May need -F samsung disabled; see manual for details.",
                   1010:     "-v 9,halfminutes -v 194,10xCelsius -F samsung"
                   1011:   },
                   1012:   { "", // SAMSUNG SV0322A tested with FW JK200-35
                   1013:     "SAMSUNG SV0322A",
                   1014:     "", "", ""
                   1015:   },
                   1016:   { "SAMSUNG SpinPoint V80", // tested with SV1604N/TR100-23
                   1017:     "SAMSUNG SV(0211|0401|0612|0802|1203|1604)N",
                   1018:     "",
                   1019:     "",
                   1020:     "-v 9,halfminutes -F samsung2"
                   1021:   },
                   1022:   { "", // SAMSUNG SP40A2H with RR100-07 firmware
                   1023:     "SAMSUNG SP40A2H",
                   1024:     "RR100-07",
                   1025:     "",
                   1026:     "-v 9,halfminutes -F samsung"
                   1027:   },
                   1028:   { "", // SAMSUNG SP80A4H with RT100-06 firmware
                   1029:     "SAMSUNG SP80A4H",
                   1030:     "RT100-06",
                   1031:     "",
                   1032:     "-v 9,halfminutes -F samsung"
                   1033:   },
                   1034:   { "", // SAMSUNG SP8004H with QW100-61 firmware
                   1035:     "SAMSUNG SP8004H",
                   1036:     "QW100-61",
                   1037:     "",
                   1038:     "-v 9,halfminutes -F samsung"
                   1039:   },
                   1040:   { "SAMSUNG SpinPoint F1 DT", // tested with HD103UJ/1AA01113
                   1041:     "SAMSUNG HD(083G|16[12]G|25[12]H|32[12]H|50[12]I|642J|75[23]L|10[23]U)J",
                   1042:     "", "", ""
                   1043:   },
1.1.1.3 ! misho    1044:   { "SAMSUNG SpinPoint F1 EG", // tested with HD103UI/1AA01113
        !          1045:     "SAMSUNG HD(252H|322H|502I|642J|753L|103U)I",
        !          1046:     "", "", ""
        !          1047:   },
1.1       misho    1048:   { "SAMSUNG SpinPoint F1 RE", // tested with HE103UJ/1AA01113
                   1049:     "SAMSUNG HE(252H|322H|502I|642J|753L|103U)J",
                   1050:     "", "", ""
                   1051:   },
                   1052:   { "SAMSUNG SpinPoint F2 EG", // tested with HD154UI/1AG01118
                   1053:     "SAMSUNG HD(502H|10[23]S|15[34]U)I",
                   1054:     "", "", ""
                   1055:   },
                   1056:   { "SAMSUNG SpinPoint F3", // tested with HD502HJ/1AJ100E4
                   1057:     "SAMSUNG HD(502H|754J|103S)J",
                   1058:     "", "", ""
                   1059:   },
1.1.1.3 ! misho    1060:   { "Seagate Barracuda SpinPoint F3", // tested with ST1000DM005 HD103SJ/1AJ100E5
        !          1061:     "ST[0-9DM]* HD(502H|754J|103S)J",
        !          1062:     "", "", ""
        !          1063:   },
1.1       misho    1064:   { "SAMSUNG SpinPoint F3 EG", // tested with HD503HI/1AJ100E4, HD153WI/1AN10002
                   1065:     "SAMSUNG HD(253G|(324|503)H|754J|105S|(153|203)W)I",
                   1066:     "", "", ""
                   1067:   },
1.1.1.3 ! misho    1068:   { "SAMSUNG SpinPoint F3 RE", // tested with HE103SJ/1AJ30001
        !          1069:     "SAMSUNG HE(502H|754J|103S)J",
        !          1070:     "", "", ""
        !          1071:   },
        !          1072:   { "SAMSUNG SpinPoint F4 EG (AF)",// tested with HD204UI/1AQ10001(buggy|fixed)
1.1       misho    1073:     "SAMSUNG HD(155|204)UI",
                   1074:     "", // 1AQ10001
                   1075:     "Using smartmontools or hdparm with this\n"
                   1076:     "drive may result in data loss due to a firmware bug.\n"
                   1077:     "****** THIS DRIVE MAY OR MAY NOT BE AFFECTED! ******\n"
                   1078:     "Buggy and fixed firmware report same version number!\n"
                   1079:     "See the following web pages for details:\n"
1.1.1.2   misho    1080:     "http://knowledge.seagate.com/articles/en_US/FAQ/223571en\n"
1.1       misho    1081:     "http://sourceforge.net/apps/trac/smartmontools/wiki/SamsungF4EGBadBlocks",
                   1082:     ""
                   1083:   },
                   1084:   { "SAMSUNG SpinPoint S250", // tested with HD200HJ/KF100-06
                   1085:     "SAMSUNG HD(162|200|250)HJ",
                   1086:     "", "", ""
                   1087:   },
                   1088:   { "SAMSUNG SpinPoint T133", // tested with HD300LJ/ZT100-12, HD400LJ/ZZ100-14, HD401LJ/ZZ100-15
                   1089:     "SAMSUNG HD(250KD|(30[01]|320|40[01])L[DJ])",
                   1090:     "", "", ""
                   1091:   },
                   1092:   { "SAMSUNG SpinPoint T166", // tested with HD501LJ/CR100-1[01]
                   1093:     "SAMSUNG HD(080G|160H|32[01]K|403L|50[01]L)J",
                   1094:     "", "",
                   1095:     "-v 197,increasing" // at least HD501LJ/CR100-11
                   1096:   },
                   1097:   { "SAMSUNG SpinPoint P120", // VF100-37 firmware, tested with SP2514N/VF100-37
                   1098:     "SAMSUNG SP(16[01]3|2[05][01]4)[CN]",
                   1099:     "VF100-37",
                   1100:     "",
                   1101:     "-F samsung3"
                   1102:   },
                   1103:   { "SAMSUNG SpinPoint P120", // other firmware, tested with SP2504C/VT100-33
                   1104:     "SAMSUNG SP(16[01]3|2[05][01]4)[CN]",
                   1105:     "",
                   1106:     "May need -F samsung3 enabled; see manual for details.",
                   1107:     ""
                   1108:   },
                   1109:   { "SAMSUNG SpinPoint P80 SD", // tested with HD160JJ/ZM100-33
                   1110:     "SAMSUNG HD(080H|120I|160J)J",
                   1111:     "", "", ""
                   1112:   },
                   1113:   { "SAMSUNG SpinPoint P80", // BH100-35 firmware, tested with SP0842N/BH100-35
                   1114:     "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]",
                   1115:     "BH100-35",
                   1116:     "",
                   1117:     "-F samsung3"
                   1118:   },
                   1119:   { "SAMSUNG SpinPoint P80", // firmware *-35 or later
                   1120:     "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]",
                   1121:     ".*-3[5-9]",
                   1122:     "May need -F samsung3 enabled; see manual for details.",
                   1123:     ""
                   1124:   },
1.1.1.3 ! misho    1125:   { "SAMSUNG SpinPoint P80", // firmware *-25...34, tested with
        !          1126:       // SP0401N/TJ100-30, SP1614C/SW100-25 and -34
        !          1127:     "SAMSUNG SP(04[05]1|08[0124]2|12[0145]3|16[0145]4)[CN]",
1.1       misho    1128:     ".*-(2[5-9]|3[0-4])",
                   1129:     "",
                   1130:     "-v 9,halfminutes -v 198,increasing"
                   1131:   },
                   1132:   { "SAMSUNG SpinPoint P80", // firmware *-23...24, tested with
                   1133:     // SP0802N/TK100-23,
                   1134:     // SP1213N/TL100-23,
                   1135:     // SP1604N/TM100-23 and -24
                   1136:     "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]",
                   1137:     ".*-2[34]",
                   1138:     "",
                   1139:     "-v 9,halfminutes -F samsung2"
                   1140:   },
                   1141:   { "SAMSUNG SpinPoint P80", // unknown firmware
                   1142:     "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]",
                   1143:     "",
                   1144:     "May need -F samsung2 or -F samsung3 enabled; see manual for details.",
                   1145:     ""
                   1146:   },
1.1.1.3 ! misho    1147:   { "SAMSUNG SpinPoint M40/60/80", // tested with HM120IC/AN100-16, HM160JI/AD100-16
        !          1148:     "SAMSUNG HM(0[468]0H|120I|1[026]0J)[CI]",
1.1       misho    1149:     "",
                   1150:     "",
                   1151:     "-v 9,halfminutes"
                   1152:   },
                   1153:   { "SAMSUNG SpinPoint M5", // tested with HM160HI/HH100-12
                   1154:     "SAMSUNG HM(((061|080)G|(121|160)H|250J)I|160HC)",
                   1155:     "", "", ""
                   1156:   },
                   1157:   { "SAMSUNG SpinPoint M6", // tested with HM320JI/2SS00_01 M6
                   1158:     "SAMSUNG HM(251J|320[HJ]|[45]00L)I",
                   1159:     "", "", ""
                   1160:   },
                   1161:   { "SAMSUNG SpinPoint M7", // tested with HM500JI/2AC101C4
                   1162:     "SAMSUNG HM(250H|320I|[45]00J)I",
                   1163:     "", "", ""
                   1164:   },
1.1.1.3 ! misho    1165:   { "SAMSUNG SpinPoint M7E (AF)", // tested with HM321HI/2AJ10001, HM641JI/2AJ10001
1.1       misho    1166:     "SAMSUNG HM(161G|(251|321)H|501I|641J)I",
                   1167:     "", "", ""
                   1168:   },
1.1.1.2   misho    1169:   { "SAMSUNG SpinPoint M7U (USB)", // tested with HM252HX/2AC101C4
1.1       misho    1170:     "SAMSUNG HM(162H|252H|322I|502J)X",
                   1171:     "", "", ""
                   1172:   },
1.1.1.3 ! misho    1173:   { "SAMSUNG SpinPoint M8 (AF)", // tested with HN-M101MBB/2AR10001
        !          1174:     "SAMSUNG HN-M(250|320|500|640|750|101)MBB",
1.1.1.2   misho    1175:     "", "", ""
                   1176:   },
1.1.1.3 ! misho    1177:   { "Seagate Momentus SpinPoint M8 (AF)", // tested with
        !          1178:       // ST750LM022 HN-M750MBB/2AR10001, ST320LM001 HN-M320MBB/2AR10002
        !          1179:     "ST(250|320|500|640|750|1000)LM0[012][124] HN-M[0-9]*MBB",
1.1.1.2   misho    1180:     "", "", ""
                   1181:   },
                   1182:   { "SAMSUNG SpinPoint M8U (USB)", // tested with HN-M500XBB/2AR10001
                   1183:     "SAMSUNG HN-M(320|500|750|101)XBB",
                   1184:     "", "", ""
                   1185:   },
1.1.1.3 ! misho    1186:   { "Seagate Samsung SpinPoint M8U (USB)", // tested with ST1000LM025 HN-M101ABB/2AR10001
        !          1187:     "ST(250|320|500|640|750|1000)LM0[012][3459] HN-M[0-9]*ABB",
        !          1188:     "", "", ""
        !          1189:   },
1.1       misho    1190:   { "SAMSUNG SpinPoint MP5", // tested with HM250HJ/2AK10001
                   1191:     "SAMSUNG HM(250H|320H|500J|640J)J",
                   1192:     "", "", ""
                   1193:   },
                   1194:   { "SAMSUNG SpinPoint MT2", // tested with HM100UI/2AM10001
                   1195:     "SAMSUNG HM100UI",
                   1196:     "", "", ""
                   1197:   },
                   1198:   { "SAMSUNG HM100UX (S2 Portable)", // tested with HM100UX/2AM10001
                   1199:     "SAMSUNG HM100UX",
                   1200:     "", "", ""
                   1201:   },
                   1202:   { "SAMSUNG SpinPoint M", // tested with MP0402H/UC100-11
                   1203:     "SAMSUNG MP0(302|402|603|804)H",
                   1204:     "",
                   1205:     "",
                   1206:     "-v 9,halfminutes"
                   1207:   },
                   1208:   { "SAMSUNG SpinPoint N3U-3 (USB, 4KiB LLS)", // tested with HS25YJZ/3AU10-01
                   1209:     "SAMSUNG HS(122H|2[05]YJ)Z",
                   1210:     "", "", ""
                   1211:   },
                   1212:   { "Maxtor Fireball 541DX",
                   1213:     "Maxtor 2B0(0[468]|1[05]|20)H1",
                   1214:     "",
                   1215:     "",
                   1216:     "-v 9,minutes -v 194,unknown"
                   1217:   },
                   1218:   { "Maxtor Fireball 3",
                   1219:     "Maxtor 2F0[234]0[JL]0",
                   1220:     "",
                   1221:     "",
                   1222:     "-v 9,minutes"
                   1223:   },
                   1224:   { "Maxtor DiamondMax 1280 ATA",  // no self-test log, ATA2-Fast
                   1225:     "Maxtor 8(1280A2|2160A4|2560A4|3840A6|4000A6|5120A8)",
                   1226:     "",
                   1227:     "",
                   1228:     "-v 9,minutes"
                   1229:   },
                   1230:   { "Maxtor DiamondMax 2160 Ultra ATA",
                   1231:     "Maxtor 8(2160D2|3228D3|3240D3|4320D4|6480D6|8400D8|8455D8)",
                   1232:     "",
                   1233:     "",
                   1234:     "-v 9,minutes"
                   1235:   },
                   1236:   { "Maxtor DiamondMax 2880 Ultra ATA",
                   1237:     "Maxtor 9(0510D4|0576D4|0648D5|0720D5|0840D6|0845D6|0864D6|1008D7|1080D8|1152D8)",
                   1238:     "",
                   1239:     "",
                   1240:     "-v 9,minutes"
                   1241:   },
                   1242:   { "Maxtor DiamondMax 3400 Ultra ATA",
                   1243:     "Maxtor 9(1(360|350|202)D8|1190D7|10[12]0D6|0840D5|06[48]0D4|0510D3|1(350|202)E8|1010E6|0840E5|0640E4)",
                   1244:     "",
                   1245:     "",
                   1246:     "-v 9,minutes"
                   1247:   },
                   1248:   { "Maxtor DiamondMax D540X-4G",
                   1249:     "Maxtor 4G(120J6|160J[68])",
                   1250:     "",
                   1251:     "",
                   1252:     "-v 9,minutes -v 194,unknown"
                   1253:   },
                   1254:   { "Maxtor DiamondMax D540X-4K",
                   1255:     "MAXTOR 4K(020H1|040H2|060H3|080H4)",
                   1256:     "", "", ""
                   1257:   },
                   1258:   { "Maxtor DiamondMax Plus D740X",
                   1259:     "MAXTOR 6L0(20[JL]1|40[JL]2|60[JL]3|80[JL]4)",
                   1260:     "", "", ""
                   1261:   },
                   1262:   { "Maxtor DiamondMax Plus 5120 Ultra ATA 33",
                   1263:     "Maxtor 9(0512D2|0680D3|0750D3|0913D4|1024D4|1360D6|1536D6|1792D7|2048D8)",
                   1264:     "",
                   1265:     "",
                   1266:     "-v 9,minutes"
                   1267:   },
                   1268:   { "Maxtor DiamondMax Plus 6800 Ultra ATA 66",
                   1269:     "Maxtor 9(2732U8|2390U7|204[09]U6|1707U5|1366U4|1024U3|0845U3|0683U2)",
                   1270:     "",
                   1271:     "",
                   1272:     "-v 9,minutes"
                   1273:   },
                   1274:   { "Maxtor DiamondMax D540X-4D",
                   1275:     "Maxtor 4D0(20H1|40H2|60H3|80H4)",
                   1276:     "",
                   1277:     "",
                   1278:     "-v 9,minutes -v 194,unknown"
                   1279:   },
                   1280:   { "Maxtor DiamondMax 16",
                   1281:     "Maxtor 4(R0[68]0[JL]0|R1[26]0L0|A160J0|R120L4)",
                   1282:     "",
                   1283:     "",
                   1284:     "-v 9,minutes"
                   1285:   },
                   1286:   { "Maxtor DiamondMax 4320 Ultra ATA",
                   1287:     "Maxtor (91728D8|91512D7|91303D6|91080D5|90845D4|90645D3|90648D[34]|90432D2)",
                   1288:     "",
                   1289:     "",
                   1290:     "-v 9,minutes"
                   1291:   },
                   1292:   { "Maxtor DiamondMax 17 VL",
                   1293:     "Maxtor 9(0431U1|0641U2|0871U2|1301U3|1741U4)",
                   1294:     "",
                   1295:     "",
                   1296:     "-v 9,minutes"
                   1297:   },
                   1298:   { "Maxtor DiamondMax 20 VL",
                   1299:     "Maxtor (94091U8|93071U6|92561U5|92041U4|91731U4|91531U3|91361U3|91021U2|90841U2|90651U2)",
                   1300:     "",
                   1301:     "",
                   1302:     "-v 9,minutes"
                   1303:   },
                   1304:   { "Maxtor DiamondMax VL 30",  // U: ATA66, H: ATA100
                   1305:     "Maxtor (33073U4|32049U3|31536U2|30768U1|33073H4|32305H3|31536H2|30768H1)",
                   1306:     "",
                   1307:     "",
                   1308:     "-v 9,minutes"
                   1309:   },
                   1310:   { "Maxtor DiamondMax 36",
                   1311:     "Maxtor (93652U8|92739U6|91826U4|91369U3|90913U2|90845U2|90435U1)",
                   1312:     "",
                   1313:     "",
                   1314:     "-v 9,minutes"
                   1315:   },
                   1316:   { "Maxtor DiamondMax 40 ATA 66",
                   1317:     "Maxtor 9(0684U2|1024U2|1362U3|1536U3|2049U4|2562U5|3073U6|4098U8)",
                   1318:     "",
                   1319:     "",
                   1320:     "-v 9,minutes"
                   1321:   },
                   1322:   { "Maxtor DiamondMax Plus 40 (Ultra ATA 66 and Ultra ATA 100)",
                   1323:     "Maxtor (54098[UH]8|53073[UH]6|52732[UH]6|52049[UH]4|51536[UH]3|51369[UH]3|51024[UH]2)",
                   1324:     "",
                   1325:     "",
                   1326:     "-v 9,minutes"
                   1327:   },
                   1328:   { "Maxtor DiamondMax 40 VL Ultra ATA 100",
                   1329:     "Maxtor 3(1024H1|1535H2|2049H2|3073H3|4098H4)( B)?",
                   1330:     "",
                   1331:     "",
                   1332:     "-v 9,minutes"
                   1333:   },
                   1334:   { "Maxtor DiamondMax Plus 45 Ulta ATA 100",
                   1335:     "Maxtor 5(4610H6|4098H6|3073H4|2049H3|1536H2|1369H2|1023H2)",
                   1336:     "",
                   1337:     "",
                   1338:     "-v 9,minutes"
                   1339:   },
                   1340:   { "Maxtor DiamondMax 60 ATA 66",
                   1341:     "Maxtor 9(1023U2|1536U2|2049U3|2305U3|3073U4|4610U6|6147U8)",
                   1342:     "",
                   1343:     "",
                   1344:     "-v 9,minutes"
                   1345:   },
                   1346:   { "Maxtor DiamondMax 60 ATA 100",
                   1347:     "Maxtor 9(1023H2|1536H2|2049H3|2305H3|3073H4|4098H6|4610H6|6147H8)",
                   1348:     "",
                   1349:     "",
                   1350:     "-v 9,minutes"
                   1351:   },
                   1352:   { "Maxtor DiamondMax Plus 60",
                   1353:     "Maxtor 5T0(60H6|40H4|30H3|20H2|10H1)",
                   1354:     "",
                   1355:     "",
                   1356:     "-v 9,minutes"
                   1357:   },
                   1358:   { "Maxtor DiamondMax 80",
                   1359:     "Maxtor (98196H8|96147H6)",
                   1360:     "",
                   1361:     "",
                   1362:     "-v 9,minutes"
                   1363:   },
                   1364:   { "Maxtor DiamondMax 536DX",
                   1365:     "Maxtor 4W(100H6|080H6|060H4|040H3|030H2)",
                   1366:     "",
                   1367:     "",
                   1368:     "-v 9,minutes"
                   1369:   },
                   1370:   { "Maxtor DiamondMax Plus 8",
                   1371:     "Maxtor 6(E0[234]|K04)0L0",
                   1372:     "",
                   1373:     "",
                   1374:     "-v 9,minutes"
                   1375:   },
                   1376:   { "Maxtor DiamondMax 10 (ATA/133 and SATA/150)",
                   1377:     "Maxtor 6(B(30|25|20|16|12|10|08)0[MPRS]|L(080[MLP]|(100|120)[MP]|160[MP]|200[MPRS]|250[RS]|300[RS]))0",
                   1378:     "",
                   1379:     "",
                   1380:     "-v 9,minutes"
                   1381:   },
                   1382:   { "Maxtor DiamondMax 10 (SATA/300)",
                   1383:     "Maxtor 6V(080E|160E|200E|250F|300F|320F)0",
                   1384:     "", "", ""
                   1385:   },
                   1386:   { "Maxtor DiamondMax Plus 9",
                   1387:     "Maxtor 6Y((060|080|120|160)L0|(060|080|120|160|200|250)P0|(060|080|120|160|200|250)M0)",
                   1388:     "",
                   1389:     "",
                   1390:     "-v 9,minutes"
                   1391:   },
                   1392:   { "Maxtor DiamondMax 11",
                   1393:     "Maxtor 6H[45]00[FR]0",
                   1394:     "", "", ""
                   1395:   },
                   1396:   { "Maxtor DiamondMax 17",
                   1397:     "Maxtor 6G(080L|160[PE])0",
                   1398:     "", "", ""
                   1399:   },
                   1400:   { "Seagate Maxtor DiamondMax 20",
                   1401:     "MAXTOR STM3(40|80|160)[28]1[12]0?AS?",
                   1402:     "", "", ""
                   1403:   },
                   1404:   { "Seagate Maxtor DiamondMax 21", // tested with MAXTOR STM3250310AS/3.AAF
                   1405:     "MAXTOR STM3(80[28]15|160215|250310|(250|320)820|320620|500630)AS?",
                   1406:     "", "", ""
                   1407:   },
                   1408:   { "Seagate Maxtor DiamondMax 22", // fixed firmware
                   1409:     "(MAXTOR )?STM3(500320|750330|1000340)AS?",
1.1.1.2   misho    1410:     "MX1A", // http://knowledge.seagate.com/articles/en_US/FAQ/207969en
1.1       misho    1411:     "", ""
                   1412:   },
                   1413:   { "Seagate Maxtor DiamondMax 22", // fixed firmware
                   1414:     "(MAXTOR )?STM3(160813|320614|640323|1000334)AS?",
1.1.1.2   misho    1415:     "MX1B", // http://knowledge.seagate.com/articles/en_US/FAQ/207975en
1.1       misho    1416:     "", ""
                   1417:   },
                   1418:   { "Seagate Maxtor DiamondMax 22", // buggy firmware
                   1419:     "(MAXTOR )?STM3(500320|750330|1000340)AS?",
                   1420:     "MX15",
                   1421:     "There are known problems with these drives,\n"
                   1422:     "AND THIS FIRMWARE VERSION IS AFFECTED,\n"
                   1423:     "see the following Seagate web pages:\n"
1.1.1.2   misho    1424:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
                   1425:     "http://knowledge.seagate.com/articles/en_US/FAQ/207969en",
1.1       misho    1426:     ""
                   1427:   },
                   1428:   { "Seagate Maxtor DiamondMax 22", // unknown firmware
                   1429:     "(MAXTOR )?STM3(160813|32061[34]|500320|640323|750330|10003(34|40))AS?",
                   1430:     "",
                   1431:     "There are known problems with these drives,\n"
                   1432:     "see the following Seagate web pages:\n"
1.1.1.2   misho    1433:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
                   1434:     "http://knowledge.seagate.com/articles/en_US/FAQ/207969en\n"
                   1435:     "http://knowledge.seagate.com/articles/en_US/FAQ/207975en",
1.1       misho    1436:     ""
                   1437:   },
1.1.1.3 ! misho    1438:   { "Seagate Maxtor DiamondMax 23", // new firmware
1.1       misho    1439:     "STM3((160|250)31|(320|500)41|(750|1000)52)8AS?",
1.1.1.3 ! misho    1440:     "CC3[D-Z]",
        !          1441:     "", ""
        !          1442:   },
        !          1443:   { "Seagate Maxtor DiamondMax 23", // unknown firmware
        !          1444:     "STM3((160|250)31|(320|500)41|(750|1000)52)8AS?",
        !          1445:     "",
        !          1446:     "A firmware update for this drive may be available,\n"
        !          1447:     "see the following Seagate web pages:\n"
        !          1448:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
        !          1449:     "http://knowledge.seagate.com/articles/en_US/FAQ/213911en",
        !          1450:     ""
1.1       misho    1451:   },
                   1452:   { "Maxtor MaXLine Plus II",
                   1453:     "Maxtor 7Y250[PM]0",
                   1454:     "",
                   1455:     "",
                   1456:     "-v 9,minutes"
                   1457:   },
                   1458:   { "Maxtor MaXLine II",
                   1459:     "Maxtor [45]A(25|30|32)0[JN]0",
                   1460:     "",
                   1461:     "",
                   1462:     "-v 9,minutes"
                   1463:   },
                   1464:   { "Maxtor MaXLine III (ATA/133 and SATA/150)",
                   1465:     "Maxtor 7L(25|30)0[SR]0",
                   1466:     "",
                   1467:     "",
                   1468:     "-v 9,minutes"
                   1469:   },
                   1470:   { "Maxtor MaXLine III (SATA/300)",
                   1471:     "Maxtor 7V(25|30)0F0",
                   1472:     "", "", ""
                   1473:   },
                   1474:   { "Maxtor MaXLine Pro 500",  // There is also a 7H500R0 model, but I
                   1475:     "Maxtor 7H500F0",               // haven't added it because I suspect
                   1476:     "",                               // it might need vendoropts_9_minutes
                   1477:     "", ""                            // and nobody has submitted a report yet
                   1478:   },
                   1479:   { "", // HITACHI_DK14FA-20B
                   1480:     "HITACHI_DK14FA-20B",
                   1481:     "",
                   1482:     "",
                   1483:     "-v 9,minutes -v 193,loadunload"
                   1484:   },
                   1485:   { "HITACHI Travelstar DK23XX/DK23XXB",
                   1486:     "HITACHI_DK23..-..B?",
                   1487:     "",
                   1488:     "",
                   1489:     "-v 9,minutes -v 193,loadunload"
                   1490:   },
                   1491:   { "Hitachi Endurastar J4K20/N4K20 (formerly DK23FA-20J)",
                   1492:     "(HITACHI_DK23FA-20J|HTA422020F9AT[JN]0)",
                   1493:     "",
                   1494:     "",
                   1495:     "-v 9,minutes -v 193,loadunload"
                   1496:   },
                   1497:   { "Hitachi Endurastar J4K30/N4K30",
                   1498:     "HE[JN]4230[23]0F9AT00",
                   1499:     "",
                   1500:     "",
                   1501:     "-v 9,minutes -v 193,loadunload"
                   1502:   },
                   1503:   { "Hitachi Travelstar C4K60",  // 1.8" slim drive
                   1504:     "HTC4260[23]0G5CE00|HTC4260[56]0G8CE00",
                   1505:     "",
                   1506:     "",
                   1507:     "-v 9,minutes -v 193,loadunload"
                   1508:   },
                   1509:   { "IBM Travelstar 4GT",
                   1510:     "IBM-DTCA-2(324|409)0",
                   1511:     "", "", ""
                   1512:   },
                   1513:   { "IBM Travelstar 6GN",
                   1514:     "IBM-DBCA-20(324|486|648)0",
                   1515:     "", "", ""
                   1516:   },
                   1517:   { "IBM Travelstar 25GS, 18GT, and 12GN",
                   1518:     "IBM-DARA-2(25|18|15|12|09|06)000",
                   1519:     "", "", ""
                   1520:   },
                   1521:   { "IBM Travelstar 14GS",
                   1522:     "IBM-DCYA-214000",
                   1523:     "", "", ""
                   1524:   },
                   1525:   { "IBM Travelstar 4LP",
                   1526:     "IBM-DTNA-2(180|216)0",
                   1527:     "", "", ""
                   1528:   },
                   1529:   { "IBM Travelstar 48GH, 30GN, and 15GN",
                   1530:     "(IBM-|Hitachi )?IC25(T048ATDA05|N0(30|20|15|12|10|07|06|05)ATDA04)-.",
                   1531:     "", "", ""
                   1532:   },
                   1533:   { "IBM Travelstar 32GH, 30GT, and 20GN",
                   1534:     "IBM-DJSA-2(32|30|20|10|05)",
                   1535:     "", "", ""
                   1536:   },
                   1537:   { "IBM Travelstar 4GN",
                   1538:     "IBM-DKLA-2(216|324|432)0",
                   1539:     "", "", ""
                   1540:   },
                   1541:   { "IBM/Hitachi Travelstar 60GH and 40GN",
                   1542:     "(IBM-|Hitachi )?IC25(T060ATC[SX]05|N0[4321]0ATC[SX]04)-.",
                   1543:     "", "", ""
                   1544:   },
                   1545:   { "IBM/Hitachi Travelstar 40GNX",
                   1546:     "(IBM-|Hitachi )?IC25N0[42]0ATC[SX]05-.",
                   1547:     "", "", ""
                   1548:   },
                   1549:   { "Hitachi Travelstar 80GN",
                   1550:     "(Hitachi )?IC25N0[23468]0ATMR04-.",
                   1551:     "", "", ""
                   1552:   },
                   1553:   { "Hitachi Travelstar 4K40",
                   1554:     "(Hitachi )?HTS4240[234]0M9AT00",
                   1555:     "", "", ""
                   1556:   },
                   1557:   { "Hitachi Travelstar 4K120",
                   1558:     "(Hitachi )?(HTS4212(60|80|10|12)H9AT00|HTS421260G9AT00)",
                   1559:     "", "", ""
                   1560:   },
                   1561:   { "Hitachi Travelstar 5K80",
                   1562:     "(Hitachi )?HTS5480[8642]0M9AT00",
                   1563:     "", "", ""
                   1564:   },
                   1565:   { "Hitachi Travelstar 5K100",
                   1566:     "(Hitachi )?HTS5410[1864]0G9(AT|SA)00",
                   1567:     "", "", ""
                   1568:   },
                   1569:   { "Hitachi Travelstar E5K100",
                   1570:     "(Hitachi )?HTE541040G9(AT|SA)00",
                   1571:     "", "", ""
                   1572:   },
                   1573:   { "Hitachi Travelstar 5K120",
                   1574:     "(Hitachi )?HTS5412(60|80|10|12)H9(AT|SA)00",
                   1575:     "", "", ""
                   1576:   },
                   1577:   { "Hitachi Travelstar 5K160",
                   1578:     "(Hitachi |HITACHI )?HTS5416([468]0|1[26])J9(AT|SA)00",
                   1579:     "", "", ""
                   1580:   },
                   1581:   { "Hitachi Travelstar E5K160",
                   1582:     "(Hitachi )?HTE5416(12|16|60|80)J9(AT|SA)00",
                   1583:     "", "", ""
                   1584:   },
                   1585:   { "Hitachi Travelstar 5K250",
                   1586:     "(Hitachi |HITACHI )?HTS5425(80|12|16|20|25)K9(A3|SA)00",
                   1587:     "", "", ""
                   1588:   },
1.1.1.2   misho    1589:   { "Hitachi Travelstar 5K320", // tested with HITACHI HTS543232L9SA00/FB4ZC4EC,
                   1590:     // Hitachi HTS543212L9SA02/FBBAC52F
                   1591:     "(Hitachi |HITACHI )?HT(S|E)5432(80|12|16|25|32)L9(A3(00)?|SA0[012])",
1.1       misho    1592:     "", "", ""
                   1593:   },
                   1594:   { "Hitachi Travelstar 5K500.B",
                   1595:     "(Hitachi )?HT[ES]5450(12|16|25|32|40|50)B9A30[01]",
                   1596:     "", "", ""
                   1597:   },
1.1.1.3 ! misho    1598:   { "Hitachi/HGST Travelstar Z5K500", // tested with HGST HTS545050A7E380/GG2OAC90
        !          1599:     "HGST HT[ES]5450(25|32|50)A7E38[01]",
        !          1600:     "", "", ""
        !          1601:   },
        !          1602:   { "Hitachi/HGST Travelstar 5K750", // tested with Hitachi HTS547575A9E384/JE4OA60A
        !          1603:     "Hitachi HT[ES]5475(50|64|75)A9E38[14]",
        !          1604:     "", "", ""
        !          1605:   },
1.1       misho    1606:   { "Hitachi Travelstar 7K60",
                   1607:     "(Hitachi )?HTS726060M9AT00",
                   1608:     "", "", ""
                   1609:   },
                   1610:   { "Hitachi Travelstar E7K60",
                   1611:     "(Hitachi )?HTE7260[46]0M9AT00",
                   1612:     "", "", ""
                   1613:   },
                   1614:   { "Hitachi Travelstar 7K100",
                   1615:     "(Hitachi )?HTS7210[168]0G9(AT|SA)00",
                   1616:     "", "", ""
                   1617:   },
                   1618:   { "Hitachi Travelstar E7K100",
                   1619:     "(Hitachi )?HTE7210[168]0G9(AT|SA)00",
                   1620:     "", "", ""
                   1621:   },
                   1622:   { "Hitachi Travelstar 7K200", // tested with HITACHI HTS722016K9SA00/DCDZC75A
                   1623:     "(Hitachi |HITACHI )?HTS7220(80|10|12|16|20)K9(A3|SA)00",
                   1624:     "", "", ""
                   1625:   },
                   1626:   { "Hitachi Travelstar 7K320", // tested with
                   1627:     // HTS723225L9A360/FCDOC30F, HTS723216L9A362/FC2OC39F
                   1628:     "(Hitachi )?HT[ES]7232(80|12|16|25|32)L9(A300|A36[02]|SA61)",
                   1629:     "", "", ""
                   1630:   },
1.1.1.2   misho    1631:   { "Hitachi Travelstar Z7K320", // tested with HITACHI HTS723232A7A364/EC2ZB70B
                   1632:     "(HITACHI )?HT[ES]7232(16|25|32)A7A36[145]",
                   1633:     "", "", ""
                   1634:   },
1.1       misho    1635:   { "Hitachi Travelstar 7K500",
1.1.1.2   misho    1636:     "(Hitachi )?HT[ES]7250(12|16|25|32|50)A9A36[2-5]",
1.1       misho    1637:     "", "", ""
                   1638:   },
1.1.1.3 ! misho    1639:   { "HGST Travelstar 7K1000", // tested with HGST HTS721010A9E630/JB0OA3B0
        !          1640:     "HGST HTS721010A9E630",
        !          1641:     "", "", ""
        !          1642:   },
1.1       misho    1643:   { "IBM Deskstar 14GXP and 16GP",
                   1644:     "IBM-DTTA-3(7101|7129|7144|5032|5043|5064|5084|5101|5129|5168)0",
                   1645:     "", "", ""
                   1646:   },
                   1647:   { "IBM Deskstar 25GP and 22GXP",
                   1648:     "IBM-DJNA-3(5(101|152|203|250)|7(091|135|180|220))0",
                   1649:     "", "", ""
                   1650:   },
                   1651:   { "IBM Deskstar 37GP and 34GXP",
                   1652:     "IBM-DPTA-3(5(375|300|225|150)|7(342|273|205|136))0",
                   1653:     "", "", ""
                   1654:   },
                   1655:   { "IBM/Hitachi Deskstar 120GXP",
                   1656:     "(IBM-)?IC35L((020|040|060|080|120)AVVA|0[24]0AVVN)07-[01]",
                   1657:     "", "", ""
                   1658:   },
                   1659:   { "IBM/Hitachi Deskstar GXP-180",
                   1660:     "(IBM-)?IC35L(030|060|090|120|180)AVV207-[01]",
                   1661:     "", "", ""
                   1662:   },
                   1663:   { "Hitachi Deskstar 5K3000", // tested with HDS5C3030ALA630/MEAOA5C0
                   1664:     "(Hitachi )?HDS5C30(15|20|30)ALA63[02].*",
                   1665:     "", "", ""
                   1666:   },
1.1.1.2   misho    1667:   { "Hitachi Deskstar 5K4000", // tested with HDS5C4040ALE630/MPAOA250
                   1668:     "(Hitachi )?HDS5C40(30|40)ALE63[01].*",
                   1669:     "", "", ""
                   1670:   },
1.1       misho    1671:   { "Hitachi Deskstar 7K80",
                   1672:     "(Hitachi )?HDS7280([48]0PLAT20|(40)?PLA320|80PLA380).*",
                   1673:     "", "", ""
                   1674:   },
                   1675:   { "Hitachi Deskstar 7K160",
                   1676:     "(Hitachi )?HDS7216(80|16)PLA[3T]80.*",
                   1677:     "", "", ""
                   1678:   },
                   1679:   { "Hitachi Deskstar 7K250",
                   1680:     "(Hitachi )?HDS7225((40|80|12|16)VLAT20|(12|16|25)VLAT80|(80|12|16|25)VLSA80)",
                   1681:     "", "", ""
                   1682:   },
                   1683:   { "Hitachi Deskstar 7K250 (SUN branded)",
                   1684:     "HITACHI HDS7225SBSUN250G.*",
                   1685:     "", "", ""
                   1686:   },
                   1687:   { "Hitachi Deskstar T7K250",
                   1688:     "(Hitachi )?HDT7225((25|20|16)DLA(T80|380))",
                   1689:     "", "", ""
                   1690:   },
                   1691:   { "Hitachi Deskstar 7K400",
                   1692:     "(Hitachi )?HDS724040KL(AT|SA)80",
                   1693:     "", "", ""
                   1694:   },
                   1695:   { "Hitachi Deskstar 7K500",
                   1696:     "(Hitachi )?HDS725050KLA(360|T80)",
                   1697:     "", "", ""
                   1698:   },
                   1699:   { "Hitachi Deskstar P7K500",
                   1700:     "(Hitachi )?HDP7250(16|25|32|40|50)GLA(36|38|T8)0",
                   1701:     "", "", ""
                   1702:   },
                   1703:   { "Hitachi Deskstar T7K500",
                   1704:     "(Hitachi )?HDT7250(25|32|40|50)VLA(360|380|T80)",
                   1705:     "", "", ""
                   1706:   },
                   1707:   { "Hitachi Deskstar 7K1000",
                   1708:     "(Hitachi )?HDS7210(50|75|10)KLA330",
                   1709:     "", "", ""
                   1710:   },
                   1711:   { "Hitachi Deskstar 7K1000.B",
                   1712:     "(Hitachi )?HDT7210((16|25)SLA380|(32|50|64|75|10)SLA360)",
                   1713:     "", "", ""
                   1714:   },
1.1.1.3 ! misho    1715:   { "Hitachi Deskstar 7K1000.C", // tested with Hitachi HDS721010CLA330/JP4OA3MA
        !          1716:     "(Hitachi )?HDS7210((16|25)CLA382|(32|50)CLA362|(64|75|10)CLA33[02])",
1.1       misho    1717:     "", "", ""
                   1718:   },
1.1.1.2   misho    1719:   { "Hitachi Deskstar 7K1000.D", // tested with HDS721010DLE630/MS2OA5Q0
                   1720:     "Hitachi HDS7210(25|32|50|75|10)DLE630",
                   1721:     "", "", ""
                   1722:   },
                   1723:   { "Hitachi Deskstar E7K1000", // tested with HDE721010SLA330/ST6OA31B
                   1724:     "Hitachi HDE7210(50|75|10)SLA330",
                   1725:     "", "", ""
                   1726:   },
1.1       misho    1727:   { "Hitachi Deskstar 7K2000",
                   1728:     "Hitachi HDS722020ALA330",
                   1729:     "", "", ""
                   1730:   },
                   1731:   { "Hitachi Deskstar 7K3000", // tested with HDS723030ALA640/MKAOA3B0
                   1732:     "Hitachi HDS7230((15|20)BLA642|30ALA640)",
                   1733:     "", "", ""
                   1734:   },
1.1.1.3 ! misho    1735:   { "Hitachi/HGST Deskstar 7K4000", // tested with Hitachi HDS724040ALE640/MJAOA250
        !          1736:     "Hitachi HDS724040ALE640",
        !          1737:     "", "", ""
        !          1738:   },
1.1.1.2   misho    1739:   { "Hitachi Ultrastar A7K1000", // tested with
                   1740:     // HUA721010KLA330      44X2459 42C0424IBM/GKAOAB4A
                   1741:     "(Hitachi )?HUA7210(50|75|10)KLA330.*",
1.1       misho    1742:     "", "", ""
                   1743:   },
1.1.1.2   misho    1744:   { "Hitachi Ultrastar A7K2000", // tested with
                   1745:     // HUA722010CLA330      43W7629 42C0401IBM
                   1746:     "(Hitachi )?HUA7220(50|10|20)[AC]LA33[01].*",
1.1       misho    1747:     "", "", ""
                   1748:   },
1.1.1.2   misho    1749:   { "Hitachi Ultrastar 7K3000", // tested with HUA723030ALA640/MKAOA580
                   1750:     "Hitachi HUA7230(20|30)ALA640",
1.1       misho    1751:     "", "", ""
                   1752:   },
1.1.1.3 ! misho    1753:   { "Hitachi Ultrastar 7K4000", // tested with Hitachi HUS724040ALE640/MJAOA3B0
        !          1754:     "Hitachi HUS7240(20|30|40)ALE640",
        !          1755:     "", "", ""
        !          1756:   },
1.1       misho    1757:   { "Toshiba 2.5\" HDD (10-20 GB)",
                   1758:     "TOSHIBA MK(101[67]GAP|15[67]GAP|20(1[678]GAP|(18|23)GAS))",
                   1759:     "", "", ""
                   1760:   },
                   1761:   { "Toshiba 2.5\" HDD (30-60 GB)",
                   1762:     "TOSHIBA MK((6034|4032)GSX|(6034|4032)GAX|(6026|4026|4019|3019)GAXB?|(6025|6021|4025|4021|4018|3025|3021|3018)GAS|(4036|3029)GACE?|(4018|3017)GAP)",
                   1763:     "", "", ""
                   1764:   },
                   1765:   { "Toshiba 2.5\" HDD (80 GB and above)",
                   1766:     "TOSHIBA MK(80(25GAS|26GAX|32GAX|32GSX)|10(31GAS|32GAX)|12(33GAS|34G[AS]X)|2035GSS)",
                   1767:     "", "", ""
                   1768:   },
1.1.1.3 ! misho    1769:   { "Toshiba 2.5\" HDD MK..37GSX", // tested with TOSHIBA MK1637GSX/DL032C
        !          1770:     "TOSHIBA MK(12|16)37GSX",
        !          1771:     "", "", ""
        !          1772:   },
1.1       misho    1773:   { "Toshiba 2.5\" HDD MK..50GACY", // tested with TOSHIBA MK8050GACY/TF105A
                   1774:     "TOSHIBA MK8050GACY",
                   1775:     "", "", ""
                   1776:   },
                   1777:   { "Toshiba 2.5\" HDD MK..52GSX",
                   1778:     "TOSHIBA MK(80|12|16|25|32)52GSX",
                   1779:     "", "", ""
                   1780:   },
1.1.1.3 ! misho    1781:   { "Toshiba 2.5\" HDD MK..55GSX", // tested with TOSHIBA MK5055GSX/FG001A, MK3255GSXF/FH115B
        !          1782:     "TOSHIBA MK(12|16|25|32|40|50)55GSXF?",
1.1.1.2   misho    1783:     "", "", ""
                   1784:   },
                   1785:   { "Toshiba 2.5\" HDD MK..56GSY", // tested with TOSHIBA MK2556GSYF/LJ001D
                   1786:     "TOSHIBA MK(16|25|32|50)56GSYF?",
                   1787:     "",
                   1788:     "",
                   1789:     "-v 9,minutes"
                   1790:   },
1.1.1.3 ! misho    1791:   { "Toshiba 2.5\" HDD MK..59GSXP (AF)",
1.1       misho    1792:     "TOSHIBA MK(32|50|64|75)59GSXP?",
                   1793:     "", "", ""
                   1794:   },
1.1.1.3 ! misho    1795:   { "Toshiba 2.5\" HDD MK..59GSM (AF)",
1.1       misho    1796:     "TOSHIBA MK(75|10)59GSM",
                   1797:     "", "", ""
                   1798:   },
1.1.1.2   misho    1799:   { "Toshiba 2.5\" HDD MK..61GSYN", // tested with TOSHIBA MK5061GSYN/MH000A
                   1800:     "TOSHIBA MK(16|25|32|50|64)61GSYN",
                   1801:     "", "", ""
                   1802:   },
1.1.1.3 ! misho    1803:   { "Toshiba 2.5\" HDD MK..65GSX", // tested with TOSHIBA MK5065GSX/GJ003A, MK3265GSXN/GH012H
        !          1804:     "TOSHIBA MK(16|25|32|50|64)65GSXN?",
1.1       misho    1805:     "", "", ""
                   1806:   },
                   1807:   { "Toshiba 2.5\" HDD MK..76GSX", // tested with TOSHIBA MK3276GSX/GS002D
                   1808:     "TOSHIBA MK(16|25|32|50|64)76GSX",
                   1809:     "",
                   1810:     "",
                   1811:     "-v 9,minutes"
                   1812:   },
1.1.1.3 ! misho    1813:   { "Toshiba 2.5\" HDD MQ01ABD...", // tested with TOSHIBA MQ01ABD100/AX001U
        !          1814:     "TOSHIBA MQ01ABD(025|032|050|064|075|100)",
        !          1815:     "", "", ""
        !          1816:   },
1.1.1.2   misho    1817:   { "Toshiba 3.5\" HDD MK.002TSKB", // tested with TOSHIBA MK1002TSKB/MT1A
                   1818:     "TOSHIBA MK(10|20)02TSKB",
                   1819:     "", "", ""
                   1820:   },
1.1       misho    1821:   { "Toshiba 1.8\" HDD",
                   1822:     "TOSHIBA MK[23468]00[4-9]GA[HL]",
                   1823:     "", "", ""
                   1824:   },
                   1825:   { "Toshiba 1.8\" HDD MK..29GSG",
                   1826:     "TOSHIBA MK(12|16|25)29GSG",
                   1827:     "", "", ""
                   1828:   },
                   1829:   { "", // TOSHIBA MK6022GAX
                   1830:     "TOSHIBA MK6022GAX",
                   1831:     "", "", ""
                   1832:   },
                   1833:   { "", // TOSHIBA MK6409MAV
                   1834:     "TOSHIBA MK6409MAV",
                   1835:     "", "", ""
                   1836:   },
                   1837:   { "Toshiba MKx019GAXB (SUN branded)",
                   1838:     "TOS MK[34]019GAXB SUN[34]0G",
                   1839:     "", "", ""
                   1840:   },
                   1841:   { "Seagate Momentus",
                   1842:     "ST9(20|28|40|48)11A",
                   1843:     "", "", ""
                   1844:   },
                   1845:   { "Seagate Momentus 42",
                   1846:     "ST9(2014|3015|4019)A",
                   1847:     "", "", ""
                   1848:   },
1.1.1.2   misho    1849:   { "Seagate Momentus 4200.2", // tested with ST960812A/3.05
                   1850:     "ST9(100822|808210|60812|50212|402113|30219)A",
1.1       misho    1851:     "", "", ""
                   1852:   },
                   1853:   { "Seagate Momentus 5400.2",
1.1.1.2   misho    1854:     "ST9(808211|6082[12]|408114|308110|120821|10082[34]|8823|6812|4813|3811)AS?",
1.1       misho    1855:     "", "", ""
                   1856:   },
                   1857:   { "Seagate Momentus 5400.3",
                   1858:     "ST9(4081[45]|6081[35]|8081[15]|100828|120822|160821)AS?",
                   1859:     "", "", ""
                   1860:   },
                   1861:   { "Seagate Momentus 5400.3 ED",
                   1862:     "ST9(4081[45]|6081[35]|8081[15]|100828|120822|160821)AB",
                   1863:     "", "", ""
                   1864:   },
                   1865:   { "Seagate Momentus 5400.4",
                   1866:     "ST9(120817|(160|200|250)827)AS",
                   1867:     "", "", ""
                   1868:   },
                   1869:   { "Seagate Momentus 5400.5",
                   1870:     "ST9((80|120|160)310|(250|320)320)AS",
                   1871:     "", "", ""
                   1872:   },
                   1873:   { "Seagate Momentus 5400.6",
                   1874:     "ST9(80313|160(301|314)|(12|25)0315|250317|(320|500)325|500327|640320)ASG?",
                   1875:     "", "", ""
                   1876:   },
1.1.1.2   misho    1877:   { "Seagate Momentus 5400.7",
                   1878:     "ST9(160316|(250|320)310|(500|640)320)AS",
                   1879:     "", "", ""
                   1880:   },
1.1.1.3 ! misho    1881:   { "Seagate Momentus 5400.7 (AF)", // tested with ST9640322AS/0001BSM2
1.1.1.2   misho    1882:       // (device reports 4KiB LPS with 1 sector offset)
                   1883:     "ST9(320312|400321|640322|750423)AS",
                   1884:     "", "", ""
                   1885:   },
1.1       misho    1886:   { "Seagate Momentus 5400 PSD", // Hybrid drives
                   1887:     "ST9(808212|(120|160)8220)AS",
                   1888:     "", "", ""
                   1889:   },
                   1890:   { "Seagate Momentus 7200.1",
                   1891:     "ST9(10021|80825|6023|4015)AS?",
                   1892:     "", "", ""
                   1893:   },
                   1894:   { "Seagate Momentus 7200.2",
                   1895:     "ST9(80813|100821|120823|160823|200420)ASG?",
                   1896:     "", "", ""
                   1897:   },
                   1898:   { "Seagate Momentus 7200.3",
                   1899:     "ST9((80|120|160)411|(250|320)421)ASG?",
                   1900:     "", "", ""
                   1901:   },
                   1902:   { "Seagate Momentus 7200.4",
                   1903:     "ST9(160412|250410|320423|500420)ASG?",
                   1904:     "", "", ""
                   1905:   },
                   1906:   { "Seagate Momentus 7200 FDE.2",
                   1907:     "ST9((160413|25041[12]|320426|50042[12])AS|(16041[489]|2504[16]4|32042[67]|500426)ASG)",
                   1908:     "", "", ""
                   1909:   },
1.1.1.3 ! misho    1910:   { "Seagate Momentus 7200.5", // tested with ST9750420AS/0001SDM5, ST9750420AS/0002SDM1
        !          1911:     "ST9(50042[34]|64042[012]|75042[02])ASG?",
        !          1912:     "", "", ""
        !          1913:   },
1.1.1.2   misho    1914:   { "Seagate Momentus XT", // fixed firmware
1.1       misho    1915:     "ST9(2505610|3205620|5005620)AS",
1.1.1.2   misho    1916:     "SD2[68]", // http://knowledge.seagate.com/articles/en_US/FAQ/215451en
                   1917:     "", ""
                   1918:   },
                   1919:   { "Seagate Momentus XT", // buggy firmware, tested with ST92505610AS/SD24
                   1920:     "ST9(2505610|3205620|5005620)AS",
                   1921:     "SD2[45]",
                   1922:     "These drives may corrupt large files,\n"
                   1923:     "AND THIS FIRMWARE VERSION IS AFFECTED,\n"
                   1924:     "see the following web pages for details:\n"
                   1925:     "http://knowledge.seagate.com/articles/en_US/FAQ/215451en\n"
                   1926:     "http://forums.seagate.com/t5/Momentus-XT-Momentus-Momentus/Momentus-XT-corrupting-large-files-Linux/td-p/109008\n"
                   1927:     "http://superuser.com/questions/313447/seagate-momentus-xt-corrupting-files-linux-and-mac",
                   1928:     ""
                   1929:   },
                   1930:   { "Seagate Momentus XT", // unknown firmware
                   1931:     "ST9(2505610|3205620|5005620)AS",
                   1932:     "",
                   1933:     "These drives may corrupt large files,\n"
                   1934:     "see the following web pages for details:\n"
                   1935:     "http://knowledge.seagate.com/articles/en_US/FAQ/215451en\n"
                   1936:     "http://forums.seagate.com/t5/Momentus-XT-Momentus-Momentus/Momentus-XT-corrupting-large-files-Linux/td-p/109008\n"
                   1937:     "http://superuser.com/questions/313447/seagate-momentus-xt-corrupting-files-linux-and-mac",
                   1938:     ""
1.1       misho    1939:   },
1.1.1.3 ! misho    1940:   { "Seagate Momentus XT (AF)", // tested with ST750LX003-1AC154/SM12
        !          1941:     "ST750LX003-.*",
        !          1942:     "", "", ""
        !          1943:   },
        !          1944:   { "Seagate Momentus Thin", // tested with ST320LT007-9ZV142/0004LVM1
        !          1945:     "ST(160|250|320)LT0(07|09|11|14)-.*",
        !          1946:     "", "", ""
        !          1947:   },
1.1       misho    1948:   { "Seagate Medalist 1010, 1720, 1721, 2120, 3230 and 4340",  // ATA2, with -t permissive
                   1949:     "ST3(1010|1720|1721|2120|3230|4340)A",
                   1950:     "", "", ""
                   1951:   },
                   1952:   { "Seagate Medalist 2110, 3221, 4321, 6531, and 8641",
                   1953:     "ST3(2110|3221|4321|6531|8641)A",
                   1954:     "", "", ""
                   1955:   },
1.1.1.2   misho    1956:   { "Seagate U4",
                   1957:     "ST3(2112|4311|6421|8421)A",
1.1       misho    1958:     "", "", ""
                   1959:   },
1.1.1.2   misho    1960:   { "Seagate U5",
                   1961:     "ST3(40823|30621|20413|15311|10211)A",
1.1       misho    1962:     "", "", ""
                   1963:   },
1.1.1.2   misho    1964:   { "Seagate U6",
1.1       misho    1965:     "ST3(8002|6002|4081|3061|2041)0A",
                   1966:     "", "", ""
                   1967:   },
1.1.1.2   misho    1968:   { "Seagate U7",
                   1969:     "ST3(30012|40012|60012|80022|120020)A",
1.1       misho    1970:     "", "", ""
                   1971:   },
1.1.1.2   misho    1972:   { "Seagate U8",
                   1973:     "ST3(4313|6811|8410|4313|13021|17221)A",
1.1       misho    1974:     "", "", ""
                   1975:   },
1.1.1.2   misho    1976:   { "Seagate U9", // tested with ST3160022ACE/9.51
                   1977:     "ST3(80012|120025|160022)A(CE)?",
1.1       misho    1978:     "", "", ""
                   1979:   },
                   1980:   { "Seagate U10",
                   1981:     "ST3(20423|15323|10212)A",
                   1982:     "", "", ""
                   1983:   },
1.1.1.2   misho    1984:   { "Seagate UX",
                   1985:     "ST3(10014A(CE)?|20014A)",
                   1986:     "", "", ""
                   1987:   },
1.1       misho    1988:   { "Seagate Barracuda ATA",
                   1989:     "ST3(2804|2724|2043|1362|1022|681)0A",
                   1990:     "", "", ""
                   1991:   },
                   1992:   { "Seagate Barracuda ATA II",
                   1993:     "ST3(3063|2042|1532|1021)0A",
                   1994:     "", "", ""
                   1995:   },
                   1996:   { "Seagate Barracuda ATA III",
                   1997:     "ST3(40824|30620|20414|15310|10215)A",
                   1998:     "", "", ""
                   1999:   },
                   2000:   { "Seagate Barracuda ATA IV",
                   2001:     "ST3(20011|30011|40016|60021|80021)A",
                   2002:     "", "", ""
                   2003:   },
                   2004:   { "Seagate Barracuda ATA V",
                   2005:     "ST3(12002(3A|4A|9A|3AS)|800(23A|15A|23AS)|60(015A|210A)|40017A)",
                   2006:     "", "", ""
                   2007:   },
                   2008:   { "Seagate Barracuda 5400.1",
                   2009:     "ST340015A",
                   2010:     "", "", ""
                   2011:   },
1.1.1.3 ! misho    2012:   { "Seagate Barracuda 7200.7 and 7200.7 Plus", // tested with "ST380819AS          39M3701 39M0171 IBM"/3.03
        !          2013:     "ST3(200021A|200822AS?|16002[13]AS?|12002[26]AS?|1[26]082[78]AS|8001[13]AS?|8081[79]AS|60014A|40111AS|40014AS?)( .* IBM)?",
1.1       misho    2014:     "", "", ""
                   2015:   },
                   2016:   { "Seagate Barracuda 7200.8",
                   2017:     "ST3(400[68]32|300[68]31|250[68]23|200826)AS?",
                   2018:     "", "", ""
                   2019:   },
                   2020:   { "Seagate Barracuda 7200.9",
                   2021:     "ST3(402111?|80[28]110?|120[28]1[0134]|160[28]1[012]|200827|250[68]24|300[68]22|(320|400)[68]33|500[68](32|41))AS?.*",
                   2022:     "", "", ""
                   2023:   },
                   2024:   { "Seagate Barracuda 7200.10",
                   2025:     "ST3((80|160)[28]15|200820|250[34]10|(250|300|320|400)[68]20|360320|500[68]30|750[68]40)AS?",
                   2026:     "", "", ""
                   2027:   },
                   2028:   { "Seagate Barracuda 7200.11", // unaffected firmware
                   2029:     "ST3(160813|320[68]13|500[368]20|640[36]23|640[35]30|750[36]30|1000(333|[36]40)|1500341)AS?",
1.1.1.2   misho    2030:     "CC.?.?", // http://knowledge.seagate.com/articles/en_US/FAQ/207957en
1.1       misho    2031:     "", ""
                   2032:   },
                   2033:   { "Seagate Barracuda 7200.11", // fixed firmware
                   2034:     "ST3(500[368]20|750[36]30|1000340)AS?",
1.1.1.2   misho    2035:     "SD1A", // http://knowledge.seagate.com/articles/en_US/FAQ/207951en
1.1       misho    2036:     "", ""
                   2037:   },
                   2038:   { "Seagate Barracuda 7200.11", // fixed firmware
                   2039:     "ST3(160813|320[68]13|640[36]23|1000333|1500341)AS?",
1.1.1.2   misho    2040:     "SD[12]B", // http://knowledge.seagate.com/articles/en_US/FAQ/207957en
1.1       misho    2041:     "", ""
                   2042:   },
                   2043:   { "Seagate Barracuda 7200.11", // buggy or fixed firmware
                   2044:     "ST3(500[368]20|640[35]30|750[36]30|1000340)AS?",
                   2045:     "(AD14|SD1[5-9]|SD81)",
                   2046:     "There are known problems with these drives,\n"
                   2047:     "THIS DRIVE MAY OR MAY NOT BE AFFECTED,\n"
                   2048:     "see the following web pages for details:\n"
1.1.1.2   misho    2049:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
                   2050:     "http://knowledge.seagate.com/articles/en_US/FAQ/207951en\n"
1.1       misho    2051:     "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632758",
                   2052:     ""
                   2053:   },
                   2054:   { "Seagate Barracuda 7200.11", // unknown firmware
                   2055:     "ST3(160813|320[68]13|500[368]20|640[36]23|640[35]30|750[36]30|1000(333|[36]40)|1500341)AS?",
                   2056:     "",
                   2057:     "There are known problems with these drives,\n"
                   2058:     "see the following Seagate web pages:\n"
1.1.1.2   misho    2059:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
                   2060:     "http://knowledge.seagate.com/articles/en_US/FAQ/207951en\n"
                   2061:     "http://knowledge.seagate.com/articles/en_US/FAQ/207957en",
1.1       misho    2062:     ""
                   2063:   },
1.1.1.3 ! misho    2064:   { "Seagate Barracuda 7200.12", // new firmware
        !          2065:     "ST3(160318|250318|320418|50041[08]|750528|1000528)AS",
        !          2066:     "CC4[9A-Z]",
        !          2067:     "", ""
        !          2068:   },
        !          2069:   { "Seagate Barracuda 7200.12", // unknown firmware
        !          2070:     "ST3(160318|250318|320418|50041[08]|750528|1000528)AS",
        !          2071:     "",
        !          2072:     "A firmware update for this drive may be available,\n"
        !          2073:     "see the following Seagate web pages:\n"
        !          2074:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
        !          2075:     "http://knowledge.seagate.com/articles/en_US/FAQ/213891en",
        !          2076:     ""
        !          2077:   },
        !          2078:   { "Seagate Barracuda 7200.12", // tested with ST3250312AS/JC45, ST31000524AS/JC45,
        !          2079:       // ST3500413AS/JC4B, ST3750525AS/JC4B
        !          2080:     "ST3(160318|25031[128]|320418|50041[038]|750(518|52[358])|100052[348])AS",
1.1       misho    2081:     "", "", ""
                   2082:   },
1.1.1.3 ! misho    2083:   { "Seagate Barracuda XT", // tested with ST32000641AS/CC13,
        !          2084:       // ST4000DX000-1C5160/CC42
        !          2085:     "ST(3(2000641|3000651)AS|4000DX000-.*)",
        !          2086:     "", "", ""
        !          2087:   },
        !          2088:   { "Seagate Barracuda 7200.14 (AF)", // new firmware, tested with
        !          2089:       // ST3000DM001-9YN166/CC4H, ST3000DM001-9YN166/CC9E
        !          2090:     "ST(1000|1500|2000|2500|3000)DM00[1-3]-.*",
        !          2091:     "CC(4[H-Z]|[5-9A-Z]..*)", // >= "CC4H"
        !          2092:     "",
        !          2093:     "-v 188,raw16 -v 240,msec24hour32" // tested with ST3000DM001-9YN166/CC4H
        !          2094:   },
        !          2095:   { "Seagate Barracuda 7200.14 (AF)", // old firmware, tested with
        !          2096:       // ST1000DM003-9YN162/CC46
        !          2097:     "ST(1000|1500|2000|2500|3000)DM00[1-3]-.*",
        !          2098:     "CC4[679CG]",
        !          2099:     "A firmware update for this drive is available,\n"
        !          2100:     "see the following Seagate web pages:\n"
        !          2101:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
        !          2102:     "http://knowledge.seagate.com/articles/en_US/FAQ/223651en",
        !          2103:     "-v 188,raw16 -v 240,msec24hour32"
        !          2104:   },
        !          2105:   { "Seagate Barracuda 7200.14 (AF)", // unknown firmware
        !          2106:     "ST(1000|1500|2000|2500|3000)DM00[1-3]-.*",
        !          2107:     "",
        !          2108:     "A firmware update for this drive may be available,\n"
        !          2109:     "see the following Seagate web pages:\n"
        !          2110:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
        !          2111:     "http://knowledge.seagate.com/articles/en_US/FAQ/223651en",
        !          2112:     "-v 188,raw16 -v 240,msec24hour32"
        !          2113:   },
        !          2114:   { "Seagate Barracuda 7200.14 (AF)", // < 1TB, tested with ST250DM000-1BC141
        !          2115:     "ST(250|320|500|750)DM00[0-3]-.*",
        !          2116:     "", "",
        !          2117:     "-v 188,raw16 -v 240,msec24hour32"
        !          2118:   },
        !          2119:   { "Seagate Desktop HDD.15", // tested with ST4000DM000-1CD168/CC43
        !          2120:     "ST4000DM000-.*",
        !          2121:     "", "",
        !          2122:     "-v 188,raw16 -v 240,msec24hour32"
        !          2123:   },
        !          2124:   { "Seagate Barracuda LP", // new firmware
        !          2125:     "ST3(500412|1000520|1500541|2000542)AS",
        !          2126:     "CC3[5-9A-Z]",
        !          2127:     "",
        !          2128:     "" // -F xerrorlba ?
        !          2129:   },
        !          2130:   { "Seagate Barracuda LP", // unknown firmware
        !          2131:     "ST3(500412|1000520|1500541|2000542)AS",
        !          2132:     "",
        !          2133:     "A firmware update for this drive may be available,\n"
        !          2134:     "see the following Seagate web pages:\n"
        !          2135:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
        !          2136:     "http://knowledge.seagate.com/articles/en_US/FAQ/213915en",
        !          2137:     "-F xerrorlba" // tested with ST31000520AS/CC32
        !          2138:   },
        !          2139:   { "Seagate Barracuda Green (AF)", // new firmware
        !          2140:     "ST((10|15|20)00DL00[123])-.*",
        !          2141:     "CC3[2-9A-Z]",
        !          2142:     "", ""
        !          2143:   },
        !          2144:   { "Seagate Barracuda Green (AF)", // unknown firmware
        !          2145:     "ST((10|15|20)00DL00[123])-.*",
        !          2146:     "",
        !          2147:     "A firmware update for this drive may be available,\n"
        !          2148:     "see the following Seagate web pages:\n"
        !          2149:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
        !          2150:     "http://knowledge.seagate.com/articles/en_US/FAQ/218171en",
        !          2151:     ""
        !          2152:   },
1.1       misho    2153:   { "Seagate Barracuda ES",
                   2154:     "ST3(250[68]2|32062|40062|50063|75064)0NS",
                   2155:     "", "", ""
                   2156:   },
                   2157:   { "Seagate Barracuda ES.2", // fixed firmware
                   2158:     "ST3(25031|50032|75033|100034)0NS",
1.1.1.2   misho    2159:     "SN[01]6|"         // http://knowledge.seagate.com/articles/en_US/FAQ/207963en
1.1       misho    2160:     "MA(0[^7]|[^0].)", // http://dellfirmware.seagate.com/dell_firmware/DellFirmwareRequest.jsp
1.1.1.3 ! misho    2161:     "",
        !          2162:     "-F xerrorlba" // tested with ST31000340NS/SN06
1.1       misho    2163:   },
                   2164:   { "Seagate Barracuda ES.2", // buggy firmware (Dell)
                   2165:     "ST3(25031|50032|75033|100034)0NS",
                   2166:     "MA07",
                   2167:     "There are known problems with these drives,\n"
                   2168:     "AND THIS FIRMWARE VERSION IS AFFECTED,\n"
                   2169:     "see the following Seagate web page:\n"
                   2170:     "http://dellfirmware.seagate.com/dell_firmware/DellFirmwareRequest.jsp",
                   2171:     ""
                   2172:   },
                   2173:   { "Seagate Barracuda ES.2", // unknown firmware
                   2174:     "ST3(25031|50032|75033|100034)0NS",
                   2175:     "",
                   2176:     "There are known problems with these drives,\n"
                   2177:     "see the following Seagate web pages:\n"
1.1.1.2   misho    2178:     "http://knowledge.seagate.com/articles/en_US/FAQ/207931en\n"
                   2179:     "http://knowledge.seagate.com/articles/en_US/FAQ/207963en",
1.1       misho    2180:     ""
                   2181:   },
                   2182:   { "Seagate Constellation (SATA)", // tested with ST9500530NS/SN03
                   2183:     "ST9(160511|500530)NS",
                   2184:     "", "", ""
                   2185:   },
                   2186:   { "Seagate Constellation ES (SATA)", // tested with ST31000524NS/SN11
                   2187:     "ST3(50051|100052|200064)4NS",
                   2188:     "", "", ""
                   2189:   },
1.1.1.2   misho    2190:   { "Seagate Constellation ES (SATA 6Gb/s)", // tested with ST1000NM0011/SN02
                   2191:     "ST(5|10|20)00NM0011",
                   2192:     "", "", ""
                   2193:   },
                   2194:   { "Seagate Constellation ES.2 (SATA 6Gb/s)", // tested with ST33000650NS
                   2195:     "ST3300065[012]NS",
                   2196:     "", "", ""
                   2197:   },
1.1       misho    2198:   { "Seagate Pipeline HD 5900.1",
                   2199:     "ST3(160310|320[34]10|500(321|422))CS",
                   2200:     "", "", ""
                   2201:   },
                   2202:   { "Seagate Pipeline HD 5900.2", // tested with ST31000322CS/SC13
                   2203:     "ST3(160316|250[34]12|320(311|413)|500(312|414)|1000(322|424))CS",
                   2204:     "", "", ""
                   2205:   },
                   2206:   { "Seagate Medalist 17240, 13030, 10231, 8420, and 4310",
                   2207:     "ST3(17240|13030|10231|8420|4310)A",
                   2208:     "", "", ""
                   2209:   },
                   2210:   { "Seagate Medalist 17242, 13032, 10232, 8422, and 4312",
                   2211:     "ST3(1724|1303|1023|842|431)2A",
                   2212:     "", "", ""
                   2213:   },
                   2214:   { "Seagate NL35",
                   2215:     "ST3(250623|250823|400632|400832|250824|250624|400633|400833|500641|500841)NS",
                   2216:     "", "", ""
                   2217:   },
                   2218:   { "Seagate SV35.2",
1.1.1.2   misho    2219:     "ST3(160815|250820|320620|500630|750640)[AS]V",
                   2220:     "", "", ""
                   2221:   },
                   2222:   { "Seagate SV35.5", // tested with ST31000525SV/CV12
                   2223:     "ST3(250311|500410|1000525)SV",
                   2224:     "", "", ""
                   2225:   },
                   2226:   { "Seagate SV35", // tested with ST2000VX000-9YW164/CV12
                   2227:     "ST([123]000VX00[20]|31000526SV|3500411SV)(-.*)?",
                   2228:     "", "", ""
                   2229:   },
                   2230:   { "Seagate DB35", // tested with ST3250823ACE/3.03
                   2231:     "ST3(200826|250823|300831|400832)ACE",
                   2232:     "", "", ""
                   2233:   },
                   2234:   { "Seagate DB35.2", // tested with ST3160212SCE/3.ACB
                   2235:     "ST3(802110|120213|160212|200827|250824|300822|400833|500841)[AS]CE",
1.1       misho    2236:     "", "", ""
                   2237:   },
                   2238:   { "Seagate DB35.3",
1.1.1.2   misho    2239:     "ST3(750640SCE|((80|160)215|(250|320|400)820|500830|750840)[AS]CE)",
                   2240:     "", "", ""
                   2241:   },
1.1.1.3 ! misho    2242:   { "Seagate LD25.2", // tested with ST940210AS/3.ALC
        !          2243:     "ST9(40|80)210AS?",
        !          2244:     "", "", ""
        !          2245:   },
1.1.1.2   misho    2246:   { "Seagate ST1.2 CompactFlash", // tested with ST68022CF/3.01
                   2247:     "ST6[468]022CF",
1.1       misho    2248:     "", "", ""
                   2249:   },
                   2250:   { "Western Digital Protege",
                   2251:   /* Western Digital drives with this comment all appear to use Attribute 9 in
                   2252:    * a  non-standard manner.  These entries may need to be updated when it
                   2253:    * is understood exactly how Attribute 9 should be interpreted.
                   2254:    * UPDATE: this is probably explained by the WD firmware bug described in the
                   2255:    * smartmontools FAQ */
                   2256:     "WDC WD([2468]00E|1[26]00A)B-.*",
                   2257:     "", "", ""
                   2258:   },
                   2259:   { "Western Digital Caviar",
                   2260:   /* Western Digital drives with this comment all appear to use Attribute 9 in
                   2261:    * a  non-standard manner.  These entries may need to be updated when it
                   2262:    * is understood exactly how Attribute 9 should be interpreted.
                   2263:    * UPDATE: this is probably explained by the WD firmware bug described in the
                   2264:    * smartmontools FAQ */
                   2265:     "WDC WD(2|3|4|6|8|10|12|16|18|20|25)00BB-.*",
                   2266:     "", "", ""
                   2267:   },
                   2268:   { "Western Digital Caviar WDxxxAB",
                   2269:   /* Western Digital drives with this comment all appear to use Attribute 9 in
                   2270:    * a  non-standard manner.  These entries may need to be updated when it
                   2271:    * is understood exactly how Attribute 9 should be interpreted.
                   2272:    * UPDATE: this is probably explained by the WD firmware bug described in the
                   2273:    * smartmontools FAQ */
                   2274:     "WDC WD(3|4|6|8|25)00AB-.*",
                   2275:     "", "", ""
                   2276:   },
                   2277:   { "Western Digital Caviar WDxxxAA",
                   2278:   /* Western Digital drives with this comment all appear to use Attribute 9 in
                   2279:    * a  non-standard manner.  These entries may need to be updated when it
                   2280:    * is understood exactly how Attribute 9 should be interpreted.
                   2281:    * UPDATE: this is probably explained by the WD firmware bug described in the
                   2282:    * smartmontools FAQ */
                   2283:     "WDC WD...?AA(-.*)?",
                   2284:     "", "", ""
                   2285:   },
                   2286:   { "Western Digital Caviar WDxxxBA",
                   2287:   /* Western Digital drives with this comment all appear to use Attribute 9 in
                   2288:    * a  non-standard manner.  These entries may need to be updated when it
                   2289:    * is understood exactly how Attribute 9 should be interpreted.
                   2290:    * UPDATE: this is probably explained by the WD firmware bug described in the
                   2291:    * smartmontools FAQ */
                   2292:     "WDC WD...BA",
                   2293:     "", "", ""
                   2294:   },
                   2295:   { "Western Digital Caviar AC", // add only 5400rpm/7200rpm (ata33 and faster)
                   2296:     "WDC AC((116|121|125|225|132|232)|([1-4][4-9][0-9])|([1-4][0-9][0-9][0-9]))00[A-Z]?.*",
                   2297:     "", "", ""
                   2298:   },
                   2299:   { "Western Digital Caviar SE",
                   2300:   /* Western Digital drives with this comment all appear to use Attribute 9 in
                   2301:    * a  non-standard manner.  These entries may need to be updated when it
                   2302:    * is understood exactly how Attribute 9 should be interpreted.
                   2303:    * UPDATE: this is probably explained by the WD firmware bug described in the
                   2304:    * smartmontools FAQ
                   2305:    * UPDATE 2: this does not apply to more recent models, at least WD3200AAJB */
                   2306:     "WDC WD(4|6|8|10|12|16|18|20|25|30|32|40|50)00(JB|PB)-.*",
                   2307:     "", "", ""
                   2308:   },
                   2309:   { "Western Digital Caviar Blue EIDE",  // WD Caviar SE EIDE
                   2310:     /* not completely accurate: at least also WD800JB, WD(4|8|20|25)00BB sold as Caviar Blue */
                   2311:     "WDC WD(16|25|32|40|50)00AAJB-.*",
                   2312:     "", "", ""
                   2313:   },
                   2314:   { "Western Digital Caviar Blue EIDE",  // WD Caviar SE16 EIDE
                   2315:     "WDC WD(25|32|40|50)00AAKB-.*",
                   2316:     "", "", ""
                   2317:   },
                   2318:   { "Western Digital RE EIDE",
                   2319:     "WDC WD(12|16|25|32)00SB-.*",
                   2320:     "", "", ""
                   2321:   },
                   2322:   { "Western Digital Caviar Serial ATA",
                   2323:     "WDC WD(4|8|20|32)00BD-.*",
                   2324:     "", "", ""
                   2325:   },
1.1.1.2   misho    2326:   { "Western Digital Caviar SE Serial ATA", // tested with WDC WD3000JD-98KLB0/08.05J08
                   2327:     "WDC WD(4|8|12|16|20|25|30|32|40)00(JD|KD|PD)-.*",
1.1       misho    2328:     "", "", ""
                   2329:   },
                   2330:   { "Western Digital Caviar SE Serial ATA",
                   2331:     "WDC WD(8|12|16|20|25|30|32|40|50)00JS-.*",
                   2332:     "", "", ""
                   2333:   },
                   2334:   { "Western Digital Caviar SE16 Serial ATA",
                   2335:     "WDC WD(16|20|25|32|40|50|75)00KS-.*",
                   2336:     "", "", ""
                   2337:   },
                   2338:   { "Western Digital Caviar Blue Serial ATA",  // WD Caviar SE Serial ATA
                   2339:     /* not completely accurate: at least also WD800BD, (4|8)00JD sold as Caviar Blue */
                   2340:     "WDC WD((8|12|16|25|32)00AABS|(8|12|16|25|32|40|50)00AAJS)-.*",
                   2341:     "", "", ""
                   2342:   },
                   2343:   { "Western Digital Caviar Blue Serial ATA",  // WD Caviar SE16 Serial ATA
                   2344:     "WDC WD((16|20|25|32|40|50|64|75)00AAKS|10EALS)-.*",
                   2345:     "", "", ""
                   2346:   },
                   2347:   { "Western Digital Caviar Blue Serial ATA",  // SATA 3.0 variants
                   2348:     "WDC WD((25|32|50)00AAKX|7500AALX|10EALX)-.*",
                   2349:     "", "", ""
                   2350:   },
                   2351:   { "Western Digital RE Serial ATA",
                   2352:     "WDC WD(12|16|25|32)00(SD|YD|YS)-.*",
                   2353:     "", "", ""
                   2354:   },
                   2355:   { "Western Digital RE2 Serial ATA",
                   2356:     "WDC WD((40|50|75)00(YR|YS|AYYS)|(16|32|40|50)0[01]ABYS)-.*",
                   2357:     "", "", ""
                   2358:   },
                   2359:   { "Western Digital RE2-GP",
                   2360:     "WDC WD(5000AB|7500AY|1000FY)PS-.*",
                   2361:     "", "", ""
                   2362:   },
1.1.1.2   misho    2363:   { "Western Digital RE3 Serial ATA", // tested with WDC WD7502ABYS-02A6B0/03.00C06
                   2364:     "WDC WD((25|32|50|75)02A|(75|10)02F)BYS-.*",
1.1       misho    2365:     "", "", ""
                   2366:   },
1.1.1.3 ! misho    2367:   { "Western Digital RE4", // tested with WDC WD2003FYYS-18W0B0/01.01D02
1.1       misho    2368:     "WDC WD((((25|50)03A|1003F)BYX)|((15|20)03FYYS))-.*",
                   2369:     "", "", ""
                   2370:   },
                   2371:   { "Western Digital RE4-GP", // tested with WDC WD2002FYPS-02W3B0/04.01G01
                   2372:     "WDC WD2002FYPS-.*",
                   2373:     "", "", ""
                   2374:   },
1.1.1.3 ! misho    2375:   { "Western Digital RE4 (SATA 6Gb/s)", // tested with WDC WD2000FYYZ-01UL1B0/01.01K01
        !          2376:     "WDC WD(20|30|40)00FYYZ-.*",
        !          2377:     "", "", ""
        !          2378:   },
1.1       misho    2379:   { "Western Digital Caviar Green",
                   2380:     "WDC WD((50|64|75)00AA(C|V)S|(50|64|75)00AADS|10EA(C|V)S|(10|15|20)EADS)-.*",
1.1.1.3 ! misho    2381:     "",
        !          2382:     "",
        !          2383:     "-F xerrorlba" // tested with WDC WD7500AADS-00M2B0/01.00A01
1.1       misho    2384:   },
1.1.1.3 ! misho    2385:   { "Western Digital Caviar Green (AF)",
1.1       misho    2386:     "WDC WD(((64|75|80)00AA|(10|15|20)EA|(25|30)EZ)R|20EAC)S-.*",
                   2387:     "", "", ""
                   2388:   },
1.1.1.3 ! misho    2389:   { "Western Digital Caviar Green (AF, SATA 6Gb/s)", // tested with
        !          2390:       // WDC WD10EZRX-00A8LB0/01.01A01, WDC WD20EZRX-00DC0B0/80.00A80,
        !          2391:       // WDC WD30EZRX-00MMMB0/80.00A80
        !          2392:     "WDC WD(7500AA|(10|15|20)EA|(10|20|25|30)EZ)RX-.*",
1.1       misho    2393:     "", "", ""
                   2394:   },
                   2395:   { "Western Digital Caviar Black",
                   2396:     "WDC WD((500|640|750)1AAL|1001FA[EL]|2001FAS)S-.*",
                   2397:     "", "", ""
                   2398:   },
1.1.1.3 ! misho    2399:   { "Western Digital Caviar Black",  // SATA 6 Gb/s variants, tested with
        !          2400:       //  WDC WD4001FAEX-00MJRA0/01.01L01
        !          2401:     "WDC WD(5002AAL|(64|75)02AAE|((10|15|20)02|4001)FAE)X-.*",
        !          2402:     "", "", ""
        !          2403:   },
        !          2404:   { "Western Digital Caviar Black (AF)", // tested with WDC WD5003AZEX-00RKKA0/80.00A80
        !          2405:     "WDC WD(5003AZE)X-.*",
1.1       misho    2406:     "", "", ""
                   2407:   },
                   2408:   { "Western Digital AV ATA", // tested with WDC WD3200AVJB-63J5A0/01.03E01
                   2409:     "WDC WD(8|16|25|32|50)00AV[BJ]B-.*",
                   2410:     "", "", ""
                   2411:   },
                   2412:   { "Western Digital AV SATA",
                   2413:     "WDC WD(16|25|32)00AVJS-.*",
                   2414:     "", "", ""
                   2415:   },
                   2416:   { "Western Digital AV-GP",
1.1.1.2   misho    2417:     "WDC WD((16|25|32|50|64|75)00AV[CDV]S|(10|15|20)EV[CDV]S)-.*",
                   2418:     "", "", ""
                   2419:   },
1.1.1.3 ! misho    2420:   { "Western Digital AV-GP (AF)", // tested with WDC WD10EURS-630AB1/80.00A80, WDC WD10EUCX-63YZ1Y0/51.0AB52
1.1.1.2   misho    2421:     "WDC WD(7500AURS|10EU[CR]X|(10|15|20|25|30)EURS)-.*",
1.1       misho    2422:     "", "", ""
                   2423:   },
                   2424:   { "Western Digital AV-25",
                   2425:     "WDC WD((16|25|32|50)00BUD|5000BUC)T-.*",
                   2426:     "", "", ""
                   2427:   },
                   2428:   { "Western Digital Raptor",
                   2429:     "WDC WD((360|740|800)GD|(360|740|800|1500)ADF[DS])-.*",
                   2430:     "", "", ""
                   2431:   },
                   2432:   { "Western Digital Raptor X",
                   2433:     "WDC WD1500AHFD-.*",
                   2434:     "", "", ""
                   2435:   },
                   2436:   { "Western Digital VelociRaptor", // tested with WDC WD1500HLHX-01JJPV0/04.05G04
                   2437:     "WDC WD(((800H|(1500|3000)[BH]|1600H|3000G)LFS)|((1500|3000|4500|6000)[BH]LHX))-.*",
                   2438:     "", "", ""
                   2439:   },
1.1.1.3 ! misho    2440:   { "Western Digital VelociRaptor (AF)", // tested with WDC WD1000DHTZ-04N21V0/04.06A00
        !          2441:     "WDC WD(2500H|5000H|1000D)HTZ-.*",
        !          2442:     "", "", ""
        !          2443:   },
1.1       misho    2444:   { "Western Digital Scorpio EIDE",
                   2445:     "WDC WD(4|6|8|10|12|16)00(UE|VE)-.*",
                   2446:     "", "", ""
                   2447:   },
                   2448:   { "Western Digital Scorpio Blue EIDE", // tested with WDC WD3200BEVE-00A0HT0/11.01A11
                   2449:     "WDC WD(4|6|8|10|12|16|25|32)00BEVE-.*",
                   2450:     "", "", ""
                   2451:   },
                   2452:   { "Western Digital Scorpio Serial ATA",
                   2453:     "WDC WD(4|6|8|10|12|16|25)00BEAS-.*",
                   2454:     "", "", ""
                   2455:   },
                   2456:   { "Western Digital Scorpio Blue Serial ATA",
                   2457:     "WDC WD((4|6|8|10|12|16|25)00BEVS|(8|12|16|25|32|40|50|64)00BEVT|7500KEVT|10TEVT)-.*",
                   2458:     "", "", ""
                   2459:   },
1.1.1.3 ! misho    2460:   { "Western Digital Scorpio Blue Serial ATA (AF)", // tested with
1.1       misho    2461:       // WDC WD10JPVT-00A1YT0/01.01A01
                   2462:     "WDC WD((16|25|32|50|64|75)00BPVT|10[JT]PVT)-.*",
                   2463:     "", "", ""
                   2464:   },
1.1.1.2   misho    2465:   { "Western Digital Scorpio Black", // tested with WDC WD5000BEKT-00KA9T0/01.01A01
                   2466:     "WDC WD(8|12|16|25|32|50)00B[EJ]KT-.*",
                   2467:     "", "", ""
                   2468:   },
1.1.1.3 ! misho    2469:   { "Western Digital Scorpio Black (AF)",
1.1.1.2   misho    2470:     "WDC WD(50|75)00BPKT-.*",
1.1       misho    2471:     "", "", ""
                   2472:   },
1.1.1.3 ! misho    2473:   { "Western Digital Red (AF)", // tested with WDC WD10EFRX-68JCSN0/01.01A01
        !          2474:     "WDC WD(10|20|30)EFRX-.*",
1.1       misho    2475:     "", "", ""
                   2476:   },
1.1.1.3 ! misho    2477:   { "Western Digital My Passport (USB)", // tested with WDC WD5000BMVW-11AMCS0/01.01A01
        !          2478:     "WDC WD(25|32|40|50)00BMV[UVW]-.*",  // *W-* = USB 3.0
1.1       misho    2479:     "", "", ""
                   2480:   },
1.1.1.3 ! misho    2481:   { "Western Digital My Passport (USB, AF)", // tested with
        !          2482:       // WDC WD5000KMVV-11TK7S1/01.01A01, WDC WD10TMVW-11ZSMS5/01.01A01,
        !          2483:       // WDC WD10JMVW-11S5XS1/01.01A01, WDC WD20NMVW-11W68S0/01.01A01
        !          2484:     "WDC WD(5000[LK]|7500K|10[JT]|20N)MV[VW]-.*", // *W-* = USB 3.0
1.1       misho    2485:     "", "", ""
                   2486:   },
                   2487:   { "Quantum Bigfoot", // tested with TS10.0A/A21.0G00, TS12.7A/A21.0F00
                   2488:     "QUANTUM BIGFOOT TS(10\\.0|12\\.7)A",
                   2489:     "", "", ""
                   2490:   },
                   2491:   { "Quantum Fireball lct15",
                   2492:     "QUANTUM FIREBALLlct15 ([123]0|22)",
                   2493:     "", "", ""
                   2494:   },
                   2495:   { "Quantum Fireball lct20",
                   2496:     "QUANTUM FIREBALLlct20 [1234]0",
                   2497:     "", "", ""
                   2498:   },
                   2499:   { "Quantum Fireball CX",
                   2500:     "QUANTUM FIREBALL CX10.2A",
                   2501:     "", "", ""
                   2502:   },
                   2503:   { "Quantum Fireball CR",
                   2504:     "QUANTUM FIREBALL CR(4.3|6.4|8.4|13.0)A",
                   2505:     "", "", ""
                   2506:   },
1.1.1.3 ! misho    2507:   { "Quantum Fireball EX", // tested with QUANTUM FIREBALL EX10.2A/A0A.0D00
        !          2508:     "QUANTUM FIREBALL EX(3\\.2|6\\.4|10\\.2)A",
1.1       misho    2509:     "", "", ""
                   2510:   },
                   2511:   { "Quantum Fireball ST",
                   2512:     "QUANTUM FIREBALL ST(3.2|4.3|4300)A",
                   2513:     "", "", ""
                   2514:   },
                   2515:   { "Quantum Fireball SE",
                   2516:     "QUANTUM FIREBALL SE4.3A",
                   2517:     "", "", ""
                   2518:   },
                   2519:   { "Quantum Fireball Plus LM",
                   2520:     "QUANTUM FIREBALLP LM(10.2|15|20.[45]|30)",
                   2521:     "", "", ""
                   2522:   },
                   2523:   { "Quantum Fireball Plus AS",
                   2524:     "QUANTUM FIREBALLP AS(10.2|20.5|30.0|40.0|60.0)",
                   2525:     "", "", ""
                   2526:   },
                   2527:   { "Quantum Fireball Plus KX",
                   2528:     "QUANTUM FIREBALLP KX27.3",
                   2529:     "", "", ""
                   2530:   },
                   2531:   { "Quantum Fireball Plus KA",
                   2532:     "QUANTUM FIREBALLP KA(9|10).1",
                   2533:     "", "", ""
                   2534:   },
                   2535: 
                   2536:   ////////////////////////////////////////////////////
                   2537:   // USB ID entries
                   2538:   ////////////////////////////////////////////////////
                   2539: 
1.1.1.2   misho    2540:   // Hewlett-Packard
                   2541:   { "USB: HP Desktop HD BD07; ", // 2TB
                   2542:     "0x03f0:0xbd07",
                   2543:     "",
                   2544:     "",
                   2545:     "-d sat"
                   2546:   },
1.1       misho    2547:   // ALi
                   2548:   { "USB: ; ALi M5621", // USB->PATA
                   2549:     "0x0402:0x5621",
                   2550:     "",
                   2551:     "",
                   2552:     "" // unsupported
                   2553:   },
                   2554:   // VIA
                   2555:   { "USB: Connectland BE-USB2-35BP-LCM; VIA VT6204",
                   2556:     "0x040d:0x6204",
                   2557:     "",
                   2558:     "",
                   2559:     "" // unsupported
                   2560:   },
                   2561:   // Buffalo / Melco
                   2562:   { "USB: Buffalo JustStore Portable HD-PVU2; ",
                   2563:     "0x0411:0x0181",
                   2564:     "",
                   2565:     "",
                   2566:     "-d sat"
                   2567:   },
1.1.1.2   misho    2568:   { "USB: Buffalo MiniStation Stealth HD-PCTU2; ",
                   2569:     "0x0411:0x01d9",
                   2570:     "", // 0x0108
                   2571:     "",
                   2572:     "-d sat"
                   2573:   },
                   2574:   // LG Electronics
                   2575:   { "USB: LG Mini HXD5; JMicron",
                   2576:     "0x043e:0x70f1",
                   2577:     "", // 0x0100
                   2578:     "",
                   2579:     "-d usbjmicron"
                   2580:   },
                   2581:   // Philips
                   2582:   { "USB: Philips; ", // SDE3273FC/97 2.5" SATA HDD enclosure
                   2583:     "0x0471:0x2021",
                   2584:     "", // 0x0103
                   2585:     "",
                   2586:     "-d sat"
                   2587:   },
1.1       misho    2588:   // Toshiba
1.1.1.2   misho    2589:   { "USB: Toshiba Canvio 500GB; SunPlus",
1.1       misho    2590:     "0x0480:0xa004",
                   2591:     "",
                   2592:     "",
                   2593:     "-d usbsunplus"
                   2594:   },
1.1.1.2   misho    2595:   { "USB: Toshiba Canvio Basics; ",
                   2596:     "0x0480:0xa006",
                   2597:     "", // 0x0001
                   2598:     "",
                   2599:     "-d sat"
                   2600:   },
1.1       misho    2601:   // Cypress
                   2602:   { "USB: ; Cypress CY7C68300A (AT2)",
                   2603:     "0x04b4:0x6830",
                   2604:     "0x0001",
                   2605:     "",
                   2606:     "" // unsupported
                   2607:   },
                   2608:   { "USB: ; Cypress CY7C68300B/C (AT2LP)",
                   2609:     "0x04b4:0x6830",
                   2610:     "0x0240",
                   2611:     "",
                   2612:     "-d usbcypress"
                   2613:   },
1.1.1.3 ! misho    2614:   // Fujitsu
        !          2615:   { "USB: Fujitsu/Zalman ZM-VE300; ", // USB 3.0
        !          2616:     "0x04c5:0x2028",
        !          2617:     "", // 0x0001
        !          2618:     "",
        !          2619:     "-d sat"
        !          2620:   },
1.1       misho    2621:   // Myson Century
                   2622:   { "USB: ; Myson Century CS8818",
                   2623:     "0x04cf:0x8818",
                   2624:     "", // 0xb007
                   2625:     "",
                   2626:     "" // unsupported
                   2627:   },
                   2628:   // Samsung
                   2629:   { "USB: Samsung S2 Portable; JMicron",
1.1.1.2   misho    2630:     "0x04e8:0x1f0[568]",
1.1       misho    2631:     "",
                   2632:     "",
                   2633:     "-d usbjmicron"
                   2634:   },
                   2635:   { "USB: Samsung S1 Portable; JMicron",
                   2636:     "0x04e8:0x2f03",
                   2637:     "",
                   2638:     "",
                   2639:     "-d usbjmicron"
                   2640:   },
                   2641:   { "USB: Samsung Story Station; ",
1.1.1.2   misho    2642:     "0x04e8:0x5f0[56]",
1.1       misho    2643:     "",
                   2644:     "",
                   2645:     "-d sat"
                   2646:   },
1.1.1.2   misho    2647:   { "USB: Samsung G2 Portable; JMicron",
                   2648:     "0x04e8:0x6032",
                   2649:     "",
                   2650:     "",
                   2651:     "-d usbjmicron"
                   2652:   },
1.1       misho    2653:   { "USB: Samsung Story Station 3.0; ",
                   2654:     "0x04e8:0x6052",
                   2655:     "",
                   2656:     "",
                   2657:     "-d sat"
                   2658:   },
1.1.1.2   misho    2659:   { "USB: Samsung Story Station 3.0; ",
                   2660:     "0x04e8:0x6054",
1.1       misho    2661:     "",
                   2662:     "",
1.1.1.2   misho    2663:     "-d sat"
1.1       misho    2664:   },
1.1.1.2   misho    2665:   { "USB: Samsung M2 Portable 3.0; ",
                   2666:     "0x04e8:0x60c5",
1.1       misho    2667:     "",
                   2668:     "",
                   2669:     "-d sat"
                   2670:   },
1.1.1.3 ! misho    2671:   { "USB: Samsung M3 Portable USB 3.0; ", // 1TB
        !          2672:     "0x04e8:0x61b6",
        !          2673:     "", // 0x0e00
        !          2674:     "",
        !          2675:     "-d sat"
        !          2676:   },
1.1       misho    2677:   // Sunplus
                   2678:   { "USB: ; SunPlus",
                   2679:     "0x04fc:0x0c05",
                   2680:     "",
                   2681:     "",
                   2682:     "-d usbsunplus"
                   2683:   },
                   2684:   { "USB: ; SunPlus SPDIF215",
                   2685:     "0x04fc:0x0c15",
                   2686:     "", // 0xf615
                   2687:     "",
                   2688:     "-d usbsunplus"
                   2689:   },
                   2690:   { "USB: ; SunPlus SPDIF225", // USB+SATA->SATA
                   2691:     "0x04fc:0x0c25",
                   2692:     "", // 0x0103
                   2693:     "",
                   2694:     "-d usbsunplus"
                   2695:   },
                   2696:   // Iomega
1.1.1.2   misho    2697:   { "USB: Iomega Prestige Desktop USB 3.0; ",
                   2698:     "0x059b:0x0070",
                   2699:     "", // 0x0004
                   2700:     "",
                   2701:     "-d sat" // ATA output registers missing
                   2702:   },
1.1       misho    2703:   { "USB: Iomega LPHD080-0; ",
                   2704:     "0x059b:0x0272",
                   2705:     "",
                   2706:     "",
                   2707:     "-d usbcypress"
                   2708:   },
                   2709:   { "USB: Iomega MDHD500-U; ",
                   2710:     "0x059b:0x0275",
                   2711:     "", // 0x0001
                   2712:     "",
                   2713:     "" // unsupported
                   2714:   },
                   2715:   { "USB: Iomega MDHD-UE; ",
                   2716:     "0x059b:0x0277",
                   2717:     "",
                   2718:     "",
                   2719:     "-d usbjmicron"
                   2720:   },
                   2721:   { "USB: Iomega LDHD-UP; Sunplus",
                   2722:     "0x059b:0x0370",
                   2723:     "",
                   2724:     "",
                   2725:     "-d usbsunplus"
                   2726:   },
1.1.1.2   misho    2727:   { "USB: Iomega GDHDU2; JMicron",
                   2728:     "0x059b:0x0475",
                   2729:     "", // 0x0100
                   2730:     "",
                   2731:     "-d usbjmicron"
                   2732:   },
1.1       misho    2733:   // LaCie
                   2734:   { "USB: LaCie hard disk (FA Porsche design);",
                   2735:     "0x059f:0x0651",
                   2736:     "",
                   2737:     "",
                   2738:     "" // unsupported
                   2739:   },
                   2740:   { "USB: LaCie hard disk; JMicron",
                   2741:     "0x059f:0x0951",
                   2742:     "",
                   2743:     "",
                   2744:     "-d usbjmicron"
                   2745:   },
                   2746:   { "USB: LaCie hard disk (Neil Poulton design);",
                   2747:     "0x059f:0x1018",
                   2748:     "",
                   2749:     "",
                   2750:     "-d sat"
                   2751:   },
                   2752:   { "USB: LaCie Desktop Hard Drive; JMicron",
                   2753:     "0x059f:0x1019",
                   2754:     "",
                   2755:     "",
                   2756:     "-d usbjmicron"
                   2757:   },
                   2758:   { "USB: LaCie Rugged Hard Drive; JMicron",
                   2759:     "0x059f:0x101d",
                   2760:     "", // 0x0001
                   2761:     "",
                   2762:     "-d usbjmicron,x"
                   2763:   },
                   2764:   { "USB: LaCie Little Disk USB2; JMicron",
                   2765:     "0x059f:0x1021",
                   2766:     "",
                   2767:     "",
                   2768:     "-d usbjmicron"
                   2769:   },
                   2770:   { "USB: LaCie hard disk; ",
                   2771:     "0x059f:0x1029",
                   2772:     "", // 0x0100
                   2773:     "",
                   2774:     "-d sat"
                   2775:   },
                   2776:   { "USB: Lacie rikiki; JMicron",
                   2777:     "0x059f:0x102a",
                   2778:     "",
                   2779:     "",
                   2780:     "-d usbjmicron,x"
                   2781:   },
                   2782:   { "USB: LaCie rikiki USB 3.0; ",
                   2783:     "0x059f:0x10(49|57)",
                   2784:     "",
                   2785:     "",
                   2786:     "-d sat"
                   2787:   },
1.1.1.2   misho    2788:   { "USB: LaCie minimus USB 3.0; ",
                   2789:     "0x059f:0x104a",
                   2790:     "",
                   2791:     "",
                   2792:     "-d sat"
                   2793:   },
1.1.1.3 ! misho    2794:   { "USB: LaCie Rugged Mini USB 3.0; ",
        !          2795:     "0x059f:0x1051",
        !          2796:     "", // 0x0000
        !          2797:     "",
        !          2798:     "-d sat"
        !          2799:   },
1.1       misho    2800:   // In-System Design
                   2801:   { "USB: ; In-System/Cypress ISD-300A1",
                   2802:     "0x05ab:0x0060",
                   2803:     "", // 0x1101
                   2804:     "",
                   2805:     "-d usbcypress"
                   2806:   },
                   2807:   // Genesys Logic
                   2808:   { "USB: ; Genesys Logic GL881E",
                   2809:     "0x05e3:0x0702",
                   2810:     "",
                   2811:     "",
                   2812:     "" // unsupported
                   2813:   },
                   2814:   { "USB: ; Genesys Logic", // TODO: requires '-T permissive'
                   2815:     "0x05e3:0x0718",
                   2816:     "", // 0x0041
                   2817:     "",
                   2818:     "-d sat"
                   2819:   },
                   2820:   // Micron
                   2821:   { "USB: Micron USB SSD; ",
                   2822:     "0x0634:0x0655",
                   2823:     "",
                   2824:     "",
                   2825:     "" // unsupported
                   2826:   },
                   2827:   // Prolific
                   2828:   { "USB: ; Prolific PL2507", // USB->PATA
                   2829:     "0x067b:0x2507",
                   2830:     "",
                   2831:     "",
1.1.1.2   misho    2832:     "-d usbjmicron,0" // Port number is required
1.1       misho    2833:   },
                   2834:   { "USB: ; Prolific PL3507", // USB+IEE1394->PATA
                   2835:     "0x067b:0x3507",
                   2836:     "", // 0x0001
                   2837:     "",
1.1.1.3 ! misho    2838:     "-d usbjmicron,p"
        !          2839:   },
        !          2840:   // Imation
        !          2841:   { "USB: Imation ; ", // Imation Odyssey external USB dock
        !          2842:     "0x0718:0x1000",
        !          2843:     "", // 0x5104
        !          2844:     "",
        !          2845:     "-d sat"
1.1       misho    2846:   },
                   2847:   // Freecom
                   2848:   { "USB: Freecom Mobile Drive XXS; JMicron",
                   2849:     "0x07ab:0xfc88",
                   2850:     "", // 0x0101
                   2851:     "",
                   2852:     "-d usbjmicron,x"
                   2853:   },
                   2854:   { "USB: Freecom Hard Drive XS; Sunplus",
                   2855:     "0x07ab:0xfc8e",
                   2856:     "", // 0x010f
                   2857:     "",
                   2858:     "-d usbsunplus"
                   2859:   },
1.1.1.2   misho    2860:   { "USB: Freecom; ", // Intel labeled
                   2861:     "0x07ab:0xfc8f",
                   2862:     "", // 0x0000
                   2863:     "",
                   2864:     "-d sat"
                   2865:   },
1.1       misho    2866:   { "USB: Freecom Classic HD 120GB; ",
                   2867:     "0x07ab:0xfccd",
                   2868:     "",
                   2869:     "",
                   2870:     "" // unsupported
                   2871:   },
                   2872:   { "USB: Freecom HD 500GB; JMicron",
                   2873:     "0x07ab:0xfcda",
                   2874:     "",
                   2875:     "",
                   2876:     "-d usbjmicron"
                   2877:   },
                   2878:   // Oxford Semiconductor, Ltd
                   2879:   { "USB: ; Oxford",
                   2880:     "0x0928:0x0000",
                   2881:     "",
                   2882:     "",
                   2883:     "" // unsupported
                   2884:   },
                   2885:   { "USB: ; Oxford OXU921DS",
                   2886:     "0x0928:0x0002",
                   2887:     "",
                   2888:     "",
                   2889:     "" // unsupported
                   2890:   },
1.1.1.3 ! misho    2891:   { "USB: ; Oxford", // Zalman ZM-VE200
        !          2892:     "0x0928:0x0010",
        !          2893:     "", // 0x0304
        !          2894:     "",
        !          2895:     "-d sat"
        !          2896:   },
        !          2897:   // Toshiba
        !          2898:   { "USB: Toshiba PX1270E-1G16; Sunplus",
        !          2899:     "0x0930:0x0b03",
        !          2900:     "",
        !          2901:     "",
        !          2902:     "-d usbsunplus"
        !          2903:   },
1.1       misho    2904:   { "USB: Toshiba PX1396E-3T01; Sunplus", // similar to Dura Micro 501
                   2905:     "0x0930:0x0b09",
                   2906:     "",
                   2907:     "",
                   2908:     "-d usbsunplus"
                   2909:   },
                   2910:   { "USB: Toshiba Stor.E Steel; Sunplus",
                   2911:     "0x0930:0x0b11",
                   2912:     "",
                   2913:     "",
                   2914:     "-d usbsunplus"
                   2915:   },
1.1.1.3 ! misho    2916:   { "USB: Toshiba Stor.E; ",
        !          2917:     "0x0930:0x0b1[9ab]",
        !          2918:     "", // 0x0001
        !          2919:     "",
        !          2920:     "-d sat"
        !          2921:   },
1.1.1.2   misho    2922:   // Lumberg, Inc.
                   2923:   { "USB: Toshiba Stor.E; Sunplus",
                   2924:     "0x0939:0x0b16",
                   2925:     "",
                   2926:     "",
                   2927:     "-d usbsunplus"
                   2928:   },
1.1       misho    2929:   // Seagate
1.1.1.3 ! misho    2930:   { "USB: Seagate External Drive; Cypress",
        !          2931:     "0x0bc2:0x0503",
        !          2932:     "", // 0x0240
        !          2933:     "",
        !          2934:     "-d usbcypress"
        !          2935:   },
1.1       misho    2936:   { "USB: Seagate FreeAgent Go; ",
                   2937:     "0x0bc2:0x2(000|100|101)",
                   2938:     "",
                   2939:     "",
                   2940:     "-d sat"
                   2941:   },
                   2942:   { "USB: Seagate FreeAgent Go FW; ",
                   2943:     "0x0bc2:0x2200",
                   2944:     "",
                   2945:     "",
                   2946:     "-d sat"
                   2947:   },
                   2948:   { "USB: Seagate Expansion Portable; ",
                   2949:     "0x0bc2:0x2300",
                   2950:     "",
                   2951:     "",
                   2952:     "-d sat"
                   2953:   },
                   2954:   { "USB: Seagate FreeAgent Desktop; ",
                   2955:     "0x0bc2:0x3000",
                   2956:     "",
                   2957:     "",
                   2958:     "-d sat"
                   2959:   },
                   2960:   { "USB: Seagate FreeAgent Desk; ",
                   2961:     "0x0bc2:0x3001",
                   2962:     "",
                   2963:     "",
                   2964:     "-d sat"
                   2965:   },
                   2966:   { "USB: Seagate Expansion External; ", // 2TB
1.1.1.2   misho    2967:     "0x0bc2:0x33(00|32)",
1.1       misho    2968:     "",
                   2969:     "",
                   2970:     "-d sat"
                   2971:   },
                   2972:   { "USB: Seagate FreeAgent GoFlex USB 2.0; ",
                   2973:     "0x0bc2:0x5021",
                   2974:     "",
                   2975:     "",
                   2976:     "-d sat"
                   2977:   },
                   2978:   { "USB: Seagate FreeAgent GoFlex USB 3.0; ",
                   2979:     "0x0bc2:0x5031",
                   2980:     "",
                   2981:     "",
                   2982:     "-d sat,12"
                   2983:   },
1.1.1.2   misho    2984:   { "USB: Seagate FreeAgent; ",
                   2985:     "0x0bc2:0x5040",
                   2986:     "",
                   2987:     "",
                   2988:     "-d sat"
                   2989:   },
1.1       misho    2990:   { "USB: Seagate FreeAgent GoFlex USB 3.0; ", // 2TB
                   2991:     "0x0bc2:0x5071",
                   2992:     "",
                   2993:     "",
                   2994:     "-d sat"
                   2995:   },
1.1.1.2   misho    2996:   { "USB: Seagate FreeAgent GoFlex Desk USB 3.0; ", // 3TB
1.1       misho    2997:     "0x0bc2:0x50a1",
                   2998:     "",
                   2999:     "",
1.1.1.2   misho    3000:     "-d sat,12" // "-d sat" does not work (ticket #151)
                   3001:   },
                   3002:   { "USB: Seagate FreeAgent GoFlex Desk USB 3.0; ", // 4TB
                   3003:     "0x0bc2:0x50a5",
                   3004:     "", // 0x0100
                   3005:     "",
1.1       misho    3006:     "-d sat"
                   3007:   },
1.1.1.3 ! misho    3008:   { "USB: Seagate Backup Plus USB 3.0; ", // 1TB
        !          3009:     "0x0bc2:0xa013",
        !          3010:     "", // 0x0100
        !          3011:     "",
        !          3012:     "-d sat"
        !          3013:   },
        !          3014:   { "USB: Seagate Backup Plus Desktop USB 3.0; ", // 3TB, 8 LBA/1 PBA offset
        !          3015:     "0x0bc2:0xa0a4",
        !          3016:     "",
        !          3017:     "",
        !          3018:     "-d sat"
        !          3019:   },
1.1       misho    3020:   // Dura Micro
1.1.1.2   misho    3021:   { "USB: Dura Micro; Cypress",
                   3022:     "0x0c0b:0xb001",
                   3023:     "", // 0x1110
                   3024:     "",
                   3025:     "-d usbcypress"
                   3026:   },
1.1       misho    3027:   { "USB: Dura Micro 509; Sunplus",
                   3028:     "0x0c0b:0xb159",
                   3029:     "", // 0x0103
                   3030:     "",
                   3031:     "-d usbsunplus"
                   3032:   },
                   3033:   // Maxtor
                   3034:   { "USB: Maxtor OneTouch 200GB; ",
                   3035:     "0x0d49:0x7010",
                   3036:     "",
                   3037:     "",
                   3038:     "" // unsupported
                   3039:   },
                   3040:   { "USB: Maxtor OneTouch; ",
                   3041:     "0x0d49:0x7300",
                   3042:     "", // 0x0121
                   3043:     "",
                   3044:     "-d sat"
                   3045:   },
                   3046:   { "USB: Maxtor OneTouch 4; ",
                   3047:     "0x0d49:0x7310",
                   3048:     "", // 0x0125
                   3049:     "",
                   3050:     "-d sat"
                   3051:   },
                   3052:   { "USB: Maxtor OneTouch 4 Mini; ",
                   3053:     "0x0d49:0x7350",
                   3054:     "", // 0x0125
                   3055:     "",
                   3056:     "-d sat"
                   3057:   },
1.1.1.2   misho    3058:   { "USB: Maxtor BlackArmor Portable; ",
                   3059:     "0x0d49:0x7550",
                   3060:     "",
                   3061:     "",
                   3062:     "-d sat"
                   3063:   },
1.1       misho    3064:   { "USB: Maxtor Basics Desktop; ",
                   3065:     "0x0d49:0x7410",
                   3066:     "", // 0x0122
                   3067:     "",
                   3068:     "-d sat"
                   3069:   },
                   3070:   { "USB: Maxtor Basics Portable; ",
                   3071:     "0x0d49:0x7450",
                   3072:     "", // 0x0122
                   3073:     "",
                   3074:     "-d sat"
                   3075:   },
                   3076:   // Oyen Digital
                   3077:   { "USB: Oyen Digital MiniPro USB 3.0; ",
                   3078:     "0x0dc4:0x020a",
                   3079:     "",
                   3080:     "",
                   3081:     "-d sat"
                   3082:   },
                   3083:   // Cowon Systems, Inc.
                   3084:   { "USB: Cowon iAudio X5; ",
                   3085:     "0x0e21:0x0510",
                   3086:     "",
                   3087:     "",
                   3088:     "-d usbcypress"
                   3089:   },
                   3090:   // iRiver
                   3091:   { "USB: iRiver iHP-120/140 MP3 Player; Cypress",
                   3092:     "0x1006:0x3002",
                   3093:     "", // 0x0100
                   3094:     "",
                   3095:     "-d usbcypress"
                   3096:   },
                   3097:   // Western Digital
                   3098:   { "USB: WD My Passport (IDE); Cypress",
                   3099:     "0x1058:0x0701",
                   3100:     "", // 0x0240
                   3101:     "",
                   3102:     "-d usbcypress"
                   3103:   },
                   3104:   { "USB: WD My Passport Portable; ",
                   3105:     "0x1058:0x0702",
                   3106:     "", // 0x0102
                   3107:     "",
                   3108:     "-d sat"
                   3109:   },
                   3110:   { "USB: WD My Passport Essential; ",
                   3111:     "0x1058:0x0704",
                   3112:     "", // 0x0175
                   3113:     "",
                   3114:     "-d sat"
                   3115:   },
                   3116:   { "USB: WD My Passport Elite; ",
                   3117:     "0x1058:0x0705",
                   3118:     "", // 0x0175
                   3119:     "",
                   3120:     "-d sat"
                   3121:   },
                   3122:   { "USB: WD My Passport 070A; ",
                   3123:     "0x1058:0x070a",
                   3124:     "", // 0x1028
                   3125:     "",
                   3126:     "-d sat"
                   3127:   },
                   3128:   { "USB: WD My Passport 0730; ",
                   3129:     "0x1058:0x0730",
                   3130:     "", // 0x1008
                   3131:     "",
                   3132:     "-d sat"
                   3133:   },
                   3134:   { "USB: WD My Passport Essential SE USB 3.0; ",
1.1.1.2   misho    3135:     "0x1058:0x074[02]",
                   3136:     "",
                   3137:     "",
                   3138:     "-d sat"
                   3139:   },
                   3140:   { "USB: WD My Passport USB 3.0; ",
1.1.1.3 ! misho    3141:     "0x1058:0x07[4a]8",
1.1       misho    3142:     "",
                   3143:     "",
                   3144:     "-d sat"
                   3145:   },
                   3146:   { "USB: WD My Book ES; ",
                   3147:     "0x1058:0x0906",
                   3148:     "", // 0x0012
                   3149:     "",
                   3150:     "-d sat"
                   3151:   },
                   3152:   { "USB: WD My Book Essential; ",
                   3153:     "0x1058:0x0910",
                   3154:     "", // 0x0106
                   3155:     "",
                   3156:     "-d sat"
                   3157:   },
                   3158:   { "USB: WD Elements Desktop; ",
                   3159:     "0x1058:0x1001",
                   3160:     "", // 0x0104
                   3161:     "",
                   3162:     "-d sat"
                   3163:   },
                   3164:   { "USB: WD Elements Desktop WDE1UBK...; ",
                   3165:     "0x1058:0x1003",
                   3166:     "", // 0x0175
                   3167:     "",
                   3168:     "-d sat"
                   3169:   },
                   3170:   { "USB: WD Elements; ",
                   3171:     "0x1058:0x1010",
                   3172:     "", // 0x0105
                   3173:     "",
                   3174:     "-d sat"
                   3175:   },
                   3176:   { "USB: WD Elements Desktop; ", // 2TB
                   3177:     "0x1058:0x1021",
                   3178:     "", // 0x2002
                   3179:     "",
                   3180:     "-d sat"
                   3181:   },
                   3182:   { "USB: WD Elements SE; ", // 1TB
                   3183:     "0x1058:0x1023",
                   3184:     "",
                   3185:     "",
                   3186:     "-d sat"
                   3187:   },
                   3188:   { "USB: WD Elements SE USB 3.0; ",
                   3189:     "0x1058:0x1042",
                   3190:     "",
                   3191:     "",
                   3192:     "-d sat"
                   3193:   },
                   3194:   { "USB: WD My Book Essential; ",
                   3195:     "0x1058:0x1100",
                   3196:     "", // 0x0165
                   3197:     "",
                   3198:     "-d sat"
                   3199:   },
                   3200:   { "USB: WD My Book Office Edition; ", // 1TB
                   3201:     "0x1058:0x1101",
                   3202:     "", // 0x0165
                   3203:     "",
                   3204:     "-d sat"
                   3205:   },
                   3206:   { "USB: WD My Book; ",
                   3207:     "0x1058:0x1102",
                   3208:     "", // 0x1028
                   3209:     "",
                   3210:     "-d sat"
                   3211:   },
1.1.1.3 ! misho    3212:   { "USB: WD My Book Studio II; ", // 2x1TB
        !          3213:     "0x1058:0x1105",
        !          3214:     "",
        !          3215:     "",
        !          3216:     "-d sat"
        !          3217:   },
1.1       misho    3218:   { "USB: WD My Book Essential; ",
                   3219:     "0x1058:0x1110",
                   3220:     "", // 0x1030
                   3221:     "",
                   3222:     "-d sat"
                   3223:   },
                   3224:   { "USB: WD My Book Essential USB 3.0; ", // 3TB
1.1.1.2   misho    3225:     "0x1058:0x11[34]0",
                   3226:     "", // 0x1012/0x1003
1.1       misho    3227:     "",
                   3228:     "-d sat"
                   3229:   },
                   3230:   // Atech Flash Technology
                   3231:   { "USB: ; Atech", // Enclosure from Kingston SSDNow notebook upgrade kit
                   3232:     "0x11b0:0x6298",
                   3233:     "", // 0x0108
                   3234:     "",
                   3235:     "-d sat"
                   3236:   },
                   3237:   // A-DATA
                   3238:   { "USB: A-DATA SH93; Cypress",
                   3239:     "0x125f:0xa93a",
                   3240:     "", // 0x0150
                   3241:     "",
                   3242:     "-d usbcypress"
                   3243:   },
1.1.1.2   misho    3244:   { "USB: A-DATA DashDrive; Cypress",
                   3245:     "0x125f:0xa94a",
                   3246:     "",
                   3247:     "",
                   3248:     "-d usbcypress"
                   3249:   },
1.1       misho    3250:   // Initio
                   3251:   { "USB: ; Initio 316000",
                   3252:     "0x13fd:0x0540",
                   3253:     "",
                   3254:     "",
                   3255:     "" // unsupported
                   3256:   },
1.1.1.2   misho    3257:   { "USB: ; Initio", // Thermaltake BlacX
                   3258:     "0x13fd:0x0840",
                   3259:     "",
                   3260:     "",
                   3261:     "-d sat"
                   3262:   },
1.1.1.3 ! misho    3263:   { "USB: ; Initio", // USB->SATA+PATA, Chieftec CEB-25I
        !          3264:     "0x13fd:0x1040",
        !          3265:     "", // 0x0106
        !          3266:     "",
        !          3267:     "" // unsupported
        !          3268:   },
1.1.1.2   misho    3269:   { "USB: ; Initio 6Y120L0", // CoolerMaster XCraft RX-3HU
                   3270:     "0x13fd:0x1150",
                   3271:     "",
                   3272:     "",
                   3273:     "" // unsupported
                   3274:   },
1.1       misho    3275:   { "USB: ; Initio", // USB->SATA
                   3276:     "0x13fd:0x1240",
                   3277:     "", // 0x0104
                   3278:     "",
                   3279:     "-d sat"
                   3280:   },
                   3281:   { "USB: ; Initio", // USB+SATA->SATA
                   3282:     "0x13fd:0x1340",
                   3283:     "", // 0x0208
                   3284:     "",
                   3285:     "-d sat"
                   3286:   },
                   3287:   { "USB: Intenso Memory Station 2,5\"; Initio",
                   3288:     "0x13fd:0x1840",
                   3289:     "",
                   3290:     "",
                   3291:     "-d sat"
                   3292:   },
1.1.1.2   misho    3293:   { "USB: ; Initio", // NexStar CX USB enclosure
                   3294:     "0x13fd:0x1e40",
                   3295:     "",
                   3296:     "",
                   3297:     "-d sat"
                   3298:   },
1.1       misho    3299:   // Super Top
                   3300:   { "USB: Super Top generic enclosure; Cypress",
                   3301:     "0x14cd:0x6116",
1.1.1.2   misho    3302:     "", // 0x0160 also reported as unsupported
1.1       misho    3303:     "",
                   3304:     "-d usbcypress"
                   3305:   },
                   3306:   // JMicron
                   3307:   { "USB: ; JMicron USB 3.0",
                   3308:     "0x152d:0x0539",
                   3309:     "", // 0x0100
                   3310:     "",
                   3311:     "-d usbjmicron"
                   3312:   },
                   3313:   { "USB: ; JMicron ", // USB->SATA->4xSATA (port multiplier)
                   3314:     "0x152d:0x0551",
                   3315:     "", // 0x0100
                   3316:     "",
                   3317:     "-d usbjmicron,x"
                   3318:   },
                   3319:   { "USB: OCZ THROTTLE OCZESATATHR8G; JMicron JMF601",
                   3320:     "0x152d:0x0602",
                   3321:     "",
                   3322:     "",
                   3323:     "" // unsupported
                   3324:   },
                   3325:   { "USB: ; JMicron JM20329", // USB->SATA
                   3326:     "0x152d:0x2329",
                   3327:     "", // 0x0100
                   3328:     "",
                   3329:     "-d usbjmicron"
                   3330:   },
                   3331:   { "USB: ; JMicron JM20336", // USB+SATA->SATA, USB->2xSATA
                   3332:     "0x152d:0x2336",
                   3333:     "", // 0x0100
                   3334:     "",
                   3335:     "-d usbjmicron,x"
                   3336:   },
                   3337:   { "USB: Generic JMicron adapter; JMicron",
                   3338:     "0x152d:0x2337",
                   3339:     "",
                   3340:     "",
                   3341:     "-d usbjmicron"
                   3342:   },
                   3343:   { "USB: ; JMicron JM20337/8", // USB->SATA+PATA, USB+SATA->PATA
                   3344:     "0x152d:0x2338",
                   3345:     "", // 0x0100
                   3346:     "",
                   3347:     "-d usbjmicron"
                   3348:   },
                   3349:   { "USB: ; JMicron JM20339", // USB->SATA
                   3350:     "0x152d:0x2339",
                   3351:     "", // 0x0100
                   3352:     "",
                   3353:     "-d usbjmicron,x"
                   3354:   },
                   3355:   { "USB: ; JMicron", // USB+SATA->SATA
                   3356:     "0x152d:0x2351",  // e.g. Verbatim Portable Hard Drive 500Gb
                   3357:     "", // 0x0100
                   3358:     "",
                   3359:     "-d sat"
                   3360:   },
                   3361:   { "USB: ; JMicron", // USB->SATA
                   3362:     "0x152d:0x2352",
                   3363:     "", // 0x0100
                   3364:     "",
                   3365:     "-d usbjmicron,x"
                   3366:   },
                   3367:   { "USB: ; JMicron", // USB->SATA
                   3368:     "0x152d:0x2509",
                   3369:     "", // 0x0100
                   3370:     "",
                   3371:     "-d usbjmicron,x"
                   3372:   },
                   3373:   // ASMedia
                   3374:   { "USB: ; ASMedia ASM1051",
1.1.1.3 ! misho    3375:     "0x174c:0x5106", // 0x174c:0x55aa after firmware update
1.1       misho    3376:     "",
                   3377:     "",
                   3378:     "-d sat"
                   3379:   },
1.1.1.3 ! misho    3380:   { "USB: ; ASMedia USB 3.0", // MEDION HDDrive-n-GO, LaCie Rikiki USB 3.0,
        !          3381:       // Silicon Power Armor A80 (ticket #237)
        !          3382:       // reported as unsupported: BYTECC T-200U3, Kingwin USB 3.0 docking station
1.1       misho    3383:     "0x174c:0x55aa",
1.1.1.3 ! misho    3384:     "", // 0x0100
1.1       misho    3385:     "",
1.1.1.3 ! misho    3386:     "-d sat"
1.1       misho    3387:   },
                   3388:   // LucidPort
1.1.1.2   misho    3389:   { "USB: ; LucidPORT USB300", // RaidSonic ICY BOX IB-110StU3-B, Sharkoon SATA QuickPort H3
                   3390:     "0x1759:0x500[02]", // 0x5000: USB 2.0, 0x5002: USB 3.0
1.1       misho    3391:     "",
                   3392:     "",
                   3393:     "-d sat"
                   3394:   },
                   3395:   // Verbatim
                   3396:   { "USB: Verbatim Portable Hard Drive; Sunplus",
                   3397:     "0x18a5:0x0214",
                   3398:     "", // 0x0112
                   3399:     "",
                   3400:     "-d usbsunplus"
                   3401:   },
                   3402:   { "USB: Verbatim FW/USB160; Oxford OXUF934SSA-LQAG", // USB+IEE1394->SATA
                   3403:     "0x18a5:0x0215",
                   3404:     "", // 0x0001
                   3405:     "",
                   3406:     "-d sat"
                   3407:   },
                   3408:   { "USB: Verbatim External Hard Drive 47519; Sunplus", // USB->SATA
                   3409:     "0x18a5:0x0216",
                   3410:     "",
                   3411:     "",
                   3412:     "-d usbsunplus"
                   3413:   },
                   3414:   { "USB: Verbatim Pocket Hard Drive; JMicron", // SAMSUNG SpinPoint N3U-3 (USB, 4KiB LLS)
                   3415:     "0x18a5:0x0227",
                   3416:     "",
                   3417:     "",
                   3418:     "-d usbjmicron" // "-d usbjmicron,x" does not work
                   3419:   },
1.1.1.2   misho    3420:   { "USB: Verbatim External Hard Drive; JMicron", // 2TB
                   3421:     "0x18a5:0x022a",
                   3422:     "",
                   3423:     "",
                   3424:     "-d usbjmicron"
                   3425:   },
1.1.1.3 ! misho    3426:   { "USB: Verbatim Store'n'Go; JMicron", // USB->SATA
        !          3427:     "0x18a5:0x022b",
        !          3428:     "", // 0x0100
        !          3429:     "",
        !          3430:     "-d usbjmicron"
        !          3431:   },
1.1       misho    3432:   // Silicon Image
                   3433:   { "USB: Vantec NST-400MX-SR; Silicon Image 5744",
                   3434:     "0x1a4a:0x1670",
                   3435:     "",
                   3436:     "",
                   3437:     "" // unsupported
                   3438:   },
                   3439:   // SunplusIT
                   3440:   { "USB: ; SunplusIT",
                   3441:     "0x1bcf:0x0c31",
                   3442:     "",
                   3443:     "",
                   3444:     "-d usbsunplus"
                   3445:   },
1.1.1.3 ! misho    3446:   // Innostor
        !          3447:   { "USB: ; Innostor IS888", // Sharkoon SATA QuickDeck Pro USB 3.0
1.1.1.2   misho    3448:     "0x1f75:0x0888",
                   3449:     "", // 0x0034
                   3450:     "",
                   3451:     "" // unsupported
                   3452:   },
1.1.1.3 ! misho    3453:   // Power Quotient International
        !          3454:   { "USB: PQI H560; ",
        !          3455:     "0x3538:0x0902",
        !          3456:     "", // 0x0000
        !          3457:     "",
        !          3458:     "-d sat"
        !          3459:   },
1.1       misho    3460:   // Hitachi/SimpleTech
1.1.1.2   misho    3461:   { "USB: Hitachi Touro Desk; JMicron", // 3TB
                   3462:     "0x4971:0x1011",
                   3463:     "",
                   3464:     "",
                   3465:     "-d usbjmicron"
                   3466:   },
                   3467:   { "USB: Hitachi Touro Desk 3.0; ", // 2TB
                   3468:     "0x4971:0x1015",
                   3469:     "", // 0x0000
                   3470:     "",
                   3471:     "-d sat" // ATA output registers missing
                   3472:   },
1.1       misho    3473:   { "USB: Hitachi/SimpleTech; JMicron", // 1TB
                   3474:     "0x4971:0xce17",
                   3475:     "",
                   3476:     "",
                   3477:     "-d usbjmicron,x"
                   3478:   },
                   3479:   // OnSpec
                   3480:   { "USB: ; OnSpec", // USB->PATA
                   3481:     "0x55aa:0x2b00",
                   3482:     "", // 0x0100
                   3483:     "",
                   3484:     "" // unsupported
                   3485:   },
                   3486: /*
                   3487: }; // builtin_knowndrives[]
                   3488:  */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>