Custom Query (1434 matches)
Results (178 - 180 of 1434)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1315 | fixed | Add support for Realtek RTL9210 USB to NVMe bridge | ||
Description |
Hello! I have a RTL9210 based NVME to USB adapter and would like to request for this chip to be supported by Smartmontools. I googled around but did not find any prior discussion about this particular adapter type. Here is output from my adapter with an NVME drive installed: # sudo smartctl -x -d scsi /dev/disk/by-id/usb-Samsung_SSD_960_EVO_250G_012345678905-0\:0 smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.4.0-3-amd64] (local build) Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org === START OF INFORMATION SECTION === Vendor: Samsung Product: SSD 960 EVO 250G Revision: CXE7 Compliance: SPC-4 User Capacity: 250,059,350,016 bytes [250 GB] Logical block size: 512 bytes Physical block size: 8388608 bytes Lowest aligned LBA: 10016 LU is fully provisioned [LBPRZ=1] Rotation Rate: Solid State Device Logical Unit id: 0x3001237923792379 Serial number: 0000000000000000 Device type: disk Local Time is: Sun Apr 5 21:01:15 2020 PDT SMART support is: Available - device has SMART capability. SMART support is: Enabled Temperature Warning: Disabled or Not Supported Read Cache is: Enabled Writeback Cache is: Enabled === START OF READ SMART DATA SECTION === SMART Health Status: OK Current Drive Temperature: 0 C Drive Trip Temperature: 0 C Error Counter logging not supported Device does not support Self Test logging Device does not support Background scan results logging The USB ID is 0bda:9210. Let me know if you want full lsusb -vv output. Orico has two models with this chip; the PFM2-C3 and the M2PG-C3. Pluaggable has switched their USBC-NVME from using the JMicron JMS583 to the RTL9210. JEYI makes the i9 GTR and and another where I'm not sure what the model number is. And finally there's a ton of cheapo no-name Chinese brand adapters on the market. If there is anything I can do to help make this happen, please ask! |
|||
#1479 | worksforme | Add support for Realtek RTL9210B USB to SATA bridge | ||
Description |
I just bought a Sabrent USB adapter containing the RTL9210B which supports both NVME and SATA M.2 disks. I have a SATA disk installed but I can´t read any smart data. Would it be possible to add support for this chipset? I saw another ticket, 1315, asking for added support, but then for the chipset without B, which seems only NVME. I now get (when using smartctl -d scsi -a /dev/sdb): smartctl 7.2 2020-12-30 r5155 [x86_64-linux-5.11.16-1-default] (SUSE RPM) Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org === START OF INFORMATION SECTION === Vendor: Sabrent Product: Revision: 1.00 Compliance: SPC-4 User Capacity: 1.000.204.886.016 bytes [1,00 TB] Logical block size: 512 bytes Physical block size: 4096 bytes LB provisioning type: not reported [LBPME=1, LBPRZ=0] Rotation Rate: Solid State Device Logical Unit id: 0x3001237923792379 Serial number: 0000000000000000 Device type: disk Local Time is: Wed Apr 28 17:46:12 2021 CEST SMART support is: Available - device has SMART capability. SMART support is: Enabled Temperature Warning: Disabled or Not Supported === START OF READ SMART DATA SECTION === SMART Health Status: OK Current Drive Temperature: 0 C Drive Trip Temperature: 0 C Error Counter logging not supported Device does not support Self Test logging If I execute: smartctl -d test -a /dev/sdb I get: /dev/sdb [USB NVMe Realtek]: Device of type 'sntrealtek' [NVMe] detected /dev/sdb [USB NVMe Realtek]: Device of type 'sntrealtek' [NVMe] opened Thanks in advance. |
|||
#1427 | fixed | Add support for SCT Error Recovery Timer features added in ACS-4 | ||
Description |
ATA command set version 4 (ACS-4) and later support new capabilities for the SMART Command Transport (SCT) Error Recovery Control (ERT) function. Specifically, function codes 0003h-0005h were added. These functions are very useful for saving and retrieving persistent-over-power-cycle timer values and for resetting the drive to the manufacturer defaults. The patch provided enables the ability to use these new function codes by extending the functionality of the scterc. The attached patch was generated from the git repo. Let me know if a svn patch is preferred. Usage update:
Man page update:
Usage Examples: 1) Print persistent power-on values jrbauer@zeus:~$ sudo smartctl -l scterc,p /dev/sdb smartctl 7.2 (build date Jan 11 2021) [x86_64-linux-5.4.0-60-generic] (local build) Copyright (C) 2002-21, Bruce Allen, Christian Franke, www.smartmontools.org SCT Error Recovery Control: Power-on Read: Disabled
2) Set power-on values jrbauer@zeus:~$ sudo smartctl -l scterc,80,82,p /dev/sdb smartctl 7.2 (build date Jan 11 2021) [x86_64-linux-5.4.0-60-generic] (local build) Copyright (C) 2002-21, Bruce Allen, Christian Franke, www.smartmontools.org SCT Error Recovery Control set to:
3) Reset power-on and current values to the device default jrbauer@zeus:~$ sudo smartctl -l scterc,r /dev/sdb smartctl 7.2 (build date Jan 11 2021) [x86_64-linux-5.4.0-60-generic] (local build) Copyright (C) 2002-21, Bruce Allen, Christian Franke, www.smartmontools.org SCT Error Recovery Control set to: default values. |