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