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