Esta é uma coisa específica do sistema, mas pressupondo o Linux (e não, digamos, o BSD, etc.):
Se você tiver o nome do dispositivo (o que o lsblk lhe oferece), então:
$ udevadm info -a /dev/sdf1
Udevadm info starts with the device specified by the devpath and then
walks up the chain of parent devices. It prints for every device
found, all possible attributes in the udev rules key format.
A rule to match, can be composed by the attributes of the device
and the attributes from one single parent device.
looking at device '/devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/host16/target16:0:0/16:0:0:0/block/sdf/sdf1':
KERNEL=="sdf1"
⋮
looking at parent device '/devices/pci0000:00/0000:00:1a.7/usb1/1-2':
KERNELS=="1-2"
SUBSYSTEMS=="usb"
DRIVERS=="usb"
⋮
ATTRS{speed}=="480"
Eu suspeito que 'velocidade' é o que você está procurando. Caso contrário, há também busnum
e devnum
, que correspondem à bus:device
dada por lsusb
.
Isso também lhe dá uma pista de como fazer isso manualmente: você procura em /sys
. Você pode descobrir por onde começar por readlink -f /sys/block/sdf
, o que me diz /sys/devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/host16/target16:0:0/16:0:0:0/block/sdf
. Você pode então remover diretórios à direita até voltar ao dispositivo USB. Então speed
, busnum
, devnum
, etc. são apenas arquivos que você pode ler.