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